diff --git a/.gitignore b/.gitignore
index 7c7c31c39..689a566d8 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,8 +1,11 @@
build
+dist
bower_components
node_modules
+web_modules
private
+web_modules
# General
*.jar
diff --git a/Jenkinsfile b/Jenkinsfile
index f473aa974..1ea7dc578 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -1,7 +1,7 @@
pipeline {
agent any
stages {
- stage ('Build source code') {
+ stage ('Build source code') {
options {
timeout(time: 5, unit: 'MINUTES')
}
@@ -9,7 +9,7 @@ pipeline {
sh 'npm install --unsafe-perm && npm run build'
}
}
- stage ('Docker Build and Push') {
+ stage ('Build and Push Stable Docker') {
options {
timeout(time: 25, unit: 'MINUTES')
}
@@ -18,14 +18,31 @@ pipeline {
}
steps {
script {
- def tag = sh(returnStdout: true, script: "git tag --sort version:refname | tail -1").trim()
+ def tag = sh(returnStdout: true, script: "node -p \"require('./package.json').version\"").trim()
sh "docker build -t opencb/iva:'${tag}' -f docker/Dockerfile ."
withDockerRegistry([ credentialsId: "wasim-docker-hub", url: "" ]) {
sh "docker push opencb/iva:'${tag}'"
}
}
}
- }
+ }
+ stage ('Build and Push Development Docker') {
+ options {
+ timeout(time: 25, unit: 'MINUTES')
+ }
+ when {
+ branch "develop"
+ }
+ steps {
+ script {
+ def tag = sh(returnStdout: true, script: "node -p \"require('./package.json').version\"").trim()
+ sh "docker build -t opencb/iva:'${tag}' -f docker/Dockerfile ."
+ withDockerRegistry([ credentialsId: "wasim-docker-hub", url: "" ]) {
+ sh "docker push opencb/iva:'${tag}'"
+ }
+ }
+ }
+ }
}
}
diff --git a/bs-config.js b/bs-config.js
new file mode 100644
index 000000000..eee77d81c
--- /dev/null
+++ b/bs-config.js
@@ -0,0 +1,29 @@
+const path = require("path");
+
+/*
+ |--------------------------------------------------------------------------
+ | IVA Browser-sync config file
+ |--------------------------------------------------------------------------
+ */
+module.exports = {
+ files: [
+ "src",
+ "lib/jsorolla/src",
+ "lib/jsorolla/styles"
+ ],
+ server: {
+ //baseDir: path.resolve(__dirname),
+ //directory: true
+ },
+ startPath: "src",
+ open: true,
+ timestamps: true,
+ excludedFileTypes: [],
+ notify: {
+ styles: {
+ top: 'auto',
+ bottom: '0'
+ }
+ }
+
+};
diff --git a/credentials.sh b/credentials.sh
new file mode 100755
index 000000000..09266cf89
--- /dev/null
+++ b/credentials.sh
@@ -0,0 +1,10 @@
+#!/bin/bash
+
+echo -n "Enter your Opencga Username [ENTER]: "
+read username
+stty -echo
+printf "Enter your Opencga password [ENTER]: "
+read password
+stty echo
+
+CYPRESS_username=$username CYPRESS_password=$password "$@"
diff --git a/cypress.json b/cypress.json
new file mode 100644
index 000000000..36c445610
--- /dev/null
+++ b/cypress.json
@@ -0,0 +1,6 @@
+{
+ "baseUrl": "http://localhost:3000/src/",
+ "chromeWebSecurity": false,
+ "viewportWidth": 1600,
+ "viewportHeight": 660
+}
diff --git a/cypress/integration/login.js b/cypress/integration/login.js
new file mode 100644
index 000000000..a66f41a88
--- /dev/null
+++ b/cypress/integration/login.js
@@ -0,0 +1,31 @@
+context("Login", () => {
+ beforeEach(() => {
+ cy.visit("http://localhost:3000/src/#login")
+ })
+
+ it("login unsuccessful", () => {
+ cy.get("#opencgaUser").type("demo")
+ cy.get("#opencgaPassword").type("demo")
+ cy.get("form#formLogin").submit()
+
+ cy.get("#error").contains( "Incorrect user or password.")
+ })
+
+ it("login uccessful", () => {
+
+ const username = Cypress.env("username")
+ const password = Cypress.env("password")
+
+ //console.log("username", username)
+ //console.log("password", password)
+
+ expect(username, "username was set").to.be.a("string").and.not.be.empty
+ expect(password, "password was set").to.be.a("string").and.not.be.empty
+ cy.get("#opencgaUser").type(username)
+ cy.get("#opencgaPassword").type(password)
+ cy.get("form#formLogin").submit()
+
+ cy.url().should("include", "#home")
+ cy.get(".subtitle").contains( "Interactive Variant Analysis")
+ })
+})
diff --git a/cypress/integration/opencga-clinical-portal.spec.js b/cypress/integration/opencga-clinical-portal.spec.js
new file mode 100644
index 000000000..4a74456da
--- /dev/null
+++ b/cypress/integration/opencga-clinical-portal.spec.js
@@ -0,0 +1,34 @@
+import {login} from "../plugins/utils.js";
+import "cypress-wait-until";
+
+context("Case Portal", () => {
+ before(() => {
+ login();
+ })
+
+ it("query", () => {
+ /*cy.waitUntil(() => cy.getCookie("iva_sid").then(cookie => {
+ console.log("cookie", cookie)
+ return Boolean(cookie && cookie.value)
+ }));*/
+
+ cy.get("a[data-id=clinicalAnalysisPortal]").click({force: true})
+
+ //long timeout to make sure you are logged in
+ cy.get("div.page-title h2", {timeout: 60000}).should("be.visible").and("contain", "Case Portal")
+
+ //cy.get(".lhs button").should("have.length", 2)
+ cy.get(".clearfix > .pull-left > .pagination-info", {timeout: 10000})
+ .should("be.visible")
+ //.should('contain', /Showing \d+ to \d+ of \d+ records/)
+ //.and("contain", "Showing 1 to 10 of 18 records")
+
+
+ cy.get("opencga-clinical-analysis-grid .success > :nth-child(1)").then(elem => {
+ // elem is the underlying Javascript object targeted by the .get() command.
+ const firstCase = Cypress.$(elem).text().trim();
+ //opencga-clinical-analysis-view > data-form div:nth-child(1) > div.col-md-9
+ });
+
+ })
+})
diff --git a/cypress/integration/opencga-file-browser.spec.js b/cypress/integration/opencga-file-browser.spec.js
new file mode 100644
index 000000000..e21da461a
--- /dev/null
+++ b/cypress/integration/opencga-file-browser.spec.js
@@ -0,0 +1,34 @@
+import {login} from "../plugins/utils.js";
+
+context("File Browser", () => {
+ before(() => {
+ login();
+ })
+
+ it("query", () => {
+ cy.get("a[data-id=files]").click({force: true})
+ cy.get("div.page-title h2", {timeout: 60000}).should("be.visible").and("contain", "File Browser")
+
+ cy.get("#format + .subsection-content a").contains( "VCF").click({force: true})
+ cy.get("#bioformat + .subsection-content a").contains( "VARIANT").click({force: true})
+
+ cy.get(".lhs button[data-filter-name]").should("have.length", 2)
+
+ //cy.get('.fixed-table-toolbar').find(".pagination-info", {log:true})
+ cy.get("div.search-button-wrapper button").click()
+ })
+
+ it("aggregated query", () => {
+ cy.get("a[data-id=files]").click({force: true})
+ cy.get("a[href='#facet_tab']").click({force: true})
+ //cy.get("div.search-button-wrapper button").click()
+
+ //cy.wait(2000);
+
+ cy.get("#bs-select-4-2").click({force: true}) // creation year field
+ cy.get(`a[data-collapse="#creationYear_nested"]`).click({force: true}) // creation y field
+ cy.get("#bs-select-7-3").click({force: true}) // creation month nested in year field
+ cy.get("div.search-button-wrapper button").click()
+
+ })
+})
diff --git a/cypress/integration/opencga-individual-browser.spec.js b/cypress/integration/opencga-individual-browser.spec.js
new file mode 100644
index 000000000..a746f077a
--- /dev/null
+++ b/cypress/integration/opencga-individual-browser.spec.js
@@ -0,0 +1,39 @@
+import {login} from "../plugins/utils.js";
+
+context("Individual Browser", () => {
+ before(() => {
+ login();
+ })
+
+ it("query", () => {
+ cy.get("a[data-id=individuals]").click({force: true})
+ cy.get("div.page-title h2", {timeout: 60000}).should("be.visible").and("contain", "Individual Browser")
+
+ cy.get("#sex + .subsection-content a").contains( "MALE").click({force: true})
+ cy.get("#sex + .subsection-content a").contains( "FEMALE").click({force: true})
+
+ cy.get("#date + .subsection-content input[data-tab=recent] + label").click(); //creationDate recent
+
+ cy.get(".lhs button[data-filter-name]").should("have.length", 2);
+ cy.get("div.search-button-wrapper button").click();
+
+ })
+
+ it("aggregated query", () => {
+ cy.get("a[data-id=individuals]").click({force: true})
+
+ cy.get("a[href='#facet_tab']").click({force: true})
+ cy.get("button.default-facets-button").click();
+
+ cy.get(".lhs button[data-filter-name]:nth-child(3)").click(); //remove creationDate
+
+ cy.get("button.default-facets-button").click();
+
+ //cy.get("div.search-button-wrapper button").click()
+
+ //cy.get(".facet-wrapper .button-list button").should("have.length", 4);
+
+ //cy.get("opencb-facet-results opencga-facet-result-view").should("have.length", 4);
+
+ })
+})
diff --git a/cypress/integration/opencga-sample-browser.spec.js b/cypress/integration/opencga-sample-browser.spec.js
new file mode 100644
index 000000000..90455f4c2
--- /dev/null
+++ b/cypress/integration/opencga-sample-browser.spec.js
@@ -0,0 +1,34 @@
+import {login} from "../plugins/utils.js";
+
+context("File Browser", () => {
+ before(() => {
+ login();
+ })
+
+ it("query", () => {
+ cy.get("a[data-id=samples]").click({force: true})
+ cy.get("div.page-title h2", {timeout: 60000}).should("be.visible").and("contain", "Sample Browser")
+
+ cy.get("#somatic + .subsection-content label").contains( "True").click({force: true})
+
+ cy.get(".lhs button[data-filter-name]").should("have.length", 1);
+ cy.get("div.search-button-wrapper button").click();
+
+ cy.get(".lhs .somaticActiveFilter").click();
+ cy.get(".lhs button[data-filter-name]").should("have.length", 0);
+
+ })
+
+ it("aggregated query", () => {
+ cy.get("a[data-id=samples]").click({force: true})
+
+ cy.get("a[href='#facet_tab']").click({force: true})
+ cy.get("button.default-facets-button").click()
+ cy.get("div.search-button-wrapper button").click()
+
+ cy.get(".facet-wrapper .button-list button").should("have.length", 4);
+
+ cy.get("opencb-facet-results opencga-facet-result-view").should("have.length", 4);
+
+ })
+})
diff --git a/cypress/integration/opencga-variant-browser.spec.js b/cypress/integration/opencga-variant-browser.spec.js
new file mode 100644
index 000000000..d31387b11
--- /dev/null
+++ b/cypress/integration/opencga-variant-browser.spec.js
@@ -0,0 +1,31 @@
+import {login} from "../plugins/utils.js";
+
+context("Variant Browser", () => {
+ before(() => {
+ login();
+ })
+
+ it("query", () => {
+ cy.get("a[data-id=browser]").click({force: true})
+ cy.get("div.page-title h2", {timeout: 60000}).should("be.visible").and("contain", "Variant Browser")
+
+
+ cy.get("input#lof").click({force: true});
+ cy.get("opencga-active-filters").contains("Consequence Types 10")
+ cy.get("button.ctActiveFilter").click()
+ })
+
+ it("aggregated query", () => {
+ cy.get("a[data-id=browser]").click({force: true})
+ cy.get("a[href='#facet_tab']").click({force: true})
+ cy.get("button.default-facets-button").click()
+ cy.get("div.search-button-wrapper button").click()
+
+ cy.wait(2000);
+
+ cy.get("#bs-select-1-4").click({force: true}) // gene aggregation field
+ cy.get("#type_Select a").contains( "INSERTION").click({force: true})
+ cy.get("div.search-button-wrapper button").click()
+
+ })
+})
diff --git a/cypress/integration/playground/scripts.js b/cypress/integration/playground/scripts.js
new file mode 100644
index 000000000..696bb2865
--- /dev/null
+++ b/cypress/integration/playground/scripts.js
@@ -0,0 +1,111 @@
+//import "cypress-wait-until";
+
+function preventFormSubmitDefault(selector) {
+ cy.get(selector).then(form$ => {
+ form$.on("submit", e => {
+ e.preventDefault();
+ });
+ });
+}
+
+let i = 0
+
+context("Variant Browser", () => {
+ beforeEach(() => {
+ //cy.visit("http://localhost:3000/src/#login")
+ })
+
+ it("login", () => {
+
+ /*
+ cy.server( {
+ onRequest: () => {
+ i++;
+ },
+ onResponse: () => {
+ i--;
+ }
+ });*/
+
+ /*cy.on('url:changed', url => {
+ //cy.visit(url);
+ console.log("URL CHANGED", url)
+ });*/
+
+ const username = Cypress.env("username")
+
+ const password = Cypress.env("password")
+
+ console.log("username", username)
+ console.log("password", password)
+
+ expect(username, "username was set").to.be.a("string").and.not.be.empty
+ expect(password, "password was set").to.be.a("string").and.not.be.empty
+
+
+ cy.visit("http://localhost:3000/src/#login")
+ cy.get("#opencgaUser").type(username).should("have.value", "///")
+ cy.get("#opencgaPassword").type(password).should("have.value", "///")
+
+ //cy.clock()
+
+ cy.get("form#formLogin").submit()
+
+ cy.wait(1000);
+
+ //cy.visit("http://localhost:3000/src/#home");
+
+ cy.get("#home-nav").click()
+
+
+ //cy.reload();
+ cy.url().should("include", "#home")
+
+ //cy.window().then(win => win["alert"]("HELLO!!"))
+
+ cy.get(".subtitle").contains( "Interactive Variant Analysis")
+ //cy.get(".version").contains( "v2.0.0-beta")
+
+ cy.get("a[data-id=browser]").click({force:true})
+
+ //cy.wait(5000);
+ //cy.visit("http://localhost:3000/src/#browser");
+ //cy.reload();
+ //cy.url().should("include", "#browser");
+
+ //cy.get(".page-title").contains( "Variant Browser")
+
+ /*cy.waitUntil(() => i > 0)
+ cy.waitUntil(() => i === 0)*/
+
+
+ //cy.wait(["@POST", "@GET"])
+
+ //cy.tick(10000)
+
+ //cy.get("@POST.all").should("have.length", 1)
+ //cy.get("@GET.all").should("have.length", 1)
+
+ //cy.reload();
+
+
+
+ //preventFormSubmitDefault("form");
+ //cy.get("button[type=submit]").click()
+ //cy.visit("http://localhost:3000/src/#browser")
+
+
+ //cy.visit("http://localhost:3000/src/#browser")//.should("eq", "#home")
+ //cy.get(".subtitle").should("have.value", "Interactive Variant Analysis")
+ //cy.get("a[data-id=browser]").click({force: true})
+ //cy.url().should("include", "#home")
+
+ /*
+ cy.get("a[data-id=browser]").click({force: true})
+ cy.waitUntil(() => i > 0)
+ cy.waitUntil(() => i === 0)
+ cy.reload();*/
+
+ //cy.get("button[type=submit]").click()
+ })
+})
diff --git a/cypress/integration/playground/test-routing.js b/cypress/integration/playground/test-routing.js
new file mode 100644
index 000000000..5d1f7cce8
--- /dev/null
+++ b/cypress/integration/playground/test-routing.js
@@ -0,0 +1,16 @@
+context("Variant Browser", () => {
+ beforeEach(() => {
+ // cy.visit("http://localhost:3000/src/#login")
+ })
+
+ it("login", () => {
+
+ /*cy.get("#loginButton").within(() => {
+ // ends the current chain and yields null
+ cy.contains("Login").click().end()
+ })*/
+ cy.visit("http://localhost:3000/src/test-routing.html")
+ cy.get("#about-menu").click()
+
+ })
+})
diff --git a/cypress/plugins/index.js b/cypress/plugins/index.js
new file mode 100644
index 000000000..aa9918d21
--- /dev/null
+++ b/cypress/plugins/index.js
@@ -0,0 +1,21 @@
+///
+// ***********************************************************
+// This example plugins/index.js can be used to load plugins
+//
+// You can change the location of this file or turn off loading
+// the plugins file with the 'pluginsFile' configuration option.
+//
+// You can read more here:
+// https://on.cypress.io/plugins-guide
+// ***********************************************************
+
+// This function is called when a project is opened or re-opened (e.g. due to
+// the project's config changing)
+
+/**
+ * @type {Cypress.PluginConfig}
+ */
+module.exports = (on, config) => {
+ // `on` is used to hook into various events Cypress emits
+ // `config` is the resolved Cypress config
+}
diff --git a/cypress/plugins/utils.js b/cypress/plugins/utils.js
new file mode 100644
index 000000000..24b0f4486
--- /dev/null
+++ b/cypress/plugins/utils.js
@@ -0,0 +1,8 @@
+export const login = () => {
+ cy.visit("http://localhost:3000/src/#login")
+ const username = Cypress.env("username");
+ const password = Cypress.env("password");
+ cy.get("#opencgaUser").type(username)
+ cy.get("#opencgaPassword").type(password, {log: false})
+ cy.get("form#formLogin").submit()
+}
diff --git a/docker/Dockerfile b/docker/Dockerfile
deleted file mode 100644
index 502910d4f..000000000
--- a/docker/Dockerfile
+++ /dev/null
@@ -1,20 +0,0 @@
-FROM httpd
-
-# Minimum compatible git commit, please only use later commits.
-
-# Install dependencies
-RUN apt-get update && \
- apt-get upgrade -y && \
- apt-get install -y curl gnupg2 && \
- curl -sL https://deb.nodesource.com/setup_8.x | bash && \
- apt-get install -y git nodejs npm
-
-RUN echo '{ "allow_root": true }' > /root/.bowerrc && \
- npm install -g grunt-cli
-
-COPY ./build /usr/local/apache2/htdocs
-
-EXPOSE 80
-
-VOLUME /usr/local/apache2/htdocs/conf
-
diff --git a/docker/docker-build.py b/docker/docker-build.py
new file mode 100755
index 000000000..1e6f33a34
--- /dev/null
+++ b/docker/docker-build.py
@@ -0,0 +1,151 @@
+#!/usr/bin/env python3
+
+import argparse
+import os
+import requests
+import sys
+import json
+import pathlib
+from pathlib import Path
+
+## Configure command-line options
+parser = argparse.ArgumentParser()
+parser.add_argument('action', help="Action to execute", choices=["build", "push", "delete"], default="build")
+parser.add_argument('--images', help="comma separated list of images to be made, e.g. app", default="app")
+parser.add_argument('--tag', help="the tag for this code, e.g. v2.0.0")
+parser.add_argument('--build-folder', help="the location of the build folder, if not default location")
+parser.add_argument('--username', help="credentials for dockerhub (REQUIRED if deleting from DockerHub)")
+parser.add_argument('--password', help="credentials for dockerhub (REQUIRED if deleting from DockerHub)")
+
+## Some ANSI colors to print shell output
+shell_colors = {
+ 'red': '\033[91m',
+ 'green': '\033[92m',
+ 'blue': '\033[94m',
+ 'magenta': '\033[95m',
+ 'bold': '\033[1m',
+ 'reset': '\033[0m'
+}
+
+def error(message):
+ sys.stderr.write(shell_colors['red'] + 'ERROR: %s\n' % message + shell_colors['reset'])
+ sys.exit(2)
+
+def run(command):
+ print(shell_colors['bold'] + command + shell_colors['reset'])
+ code = os.system(command)
+ if code != 0:
+ error("Error executing: " + command)
+
+def print_header(str):
+ print(shell_colors['magenta'] + "*************************************************" + shell_colors['reset'])
+ print(shell_colors['magenta'] + str + shell_colors['reset'])
+ print(shell_colors['magenta'] + "*************************************************" + shell_colors['reset'])
+
+def package_json():
+ basedir = str(Path(__file__).resolve().parents[1])
+ p = Path(basedir + "/package.json")
+ with open(p, "r") as package_json:
+ data=package_json.read()
+ return json.loads(data)
+
+# def login(loginRequired=False):
+# if args.username is None or args.password is None:
+# if loginRequired:
+# error("Username and password are required")
+# else:
+# return
+#
+# code = os.system("docker login -u " + args.username + " --password " + args.password)
+# if code != 0:
+# error("Error executing: docker login")
+
+
+def build():
+ print_header('Building docker images: ' + ', '.join(images))
+ for image in images:
+ print(shell_colors['blue'] + "Building opencb/iva-" + image + ":" + tag + " ..." + shell_colors['reset'])
+ run("docker build -t opencb/iva-" + image + ":" + tag + " -f " + build_folder + "/docker/iva-" + image + "/Dockerfile " + build_folder)
+
+def tag_latest(image):
+ latest_tag = os.popen(("curl -s https://registry.hub.docker.com/v1/repositories/opencb/iva-" + image + "/tags"
+ + " | jq -r .[].name"
+ + " | grep -v latest"
+ + " | sort -h"
+ + " | head"))
+ if tag >= latest_tag.read():
+ print(shell_colors['blue'] + "Pushing opencb/iva-" + image + ":latest" + shell_colors['reset'])
+ run("docker tag opencb/iva-" + image + ":" + tag + " opencb/iva-" + image + ":latest")
+ run("docker push opencb/iva-" + image + ":latest")
+
+
+def push():
+ print_header('Pushing to DockerHub: ' + ', '.join(images))
+ for i in images:
+ print()
+ print(shell_colors['blue'] + "Pushing opencb/iva-" + i + ":" + tag + " ..." + shell_colors['reset'])
+ run("docker push opencb/iva-" + i + ":" + tag)
+ tag_latest(i)
+
+
+def delete():
+ print_header('Deleting from DockerHub: ' + ', '.join(images))
+ if args.username is None or args.password is None:
+ error("Username and password are required")
+ headers = {
+ 'Content-Type': 'application/json',
+ }
+ data = '{"username": "' + args.username + '", "password": "' + args.password + '"}'
+ response = requests.post('https://hub.docker.com/v2/users/login/', headers=headers, data=data)
+ json_response = json.loads(response.content)
+ if response.status_code != 200:
+ error("dockerhub login failed")
+ for i in images:
+ print()
+ print(shell_colors['blue'] + 'Deleting image on Docker hub for opencb/iva-' + i + ':' + tag + shell_colors['reset'])
+ headers = {
+ 'Authorization': 'JWT ' + json_response["token"]
+ }
+ requests.delete('https://hub.docker.com/v2/repositories/opencb/iva-' + i + '/tags/' + tag + '/', headers=headers)
+
+
+## Parse command-line parameters and init basedir, tag and build_folder
+args = parser.parse_args()
+
+# 1. init basedir: root of the iva repo
+basedir = str(Path(__file__).resolve().parents[1])
+
+# 2. init tag: set tag to default value if not set
+if args.tag is not None:
+ tag = args.tag
+else:
+ tag = package_json()["version"]
+
+# 3. init build_folder: set build folder to default value if not set
+if args.build_folder is not None:
+ build_folder = args.build_folder
+else:
+ build_folder = basedir
+
+if not os.path.isdir(build_folder):
+ error("Build folder does not exist: " + build_folder)
+
+# 4. init images: get a list with all images
+if args.images is None:
+ images = ["app"]
+else:
+ images = args.images.split(",")
+
+
+## Execute the action
+if args.action == "build":
+ # login(loginRequired=False)
+ build()
+elif args.action == "push":
+ # login(loginRequired=False)
+ build()
+ push()
+elif args.action == "delete":
+ delete()
+else:
+ error("Unknown action: " + args.action)
diff --git a/docker/iva-app/Dockerfile b/docker/iva-app/Dockerfile
new file mode 100644
index 000000000..e084441fa
--- /dev/null
+++ b/docker/iva-app/Dockerfile
@@ -0,0 +1,25 @@
+FROM httpd:2.4-alpine
+
+## To run the docker use:
+## docker build -f ./docker/Dockerfile -t iva-httpd .
+## docker run -dit --name iva -p 81:80 -v [ABS_PATH]/iva/build/conf/:/usr/local/apache2/htdocs/iva/conf opencb/iva-app
+## Then open: http://localhost:81/iva
+
+LABEL org.label-schema.vendor="OpenCB" \
+ org.label-schema.name="iva" \
+ org.label-schema.url="http://docs.opencb.org/display/iva" \
+ org.label-schema.description="An open-source web app for interactive variant analysis" \
+ maintainer="Antonio Altamura " \
+ org.label-schema.schema-version="1.0"
+
+## Create and change user
+#RUN addgroup -S iva && adduser -S iva -G iva
+#USER iva
+
+## Copy files
+COPY ./docker/iva-app/entrypoint.sh /usr/local/bin
+COPY ./build/ /usr/local/apache2/htdocs/iva/
+
+EXPOSE 80
+
+CMD ["httpd-foreground"]
diff --git a/docker/iva-app/entrypoint.sh b/docker/iva-app/entrypoint.sh
new file mode 100755
index 000000000..2228d582c
--- /dev/null
+++ b/docker/iva-app/entrypoint.sh
@@ -0,0 +1,6 @@
+#!/bin/bash
+
+echo "total args:" $#
+echo "first:" $1
+echo "second:" $2
+#sed -i 's/host:".*"/host: "val" /g' /usr/local/apache2/htdocs/iva/conf/conf.js
diff --git a/favicon.ico b/favicon.ico
new file mode 100644
index 000000000..97e6fc47d
Binary files /dev/null and b/favicon.ico differ
diff --git a/lib/jsorolla b/lib/jsorolla
index 131698b8b..333668a64 160000
--- a/lib/jsorolla
+++ b/lib/jsorolla
@@ -1 +1 @@
-Subproject commit 131698b8b0a9c0d2b4c3830143ac30f16368707b
+Subproject commit 333668a64645a8e1833058b5d5b006f7b963238f
diff --git a/nightwatch.conf.js b/nightwatch.conf.js
index c061fd4e3..29498c1f0 100644
--- a/nightwatch.conf.js
+++ b/nightwatch.conf.js
@@ -13,7 +13,7 @@ const config = {
"selenium": {
"start_process": true,
- "server_path": BIN_PATH + "selenium-server-standalone-3.7.0.jar",
+ "server_path": BIN_PATH + "selenium-server-standalone-3.141.59.jar",
"log_path": "",
"port": 4444,
"cli_args": {
diff --git a/package-lock.json b/package-lock.json
new file mode 100644
index 000000000..a98946d06
--- /dev/null
+++ b/package-lock.json
@@ -0,0 +1,18969 @@
+{
+ "name": "iva",
+ "version": "2.0.0",
+ "lockfileVersion": 1,
+ "requires": true,
+ "dependencies": {
+ "@babel/code-frame": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.8.3.tgz",
+ "integrity": "sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g==",
+ "dev": true,
+ "requires": {
+ "@babel/highlight": "^7.8.3"
+ }
+ },
+ "@babel/compat-data": {
+ "version": "7.9.6",
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.9.6.tgz",
+ "integrity": "sha512-5QPTrNen2bm7RBc7dsOmcA5hbrS4O2Vhmk5XOL4zWW/zD/hV0iinpefDlkm+tBBy8kDtFaaeEvmAqt+nURAV2g==",
+ "dev": true,
+ "requires": {
+ "browserslist": "^4.11.1",
+ "invariant": "^2.2.4",
+ "semver": "^5.5.0"
+ }
+ },
+ "@babel/core": {
+ "version": "7.9.6",
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.9.6.tgz",
+ "integrity": "sha512-nD3deLvbsApbHAHttzIssYqgb883yU/d9roe4RZymBCDaZryMJDbptVpEpeQuRh4BJ+SYI8le9YGxKvFEvl1Wg==",
+ "dev": true,
+ "requires": {
+ "@babel/code-frame": "^7.8.3",
+ "@babel/generator": "^7.9.6",
+ "@babel/helper-module-transforms": "^7.9.0",
+ "@babel/helpers": "^7.9.6",
+ "@babel/parser": "^7.9.6",
+ "@babel/template": "^7.8.6",
+ "@babel/traverse": "^7.9.6",
+ "@babel/types": "^7.9.6",
+ "convert-source-map": "^1.7.0",
+ "debug": "^4.1.0",
+ "gensync": "^1.0.0-beta.1",
+ "json5": "^2.1.2",
+ "lodash": "^4.17.13",
+ "resolve": "^1.3.2",
+ "semver": "^5.4.1",
+ "source-map": "^0.5.0"
+ },
+ "dependencies": {
+ "@babel/generator": {
+ "version": "7.9.6",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.9.6.tgz",
+ "integrity": "sha512-+htwWKJbH2bL72HRluF8zumBxzuX0ZZUFl3JLNyoUjM/Ho8wnVpPXM6aUz8cfKDqQ/h7zHqKt4xzJteUosckqQ==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.9.6",
+ "jsesc": "^2.5.1",
+ "lodash": "^4.17.13",
+ "source-map": "^0.5.0"
+ }
+ },
+ "@babel/helper-function-name": {
+ "version": "7.9.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.9.5.tgz",
+ "integrity": "sha512-JVcQZeXM59Cd1qanDUxv9fgJpt3NeKUaqBqUEvfmQ+BCOKq2xUgaWZW2hr0dkbyJgezYuplEoh5knmrnS68efw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-get-function-arity": "^7.8.3",
+ "@babel/template": "^7.8.3",
+ "@babel/types": "^7.9.5"
+ }
+ },
+ "@babel/helper-module-transforms": {
+ "version": "7.9.0",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.9.0.tgz",
+ "integrity": "sha512-0FvKyu0gpPfIQ8EkxlrAydOWROdHpBmiCiRwLkUiBGhCUPRRbVD2/tm3sFr/c/GWFrQ/ffutGUAnx7V0FzT2wA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-module-imports": "^7.8.3",
+ "@babel/helper-replace-supers": "^7.8.6",
+ "@babel/helper-simple-access": "^7.8.3",
+ "@babel/helper-split-export-declaration": "^7.8.3",
+ "@babel/template": "^7.8.6",
+ "@babel/types": "^7.9.0",
+ "lodash": "^4.17.13"
+ }
+ },
+ "@babel/parser": {
+ "version": "7.9.6",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.9.6.tgz",
+ "integrity": "sha512-AoeIEJn8vt+d/6+PXDRPaksYhnlbMIiejioBZvvMQsOjW/JYK6k/0dKnvvP3EhK5GfMBWDPtrxRtegWdAcdq9Q==",
+ "dev": true
+ },
+ "@babel/traverse": {
+ "version": "7.9.6",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.9.6.tgz",
+ "integrity": "sha512-b3rAHSjbxy6VEAvlxM8OV/0X4XrG72zoxme6q1MOoe2vd0bEc+TwayhuC1+Dfgqh1QEG+pj7atQqvUprHIccsg==",
+ "dev": true,
+ "requires": {
+ "@babel/code-frame": "^7.8.3",
+ "@babel/generator": "^7.9.6",
+ "@babel/helper-function-name": "^7.9.5",
+ "@babel/helper-split-export-declaration": "^7.8.3",
+ "@babel/parser": "^7.9.6",
+ "@babel/types": "^7.9.6",
+ "debug": "^4.1.0",
+ "globals": "^11.1.0",
+ "lodash": "^4.17.13"
+ }
+ },
+ "@babel/types": {
+ "version": "7.9.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.9.6.tgz",
+ "integrity": "sha512-qxXzvBO//jO9ZnoasKF1uJzHd2+M6Q2ZPIVfnFps8JJvXy0ZBbwbNOmE6SGIY5XOY6d1Bo5lb9d9RJ8nv3WSeA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-validator-identifier": "^7.9.5",
+ "lodash": "^4.17.13",
+ "to-fast-properties": "^2.0.0"
+ }
+ },
+ "debug": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
+ "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
+ "dev": true,
+ "requires": {
+ "ms": "^2.1.1"
+ }
+ }
+ }
+ },
+ "@babel/generator": {
+ "version": "7.8.7",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.8.7.tgz",
+ "integrity": "sha512-DQwjiKJqH4C3qGiyQCAExJHoZssn49JTMJgZ8SANGgVFdkupcUhLOdkAeoC6kmHZCPfoDG5M0b6cFlSN5wW7Ew==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.8.7",
+ "jsesc": "^2.5.1",
+ "lodash": "^4.17.13",
+ "source-map": "^0.5.0"
+ }
+ },
+ "@babel/helper-annotate-as-pure": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.8.3.tgz",
+ "integrity": "sha512-6o+mJrZBxOoEX77Ezv9zwW7WV8DdluouRKNY/IR5u/YTMuKHgugHOzYWlYvYLpLA9nPsQCAAASpCIbjI9Mv+Uw==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.8.3"
+ }
+ },
+ "@babel/helper-builder-binary-assignment-operator-visitor": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.8.3.tgz",
+ "integrity": "sha512-5eFOm2SyFPK4Rh3XMMRDjN7lBH0orh3ss0g3rTYZnBQ+r6YPj7lgDyCvPphynHvUrobJmeMignBr6Acw9mAPlw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-explode-assignable-expression": "^7.8.3",
+ "@babel/types": "^7.8.3"
+ }
+ },
+ "@babel/helper-builder-react-jsx": {
+ "version": "7.9.0",
+ "resolved": "https://registry.npmjs.org/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.9.0.tgz",
+ "integrity": "sha512-weiIo4gaoGgnhff54GQ3P5wsUQmnSwpkvU0r6ZHq6TzoSzKy4JxHEgnxNytaKbov2a9z/CVNyzliuCOUPEX3Jw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-annotate-as-pure": "^7.8.3",
+ "@babel/types": "^7.9.0"
+ },
+ "dependencies": {
+ "@babel/types": {
+ "version": "7.9.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.9.6.tgz",
+ "integrity": "sha512-qxXzvBO//jO9ZnoasKF1uJzHd2+M6Q2ZPIVfnFps8JJvXy0ZBbwbNOmE6SGIY5XOY6d1Bo5lb9d9RJ8nv3WSeA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-validator-identifier": "^7.9.5",
+ "lodash": "^4.17.13",
+ "to-fast-properties": "^2.0.0"
+ }
+ }
+ }
+ },
+ "@babel/helper-builder-react-jsx-experimental": {
+ "version": "7.9.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.9.5.tgz",
+ "integrity": "sha512-HAagjAC93tk748jcXpZ7oYRZH485RCq/+yEv9SIWezHRPv9moZArTnkUNciUNzvwHUABmiWKlcxJvMcu59UwTg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-annotate-as-pure": "^7.8.3",
+ "@babel/helper-module-imports": "^7.8.3",
+ "@babel/types": "^7.9.5"
+ },
+ "dependencies": {
+ "@babel/types": {
+ "version": "7.9.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.9.6.tgz",
+ "integrity": "sha512-qxXzvBO//jO9ZnoasKF1uJzHd2+M6Q2ZPIVfnFps8JJvXy0ZBbwbNOmE6SGIY5XOY6d1Bo5lb9d9RJ8nv3WSeA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-validator-identifier": "^7.9.5",
+ "lodash": "^4.17.13",
+ "to-fast-properties": "^2.0.0"
+ }
+ }
+ }
+ },
+ "@babel/helper-compilation-targets": {
+ "version": "7.9.6",
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.9.6.tgz",
+ "integrity": "sha512-x2Nvu0igO0ejXzx09B/1fGBxY9NXQlBW2kZsSxCJft+KHN8t9XWzIvFxtPHnBOAXpVsdxZKZFbRUC8TsNKajMw==",
+ "dev": true,
+ "requires": {
+ "@babel/compat-data": "^7.9.6",
+ "browserslist": "^4.11.1",
+ "invariant": "^2.2.4",
+ "levenary": "^1.1.1",
+ "semver": "^5.5.0"
+ }
+ },
+ "@babel/helper-create-class-features-plugin": {
+ "version": "7.8.6",
+ "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.8.6.tgz",
+ "integrity": "sha512-klTBDdsr+VFFqaDHm5rR69OpEQtO2Qv8ECxHS1mNhJJvaHArR6a1xTf5K/eZW7eZpJbhCx3NW1Yt/sKsLXLblg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-function-name": "^7.8.3",
+ "@babel/helper-member-expression-to-functions": "^7.8.3",
+ "@babel/helper-optimise-call-expression": "^7.8.3",
+ "@babel/helper-plugin-utils": "^7.8.3",
+ "@babel/helper-replace-supers": "^7.8.6",
+ "@babel/helper-split-export-declaration": "^7.8.3"
+ }
+ },
+ "@babel/helper-create-regexp-features-plugin": {
+ "version": "7.8.8",
+ "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.8.8.tgz",
+ "integrity": "sha512-LYVPdwkrQEiX9+1R29Ld/wTrmQu1SSKYnuOk3g0CkcZMA1p0gsNxJFj/3gBdaJ7Cg0Fnek5z0DsMULePP7Lrqg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-annotate-as-pure": "^7.8.3",
+ "@babel/helper-regex": "^7.8.3",
+ "regexpu-core": "^4.7.0"
+ }
+ },
+ "@babel/helper-define-map": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.8.3.tgz",
+ "integrity": "sha512-PoeBYtxoZGtct3md6xZOCWPcKuMuk3IHhgxsRRNtnNShebf4C8YonTSblsK4tvDbm+eJAw2HAPOfCr+Q/YRG/g==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-function-name": "^7.8.3",
+ "@babel/types": "^7.8.3",
+ "lodash": "^4.17.13"
+ }
+ },
+ "@babel/helper-explode-assignable-expression": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.8.3.tgz",
+ "integrity": "sha512-N+8eW86/Kj147bO9G2uclsg5pwfs/fqqY5rwgIL7eTBklgXjcOJ3btzS5iM6AitJcftnY7pm2lGsrJVYLGjzIw==",
+ "dev": true,
+ "requires": {
+ "@babel/traverse": "^7.8.3",
+ "@babel/types": "^7.8.3"
+ }
+ },
+ "@babel/helper-function-name": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.8.3.tgz",
+ "integrity": "sha512-BCxgX1BC2hD/oBlIFUgOCQDOPV8nSINxCwM3o93xP4P9Fq6aV5sgv2cOOITDMtCfQ+3PvHp3l689XZvAM9QyOA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-get-function-arity": "^7.8.3",
+ "@babel/template": "^7.8.3",
+ "@babel/types": "^7.8.3"
+ }
+ },
+ "@babel/helper-get-function-arity": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.8.3.tgz",
+ "integrity": "sha512-FVDR+Gd9iLjUMY1fzE2SR0IuaJToR4RkCDARVfsBBPSP53GEqSFjD8gNyxg246VUyc/ALRxFaAK8rVG7UT7xRA==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.8.3"
+ }
+ },
+ "@babel/helper-hoist-variables": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.8.3.tgz",
+ "integrity": "sha512-ky1JLOjcDUtSc+xkt0xhYff7Z6ILTAHKmZLHPxAhOP0Nd77O+3nCsd6uSVYur6nJnCI029CrNbYlc0LoPfAPQg==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.8.3"
+ }
+ },
+ "@babel/helper-member-expression-to-functions": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.8.3.tgz",
+ "integrity": "sha512-fO4Egq88utkQFjbPrSHGmGLFqmrshs11d46WI+WZDESt7Wu7wN2G2Iu+NMMZJFDOVRHAMIkB5SNh30NtwCA7RA==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.8.3"
+ }
+ },
+ "@babel/helper-module-imports": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.8.3.tgz",
+ "integrity": "sha512-R0Bx3jippsbAEtzkpZ/6FIiuzOURPcMjHp+Z6xPe6DtApDJx+w7UYyOLanZqO8+wKR9G10s/FmHXvxaMd9s6Kg==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.8.3"
+ }
+ },
+ "@babel/helper-module-transforms": {
+ "version": "7.9.0",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.9.0.tgz",
+ "integrity": "sha512-0FvKyu0gpPfIQ8EkxlrAydOWROdHpBmiCiRwLkUiBGhCUPRRbVD2/tm3sFr/c/GWFrQ/ffutGUAnx7V0FzT2wA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-module-imports": "^7.8.3",
+ "@babel/helper-replace-supers": "^7.8.6",
+ "@babel/helper-simple-access": "^7.8.3",
+ "@babel/helper-split-export-declaration": "^7.8.3",
+ "@babel/template": "^7.8.6",
+ "@babel/types": "^7.9.0",
+ "lodash": "^4.17.13"
+ },
+ "dependencies": {
+ "@babel/types": {
+ "version": "7.9.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.9.6.tgz",
+ "integrity": "sha512-qxXzvBO//jO9ZnoasKF1uJzHd2+M6Q2ZPIVfnFps8JJvXy0ZBbwbNOmE6SGIY5XOY6d1Bo5lb9d9RJ8nv3WSeA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-validator-identifier": "^7.9.5",
+ "lodash": "^4.17.13",
+ "to-fast-properties": "^2.0.0"
+ }
+ }
+ }
+ },
+ "@babel/helper-optimise-call-expression": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.8.3.tgz",
+ "integrity": "sha512-Kag20n86cbO2AvHca6EJsvqAd82gc6VMGule4HwebwMlwkpXuVqrNRj6CkCV2sKxgi9MyAUnZVnZ6lJ1/vKhHQ==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.8.3"
+ }
+ },
+ "@babel/helper-plugin-utils": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz",
+ "integrity": "sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==",
+ "dev": true
+ },
+ "@babel/helper-regex": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-regex/-/helper-regex-7.8.3.tgz",
+ "integrity": "sha512-BWt0QtYv/cg/NecOAZMdcn/waj/5P26DR4mVLXfFtDokSR6fyuG0Pj+e2FqtSME+MqED1khnSMulkmGl8qWiUQ==",
+ "dev": true,
+ "requires": {
+ "lodash": "^4.17.13"
+ }
+ },
+ "@babel/helper-remap-async-to-generator": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.8.3.tgz",
+ "integrity": "sha512-kgwDmw4fCg7AVgS4DukQR/roGp+jP+XluJE5hsRZwxCYGg+Rv9wSGErDWhlI90FODdYfd4xG4AQRiMDjjN0GzA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-annotate-as-pure": "^7.8.3",
+ "@babel/helper-wrap-function": "^7.8.3",
+ "@babel/template": "^7.8.3",
+ "@babel/traverse": "^7.8.3",
+ "@babel/types": "^7.8.3"
+ }
+ },
+ "@babel/helper-replace-supers": {
+ "version": "7.8.6",
+ "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.8.6.tgz",
+ "integrity": "sha512-PeMArdA4Sv/Wf4zXwBKPqVj7n9UF/xg6slNRtZW84FM7JpE1CbG8B612FyM4cxrf4fMAMGO0kR7voy1ForHHFA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-member-expression-to-functions": "^7.8.3",
+ "@babel/helper-optimise-call-expression": "^7.8.3",
+ "@babel/traverse": "^7.8.6",
+ "@babel/types": "^7.8.6"
+ }
+ },
+ "@babel/helper-simple-access": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.8.3.tgz",
+ "integrity": "sha512-VNGUDjx5cCWg4vvCTR8qQ7YJYZ+HBjxOgXEl7ounz+4Sn7+LMD3CFrCTEU6/qXKbA2nKg21CwhhBzO0RpRbdCw==",
+ "dev": true,
+ "requires": {
+ "@babel/template": "^7.8.3",
+ "@babel/types": "^7.8.3"
+ }
+ },
+ "@babel/helper-split-export-declaration": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.8.3.tgz",
+ "integrity": "sha512-3x3yOeyBhW851hroze7ElzdkeRXQYQbFIb7gLK1WQYsw2GWDay5gAJNw1sWJ0VFP6z5J1whqeXH/WCdCjZv6dA==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.8.3"
+ }
+ },
+ "@babel/helper-validator-identifier": {
+ "version": "7.9.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.9.5.tgz",
+ "integrity": "sha512-/8arLKUFq882w4tWGj9JYzRpAlZgiWUJ+dtteNTDqrRBz9Iguck9Rn3ykuBDoUwh2TO4tSAJlrxDUOXWklJe4g==",
+ "dev": true
+ },
+ "@babel/helper-wrap-function": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.8.3.tgz",
+ "integrity": "sha512-LACJrbUET9cQDzb6kG7EeD7+7doC3JNvUgTEQOx2qaO1fKlzE/Bf05qs9w1oXQMmXlPO65lC3Tq9S6gZpTErEQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-function-name": "^7.8.3",
+ "@babel/template": "^7.8.3",
+ "@babel/traverse": "^7.8.3",
+ "@babel/types": "^7.8.3"
+ }
+ },
+ "@babel/helpers": {
+ "version": "7.9.6",
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.9.6.tgz",
+ "integrity": "sha512-tI4bUbldloLcHWoRUMAj4g1bF313M/o6fBKhIsb3QnGVPwRm9JsNf/gqMkQ7zjqReABiffPV6RWj7hEglID5Iw==",
+ "dev": true,
+ "requires": {
+ "@babel/template": "^7.8.3",
+ "@babel/traverse": "^7.9.6",
+ "@babel/types": "^7.9.6"
+ },
+ "dependencies": {
+ "@babel/generator": {
+ "version": "7.9.6",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.9.6.tgz",
+ "integrity": "sha512-+htwWKJbH2bL72HRluF8zumBxzuX0ZZUFl3JLNyoUjM/Ho8wnVpPXM6aUz8cfKDqQ/h7zHqKt4xzJteUosckqQ==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.9.6",
+ "jsesc": "^2.5.1",
+ "lodash": "^4.17.13",
+ "source-map": "^0.5.0"
+ }
+ },
+ "@babel/helper-function-name": {
+ "version": "7.9.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.9.5.tgz",
+ "integrity": "sha512-JVcQZeXM59Cd1qanDUxv9fgJpt3NeKUaqBqUEvfmQ+BCOKq2xUgaWZW2hr0dkbyJgezYuplEoh5knmrnS68efw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-get-function-arity": "^7.8.3",
+ "@babel/template": "^7.8.3",
+ "@babel/types": "^7.9.5"
+ }
+ },
+ "@babel/parser": {
+ "version": "7.9.6",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.9.6.tgz",
+ "integrity": "sha512-AoeIEJn8vt+d/6+PXDRPaksYhnlbMIiejioBZvvMQsOjW/JYK6k/0dKnvvP3EhK5GfMBWDPtrxRtegWdAcdq9Q==",
+ "dev": true
+ },
+ "@babel/traverse": {
+ "version": "7.9.6",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.9.6.tgz",
+ "integrity": "sha512-b3rAHSjbxy6VEAvlxM8OV/0X4XrG72zoxme6q1MOoe2vd0bEc+TwayhuC1+Dfgqh1QEG+pj7atQqvUprHIccsg==",
+ "dev": true,
+ "requires": {
+ "@babel/code-frame": "^7.8.3",
+ "@babel/generator": "^7.9.6",
+ "@babel/helper-function-name": "^7.9.5",
+ "@babel/helper-split-export-declaration": "^7.8.3",
+ "@babel/parser": "^7.9.6",
+ "@babel/types": "^7.9.6",
+ "debug": "^4.1.0",
+ "globals": "^11.1.0",
+ "lodash": "^4.17.13"
+ }
+ },
+ "@babel/types": {
+ "version": "7.9.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.9.6.tgz",
+ "integrity": "sha512-qxXzvBO//jO9ZnoasKF1uJzHd2+M6Q2ZPIVfnFps8JJvXy0ZBbwbNOmE6SGIY5XOY6d1Bo5lb9d9RJ8nv3WSeA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-validator-identifier": "^7.9.5",
+ "lodash": "^4.17.13",
+ "to-fast-properties": "^2.0.0"
+ }
+ },
+ "debug": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
+ "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
+ "dev": true,
+ "requires": {
+ "ms": "^2.1.1"
+ }
+ }
+ }
+ },
+ "@babel/highlight": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.8.3.tgz",
+ "integrity": "sha512-PX4y5xQUvy0fnEVHrYOarRPXVWafSjTW9T0Hab8gVIawpl2Sj0ORyrygANq+KjcNlSSTw0YCLSNA8OyZ1I4yEg==",
+ "dev": true,
+ "requires": {
+ "chalk": "^2.0.0",
+ "esutils": "^2.0.2",
+ "js-tokens": "^4.0.0"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
+ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^1.9.0"
+ }
+ },
+ "chalk": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
+ "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^3.2.1",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^5.3.0"
+ }
+ },
+ "supports-color": {
+ "version": "5.5.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
+ "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^3.0.0"
+ }
+ }
+ }
+ },
+ "@babel/parser": {
+ "version": "7.8.7",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.8.7.tgz",
+ "integrity": "sha512-9JWls8WilDXFGxs0phaXAZgpxTZhSk/yOYH2hTHC0X1yC7Z78IJfvR1vJ+rmJKq3I35td2XzXzN6ZLYlna+r/A==",
+ "dev": true
+ },
+ "@babel/plugin-proposal-async-generator-functions": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.8.3.tgz",
+ "integrity": "sha512-NZ9zLv848JsV3hs8ryEh7Uaz/0KsmPLqv0+PdkDJL1cJy0K4kOCFa8zc1E3mp+RHPQcpdfb/6GovEsW4VDrOMw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3",
+ "@babel/helper-remap-async-to-generator": "^7.8.3",
+ "@babel/plugin-syntax-async-generators": "^7.8.0"
+ }
+ },
+ "@babel/plugin-proposal-class-properties": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.8.3.tgz",
+ "integrity": "sha512-EqFhbo7IosdgPgZggHaNObkmO1kNUe3slaKu54d5OWvy+p9QIKOzK1GAEpAIsZtWVtPXUHSMcT4smvDrCfY4AA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-create-class-features-plugin": "^7.8.3",
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-proposal-dynamic-import": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.8.3.tgz",
+ "integrity": "sha512-NyaBbyLFXFLT9FP+zk0kYlUlA8XtCUbehs67F0nnEg7KICgMc2mNkIeu9TYhKzyXMkrapZFwAhXLdnt4IYHy1w==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3",
+ "@babel/plugin-syntax-dynamic-import": "^7.8.0"
+ }
+ },
+ "@babel/plugin-proposal-export-default-from": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.8.3.tgz",
+ "integrity": "sha512-PYtv2S2OdCdp7GSPDg5ndGZFm9DmWFvuLoS5nBxZCgOBggluLnhTScspJxng96alHQzPyrrHxvC9/w4bFuspeA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3",
+ "@babel/plugin-syntax-export-default-from": "^7.8.3"
+ }
+ },
+ "@babel/plugin-proposal-json-strings": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.8.3.tgz",
+ "integrity": "sha512-KGhQNZ3TVCQG/MjRbAUwuH+14y9q0tpxs1nWWs3pbSleRdDro9SAMMDyye8HhY1gqZ7/NqIc8SKhya0wRDgP1Q==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3",
+ "@babel/plugin-syntax-json-strings": "^7.8.0"
+ }
+ },
+ "@babel/plugin-proposal-nullish-coalescing-operator": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.8.3.tgz",
+ "integrity": "sha512-TS9MlfzXpXKt6YYomudb/KU7nQI6/xnapG6in1uZxoxDghuSMZsPb6D2fyUwNYSAp4l1iR7QtFOjkqcRYcUsfw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3",
+ "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0"
+ }
+ },
+ "@babel/plugin-proposal-numeric-separator": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.8.3.tgz",
+ "integrity": "sha512-jWioO1s6R/R+wEHizfaScNsAx+xKgwTLNXSh7tTC4Usj3ItsPEhYkEpU4h+lpnBwq7NBVOJXfO6cRFYcX69JUQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3",
+ "@babel/plugin-syntax-numeric-separator": "^7.8.3"
+ }
+ },
+ "@babel/plugin-proposal-object-rest-spread": {
+ "version": "7.9.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.9.6.tgz",
+ "integrity": "sha512-Ga6/fhGqA9Hj+y6whNpPv8psyaK5xzrQwSPsGPloVkvmH+PqW1ixdnfJ9uIO06OjQNYol3PMnfmJ8vfZtkzF+A==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3",
+ "@babel/plugin-syntax-object-rest-spread": "^7.8.0",
+ "@babel/plugin-transform-parameters": "^7.9.5"
+ }
+ },
+ "@babel/plugin-proposal-optional-catch-binding": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.8.3.tgz",
+ "integrity": "sha512-0gkX7J7E+AtAw9fcwlVQj8peP61qhdg/89D5swOkjYbkboA2CVckn3kiyum1DE0wskGb7KJJxBdyEBApDLLVdw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3",
+ "@babel/plugin-syntax-optional-catch-binding": "^7.8.0"
+ }
+ },
+ "@babel/plugin-proposal-optional-chaining": {
+ "version": "7.9.0",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.9.0.tgz",
+ "integrity": "sha512-NDn5tu3tcv4W30jNhmc2hyD5c56G6cXx4TesJubhxrJeCvuuMpttxr0OnNCqbZGhFjLrg+NIhxxC+BK5F6yS3w==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3",
+ "@babel/plugin-syntax-optional-chaining": "^7.8.0"
+ }
+ },
+ "@babel/plugin-proposal-unicode-property-regex": {
+ "version": "7.8.8",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.8.8.tgz",
+ "integrity": "sha512-EVhjVsMpbhLw9ZfHWSx2iy13Q8Z/eg8e8ccVWt23sWQK5l1UdkoLJPN5w69UA4uITGBnEZD2JOe4QOHycYKv8A==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-create-regexp-features-plugin": "^7.8.8",
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-syntax-async-generators": {
+ "version": "7.8.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz",
+ "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ }
+ },
+ "@babel/plugin-syntax-bigint": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz",
+ "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ }
+ },
+ "@babel/plugin-syntax-dynamic-import": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz",
+ "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ }
+ },
+ "@babel/plugin-syntax-export-default-from": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.8.3.tgz",
+ "integrity": "sha512-a1qnnsr73KLNIQcQlcQ4ZHxqqfBKM6iNQZW2OMTyxNbA2WC7SHWHtGVpFzWtQAuS2pspkWVzdEBXXx8Ik0Za4w==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-syntax-json-strings": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz",
+ "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ }
+ },
+ "@babel/plugin-syntax-jsx": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.8.3.tgz",
+ "integrity": "sha512-WxdW9xyLgBdefoo0Ynn3MRSkhe5tFVxxKNVdnZSh318WrG2e2jH+E9wd/++JsqcLJZPfz87njQJ8j2Upjm0M0A==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-syntax-nullish-coalescing-operator": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz",
+ "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ }
+ },
+ "@babel/plugin-syntax-numeric-separator": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.8.3.tgz",
+ "integrity": "sha512-H7dCMAdN83PcCmqmkHB5dtp+Xa9a6LKSvA2hiFBC/5alSHxM5VgWZXFqDi0YFe8XNGT6iCa+z4V4zSt/PdZ7Dw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-syntax-object-rest-spread": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz",
+ "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ }
+ },
+ "@babel/plugin-syntax-optional-catch-binding": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz",
+ "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ }
+ },
+ "@babel/plugin-syntax-optional-chaining": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz",
+ "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ }
+ },
+ "@babel/plugin-syntax-top-level-await": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.8.3.tgz",
+ "integrity": "sha512-kwj1j9lL/6Wd0hROD3b/OZZ7MSrZLqqn9RAZ5+cYYsflQ9HZBIKCUkr3+uL1MEJ1NePiUbf98jjiMQSv0NMR9g==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-arrow-functions": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.8.3.tgz",
+ "integrity": "sha512-0MRF+KC8EqH4dbuITCWwPSzsyO3HIWWlm30v8BbbpOrS1B++isGxPnnuq/IZvOX5J2D/p7DQalQm+/2PnlKGxg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-async-to-generator": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.8.3.tgz",
+ "integrity": "sha512-imt9tFLD9ogt56Dd5CI/6XgpukMwd/fLGSrix2httihVe7LOGVPhyhMh1BU5kDM7iHD08i8uUtmV2sWaBFlHVQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-module-imports": "^7.8.3",
+ "@babel/helper-plugin-utils": "^7.8.3",
+ "@babel/helper-remap-async-to-generator": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-block-scoped-functions": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.8.3.tgz",
+ "integrity": "sha512-vo4F2OewqjbB1+yaJ7k2EJFHlTP3jR634Z9Cj9itpqNjuLXvhlVxgnjsHsdRgASR8xYDrx6onw4vW5H6We0Jmg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-block-scoping": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.8.3.tgz",
+ "integrity": "sha512-pGnYfm7RNRgYRi7bids5bHluENHqJhrV4bCZRwc5GamaWIIs07N4rZECcmJL6ZClwjDz1GbdMZFtPs27hTB06w==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3",
+ "lodash": "^4.17.13"
+ }
+ },
+ "@babel/plugin-transform-classes": {
+ "version": "7.9.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.9.5.tgz",
+ "integrity": "sha512-x2kZoIuLC//O5iA7PEvecB105o7TLzZo8ofBVhP79N+DO3jaX+KYfww9TQcfBEZD0nikNyYcGB1IKtRq36rdmg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-annotate-as-pure": "^7.8.3",
+ "@babel/helper-define-map": "^7.8.3",
+ "@babel/helper-function-name": "^7.9.5",
+ "@babel/helper-optimise-call-expression": "^7.8.3",
+ "@babel/helper-plugin-utils": "^7.8.3",
+ "@babel/helper-replace-supers": "^7.8.6",
+ "@babel/helper-split-export-declaration": "^7.8.3",
+ "globals": "^11.1.0"
+ },
+ "dependencies": {
+ "@babel/helper-function-name": {
+ "version": "7.9.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.9.5.tgz",
+ "integrity": "sha512-JVcQZeXM59Cd1qanDUxv9fgJpt3NeKUaqBqUEvfmQ+BCOKq2xUgaWZW2hr0dkbyJgezYuplEoh5knmrnS68efw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-get-function-arity": "^7.8.3",
+ "@babel/template": "^7.8.3",
+ "@babel/types": "^7.9.5"
+ }
+ },
+ "@babel/types": {
+ "version": "7.9.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.9.6.tgz",
+ "integrity": "sha512-qxXzvBO//jO9ZnoasKF1uJzHd2+M6Q2ZPIVfnFps8JJvXy0ZBbwbNOmE6SGIY5XOY6d1Bo5lb9d9RJ8nv3WSeA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-validator-identifier": "^7.9.5",
+ "lodash": "^4.17.13",
+ "to-fast-properties": "^2.0.0"
+ }
+ }
+ }
+ },
+ "@babel/plugin-transform-computed-properties": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.8.3.tgz",
+ "integrity": "sha512-O5hiIpSyOGdrQZRQ2ccwtTVkgUDBBiCuK//4RJ6UfePllUTCENOzKxfh6ulckXKc0DixTFLCfb2HVkNA7aDpzA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-destructuring": {
+ "version": "7.9.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.9.5.tgz",
+ "integrity": "sha512-j3OEsGel8nHL/iusv/mRd5fYZ3DrOxWC82x0ogmdN/vHfAP4MYw+AFKYanzWlktNwikKvlzUV//afBW5FTp17Q==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-dotall-regex": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.8.3.tgz",
+ "integrity": "sha512-kLs1j9Nn4MQoBYdRXH6AeaXMbEJFaFu/v1nQkvib6QzTj8MZI5OQzqmD83/2jEM1z0DLilra5aWO5YpyC0ALIw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-create-regexp-features-plugin": "^7.8.3",
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-duplicate-keys": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.8.3.tgz",
+ "integrity": "sha512-s8dHiBUbcbSgipS4SMFuWGqCvyge5V2ZeAWzR6INTVC3Ltjig/Vw1G2Gztv0vU/hRG9X8IvKvYdoksnUfgXOEQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-exponentiation-operator": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.8.3.tgz",
+ "integrity": "sha512-zwIpuIymb3ACcInbksHaNcR12S++0MDLKkiqXHl3AzpgdKlFNhog+z/K0+TGW+b0w5pgTq4H6IwV/WhxbGYSjQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-builder-binary-assignment-operator-visitor": "^7.8.3",
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-for-of": {
+ "version": "7.9.0",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.9.0.tgz",
+ "integrity": "sha512-lTAnWOpMwOXpyDx06N+ywmF3jNbafZEqZ96CGYabxHrxNX8l5ny7dt4bK/rGwAh9utyP2b2Hv7PlZh1AAS54FQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-function-name": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.8.3.tgz",
+ "integrity": "sha512-rO/OnDS78Eifbjn5Py9v8y0aR+aSYhDhqAwVfsTl0ERuMZyr05L1aFSCJnbv2mmsLkit/4ReeQ9N2BgLnOcPCQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-function-name": "^7.8.3",
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-literals": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.8.3.tgz",
+ "integrity": "sha512-3Tqf8JJ/qB7TeldGl+TT55+uQei9JfYaregDcEAyBZ7akutriFrt6C/wLYIer6OYhleVQvH/ntEhjE/xMmy10A==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-member-expression-literals": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.8.3.tgz",
+ "integrity": "sha512-3Wk2EXhnw+rP+IDkK6BdtPKsUE5IeZ6QOGrPYvw52NwBStw9V1ZVzxgK6fSKSxqUvH9eQPR3tm3cOq79HlsKYA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-modules-amd": {
+ "version": "7.9.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.9.6.tgz",
+ "integrity": "sha512-zoT0kgC3EixAyIAU+9vfaUVKTv9IxBDSabgHoUCBP6FqEJ+iNiN7ip7NBKcYqbfUDfuC2mFCbM7vbu4qJgOnDw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-module-transforms": "^7.9.0",
+ "@babel/helper-plugin-utils": "^7.8.3",
+ "babel-plugin-dynamic-import-node": "^2.3.3"
+ }
+ },
+ "@babel/plugin-transform-modules-commonjs": {
+ "version": "7.9.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.9.6.tgz",
+ "integrity": "sha512-7H25fSlLcn+iYimmsNe3uK1at79IE6SKW9q0/QeEHTMC9MdOZ+4bA+T1VFB5fgOqBWoqlifXRzYD0JPdmIrgSQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-module-transforms": "^7.9.0",
+ "@babel/helper-plugin-utils": "^7.8.3",
+ "@babel/helper-simple-access": "^7.8.3",
+ "babel-plugin-dynamic-import-node": "^2.3.3"
+ }
+ },
+ "@babel/plugin-transform-modules-systemjs": {
+ "version": "7.9.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.9.6.tgz",
+ "integrity": "sha512-NW5XQuW3N2tTHim8e1b7qGy7s0kZ2OH3m5octc49K1SdAKGxYxeIx7hiIz05kS1R2R+hOWcsr1eYwcGhrdHsrg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-hoist-variables": "^7.8.3",
+ "@babel/helper-module-transforms": "^7.9.0",
+ "@babel/helper-plugin-utils": "^7.8.3",
+ "babel-plugin-dynamic-import-node": "^2.3.3"
+ }
+ },
+ "@babel/plugin-transform-modules-umd": {
+ "version": "7.9.0",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.9.0.tgz",
+ "integrity": "sha512-uTWkXkIVtg/JGRSIABdBoMsoIeoHQHPTL0Y2E7xf5Oj7sLqwVsNXOkNk0VJc7vF0IMBsPeikHxFjGe+qmwPtTQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-module-transforms": "^7.9.0",
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-named-capturing-groups-regex": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.8.3.tgz",
+ "integrity": "sha512-f+tF/8UVPU86TrCb06JoPWIdDpTNSGGcAtaD9mLP0aYGA0OS0j7j7DHJR0GTFrUZPUU6loZhbsVZgTh0N+Qdnw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-create-regexp-features-plugin": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-new-target": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.8.3.tgz",
+ "integrity": "sha512-QuSGysibQpyxexRyui2vca+Cmbljo8bcRckgzYV4kRIsHpVeyeC3JDO63pY+xFZ6bWOBn7pfKZTqV4o/ix9sFw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-object-super": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.8.3.tgz",
+ "integrity": "sha512-57FXk+gItG/GejofIyLIgBKTas4+pEU47IXKDBWFTxdPd7F80H8zybyAY7UoblVfBhBGs2EKM+bJUu2+iUYPDQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3",
+ "@babel/helper-replace-supers": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-parameters": {
+ "version": "7.9.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.9.5.tgz",
+ "integrity": "sha512-0+1FhHnMfj6lIIhVvS4KGQJeuhe1GI//h5uptK4PvLt+BGBxsoUJbd3/IW002yk//6sZPlFgsG1hY6OHLcy6kA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-get-function-arity": "^7.8.3",
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-property-literals": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.8.3.tgz",
+ "integrity": "sha512-uGiiXAZMqEoQhRWMK17VospMZh5sXWg+dlh2soffpkAl96KAm+WZuJfa6lcELotSRmooLqg0MWdH6UUq85nmmg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-react-jsx": {
+ "version": "7.9.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.9.4.tgz",
+ "integrity": "sha512-Mjqf3pZBNLt854CK0C/kRuXAnE6H/bo7xYojP+WGtX8glDGSibcwnsWwhwoSuRg0+EBnxPC1ouVnuetUIlPSAw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-builder-react-jsx": "^7.9.0",
+ "@babel/helper-builder-react-jsx-experimental": "^7.9.0",
+ "@babel/helper-plugin-utils": "^7.8.3",
+ "@babel/plugin-syntax-jsx": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-regenerator": {
+ "version": "7.8.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.8.7.tgz",
+ "integrity": "sha512-TIg+gAl4Z0a3WmD3mbYSk+J9ZUH6n/Yc57rtKRnlA/7rcCvpekHXe0CMZHP1gYp7/KLe9GHTuIba0vXmls6drA==",
+ "dev": true,
+ "requires": {
+ "regenerator-transform": "^0.14.2"
+ }
+ },
+ "@babel/plugin-transform-reserved-words": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.8.3.tgz",
+ "integrity": "sha512-mwMxcycN3omKFDjDQUl+8zyMsBfjRFr0Zn/64I41pmjv4NJuqcYlEtezwYtw9TFd9WR1vN5kiM+O0gMZzO6L0A==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-runtime": {
+ "version": "7.9.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.9.6.tgz",
+ "integrity": "sha512-qcmiECD0mYOjOIt8YHNsAP1SxPooC/rDmfmiSK9BNY72EitdSc7l44WTEklaWuFtbOEBjNhWWyph/kOImbNJ4w==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-module-imports": "^7.8.3",
+ "@babel/helper-plugin-utils": "^7.8.3",
+ "resolve": "^1.8.1",
+ "semver": "^5.5.1"
+ }
+ },
+ "@babel/plugin-transform-shorthand-properties": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.8.3.tgz",
+ "integrity": "sha512-I9DI6Odg0JJwxCHzbzW08ggMdCezoWcuQRz3ptdudgwaHxTjxw5HgdFJmZIkIMlRymL6YiZcped4TTCB0JcC8w==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-spread": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.8.3.tgz",
+ "integrity": "sha512-CkuTU9mbmAoFOI1tklFWYYbzX5qCIZVXPVy0jpXgGwkplCndQAa58s2jr66fTeQnA64bDox0HL4U56CFYoyC7g==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-sticky-regex": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.8.3.tgz",
+ "integrity": "sha512-9Spq0vGCD5Bb4Z/ZXXSK5wbbLFMG085qd2vhL1JYu1WcQ5bXqZBAYRzU1d+p79GcHs2szYv5pVQCX13QgldaWw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3",
+ "@babel/helper-regex": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-template-literals": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.8.3.tgz",
+ "integrity": "sha512-820QBtykIQOLFT8NZOcTRJ1UNuztIELe4p9DCgvj4NK+PwluSJ49we7s9FB1HIGNIYT7wFUJ0ar2QpCDj0escQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-annotate-as-pure": "^7.8.3",
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-typeof-symbol": {
+ "version": "7.8.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.8.4.tgz",
+ "integrity": "sha512-2QKyfjGdvuNfHsb7qnBBlKclbD4CfshH2KvDabiijLMGXPHJXGxtDzwIF7bQP+T0ysw8fYTtxPafgfs/c1Lrqg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/plugin-transform-unicode-regex": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.8.3.tgz",
+ "integrity": "sha512-+ufgJjYdmWfSQ+6NS9VGUR2ns8cjJjYbrbi11mZBTaWm+Fui/ncTLFF28Ei1okavY+xkojGr1eJxNsWYeA5aZw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-create-regexp-features-plugin": "^7.8.3",
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
+ "@babel/preset-env": {
+ "version": "7.9.6",
+ "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.9.6.tgz",
+ "integrity": "sha512-0gQJ9RTzO0heXOhzftog+a/WyOuqMrAIugVYxMYf83gh1CQaQDjMtsOpqOwXyDL/5JcWsrCm8l4ju8QC97O7EQ==",
+ "dev": true,
+ "requires": {
+ "@babel/compat-data": "^7.9.6",
+ "@babel/helper-compilation-targets": "^7.9.6",
+ "@babel/helper-module-imports": "^7.8.3",
+ "@babel/helper-plugin-utils": "^7.8.3",
+ "@babel/plugin-proposal-async-generator-functions": "^7.8.3",
+ "@babel/plugin-proposal-dynamic-import": "^7.8.3",
+ "@babel/plugin-proposal-json-strings": "^7.8.3",
+ "@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
+ "@babel/plugin-proposal-numeric-separator": "^7.8.3",
+ "@babel/plugin-proposal-object-rest-spread": "^7.9.6",
+ "@babel/plugin-proposal-optional-catch-binding": "^7.8.3",
+ "@babel/plugin-proposal-optional-chaining": "^7.9.0",
+ "@babel/plugin-proposal-unicode-property-regex": "^7.8.3",
+ "@babel/plugin-syntax-async-generators": "^7.8.0",
+ "@babel/plugin-syntax-dynamic-import": "^7.8.0",
+ "@babel/plugin-syntax-json-strings": "^7.8.0",
+ "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0",
+ "@babel/plugin-syntax-numeric-separator": "^7.8.0",
+ "@babel/plugin-syntax-object-rest-spread": "^7.8.0",
+ "@babel/plugin-syntax-optional-catch-binding": "^7.8.0",
+ "@babel/plugin-syntax-optional-chaining": "^7.8.0",
+ "@babel/plugin-syntax-top-level-await": "^7.8.3",
+ "@babel/plugin-transform-arrow-functions": "^7.8.3",
+ "@babel/plugin-transform-async-to-generator": "^7.8.3",
+ "@babel/plugin-transform-block-scoped-functions": "^7.8.3",
+ "@babel/plugin-transform-block-scoping": "^7.8.3",
+ "@babel/plugin-transform-classes": "^7.9.5",
+ "@babel/plugin-transform-computed-properties": "^7.8.3",
+ "@babel/plugin-transform-destructuring": "^7.9.5",
+ "@babel/plugin-transform-dotall-regex": "^7.8.3",
+ "@babel/plugin-transform-duplicate-keys": "^7.8.3",
+ "@babel/plugin-transform-exponentiation-operator": "^7.8.3",
+ "@babel/plugin-transform-for-of": "^7.9.0",
+ "@babel/plugin-transform-function-name": "^7.8.3",
+ "@babel/plugin-transform-literals": "^7.8.3",
+ "@babel/plugin-transform-member-expression-literals": "^7.8.3",
+ "@babel/plugin-transform-modules-amd": "^7.9.6",
+ "@babel/plugin-transform-modules-commonjs": "^7.9.6",
+ "@babel/plugin-transform-modules-systemjs": "^7.9.6",
+ "@babel/plugin-transform-modules-umd": "^7.9.0",
+ "@babel/plugin-transform-named-capturing-groups-regex": "^7.8.3",
+ "@babel/plugin-transform-new-target": "^7.8.3",
+ "@babel/plugin-transform-object-super": "^7.8.3",
+ "@babel/plugin-transform-parameters": "^7.9.5",
+ "@babel/plugin-transform-property-literals": "^7.8.3",
+ "@babel/plugin-transform-regenerator": "^7.8.7",
+ "@babel/plugin-transform-reserved-words": "^7.8.3",
+ "@babel/plugin-transform-shorthand-properties": "^7.8.3",
+ "@babel/plugin-transform-spread": "^7.8.3",
+ "@babel/plugin-transform-sticky-regex": "^7.8.3",
+ "@babel/plugin-transform-template-literals": "^7.8.3",
+ "@babel/plugin-transform-typeof-symbol": "^7.8.4",
+ "@babel/plugin-transform-unicode-regex": "^7.8.3",
+ "@babel/preset-modules": "^0.1.3",
+ "@babel/types": "^7.9.6",
+ "browserslist": "^4.11.1",
+ "core-js-compat": "^3.6.2",
+ "invariant": "^2.2.2",
+ "levenary": "^1.1.1",
+ "semver": "^5.5.0"
+ },
+ "dependencies": {
+ "@babel/types": {
+ "version": "7.9.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.9.6.tgz",
+ "integrity": "sha512-qxXzvBO//jO9ZnoasKF1uJzHd2+M6Q2ZPIVfnFps8JJvXy0ZBbwbNOmE6SGIY5XOY6d1Bo5lb9d9RJ8nv3WSeA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-validator-identifier": "^7.9.5",
+ "lodash": "^4.17.13",
+ "to-fast-properties": "^2.0.0"
+ }
+ }
+ }
+ },
+ "@babel/preset-modules": {
+ "version": "0.1.3",
+ "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.3.tgz",
+ "integrity": "sha512-Ra3JXOHBq2xd56xSF7lMKXdjBn3T772Y1Wet3yWnkDly9zHvJki029tAFzvAAK5cf4YV3yoxuP61crYRol6SVg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.0.0",
+ "@babel/plugin-proposal-unicode-property-regex": "^7.4.4",
+ "@babel/plugin-transform-dotall-regex": "^7.4.4",
+ "@babel/types": "^7.4.4",
+ "esutils": "^2.0.2"
+ }
+ },
+ "@babel/runtime": {
+ "version": "7.9.6",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.9.6.tgz",
+ "integrity": "sha512-64AF1xY3OAkFHqOb9s4jpgk1Mm5vDZ4L3acHvAml+53nO1XbXLuDodsVpO4OIUsmemlUHMxNdYMNJmsvOwLrvQ==",
+ "dev": true,
+ "requires": {
+ "regenerator-runtime": "^0.13.4"
+ }
+ },
+ "@babel/template": {
+ "version": "7.8.6",
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.8.6.tgz",
+ "integrity": "sha512-zbMsPMy/v0PWFZEhQJ66bqjhH+z0JgMoBWuikXybgG3Gkd/3t5oQ1Rw2WQhnSrsOmsKXnZOx15tkC4qON/+JPg==",
+ "dev": true,
+ "requires": {
+ "@babel/code-frame": "^7.8.3",
+ "@babel/parser": "^7.8.6",
+ "@babel/types": "^7.8.6"
+ }
+ },
+ "@babel/traverse": {
+ "version": "7.8.6",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.8.6.tgz",
+ "integrity": "sha512-2B8l0db/DPi8iinITKuo7cbPznLCEk0kCxDoB9/N6gGNg/gxOXiR/IcymAFPiBwk5w6TtQ27w4wpElgp9btR9A==",
+ "dev": true,
+ "requires": {
+ "@babel/code-frame": "^7.8.3",
+ "@babel/generator": "^7.8.6",
+ "@babel/helper-function-name": "^7.8.3",
+ "@babel/helper-split-export-declaration": "^7.8.3",
+ "@babel/parser": "^7.8.6",
+ "@babel/types": "^7.8.6",
+ "debug": "^4.1.0",
+ "globals": "^11.1.0",
+ "lodash": "^4.17.13"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
+ "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
+ "dev": true,
+ "requires": {
+ "ms": "^2.1.1"
+ }
+ }
+ }
+ },
+ "@babel/types": {
+ "version": "7.8.7",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.8.7.tgz",
+ "integrity": "sha512-k2TreEHxFA4CjGkL+GYjRyx35W0Mr7DP5+9q6WMkyKXB+904bYmG40syjMFV0oLlhhFCwWl0vA0DyzTDkwAiJw==",
+ "dev": true,
+ "requires": {
+ "esutils": "^2.0.2",
+ "lodash": "^4.17.13",
+ "to-fast-properties": "^2.0.0"
+ }
+ },
+ "@bcoe/v8-coverage": {
+ "version": "0.2.3",
+ "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz",
+ "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==",
+ "dev": true
+ },
+ "@cnakazawa/watch": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz",
+ "integrity": "sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==",
+ "dev": true,
+ "requires": {
+ "exec-sh": "^0.3.2",
+ "minimist": "^1.2.0"
+ },
+ "dependencies": {
+ "minimist": {
+ "version": "1.2.5",
+ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz",
+ "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==",
+ "dev": true
+ }
+ }
+ },
+ "@cypress/listr-verbose-renderer": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/@cypress/listr-verbose-renderer/-/listr-verbose-renderer-0.4.1.tgz",
+ "integrity": "sha1-p3SS9LEdzHxEajSz4ochr9M8ZCo=",
+ "dev": true,
+ "requires": {
+ "chalk": "^1.1.3",
+ "cli-cursor": "^1.0.2",
+ "date-fns": "^1.27.2",
+ "figures": "^1.7.0"
+ },
+ "dependencies": {
+ "cli-cursor": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-1.0.2.tgz",
+ "integrity": "sha1-ZNo/fValRBLll5S9Ytw1KV6PKYc=",
+ "dev": true,
+ "requires": {
+ "restore-cursor": "^1.0.1"
+ }
+ },
+ "figures": {
+ "version": "1.7.0",
+ "resolved": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz",
+ "integrity": "sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4=",
+ "dev": true,
+ "requires": {
+ "escape-string-regexp": "^1.0.5",
+ "object-assign": "^4.1.0"
+ }
+ },
+ "onetime": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz",
+ "integrity": "sha1-ofeDj4MUxRbwXs78vEzP4EtO14k=",
+ "dev": true
+ },
+ "restore-cursor": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-1.0.1.tgz",
+ "integrity": "sha1-NGYfRohjJ/7SmRR5FSJS35LapUE=",
+ "dev": true,
+ "requires": {
+ "exit-hook": "^1.0.0",
+ "onetime": "^1.0.0"
+ }
+ }
+ }
+ },
+ "@cypress/request": {
+ "version": "2.88.5",
+ "resolved": "https://registry.npmjs.org/@cypress/request/-/request-2.88.5.tgz",
+ "integrity": "sha512-TzEC1XMi1hJkywWpRfD2clreTa/Z+lOrXDCxxBTBPEcY5azdPi56A6Xw+O4tWJnaJH3iIE7G5aDXZC6JgRZLcA==",
+ "dev": true,
+ "requires": {
+ "aws-sign2": "~0.7.0",
+ "aws4": "^1.8.0",
+ "caseless": "~0.12.0",
+ "combined-stream": "~1.0.6",
+ "extend": "~3.0.2",
+ "forever-agent": "~0.6.1",
+ "form-data": "~2.3.2",
+ "har-validator": "~5.1.3",
+ "http-signature": "~1.2.0",
+ "is-typedarray": "~1.0.0",
+ "isstream": "~0.1.2",
+ "json-stringify-safe": "~5.0.1",
+ "mime-types": "~2.1.19",
+ "oauth-sign": "~0.9.0",
+ "performance-now": "^2.1.0",
+ "qs": "~6.5.2",
+ "safe-buffer": "^5.1.2",
+ "tough-cookie": "~2.5.0",
+ "tunnel-agent": "^0.6.0",
+ "uuid": "^3.3.2"
+ },
+ "dependencies": {
+ "ajv": {
+ "version": "6.12.3",
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.3.tgz",
+ "integrity": "sha512-4K0cK3L1hsqk9xIb2z9vs/XU+PGJZ9PNpJRDS9YLzmNdX6jmVPfamLvTJr0aDAusnHyCHO6MjzlkAsgtqp9teA==",
+ "dev": true,
+ "requires": {
+ "fast-deep-equal": "^3.1.1",
+ "fast-json-stable-stringify": "^2.0.0",
+ "json-schema-traverse": "^0.4.1",
+ "uri-js": "^4.2.2"
+ }
+ },
+ "assert-plus": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
+ "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=",
+ "dev": true
+ },
+ "aws-sign2": {
+ "version": "0.7.0",
+ "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz",
+ "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=",
+ "dev": true
+ },
+ "caseless": {
+ "version": "0.12.0",
+ "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz",
+ "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=",
+ "dev": true
+ },
+ "form-data": {
+ "version": "2.3.3",
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz",
+ "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==",
+ "dev": true,
+ "requires": {
+ "asynckit": "^0.4.0",
+ "combined-stream": "^1.0.6",
+ "mime-types": "^2.1.12"
+ }
+ },
+ "har-validator": {
+ "version": "5.1.5",
+ "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz",
+ "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==",
+ "dev": true,
+ "requires": {
+ "ajv": "^6.12.3",
+ "har-schema": "^2.0.0"
+ }
+ },
+ "http-signature": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz",
+ "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=",
+ "dev": true,
+ "requires": {
+ "assert-plus": "^1.0.0",
+ "jsprim": "^1.2.2",
+ "sshpk": "^1.7.0"
+ }
+ },
+ "oauth-sign": {
+ "version": "0.9.0",
+ "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz",
+ "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==",
+ "dev": true
+ },
+ "qs": {
+ "version": "6.5.2",
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz",
+ "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==",
+ "dev": true
+ },
+ "tough-cookie": {
+ "version": "2.5.0",
+ "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz",
+ "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==",
+ "dev": true,
+ "requires": {
+ "psl": "^1.1.28",
+ "punycode": "^2.1.1"
+ }
+ },
+ "tunnel-agent": {
+ "version": "0.6.0",
+ "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
+ "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=",
+ "dev": true,
+ "requires": {
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "uuid": {
+ "version": "3.4.0",
+ "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
+ "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==",
+ "dev": true
+ }
+ }
+ },
+ "@cypress/xvfb": {
+ "version": "1.2.4",
+ "resolved": "https://registry.npmjs.org/@cypress/xvfb/-/xvfb-1.2.4.tgz",
+ "integrity": "sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==",
+ "dev": true,
+ "requires": {
+ "debug": "^3.1.0",
+ "lodash.once": "^4.1.1"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "3.2.6",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz",
+ "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==",
+ "dev": true,
+ "requires": {
+ "ms": "^2.1.1"
+ }
+ }
+ }
+ },
+ "@fortawesome/fontawesome-free": {
+ "version": "5.12.1",
+ "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-free/-/fontawesome-free-5.12.1.tgz",
+ "integrity": "sha512-ZtjIIFplxncqxvogq148C3hBLQE+W3iJ8E4UvJ09zIJUgzwLcROsWwFDErVSXY2Plzao5J9KUYNHKHMEUYDMKw=="
+ },
+ "@istanbuljs/load-nyc-config": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.0.0.tgz",
+ "integrity": "sha512-ZR0rq/f/E4f4XcgnDvtMWXCUJpi8eO0rssVhmztsZqLIEFA9UUP9zmpE0VxlM+kv/E1ul2I876Fwil2ayptDVg==",
+ "dev": true,
+ "requires": {
+ "camelcase": "^5.3.1",
+ "find-up": "^4.1.0",
+ "js-yaml": "^3.13.1",
+ "resolve-from": "^5.0.0"
+ },
+ "dependencies": {
+ "find-up": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
+ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
+ "dev": true,
+ "requires": {
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
+ }
+ },
+ "locate-path": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
+ "dev": true,
+ "requires": {
+ "p-locate": "^4.1.0"
+ }
+ },
+ "p-locate": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
+ "dev": true,
+ "requires": {
+ "p-limit": "^2.2.0"
+ }
+ },
+ "path-exists": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
+ "dev": true
+ }
+ }
+ },
+ "@istanbuljs/schema": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.2.tgz",
+ "integrity": "sha512-tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw==",
+ "dev": true
+ },
+ "@jest/console": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/@jest/console/-/console-25.1.0.tgz",
+ "integrity": "sha512-3P1DpqAMK/L07ag/Y9/Jup5iDEG9P4pRAuZiMQnU0JB3UOvCyYCjCoxr7sIA80SeyUCUKrr24fKAxVpmBgQonA==",
+ "dev": true,
+ "requires": {
+ "@jest/source-map": "^25.1.0",
+ "chalk": "^3.0.0",
+ "jest-util": "^25.1.0",
+ "slash": "^3.0.0"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
+ "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
+ "dev": true,
+ "requires": {
+ "@types/color-name": "^1.1.1",
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
+ "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "requires": {
+ "color-name": "~1.1.4"
+ }
+ },
+ "color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
+ "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "@jest/core": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/@jest/core/-/core-25.1.0.tgz",
+ "integrity": "sha512-iz05+NmwCmZRzMXvMo6KFipW7nzhbpEawrKrkkdJzgytavPse0biEnCNr2wRlyCsp3SmKaEY+SGv7YWYQnIdig==",
+ "dev": true,
+ "requires": {
+ "@jest/console": "^25.1.0",
+ "@jest/reporters": "^25.1.0",
+ "@jest/test-result": "^25.1.0",
+ "@jest/transform": "^25.1.0",
+ "@jest/types": "^25.1.0",
+ "ansi-escapes": "^4.2.1",
+ "chalk": "^3.0.0",
+ "exit": "^0.1.2",
+ "graceful-fs": "^4.2.3",
+ "jest-changed-files": "^25.1.0",
+ "jest-config": "^25.1.0",
+ "jest-haste-map": "^25.1.0",
+ "jest-message-util": "^25.1.0",
+ "jest-regex-util": "^25.1.0",
+ "jest-resolve": "^25.1.0",
+ "jest-resolve-dependencies": "^25.1.0",
+ "jest-runner": "^25.1.0",
+ "jest-runtime": "^25.1.0",
+ "jest-snapshot": "^25.1.0",
+ "jest-util": "^25.1.0",
+ "jest-validate": "^25.1.0",
+ "jest-watcher": "^25.1.0",
+ "micromatch": "^4.0.2",
+ "p-each-series": "^2.1.0",
+ "realpath-native": "^1.1.0",
+ "rimraf": "^3.0.0",
+ "slash": "^3.0.0",
+ "strip-ansi": "^6.0.0"
+ },
+ "dependencies": {
+ "ansi-regex": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
+ "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==",
+ "dev": true
+ },
+ "ansi-styles": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
+ "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
+ "dev": true,
+ "requires": {
+ "@types/color-name": "^1.1.1",
+ "color-convert": "^2.0.1"
+ }
+ },
+ "braces": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
+ "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
+ "dev": true,
+ "requires": {
+ "fill-range": "^7.0.1"
+ }
+ },
+ "chalk": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
+ "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "requires": {
+ "color-name": "~1.1.4"
+ }
+ },
+ "color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true
+ },
+ "fill-range": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
+ "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
+ "dev": true,
+ "requires": {
+ "to-regex-range": "^5.0.1"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "is-number": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
+ "dev": true
+ },
+ "micromatch": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz",
+ "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==",
+ "dev": true,
+ "requires": {
+ "braces": "^3.0.1",
+ "picomatch": "^2.0.5"
+ }
+ },
+ "rimraf": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
+ "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
+ "dev": true,
+ "requires": {
+ "glob": "^7.1.3"
+ }
+ },
+ "strip-ansi": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz",
+ "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==",
+ "dev": true,
+ "requires": {
+ "ansi-regex": "^5.0.0"
+ }
+ },
+ "supports-color": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
+ "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ },
+ "to-regex-range": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
+ "dev": true,
+ "requires": {
+ "is-number": "^7.0.0"
+ }
+ }
+ }
+ },
+ "@jest/environment": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-25.1.0.tgz",
+ "integrity": "sha512-cTpUtsjU4cum53VqBDlcW0E4KbQF03Cn0jckGPW/5rrE9tb+porD3+hhLtHAwhthsqfyF+bizyodTlsRA++sHg==",
+ "dev": true,
+ "requires": {
+ "@jest/fake-timers": "^25.1.0",
+ "@jest/types": "^25.1.0",
+ "jest-mock": "^25.1.0"
+ }
+ },
+ "@jest/fake-timers": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-25.1.0.tgz",
+ "integrity": "sha512-Eu3dysBzSAO1lD7cylZd/CVKdZZ1/43SF35iYBNV1Lvvn2Undp3Grwsv8PrzvbLhqwRzDd4zxrY4gsiHc+wygQ==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^25.1.0",
+ "jest-message-util": "^25.1.0",
+ "jest-mock": "^25.1.0",
+ "jest-util": "^25.1.0",
+ "lolex": "^5.0.0"
+ }
+ },
+ "@jest/reporters": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-25.1.0.tgz",
+ "integrity": "sha512-ORLT7hq2acJQa8N+NKfs68ZtHFnJPxsGqmofxW7v7urVhzJvpKZG9M7FAcgh9Ee1ZbCteMrirHA3m5JfBtAaDg==",
+ "dev": true,
+ "requires": {
+ "@bcoe/v8-coverage": "^0.2.3",
+ "@jest/console": "^25.1.0",
+ "@jest/environment": "^25.1.0",
+ "@jest/test-result": "^25.1.0",
+ "@jest/transform": "^25.1.0",
+ "@jest/types": "^25.1.0",
+ "chalk": "^3.0.0",
+ "collect-v8-coverage": "^1.0.0",
+ "exit": "^0.1.2",
+ "glob": "^7.1.2",
+ "istanbul-lib-coverage": "^3.0.0",
+ "istanbul-lib-instrument": "^4.0.0",
+ "istanbul-lib-report": "^3.0.0",
+ "istanbul-lib-source-maps": "^4.0.0",
+ "istanbul-reports": "^3.0.0",
+ "jest-haste-map": "^25.1.0",
+ "jest-resolve": "^25.1.0",
+ "jest-runtime": "^25.1.0",
+ "jest-util": "^25.1.0",
+ "jest-worker": "^25.1.0",
+ "node-notifier": "^6.0.0",
+ "slash": "^3.0.0",
+ "source-map": "^0.6.0",
+ "string-length": "^3.1.0",
+ "terminal-link": "^2.0.0",
+ "v8-to-istanbul": "^4.0.1"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
+ "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
+ "dev": true,
+ "requires": {
+ "@types/color-name": "^1.1.1",
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
+ "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "requires": {
+ "color-name": "~1.1.4"
+ }
+ },
+ "color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "jest-worker": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-25.1.0.tgz",
+ "integrity": "sha512-ZHhHtlxOWSxCoNOKHGbiLzXnl42ga9CxDr27H36Qn+15pQZd3R/F24jrmjDelw9j/iHUIWMWs08/u2QN50HHOg==",
+ "dev": true,
+ "requires": {
+ "merge-stream": "^2.0.0",
+ "supports-color": "^7.0.0"
+ }
+ },
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
+ "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "@jest/source-map": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-25.1.0.tgz",
+ "integrity": "sha512-ohf2iKT0xnLWcIUhL6U6QN+CwFWf9XnrM2a6ybL9NXxJjgYijjLSitkYHIdzkd8wFliH73qj/+epIpTiWjRtAA==",
+ "dev": true,
+ "requires": {
+ "callsites": "^3.0.0",
+ "graceful-fs": "^4.2.3",
+ "source-map": "^0.6.0"
+ },
+ "dependencies": {
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ }
+ }
+ },
+ "@jest/test-result": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-25.1.0.tgz",
+ "integrity": "sha512-FZzSo36h++U93vNWZ0KgvlNuZ9pnDnztvaM7P/UcTx87aPDotG18bXifkf1Ji44B7k/eIatmMzkBapnAzjkJkg==",
+ "dev": true,
+ "requires": {
+ "@jest/console": "^25.1.0",
+ "@jest/transform": "^25.1.0",
+ "@jest/types": "^25.1.0",
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "collect-v8-coverage": "^1.0.0"
+ }
+ },
+ "@jest/test-sequencer": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-25.1.0.tgz",
+ "integrity": "sha512-WgZLRgVr2b4l/7ED1J1RJQBOharxS11EFhmwDqknpknE0Pm87HLZVS2Asuuw+HQdfQvm2aXL2FvvBLxOD1D0iw==",
+ "dev": true,
+ "requires": {
+ "@jest/test-result": "^25.1.0",
+ "jest-haste-map": "^25.1.0",
+ "jest-runner": "^25.1.0",
+ "jest-runtime": "^25.1.0"
+ }
+ },
+ "@jest/transform": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-25.1.0.tgz",
+ "integrity": "sha512-4ktrQ2TPREVeM+KxB4zskAT84SnmG1vaz4S+51aTefyqn3zocZUnliLLm5Fsl85I3p/kFPN4CRp1RElIfXGegQ==",
+ "dev": true,
+ "requires": {
+ "@babel/core": "^7.1.0",
+ "@jest/types": "^25.1.0",
+ "babel-plugin-istanbul": "^6.0.0",
+ "chalk": "^3.0.0",
+ "convert-source-map": "^1.4.0",
+ "fast-json-stable-stringify": "^2.0.0",
+ "graceful-fs": "^4.2.3",
+ "jest-haste-map": "^25.1.0",
+ "jest-regex-util": "^25.1.0",
+ "jest-util": "^25.1.0",
+ "micromatch": "^4.0.2",
+ "pirates": "^4.0.1",
+ "realpath-native": "^1.1.0",
+ "slash": "^3.0.0",
+ "source-map": "^0.6.1",
+ "write-file-atomic": "^3.0.0"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
+ "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
+ "dev": true,
+ "requires": {
+ "@types/color-name": "^1.1.1",
+ "color-convert": "^2.0.1"
+ }
+ },
+ "braces": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
+ "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
+ "dev": true,
+ "requires": {
+ "fill-range": "^7.0.1"
+ }
+ },
+ "chalk": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
+ "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "requires": {
+ "color-name": "~1.1.4"
+ }
+ },
+ "color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true
+ },
+ "fill-range": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
+ "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
+ "dev": true,
+ "requires": {
+ "to-regex-range": "^5.0.1"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "is-number": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
+ "dev": true
+ },
+ "micromatch": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz",
+ "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==",
+ "dev": true,
+ "requires": {
+ "braces": "^3.0.1",
+ "picomatch": "^2.0.5"
+ }
+ },
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
+ "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ },
+ "to-regex-range": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
+ "dev": true,
+ "requires": {
+ "is-number": "^7.0.0"
+ }
+ }
+ }
+ },
+ "@jest/types": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-25.1.0.tgz",
+ "integrity": "sha512-VpOtt7tCrgvamWZh1reVsGADujKigBUFTi19mlRjqEGsE8qH4r3s+skY33dNdXOwyZIvuftZ5tqdF1IgsMejMA==",
+ "dev": true,
+ "requires": {
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^1.1.1",
+ "@types/yargs": "^15.0.0",
+ "chalk": "^3.0.0"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
+ "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
+ "dev": true,
+ "requires": {
+ "@types/color-name": "^1.1.1",
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
+ "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "requires": {
+ "color-name": "~1.1.4"
+ }
+ },
+ "color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
+ "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "@nodelib/fs.scandir": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.3.tgz",
+ "integrity": "sha512-eGmwYQn3gxo4r7jdQnkrrN6bY478C3P+a/y72IJukF8LjB6ZHeB3c+Ehacj3sYeSmUXGlnA67/PmbM9CVwL7Dw==",
+ "dev": true,
+ "requires": {
+ "@nodelib/fs.stat": "2.0.3",
+ "run-parallel": "^1.1.9"
+ }
+ },
+ "@nodelib/fs.stat": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.3.tgz",
+ "integrity": "sha512-bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA==",
+ "dev": true
+ },
+ "@nodelib/fs.walk": {
+ "version": "1.2.4",
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.4.tgz",
+ "integrity": "sha512-1V9XOY4rDW0rehzbrcqAmHnz8e7SKvX27gh8Gt2WgB0+pdzdiLV83p72kZPU+jvMbS1qU5mauP2iOvO8rhmurQ==",
+ "dev": true,
+ "requires": {
+ "@nodelib/fs.scandir": "2.1.3",
+ "fastq": "^1.6.0"
+ }
+ },
+ "@polymer/polymer": {
+ "version": "2.6.1",
+ "resolved": "https://registry.npmjs.org/@polymer/polymer/-/polymer-2.6.1.tgz",
+ "integrity": "sha512-XBzaKlSZ094i8zfkOgczn08Gk4TWPLtGh3leANGIKLuzboid4totBt2RkBgHjRl8DgY6Up3+Jm+3lHz6W8QA+g=="
+ },
+ "@purtuga/esm-webpack-plugin": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/@purtuga/esm-webpack-plugin/-/esm-webpack-plugin-1.2.1.tgz",
+ "integrity": "sha512-q17/jiGfDiJlgsiQ79tOQE2z4p8E1i0d4Ftvi9GqYB9mZCyWvWEY/EnXZxVbImBgFS6NgnhaEXGYJ19FtVpo8A==",
+ "dev": true,
+ "requires": {
+ "webpack-sources": "^1.0.0"
+ }
+ },
+ "@rollup/plugin-alias": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/@rollup/plugin-alias/-/plugin-alias-3.0.1.tgz",
+ "integrity": "sha512-ReSy6iPl3GsWLMNeshXAfgItZFMoMOTYC7MZQQM5va4pqxiGgwl1xZUZfHW6zGyZPK+k8TBadxx+kdmepiUa+g==",
+ "dev": true,
+ "requires": {
+ "slash": "^3.0.0"
+ }
+ },
+ "@rollup/plugin-commonjs": {
+ "version": "11.0.2",
+ "resolved": "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-11.0.2.tgz",
+ "integrity": "sha512-MPYGZr0qdbV5zZj8/2AuomVpnRVXRU5XKXb3HVniwRoRCreGlf5kOE081isNWeiLIi6IYkwTX9zE0/c7V8g81g==",
+ "dev": true,
+ "requires": {
+ "@rollup/pluginutils": "^3.0.0",
+ "estree-walker": "^1.0.1",
+ "is-reference": "^1.1.2",
+ "magic-string": "^0.25.2",
+ "resolve": "^1.11.0"
+ },
+ "dependencies": {
+ "estree-walker": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz",
+ "integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==",
+ "dev": true
+ }
+ }
+ },
+ "@rollup/plugin-json": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/@rollup/plugin-json/-/plugin-json-4.0.3.tgz",
+ "integrity": "sha512-QMUT0HZNf4CX17LMdwaslzlYHUKTYGuuk34yYIgZrNdu+pMEfqMS55gck7HEeHBKXHM4cz5Dg1OVwythDdbbuQ==",
+ "dev": true,
+ "requires": {
+ "@rollup/pluginutils": "^3.0.8"
+ }
+ },
+ "@rollup/plugin-node-resolve": {
+ "version": "7.1.3",
+ "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-7.1.3.tgz",
+ "integrity": "sha512-RxtSL3XmdTAE2byxekYLnx+98kEUOrPHF/KRVjLH+DEIHy6kjIw7YINQzn+NXiH/NTrQLAwYs0GWB+csWygA9Q==",
+ "dev": true,
+ "requires": {
+ "@rollup/pluginutils": "^3.0.8",
+ "@types/resolve": "0.0.8",
+ "builtin-modules": "^3.1.0",
+ "is-module": "^1.0.0",
+ "resolve": "^1.14.2"
+ }
+ },
+ "@rollup/plugin-replace": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.3.1.tgz",
+ "integrity": "sha512-qDcXj2VOa5+j0iudjb+LiwZHvBRRgWbHPhRmo1qde2KItTjuxDVQO21rp9/jOlzKR5YO0EsgRQoyox7fnL7y/A==",
+ "dev": true,
+ "requires": {
+ "@rollup/pluginutils": "^3.0.4",
+ "magic-string": "^0.25.5"
+ }
+ },
+ "@rollup/pluginutils": {
+ "version": "3.0.8",
+ "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.0.8.tgz",
+ "integrity": "sha512-rYGeAc4sxcZ+kPG/Tw4/fwJODC3IXHYDH4qusdN/b6aLw5LPUbzpecYbEJh4sVQGPFJxd2dBU4kc1H3oy9/bnw==",
+ "dev": true,
+ "requires": {
+ "estree-walker": "^1.0.1"
+ },
+ "dependencies": {
+ "estree-walker": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz",
+ "integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==",
+ "dev": true
+ }
+ }
+ },
+ "@samverschueren/stream-to-observable": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/@samverschueren/stream-to-observable/-/stream-to-observable-0.3.0.tgz",
+ "integrity": "sha512-MI4Xx6LHs4Webyvi6EbspgyAb4D2Q2VtnCQ1blOJcoLS6mVa8lNN2rkIy1CVxfTUpoyIbCTkXES1rLXztFD1lg==",
+ "dev": true,
+ "requires": {
+ "any-observable": "^0.3.0"
+ }
+ },
+ "@sindresorhus/is": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-2.1.1.tgz",
+ "integrity": "sha512-/aPsuoj/1Dw/kzhkgz+ES6TxG0zfTMGLwuK2ZG00k/iJzYHTLCE8mVU8EPqEOp/lmxPoq1C1C9RYToRKb2KEfg==",
+ "dev": true
+ },
+ "@sinonjs/commons": {
+ "version": "1.7.1",
+ "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.7.1.tgz",
+ "integrity": "sha512-Debi3Baff1Qu1Unc3mjJ96MgpbwTn43S1+9yJ0llWygPwDNu2aaWBD6yc9y/Z8XDRNhx7U+u2UDg2OGQXkclUQ==",
+ "dev": true,
+ "requires": {
+ "type-detect": "4.0.8"
+ },
+ "dependencies": {
+ "type-detect": {
+ "version": "4.0.8",
+ "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz",
+ "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==",
+ "dev": true
+ }
+ }
+ },
+ "@svgdotjs/svg.js": {
+ "version": "3.0.16",
+ "resolved": "https://registry.npmjs.org/@svgdotjs/svg.js/-/svg.js-3.0.16.tgz",
+ "integrity": "sha512-yZ4jfP/SeLHEnCi9PIrzienKCrA4vW9+jm5uUV3N5DG2e9zgXLY5FgywK2u8/gMFIeKO0HuqTLFFfWJj+MfMLA=="
+ },
+ "@szmarczak/http-timer": {
+ "version": "4.0.5",
+ "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.5.tgz",
+ "integrity": "sha512-PyRA9sm1Yayuj5OIoJ1hGt2YISX45w9WcFbh6ddT0Z/0yaFxOtGLInr4jUfU1EAFVs0Yfyfev4RNwBlUaHdlDQ==",
+ "dev": true,
+ "requires": {
+ "defer-to-connect": "^2.0.0"
+ }
+ },
+ "@types/anymatch": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/@types/anymatch/-/anymatch-1.3.1.tgz",
+ "integrity": "sha512-/+CRPXpBDpo2RK9C68N3b2cOvO0Cf5B9aPijHsoDQTHivnGSObdOF2BRQOYjojWTDy6nQvMjmqRXIxH55VjxxA==",
+ "dev": true
+ },
+ "@types/babel__core": {
+ "version": "7.1.6",
+ "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.6.tgz",
+ "integrity": "sha512-tTnhWszAqvXnhW7m5jQU9PomXSiKXk2sFxpahXvI20SZKu9ylPi8WtIxueZ6ehDWikPT0jeFujMj3X4ZHuf3Tg==",
+ "dev": true,
+ "requires": {
+ "@babel/parser": "^7.1.0",
+ "@babel/types": "^7.0.0",
+ "@types/babel__generator": "*",
+ "@types/babel__template": "*",
+ "@types/babel__traverse": "*"
+ }
+ },
+ "@types/babel__generator": {
+ "version": "7.6.1",
+ "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.1.tgz",
+ "integrity": "sha512-bBKm+2VPJcMRVwNhxKu8W+5/zT7pwNEqeokFOmbvVSqGzFneNxYcEBro9Ac7/N9tlsaPYnZLK8J1LWKkMsLAew==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.0.0"
+ }
+ },
+ "@types/babel__template": {
+ "version": "7.0.2",
+ "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.0.2.tgz",
+ "integrity": "sha512-/K6zCpeW7Imzgab2bLkLEbz0+1JlFSrUMdw7KoIIu+IUdu51GWaBZpd3y1VXGVXzynvGa4DaIaxNZHiON3GXUg==",
+ "dev": true,
+ "requires": {
+ "@babel/parser": "^7.1.0",
+ "@babel/types": "^7.0.0"
+ }
+ },
+ "@types/babel__traverse": {
+ "version": "7.0.9",
+ "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.0.9.tgz",
+ "integrity": "sha512-jEFQ8L1tuvPjOI8lnpaf73oCJe+aoxL6ygqSy6c8LcW98zaC+4mzWuQIRCEvKeCOu+lbqdXcg4Uqmm1S8AP1tw==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.3.0"
+ }
+ },
+ "@types/cacheable-request": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.1.tgz",
+ "integrity": "sha512-ykFq2zmBGOCbpIXtoVbz4SKY5QriWPh3AjyU4G74RYbtt5yOc5OfaY75ftjg7mikMOla1CTGpX3lLbuJh8DTrQ==",
+ "dev": true,
+ "requires": {
+ "@types/http-cache-semantics": "*",
+ "@types/keyv": "*",
+ "@types/node": "*",
+ "@types/responselike": "*"
+ }
+ },
+ "@types/clone": {
+ "version": "0.1.30",
+ "resolved": "https://registry.npmjs.org/@types/clone/-/clone-0.1.30.tgz",
+ "integrity": "sha1-5zZWSMG0ITalnH1QQGN7O1yDthQ=",
+ "dev": true
+ },
+ "@types/color-name": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz",
+ "integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==",
+ "dev": true
+ },
+ "@types/events": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/@types/events/-/events-3.0.0.tgz",
+ "integrity": "sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g==",
+ "dev": true
+ },
+ "@types/fs-extra": {
+ "version": "8.1.0",
+ "resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-8.1.0.tgz",
+ "integrity": "sha512-UoOfVEzAUpeSPmjm7h1uk5MH6KZma2z2O7a75onTGjnNvAvMVrPzPL/vBbT65iIGHWj6rokwfmYcmxmlSf2uwg==",
+ "dev": true,
+ "requires": {
+ "@types/node": "*"
+ }
+ },
+ "@types/glob": {
+ "version": "7.1.1",
+ "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.1.tgz",
+ "integrity": "sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w==",
+ "dev": true,
+ "requires": {
+ "@types/events": "*",
+ "@types/minimatch": "*",
+ "@types/node": "*"
+ }
+ },
+ "@types/http-cache-semantics": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.0.tgz",
+ "integrity": "sha512-c3Xy026kOF7QOTn00hbIllV1dLR9hG9NkSrLQgCVs8NF6sBU+VGWjD3wLPhmh1TYAc7ugCFsvHYMN4VcBN1U1A==",
+ "dev": true
+ },
+ "@types/istanbul-lib-coverage": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.1.tgz",
+ "integrity": "sha512-hRJD2ahnnpLgsj6KWMYSrmXkM3rm2Dl1qkx6IOFD5FnuNPXJIG5L0dhgKXCYTRMGzU4n0wImQ/xfmRc4POUFlg==",
+ "dev": true
+ },
+ "@types/istanbul-lib-report": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz",
+ "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==",
+ "dev": true,
+ "requires": {
+ "@types/istanbul-lib-coverage": "*"
+ }
+ },
+ "@types/istanbul-reports": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.1.tgz",
+ "integrity": "sha512-UpYjBi8xefVChsCoBpKShdxTllC9pwISirfoZsUa2AAdQg/Jd2KQGtSbw+ya7GPo7x/wAPlH6JBhKhAsXUEZNA==",
+ "dev": true,
+ "requires": {
+ "@types/istanbul-lib-coverage": "*",
+ "@types/istanbul-lib-report": "*"
+ }
+ },
+ "@types/keyv": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.1.tgz",
+ "integrity": "sha512-MPtoySlAZQ37VoLaPcTHCu1RWJ4llDkULYZIzOYxlhxBqYPB0RsRlmMU0R6tahtFe27mIdkHV+551ZWV4PLmVw==",
+ "dev": true,
+ "requires": {
+ "@types/node": "*"
+ }
+ },
+ "@types/minimatch": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz",
+ "integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==",
+ "dev": true
+ },
+ "@types/node": {
+ "version": "13.9.0",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-13.9.0.tgz",
+ "integrity": "sha512-0ARSQootUG1RljH2HncpsY2TJBfGQIKOOi7kxzUY6z54ePu/ZD+wJA8zI2Q6v8rol2qpG/rvqsReco8zNMPvhQ==",
+ "dev": true
+ },
+ "@types/parse-json": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz",
+ "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==",
+ "dev": true
+ },
+ "@types/parse5": {
+ "version": "0.0.31",
+ "resolved": "https://registry.npmjs.org/@types/parse5/-/parse5-0.0.31.tgz",
+ "integrity": "sha1-6Cekk6RDsVbhtYKi5MO9wAQPLuc=",
+ "dev": true,
+ "requires": {
+ "@types/node": "6.0.*"
+ },
+ "dependencies": {
+ "@types/node": {
+ "version": "6.0.118",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-6.0.118.tgz",
+ "integrity": "sha512-N33cKXGSqhOYaPiT4xUGsYlPPDwFtQM/6QxJxuMXA/7BcySW+lkn2yigWP7vfs4daiL/7NJNU6DMCqg5N4B+xQ==",
+ "dev": true
+ }
+ }
+ },
+ "@types/resolve": {
+ "version": "0.0.8",
+ "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-0.0.8.tgz",
+ "integrity": "sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ==",
+ "dev": true,
+ "requires": {
+ "@types/node": "*"
+ }
+ },
+ "@types/responselike": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz",
+ "integrity": "sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==",
+ "dev": true,
+ "requires": {
+ "@types/node": "*"
+ }
+ },
+ "@types/sinonjs__fake-timers": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-6.0.1.tgz",
+ "integrity": "sha512-yYezQwGWty8ziyYLdZjwxyMb0CZR49h8JALHGrxjQHWlqGgc8kLdHEgWrgL0uZ29DMvEVBDnHU2Wg36zKSIUtA==",
+ "dev": true
+ },
+ "@types/sizzle": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.2.tgz",
+ "integrity": "sha512-7EJYyKTL7tFR8+gDbB6Wwz/arpGa0Mywk1TJbNzKzHtzbwVmY4HR9WqS5VV7dsBUKQmPNr192jHr/VpBluj/hg==",
+ "dev": true
+ },
+ "@types/source-list-map": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.2.tgz",
+ "integrity": "sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==",
+ "dev": true
+ },
+ "@types/stack-utils": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-1.0.1.tgz",
+ "integrity": "sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==",
+ "dev": true
+ },
+ "@types/tapable": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.5.tgz",
+ "integrity": "sha512-/gG2M/Imw7cQFp8PGvz/SwocNrmKFjFsm5Pb8HdbHkZ1K8pmuPzOX4VeVoiEecFCVf4CsN1r3/BRvx+6sNqwtQ==",
+ "dev": true
+ },
+ "@types/uglify-js": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.0.4.tgz",
+ "integrity": "sha512-SudIN9TRJ+v8g5pTG8RRCqfqTMNqgWCKKd3vtynhGzkIIjxaicNAMuY5TRadJ6tzDu3Dotf3ngaMILtmOdmWEQ==",
+ "dev": true,
+ "requires": {
+ "source-map": "^0.6.1"
+ },
+ "dependencies": {
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ }
+ }
+ },
+ "@types/webpack": {
+ "version": "4.41.7",
+ "resolved": "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.7.tgz",
+ "integrity": "sha512-OQG9viYwO0V1NaNV7d0n79V+n6mjOV30CwgFPIfTzwmk8DHbt+C4f2aBGdCYbo3yFyYD6sjXfqqOjwkl1j+ulA==",
+ "dev": true,
+ "requires": {
+ "@types/anymatch": "*",
+ "@types/node": "*",
+ "@types/tapable": "*",
+ "@types/uglify-js": "*",
+ "@types/webpack-sources": "*",
+ "source-map": "^0.6.0"
+ },
+ "dependencies": {
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ }
+ }
+ },
+ "@types/webpack-sources": {
+ "version": "0.1.6",
+ "resolved": "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-0.1.6.tgz",
+ "integrity": "sha512-FtAWR7wR5ocJ9+nP137DV81tveD/ZgB1sadnJ/axUGM3BUVfRPx8oQNMtv3JNfTeHx3VP7cXiyfR/jmtEsVHsQ==",
+ "dev": true,
+ "requires": {
+ "@types/node": "*",
+ "@types/source-list-map": "*",
+ "source-map": "^0.6.1"
+ },
+ "dependencies": {
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ }
+ }
+ },
+ "@types/yargs": {
+ "version": "15.0.4",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.4.tgz",
+ "integrity": "sha512-9T1auFmbPZoxHz0enUFlUuKRy3it01R+hlggyVUMtnCTQRunsQYifnSGb8hET4Xo8yiC0o0r1paW3ud5+rbURg==",
+ "dev": true,
+ "requires": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "@types/yargs-parser": {
+ "version": "15.0.0",
+ "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-15.0.0.tgz",
+ "integrity": "sha512-FA/BWv8t8ZWJ+gEOnLLd8ygxH/2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw==",
+ "dev": true
+ },
+ "@webassemblyjs/ast": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz",
+ "integrity": "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==",
+ "dev": true,
+ "requires": {
+ "@webassemblyjs/helper-module-context": "1.9.0",
+ "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
+ "@webassemblyjs/wast-parser": "1.9.0"
+ }
+ },
+ "@webassemblyjs/floating-point-hex-parser": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz",
+ "integrity": "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==",
+ "dev": true
+ },
+ "@webassemblyjs/helper-api-error": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz",
+ "integrity": "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==",
+ "dev": true
+ },
+ "@webassemblyjs/helper-buffer": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz",
+ "integrity": "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==",
+ "dev": true
+ },
+ "@webassemblyjs/helper-code-frame": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz",
+ "integrity": "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==",
+ "dev": true,
+ "requires": {
+ "@webassemblyjs/wast-printer": "1.9.0"
+ }
+ },
+ "@webassemblyjs/helper-fsm": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz",
+ "integrity": "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==",
+ "dev": true
+ },
+ "@webassemblyjs/helper-module-context": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz",
+ "integrity": "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==",
+ "dev": true,
+ "requires": {
+ "@webassemblyjs/ast": "1.9.0"
+ }
+ },
+ "@webassemblyjs/helper-wasm-bytecode": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz",
+ "integrity": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==",
+ "dev": true
+ },
+ "@webassemblyjs/helper-wasm-section": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz",
+ "integrity": "sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==",
+ "dev": true,
+ "requires": {
+ "@webassemblyjs/ast": "1.9.0",
+ "@webassemblyjs/helper-buffer": "1.9.0",
+ "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
+ "@webassemblyjs/wasm-gen": "1.9.0"
+ }
+ },
+ "@webassemblyjs/ieee754": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz",
+ "integrity": "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==",
+ "dev": true,
+ "requires": {
+ "@xtuc/ieee754": "^1.2.0"
+ }
+ },
+ "@webassemblyjs/leb128": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.9.0.tgz",
+ "integrity": "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==",
+ "dev": true,
+ "requires": {
+ "@xtuc/long": "4.2.2"
+ }
+ },
+ "@webassemblyjs/utf8": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.9.0.tgz",
+ "integrity": "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==",
+ "dev": true
+ },
+ "@webassemblyjs/wasm-edit": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz",
+ "integrity": "sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==",
+ "dev": true,
+ "requires": {
+ "@webassemblyjs/ast": "1.9.0",
+ "@webassemblyjs/helper-buffer": "1.9.0",
+ "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
+ "@webassemblyjs/helper-wasm-section": "1.9.0",
+ "@webassemblyjs/wasm-gen": "1.9.0",
+ "@webassemblyjs/wasm-opt": "1.9.0",
+ "@webassemblyjs/wasm-parser": "1.9.0",
+ "@webassemblyjs/wast-printer": "1.9.0"
+ }
+ },
+ "@webassemblyjs/wasm-gen": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz",
+ "integrity": "sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==",
+ "dev": true,
+ "requires": {
+ "@webassemblyjs/ast": "1.9.0",
+ "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
+ "@webassemblyjs/ieee754": "1.9.0",
+ "@webassemblyjs/leb128": "1.9.0",
+ "@webassemblyjs/utf8": "1.9.0"
+ }
+ },
+ "@webassemblyjs/wasm-opt": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz",
+ "integrity": "sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==",
+ "dev": true,
+ "requires": {
+ "@webassemblyjs/ast": "1.9.0",
+ "@webassemblyjs/helper-buffer": "1.9.0",
+ "@webassemblyjs/wasm-gen": "1.9.0",
+ "@webassemblyjs/wasm-parser": "1.9.0"
+ }
+ },
+ "@webassemblyjs/wasm-parser": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz",
+ "integrity": "sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==",
+ "dev": true,
+ "requires": {
+ "@webassemblyjs/ast": "1.9.0",
+ "@webassemblyjs/helper-api-error": "1.9.0",
+ "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
+ "@webassemblyjs/ieee754": "1.9.0",
+ "@webassemblyjs/leb128": "1.9.0",
+ "@webassemblyjs/utf8": "1.9.0"
+ }
+ },
+ "@webassemblyjs/wast-parser": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz",
+ "integrity": "sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==",
+ "dev": true,
+ "requires": {
+ "@webassemblyjs/ast": "1.9.0",
+ "@webassemblyjs/floating-point-hex-parser": "1.9.0",
+ "@webassemblyjs/helper-api-error": "1.9.0",
+ "@webassemblyjs/helper-code-frame": "1.9.0",
+ "@webassemblyjs/helper-fsm": "1.9.0",
+ "@xtuc/long": "4.2.2"
+ }
+ },
+ "@webassemblyjs/wast-printer": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz",
+ "integrity": "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==",
+ "dev": true,
+ "requires": {
+ "@webassemblyjs/ast": "1.9.0",
+ "@webassemblyjs/wast-parser": "1.9.0",
+ "@xtuc/long": "4.2.2"
+ }
+ },
+ "@webcomponents/shadycss": {
+ "version": "1.9.5",
+ "resolved": "https://registry.npmjs.org/@webcomponents/shadycss/-/shadycss-1.9.5.tgz",
+ "integrity": "sha512-ivJ47Gq4WJONLErim7FR1TGIX0epNx8b2N9Q7c4AKKd5Mbax+CoKoFLZ2lfFvx8vs/jz1YK+8UIbM+diSy27HQ=="
+ },
+ "@webcomponents/webcomponentsjs": {
+ "version": "1.3.3",
+ "resolved": "https://registry.npmjs.org/@webcomponents/webcomponentsjs/-/webcomponentsjs-1.3.3.tgz",
+ "integrity": "sha512-eLH04VBMpuZGzBIhOnUjECcQPEPcmfhWEijW9u1B5I+2PPYdWf3vWUExdDxu4Y3GljRSTCOlWnGtS9tpzmXMyQ=="
+ },
+ "@xtuc/ieee754": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz",
+ "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==",
+ "dev": true
+ },
+ "@xtuc/long": {
+ "version": "4.2.2",
+ "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz",
+ "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==",
+ "dev": true
+ },
+ "abab": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.3.tgz",
+ "integrity": "sha512-tsFzPpcttalNjFBCFMqsKYQcWxxen1pgJR56by//QwvJc4/OUS3kPOOttx2tSIfjsylB0pYu7f5D3K1RCxUnUg==",
+ "dev": true
+ },
+ "abbrev": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
+ "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==",
+ "dev": true
+ },
+ "accepts": {
+ "version": "1.3.7",
+ "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz",
+ "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==",
+ "dev": true,
+ "requires": {
+ "mime-types": "~2.1.24",
+ "negotiator": "0.6.2"
+ },
+ "dependencies": {
+ "negotiator": {
+ "version": "0.6.2",
+ "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz",
+ "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==",
+ "dev": true
+ }
+ }
+ },
+ "acorn": {
+ "version": "7.1.1",
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.1.1.tgz",
+ "integrity": "sha512-add7dgA5ppRPxCFJoAGfMDi7PIBXq1RtGo7BhbLaxwrXPOmw8gq48Y9ozT01hUKy9byMjlR20EJhu5zlkErEkg==",
+ "dev": true
+ },
+ "acorn-globals": {
+ "version": "4.3.4",
+ "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-4.3.4.tgz",
+ "integrity": "sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A==",
+ "dev": true,
+ "requires": {
+ "acorn": "^6.0.1",
+ "acorn-walk": "^6.0.1"
+ },
+ "dependencies": {
+ "acorn": {
+ "version": "6.4.1",
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.1.tgz",
+ "integrity": "sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA==",
+ "dev": true
+ }
+ }
+ },
+ "acorn-jsx": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.2.0.tgz",
+ "integrity": "sha512-HiUX/+K2YpkpJ+SzBffkM/AQ2YE03S0U1kjTLVpoJdhZMOWy8qvXVN9JdLqv2QsaQ6MPYQIuNmwD8zOiYUofLQ==",
+ "dev": true
+ },
+ "acorn-walk": {
+ "version": "6.2.0",
+ "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-6.2.0.tgz",
+ "integrity": "sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==",
+ "dev": true
+ },
+ "adm-zip": {
+ "version": "0.4.14",
+ "resolved": "https://registry.npmjs.org/adm-zip/-/adm-zip-0.4.14.tgz",
+ "integrity": "sha512-/9aQCnQHF+0IiCl0qhXoK7qs//SwYE7zX8lsr/DNk1BRAHYxeLZPL4pguwK29gUEqasYQjqPtEpDRSWEkdHn9g==",
+ "dev": true
+ },
+ "after": {
+ "version": "0.8.2",
+ "resolved": "https://registry.npmjs.org/after/-/after-0.8.2.tgz",
+ "integrity": "sha1-/ts5T58OAqqXaOcCvaI7UF+ufh8=",
+ "dev": true
+ },
+ "agent-base": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-2.1.1.tgz",
+ "integrity": "sha1-1t4Q1a9hMtW9aSQn1G/FOFOQlMc=",
+ "dev": true,
+ "requires": {
+ "extend": "~3.0.0",
+ "semver": "~5.0.1"
+ },
+ "dependencies": {
+ "semver": {
+ "version": "5.0.3",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.0.3.tgz",
+ "integrity": "sha1-d0Zt5YnNXTyV8TiqeLxWmjy10no=",
+ "dev": true
+ }
+ }
+ },
+ "aggregate-error": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.0.1.tgz",
+ "integrity": "sha512-quoaXsZ9/BLNae5yiNoUz+Nhkwz83GhWwtYFglcjEQB2NDHCIpApbqXxIFnm4Pq/Nvhrsq5sYJFyohrrxnTGAA==",
+ "dev": true,
+ "requires": {
+ "clean-stack": "^2.0.0",
+ "indent-string": "^4.0.0"
+ },
+ "dependencies": {
+ "indent-string": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz",
+ "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==",
+ "dev": true
+ }
+ }
+ },
+ "ajv": {
+ "version": "6.12.0",
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.0.tgz",
+ "integrity": "sha512-D6gFiFA0RRLyUbvijN74DWAjXSFxWKaWP7mldxkVhyhAV3+SWA9HEJPHQ2c9soIeTFJqcSdFDGFgdqs1iUU2Hw==",
+ "dev": true,
+ "requires": {
+ "fast-deep-equal": "^3.1.1",
+ "fast-json-stable-stringify": "^2.0.0",
+ "json-schema-traverse": "^0.4.1",
+ "uri-js": "^4.2.2"
+ }
+ },
+ "ajv-errors": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz",
+ "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==",
+ "dev": true
+ },
+ "ajv-keywords": {
+ "version": "3.4.1",
+ "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.4.1.tgz",
+ "integrity": "sha512-RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ==",
+ "dev": true
+ },
+ "amdefine": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz",
+ "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=",
+ "dev": true,
+ "optional": true
+ },
+ "animate.css": {
+ "version": "3.7.2",
+ "resolved": "https://registry.npmjs.org/animate.css/-/animate.css-3.7.2.tgz",
+ "integrity": "sha512-0bE8zYo7C0KvgOYrSVfrzkbYk6IOTVPNqkiHg2cbyF4Pq/PXzilz4BRWA3hwEUBoMp5VBgrC29lQIZyhRWdBTw=="
+ },
+ "ansi-colors": {
+ "version": "3.2.4",
+ "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz",
+ "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==",
+ "dev": true
+ },
+ "ansi-escape-sequences": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/ansi-escape-sequences/-/ansi-escape-sequences-3.0.0.tgz",
+ "integrity": "sha1-HBg5S2r5t2/5pjUJ+kl2af0s5T4=",
+ "dev": true,
+ "requires": {
+ "array-back": "^1.0.3"
+ }
+ },
+ "ansi-escapes": {
+ "version": "4.3.1",
+ "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.1.tgz",
+ "integrity": "sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA==",
+ "dev": true,
+ "requires": {
+ "type-fest": "^0.11.0"
+ },
+ "dependencies": {
+ "type-fest": {
+ "version": "0.11.0",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.11.0.tgz",
+ "integrity": "sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==",
+ "dev": true
+ }
+ }
+ },
+ "ansi-regex": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
+ "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8="
+ },
+ "ansi-styles": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+ "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
+ },
+ "any-observable": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/any-observable/-/any-observable-0.3.0.tgz",
+ "integrity": "sha512-/FQM1EDkTsf63Ub2C6O7GuYFDsSXUwsaZDurV0np41ocwq0jthUAYCmhBX9f+KwlaCgIuWyr/4WlUQUBfKfZog==",
+ "dev": true
+ },
+ "anymatch": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz",
+ "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==",
+ "dev": true,
+ "requires": {
+ "micromatch": "^3.1.4",
+ "normalize-path": "^2.1.1"
+ },
+ "dependencies": {
+ "normalize-path": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz",
+ "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=",
+ "dev": true,
+ "requires": {
+ "remove-trailing-separator": "^1.0.1"
+ }
+ }
+ }
+ },
+ "aproba": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz",
+ "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==",
+ "dev": true
+ },
+ "arch": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/arch/-/arch-2.1.2.tgz",
+ "integrity": "sha512-NTBIIbAfkJeIletyABbVtdPgeKfDafR+1mZV/AyyfC1UkVkp9iUjV+wwmqtUgphHYajbI86jejBJp5e+jkGTiQ==",
+ "dev": true
+ },
+ "argparse": {
+ "version": "1.0.10",
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
+ "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
+ "dev": true,
+ "requires": {
+ "sprintf-js": "~1.0.2"
+ }
+ },
+ "arr-diff": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz",
+ "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=",
+ "dev": true
+ },
+ "arr-flatten": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz",
+ "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==",
+ "dev": true
+ },
+ "arr-union": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz",
+ "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=",
+ "dev": true
+ },
+ "array-back": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/array-back/-/array-back-1.0.4.tgz",
+ "integrity": "sha1-ZEun8JX3/898Q7Xw3DnTwfA8Bjs=",
+ "dev": true,
+ "requires": {
+ "typical": "^2.6.0"
+ }
+ },
+ "array-equal": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/array-equal/-/array-equal-1.0.0.tgz",
+ "integrity": "sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM=",
+ "dev": true
+ },
+ "array-includes": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.1.tgz",
+ "integrity": "sha512-c2VXaCHl7zPsvpkFsw4nxvFie4fh1ur9bpcgsVkIjqn0H/Xwdg+7fv3n2r/isyS8EBj5b06M9kHyZuIr4El6WQ==",
+ "dev": true,
+ "requires": {
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.17.0",
+ "is-string": "^1.0.5"
+ }
+ },
+ "array-union": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz",
+ "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=",
+ "dev": true,
+ "requires": {
+ "array-uniq": "^1.0.1"
+ }
+ },
+ "array-uniq": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz",
+ "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=",
+ "dev": true
+ },
+ "array-unique": {
+ "version": "0.3.2",
+ "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz",
+ "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=",
+ "dev": true
+ },
+ "array.prototype.flat": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.3.tgz",
+ "integrity": "sha512-gBlRZV0VSmfPIeWfuuy56XZMvbVfbEUnOXUvt3F/eUUUSyzlgLxhEX4YAEpxNAogRGehPSnfXyPtYyKAhkzQhQ==",
+ "dev": true,
+ "requires": {
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.17.0-next.1"
+ }
+ },
+ "arraybuffer.slice": {
+ "version": "0.0.7",
+ "resolved": "https://registry.npmjs.org/arraybuffer.slice/-/arraybuffer.slice-0.0.7.tgz",
+ "integrity": "sha512-wGUIVQXuehL5TCqQun8OW81jGzAWycqzFF8lFp+GOM5BXLYj3bKNsYC4daB7n6XjCqxQA/qgTJ+8ANR3acjrog==",
+ "dev": true
+ },
+ "asn1": {
+ "version": "0.2.4",
+ "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz",
+ "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==",
+ "requires": {
+ "safer-buffer": "~2.1.0"
+ }
+ },
+ "asn1.js": {
+ "version": "4.10.1",
+ "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz",
+ "integrity": "sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==",
+ "dev": true,
+ "requires": {
+ "bn.js": "^4.0.0",
+ "inherits": "^2.0.1",
+ "minimalistic-assert": "^1.0.0"
+ },
+ "dependencies": {
+ "bn.js": {
+ "version": "4.11.8",
+ "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz",
+ "integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==",
+ "dev": true
+ }
+ }
+ },
+ "assert": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz",
+ "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==",
+ "dev": true,
+ "requires": {
+ "object-assign": "^4.1.1",
+ "util": "0.10.3"
+ },
+ "dependencies": {
+ "inherits": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz",
+ "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=",
+ "dev": true
+ },
+ "util": {
+ "version": "0.10.3",
+ "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz",
+ "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=",
+ "dev": true,
+ "requires": {
+ "inherits": "2.0.1"
+ }
+ }
+ }
+ },
+ "assert-plus": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz",
+ "integrity": "sha1-104bh+ev/A24qttwIfP+SBAasjQ="
+ },
+ "assertion-error": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.0.0.tgz",
+ "integrity": "sha1-x/hUOP3UZrx8oWq5DIFRN5el0js=",
+ "dev": true
+ },
+ "assign-symbols": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz",
+ "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=",
+ "dev": true
+ },
+ "ast-types": {
+ "version": "0.9.6",
+ "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.9.6.tgz",
+ "integrity": "sha1-ECyenpAF0+fjgpvwxPok7oYu6bk=",
+ "dev": true
+ },
+ "astral-regex": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz",
+ "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==",
+ "dev": true
+ },
+ "async": {
+ "version": "2.6.3",
+ "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz",
+ "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==",
+ "requires": {
+ "lodash": "^4.17.14"
+ }
+ },
+ "async-each": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz",
+ "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==",
+ "dev": true
+ },
+ "async-each-series": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/async-each-series/-/async-each-series-0.1.1.tgz",
+ "integrity": "sha1-dhfBkXQB/Yykooqtzj266Yr+tDI=",
+ "dev": true
+ },
+ "async-limiter": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz",
+ "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==",
+ "dev": true
+ },
+ "asynckit": {
+ "version": "0.4.0",
+ "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
+ "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=",
+ "dev": true
+ },
+ "atob": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz",
+ "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==",
+ "dev": true
+ },
+ "aws-sign2": {
+ "version": "0.6.0",
+ "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz",
+ "integrity": "sha1-FDQt0428yU0OW4fXY81jYSwOeU8="
+ },
+ "aws4": {
+ "version": "1.9.1",
+ "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.9.1.tgz",
+ "integrity": "sha512-wMHVg2EOHaMRxbzgFJ9gtjOOCrI80OHLG14rxi28XwOW8ux6IiEbRCGGGqCtdAIg4FQCbW20k9RsT4y3gJlFug==",
+ "dev": true
+ },
+ "axios": {
+ "version": "0.19.0",
+ "resolved": "https://registry.npmjs.org/axios/-/axios-0.19.0.tgz",
+ "integrity": "sha512-1uvKqKQta3KBxIz14F2v06AEHZ/dIoeKfbTRkK1E5oqjDnuEerLmYTgJB5AiQZHJcljpg1TuRzdjDR06qNk0DQ==",
+ "dev": true,
+ "requires": {
+ "follow-redirects": "1.5.10",
+ "is-buffer": "^2.0.2"
+ },
+ "dependencies": {
+ "is-buffer": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.4.tgz",
+ "integrity": "sha512-Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A==",
+ "dev": true
+ }
+ }
+ },
+ "babel-eslint": {
+ "version": "10.1.0",
+ "resolved": "https://registry.npmjs.org/babel-eslint/-/babel-eslint-10.1.0.tgz",
+ "integrity": "sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==",
+ "dev": true,
+ "requires": {
+ "@babel/code-frame": "^7.0.0",
+ "@babel/parser": "^7.7.0",
+ "@babel/traverse": "^7.7.0",
+ "@babel/types": "^7.7.0",
+ "eslint-visitor-keys": "^1.0.0",
+ "resolve": "^1.12.0"
+ }
+ },
+ "babel-jest": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-25.1.0.tgz",
+ "integrity": "sha512-tz0VxUhhOE2y+g8R2oFrO/2VtVjA1lkJeavlhExuRBg3LdNJY9gwQ+Vcvqt9+cqy71MCTJhewvTB7Qtnnr9SWg==",
+ "dev": true,
+ "requires": {
+ "@jest/transform": "^25.1.0",
+ "@jest/types": "^25.1.0",
+ "@types/babel__core": "^7.1.0",
+ "babel-plugin-istanbul": "^6.0.0",
+ "babel-preset-jest": "^25.1.0",
+ "chalk": "^3.0.0",
+ "slash": "^3.0.0"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
+ "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
+ "dev": true,
+ "requires": {
+ "@types/color-name": "^1.1.1",
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
+ "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "requires": {
+ "color-name": "~1.1.4"
+ }
+ },
+ "color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
+ "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "babel-loader": {
+ "version": "8.1.0",
+ "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.1.0.tgz",
+ "integrity": "sha512-7q7nC1tYOrqvUrN3LQK4GwSk/TQorZSOlO9C+RZDZpODgyN4ZlCqE5q9cDsyWOliN+aU9B4JX01xK9eJXowJLw==",
+ "dev": true,
+ "requires": {
+ "find-cache-dir": "^2.1.0",
+ "loader-utils": "^1.4.0",
+ "mkdirp": "^0.5.3",
+ "pify": "^4.0.1",
+ "schema-utils": "^2.6.5"
+ },
+ "dependencies": {
+ "minimist": {
+ "version": "1.2.5",
+ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz",
+ "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==",
+ "dev": true
+ },
+ "mkdirp": {
+ "version": "0.5.5",
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz",
+ "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==",
+ "dev": true,
+ "requires": {
+ "minimist": "^1.2.5"
+ }
+ },
+ "schema-utils": {
+ "version": "2.6.6",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.6.6.tgz",
+ "integrity": "sha512-wHutF/WPSbIi9x6ctjGGk2Hvl0VOz5l3EKEuKbjPlB30mKZUzb9A5k9yEXRX3pwyqVLPvpfZZEllaFq/M718hA==",
+ "dev": true,
+ "requires": {
+ "ajv": "^6.12.0",
+ "ajv-keywords": "^3.4.1"
+ }
+ }
+ }
+ },
+ "babel-plugin-dynamic-import-node": {
+ "version": "2.3.3",
+ "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz",
+ "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==",
+ "dev": true,
+ "requires": {
+ "object.assign": "^4.1.0"
+ }
+ },
+ "babel-plugin-istanbul": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz",
+ "integrity": "sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.0.0",
+ "@istanbuljs/load-nyc-config": "^1.0.0",
+ "@istanbuljs/schema": "^0.1.2",
+ "istanbul-lib-instrument": "^4.0.0",
+ "test-exclude": "^6.0.0"
+ }
+ },
+ "babel-plugin-jest-hoist": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-25.1.0.tgz",
+ "integrity": "sha512-oIsopO41vW4YFZ9yNYoLQATnnN46lp+MZ6H4VvPKFkcc2/fkl3CfE/NZZSmnEIEsJRmJAgkVEK0R7Zbl50CpTw==",
+ "dev": true,
+ "requires": {
+ "@types/babel__traverse": "^7.0.6"
+ }
+ },
+ "babel-polyfill": {
+ "version": "6.26.0",
+ "resolved": "https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.26.0.tgz",
+ "integrity": "sha1-N5k3q8Z9eJWXCtxiHyhM2WbPIVM=",
+ "dev": true,
+ "requires": {
+ "babel-runtime": "^6.26.0",
+ "core-js": "^2.5.0",
+ "regenerator-runtime": "^0.10.5"
+ },
+ "dependencies": {
+ "regenerator-runtime": {
+ "version": "0.10.5",
+ "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz",
+ "integrity": "sha1-M2w+/BIgrc7dosn6tntaeVWjNlg=",
+ "dev": true
+ }
+ }
+ },
+ "babel-preset-jest": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-25.1.0.tgz",
+ "integrity": "sha512-eCGn64olaqwUMaugXsTtGAM2I0QTahjEtnRu0ql8Ie+gDWAc1N6wqN0k2NilnyTunM69Pad7gJY7LOtwLimoFQ==",
+ "dev": true,
+ "requires": {
+ "@babel/plugin-syntax-bigint": "^7.0.0",
+ "@babel/plugin-syntax-object-rest-spread": "^7.0.0",
+ "babel-plugin-jest-hoist": "^25.1.0"
+ }
+ },
+ "babel-runtime": {
+ "version": "6.26.0",
+ "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz",
+ "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=",
+ "dev": true,
+ "requires": {
+ "core-js": "^2.4.0",
+ "regenerator-runtime": "^0.11.0"
+ },
+ "dependencies": {
+ "regenerator-runtime": {
+ "version": "0.11.1",
+ "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz",
+ "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==",
+ "dev": true
+ }
+ }
+ },
+ "backbone": {
+ "version": "1.3.3",
+ "resolved": "https://registry.npmjs.org/backbone/-/backbone-1.3.3.tgz",
+ "integrity": "sha1-TMgOp8sWMaxHSInOQPL4vGg7KZk=",
+ "requires": {
+ "underscore": ">=1.8.3"
+ }
+ },
+ "backo2": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz",
+ "integrity": "sha1-MasayLEpNjRj41s+u2n038+6eUc=",
+ "dev": true
+ },
+ "balanced-match": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz",
+ "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c="
+ },
+ "base": {
+ "version": "0.11.2",
+ "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz",
+ "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==",
+ "dev": true,
+ "requires": {
+ "cache-base": "^1.0.1",
+ "class-utils": "^0.3.5",
+ "component-emitter": "^1.2.1",
+ "define-property": "^1.0.0",
+ "isobject": "^3.0.1",
+ "mixin-deep": "^1.2.0",
+ "pascalcase": "^0.1.1"
+ },
+ "dependencies": {
+ "define-property": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
+ "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
+ "dev": true,
+ "requires": {
+ "is-descriptor": "^1.0.0"
+ }
+ },
+ "is-accessor-descriptor": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
+ "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
+ "dev": true,
+ "requires": {
+ "kind-of": "^6.0.0"
+ }
+ },
+ "is-data-descriptor": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
+ "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
+ "dev": true,
+ "requires": {
+ "kind-of": "^6.0.0"
+ }
+ },
+ "is-descriptor": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
+ "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
+ "dev": true,
+ "requires": {
+ "is-accessor-descriptor": "^1.0.0",
+ "is-data-descriptor": "^1.0.0",
+ "kind-of": "^6.0.2"
+ }
+ }
+ }
+ },
+ "base64-arraybuffer": {
+ "version": "0.1.5",
+ "resolved": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz",
+ "integrity": "sha1-c5JncZI7Whl0etZmqlzUv5xunOg=",
+ "dev": true
+ },
+ "base64-js": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.1.tgz",
+ "integrity": "sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g==",
+ "dev": true
+ },
+ "base64id": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/base64id/-/base64id-1.0.0.tgz",
+ "integrity": "sha1-R2iMuZu2gE8OBtPnY7HDLlfY5rY=",
+ "dev": true
+ },
+ "batch": {
+ "version": "0.5.0",
+ "resolved": "https://registry.npmjs.org/batch/-/batch-0.5.0.tgz",
+ "integrity": "sha1-/S4Fp6XWlrTbkxQBPihdj/NVfsM="
+ },
+ "bcrypt-pbkdf": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz",
+ "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=",
+ "requires": {
+ "tweetnacl": "^0.14.3"
+ }
+ },
+ "better-assert": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/better-assert/-/better-assert-1.0.2.tgz",
+ "integrity": "sha1-QIZrnhueC1W0gYlDEeaPr/rrxSI=",
+ "dev": true,
+ "requires": {
+ "callsite": "1.0.0"
+ }
+ },
+ "big.js": {
+ "version": "5.2.2",
+ "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz",
+ "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==",
+ "dev": true
+ },
+ "binary-extensions": {
+ "version": "1.13.1",
+ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz",
+ "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==",
+ "dev": true
+ },
+ "bindings": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz",
+ "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "file-uri-to-path": "1.0.0"
+ }
+ },
+ "bl": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.3.tgz",
+ "integrity": "sha1-/FQhoo/UImA2w7OJGmaiW8ZNIm4=",
+ "requires": {
+ "readable-stream": "~2.0.5"
+ },
+ "dependencies": {
+ "isarray": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
+ "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE="
+ },
+ "readable-stream": {
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz",
+ "integrity": "sha1-j5A0HmilPMySh4jaz80Rs265t44=",
+ "requires": {
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.1",
+ "isarray": "~1.0.0",
+ "process-nextick-args": "~1.0.6",
+ "string_decoder": "~0.10.x",
+ "util-deprecate": "~1.0.1"
+ }
+ }
+ }
+ },
+ "blob": {
+ "version": "0.0.5",
+ "resolved": "https://registry.npmjs.org/blob/-/blob-0.0.5.tgz",
+ "integrity": "sha512-gaqbzQPqOoamawKg0LGVd7SzLgXS+JH61oWprSLH+P+abTczqJbhTR8CmJ2u9/bUYNmHTGJx/UEmn6doAvvuig==",
+ "dev": true
+ },
+ "bluebird": {
+ "version": "3.7.2",
+ "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz",
+ "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==",
+ "dev": true
+ },
+ "bn.js": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.1.1.tgz",
+ "integrity": "sha512-IUTD/REb78Z2eodka1QZyyEk66pciRcP6Sroka0aI3tG/iwIdYLrBD62RsubR7vqdt3WyX8p4jxeatzmRSphtA==",
+ "dev": true
+ },
+ "boolbase": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz",
+ "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=",
+ "dev": true
+ },
+ "boom": {
+ "version": "2.10.1",
+ "resolved": "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz",
+ "integrity": "sha1-OciRjO/1eZ+D+UkqhI9iWt0Mdm8=",
+ "requires": {
+ "hoek": "2.x.x"
+ }
+ },
+ "bootstrap": {
+ "version": "3.3.6",
+ "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-3.3.6.tgz",
+ "integrity": "sha1-jej3SdyKdD8qxbUQ2Yg3Hj2qZYk="
+ },
+ "bootstrap-3-typeahead": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/bootstrap-3-typeahead/-/bootstrap-3-typeahead-4.0.2.tgz",
+ "integrity": "sha1-yxyWkESFaGIJb8jHHMIbOsu1BBI="
+ },
+ "bootstrap-colorpicker": {
+ "version": "2.3.6",
+ "resolved": "https://registry.npmjs.org/bootstrap-colorpicker/-/bootstrap-colorpicker-2.3.6.tgz",
+ "integrity": "sha1-gWCVw13XkZ3LTePwyAfxOxIejxc=",
+ "requires": {
+ "jquery": ">=1.10"
+ }
+ },
+ "bootstrap-notify": {
+ "version": "git://github.com/mouse0270/bootstrap-notify.git#d52c64fe1c320a6fe382874318edd00ff714abf6",
+ "from": "git://github.com/mouse0270/bootstrap-notify.git#master"
+ },
+ "bootstrap-select": {
+ "version": "1.13.12",
+ "resolved": "https://registry.npmjs.org/bootstrap-select/-/bootstrap-select-1.13.12.tgz",
+ "integrity": "sha512-epsPt6WpgmL9Q9Y22JFntajdhhqvCwV/JKiBZF3YFvMHK9YzzDPQft/Cjqvsgq0bhF32BlvG03Qs3qA/pVRAqQ=="
+ },
+ "bootstrap-table": {
+ "version": "1.16.0",
+ "resolved": "https://registry.npmjs.org/bootstrap-table/-/bootstrap-table-1.16.0.tgz",
+ "integrity": "sha512-bLbVetbyiXYmhU1LSsaiOHH4uvmlyBa/fNUo3y0owCfQSyQms/sfXOBvbcJWlDmjGtTY7kPW5z7KQvQJDPzN5w=="
+ },
+ "bootstrap-treeview": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/bootstrap-treeview/-/bootstrap-treeview-1.2.0.tgz",
+ "integrity": "sha1-obzIHc54QFECenmo3Jdp3GyIOfQ=",
+ "requires": {
+ "ejs": "2.2.x",
+ "express": "3.4.x",
+ "phantomjs": "1.9.x"
+ }
+ },
+ "bootstrap-validator": {
+ "version": "0.11.9",
+ "resolved": "https://registry.npmjs.org/bootstrap-validator/-/bootstrap-validator-0.11.9.tgz",
+ "integrity": "sha1-+3BY7vU2I+ePWqeWcCb5j4dalAQ="
+ },
+ "bower": {
+ "version": "1.8.8",
+ "resolved": "https://registry.npmjs.org/bower/-/bower-1.8.8.tgz",
+ "integrity": "sha512-1SrJnXnkP9soITHptSO+ahx3QKp3cVzn8poI6ujqc5SeOkg5iqM1pK9H+DSc2OQ8SnO0jC/NG4Ur/UIwy7574A==",
+ "dev": true
+ },
+ "brace-expansion": {
+ "version": "1.1.11",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
+ "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
+ "requires": {
+ "balanced-match": "^1.0.0",
+ "concat-map": "0.0.1"
+ }
+ },
+ "braces": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
+ "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
+ "dev": true,
+ "requires": {
+ "arr-flatten": "^1.1.0",
+ "array-unique": "^0.3.2",
+ "extend-shallow": "^2.0.1",
+ "fill-range": "^4.0.0",
+ "isobject": "^3.0.1",
+ "repeat-element": "^1.1.2",
+ "snapdragon": "^0.8.1",
+ "snapdragon-node": "^2.0.1",
+ "split-string": "^3.0.2",
+ "to-regex": "^3.0.1"
+ },
+ "dependencies": {
+ "extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "requires": {
+ "is-extendable": "^0.1.0"
+ }
+ }
+ }
+ },
+ "brorand": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz",
+ "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=",
+ "dev": true
+ },
+ "browser-process-hrtime": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz",
+ "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==",
+ "dev": true
+ },
+ "browser-resolve": {
+ "version": "1.11.3",
+ "resolved": "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.3.tgz",
+ "integrity": "sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==",
+ "dev": true,
+ "requires": {
+ "resolve": "1.1.7"
+ },
+ "dependencies": {
+ "resolve": {
+ "version": "1.1.7",
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz",
+ "integrity": "sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=",
+ "dev": true
+ }
+ }
+ },
+ "browser-stdout": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.0.tgz",
+ "integrity": "sha1-81HTKWnTL6XXpVZxVCY9korjvR8=",
+ "dev": true
+ },
+ "browser-sync": {
+ "version": "2.26.7",
+ "resolved": "https://registry.npmjs.org/browser-sync/-/browser-sync-2.26.7.tgz",
+ "integrity": "sha512-lY3emme0OyvA2ujEMpRmyRy9LY6gHLuTr2/ABxhIm3lADOiRXzP4dgekvnDrQqZ/Ec2Fz19lEjm6kglSG5766w==",
+ "dev": true,
+ "requires": {
+ "browser-sync-client": "^2.26.6",
+ "browser-sync-ui": "^2.26.4",
+ "bs-recipes": "1.3.4",
+ "bs-snippet-injector": "^2.0.1",
+ "chokidar": "^2.0.4",
+ "connect": "3.6.6",
+ "connect-history-api-fallback": "^1",
+ "dev-ip": "^1.0.1",
+ "easy-extender": "^2.3.4",
+ "eazy-logger": "^3",
+ "etag": "^1.8.1",
+ "fresh": "^0.5.2",
+ "fs-extra": "3.0.1",
+ "http-proxy": "1.15.2",
+ "immutable": "^3",
+ "localtunnel": "1.9.2",
+ "micromatch": "^3.1.10",
+ "opn": "5.3.0",
+ "portscanner": "2.1.1",
+ "qs": "6.2.3",
+ "raw-body": "^2.3.2",
+ "resp-modifier": "6.0.2",
+ "rx": "4.1.0",
+ "send": "0.16.2",
+ "serve-index": "1.9.1",
+ "serve-static": "1.13.2",
+ "server-destroy": "1.0.1",
+ "socket.io": "2.1.1",
+ "ua-parser-js": "0.7.17",
+ "yargs": "6.4.0"
+ },
+ "dependencies": {
+ "bytes": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz",
+ "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==",
+ "dev": true
+ },
+ "connect": {
+ "version": "3.6.6",
+ "resolved": "https://registry.npmjs.org/connect/-/connect-3.6.6.tgz",
+ "integrity": "sha1-Ce/2xVr3I24TcTWnJXSFi2eG9SQ=",
+ "dev": true,
+ "requires": {
+ "debug": "2.6.9",
+ "finalhandler": "1.1.0",
+ "parseurl": "~1.3.2",
+ "utils-merge": "1.0.1"
+ }
+ },
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "fresh": {
+ "version": "0.5.2",
+ "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
+ "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=",
+ "dev": true
+ },
+ "fs-extra": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-3.0.1.tgz",
+ "integrity": "sha1-N5TzeMWLNC6n27sjCVEJxLO2IpE=",
+ "dev": true,
+ "requires": {
+ "graceful-fs": "^4.1.2",
+ "jsonfile": "^3.0.0",
+ "universalify": "^0.1.0"
+ }
+ },
+ "inherits": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
+ "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=",
+ "dev": true
+ },
+ "jsonfile": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-3.0.1.tgz",
+ "integrity": "sha1-pezG9l9T9mLEQVx2daAzHQmS7GY=",
+ "dev": true,
+ "requires": {
+ "graceful-fs": "^4.1.6"
+ }
+ },
+ "mime": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz",
+ "integrity": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==",
+ "dev": true
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ },
+ "qs": {
+ "version": "6.2.3",
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.2.3.tgz",
+ "integrity": "sha1-HPyyXBCpsrSDBT/zn138kjOQjP4=",
+ "dev": true
+ },
+ "range-parser": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
+ "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
+ "dev": true
+ },
+ "raw-body": {
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.1.tgz",
+ "integrity": "sha512-9WmIKF6mkvA0SLmA2Knm9+qj89e+j1zqgyn8aXGd7+nAduPoqgI9lO57SAZNn/Byzo5P7JhXTyg9PzaJbH73bA==",
+ "dev": true,
+ "requires": {
+ "bytes": "3.1.0",
+ "http-errors": "1.7.3",
+ "iconv-lite": "0.4.24",
+ "unpipe": "1.0.0"
+ }
+ },
+ "send": {
+ "version": "0.16.2",
+ "resolved": "https://registry.npmjs.org/send/-/send-0.16.2.tgz",
+ "integrity": "sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==",
+ "dev": true,
+ "requires": {
+ "debug": "2.6.9",
+ "depd": "~1.1.2",
+ "destroy": "~1.0.4",
+ "encodeurl": "~1.0.2",
+ "escape-html": "~1.0.3",
+ "etag": "~1.8.1",
+ "fresh": "0.5.2",
+ "http-errors": "~1.6.2",
+ "mime": "1.4.1",
+ "ms": "2.0.0",
+ "on-finished": "~2.3.0",
+ "range-parser": "~1.2.0",
+ "statuses": "~1.4.0"
+ },
+ "dependencies": {
+ "http-errors": {
+ "version": "1.6.3",
+ "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz",
+ "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=",
+ "dev": true,
+ "requires": {
+ "depd": "~1.1.2",
+ "inherits": "2.0.3",
+ "setprototypeof": "1.1.0",
+ "statuses": ">= 1.4.0 < 2"
+ }
+ }
+ }
+ },
+ "setprototypeof": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz",
+ "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==",
+ "dev": true
+ },
+ "statuses": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz",
+ "integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==",
+ "dev": true
+ }
+ }
+ },
+ "browser-sync-client": {
+ "version": "2.26.6",
+ "resolved": "https://registry.npmjs.org/browser-sync-client/-/browser-sync-client-2.26.6.tgz",
+ "integrity": "sha512-mGrkZdNzttKdf/16I+y+2dTQxoMCIpKbVIMJ/uP8ZpnKu9f9qa/2CYVtLtbjZG8nsM14EwiCrjuFTGBEnT3Gjw==",
+ "dev": true,
+ "requires": {
+ "etag": "1.8.1",
+ "fresh": "0.5.2",
+ "mitt": "^1.1.3",
+ "rxjs": "^5.5.6"
+ },
+ "dependencies": {
+ "fresh": {
+ "version": "0.5.2",
+ "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
+ "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=",
+ "dev": true
+ }
+ }
+ },
+ "browser-sync-ui": {
+ "version": "2.26.4",
+ "resolved": "https://registry.npmjs.org/browser-sync-ui/-/browser-sync-ui-2.26.4.tgz",
+ "integrity": "sha512-u20P3EsZoM8Pt+puoi3BU3KlbQAH1lAcV+/O4saF26qokrBqIDotmGonfWwoRbUmdxZkM9MBmA0K39ZTG1h4sA==",
+ "dev": true,
+ "requires": {
+ "async-each-series": "0.1.1",
+ "connect-history-api-fallback": "^1",
+ "immutable": "^3",
+ "server-destroy": "1.0.1",
+ "socket.io-client": "^2.0.4",
+ "stream-throttle": "^0.1.3"
+ }
+ },
+ "browserify-aes": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz",
+ "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==",
+ "dev": true,
+ "requires": {
+ "buffer-xor": "^1.0.3",
+ "cipher-base": "^1.0.0",
+ "create-hash": "^1.1.0",
+ "evp_bytestokey": "^1.0.3",
+ "inherits": "^2.0.1",
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "browserify-cipher": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz",
+ "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==",
+ "dev": true,
+ "requires": {
+ "browserify-aes": "^1.0.4",
+ "browserify-des": "^1.0.0",
+ "evp_bytestokey": "^1.0.0"
+ }
+ },
+ "browserify-des": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz",
+ "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==",
+ "dev": true,
+ "requires": {
+ "cipher-base": "^1.0.1",
+ "des.js": "^1.0.0",
+ "inherits": "^2.0.1",
+ "safe-buffer": "^5.1.2"
+ }
+ },
+ "browserify-rsa": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz",
+ "integrity": "sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=",
+ "dev": true,
+ "requires": {
+ "bn.js": "^4.1.0",
+ "randombytes": "^2.0.1"
+ },
+ "dependencies": {
+ "bn.js": {
+ "version": "4.11.8",
+ "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz",
+ "integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==",
+ "dev": true
+ }
+ }
+ },
+ "browserify-sign": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.1.0.tgz",
+ "integrity": "sha512-VYxo7cDCeYUoBZ0ZCy4UyEUCP3smyBd4DRQM5nrFS1jJjPJjX7rP3oLRpPoWfkhQfyJ0I9ZbHbKafrFD/SGlrg==",
+ "dev": true,
+ "requires": {
+ "bn.js": "^5.1.1",
+ "browserify-rsa": "^4.0.1",
+ "create-hash": "^1.2.0",
+ "create-hmac": "^1.1.7",
+ "elliptic": "^6.5.2",
+ "inherits": "^2.0.4",
+ "parse-asn1": "^5.1.5",
+ "readable-stream": "^3.6.0"
+ },
+ "dependencies": {
+ "readable-stream": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
+ "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
+ "dev": true,
+ "requires": {
+ "inherits": "^2.0.3",
+ "string_decoder": "^1.1.1",
+ "util-deprecate": "^1.0.1"
+ }
+ },
+ "safe-buffer": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.0.tgz",
+ "integrity": "sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg==",
+ "dev": true
+ },
+ "string_decoder": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
+ "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
+ "dev": true,
+ "requires": {
+ "safe-buffer": "~5.2.0"
+ }
+ }
+ }
+ },
+ "browserify-zlib": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz",
+ "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==",
+ "dev": true,
+ "requires": {
+ "pako": "~1.0.5"
+ }
+ },
+ "browserslist": {
+ "version": "4.12.0",
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.12.0.tgz",
+ "integrity": "sha512-UH2GkcEDSI0k/lRkuDSzFl9ZZ87skSy9w2XAn1MsZnL+4c4rqbBd3e82UWHbYDpztABrPBhZsTEeuxVfHppqDg==",
+ "dev": true,
+ "requires": {
+ "caniuse-lite": "^1.0.30001043",
+ "electron-to-chromium": "^1.3.413",
+ "node-releases": "^1.1.53",
+ "pkg-up": "^2.0.0"
+ }
+ },
+ "bs-recipes": {
+ "version": "1.3.4",
+ "resolved": "https://registry.npmjs.org/bs-recipes/-/bs-recipes-1.3.4.tgz",
+ "integrity": "sha1-DS1NSKcYyMBEdp/cT4lZLci2lYU=",
+ "dev": true
+ },
+ "bs-snippet-injector": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/bs-snippet-injector/-/bs-snippet-injector-2.0.1.tgz",
+ "integrity": "sha1-YbU5PxH1JVntEgaTEANDtu2wTdU=",
+ "dev": true
+ },
+ "bser": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz",
+ "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==",
+ "dev": true,
+ "requires": {
+ "node-int64": "^0.4.0"
+ }
+ },
+ "buffer": {
+ "version": "4.9.2",
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz",
+ "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==",
+ "dev": true,
+ "requires": {
+ "base64-js": "^1.0.2",
+ "ieee754": "^1.1.4",
+ "isarray": "^1.0.0"
+ },
+ "dependencies": {
+ "isarray": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
+ "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
+ "dev": true
+ }
+ }
+ },
+ "buffer-crc32": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.1.tgz",
+ "integrity": "sha1-vj5TgvwCttYySVasGvmKqYsIU0w="
+ },
+ "buffer-from": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz",
+ "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==",
+ "dev": true
+ },
+ "buffer-xor": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz",
+ "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=",
+ "dev": true
+ },
+ "builtin-modules": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.1.0.tgz",
+ "integrity": "sha512-k0KL0aWZuBt2lrxrcASWDfwOLMnodeQjodT/1SxEQAXsHANgo6ZC/VEaSEHCXt7aSTZ4/4H5LKa+tBXmW7Vtvw==",
+ "dev": true
+ },
+ "builtin-status-codes": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz",
+ "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=",
+ "dev": true
+ },
+ "builtins": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/builtins/-/builtins-1.0.3.tgz",
+ "integrity": "sha1-y5T662HIaWRR2zZTThQi+U8K7og=",
+ "dev": true
+ },
+ "bytes": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/bytes/-/bytes-0.2.1.tgz",
+ "integrity": "sha1-VVsIq8sGP4l1kFMCUj5M1P/f3zE="
+ },
+ "cacache": {
+ "version": "12.0.3",
+ "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.3.tgz",
+ "integrity": "sha512-kqdmfXEGFepesTuROHMs3MpFLWrPkSSpRqOw80RCflZXy/khxaArvFrQ7uJxSUduzAufc6G0g1VUCOZXxWavPw==",
+ "dev": true,
+ "requires": {
+ "bluebird": "^3.5.5",
+ "chownr": "^1.1.1",
+ "figgy-pudding": "^3.5.1",
+ "glob": "^7.1.4",
+ "graceful-fs": "^4.1.15",
+ "infer-owner": "^1.0.3",
+ "lru-cache": "^5.1.1",
+ "mississippi": "^3.0.0",
+ "mkdirp": "^0.5.1",
+ "move-concurrently": "^1.0.1",
+ "promise-inflight": "^1.0.1",
+ "rimraf": "^2.6.3",
+ "ssri": "^6.0.1",
+ "unique-filename": "^1.1.1",
+ "y18n": "^4.0.0"
+ },
+ "dependencies": {
+ "mkdirp": {
+ "version": "0.5.1",
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
+ "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=",
+ "dev": true,
+ "requires": {
+ "minimist": "0.0.8"
+ }
+ },
+ "y18n": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz",
+ "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==",
+ "dev": true
+ }
+ }
+ },
+ "cache-base": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz",
+ "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==",
+ "dev": true,
+ "requires": {
+ "collection-visit": "^1.0.0",
+ "component-emitter": "^1.2.1",
+ "get-value": "^2.0.6",
+ "has-value": "^1.0.0",
+ "isobject": "^3.0.1",
+ "set-value": "^2.0.0",
+ "to-object-path": "^0.3.0",
+ "union-value": "^1.0.0",
+ "unset-value": "^1.0.0"
+ }
+ },
+ "cacheable-lookup": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-2.0.1.tgz",
+ "integrity": "sha512-EMMbsiOTcdngM/K6gV/OxF2x0t07+vMOWxZNSCRQMjO2MY2nhZQ6OYhOOpyQrbhqsgtvKGI7hcq6xjnA92USjg==",
+ "dev": true,
+ "requires": {
+ "@types/keyv": "^3.1.1",
+ "keyv": "^4.0.0"
+ }
+ },
+ "cacheable-request": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.1.tgz",
+ "integrity": "sha512-lt0mJ6YAnsrBErpTMWeu5kl/tg9xMAWjavYTN6VQXM1A/teBITuNcccXsCxF0tDQQJf9DfAaX5O4e0zp0KlfZw==",
+ "dev": true,
+ "requires": {
+ "clone-response": "^1.0.2",
+ "get-stream": "^5.1.0",
+ "http-cache-semantics": "^4.0.0",
+ "keyv": "^4.0.0",
+ "lowercase-keys": "^2.0.0",
+ "normalize-url": "^4.1.0",
+ "responselike": "^2.0.0"
+ }
+ },
+ "cachedir": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/cachedir/-/cachedir-2.3.0.tgz",
+ "integrity": "sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==",
+ "dev": true
+ },
+ "callsite": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz",
+ "integrity": "sha1-KAOY5dZkvXQDi28JBRU+borxvCA=",
+ "dev": true
+ },
+ "callsites": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
+ "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
+ "dev": true
+ },
+ "camel-case": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz",
+ "integrity": "sha1-yjw2iKTpzzpM2nd9xNy8cTJJz3M=",
+ "dev": true,
+ "requires": {
+ "no-case": "^2.2.0",
+ "upper-case": "^1.1.1"
+ }
+ },
+ "camelcase": {
+ "version": "5.3.1",
+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
+ "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==",
+ "dev": true
+ },
+ "caniuse-lite": {
+ "version": "1.0.30001053",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001053.tgz",
+ "integrity": "sha512-HtV4wwIZl6GA4Oznse8aR274XUOYGZnQLcf/P8vHgmlfqSNelwD+id8CyHOceqLqt9yfKmo7DUZTh1EuS9pukg==",
+ "dev": true
+ },
+ "capture-exit": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz",
+ "integrity": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==",
+ "dev": true,
+ "requires": {
+ "rsvp": "^4.8.4"
+ }
+ },
+ "caseless": {
+ "version": "0.11.0",
+ "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz",
+ "integrity": "sha1-cVuW6phBWTzDMGeSP17GDr2k99c="
+ },
+ "chai-nightwatch": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/chai-nightwatch/-/chai-nightwatch-0.1.1.tgz",
+ "integrity": "sha1-HKVt52jTwIaP5/wvTTLC/olOa+k=",
+ "dev": true,
+ "requires": {
+ "assertion-error": "1.0.0",
+ "deep-eql": "0.1.3"
+ }
+ },
+ "chalk": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+ "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+ "requires": {
+ "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"
+ }
+ },
+ "chardet": {
+ "version": "0.7.0",
+ "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz",
+ "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==",
+ "dev": true
+ },
+ "check-more-types": {
+ "version": "2.24.0",
+ "resolved": "https://registry.npmjs.org/check-more-types/-/check-more-types-2.24.0.tgz",
+ "integrity": "sha1-FCD/sQ/URNz8ebQ4kbv//TKoRgA=",
+ "dev": true
+ },
+ "cheerio": {
+ "version": "1.0.0-rc.3",
+ "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.3.tgz",
+ "integrity": "sha512-0td5ijfUPuubwLUu0OBoe98gZj8C/AA+RW3v67GPlGOrvxWjZmBXiBCRU+I8VEiNyJzjth40POfHiz2RB3gImA==",
+ "dev": true,
+ "requires": {
+ "css-select": "~1.2.0",
+ "dom-serializer": "~0.1.1",
+ "entities": "~1.1.1",
+ "htmlparser2": "^3.9.1",
+ "lodash": "^4.15.0",
+ "parse5": "^3.0.1"
+ },
+ "dependencies": {
+ "dom-serializer": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.1.tgz",
+ "integrity": "sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA==",
+ "dev": true,
+ "requires": {
+ "domelementtype": "^1.3.0",
+ "entities": "^1.1.1"
+ }
+ },
+ "entities": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz",
+ "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==",
+ "dev": true
+ },
+ "parse5": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/parse5/-/parse5-3.0.3.tgz",
+ "integrity": "sha512-rgO9Zg5LLLkfJF9E6CCmXlSE4UVceloys8JrFqCcHloC3usd/kJCyPDwH2SOlzix2j3xaP9sUX3e8+kvkuleAA==",
+ "dev": true,
+ "requires": {
+ "@types/node": "*"
+ }
+ }
+ }
+ },
+ "chokidar": {
+ "version": "2.1.8",
+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz",
+ "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==",
+ "dev": true,
+ "requires": {
+ "anymatch": "^2.0.0",
+ "async-each": "^1.0.1",
+ "braces": "^2.3.2",
+ "fsevents": "^1.2.7",
+ "glob-parent": "^3.1.0",
+ "inherits": "^2.0.3",
+ "is-binary-path": "^1.0.0",
+ "is-glob": "^4.0.0",
+ "normalize-path": "^3.0.0",
+ "path-is-absolute": "^1.0.0",
+ "readdirp": "^2.2.1",
+ "upath": "^1.1.1"
+ }
+ },
+ "chownr": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz",
+ "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==",
+ "dev": true
+ },
+ "chrome-trace-event": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz",
+ "integrity": "sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==",
+ "dev": true,
+ "requires": {
+ "tslib": "^1.9.0"
+ }
+ },
+ "ci-info": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz",
+ "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==",
+ "dev": true
+ },
+ "cipher-base": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz",
+ "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==",
+ "dev": true,
+ "requires": {
+ "inherits": "^2.0.1",
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "class-utils": {
+ "version": "0.3.6",
+ "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz",
+ "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==",
+ "dev": true,
+ "requires": {
+ "arr-union": "^3.1.0",
+ "define-property": "^0.2.5",
+ "isobject": "^3.0.0",
+ "static-extend": "^0.1.1"
+ },
+ "dependencies": {
+ "define-property": {
+ "version": "0.2.5",
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
+ "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
+ "dev": true,
+ "requires": {
+ "is-descriptor": "^0.1.0"
+ }
+ }
+ }
+ },
+ "clean-css": {
+ "version": "4.2.3",
+ "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.3.tgz",
+ "integrity": "sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA==",
+ "dev": true,
+ "requires": {
+ "source-map": "~0.6.0"
+ },
+ "dependencies": {
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ }
+ }
+ },
+ "clean-stack": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz",
+ "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==",
+ "dev": true
+ },
+ "clean-webpack-plugin": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/clean-webpack-plugin/-/clean-webpack-plugin-3.0.0.tgz",
+ "integrity": "sha512-MciirUH5r+cYLGCOL5JX/ZLzOZbVr1ot3Fw+KcvbhUb6PM+yycqd9ZhIlcigQ5gl+XhppNmw3bEFuaaMNyLj3A==",
+ "dev": true,
+ "requires": {
+ "@types/webpack": "^4.4.31",
+ "del": "^4.1.1"
+ }
+ },
+ "cli-cursor": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz",
+ "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=",
+ "dev": true,
+ "requires": {
+ "restore-cursor": "^2.0.0"
+ }
+ },
+ "cli-spinners": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.2.0.tgz",
+ "integrity": "sha512-tgU3fKwzYjiLEQgPMD9Jt+JjHVL9kW93FiIMX/l7rivvOD4/LL0Mf7gda3+4U2KJBloybwgj5KEoQgGRioMiKQ==",
+ "dev": true
+ },
+ "cli-table3": {
+ "version": "0.5.1",
+ "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.5.1.tgz",
+ "integrity": "sha512-7Qg2Jrep1S/+Q3EceiZtQcDPWxhAvBw+ERf1162v4sikJrvojMHFqXt8QIVha8UlH9rgU0BeWPytZ9/TzYqlUw==",
+ "dev": true,
+ "requires": {
+ "colors": "^1.1.2",
+ "object-assign": "^4.1.0",
+ "string-width": "^2.1.1"
+ },
+ "dependencies": {
+ "ansi-regex": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz",
+ "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=",
+ "dev": true
+ },
+ "is-fullwidth-code-point": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
+ "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=",
+ "dev": true
+ },
+ "string-width": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz",
+ "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==",
+ "dev": true,
+ "requires": {
+ "is-fullwidth-code-point": "^2.0.0",
+ "strip-ansi": "^4.0.0"
+ }
+ },
+ "strip-ansi": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
+ "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=",
+ "dev": true,
+ "requires": {
+ "ansi-regex": "^3.0.0"
+ }
+ }
+ }
+ },
+ "cli-truncate": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-0.2.1.tgz",
+ "integrity": "sha1-nxXPuwcFAFNpIWxiasfQWrkN1XQ=",
+ "dev": true,
+ "requires": {
+ "slice-ansi": "0.0.4",
+ "string-width": "^1.0.1"
+ },
+ "dependencies": {
+ "slice-ansi": {
+ "version": "0.0.4",
+ "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-0.0.4.tgz",
+ "integrity": "sha1-7b+JA/ZvfOL46v1s7tZeJkyDGzU=",
+ "dev": true
+ }
+ }
+ },
+ "cli-width": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz",
+ "integrity": "sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=",
+ "dev": true
+ },
+ "cliui": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz",
+ "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=",
+ "dev": true,
+ "requires": {
+ "string-width": "^1.0.1",
+ "strip-ansi": "^3.0.1",
+ "wrap-ansi": "^2.0.0"
+ }
+ },
+ "clone": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz",
+ "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=",
+ "dev": true
+ },
+ "clone-response": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz",
+ "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=",
+ "dev": true,
+ "requires": {
+ "mimic-response": "^1.0.0"
+ },
+ "dependencies": {
+ "mimic-response": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz",
+ "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==",
+ "dev": true
+ }
+ }
+ },
+ "co": {
+ "version": "3.0.6",
+ "resolved": "https://registry.npmjs.org/co/-/co-3.0.6.tgz",
+ "integrity": "sha1-FEXyJsXrlWE45oyawwFn6n0ua9o=",
+ "dev": true
+ },
+ "code-point-at": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz",
+ "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=",
+ "dev": true
+ },
+ "collect-v8-coverage": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.0.tgz",
+ "integrity": "sha512-VKIhJgvk8E1W28m5avZ2Gv2Ruv5YiF56ug2oclvaG9md69BuZImMG2sk9g7QNKLUbtYAKQjXjYxbYZVUlMMKmQ==",
+ "dev": true
+ },
+ "collection-visit": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz",
+ "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=",
+ "dev": true,
+ "requires": {
+ "map-visit": "^1.0.0",
+ "object-visit": "^1.0.0"
+ }
+ },
+ "color-convert": {
+ "version": "1.9.3",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
+ "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
+ "dev": true,
+ "requires": {
+ "color-name": "1.1.3"
+ }
+ },
+ "color-name": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
+ "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=",
+ "dev": true
+ },
+ "colorette": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.1.0.tgz",
+ "integrity": "sha512-6S062WDQUXi6hOfkO/sBPVwE5ASXY4G2+b4atvhJfSsuUUhIaUKlkjLe9692Ipyt5/a+IPF5aVTu3V5gvXq5cg==",
+ "dev": true
+ },
+ "colors": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz",
+ "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==",
+ "dev": true,
+ "optional": true
+ },
+ "combined-stream": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
+ "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
+ "requires": {
+ "delayed-stream": "~1.0.0"
+ }
+ },
+ "command-line-args": {
+ "version": "3.0.5",
+ "resolved": "https://registry.npmjs.org/command-line-args/-/command-line-args-3.0.5.tgz",
+ "integrity": "sha1-W9StReeYPlwTRJGOQCgO4mk8WsA=",
+ "dev": true,
+ "requires": {
+ "array-back": "^1.0.4",
+ "feature-detect-es6": "^1.3.1",
+ "find-replace": "^1.0.2",
+ "typical": "^2.6.0"
+ }
+ },
+ "command-line-usage": {
+ "version": "3.0.8",
+ "resolved": "https://registry.npmjs.org/command-line-usage/-/command-line-usage-3.0.8.tgz",
+ "integrity": "sha1-tqIJeMGzg0d/XBGlKUKLiAv+D00=",
+ "dev": true,
+ "requires": {
+ "ansi-escape-sequences": "^3.0.0",
+ "array-back": "^1.0.3",
+ "feature-detect-es6": "^1.3.1",
+ "table-layout": "^0.3.0",
+ "typical": "^2.6.0"
+ }
+ },
+ "commander": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-1.3.2.tgz",
+ "integrity": "sha1-io8w7GcKb91kr1LxkUuQfXnq1bU=",
+ "requires": {
+ "keypress": "0.1.x"
+ }
+ },
+ "common-tags": {
+ "version": "1.8.0",
+ "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.0.tgz",
+ "integrity": "sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw==",
+ "dev": true
+ },
+ "commondir": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz",
+ "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=",
+ "dev": true
+ },
+ "component-bind": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/component-bind/-/component-bind-1.0.0.tgz",
+ "integrity": "sha1-AMYIq33Nk4l8AAllGx06jh5zu9E=",
+ "dev": true
+ },
+ "component-emitter": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz",
+ "integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=",
+ "dev": true
+ },
+ "component-inherit": {
+ "version": "0.0.3",
+ "resolved": "https://registry.npmjs.org/component-inherit/-/component-inherit-0.0.3.tgz",
+ "integrity": "sha1-ZF/ErfWLcrZJ1crmUTVhnbJv8UM=",
+ "dev": true
+ },
+ "concat-map": {
+ "version": "0.0.1",
+ "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
+ "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s="
+ },
+ "concat-stream": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.5.0.tgz",
+ "integrity": "sha1-U/fUPFHF5D+ByP3QMyHGMb5o1hE=",
+ "requires": {
+ "inherits": "~2.0.1",
+ "readable-stream": "~2.0.0",
+ "typedarray": "~0.0.5"
+ },
+ "dependencies": {
+ "isarray": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
+ "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE="
+ },
+ "readable-stream": {
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz",
+ "integrity": "sha1-j5A0HmilPMySh4jaz80Rs265t44=",
+ "requires": {
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.1",
+ "isarray": "~1.0.0",
+ "process-nextick-args": "~1.0.6",
+ "string_decoder": "~0.10.x",
+ "util-deprecate": "~1.0.1"
+ }
+ }
+ }
+ },
+ "config-chain": {
+ "version": "1.1.12",
+ "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.12.tgz",
+ "integrity": "sha512-a1eOIcu8+7lUInge4Rpf/n4Krkf3Dd9lqhljRzII1/Zno/kRtUWnznPO3jOKBmTEktkt3fkxisUcivoj0ebzoA==",
+ "dev": true,
+ "requires": {
+ "ini": "^1.3.4",
+ "proto-list": "~1.2.1"
+ }
+ },
+ "connect": {
+ "version": "2.12.0",
+ "resolved": "https://registry.npmjs.org/connect/-/connect-2.12.0.tgz",
+ "integrity": "sha1-Mdj6DcrN8ZCNgivSkjvootKn7Zo=",
+ "requires": {
+ "batch": "0.5.0",
+ "buffer-crc32": "0.2.1",
+ "bytes": "0.2.1",
+ "cookie": "0.1.0",
+ "cookie-signature": "1.0.1",
+ "debug": ">= 0.7.3 < 1",
+ "fresh": "0.2.0",
+ "methods": "0.1.0",
+ "multiparty": "2.2.0",
+ "negotiator": "0.3.0",
+ "pause": "0.0.1",
+ "qs": "0.6.6",
+ "raw-body": "1.1.2",
+ "send": "0.1.4",
+ "uid2": "0.0.3"
+ }
+ },
+ "connect-history-api-fallback": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz",
+ "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==",
+ "dev": true
+ },
+ "console-browserify": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz",
+ "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==",
+ "dev": true
+ },
+ "constants-browserify": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz",
+ "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=",
+ "dev": true
+ },
+ "contains-path": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/contains-path/-/contains-path-0.1.0.tgz",
+ "integrity": "sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo=",
+ "dev": true
+ },
+ "convert-source-map": {
+ "version": "1.7.0",
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz",
+ "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==",
+ "dev": true,
+ "requires": {
+ "safe-buffer": "~5.1.1"
+ }
+ },
+ "cookie": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.1.0.tgz",
+ "integrity": "sha1-kOtGndzpBchm3mh+/EMTHYgB+dA="
+ },
+ "cookie-signature": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.1.tgz",
+ "integrity": "sha1-ROByFIrwHm6OJK+/EmkNaK5pjss="
+ },
+ "cookies-js": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/cookies-js/-/cookies-js-1.2.3.tgz",
+ "integrity": "sha1-AzFQSefFK+4/cxhqaRZ+qw3bLTE="
+ },
+ "copy-concurrently": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz",
+ "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==",
+ "dev": true,
+ "requires": {
+ "aproba": "^1.1.1",
+ "fs-write-stream-atomic": "^1.0.8",
+ "iferr": "^0.1.5",
+ "mkdirp": "^0.5.1",
+ "rimraf": "^2.5.4",
+ "run-queue": "^1.0.0"
+ },
+ "dependencies": {
+ "mkdirp": {
+ "version": "0.5.1",
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
+ "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=",
+ "dev": true,
+ "requires": {
+ "minimist": "0.0.8"
+ }
+ }
+ }
+ },
+ "copy-descriptor": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz",
+ "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=",
+ "dev": true
+ },
+ "copy-webpack-plugin": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-5.1.1.tgz",
+ "integrity": "sha512-P15M5ZC8dyCjQHWwd4Ia/dm0SgVvZJMYeykVIVYXbGyqO4dWB5oyPHp9i7wjwo5LhtlhKbiBCdS2NvM07Wlybg==",
+ "dev": true,
+ "requires": {
+ "cacache": "^12.0.3",
+ "find-cache-dir": "^2.1.0",
+ "glob-parent": "^3.1.0",
+ "globby": "^7.1.1",
+ "is-glob": "^4.0.1",
+ "loader-utils": "^1.2.3",
+ "minimatch": "^3.0.4",
+ "normalize-path": "^3.0.0",
+ "p-limit": "^2.2.1",
+ "schema-utils": "^1.0.0",
+ "serialize-javascript": "^2.1.2",
+ "webpack-log": "^2.0.0"
+ },
+ "dependencies": {
+ "globby": {
+ "version": "7.1.1",
+ "resolved": "https://registry.npmjs.org/globby/-/globby-7.1.1.tgz",
+ "integrity": "sha1-+yzP+UAfhgCUXfral0QMypcrhoA=",
+ "dev": true,
+ "requires": {
+ "array-union": "^1.0.1",
+ "dir-glob": "^2.0.0",
+ "glob": "^7.1.2",
+ "ignore": "^3.3.5",
+ "pify": "^3.0.0",
+ "slash": "^1.0.0"
+ }
+ },
+ "pify": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz",
+ "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=",
+ "dev": true
+ },
+ "slash": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz",
+ "integrity": "sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=",
+ "dev": true
+ }
+ }
+ },
+ "core-js": {
+ "version": "2.6.11",
+ "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.11.tgz",
+ "integrity": "sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg==",
+ "dev": true
+ },
+ "core-js-compat": {
+ "version": "3.6.5",
+ "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.6.5.tgz",
+ "integrity": "sha512-7ItTKOhOZbznhXAQ2g/slGg1PJV5zDO/WdkTwi7UEOJmkvsE32PWvx6mKtDjiMpjnR2CNf6BAD6sSxIlv7ptng==",
+ "dev": true,
+ "requires": {
+ "browserslist": "^4.8.5",
+ "semver": "7.0.0"
+ },
+ "dependencies": {
+ "semver": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz",
+ "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==",
+ "dev": true
+ }
+ }
+ },
+ "core-util-is": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
+ "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac="
+ },
+ "cosmiconfig": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz",
+ "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==",
+ "dev": true,
+ "requires": {
+ "@types/parse-json": "^4.0.0",
+ "import-fresh": "^3.1.0",
+ "parse-json": "^5.0.0",
+ "path-type": "^4.0.0",
+ "yaml": "^1.7.2"
+ },
+ "dependencies": {
+ "parse-json": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.0.0.tgz",
+ "integrity": "sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw==",
+ "dev": true,
+ "requires": {
+ "@babel/code-frame": "^7.0.0",
+ "error-ex": "^1.3.1",
+ "json-parse-better-errors": "^1.0.1",
+ "lines-and-columns": "^1.1.6"
+ }
+ },
+ "path-type": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
+ "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
+ "dev": true
+ }
+ }
+ },
+ "countup.js": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/countup.js/-/countup.js-2.0.4.tgz",
+ "integrity": "sha512-fb691q1Zo0UqVCsBJU1Q38hGkTHEz3GibaugY5mi67ATYdPQymMmeq9XM0HIT4ow0hLSvUNh6xEEwauLxJ85Aw=="
+ },
+ "create-ecdh": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz",
+ "integrity": "sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw==",
+ "dev": true,
+ "requires": {
+ "bn.js": "^4.1.0",
+ "elliptic": "^6.0.0"
+ },
+ "dependencies": {
+ "bn.js": {
+ "version": "4.11.8",
+ "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz",
+ "integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==",
+ "dev": true
+ }
+ }
+ },
+ "create-hash": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz",
+ "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==",
+ "dev": true,
+ "requires": {
+ "cipher-base": "^1.0.1",
+ "inherits": "^2.0.1",
+ "md5.js": "^1.3.4",
+ "ripemd160": "^2.0.1",
+ "sha.js": "^2.4.0"
+ }
+ },
+ "create-hmac": {
+ "version": "1.1.7",
+ "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz",
+ "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==",
+ "dev": true,
+ "requires": {
+ "cipher-base": "^1.0.3",
+ "create-hash": "^1.1.0",
+ "inherits": "^2.0.1",
+ "ripemd160": "^2.0.0",
+ "safe-buffer": "^5.0.1",
+ "sha.js": "^2.4.8"
+ }
+ },
+ "crisper": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/crisper/-/crisper-2.1.1.tgz",
+ "integrity": "sha512-yxfj9nTbFunDASztAxVF8hCPwaZBvTjayNzG3YL/VVQfQaKBXX2+TM3p1xB1Pxd8RYeDQJkJIQRwM3FQSIa+pw==",
+ "dev": true,
+ "requires": {
+ "command-line-args": "^3.0.1",
+ "command-line-usage": "^3.0.8",
+ "dom5": "^1.0.1"
+ }
+ },
+ "cross-spawn": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.1.tgz",
+ "integrity": "sha512-u7v4o84SwFpD32Z8IIcPZ6z1/ie24O6RU3RbtL5Y316l3KuHVPx9ItBgWQ6VlfAFnRnTtMUrsQ9MUUTuEZjogg==",
+ "dev": true,
+ "requires": {
+ "path-key": "^3.1.0",
+ "shebang-command": "^2.0.0",
+ "which": "^2.0.1"
+ },
+ "dependencies": {
+ "which": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
+ "dev": true,
+ "requires": {
+ "isexe": "^2.0.0"
+ }
+ }
+ }
+ },
+ "cryptiles": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz",
+ "integrity": "sha1-O9/s3GCBR8HGcgL6KR59ylnqo7g=",
+ "requires": {
+ "boom": "2.x.x"
+ }
+ },
+ "crypto-browserify": {
+ "version": "3.12.0",
+ "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz",
+ "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==",
+ "dev": true,
+ "requires": {
+ "browserify-cipher": "^1.0.0",
+ "browserify-sign": "^4.0.0",
+ "create-ecdh": "^4.0.0",
+ "create-hash": "^1.1.0",
+ "create-hmac": "^1.1.0",
+ "diffie-hellman": "^5.0.0",
+ "inherits": "^2.0.1",
+ "pbkdf2": "^3.0.3",
+ "public-encrypt": "^4.0.0",
+ "randombytes": "^2.0.0",
+ "randomfill": "^1.0.3"
+ }
+ },
+ "crypto-js": {
+ "version": "3.1.9-1",
+ "resolved": "https://registry.npmjs.org/crypto-js/-/crypto-js-3.1.9-1.tgz",
+ "integrity": "sha1-/aGedh/Ad+Af+/3G6f38WeiAbNg="
+ },
+ "css-loader": {
+ "version": "3.4.2",
+ "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-3.4.2.tgz",
+ "integrity": "sha512-jYq4zdZT0oS0Iykt+fqnzVLRIeiPWhka+7BqPn+oSIpWJAHak5tmB/WZrJ2a21JhCeFyNnnlroSl8c+MtVndzA==",
+ "dev": true,
+ "requires": {
+ "camelcase": "^5.3.1",
+ "cssesc": "^3.0.0",
+ "icss-utils": "^4.1.1",
+ "loader-utils": "^1.2.3",
+ "normalize-path": "^3.0.0",
+ "postcss": "^7.0.23",
+ "postcss-modules-extract-imports": "^2.0.0",
+ "postcss-modules-local-by-default": "^3.0.2",
+ "postcss-modules-scope": "^2.1.1",
+ "postcss-modules-values": "^3.0.0",
+ "postcss-value-parser": "^4.0.2",
+ "schema-utils": "^2.6.0"
+ },
+ "dependencies": {
+ "schema-utils": {
+ "version": "2.6.4",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.6.4.tgz",
+ "integrity": "sha512-VNjcaUxVnEeun6B2fiiUDjXXBtD4ZSH7pdbfIu1pOFwgptDPLMo/z9jr4sUfsjFVPqDCEin/F7IYlq7/E6yDbQ==",
+ "dev": true,
+ "requires": {
+ "ajv": "^6.10.2",
+ "ajv-keywords": "^3.4.1"
+ }
+ }
+ }
+ },
+ "css-select": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz",
+ "integrity": "sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=",
+ "dev": true,
+ "requires": {
+ "boolbase": "~1.0.0",
+ "css-what": "2.1",
+ "domutils": "1.5.1",
+ "nth-check": "~1.0.1"
+ }
+ },
+ "css-what": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz",
+ "integrity": "sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==",
+ "dev": true
+ },
+ "cssesc": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
+ "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
+ "dev": true
+ },
+ "csso": {
+ "version": "1.3.12",
+ "resolved": "https://registry.npmjs.org/csso/-/csso-1.3.12.tgz",
+ "integrity": "sha1-/GKGlKLTiTiqrEmWdTIY/TEc254=",
+ "dev": true,
+ "optional": true
+ },
+ "cssom": {
+ "version": "0.4.4",
+ "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz",
+ "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==",
+ "dev": true
+ },
+ "cssstyle": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.2.0.tgz",
+ "integrity": "sha512-sEb3XFPx3jNnCAMtqrXPDeSgQr+jojtCeNf8cvMNMh1cG970+lljssvQDzPq6lmmJu2Vhqood/gtEomBiHOGnA==",
+ "dev": true,
+ "requires": {
+ "cssom": "~0.3.6"
+ },
+ "dependencies": {
+ "cssom": {
+ "version": "0.3.8",
+ "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz",
+ "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==",
+ "dev": true
+ }
+ }
+ },
+ "cyclist": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz",
+ "integrity": "sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=",
+ "dev": true
+ },
+ "cypress": {
+ "version": "4.12.1",
+ "resolved": "https://registry.npmjs.org/cypress/-/cypress-4.12.1.tgz",
+ "integrity": "sha512-9SGIPEmqU8vuRA6xst2CMTYd9sCFCxKSzrHt0wr+w2iAQMCIIsXsQ5Gplns1sT6LDbZcmLv6uehabAOl3fhc9Q==",
+ "dev": true,
+ "requires": {
+ "@cypress/listr-verbose-renderer": "^0.4.1",
+ "@cypress/request": "^2.88.5",
+ "@cypress/xvfb": "^1.2.4",
+ "@types/sinonjs__fake-timers": "^6.0.1",
+ "@types/sizzle": "^2.3.2",
+ "arch": "^2.1.2",
+ "bluebird": "^3.7.2",
+ "cachedir": "^2.3.0",
+ "chalk": "^2.4.2",
+ "check-more-types": "^2.24.0",
+ "cli-table3": "~0.5.1",
+ "commander": "^4.1.1",
+ "common-tags": "^1.8.0",
+ "debug": "^4.1.1",
+ "eventemitter2": "^6.4.2",
+ "execa": "^1.0.0",
+ "executable": "^4.1.1",
+ "extract-zip": "^1.7.0",
+ "fs-extra": "^8.1.0",
+ "getos": "^3.2.1",
+ "is-ci": "^2.0.0",
+ "is-installed-globally": "^0.3.2",
+ "lazy-ass": "^1.6.0",
+ "listr": "^0.14.3",
+ "lodash": "^4.17.19",
+ "log-symbols": "^3.0.0",
+ "minimist": "^1.2.5",
+ "moment": "^2.27.0",
+ "ospath": "^1.2.2",
+ "pretty-bytes": "^5.3.0",
+ "ramda": "~0.26.1",
+ "request-progress": "^3.0.0",
+ "supports-color": "^7.1.0",
+ "tmp": "~0.1.0",
+ "untildify": "^4.0.0",
+ "url": "^0.11.0",
+ "yauzl": "^2.10.0"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
+ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^1.9.0"
+ }
+ },
+ "buffer-crc32": {
+ "version": "0.2.13",
+ "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz",
+ "integrity": "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=",
+ "dev": true
+ },
+ "chalk": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
+ "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^3.2.1",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^5.3.0"
+ },
+ "dependencies": {
+ "supports-color": {
+ "version": "5.5.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
+ "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^3.0.0"
+ }
+ }
+ }
+ },
+ "commander": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz",
+ "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==",
+ "dev": true
+ },
+ "concat-stream": {
+ "version": "1.6.2",
+ "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz",
+ "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==",
+ "dev": true,
+ "requires": {
+ "buffer-from": "^1.0.0",
+ "inherits": "^2.0.3",
+ "readable-stream": "^2.2.2",
+ "typedarray": "^0.0.6"
+ }
+ },
+ "debug": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
+ "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
+ "dev": true,
+ "requires": {
+ "ms": "^2.1.1"
+ }
+ },
+ "extract-zip": {
+ "version": "1.7.0",
+ "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-1.7.0.tgz",
+ "integrity": "sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==",
+ "dev": true,
+ "requires": {
+ "concat-stream": "^1.6.2",
+ "debug": "^2.6.9",
+ "mkdirp": "^0.5.4",
+ "yauzl": "^2.10.0"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ }
+ }
+ },
+ "fd-slicer": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz",
+ "integrity": "sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=",
+ "dev": true,
+ "requires": {
+ "pend": "~1.2.0"
+ }
+ },
+ "fs-extra": {
+ "version": "8.1.0",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz",
+ "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==",
+ "dev": true,
+ "requires": {
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^4.0.0",
+ "universalify": "^0.1.0"
+ }
+ },
+ "isarray": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
+ "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
+ "dev": true
+ },
+ "jsonfile": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz",
+ "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=",
+ "dev": true,
+ "requires": {
+ "graceful-fs": "^4.1.6"
+ }
+ },
+ "log-symbols": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-3.0.0.tgz",
+ "integrity": "sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ==",
+ "dev": true,
+ "requires": {
+ "chalk": "^2.4.2"
+ }
+ },
+ "minimist": {
+ "version": "1.2.5",
+ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz",
+ "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==",
+ "dev": true
+ },
+ "mkdirp": {
+ "version": "0.5.5",
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz",
+ "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==",
+ "dev": true,
+ "requires": {
+ "minimist": "^1.2.5"
+ }
+ },
+ "moment": {
+ "version": "2.27.0",
+ "resolved": "https://registry.npmjs.org/moment/-/moment-2.27.0.tgz",
+ "integrity": "sha512-al0MUK7cpIcglMv3YF13qSgdAIqxHTO7brRtaz3DlSULbqfazqkc5kEjNrLDOM7fsjshoFIihnU8snrP7zUvhQ==",
+ "dev": true
+ },
+ "process-nextick-args": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
+ "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
+ "dev": true
+ },
+ "readable-stream": {
+ "version": "2.3.7",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
+ "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
+ "dev": true,
+ "requires": {
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.3",
+ "isarray": "~1.0.0",
+ "process-nextick-args": "~2.0.0",
+ "safe-buffer": "~5.1.1",
+ "string_decoder": "~1.1.1",
+ "util-deprecate": "~1.0.1"
+ }
+ },
+ "request-progress": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/request-progress/-/request-progress-3.0.0.tgz",
+ "integrity": "sha1-TKdUCBx/7GP1BeT6qCWqBs1mnb4=",
+ "dev": true,
+ "requires": {
+ "throttleit": "^1.0.0"
+ }
+ },
+ "string_decoder": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
+ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
+ "dev": true,
+ "requires": {
+ "safe-buffer": "~5.1.0"
+ }
+ },
+ "supports-color": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
+ "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ },
+ "dependencies": {
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ }
+ }
+ },
+ "tmp": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.1.0.tgz",
+ "integrity": "sha512-J7Z2K08jbGcdA1kkQpJSqLF6T0tdQqpR2pnSUXsIchbPdTI9v3e85cLW0d6WDhwuAleOV71j2xWs8qMPfK7nKw==",
+ "dev": true,
+ "requires": {
+ "rimraf": "^2.6.3"
+ }
+ },
+ "yauzl": {
+ "version": "2.10.0",
+ "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz",
+ "integrity": "sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=",
+ "dev": true,
+ "requires": {
+ "buffer-crc32": "~0.2.3",
+ "fd-slicer": "~1.1.0"
+ }
+ }
+ }
+ },
+ "cypress-wait-until": {
+ "version": "1.7.0",
+ "resolved": "https://registry.npmjs.org/cypress-wait-until/-/cypress-wait-until-1.7.0.tgz",
+ "integrity": "sha512-Mk5zEyd+NHg2ar13ZjguIdrIHSa1g9RSASQ1/Yv4TMhMzDbE3uF+0UlYg8P8cYob1CvMURmXMdLfMLZoaSPDNQ==",
+ "dev": true
+ },
+ "dashdash": {
+ "version": "1.14.1",
+ "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz",
+ "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=",
+ "requires": {
+ "assert-plus": "^1.0.0"
+ },
+ "dependencies": {
+ "assert-plus": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
+ "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU="
+ }
+ }
+ },
+ "data-uri-to-buffer": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-1.2.0.tgz",
+ "integrity": "sha512-vKQ9DTQPN1FLYiiEEOQ6IBGFqvjCa5rSK3cWMy/Nespm5d/x3dGFT9UBZnkLxCwua/IXBi2TYnwTEpsOvhC4UQ==",
+ "dev": true
+ },
+ "data-urls": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-1.1.0.tgz",
+ "integrity": "sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ==",
+ "dev": true,
+ "requires": {
+ "abab": "^2.0.0",
+ "whatwg-mimetype": "^2.2.0",
+ "whatwg-url": "^7.0.0"
+ }
+ },
+ "date-fns": {
+ "version": "1.30.1",
+ "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-1.30.1.tgz",
+ "integrity": "sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw==",
+ "dev": true
+ },
+ "debug": {
+ "version": "0.8.1",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-0.8.1.tgz",
+ "integrity": "sha1-IP9NJvXkIstoobrLu2EDmtjBwTA="
+ },
+ "decamelize": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
+ "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=",
+ "dev": true
+ },
+ "decode-uri-component": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz",
+ "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=",
+ "dev": true
+ },
+ "decompress-response": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-5.0.0.tgz",
+ "integrity": "sha512-TLZWWybuxWgoW7Lykv+gq9xvzOsUjQ9tF09Tj6NSTYGMTCHNXzrPnD6Hi+TgZq19PyTAGH4Ll/NIM/eTGglnMw==",
+ "dev": true,
+ "requires": {
+ "mimic-response": "^2.0.0"
+ }
+ },
+ "deep-eql": {
+ "version": "0.1.3",
+ "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-0.1.3.tgz",
+ "integrity": "sha1-71WKyrjeJSBs1xOQbXTlaTDrafI=",
+ "dev": true,
+ "requires": {
+ "type-detect": "0.1.1"
+ }
+ },
+ "deep-extend": {
+ "version": "0.4.2",
+ "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.4.2.tgz",
+ "integrity": "sha1-SLaZwn4zS/ifEIkr5DL25MfTSn8=",
+ "dev": true
+ },
+ "deep-is": {
+ "version": "0.1.3",
+ "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz",
+ "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=",
+ "dev": true
+ },
+ "deepmerge": {
+ "version": "4.2.2",
+ "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz",
+ "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==",
+ "dev": true
+ },
+ "defaults": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz",
+ "integrity": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=",
+ "dev": true,
+ "requires": {
+ "clone": "^1.0.2"
+ }
+ },
+ "defer-to-connect": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.0.tgz",
+ "integrity": "sha512-bYL2d05vOSf1JEZNx5vSAtPuBMkX8K9EUutg7zlKvTqKXHt7RhWJFbmd7qakVuf13i+IkGmp6FwSsONOf6VYIg==",
+ "dev": true
+ },
+ "define-properties": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz",
+ "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==",
+ "dev": true,
+ "requires": {
+ "object-keys": "^1.0.12"
+ }
+ },
+ "define-property": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz",
+ "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==",
+ "dev": true,
+ "requires": {
+ "is-descriptor": "^1.0.2",
+ "isobject": "^3.0.1"
+ },
+ "dependencies": {
+ "is-accessor-descriptor": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
+ "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
+ "dev": true,
+ "requires": {
+ "kind-of": "^6.0.0"
+ }
+ },
+ "is-data-descriptor": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
+ "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
+ "dev": true,
+ "requires": {
+ "kind-of": "^6.0.0"
+ }
+ },
+ "is-descriptor": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
+ "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
+ "dev": true,
+ "requires": {
+ "is-accessor-descriptor": "^1.0.0",
+ "is-data-descriptor": "^1.0.0",
+ "kind-of": "^6.0.2"
+ }
+ }
+ }
+ },
+ "degenerator": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/degenerator/-/degenerator-1.0.4.tgz",
+ "integrity": "sha1-/PSQo37OJmRk2cxDGrmMWBnO0JU=",
+ "dev": true,
+ "requires": {
+ "ast-types": "0.x.x",
+ "escodegen": "1.x.x",
+ "esprima": "3.x.x"
+ },
+ "dependencies": {
+ "esprima": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz",
+ "integrity": "sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM=",
+ "dev": true
+ }
+ }
+ },
+ "del": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz",
+ "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==",
+ "dev": true,
+ "requires": {
+ "@types/glob": "^7.1.1",
+ "globby": "^6.1.0",
+ "is-path-cwd": "^2.0.0",
+ "is-path-in-cwd": "^2.0.0",
+ "p-map": "^2.0.0",
+ "pify": "^4.0.1",
+ "rimraf": "^2.6.3"
+ }
+ },
+ "delayed-stream": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
+ "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk="
+ },
+ "depd": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz",
+ "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=",
+ "dev": true
+ },
+ "des.js": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz",
+ "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==",
+ "dev": true,
+ "requires": {
+ "inherits": "^2.0.1",
+ "minimalistic-assert": "^1.0.0"
+ }
+ },
+ "destroy": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz",
+ "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=",
+ "dev": true
+ },
+ "detect-file": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz",
+ "integrity": "sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc=",
+ "dev": true
+ },
+ "detect-newline": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz",
+ "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==",
+ "dev": true
+ },
+ "dev-ip": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/dev-ip/-/dev-ip-1.0.1.tgz",
+ "integrity": "sha1-p2o+0YVb56ASu4rBbLgPPADcKPA=",
+ "dev": true
+ },
+ "diff": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/diff/-/diff-1.4.0.tgz",
+ "integrity": "sha1-fyjS657nsVqX79ic5j3P2qPMur8=",
+ "dev": true
+ },
+ "diff-sequences": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-25.1.0.tgz",
+ "integrity": "sha512-nFIfVk5B/NStCsJ+zaPO4vYuLjlzQ6uFvPxzYyHlejNZ/UGa7G/n7peOXVrVNvRuyfstt+mZQYGpjxg9Z6N8Kw==",
+ "dev": true
+ },
+ "diffie-hellman": {
+ "version": "5.0.3",
+ "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz",
+ "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==",
+ "dev": true,
+ "requires": {
+ "bn.js": "^4.1.0",
+ "miller-rabin": "^4.0.0",
+ "randombytes": "^2.0.0"
+ },
+ "dependencies": {
+ "bn.js": {
+ "version": "4.11.8",
+ "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz",
+ "integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==",
+ "dev": true
+ }
+ }
+ },
+ "dir-glob": {
+ "version": "2.2.2",
+ "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-2.2.2.tgz",
+ "integrity": "sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==",
+ "dev": true,
+ "requires": {
+ "path-type": "^3.0.0"
+ },
+ "dependencies": {
+ "path-type": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz",
+ "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==",
+ "dev": true,
+ "requires": {
+ "pify": "^3.0.0"
+ }
+ },
+ "pify": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz",
+ "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=",
+ "dev": true
+ }
+ }
+ },
+ "doctrine": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
+ "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==",
+ "dev": true,
+ "requires": {
+ "esutils": "^2.0.2"
+ }
+ },
+ "dom-converter": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz",
+ "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==",
+ "dev": true,
+ "requires": {
+ "utila": "~0.4"
+ }
+ },
+ "dom-serializer": {
+ "version": "0.2.2",
+ "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz",
+ "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==",
+ "dev": true,
+ "requires": {
+ "domelementtype": "^2.0.1",
+ "entities": "^2.0.0"
+ },
+ "dependencies": {
+ "domelementtype": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.0.1.tgz",
+ "integrity": "sha512-5HOHUDsYZWV8FGWN0Njbr/Rn7f/eWSQi1v7+HsUVwXgn8nWWlL64zKDkS0n8ZmQ3mlWOMuXOnR+7Nx/5tMO5AQ==",
+ "dev": true
+ }
+ }
+ },
+ "dom5": {
+ "version": "1.3.6",
+ "resolved": "https://registry.npmjs.org/dom5/-/dom5-1.3.6.tgz",
+ "integrity": "sha1-pwiKn8XzsI3J9u2kx6uuskGUXg0=",
+ "dev": true,
+ "requires": {
+ "@types/clone": "^0.1.29",
+ "@types/node": "^4.0.30",
+ "@types/parse5": "^0.0.31",
+ "clone": "^1.0.2",
+ "parse5": "^1.4.1"
+ },
+ "dependencies": {
+ "@types/node": {
+ "version": "4.9.4",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-4.9.4.tgz",
+ "integrity": "sha512-nKoiCZ87x6+fs26bNHjy07AQt6f46nFEitGH0P9JmWbY6tEyum6LLfLf7SIsKFh4DnBWsyUM2gYhaQAt+aA0Sw==",
+ "dev": true
+ }
+ }
+ },
+ "domain-browser": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz",
+ "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==",
+ "dev": true
+ },
+ "domelementtype": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz",
+ "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==",
+ "dev": true
+ },
+ "domexception": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/domexception/-/domexception-1.0.1.tgz",
+ "integrity": "sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug==",
+ "dev": true,
+ "requires": {
+ "webidl-conversions": "^4.0.2"
+ }
+ },
+ "domhandler": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz",
+ "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==",
+ "dev": true,
+ "requires": {
+ "domelementtype": "1"
+ }
+ },
+ "domutils": {
+ "version": "1.5.1",
+ "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz",
+ "integrity": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=",
+ "dev": true,
+ "requires": {
+ "dom-serializer": "0",
+ "domelementtype": "1"
+ }
+ },
+ "duplexer3": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz",
+ "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=",
+ "dev": true
+ },
+ "duplexify": {
+ "version": "3.7.1",
+ "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz",
+ "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==",
+ "dev": true,
+ "requires": {
+ "end-of-stream": "^1.0.0",
+ "inherits": "^2.0.1",
+ "readable-stream": "^2.0.0",
+ "stream-shift": "^1.0.0"
+ },
+ "dependencies": {
+ "isarray": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
+ "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
+ "dev": true
+ },
+ "process-nextick-args": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
+ "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
+ "dev": true
+ },
+ "readable-stream": {
+ "version": "2.3.7",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
+ "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
+ "dev": true,
+ "requires": {
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.3",
+ "isarray": "~1.0.0",
+ "process-nextick-args": "~2.0.0",
+ "safe-buffer": "~5.1.1",
+ "string_decoder": "~1.1.1",
+ "util-deprecate": "~1.0.1"
+ }
+ },
+ "string_decoder": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
+ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
+ "dev": true,
+ "requires": {
+ "safe-buffer": "~5.1.0"
+ }
+ }
+ }
+ },
+ "easy-extender": {
+ "version": "2.3.4",
+ "resolved": "https://registry.npmjs.org/easy-extender/-/easy-extender-2.3.4.tgz",
+ "integrity": "sha512-8cAwm6md1YTiPpOvDULYJL4ZS6WfM5/cTeVVh4JsvyYZAoqlRVUpHL9Gr5Fy7HA6xcSZicUia3DeAgO3Us8E+Q==",
+ "dev": true,
+ "requires": {
+ "lodash": "^4.17.10"
+ }
+ },
+ "eazy-logger": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/eazy-logger/-/eazy-logger-3.0.2.tgz",
+ "integrity": "sha1-oyWqXlPROiIliJsqxBE7K5Y29Pw=",
+ "dev": true,
+ "requires": {
+ "tfunk": "^3.0.1"
+ }
+ },
+ "ecc-jsbn": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz",
+ "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=",
+ "requires": {
+ "jsbn": "~0.1.0",
+ "safer-buffer": "^2.1.0"
+ }
+ },
+ "editorconfig": {
+ "version": "0.13.3",
+ "resolved": "https://registry.npmjs.org/editorconfig/-/editorconfig-0.13.3.tgz",
+ "integrity": "sha512-WkjsUNVCu+ITKDj73QDvi0trvpdDWdkDyHybDGSXPfekLCqwmpD7CP7iPbvBgosNuLcI96XTDwNa75JyFl7tEQ==",
+ "dev": true,
+ "requires": {
+ "bluebird": "^3.0.5",
+ "commander": "^2.9.0",
+ "lru-cache": "^3.2.0",
+ "semver": "^5.1.0",
+ "sigmund": "^1.0.1"
+ },
+ "dependencies": {
+ "commander": {
+ "version": "2.20.3",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
+ "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
+ "dev": true
+ },
+ "lru-cache": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-3.2.0.tgz",
+ "integrity": "sha1-cXibO39Tmb7IVl3aOKow0qCX7+4=",
+ "dev": true,
+ "requires": {
+ "pseudomap": "^1.0.1"
+ }
+ }
+ }
+ },
+ "ee-first": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
+ "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=",
+ "dev": true
+ },
+ "ejs": {
+ "version": "2.2.4",
+ "resolved": "https://registry.npmjs.org/ejs/-/ejs-2.2.4.tgz",
+ "integrity": "sha1-8K9+NmwTFJ3XrjAQbAwOHK0RkDw="
+ },
+ "electron-to-chromium": {
+ "version": "1.3.430",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.430.tgz",
+ "integrity": "sha512-HMDYkANGhx6vfbqpOf/hc6hWEmiOipOHGDeRDeUb3HLD3XIWpvKQxFgWf0tgHcr3aNv6I/8VPecplqmQsXoZSw==",
+ "dev": true
+ },
+ "elegant-spinner": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/elegant-spinner/-/elegant-spinner-1.0.1.tgz",
+ "integrity": "sha1-2wQ1IcldfjA/2PNFvtwzSc+wcp4=",
+ "dev": true
+ },
+ "elliptic": {
+ "version": "6.5.2",
+ "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.2.tgz",
+ "integrity": "sha512-f4x70okzZbIQl/NSRLkI/+tteV/9WqL98zx+SQ69KbXxmVrmjwsNUPn/gYJJ0sHvEak24cZgHIPegRePAtA/xw==",
+ "dev": true,
+ "requires": {
+ "bn.js": "^4.4.0",
+ "brorand": "^1.0.1",
+ "hash.js": "^1.0.0",
+ "hmac-drbg": "^1.0.0",
+ "inherits": "^2.0.1",
+ "minimalistic-assert": "^1.0.0",
+ "minimalistic-crypto-utils": "^1.0.0"
+ },
+ "dependencies": {
+ "bn.js": {
+ "version": "4.11.8",
+ "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz",
+ "integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==",
+ "dev": true
+ }
+ }
+ },
+ "emoji-regex": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
+ "dev": true
+ },
+ "emojis-list": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz",
+ "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==",
+ "dev": true
+ },
+ "encodeurl": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
+ "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=",
+ "dev": true
+ },
+ "end-of-stream": {
+ "version": "1.4.4",
+ "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz",
+ "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==",
+ "dev": true,
+ "requires": {
+ "once": "^1.4.0"
+ }
+ },
+ "engine.io": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-3.2.1.tgz",
+ "integrity": "sha512-+VlKzHzMhaU+GsCIg4AoXF1UdDFjHHwMmMKqMJNDNLlUlejz58FCy4LBqB2YVJskHGYl06BatYWKP2TVdVXE5w==",
+ "dev": true,
+ "requires": {
+ "accepts": "~1.3.4",
+ "base64id": "1.0.0",
+ "cookie": "0.3.1",
+ "debug": "~3.1.0",
+ "engine.io-parser": "~2.1.0",
+ "ws": "~3.3.1"
+ },
+ "dependencies": {
+ "cookie": {
+ "version": "0.3.1",
+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz",
+ "integrity": "sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s=",
+ "dev": true
+ },
+ "debug": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz",
+ "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==",
+ "dev": true,
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "engine.io-parser": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-2.1.3.tgz",
+ "integrity": "sha512-6HXPre2O4Houl7c4g7Ic/XzPnHBvaEmN90vtRO9uLmwtRqQmTOw0QMevL1TOfL2Cpu1VzsaTmMotQgMdkzGkVA==",
+ "dev": true,
+ "requires": {
+ "after": "0.8.2",
+ "arraybuffer.slice": "~0.0.7",
+ "base64-arraybuffer": "0.1.5",
+ "blob": "0.0.5",
+ "has-binary2": "~1.0.2"
+ }
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ },
+ "ws": {
+ "version": "3.3.3",
+ "resolved": "https://registry.npmjs.org/ws/-/ws-3.3.3.tgz",
+ "integrity": "sha512-nnWLa/NwZSt4KQJu51MYlCcSQ5g7INpOrOMt4XV8j4dqTXdmlUmSHQ8/oLC069ckre0fRsgfvsKwbTdtKLCDkA==",
+ "dev": true,
+ "requires": {
+ "async-limiter": "~1.0.0",
+ "safe-buffer": "~5.1.0",
+ "ultron": "~1.1.0"
+ }
+ }
+ }
+ },
+ "engine.io-client": {
+ "version": "3.4.0",
+ "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.4.0.tgz",
+ "integrity": "sha512-a4J5QO2k99CM2a0b12IznnyQndoEvtA4UAldhGzKqnHf42I3Qs2W5SPnDvatZRcMaNZs4IevVicBPayxYt6FwA==",
+ "dev": true,
+ "requires": {
+ "component-emitter": "1.2.1",
+ "component-inherit": "0.0.3",
+ "debug": "~4.1.0",
+ "engine.io-parser": "~2.2.0",
+ "has-cors": "1.1.0",
+ "indexof": "0.0.1",
+ "parseqs": "0.0.5",
+ "parseuri": "0.0.5",
+ "ws": "~6.1.0",
+ "xmlhttprequest-ssl": "~1.5.4",
+ "yeast": "0.1.2"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
+ "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
+ "dev": true,
+ "requires": {
+ "ms": "^2.1.1"
+ }
+ }
+ }
+ },
+ "engine.io-parser": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-2.2.0.tgz",
+ "integrity": "sha512-6I3qD9iUxotsC5HEMuuGsKA0cXerGz+4uGcXQEkfBidgKf0amsjrrtwcbwK/nzpZBxclXlV7gGl9dgWvu4LF6w==",
+ "dev": true,
+ "requires": {
+ "after": "0.8.2",
+ "arraybuffer.slice": "~0.0.7",
+ "base64-arraybuffer": "0.1.5",
+ "blob": "0.0.5",
+ "has-binary2": "~1.0.2"
+ }
+ },
+ "enhanced-resolve": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.1.1.tgz",
+ "integrity": "sha512-98p2zE+rL7/g/DzMHMTF4zZlCgeVdJ7yr6xzEpJRYwFYrGi9ANdn5DnJURg6RpBkyk60XYDnWIv51VfIhfNGuA==",
+ "dev": true,
+ "requires": {
+ "graceful-fs": "^4.1.2",
+ "memory-fs": "^0.5.0",
+ "tapable": "^1.0.0"
+ },
+ "dependencies": {
+ "isarray": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
+ "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
+ "dev": true
+ },
+ "memory-fs": {
+ "version": "0.5.0",
+ "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz",
+ "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==",
+ "dev": true,
+ "requires": {
+ "errno": "^0.1.3",
+ "readable-stream": "^2.0.1"
+ }
+ },
+ "process-nextick-args": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
+ "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
+ "dev": true
+ },
+ "readable-stream": {
+ "version": "2.3.7",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
+ "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
+ "dev": true,
+ "requires": {
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.3",
+ "isarray": "~1.0.0",
+ "process-nextick-args": "~2.0.0",
+ "safe-buffer": "~5.1.1",
+ "string_decoder": "~1.1.1",
+ "util-deprecate": "~1.0.1"
+ }
+ },
+ "string_decoder": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
+ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
+ "dev": true,
+ "requires": {
+ "safe-buffer": "~5.1.0"
+ }
+ }
+ }
+ },
+ "entities": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/entities/-/entities-2.0.0.tgz",
+ "integrity": "sha512-D9f7V0JSRwIxlRI2mjMqufDrRDnx8p+eEOz7aUM9SuvF8gsBzra0/6tbjl1m8eQHrZlYj6PxqE00hZ1SAIKPLw==",
+ "dev": true
+ },
+ "eonasdan-bootstrap-datetimepicker": {
+ "version": "4.17.47",
+ "resolved": "https://registry.npmjs.org/eonasdan-bootstrap-datetimepicker/-/eonasdan-bootstrap-datetimepicker-4.17.47.tgz",
+ "integrity": "sha1-ekmXAEQGUnbnll79Fvgic1IZ5zU=",
+ "requires": {
+ "bootstrap": "^3.3",
+ "jquery": "^1.8.3 || ^2.0 || ^3.0",
+ "moment": "^2.10",
+ "moment-timezone": "^0.4.0"
+ }
+ },
+ "errno": {
+ "version": "0.1.7",
+ "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz",
+ "integrity": "sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==",
+ "dev": true,
+ "requires": {
+ "prr": "~1.0.1"
+ }
+ },
+ "error-ex": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
+ "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
+ "dev": true,
+ "requires": {
+ "is-arrayish": "^0.2.1"
+ }
+ },
+ "es-abstract": {
+ "version": "1.17.4",
+ "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.4.tgz",
+ "integrity": "sha512-Ae3um/gb8F0mui/jPL+QiqmglkUsaQf7FwBEHYIFkztkneosu9imhqHpBzQ3h1vit8t5iQ74t6PEVvphBZiuiQ==",
+ "dev": true,
+ "requires": {
+ "es-to-primitive": "^1.2.1",
+ "function-bind": "^1.1.1",
+ "has": "^1.0.3",
+ "has-symbols": "^1.0.1",
+ "is-callable": "^1.1.5",
+ "is-regex": "^1.0.5",
+ "object-inspect": "^1.7.0",
+ "object-keys": "^1.1.1",
+ "object.assign": "^4.1.0",
+ "string.prototype.trimleft": "^2.1.1",
+ "string.prototype.trimright": "^2.1.1"
+ }
+ },
+ "es-module-lexer": {
+ "version": "0.3.18",
+ "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.3.18.tgz",
+ "integrity": "sha512-xu/9M+womMLsLbr6SVRfVYvGfgUJjZcDtz9c2DdE4ip9s7OhpLpyJcyLofLnI6E1fbqv9LuYGWKBcRK6B6lBFA==",
+ "dev": true
+ },
+ "es-to-primitive": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
+ "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
+ "dev": true,
+ "requires": {
+ "is-callable": "^1.1.4",
+ "is-date-object": "^1.0.1",
+ "is-symbol": "^1.0.2"
+ }
+ },
+ "es6-promise": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-2.3.0.tgz",
+ "integrity": "sha1-lu258v2wGZWCKyY92KratnSBgbw=",
+ "dev": true
+ },
+ "es6-promisify": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/es6-promisify/-/es6-promisify-6.0.2.tgz",
+ "integrity": "sha512-eO6vFm0JvqGzjWIQA6QVKjxpmELfhWbDUWHm1rPfIbn55mhKPiAa5xpLmQWJrNa629ZIeQ8ZvMAi13kvrjK6Mg==",
+ "dev": true
+ },
+ "es6-templates": {
+ "version": "0.2.3",
+ "resolved": "https://registry.npmjs.org/es6-templates/-/es6-templates-0.2.3.tgz",
+ "integrity": "sha1-XLmsn7He1usSOTQrgdeSu7QHjuQ=",
+ "dev": true,
+ "requires": {
+ "recast": "~0.11.12",
+ "through": "~2.3.6"
+ }
+ },
+ "escape-html": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
+ "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=",
+ "dev": true
+ },
+ "escape-string-regexp": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
+ "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ="
+ },
+ "escodegen": {
+ "version": "1.14.1",
+ "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.1.tgz",
+ "integrity": "sha512-Bmt7NcRySdIfNPfU2ZoXDrrXsG9ZjvDxcAlMfDUgRBjLOWTuIACXPBFJH7Z+cLb40JeQco5toikyc9t9P8E9SQ==",
+ "dev": true,
+ "requires": {
+ "esprima": "^4.0.1",
+ "estraverse": "^4.2.0",
+ "esutils": "^2.0.2",
+ "optionator": "^0.8.1",
+ "source-map": "~0.6.1"
+ },
+ "dependencies": {
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true,
+ "optional": true
+ }
+ }
+ },
+ "eslint": {
+ "version": "6.8.0",
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-6.8.0.tgz",
+ "integrity": "sha512-K+Iayyo2LtyYhDSYwz5D5QdWw0hCacNzyq1Y821Xna2xSJj7cijoLLYmLxTQgcgZ9mC61nryMy9S7GRbYpI5Ig==",
+ "dev": true,
+ "requires": {
+ "@babel/code-frame": "^7.0.0",
+ "ajv": "^6.10.0",
+ "chalk": "^2.1.0",
+ "cross-spawn": "^6.0.5",
+ "debug": "^4.0.1",
+ "doctrine": "^3.0.0",
+ "eslint-scope": "^5.0.0",
+ "eslint-utils": "^1.4.3",
+ "eslint-visitor-keys": "^1.1.0",
+ "espree": "^6.1.2",
+ "esquery": "^1.0.1",
+ "esutils": "^2.0.2",
+ "file-entry-cache": "^5.0.1",
+ "functional-red-black-tree": "^1.0.1",
+ "glob-parent": "^5.0.0",
+ "globals": "^12.1.0",
+ "ignore": "^4.0.6",
+ "import-fresh": "^3.0.0",
+ "imurmurhash": "^0.1.4",
+ "inquirer": "^7.0.0",
+ "is-glob": "^4.0.0",
+ "js-yaml": "^3.13.1",
+ "json-stable-stringify-without-jsonify": "^1.0.1",
+ "levn": "^0.3.0",
+ "lodash": "^4.17.14",
+ "minimatch": "^3.0.4",
+ "mkdirp": "^0.5.1",
+ "natural-compare": "^1.4.0",
+ "optionator": "^0.8.3",
+ "progress": "^2.0.0",
+ "regexpp": "^2.0.1",
+ "semver": "^6.1.2",
+ "strip-ansi": "^5.2.0",
+ "strip-json-comments": "^3.0.1",
+ "table": "^5.2.3",
+ "text-table": "^0.2.0",
+ "v8-compile-cache": "^2.0.3"
+ },
+ "dependencies": {
+ "ansi-regex": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
+ "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==",
+ "dev": true
+ },
+ "ansi-styles": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
+ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^1.9.0"
+ }
+ },
+ "chalk": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
+ "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^3.2.1",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^5.3.0"
+ }
+ },
+ "cross-spawn": {
+ "version": "6.0.5",
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz",
+ "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==",
+ "dev": true,
+ "requires": {
+ "nice-try": "^1.0.4",
+ "path-key": "^2.0.1",
+ "semver": "^5.5.0",
+ "shebang-command": "^1.2.0",
+ "which": "^1.2.9"
+ },
+ "dependencies": {
+ "semver": {
+ "version": "5.7.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
+ "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
+ "dev": true
+ }
+ }
+ },
+ "debug": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
+ "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
+ "dev": true,
+ "requires": {
+ "ms": "^2.1.1"
+ }
+ },
+ "glob-parent": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.0.tgz",
+ "integrity": "sha512-qjtRgnIVmOfnKUE3NJAQEdk+lKrxfw8t5ke7SXtfMTHcjsBfOfWXCQfdb30zfDoZQ2IRSIiidmjtbHZPZ++Ihw==",
+ "dev": true,
+ "requires": {
+ "is-glob": "^4.0.1"
+ }
+ },
+ "globals": {
+ "version": "12.4.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz",
+ "integrity": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==",
+ "dev": true,
+ "requires": {
+ "type-fest": "^0.8.1"
+ }
+ },
+ "ignore": {
+ "version": "4.0.6",
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz",
+ "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==",
+ "dev": true
+ },
+ "mkdirp": {
+ "version": "0.5.1",
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
+ "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=",
+ "dev": true,
+ "requires": {
+ "minimist": "0.0.8"
+ }
+ },
+ "path-key": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz",
+ "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=",
+ "dev": true
+ },
+ "progress": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz",
+ "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==",
+ "dev": true
+ },
+ "semver": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
+ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "dev": true
+ },
+ "shebang-command": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz",
+ "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=",
+ "dev": true,
+ "requires": {
+ "shebang-regex": "^1.0.0"
+ }
+ },
+ "shebang-regex": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz",
+ "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=",
+ "dev": true
+ },
+ "strip-ansi": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
+ "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
+ "dev": true,
+ "requires": {
+ "ansi-regex": "^4.1.0"
+ }
+ },
+ "supports-color": {
+ "version": "5.5.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
+ "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^3.0.0"
+ }
+ }
+ }
+ },
+ "eslint-config-google": {
+ "version": "0.14.0",
+ "resolved": "https://registry.npmjs.org/eslint-config-google/-/eslint-config-google-0.14.0.tgz",
+ "integrity": "sha512-WsbX4WbjuMvTdeVL6+J3rK1RGhCTqjsFjX7UMSMgZiyxxaNLkoJENbrGExzERFeoTpGw3F3FypTiWAP9ZXzkEw==",
+ "dev": true
+ },
+ "eslint-import-resolver-node": {
+ "version": "0.3.3",
+ "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.3.tgz",
+ "integrity": "sha512-b8crLDo0M5RSe5YG8Pu2DYBj71tSB6OvXkfzwbJU2w7y8P4/yo0MyF8jU26IEuEuHF2K5/gcAJE3LhQGqBBbVg==",
+ "dev": true,
+ "requires": {
+ "debug": "^2.6.9",
+ "resolve": "^1.13.1"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ }
+ }
+ },
+ "eslint-module-utils": {
+ "version": "2.5.2",
+ "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.5.2.tgz",
+ "integrity": "sha512-LGScZ/JSlqGKiT8OC+cYRxseMjyqt6QO54nl281CK93unD89ijSeRV6An8Ci/2nvWVKe8K/Tqdm75RQoIOCr+Q==",
+ "dev": true,
+ "requires": {
+ "debug": "^2.6.9",
+ "pkg-dir": "^2.0.0"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "find-up": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz",
+ "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=",
+ "dev": true,
+ "requires": {
+ "locate-path": "^2.0.0"
+ }
+ },
+ "locate-path": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz",
+ "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=",
+ "dev": true,
+ "requires": {
+ "p-locate": "^2.0.0",
+ "path-exists": "^3.0.0"
+ }
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ },
+ "p-limit": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz",
+ "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==",
+ "dev": true,
+ "requires": {
+ "p-try": "^1.0.0"
+ }
+ },
+ "p-locate": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz",
+ "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=",
+ "dev": true,
+ "requires": {
+ "p-limit": "^1.1.0"
+ }
+ },
+ "p-try": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz",
+ "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=",
+ "dev": true
+ },
+ "pkg-dir": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz",
+ "integrity": "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=",
+ "dev": true,
+ "requires": {
+ "find-up": "^2.1.0"
+ }
+ }
+ }
+ },
+ "eslint-plugin-cypress": {
+ "version": "2.10.3",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-cypress/-/eslint-plugin-cypress-2.10.3.tgz",
+ "integrity": "sha512-CvFeoCquShfO8gHNIKA1VpUTz78WtknMebLemBd1lRbcmJNjwpqCqpQYUG/XVja8GjdX/e2TJXYa+EUBxehtUg==",
+ "dev": true,
+ "requires": {
+ "globals": "^11.12.0"
+ }
+ },
+ "eslint-plugin-import": {
+ "version": "2.20.1",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.20.1.tgz",
+ "integrity": "sha512-qQHgFOTjguR+LnYRoToeZWT62XM55MBVXObHM6SKFd1VzDcX/vqT1kAz8ssqigh5eMj8qXcRoXXGZpPP6RfdCw==",
+ "dev": true,
+ "requires": {
+ "array-includes": "^3.0.3",
+ "array.prototype.flat": "^1.2.1",
+ "contains-path": "^0.1.0",
+ "debug": "^2.6.9",
+ "doctrine": "1.5.0",
+ "eslint-import-resolver-node": "^0.3.2",
+ "eslint-module-utils": "^2.4.1",
+ "has": "^1.0.3",
+ "minimatch": "^3.0.4",
+ "object.values": "^1.1.0",
+ "read-pkg-up": "^2.0.0",
+ "resolve": "^1.12.0"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "doctrine": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz",
+ "integrity": "sha1-N53Ocw9hZvds76TmcHoVmwLFpvo=",
+ "dev": true,
+ "requires": {
+ "esutils": "^2.0.2",
+ "isarray": "^1.0.0"
+ }
+ },
+ "find-up": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz",
+ "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=",
+ "dev": true,
+ "requires": {
+ "locate-path": "^2.0.0"
+ }
+ },
+ "isarray": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
+ "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
+ "dev": true
+ },
+ "load-json-file": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz",
+ "integrity": "sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=",
+ "dev": true,
+ "requires": {
+ "graceful-fs": "^4.1.2",
+ "parse-json": "^2.2.0",
+ "pify": "^2.0.0",
+ "strip-bom": "^3.0.0"
+ }
+ },
+ "locate-path": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz",
+ "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=",
+ "dev": true,
+ "requires": {
+ "p-locate": "^2.0.0",
+ "path-exists": "^3.0.0"
+ }
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ },
+ "p-limit": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz",
+ "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==",
+ "dev": true,
+ "requires": {
+ "p-try": "^1.0.0"
+ }
+ },
+ "p-locate": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz",
+ "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=",
+ "dev": true,
+ "requires": {
+ "p-limit": "^1.1.0"
+ }
+ },
+ "p-try": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz",
+ "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=",
+ "dev": true
+ },
+ "path-type": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz",
+ "integrity": "sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=",
+ "dev": true,
+ "requires": {
+ "pify": "^2.0.0"
+ }
+ },
+ "pify": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
+ "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=",
+ "dev": true
+ },
+ "read-pkg": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz",
+ "integrity": "sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=",
+ "dev": true,
+ "requires": {
+ "load-json-file": "^2.0.0",
+ "normalize-package-data": "^2.3.2",
+ "path-type": "^2.0.0"
+ }
+ },
+ "read-pkg-up": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz",
+ "integrity": "sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=",
+ "dev": true,
+ "requires": {
+ "find-up": "^2.0.0",
+ "read-pkg": "^2.0.0"
+ }
+ },
+ "strip-bom": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
+ "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=",
+ "dev": true
+ }
+ }
+ },
+ "eslint-scope": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.0.0.tgz",
+ "integrity": "sha512-oYrhJW7S0bxAFDvWqzvMPRm6pcgcnWc4QnofCAqRTRfQC0JcwenzGglTtsLyIuuWFfkqDG9vz67cnttSd53djw==",
+ "dev": true,
+ "requires": {
+ "esrecurse": "^4.1.0",
+ "estraverse": "^4.1.1"
+ }
+ },
+ "eslint-utils": {
+ "version": "1.4.3",
+ "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.4.3.tgz",
+ "integrity": "sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q==",
+ "dev": true,
+ "requires": {
+ "eslint-visitor-keys": "^1.1.0"
+ }
+ },
+ "eslint-visitor-keys": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz",
+ "integrity": "sha512-8y9YjtM1JBJU/A9Kc+SbaOV4y29sSWckBwMHa+FGtVj5gN/sbnKDf6xJUl+8g7FAij9LVaP8C24DUiH/f/2Z9A==",
+ "dev": true
+ },
+ "espree": {
+ "version": "6.2.0",
+ "resolved": "https://registry.npmjs.org/espree/-/espree-6.2.0.tgz",
+ "integrity": "sha512-Xs8airJ7RQolnDIbLtRutmfvSsAe0xqMMAantCN/GMoqf81TFbeI1T7Jpd56qYu1uuh32dOG5W/X9uO+ghPXzA==",
+ "dev": true,
+ "requires": {
+ "acorn": "^7.1.0",
+ "acorn-jsx": "^5.2.0",
+ "eslint-visitor-keys": "^1.1.0"
+ }
+ },
+ "esprima": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
+ "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
+ "dev": true
+ },
+ "esquery": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.1.0.tgz",
+ "integrity": "sha512-MxYW9xKmROWF672KqjO75sszsA8Mxhw06YFeS5VHlB98KDHbOSurm3ArsjO60Eaf3QmGMCP1yn+0JQkNLo/97Q==",
+ "dev": true,
+ "requires": {
+ "estraverse": "^4.0.0"
+ }
+ },
+ "esrecurse": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz",
+ "integrity": "sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==",
+ "dev": true,
+ "requires": {
+ "estraverse": "^4.1.0"
+ }
+ },
+ "estraverse": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
+ "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
+ "dev": true
+ },
+ "estree-walker": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-0.6.1.tgz",
+ "integrity": "sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==",
+ "dev": true
+ },
+ "esutils": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
+ "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
+ "dev": true
+ },
+ "etag": {
+ "version": "1.8.1",
+ "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
+ "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=",
+ "dev": true
+ },
+ "ev-emitter": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/ev-emitter/-/ev-emitter-1.1.1.tgz",
+ "integrity": "sha512-ipiDYhdQSCZ4hSbX4rMW+XzNKMD1prg/sTvoVmSLkuQ1MVlwjJQQA+sW8tMYR3BLUr9KjodFV4pvzunvRhd33Q=="
+ },
+ "eventemitter2": {
+ "version": "6.4.3",
+ "resolved": "https://registry.npmjs.org/eventemitter2/-/eventemitter2-6.4.3.tgz",
+ "integrity": "sha512-t0A2msp6BzOf+QAcI6z9XMktLj52OjGQg+8SJH6v5+3uxNpWYRR3wQmfA+6xtMU9kOC59qk9licus5dYcrYkMQ==",
+ "dev": true
+ },
+ "eventemitter3": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-1.2.0.tgz",
+ "integrity": "sha1-HIaZHYFq0eUEdQ5zh0Ik7PO+xQg=",
+ "dev": true
+ },
+ "events": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/events/-/events-3.1.0.tgz",
+ "integrity": "sha512-Rv+u8MLHNOdMjTAFeT3nCjHn2aGlx435FP/sDHNaRhDEMwyI/aB22Kj2qIN8R0cw3z28psEQLYwxVKLsKrMgWg==",
+ "dev": true
+ },
+ "evp_bytestokey": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz",
+ "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==",
+ "dev": true,
+ "requires": {
+ "md5.js": "^1.3.4",
+ "safe-buffer": "^5.1.1"
+ }
+ },
+ "exec-sh": {
+ "version": "0.3.4",
+ "resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.4.tgz",
+ "integrity": "sha512-sEFIkc61v75sWeOe72qyrqg2Qg0OuLESziUDk/O/z2qgS15y2gWVFrI6f2Qn/qw/0/NCfCEsmNA4zOjkwEZT1A==",
+ "dev": true
+ },
+ "execa": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz",
+ "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==",
+ "dev": true,
+ "requires": {
+ "cross-spawn": "^6.0.0",
+ "get-stream": "^4.0.0",
+ "is-stream": "^1.1.0",
+ "npm-run-path": "^2.0.0",
+ "p-finally": "^1.0.0",
+ "signal-exit": "^3.0.0",
+ "strip-eof": "^1.0.0"
+ },
+ "dependencies": {
+ "cross-spawn": {
+ "version": "6.0.5",
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz",
+ "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==",
+ "dev": true,
+ "requires": {
+ "nice-try": "^1.0.4",
+ "path-key": "^2.0.1",
+ "semver": "^5.5.0",
+ "shebang-command": "^1.2.0",
+ "which": "^1.2.9"
+ }
+ },
+ "get-stream": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz",
+ "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==",
+ "dev": true,
+ "requires": {
+ "pump": "^3.0.0"
+ }
+ },
+ "p-finally": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz",
+ "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=",
+ "dev": true
+ },
+ "path-key": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz",
+ "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=",
+ "dev": true
+ },
+ "shebang-command": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz",
+ "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=",
+ "dev": true,
+ "requires": {
+ "shebang-regex": "^1.0.0"
+ }
+ },
+ "shebang-regex": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz",
+ "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=",
+ "dev": true
+ }
+ }
+ },
+ "executable": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/executable/-/executable-4.1.1.tgz",
+ "integrity": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==",
+ "dev": true,
+ "requires": {
+ "pify": "^2.2.0"
+ },
+ "dependencies": {
+ "pify": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
+ "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=",
+ "dev": true
+ }
+ }
+ },
+ "exit": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz",
+ "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=",
+ "dev": true
+ },
+ "exit-hook": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/exit-hook/-/exit-hook-1.1.1.tgz",
+ "integrity": "sha1-8FyiM7SMBdVP/wd2XfhQfpXAL/g=",
+ "dev": true
+ },
+ "expand-brackets": {
+ "version": "2.1.4",
+ "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz",
+ "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=",
+ "dev": true,
+ "requires": {
+ "debug": "^2.3.3",
+ "define-property": "^0.2.5",
+ "extend-shallow": "^2.0.1",
+ "posix-character-classes": "^0.1.0",
+ "regex-not": "^1.0.0",
+ "snapdragon": "^0.8.1",
+ "to-regex": "^3.0.1"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "define-property": {
+ "version": "0.2.5",
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
+ "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
+ "dev": true,
+ "requires": {
+ "is-descriptor": "^0.1.0"
+ }
+ },
+ "extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "requires": {
+ "is-extendable": "^0.1.0"
+ }
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ }
+ }
+ },
+ "expand-tilde": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz",
+ "integrity": "sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=",
+ "dev": true,
+ "requires": {
+ "homedir-polyfill": "^1.0.1"
+ }
+ },
+ "expect": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/expect/-/expect-25.1.0.tgz",
+ "integrity": "sha512-wqHzuoapQkhc3OKPlrpetsfueuEiMf3iWh0R8+duCu9PIjXoP7HgD5aeypwTnXUAjC8aMsiVDaWwlbJ1RlQ38g==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^25.1.0",
+ "ansi-styles": "^4.0.0",
+ "jest-get-type": "^25.1.0",
+ "jest-matcher-utils": "^25.1.0",
+ "jest-message-util": "^25.1.0",
+ "jest-regex-util": "^25.1.0"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
+ "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
+ "dev": true,
+ "requires": {
+ "@types/color-name": "^1.1.1",
+ "color-convert": "^2.0.1"
+ }
+ },
+ "color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "requires": {
+ "color-name": "~1.1.4"
+ }
+ },
+ "color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true
+ }
+ }
+ },
+ "express": {
+ "version": "3.4.8",
+ "resolved": "https://registry.npmjs.org/express/-/express-3.4.8.tgz",
+ "integrity": "sha1-qnqJht4HBTM39Lxe2aZFPZzI4uE=",
+ "requires": {
+ "buffer-crc32": "0.2.1",
+ "commander": "1.3.2",
+ "connect": "2.12.0",
+ "cookie": "0.1.0",
+ "cookie-signature": "1.0.1",
+ "debug": ">= 0.7.3 < 1",
+ "fresh": "0.2.0",
+ "merge-descriptors": "0.0.1",
+ "methods": "0.1.0",
+ "mkdirp": "0.3.5",
+ "range-parser": "0.0.4",
+ "send": "0.1.4"
+ }
+ },
+ "extend": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
+ "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g=="
+ },
+ "extend-shallow": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz",
+ "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=",
+ "dev": true,
+ "requires": {
+ "assign-symbols": "^1.0.0",
+ "is-extendable": "^1.0.1"
+ },
+ "dependencies": {
+ "is-extendable": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
+ "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
+ "dev": true,
+ "requires": {
+ "is-plain-object": "^2.0.4"
+ }
+ }
+ }
+ },
+ "external-editor": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz",
+ "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==",
+ "dev": true,
+ "requires": {
+ "chardet": "^0.7.0",
+ "iconv-lite": "^0.4.24",
+ "tmp": "^0.0.33"
+ }
+ },
+ "extglob": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz",
+ "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==",
+ "dev": true,
+ "requires": {
+ "array-unique": "^0.3.2",
+ "define-property": "^1.0.0",
+ "expand-brackets": "^2.1.4",
+ "extend-shallow": "^2.0.1",
+ "fragment-cache": "^0.2.1",
+ "regex-not": "^1.0.0",
+ "snapdragon": "^0.8.1",
+ "to-regex": "^3.0.1"
+ },
+ "dependencies": {
+ "define-property": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
+ "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
+ "dev": true,
+ "requires": {
+ "is-descriptor": "^1.0.0"
+ }
+ },
+ "extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "requires": {
+ "is-extendable": "^0.1.0"
+ }
+ },
+ "is-accessor-descriptor": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
+ "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
+ "dev": true,
+ "requires": {
+ "kind-of": "^6.0.0"
+ }
+ },
+ "is-data-descriptor": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
+ "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
+ "dev": true,
+ "requires": {
+ "kind-of": "^6.0.0"
+ }
+ },
+ "is-descriptor": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
+ "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
+ "dev": true,
+ "requires": {
+ "is-accessor-descriptor": "^1.0.0",
+ "is-data-descriptor": "^1.0.0",
+ "kind-of": "^6.0.2"
+ }
+ }
+ }
+ },
+ "extract-zip": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-1.5.0.tgz",
+ "integrity": "sha1-ksz22B73Cp+kwXRxFMzvbYaIpsQ=",
+ "requires": {
+ "concat-stream": "1.5.0",
+ "debug": "0.7.4",
+ "mkdirp": "0.5.0",
+ "yauzl": "2.4.1"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "0.7.4",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-0.7.4.tgz",
+ "integrity": "sha1-BuHqgILCyxTjmAbiLi9vdX+Srzk="
+ },
+ "mkdirp": {
+ "version": "0.5.0",
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.0.tgz",
+ "integrity": "sha1-HXMHam35hs2TROFecfzAWkyavxI=",
+ "requires": {
+ "minimist": "0.0.8"
+ }
+ }
+ }
+ },
+ "extsprintf": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz",
+ "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU="
+ },
+ "fast-deep-equal": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz",
+ "integrity": "sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA==",
+ "dev": true
+ },
+ "fast-glob": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.2.tgz",
+ "integrity": "sha512-UDV82o4uQyljznxwMxyVRJgZZt3O5wENYojjzbaGEGZgeOxkLFf+V4cnUD+krzb2F72E18RhamkMZ7AdeggF7A==",
+ "dev": true,
+ "requires": {
+ "@nodelib/fs.stat": "^2.0.2",
+ "@nodelib/fs.walk": "^1.2.3",
+ "glob-parent": "^5.1.0",
+ "merge2": "^1.3.0",
+ "micromatch": "^4.0.2",
+ "picomatch": "^2.2.1"
+ },
+ "dependencies": {
+ "braces": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
+ "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
+ "dev": true,
+ "requires": {
+ "fill-range": "^7.0.1"
+ }
+ },
+ "fill-range": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
+ "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
+ "dev": true,
+ "requires": {
+ "to-regex-range": "^5.0.1"
+ }
+ },
+ "glob-parent": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.0.tgz",
+ "integrity": "sha512-qjtRgnIVmOfnKUE3NJAQEdk+lKrxfw8t5ke7SXtfMTHcjsBfOfWXCQfdb30zfDoZQ2IRSIiidmjtbHZPZ++Ihw==",
+ "dev": true,
+ "requires": {
+ "is-glob": "^4.0.1"
+ }
+ },
+ "is-number": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
+ "dev": true
+ },
+ "micromatch": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz",
+ "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==",
+ "dev": true,
+ "requires": {
+ "braces": "^3.0.1",
+ "picomatch": "^2.0.5"
+ }
+ },
+ "to-regex-range": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
+ "dev": true,
+ "requires": {
+ "is-number": "^7.0.0"
+ }
+ }
+ }
+ },
+ "fast-json-stable-stringify": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
+ "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
+ "dev": true
+ },
+ "fast-levenshtein": {
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
+ "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=",
+ "dev": true
+ },
+ "fastparse": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/fastparse/-/fastparse-1.1.2.tgz",
+ "integrity": "sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==",
+ "dev": true
+ },
+ "fastq": {
+ "version": "1.6.1",
+ "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.6.1.tgz",
+ "integrity": "sha512-mpIH5sKYueh3YyeJwqtVo8sORi0CgtmkVbK6kZStpQlZBYQuTzG2CZ7idSiJuA7bY0SFCWUc5WIs+oYumGCQNw==",
+ "dev": true,
+ "requires": {
+ "reusify": "^1.0.4"
+ }
+ },
+ "fb-watchman": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz",
+ "integrity": "sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==",
+ "dev": true,
+ "requires": {
+ "bser": "2.1.1"
+ }
+ },
+ "fd-slicer": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.0.1.tgz",
+ "integrity": "sha1-i1vL2ewyfFBBv5qwI/1nUPEXfmU=",
+ "requires": {
+ "pend": "~1.2.0"
+ }
+ },
+ "feature-detect-es6": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/feature-detect-es6/-/feature-detect-es6-1.5.0.tgz",
+ "integrity": "sha512-DzWPIGzTnfp3/KK1d/YPfmgLqeDju9F2DQYBL35VusgSApcA7XGqVtXfR4ETOOFEzdFJ3J7zh0Gkk011TiA4uQ==",
+ "dev": true,
+ "requires": {
+ "array-back": "^1.0.4"
+ }
+ },
+ "figgy-pudding": {
+ "version": "3.5.1",
+ "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.1.tgz",
+ "integrity": "sha512-vNKxJHTEKNThjfrdJwHc7brvM6eVevuO5nTj6ez8ZQ1qbXTvGthucRF7S4vf2cr71QVnT70V34v0S1DyQsti0w==",
+ "dev": true
+ },
+ "figures": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz",
+ "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==",
+ "dev": true,
+ "requires": {
+ "escape-string-regexp": "^1.0.5"
+ }
+ },
+ "file-entry-cache": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz",
+ "integrity": "sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==",
+ "dev": true,
+ "requires": {
+ "flat-cache": "^2.0.1"
+ }
+ },
+ "file-loader": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-5.1.0.tgz",
+ "integrity": "sha512-u/VkLGskw3Ue59nyOwUwXI/6nuBCo7KBkniB/l7ICwr/7cPNGsL1WCXUp3GB0qgOOKU1TiP49bv4DZF/LJqprg==",
+ "dev": true,
+ "requires": {
+ "loader-utils": "^1.4.0",
+ "schema-utils": "^2.5.0"
+ },
+ "dependencies": {
+ "schema-utils": {
+ "version": "2.6.4",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.6.4.tgz",
+ "integrity": "sha512-VNjcaUxVnEeun6B2fiiUDjXXBtD4ZSH7pdbfIu1pOFwgptDPLMo/z9jr4sUfsjFVPqDCEin/F7IYlq7/E6yDbQ==",
+ "dev": true,
+ "requires": {
+ "ajv": "^6.10.2",
+ "ajv-keywords": "^3.4.1"
+ }
+ }
+ }
+ },
+ "file-saver": {
+ "version": "1.3.8",
+ "resolved": "https://registry.npmjs.org/file-saver/-/file-saver-1.3.8.tgz",
+ "integrity": "sha512-spKHSBQIxxS81N/O21WmuXA2F6wppUCsutpzenOeZzOCCJ5gEfcbqJP983IrpLXzYmXnMUa6J03SubcNPdKrlg=="
+ },
+ "file-uri-to-path": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz",
+ "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==",
+ "dev": true
+ },
+ "fill-range": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz",
+ "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=",
+ "dev": true,
+ "requires": {
+ "extend-shallow": "^2.0.1",
+ "is-number": "^3.0.0",
+ "repeat-string": "^1.6.1",
+ "to-regex-range": "^2.1.0"
+ },
+ "dependencies": {
+ "extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "requires": {
+ "is-extendable": "^0.1.0"
+ }
+ }
+ }
+ },
+ "finalhandler": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.0.tgz",
+ "integrity": "sha1-zgtoVbRYU+eRsvzGgARtiCU91/U=",
+ "dev": true,
+ "requires": {
+ "debug": "2.6.9",
+ "encodeurl": "~1.0.1",
+ "escape-html": "~1.0.3",
+ "on-finished": "~2.3.0",
+ "parseurl": "~1.3.2",
+ "statuses": "~1.3.1",
+ "unpipe": "~1.0.0"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ }
+ }
+ },
+ "find-cache-dir": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz",
+ "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==",
+ "dev": true,
+ "requires": {
+ "commondir": "^1.0.1",
+ "make-dir": "^2.0.0",
+ "pkg-dir": "^3.0.0"
+ }
+ },
+ "find-package-json": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/find-package-json/-/find-package-json-1.2.0.tgz",
+ "integrity": "sha512-+SOGcLGYDJHtyqHd87ysBhmaeQ95oWspDKnMXBrnQ9Eq4OkLNqejgoaD8xVWu6GPa0B6roa6KinCMEMcVeqONw==",
+ "dev": true
+ },
+ "find-replace": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/find-replace/-/find-replace-1.0.3.tgz",
+ "integrity": "sha1-uI5zZNLZyVlVnziMZmcNYTBEH6A=",
+ "dev": true,
+ "requires": {
+ "array-back": "^1.0.4",
+ "test-value": "^2.1.0"
+ }
+ },
+ "find-up": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz",
+ "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==",
+ "dev": true,
+ "requires": {
+ "locate-path": "^3.0.0"
+ }
+ },
+ "findup-sync": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-3.0.0.tgz",
+ "integrity": "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==",
+ "dev": true,
+ "requires": {
+ "detect-file": "^1.0.0",
+ "is-glob": "^4.0.0",
+ "micromatch": "^3.0.4",
+ "resolve-dir": "^1.0.1"
+ }
+ },
+ "flat-cache": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz",
+ "integrity": "sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==",
+ "dev": true,
+ "requires": {
+ "flatted": "^2.0.0",
+ "rimraf": "2.6.3",
+ "write": "1.0.3"
+ },
+ "dependencies": {
+ "rimraf": {
+ "version": "2.6.3",
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz",
+ "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==",
+ "dev": true,
+ "requires": {
+ "glob": "^7.1.3"
+ }
+ }
+ }
+ },
+ "flatted": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.1.tgz",
+ "integrity": "sha512-a1hQMktqW9Nmqr5aktAux3JMNqaucxGcjtjWnZLHX7yyPCmlSV3M54nGYbqT8K+0GhF3NBgmJCc3ma+WOgX8Jg==",
+ "dev": true
+ },
+ "flush-write-stream": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz",
+ "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==",
+ "dev": true,
+ "requires": {
+ "inherits": "^2.0.3",
+ "readable-stream": "^2.3.6"
+ },
+ "dependencies": {
+ "isarray": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
+ "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
+ "dev": true
+ },
+ "process-nextick-args": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
+ "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
+ "dev": true
+ },
+ "readable-stream": {
+ "version": "2.3.7",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
+ "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
+ "dev": true,
+ "requires": {
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.3",
+ "isarray": "~1.0.0",
+ "process-nextick-args": "~2.0.0",
+ "safe-buffer": "~5.1.1",
+ "string_decoder": "~1.1.1",
+ "util-deprecate": "~1.0.1"
+ }
+ },
+ "string_decoder": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
+ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
+ "dev": true,
+ "requires": {
+ "safe-buffer": "~5.1.0"
+ }
+ }
+ }
+ },
+ "follow-redirects": {
+ "version": "1.5.10",
+ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.10.tgz",
+ "integrity": "sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ==",
+ "dev": true,
+ "requires": {
+ "debug": "=3.1.0"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz",
+ "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==",
+ "dev": true,
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ }
+ }
+ },
+ "for-in": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz",
+ "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=",
+ "dev": true
+ },
+ "foreachasync": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/foreachasync/-/foreachasync-3.0.0.tgz",
+ "integrity": "sha1-VQKYfchxS+M5IJfzLgBxyd7gfPY=",
+ "dev": true
+ },
+ "forever-agent": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz",
+ "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE="
+ },
+ "form-data": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-1.0.1.tgz",
+ "integrity": "sha1-rjFduaSQf6BlUCMEpm13M0de43w=",
+ "requires": {
+ "async": "^2.0.1",
+ "combined-stream": "^1.0.5",
+ "mime-types": "^2.1.11"
+ }
+ },
+ "fragment-cache": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz",
+ "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=",
+ "dev": true,
+ "requires": {
+ "map-cache": "^0.2.2"
+ }
+ },
+ "fresh": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.2.0.tgz",
+ "integrity": "sha1-v9lALPPfEsSkwxDHn5mj3eE9NKc="
+ },
+ "from2": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz",
+ "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=",
+ "dev": true,
+ "requires": {
+ "inherits": "^2.0.1",
+ "readable-stream": "^2.0.0"
+ },
+ "dependencies": {
+ "isarray": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
+ "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
+ "dev": true
+ },
+ "process-nextick-args": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
+ "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
+ "dev": true
+ },
+ "readable-stream": {
+ "version": "2.3.7",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
+ "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
+ "dev": true,
+ "requires": {
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.3",
+ "isarray": "~1.0.0",
+ "process-nextick-args": "~2.0.0",
+ "safe-buffer": "~5.1.1",
+ "string_decoder": "~1.1.1",
+ "util-deprecate": "~1.0.1"
+ }
+ },
+ "string_decoder": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
+ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
+ "dev": true,
+ "requires": {
+ "safe-buffer": "~5.1.0"
+ }
+ }
+ }
+ },
+ "fs-extra": {
+ "version": "0.26.7",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-0.26.7.tgz",
+ "integrity": "sha1-muH92UiXeY7at20JGM9C0MMYT6k=",
+ "requires": {
+ "graceful-fs": "^4.1.2",
+ "jsonfile": "^2.1.0",
+ "klaw": "^1.0.0",
+ "path-is-absolute": "^1.0.0",
+ "rimraf": "^2.2.8"
+ }
+ },
+ "fs-minipass": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz",
+ "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==",
+ "dev": true,
+ "requires": {
+ "minipass": "^3.0.0"
+ }
+ },
+ "fs-write-stream-atomic": {
+ "version": "1.0.10",
+ "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz",
+ "integrity": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=",
+ "dev": true,
+ "requires": {
+ "graceful-fs": "^4.1.2",
+ "iferr": "^0.1.5",
+ "imurmurhash": "^0.1.4",
+ "readable-stream": "1 || 2"
+ }
+ },
+ "fs.extra": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/fs.extra/-/fs.extra-1.3.2.tgz",
+ "integrity": "sha1-3QI/kwE77iRTHxszUUw3sg/ZM0k=",
+ "dev": true,
+ "requires": {
+ "fs-extra": "~0.6.1",
+ "mkdirp": "~0.3.5",
+ "walk": "^2.3.9"
+ },
+ "dependencies": {
+ "fs-extra": {
+ "version": "0.6.4",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-0.6.4.tgz",
+ "integrity": "sha1-9G8MdbeEH40gCzNIzU1pHVoJnRU=",
+ "dev": true,
+ "requires": {
+ "jsonfile": "~1.0.1",
+ "mkdirp": "0.3.x",
+ "ncp": "~0.4.2",
+ "rimraf": "~2.2.0"
+ }
+ },
+ "jsonfile": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-1.0.1.tgz",
+ "integrity": "sha1-6l7+QLg2kLmGZ2FKc5L8YOhCwN0=",
+ "dev": true
+ },
+ "rimraf": {
+ "version": "2.2.8",
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.2.8.tgz",
+ "integrity": "sha1-5Dm+Kq7jJzIZUnMPmaiSnk/FBYI=",
+ "dev": true
+ }
+ }
+ },
+ "fs.realpath": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
+ "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8="
+ },
+ "fsevents": {
+ "version": "1.2.11",
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.11.tgz",
+ "integrity": "sha512-+ux3lx6peh0BpvY0JebGyZoiR4D+oYzdPZMKJwkZ+sFkNJzpL7tXc/wehS49gUAxg3tmMHPHZkA8JU2rhhgDHw==",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "bindings": "^1.5.0",
+ "nan": "^2.12.1",
+ "node-pre-gyp": "*"
+ },
+ "dependencies": {
+ "abbrev": {
+ "version": "1.1.1",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "ansi-regex": {
+ "version": "2.1.1",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "aproba": {
+ "version": "1.2.0",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "are-we-there-yet": {
+ "version": "1.1.5",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "delegates": "^1.0.0",
+ "readable-stream": "^2.0.6"
+ }
+ },
+ "balanced-match": {
+ "version": "1.0.0",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "brace-expansion": {
+ "version": "1.1.11",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "balanced-match": "^1.0.0",
+ "concat-map": "0.0.1"
+ }
+ },
+ "chownr": {
+ "version": "1.1.3",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "code-point-at": {
+ "version": "1.1.0",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "concat-map": {
+ "version": "0.0.1",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "console-control-strings": {
+ "version": "1.1.0",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "core-util-is": {
+ "version": "1.0.2",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "debug": {
+ "version": "3.2.6",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "ms": "^2.1.1"
+ }
+ },
+ "deep-extend": {
+ "version": "0.6.0",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "delegates": {
+ "version": "1.0.0",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "detect-libc": {
+ "version": "1.0.3",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "fs-minipass": {
+ "version": "1.2.7",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "minipass": "^2.6.0"
+ }
+ },
+ "fs.realpath": {
+ "version": "1.0.0",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "gauge": {
+ "version": "2.7.4",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "aproba": "^1.0.3",
+ "console-control-strings": "^1.0.0",
+ "has-unicode": "^2.0.0",
+ "object-assign": "^4.1.0",
+ "signal-exit": "^3.0.0",
+ "string-width": "^1.0.1",
+ "strip-ansi": "^3.0.1",
+ "wide-align": "^1.1.0"
+ }
+ },
+ "glob": {
+ "version": "7.1.6",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "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"
+ }
+ },
+ "has-unicode": {
+ "version": "2.0.1",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "iconv-lite": {
+ "version": "0.4.24",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "safer-buffer": ">= 2.1.2 < 3"
+ }
+ },
+ "ignore-walk": {
+ "version": "3.0.3",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "minimatch": "^3.0.4"
+ }
+ },
+ "inflight": {
+ "version": "1.0.6",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "once": "^1.3.0",
+ "wrappy": "1"
+ }
+ },
+ "inherits": {
+ "version": "2.0.4",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "ini": {
+ "version": "1.3.5",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "is-fullwidth-code-point": {
+ "version": "1.0.0",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "number-is-nan": "^1.0.0"
+ }
+ },
+ "isarray": {
+ "version": "1.0.0",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "minimatch": {
+ "version": "3.0.4",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "brace-expansion": "^1.1.7"
+ }
+ },
+ "minimist": {
+ "version": "0.0.8",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "minipass": {
+ "version": "2.9.0",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "safe-buffer": "^5.1.2",
+ "yallist": "^3.0.0"
+ }
+ },
+ "minizlib": {
+ "version": "1.3.3",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "minipass": "^2.9.0"
+ }
+ },
+ "mkdirp": {
+ "version": "0.5.1",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "minimist": "0.0.8"
+ }
+ },
+ "ms": {
+ "version": "2.1.2",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "needle": {
+ "version": "2.4.0",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "debug": "^3.2.6",
+ "iconv-lite": "^0.4.4",
+ "sax": "^1.2.4"
+ }
+ },
+ "node-pre-gyp": {
+ "version": "0.14.0",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "detect-libc": "^1.0.2",
+ "mkdirp": "^0.5.1",
+ "needle": "^2.2.1",
+ "nopt": "^4.0.1",
+ "npm-packlist": "^1.1.6",
+ "npmlog": "^4.0.2",
+ "rc": "^1.2.7",
+ "rimraf": "^2.6.1",
+ "semver": "^5.3.0",
+ "tar": "^4.4.2"
+ }
+ },
+ "nopt": {
+ "version": "4.0.1",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "abbrev": "1",
+ "osenv": "^0.1.4"
+ }
+ },
+ "npm-bundled": {
+ "version": "1.1.1",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "npm-normalize-package-bin": "^1.0.1"
+ }
+ },
+ "npm-normalize-package-bin": {
+ "version": "1.0.1",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "npm-packlist": {
+ "version": "1.4.7",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "ignore-walk": "^3.0.1",
+ "npm-bundled": "^1.0.1"
+ }
+ },
+ "npmlog": {
+ "version": "4.1.2",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "are-we-there-yet": "~1.1.2",
+ "console-control-strings": "~1.1.0",
+ "gauge": "~2.7.3",
+ "set-blocking": "~2.0.0"
+ }
+ },
+ "number-is-nan": {
+ "version": "1.0.1",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "object-assign": {
+ "version": "4.1.1",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "once": {
+ "version": "1.4.0",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "wrappy": "1"
+ }
+ },
+ "os-homedir": {
+ "version": "1.0.2",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "os-tmpdir": {
+ "version": "1.0.2",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "osenv": {
+ "version": "0.1.5",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "os-homedir": "^1.0.0",
+ "os-tmpdir": "^1.0.0"
+ }
+ },
+ "path-is-absolute": {
+ "version": "1.0.1",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "process-nextick-args": {
+ "version": "2.0.1",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "rc": {
+ "version": "1.2.8",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "deep-extend": "^0.6.0",
+ "ini": "~1.3.0",
+ "minimist": "^1.2.0",
+ "strip-json-comments": "~2.0.1"
+ },
+ "dependencies": {
+ "minimist": {
+ "version": "1.2.0",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ }
+ }
+ },
+ "readable-stream": {
+ "version": "2.3.6",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.3",
+ "isarray": "~1.0.0",
+ "process-nextick-args": "~2.0.0",
+ "safe-buffer": "~5.1.1",
+ "string_decoder": "~1.1.1",
+ "util-deprecate": "~1.0.1"
+ }
+ },
+ "rimraf": {
+ "version": "2.7.1",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "glob": "^7.1.3"
+ }
+ },
+ "safe-buffer": {
+ "version": "5.1.2",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "safer-buffer": {
+ "version": "2.1.2",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "sax": {
+ "version": "1.2.4",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "semver": {
+ "version": "5.7.1",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "set-blocking": {
+ "version": "2.0.0",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "signal-exit": {
+ "version": "3.0.2",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "string-width": {
+ "version": "1.0.2",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "code-point-at": "^1.0.0",
+ "is-fullwidth-code-point": "^1.0.0",
+ "strip-ansi": "^3.0.0"
+ }
+ },
+ "string_decoder": {
+ "version": "1.1.1",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "safe-buffer": "~5.1.0"
+ }
+ },
+ "strip-ansi": {
+ "version": "3.0.1",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "ansi-regex": "^2.0.0"
+ }
+ },
+ "strip-json-comments": {
+ "version": "2.0.1",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "tar": {
+ "version": "4.4.13",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "chownr": "^1.1.1",
+ "fs-minipass": "^1.2.5",
+ "minipass": "^2.8.6",
+ "minizlib": "^1.2.1",
+ "mkdirp": "^0.5.0",
+ "safe-buffer": "^5.1.2",
+ "yallist": "^3.0.3"
+ }
+ },
+ "util-deprecate": {
+ "version": "1.0.2",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "wide-align": {
+ "version": "1.1.3",
+ "bundled": true,
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "string-width": "^1.0.2 || 2"
+ }
+ },
+ "wrappy": {
+ "version": "1.0.2",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ },
+ "yallist": {
+ "version": "3.1.1",
+ "bundled": true,
+ "dev": true,
+ "optional": true
+ }
+ }
+ },
+ "ftp": {
+ "version": "0.3.10",
+ "resolved": "https://registry.npmjs.org/ftp/-/ftp-0.3.10.tgz",
+ "integrity": "sha1-kZfYYa2BQvPmPVqDv+TFn3MwiF0=",
+ "dev": true,
+ "requires": {
+ "readable-stream": "1.1.x",
+ "xregexp": "2.0.0"
+ }
+ },
+ "function-bind": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
+ "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==",
+ "dev": true
+ },
+ "functional-red-black-tree": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz",
+ "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=",
+ "dev": true
+ },
+ "generate-function": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/generate-function/-/generate-function-2.3.1.tgz",
+ "integrity": "sha512-eeB5GfMNeevm/GRYq20ShmsaGcmI81kIX2K9XQx5miC8KdHaC6Jm0qQ8ZNeGOi7wYB8OsdxKs+Y2oVuTFuVwKQ==",
+ "requires": {
+ "is-property": "^1.0.2"
+ }
+ },
+ "generate-object-property": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz",
+ "integrity": "sha1-nA4cQDCM6AT0eDYYuTf6iPmdUNA=",
+ "requires": {
+ "is-property": "^1.0.0"
+ }
+ },
+ "gensync": {
+ "version": "1.0.0-beta.1",
+ "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.1.tgz",
+ "integrity": "sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg==",
+ "dev": true
+ },
+ "get-caller-file": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz",
+ "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==",
+ "dev": true
+ },
+ "get-stream": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.1.0.tgz",
+ "integrity": "sha512-EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw==",
+ "dev": true,
+ "requires": {
+ "pump": "^3.0.0"
+ }
+ },
+ "get-uri": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/get-uri/-/get-uri-2.0.4.tgz",
+ "integrity": "sha512-v7LT/s8kVjs+Tx0ykk1I+H/rbpzkHvuIq87LmeXptcf5sNWm9uQiwjNAt94SJPA1zOlCntmnOlJvVWKmzsxG8Q==",
+ "dev": true,
+ "requires": {
+ "data-uri-to-buffer": "1",
+ "debug": "2",
+ "extend": "~3.0.2",
+ "file-uri-to-path": "1",
+ "ftp": "~0.3.10",
+ "readable-stream": "2"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "isarray": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
+ "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
+ "dev": true
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ },
+ "process-nextick-args": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
+ "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
+ "dev": true
+ },
+ "readable-stream": {
+ "version": "2.3.7",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
+ "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
+ "dev": true,
+ "requires": {
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.3",
+ "isarray": "~1.0.0",
+ "process-nextick-args": "~2.0.0",
+ "safe-buffer": "~5.1.1",
+ "string_decoder": "~1.1.1",
+ "util-deprecate": "~1.0.1"
+ }
+ },
+ "string_decoder": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
+ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
+ "dev": true,
+ "requires": {
+ "safe-buffer": "~5.1.0"
+ }
+ }
+ }
+ },
+ "get-value": {
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz",
+ "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=",
+ "dev": true
+ },
+ "getos": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/getos/-/getos-3.2.1.tgz",
+ "integrity": "sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==",
+ "dev": true,
+ "requires": {
+ "async": "^3.2.0"
+ },
+ "dependencies": {
+ "async": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/async/-/async-3.2.0.tgz",
+ "integrity": "sha512-TR2mEZFVOj2pLStYxLht7TyfuRzaydfpxr3k9RpHIzMgw7A64dzsdqCxH1WJyQdoe8T10nDXd9wnEigmiuHIZw==",
+ "dev": true
+ }
+ }
+ },
+ "getpass": {
+ "version": "0.1.7",
+ "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz",
+ "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=",
+ "requires": {
+ "assert-plus": "^1.0.0"
+ },
+ "dependencies": {
+ "assert-plus": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
+ "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU="
+ }
+ }
+ },
+ "glob": {
+ "version": "7.1.6",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz",
+ "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==",
+ "requires": {
+ "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"
+ }
+ },
+ "glob-parent": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz",
+ "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=",
+ "dev": true,
+ "requires": {
+ "is-glob": "^3.1.0",
+ "path-dirname": "^1.0.0"
+ },
+ "dependencies": {
+ "is-glob": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz",
+ "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=",
+ "dev": true,
+ "requires": {
+ "is-extglob": "^2.1.0"
+ }
+ }
+ }
+ },
+ "global-dirs": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-2.0.1.tgz",
+ "integrity": "sha512-5HqUqdhkEovj2Of/ms3IeS/EekcO54ytHRLV4PEY2rhRwrHXLQjeVEES0Lhka0xwNDtGYn58wyC4s5+MHsOO6A==",
+ "dev": true,
+ "requires": {
+ "ini": "^1.3.5"
+ }
+ },
+ "global-modules": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz",
+ "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==",
+ "dev": true,
+ "requires": {
+ "global-prefix": "^3.0.0"
+ },
+ "dependencies": {
+ "global-prefix": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz",
+ "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==",
+ "dev": true,
+ "requires": {
+ "ini": "^1.3.5",
+ "kind-of": "^6.0.2",
+ "which": "^1.3.1"
+ }
+ },
+ "which": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
+ "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
+ "dev": true,
+ "requires": {
+ "isexe": "^2.0.0"
+ }
+ }
+ }
+ },
+ "global-prefix": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz",
+ "integrity": "sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=",
+ "dev": true,
+ "requires": {
+ "expand-tilde": "^2.0.2",
+ "homedir-polyfill": "^1.0.1",
+ "ini": "^1.3.4",
+ "is-windows": "^1.0.1",
+ "which": "^1.2.14"
+ }
+ },
+ "globals": {
+ "version": "11.12.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
+ "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
+ "dev": true
+ },
+ "globby": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz",
+ "integrity": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=",
+ "dev": true,
+ "requires": {
+ "array-union": "^1.0.1",
+ "glob": "^7.0.3",
+ "object-assign": "^4.0.1",
+ "pify": "^2.0.0",
+ "pinkie-promise": "^2.0.0"
+ },
+ "dependencies": {
+ "pify": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
+ "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=",
+ "dev": true
+ }
+ }
+ },
+ "got": {
+ "version": "10.7.0",
+ "resolved": "https://registry.npmjs.org/got/-/got-10.7.0.tgz",
+ "integrity": "sha512-aWTDeNw9g+XqEZNcTjMMZSy7B7yE9toWOFYip7ofFTLleJhvZwUxxTxkTpKvF+p1SAA4VHmuEy7PiHTHyq8tJg==",
+ "dev": true,
+ "requires": {
+ "@sindresorhus/is": "^2.0.0",
+ "@szmarczak/http-timer": "^4.0.0",
+ "@types/cacheable-request": "^6.0.1",
+ "cacheable-lookup": "^2.0.0",
+ "cacheable-request": "^7.0.1",
+ "decompress-response": "^5.0.0",
+ "duplexer3": "^0.1.4",
+ "get-stream": "^5.0.0",
+ "lowercase-keys": "^2.0.0",
+ "mimic-response": "^2.1.0",
+ "p-cancelable": "^2.0.0",
+ "p-event": "^4.0.0",
+ "responselike": "^2.0.0",
+ "to-readable-stream": "^2.0.0",
+ "type-fest": "^0.10.0"
+ },
+ "dependencies": {
+ "type-fest": {
+ "version": "0.10.0",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.10.0.tgz",
+ "integrity": "sha512-EUV9jo4sffrwlg8s0zDhP0T2WD3pru5Xi0+HTE3zTUmBaZNhfkite9PdSJwdXLwPVW0jnAHT56pZHIOYckPEiw==",
+ "dev": true
+ }
+ }
+ },
+ "graceful-fs": {
+ "version": "4.2.3",
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.3.tgz",
+ "integrity": "sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ=="
+ },
+ "graceful-readlink": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz",
+ "integrity": "sha1-TK+tdrxi8C+gObL5Tpo906ORpyU=",
+ "dev": true
+ },
+ "growl": {
+ "version": "1.9.2",
+ "resolved": "https://registry.npmjs.org/growl/-/growl-1.9.2.tgz",
+ "integrity": "sha1-Dqd0NxXbjY3ixe3hd14bRayFwC8=",
+ "dev": true
+ },
+ "growly": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz",
+ "integrity": "sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=",
+ "dev": true,
+ "optional": true
+ },
+ "har-schema": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz",
+ "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=",
+ "dev": true
+ },
+ "har-validator": {
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-2.0.6.tgz",
+ "integrity": "sha1-zcvAgYgmWtEZtqWnyKtw7s+10n0=",
+ "requires": {
+ "chalk": "^1.1.1",
+ "commander": "^2.9.0",
+ "is-my-json-valid": "^2.12.4",
+ "pinkie-promise": "^2.0.0"
+ },
+ "dependencies": {
+ "commander": {
+ "version": "2.20.3",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
+ "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="
+ }
+ }
+ },
+ "has": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
+ "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
+ "dev": true,
+ "requires": {
+ "function-bind": "^1.1.1"
+ }
+ },
+ "has-ansi": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz",
+ "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=",
+ "requires": {
+ "ansi-regex": "^2.0.0"
+ }
+ },
+ "has-binary2": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/has-binary2/-/has-binary2-1.0.3.tgz",
+ "integrity": "sha512-G1LWKhDSvhGeAQ8mPVQlqNcOB2sJdwATtZKl2pDKKHfpf/rYj24lkinxf69blJbnsvtqqNU+L3SL50vzZhXOnw==",
+ "dev": true,
+ "requires": {
+ "isarray": "2.0.1"
+ },
+ "dependencies": {
+ "isarray": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.1.tgz",
+ "integrity": "sha1-o32U7ZzaLVmGXJ92/llu4fM4dB4=",
+ "dev": true
+ }
+ }
+ },
+ "has-cors": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/has-cors/-/has-cors-1.1.0.tgz",
+ "integrity": "sha1-XkdHk/fqmEPRu5nCPu9J/xJv/zk=",
+ "dev": true
+ },
+ "has-flag": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
+ "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=",
+ "dev": true
+ },
+ "has-symbols": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
+ "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
+ "dev": true
+ },
+ "has-value": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz",
+ "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=",
+ "dev": true,
+ "requires": {
+ "get-value": "^2.0.6",
+ "has-values": "^1.0.0",
+ "isobject": "^3.0.0"
+ }
+ },
+ "has-values": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz",
+ "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=",
+ "dev": true,
+ "requires": {
+ "is-number": "^3.0.0",
+ "kind-of": "^4.0.0"
+ },
+ "dependencies": {
+ "kind-of": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz",
+ "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=",
+ "dev": true,
+ "requires": {
+ "is-buffer": "^1.1.5"
+ }
+ }
+ }
+ },
+ "hash-base": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz",
+ "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==",
+ "dev": true,
+ "requires": {
+ "inherits": "^2.0.4",
+ "readable-stream": "^3.6.0",
+ "safe-buffer": "^5.2.0"
+ },
+ "dependencies": {
+ "readable-stream": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
+ "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
+ "dev": true,
+ "requires": {
+ "inherits": "^2.0.3",
+ "string_decoder": "^1.1.1",
+ "util-deprecate": "^1.0.1"
+ }
+ },
+ "safe-buffer": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.0.tgz",
+ "integrity": "sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg==",
+ "dev": true
+ },
+ "string_decoder": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
+ "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
+ "dev": true,
+ "requires": {
+ "safe-buffer": "~5.2.0"
+ }
+ }
+ }
+ },
+ "hash.js": {
+ "version": "1.1.7",
+ "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz",
+ "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==",
+ "dev": true,
+ "requires": {
+ "inherits": "^2.0.3",
+ "minimalistic-assert": "^1.0.1"
+ }
+ },
+ "hasha": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/hasha/-/hasha-2.2.0.tgz",
+ "integrity": "sha1-eNfL/B5tZjA/55g3NlmEUXsvbuE=",
+ "requires": {
+ "is-stream": "^1.0.1",
+ "pinkie-promise": "^2.0.0"
+ }
+ },
+ "hawk": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz",
+ "integrity": "sha1-B4REvXwWQLD+VA0sm3PVlnjo4cQ=",
+ "requires": {
+ "boom": "2.x.x",
+ "cryptiles": "2.x.x",
+ "hoek": "2.x.x",
+ "sntp": "1.x.x"
+ }
+ },
+ "he": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz",
+ "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==",
+ "dev": true
+ },
+ "highcharts": {
+ "version": "8.0.4",
+ "resolved": "https://registry.npmjs.org/highcharts/-/highcharts-8.0.4.tgz",
+ "integrity": "sha512-RD86/w7VNwuY96c2Pv16dtZujJ4vg5viiVjbFF/TCrvFpmtQRzBIECG90ww0JtiK6+6TKlwCYf0an+kgQshnRw=="
+ },
+ "hmac-drbg": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz",
+ "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=",
+ "dev": true,
+ "requires": {
+ "hash.js": "^1.0.3",
+ "minimalistic-assert": "^1.0.0",
+ "minimalistic-crypto-utils": "^1.0.1"
+ }
+ },
+ "hoek": {
+ "version": "2.16.3",
+ "resolved": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz",
+ "integrity": "sha1-ILt0A9POo5jpHcRxCo/xuCdKJe0="
+ },
+ "homedir-polyfill": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz",
+ "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==",
+ "dev": true,
+ "requires": {
+ "parse-passwd": "^1.0.0"
+ }
+ },
+ "hosted-git-info": {
+ "version": "2.8.8",
+ "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz",
+ "integrity": "sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==",
+ "dev": true
+ },
+ "html-encoding-sniffer": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz",
+ "integrity": "sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw==",
+ "dev": true,
+ "requires": {
+ "whatwg-encoding": "^1.0.1"
+ }
+ },
+ "html-escaper": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.0.tgz",
+ "integrity": "sha512-a4u9BeERWGu/S8JiWEAQcdrg9v4QArtP9keViQjGMdff20fBdd8waotXaNmODqBe6uZ3Nafi7K/ho4gCQHV3Ig==",
+ "dev": true
+ },
+ "html-loader": {
+ "version": "0.5.5",
+ "resolved": "https://registry.npmjs.org/html-loader/-/html-loader-0.5.5.tgz",
+ "integrity": "sha512-7hIW7YinOYUpo//kSYcPB6dCKoceKLmOwjEMmhIobHuWGDVl0Nwe4l68mdG/Ru0wcUxQjVMEoZpkalZ/SE7zog==",
+ "dev": true,
+ "requires": {
+ "es6-templates": "^0.2.3",
+ "fastparse": "^1.1.1",
+ "html-minifier": "^3.5.8",
+ "loader-utils": "^1.1.0",
+ "object-assign": "^4.1.1"
+ }
+ },
+ "html-minifier": {
+ "version": "3.5.21",
+ "resolved": "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.21.tgz",
+ "integrity": "sha512-LKUKwuJDhxNa3uf/LPR/KVjm/l3rBqtYeCOAekvG8F1vItxMUpueGd94i/asDDr8/1u7InxzFA5EeGjhhG5mMA==",
+ "dev": true,
+ "requires": {
+ "camel-case": "3.0.x",
+ "clean-css": "4.2.x",
+ "commander": "2.17.x",
+ "he": "1.2.x",
+ "param-case": "2.1.x",
+ "relateurl": "0.2.x",
+ "uglify-js": "3.4.x"
+ },
+ "dependencies": {
+ "commander": {
+ "version": "2.17.1",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz",
+ "integrity": "sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==",
+ "dev": true
+ },
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ },
+ "uglify-js": {
+ "version": "3.4.10",
+ "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.10.tgz",
+ "integrity": "sha512-Y2VsbPVs0FIshJztycsO2SfPk7/KAF/T72qzv9u5EpQ4kB2hQoHlhNQTsNyy6ul7lQtqJN/AoWeS23OzEiEFxw==",
+ "dev": true,
+ "requires": {
+ "commander": "~2.19.0",
+ "source-map": "~0.6.1"
+ },
+ "dependencies": {
+ "commander": {
+ "version": "2.19.0",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-2.19.0.tgz",
+ "integrity": "sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg==",
+ "dev": true
+ }
+ }
+ }
+ }
+ },
+ "html-replace-webpack-plugin": {
+ "version": "2.5.6",
+ "resolved": "https://registry.npmjs.org/html-replace-webpack-plugin/-/html-replace-webpack-plugin-2.5.6.tgz",
+ "integrity": "sha512-McyP6qwQQJ01TyyRaVi7uLGXNXHVx5SqC53dPdByzB5JrQHXkzE2qMxQOewqaLl70ITmaDp+HhfJRWcB/7pbwA==",
+ "dev": true
+ },
+ "html-webpack-plugin": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-3.2.0.tgz",
+ "integrity": "sha1-sBq71yOsqqeze2r0SS69oD2d03s=",
+ "dev": true,
+ "requires": {
+ "html-minifier": "^3.2.3",
+ "loader-utils": "^0.2.16",
+ "lodash": "^4.17.3",
+ "pretty-error": "^2.0.2",
+ "tapable": "^1.0.0",
+ "toposort": "^1.0.0",
+ "util.promisify": "1.0.0"
+ },
+ "dependencies": {
+ "big.js": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz",
+ "integrity": "sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q==",
+ "dev": true
+ },
+ "emojis-list": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz",
+ "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=",
+ "dev": true
+ },
+ "json5": {
+ "version": "0.5.1",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz",
+ "integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=",
+ "dev": true
+ },
+ "loader-utils": {
+ "version": "0.2.17",
+ "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-0.2.17.tgz",
+ "integrity": "sha1-+G5jdNQyBabmxg6RlvF8Apm/s0g=",
+ "dev": true,
+ "requires": {
+ "big.js": "^3.1.3",
+ "emojis-list": "^2.0.0",
+ "json5": "^0.5.0",
+ "object-assign": "^4.0.1"
+ }
+ }
+ }
+ },
+ "htmlparser2": {
+ "version": "3.10.1",
+ "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz",
+ "integrity": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==",
+ "dev": true,
+ "requires": {
+ "domelementtype": "^1.3.1",
+ "domhandler": "^2.3.0",
+ "domutils": "^1.5.1",
+ "entities": "^1.1.1",
+ "inherits": "^2.0.1",
+ "readable-stream": "^3.1.1"
+ },
+ "dependencies": {
+ "entities": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz",
+ "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==",
+ "dev": true
+ },
+ "readable-stream": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
+ "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
+ "dev": true,
+ "requires": {
+ "inherits": "^2.0.3",
+ "string_decoder": "^1.1.1",
+ "util-deprecate": "^1.0.1"
+ }
+ },
+ "safe-buffer": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.0.tgz",
+ "integrity": "sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg==",
+ "dev": true
+ },
+ "string_decoder": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
+ "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
+ "dev": true,
+ "requires": {
+ "safe-buffer": "~5.2.0"
+ }
+ }
+ }
+ },
+ "http-cache-semantics": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz",
+ "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==",
+ "dev": true
+ },
+ "http-errors": {
+ "version": "1.7.3",
+ "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.3.tgz",
+ "integrity": "sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==",
+ "dev": true,
+ "requires": {
+ "depd": "~1.1.2",
+ "inherits": "2.0.4",
+ "setprototypeof": "1.1.1",
+ "statuses": ">= 1.5.0 < 2",
+ "toidentifier": "1.0.0"
+ },
+ "dependencies": {
+ "statuses": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz",
+ "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=",
+ "dev": true
+ }
+ }
+ },
+ "http-proxy": {
+ "version": "1.15.2",
+ "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.15.2.tgz",
+ "integrity": "sha1-ZC/cr/5S00SNK9o7AHnpQJBk2jE=",
+ "dev": true,
+ "requires": {
+ "eventemitter3": "1.x.x",
+ "requires-port": "1.x.x"
+ }
+ },
+ "http-proxy-agent": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-1.0.0.tgz",
+ "integrity": "sha1-zBzjjkU7+YSg93AtLdWcc9CBKEo=",
+ "dev": true,
+ "requires": {
+ "agent-base": "2",
+ "debug": "2",
+ "extend": "3"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ }
+ }
+ },
+ "http-signature": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz",
+ "integrity": "sha1-33LiZwZs0Kxn+3at+OE0qPvPkb8=",
+ "requires": {
+ "assert-plus": "^0.2.0",
+ "jsprim": "^1.2.2",
+ "sshpk": "^1.7.0"
+ }
+ },
+ "https-browserify": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz",
+ "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=",
+ "dev": true
+ },
+ "https-proxy-agent": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-1.0.0.tgz",
+ "integrity": "sha1-NffabEjOTdv6JkiRrFk+5f+GceY=",
+ "dev": true,
+ "requires": {
+ "agent-base": "2",
+ "debug": "2",
+ "extend": "3"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ }
+ }
+ },
+ "human-signals": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz",
+ "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==",
+ "dev": true
+ },
+ "hydrolysis": {
+ "version": "1.25.0",
+ "resolved": "https://registry.npmjs.org/hydrolysis/-/hydrolysis-1.25.0.tgz",
+ "integrity": "sha1-pPsUo3oeA7DbUtiqpXxoInKhTYQ=",
+ "dev": true,
+ "requires": {
+ "acorn": "^3.2.0",
+ "babel-polyfill": "^6.2.0",
+ "doctrine": "^0.7.0",
+ "dom5": "1.1.0",
+ "escodegen": "^1.7.0",
+ "espree": "^3.1.3",
+ "estraverse": "^3.1.0",
+ "path-is-absolute": "^1.0.0"
+ },
+ "dependencies": {
+ "acorn": {
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz",
+ "integrity": "sha1-ReN/s56No/JbruP/U2niu18iAXo=",
+ "dev": true
+ },
+ "acorn-jsx": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz",
+ "integrity": "sha1-r9+UiPsezvyDSPb7IvRk4ypYs2s=",
+ "dev": true,
+ "requires": {
+ "acorn": "^3.0.4"
+ }
+ },
+ "doctrine": {
+ "version": "0.7.2",
+ "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-0.7.2.tgz",
+ "integrity": "sha1-fLhgNZujvpDgQLJrcpzkv6ZUxSM=",
+ "dev": true,
+ "requires": {
+ "esutils": "^1.1.6",
+ "isarray": "0.0.1"
+ }
+ },
+ "dom5": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/dom5/-/dom5-1.1.0.tgz",
+ "integrity": "sha1-Ogx3AMCDq0xNJpOKeLDwxtzDd5Q=",
+ "dev": true,
+ "requires": {
+ "parse5": "^1.4.1"
+ }
+ },
+ "espree": {
+ "version": "3.5.4",
+ "resolved": "https://registry.npmjs.org/espree/-/espree-3.5.4.tgz",
+ "integrity": "sha512-yAcIQxtmMiB/jL32dzEp2enBeidsB7xWPLNiw3IIkpVds1P+h7qF9YwJq1yUNzp2OKXgAprs4F61ih66UsoD1A==",
+ "dev": true,
+ "requires": {
+ "acorn": "^5.5.0",
+ "acorn-jsx": "^3.0.0"
+ },
+ "dependencies": {
+ "acorn": {
+ "version": "5.7.4",
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.4.tgz",
+ "integrity": "sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==",
+ "dev": true
+ }
+ }
+ },
+ "estraverse": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-3.1.0.tgz",
+ "integrity": "sha1-FeKKRGuLgrxwDMyLlseK9NoNbLo=",
+ "dev": true
+ },
+ "esutils": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/esutils/-/esutils-1.1.6.tgz",
+ "integrity": "sha1-wBzKqa5LiXxtDD4hCuUvPHqEQ3U=",
+ "dev": true
+ }
+ }
+ },
+ "iconv-lite": {
+ "version": "0.4.24",
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
+ "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
+ "dev": true,
+ "requires": {
+ "safer-buffer": ">= 2.1.2 < 3"
+ }
+ },
+ "icss-utils": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-4.1.1.tgz",
+ "integrity": "sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==",
+ "dev": true,
+ "requires": {
+ "postcss": "^7.0.14"
+ }
+ },
+ "ieee754": {
+ "version": "1.1.13",
+ "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz",
+ "integrity": "sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==",
+ "dev": true
+ },
+ "iferr": {
+ "version": "0.1.5",
+ "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz",
+ "integrity": "sha1-xg7taebY/bazEEofy8ocGS3FtQE=",
+ "dev": true
+ },
+ "ignore": {
+ "version": "3.3.10",
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz",
+ "integrity": "sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==",
+ "dev": true
+ },
+ "imagesloaded": {
+ "version": "4.1.4",
+ "resolved": "https://registry.npmjs.org/imagesloaded/-/imagesloaded-4.1.4.tgz",
+ "integrity": "sha512-ltiBVcYpc/TYTF5nolkMNsnREHW+ICvfQ3Yla2Sgr71YFwQ86bDwV9hgpFhFtrGPuwEx5+LqOHIrdXBdoWwwsA==",
+ "requires": {
+ "ev-emitter": "^1.0.0"
+ }
+ },
+ "immutable": {
+ "version": "3.8.2",
+ "resolved": "https://registry.npmjs.org/immutable/-/immutable-3.8.2.tgz",
+ "integrity": "sha1-wkOZUUVbs5kT2vKBN28VMOEErfM=",
+ "dev": true
+ },
+ "import-fresh": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.2.1.tgz",
+ "integrity": "sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==",
+ "dev": true,
+ "requires": {
+ "parent-module": "^1.0.0",
+ "resolve-from": "^4.0.0"
+ },
+ "dependencies": {
+ "resolve-from": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
+ "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
+ "dev": true
+ }
+ }
+ },
+ "import-local": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz",
+ "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==",
+ "dev": true,
+ "requires": {
+ "pkg-dir": "^3.0.0",
+ "resolve-cwd": "^2.0.0"
+ }
+ },
+ "imurmurhash": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
+ "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=",
+ "dev": true
+ },
+ "indent-string": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-3.2.0.tgz",
+ "integrity": "sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok=",
+ "dev": true
+ },
+ "indexes-of": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz",
+ "integrity": "sha1-8w9xbI4r00bHtn0985FVZqfAVgc=",
+ "dev": true
+ },
+ "indexof": {
+ "version": "0.0.1",
+ "resolved": "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz",
+ "integrity": "sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10=",
+ "dev": true
+ },
+ "infer-owner": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz",
+ "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==",
+ "dev": true
+ },
+ "inflight": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
+ "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=",
+ "requires": {
+ "once": "^1.3.0",
+ "wrappy": "1"
+ }
+ },
+ "inherits": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
+ },
+ "ini": {
+ "version": "1.3.5",
+ "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz",
+ "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==",
+ "dev": true
+ },
+ "inquirer": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.1.0.tgz",
+ "integrity": "sha512-5fJMWEmikSYu0nv/flMc475MhGbB7TSPd/2IpFV4I4rMklboCH2rQjYY5kKiYGHqUF9gvaambupcJFFG9dvReg==",
+ "dev": true,
+ "requires": {
+ "ansi-escapes": "^4.2.1",
+ "chalk": "^3.0.0",
+ "cli-cursor": "^3.1.0",
+ "cli-width": "^2.0.0",
+ "external-editor": "^3.0.3",
+ "figures": "^3.0.0",
+ "lodash": "^4.17.15",
+ "mute-stream": "0.0.8",
+ "run-async": "^2.4.0",
+ "rxjs": "^6.5.3",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0",
+ "through": "^2.3.6"
+ },
+ "dependencies": {
+ "ansi-regex": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
+ "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==",
+ "dev": true
+ },
+ "ansi-styles": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
+ "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
+ "dev": true,
+ "requires": {
+ "@types/color-name": "^1.1.1",
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
+ "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "cli-cursor": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz",
+ "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==",
+ "dev": true,
+ "requires": {
+ "restore-cursor": "^3.1.0"
+ }
+ },
+ "color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "requires": {
+ "color-name": "~1.1.4"
+ }
+ },
+ "color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "is-fullwidth-code-point": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
+ "dev": true
+ },
+ "restore-cursor": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz",
+ "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==",
+ "dev": true,
+ "requires": {
+ "onetime": "^5.1.0",
+ "signal-exit": "^3.0.2"
+ }
+ },
+ "rxjs": {
+ "version": "6.5.4",
+ "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.5.4.tgz",
+ "integrity": "sha512-naMQXcgEo3csAEGvw/NydRA0fuS2nDZJiw1YUWFKU7aPPAPGZEsD4Iimit96qwCieH6y614MCLYwdkrWx7z/7Q==",
+ "dev": true,
+ "requires": {
+ "tslib": "^1.9.0"
+ }
+ },
+ "string-width": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz",
+ "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==",
+ "dev": true,
+ "requires": {
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.0"
+ }
+ },
+ "strip-ansi": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz",
+ "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==",
+ "dev": true,
+ "requires": {
+ "ansi-regex": "^5.0.0"
+ }
+ },
+ "supports-color": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
+ "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "interpret": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.2.0.tgz",
+ "integrity": "sha512-mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw==",
+ "dev": true
+ },
+ "invariant": {
+ "version": "2.2.4",
+ "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz",
+ "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==",
+ "dev": true,
+ "requires": {
+ "loose-envify": "^1.0.0"
+ }
+ },
+ "invert-kv": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz",
+ "integrity": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=",
+ "dev": true
+ },
+ "ip": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/ip/-/ip-1.0.1.tgz",
+ "integrity": "sha1-x+NWzeoiWucbNtcPLnGpK6TkJZA=",
+ "dev": true
+ },
+ "ip-regex": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz",
+ "integrity": "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=",
+ "dev": true
+ },
+ "is-accessor-descriptor": {
+ "version": "0.1.6",
+ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz",
+ "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=",
+ "dev": true,
+ "requires": {
+ "kind-of": "^3.0.2"
+ },
+ "dependencies": {
+ "kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "requires": {
+ "is-buffer": "^1.1.5"
+ }
+ }
+ }
+ },
+ "is-arrayish": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
+ "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=",
+ "dev": true
+ },
+ "is-binary-path": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz",
+ "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=",
+ "dev": true,
+ "requires": {
+ "binary-extensions": "^1.0.0"
+ }
+ },
+ "is-buffer": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
+ "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==",
+ "dev": true
+ },
+ "is-builtin-module": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-3.0.0.tgz",
+ "integrity": "sha512-/93sDihsAD652hrMEbJGbMAVBf1qc96kyThHQ0CAOONHaE3aROLpTjDe4WQ5aoC5ITHFxEq1z8XqSU7km+8amw==",
+ "dev": true,
+ "requires": {
+ "builtin-modules": "^3.0.0"
+ }
+ },
+ "is-callable": {
+ "version": "1.1.5",
+ "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.5.tgz",
+ "integrity": "sha512-ESKv5sMCJB2jnHTWZ3O5itG+O128Hsus4K4Qh1h2/cgn2vbgnLSVqfV46AeJA9D5EeeLa9w81KUXMtn34zhX+Q==",
+ "dev": true
+ },
+ "is-ci": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz",
+ "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==",
+ "dev": true,
+ "requires": {
+ "ci-info": "^2.0.0"
+ }
+ },
+ "is-data-descriptor": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz",
+ "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=",
+ "dev": true,
+ "requires": {
+ "kind-of": "^3.0.2"
+ },
+ "dependencies": {
+ "kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "requires": {
+ "is-buffer": "^1.1.5"
+ }
+ }
+ }
+ },
+ "is-date-object": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz",
+ "integrity": "sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==",
+ "dev": true
+ },
+ "is-descriptor": {
+ "version": "0.1.6",
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
+ "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
+ "dev": true,
+ "requires": {
+ "is-accessor-descriptor": "^0.1.6",
+ "is-data-descriptor": "^0.1.4",
+ "kind-of": "^5.0.0"
+ },
+ "dependencies": {
+ "kind-of": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
+ "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==",
+ "dev": true
+ }
+ }
+ },
+ "is-extendable": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+ "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+ "dev": true
+ },
+ "is-extglob": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
+ "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=",
+ "dev": true
+ },
+ "is-fullwidth-code-point": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz",
+ "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=",
+ "dev": true,
+ "requires": {
+ "number-is-nan": "^1.0.0"
+ }
+ },
+ "is-generator-fn": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz",
+ "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==",
+ "dev": true
+ },
+ "is-glob": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz",
+ "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==",
+ "dev": true,
+ "requires": {
+ "is-extglob": "^2.1.1"
+ }
+ },
+ "is-installed-globally": {
+ "version": "0.3.2",
+ "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.3.2.tgz",
+ "integrity": "sha512-wZ8x1js7Ia0kecP/CHM/3ABkAmujX7WPvQk6uu3Fly/Mk44pySulQpnHG46OMjHGXApINnV4QhY3SWnECO2z5g==",
+ "dev": true,
+ "requires": {
+ "global-dirs": "^2.0.1",
+ "is-path-inside": "^3.0.1"
+ },
+ "dependencies": {
+ "is-path-inside": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.2.tgz",
+ "integrity": "sha512-/2UGPSgmtqwo1ktx8NDHjuPwZWmHhO+gj0f93EkhLB5RgW9RZevWYYlIkS6zePc6U2WpOdQYIwHe9YC4DWEBVg==",
+ "dev": true
+ }
+ }
+ },
+ "is-module": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz",
+ "integrity": "sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=",
+ "dev": true
+ },
+ "is-my-ip-valid": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-my-ip-valid/-/is-my-ip-valid-1.0.0.tgz",
+ "integrity": "sha512-gmh/eWXROncUzRnIa1Ubrt5b8ep/MGSnfAUI3aRp+sqTCs1tv1Isl8d8F6JmkN3dXKc3ehZMrtiPN9eL03NuaQ=="
+ },
+ "is-my-json-valid": {
+ "version": "2.20.0",
+ "resolved": "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.20.0.tgz",
+ "integrity": "sha512-XTHBZSIIxNsIsZXg7XB5l8z/OBFosl1Wao4tXLpeC7eKU4Vm/kdop2azkPqULwnfGQjmeDIyey9g7afMMtdWAA==",
+ "requires": {
+ "generate-function": "^2.0.0",
+ "generate-object-property": "^1.1.0",
+ "is-my-ip-valid": "^1.0.0",
+ "jsonpointer": "^4.0.0",
+ "xtend": "^4.0.0"
+ }
+ },
+ "is-number": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz",
+ "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=",
+ "dev": true,
+ "requires": {
+ "kind-of": "^3.0.2"
+ },
+ "dependencies": {
+ "kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "requires": {
+ "is-buffer": "^1.1.5"
+ }
+ }
+ }
+ },
+ "is-number-like": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/is-number-like/-/is-number-like-1.0.8.tgz",
+ "integrity": "sha512-6rZi3ezCyFcn5L71ywzz2bS5b2Igl1En3eTlZlvKjpz1n3IZLAYMbKYAIQgFmEu0GENg92ziU/faEOA/aixjbA==",
+ "dev": true,
+ "requires": {
+ "lodash.isfinite": "^3.3.2"
+ }
+ },
+ "is-observable": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/is-observable/-/is-observable-1.1.0.tgz",
+ "integrity": "sha512-NqCa4Sa2d+u7BWc6CukaObG3Fh+CU9bvixbpcXYhy2VvYS7vVGIdAgnIS5Ks3A/cqk4rebLJ9s8zBstT2aKnIA==",
+ "dev": true,
+ "requires": {
+ "symbol-observable": "^1.1.0"
+ },
+ "dependencies": {
+ "symbol-observable": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz",
+ "integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==",
+ "dev": true
+ }
+ }
+ },
+ "is-path-cwd": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz",
+ "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==",
+ "dev": true
+ },
+ "is-path-in-cwd": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz",
+ "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==",
+ "dev": true,
+ "requires": {
+ "is-path-inside": "^2.1.0"
+ }
+ },
+ "is-path-inside": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz",
+ "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==",
+ "dev": true,
+ "requires": {
+ "path-is-inside": "^1.0.2"
+ }
+ },
+ "is-plain-object": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz",
+ "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==",
+ "dev": true,
+ "requires": {
+ "isobject": "^3.0.1"
+ }
+ },
+ "is-promise": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz",
+ "integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=",
+ "dev": true
+ },
+ "is-property": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz",
+ "integrity": "sha1-V/4cTkhHTt1lsJkR8msc1Ald2oQ="
+ },
+ "is-reference": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-1.1.4.tgz",
+ "integrity": "sha512-uJA/CDPO3Tao3GTrxYn6AwkM4nUPJiGGYu5+cB8qbC7WGFlrKZbiRo7SFKxUAEpFUfiHofWCXBUNhvYJMh+6zw==",
+ "dev": true,
+ "requires": {
+ "@types/estree": "0.0.39"
+ },
+ "dependencies": {
+ "@types/estree": {
+ "version": "0.0.39",
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz",
+ "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==",
+ "dev": true
+ }
+ }
+ },
+ "is-regex": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.5.tgz",
+ "integrity": "sha512-vlKW17SNq44owv5AQR3Cq0bQPEb8+kF3UKZ2fiZNOWtztYE5i0CzCZxFDwO58qAOWtxdBRVO/V5Qin1wjCqFYQ==",
+ "dev": true,
+ "requires": {
+ "has": "^1.0.3"
+ }
+ },
+ "is-stream": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz",
+ "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ="
+ },
+ "is-string": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz",
+ "integrity": "sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==",
+ "dev": true
+ },
+ "is-symbol": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz",
+ "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==",
+ "dev": true,
+ "requires": {
+ "has-symbols": "^1.0.1"
+ }
+ },
+ "is-typedarray": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
+ "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo="
+ },
+ "is-utf8": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz",
+ "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=",
+ "dev": true
+ },
+ "is-windows": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz",
+ "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==",
+ "dev": true
+ },
+ "is-wsl": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz",
+ "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=",
+ "dev": true
+ },
+ "isarray": {
+ "version": "0.0.1",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz",
+ "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8="
+ },
+ "isexe": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
+ "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA="
+ },
+ "isobject": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz",
+ "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=",
+ "dev": true
+ },
+ "isstream": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz",
+ "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo="
+ },
+ "istanbul-lib-coverage": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz",
+ "integrity": "sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==",
+ "dev": true
+ },
+ "istanbul-lib-instrument": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.1.tgz",
+ "integrity": "sha512-imIchxnodll7pvQBYOqUu88EufLCU56LMeFPZZM/fJZ1irYcYdqroaV+ACK1Ila8ls09iEYArp+nqyC6lW1Vfg==",
+ "dev": true,
+ "requires": {
+ "@babel/core": "^7.7.5",
+ "@babel/parser": "^7.7.5",
+ "@babel/template": "^7.7.4",
+ "@babel/traverse": "^7.7.4",
+ "@istanbuljs/schema": "^0.1.2",
+ "istanbul-lib-coverage": "^3.0.0",
+ "semver": "^6.3.0"
+ },
+ "dependencies": {
+ "semver": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
+ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "dev": true
+ }
+ }
+ },
+ "istanbul-lib-report": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz",
+ "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==",
+ "dev": true,
+ "requires": {
+ "istanbul-lib-coverage": "^3.0.0",
+ "make-dir": "^3.0.0",
+ "supports-color": "^7.1.0"
+ },
+ "dependencies": {
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "make-dir": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.0.2.tgz",
+ "integrity": "sha512-rYKABKutXa6vXTXhoV18cBE7PaewPXHe/Bdq4v+ZLMhxbWApkFFplT0LcbMW+6BbjnQXzZ/sAvSE/JdguApG5w==",
+ "dev": true,
+ "requires": {
+ "semver": "^6.0.0"
+ }
+ },
+ "semver": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
+ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
+ "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "istanbul-lib-source-maps": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz",
+ "integrity": "sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg==",
+ "dev": true,
+ "requires": {
+ "debug": "^4.1.1",
+ "istanbul-lib-coverage": "^3.0.0",
+ "source-map": "^0.6.1"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
+ "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
+ "dev": true,
+ "requires": {
+ "ms": "^2.1.1"
+ }
+ },
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ }
+ }
+ },
+ "istanbul-reports": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.0.0.tgz",
+ "integrity": "sha512-2osTcC8zcOSUkImzN2EWQta3Vdi4WjjKw99P2yWx5mLnigAM0Rd5uYFn1cf2i/Ois45GkNjaoTqc5CxgMSX80A==",
+ "dev": true,
+ "requires": {
+ "html-escaper": "^2.0.0",
+ "istanbul-lib-report": "^3.0.0"
+ }
+ },
+ "jest": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/jest/-/jest-25.1.0.tgz",
+ "integrity": "sha512-FV6jEruneBhokkt9MQk0WUFoNTwnF76CLXtwNMfsc0um0TlB/LG2yxUd0KqaFjEJ9laQmVWQWS0sG/t2GsuI0w==",
+ "dev": true,
+ "requires": {
+ "@jest/core": "^25.1.0",
+ "import-local": "^3.0.2",
+ "jest-cli": "^25.1.0"
+ },
+ "dependencies": {
+ "ansi-regex": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
+ "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==",
+ "dev": true
+ },
+ "ansi-styles": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
+ "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
+ "dev": true,
+ "requires": {
+ "@types/color-name": "^1.1.1",
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
+ "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "cliui": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz",
+ "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==",
+ "dev": true,
+ "requires": {
+ "string-width": "^4.2.0",
+ "strip-ansi": "^6.0.0",
+ "wrap-ansi": "^6.2.0"
+ }
+ },
+ "color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "requires": {
+ "color-name": "~1.1.4"
+ }
+ },
+ "color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true
+ },
+ "find-up": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
+ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
+ "dev": true,
+ "requires": {
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
+ }
+ },
+ "get-caller-file": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
+ "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
+ "dev": true
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "import-local": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.0.2.tgz",
+ "integrity": "sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA==",
+ "dev": true,
+ "requires": {
+ "pkg-dir": "^4.2.0",
+ "resolve-cwd": "^3.0.0"
+ }
+ },
+ "is-fullwidth-code-point": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
+ "dev": true
+ },
+ "jest-cli": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-25.1.0.tgz",
+ "integrity": "sha512-p+aOfczzzKdo3AsLJlhs8J5EW6ffVidfSZZxXedJ0mHPBOln1DccqFmGCoO8JWd4xRycfmwy1eoQkMsF8oekPg==",
+ "dev": true,
+ "requires": {
+ "@jest/core": "^25.1.0",
+ "@jest/test-result": "^25.1.0",
+ "@jest/types": "^25.1.0",
+ "chalk": "^3.0.0",
+ "exit": "^0.1.2",
+ "import-local": "^3.0.2",
+ "is-ci": "^2.0.0",
+ "jest-config": "^25.1.0",
+ "jest-util": "^25.1.0",
+ "jest-validate": "^25.1.0",
+ "prompts": "^2.0.1",
+ "realpath-native": "^1.1.0",
+ "yargs": "^15.0.0"
+ }
+ },
+ "locate-path": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
+ "dev": true,
+ "requires": {
+ "p-locate": "^4.1.0"
+ }
+ },
+ "p-locate": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
+ "dev": true,
+ "requires": {
+ "p-limit": "^2.2.0"
+ }
+ },
+ "path-exists": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
+ "dev": true
+ },
+ "pkg-dir": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
+ "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
+ "dev": true,
+ "requires": {
+ "find-up": "^4.0.0"
+ }
+ },
+ "require-main-filename": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz",
+ "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==",
+ "dev": true
+ },
+ "resolve-cwd": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz",
+ "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==",
+ "dev": true,
+ "requires": {
+ "resolve-from": "^5.0.0"
+ }
+ },
+ "string-width": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz",
+ "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==",
+ "dev": true,
+ "requires": {
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.0"
+ }
+ },
+ "strip-ansi": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz",
+ "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==",
+ "dev": true,
+ "requires": {
+ "ansi-regex": "^5.0.0"
+ }
+ },
+ "supports-color": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
+ "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ },
+ "which-module": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz",
+ "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=",
+ "dev": true
+ },
+ "wrap-ansi": {
+ "version": "6.2.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
+ "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
+ }
+ },
+ "y18n": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz",
+ "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==",
+ "dev": true
+ },
+ "yargs": {
+ "version": "15.3.1",
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.3.1.tgz",
+ "integrity": "sha512-92O1HWEjw27sBfgmXiixJWT5hRBp2eobqXicLtPBIDBhYB+1HpwZlXmbW2luivBJHBzki+7VyCLRtAkScbTBQA==",
+ "dev": true,
+ "requires": {
+ "cliui": "^6.0.0",
+ "decamelize": "^1.2.0",
+ "find-up": "^4.1.0",
+ "get-caller-file": "^2.0.1",
+ "require-directory": "^2.1.1",
+ "require-main-filename": "^2.0.0",
+ "set-blocking": "^2.0.0",
+ "string-width": "^4.2.0",
+ "which-module": "^2.0.0",
+ "y18n": "^4.0.0",
+ "yargs-parser": "^18.1.1"
+ }
+ },
+ "yargs-parser": {
+ "version": "18.1.1",
+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.1.tgz",
+ "integrity": "sha512-KRHEsOM16IX7XuLnMOqImcPNbLVXMNHYAoFc3BKR8Ortl5gzDbtXvvEoGx9imk5E+X1VeNKNlcHr8B8vi+7ipA==",
+ "dev": true,
+ "requires": {
+ "camelcase": "^5.0.0",
+ "decamelize": "^1.2.0"
+ }
+ }
+ }
+ },
+ "jest-changed-files": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-25.1.0.tgz",
+ "integrity": "sha512-bdL1aHjIVy3HaBO3eEQeemGttsq1BDlHgWcOjEOIAcga7OOEGWHD2WSu8HhL7I1F0mFFyci8VKU4tRNk+qtwDA==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^25.1.0",
+ "execa": "^3.2.0",
+ "throat": "^5.0.0"
+ },
+ "dependencies": {
+ "execa": {
+ "version": "3.4.0",
+ "resolved": "https://registry.npmjs.org/execa/-/execa-3.4.0.tgz",
+ "integrity": "sha512-r9vdGQk4bmCuK1yKQu1KTwcT2zwfWdbdaXfCtAh+5nU/4fSX+JAb7vZGvI5naJrQlvONrEB20jeruESI69530g==",
+ "dev": true,
+ "requires": {
+ "cross-spawn": "^7.0.0",
+ "get-stream": "^5.0.0",
+ "human-signals": "^1.1.1",
+ "is-stream": "^2.0.0",
+ "merge-stream": "^2.0.0",
+ "npm-run-path": "^4.0.0",
+ "onetime": "^5.1.0",
+ "p-finally": "^2.0.0",
+ "signal-exit": "^3.0.2",
+ "strip-final-newline": "^2.0.0"
+ }
+ },
+ "is-stream": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz",
+ "integrity": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==",
+ "dev": true
+ },
+ "npm-run-path": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz",
+ "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==",
+ "dev": true,
+ "requires": {
+ "path-key": "^3.0.0"
+ }
+ }
+ }
+ },
+ "jest-config": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-25.1.0.tgz",
+ "integrity": "sha512-tLmsg4SZ5H7tuhBC5bOja0HEblM0coS3Wy5LTCb2C8ZV6eWLewHyK+3qSq9Bi29zmWQ7ojdCd3pxpx4l4d2uGw==",
+ "dev": true,
+ "requires": {
+ "@babel/core": "^7.1.0",
+ "@jest/test-sequencer": "^25.1.0",
+ "@jest/types": "^25.1.0",
+ "babel-jest": "^25.1.0",
+ "chalk": "^3.0.0",
+ "glob": "^7.1.1",
+ "jest-environment-jsdom": "^25.1.0",
+ "jest-environment-node": "^25.1.0",
+ "jest-get-type": "^25.1.0",
+ "jest-jasmine2": "^25.1.0",
+ "jest-regex-util": "^25.1.0",
+ "jest-resolve": "^25.1.0",
+ "jest-util": "^25.1.0",
+ "jest-validate": "^25.1.0",
+ "micromatch": "^4.0.2",
+ "pretty-format": "^25.1.0",
+ "realpath-native": "^1.1.0"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
+ "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
+ "dev": true,
+ "requires": {
+ "@types/color-name": "^1.1.1",
+ "color-convert": "^2.0.1"
+ }
+ },
+ "braces": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
+ "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
+ "dev": true,
+ "requires": {
+ "fill-range": "^7.0.1"
+ }
+ },
+ "chalk": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
+ "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "requires": {
+ "color-name": "~1.1.4"
+ }
+ },
+ "color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true
+ },
+ "fill-range": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
+ "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
+ "dev": true,
+ "requires": {
+ "to-regex-range": "^5.0.1"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "is-number": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
+ "dev": true
+ },
+ "micromatch": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz",
+ "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==",
+ "dev": true,
+ "requires": {
+ "braces": "^3.0.1",
+ "picomatch": "^2.0.5"
+ }
+ },
+ "supports-color": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
+ "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ },
+ "to-regex-range": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
+ "dev": true,
+ "requires": {
+ "is-number": "^7.0.0"
+ }
+ }
+ }
+ },
+ "jest-diff": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-25.1.0.tgz",
+ "integrity": "sha512-nepXgajT+h017APJTreSieh4zCqnSHEJ1iT8HDlewu630lSJ4Kjjr9KNzm+kzGwwcpsDE6Snx1GJGzzsefaEHw==",
+ "dev": true,
+ "requires": {
+ "chalk": "^3.0.0",
+ "diff-sequences": "^25.1.0",
+ "jest-get-type": "^25.1.0",
+ "pretty-format": "^25.1.0"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
+ "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
+ "dev": true,
+ "requires": {
+ "@types/color-name": "^1.1.1",
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
+ "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "requires": {
+ "color-name": "~1.1.4"
+ }
+ },
+ "color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
+ "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "jest-docblock": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-25.1.0.tgz",
+ "integrity": "sha512-370P/mh1wzoef6hUKiaMcsPtIapY25suP6JqM70V9RJvdKLrV4GaGbfUseUVk4FZJw4oTZ1qSCJNdrClKt5JQA==",
+ "dev": true,
+ "requires": {
+ "detect-newline": "^3.0.0"
+ }
+ },
+ "jest-each": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-25.1.0.tgz",
+ "integrity": "sha512-R9EL8xWzoPySJ5wa0DXFTj7NrzKpRD40Jy+zQDp3Qr/2QmevJgkN9GqioCGtAJ2bW9P/MQRznQHQQhoeAyra7A==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^25.1.0",
+ "chalk": "^3.0.0",
+ "jest-get-type": "^25.1.0",
+ "jest-util": "^25.1.0",
+ "pretty-format": "^25.1.0"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
+ "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
+ "dev": true,
+ "requires": {
+ "@types/color-name": "^1.1.1",
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
+ "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "requires": {
+ "color-name": "~1.1.4"
+ }
+ },
+ "color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
+ "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "jest-environment-jsdom": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-25.1.0.tgz",
+ "integrity": "sha512-ILb4wdrwPAOHX6W82GGDUiaXSSOE274ciuov0lztOIymTChKFtC02ddyicRRCdZlB5YSrv3vzr1Z5xjpEe1OHQ==",
+ "dev": true,
+ "requires": {
+ "@jest/environment": "^25.1.0",
+ "@jest/fake-timers": "^25.1.0",
+ "@jest/types": "^25.1.0",
+ "jest-mock": "^25.1.0",
+ "jest-util": "^25.1.0",
+ "jsdom": "^15.1.1"
+ }
+ },
+ "jest-environment-node": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-25.1.0.tgz",
+ "integrity": "sha512-U9kFWTtAPvhgYY5upnH9rq8qZkj6mYLup5l1caAjjx9uNnkLHN2xgZy5mo4SyLdmrh/EtB9UPpKFShvfQHD0Iw==",
+ "dev": true,
+ "requires": {
+ "@jest/environment": "^25.1.0",
+ "@jest/fake-timers": "^25.1.0",
+ "@jest/types": "^25.1.0",
+ "jest-mock": "^25.1.0",
+ "jest-util": "^25.1.0"
+ }
+ },
+ "jest-get-type": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-25.1.0.tgz",
+ "integrity": "sha512-yWkBnT+5tMr8ANB6V+OjmrIJufHtCAqI5ic2H40v+tRqxDmE0PGnIiTyvRWFOMtmVHYpwRqyazDbTnhpjsGvLw==",
+ "dev": true
+ },
+ "jest-haste-map": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-25.1.0.tgz",
+ "integrity": "sha512-/2oYINIdnQZAqyWSn1GTku571aAfs8NxzSErGek65Iu5o8JYb+113bZysRMcC/pjE5v9w0Yz+ldbj9NxrFyPyw==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^25.1.0",
+ "anymatch": "^3.0.3",
+ "fb-watchman": "^2.0.0",
+ "fsevents": "^2.1.2",
+ "graceful-fs": "^4.2.3",
+ "jest-serializer": "^25.1.0",
+ "jest-util": "^25.1.0",
+ "jest-worker": "^25.1.0",
+ "micromatch": "^4.0.2",
+ "sane": "^4.0.3",
+ "walker": "^1.0.7"
+ },
+ "dependencies": {
+ "anymatch": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz",
+ "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==",
+ "dev": true,
+ "requires": {
+ "normalize-path": "^3.0.0",
+ "picomatch": "^2.0.4"
+ }
+ },
+ "braces": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
+ "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
+ "dev": true,
+ "requires": {
+ "fill-range": "^7.0.1"
+ }
+ },
+ "fill-range": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
+ "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
+ "dev": true,
+ "requires": {
+ "to-regex-range": "^5.0.1"
+ }
+ },
+ "fsevents": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.2.tgz",
+ "integrity": "sha512-R4wDiBwZ0KzpgOWetKDug1FZcYhqYnUYKtfZYt4mD5SBz76q0KR4Q9o7GIPamsVPGmW3EYPPJ0dOOjvx32ldZA==",
+ "dev": true,
+ "optional": true
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "is-number": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
+ "dev": true
+ },
+ "jest-worker": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-25.1.0.tgz",
+ "integrity": "sha512-ZHhHtlxOWSxCoNOKHGbiLzXnl42ga9CxDr27H36Qn+15pQZd3R/F24jrmjDelw9j/iHUIWMWs08/u2QN50HHOg==",
+ "dev": true,
+ "requires": {
+ "merge-stream": "^2.0.0",
+ "supports-color": "^7.0.0"
+ }
+ },
+ "micromatch": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz",
+ "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==",
+ "dev": true,
+ "requires": {
+ "braces": "^3.0.1",
+ "picomatch": "^2.0.5"
+ }
+ },
+ "supports-color": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
+ "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ },
+ "to-regex-range": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
+ "dev": true,
+ "requires": {
+ "is-number": "^7.0.0"
+ }
+ }
+ }
+ },
+ "jest-jasmine2": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-25.1.0.tgz",
+ "integrity": "sha512-GdncRq7jJ7sNIQ+dnXvpKO2MyP6j3naNK41DTTjEAhLEdpImaDA9zSAZwDhijjSF/D7cf4O5fdyUApGBZleaEg==",
+ "dev": true,
+ "requires": {
+ "@babel/traverse": "^7.1.0",
+ "@jest/environment": "^25.1.0",
+ "@jest/source-map": "^25.1.0",
+ "@jest/test-result": "^25.1.0",
+ "@jest/types": "^25.1.0",
+ "chalk": "^3.0.0",
+ "co": "^4.6.0",
+ "expect": "^25.1.0",
+ "is-generator-fn": "^2.0.0",
+ "jest-each": "^25.1.0",
+ "jest-matcher-utils": "^25.1.0",
+ "jest-message-util": "^25.1.0",
+ "jest-runtime": "^25.1.0",
+ "jest-snapshot": "^25.1.0",
+ "jest-util": "^25.1.0",
+ "pretty-format": "^25.1.0",
+ "throat": "^5.0.0"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
+ "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
+ "dev": true,
+ "requires": {
+ "@types/color-name": "^1.1.1",
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
+ "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "co": {
+ "version": "4.6.0",
+ "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz",
+ "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=",
+ "dev": true
+ },
+ "color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "requires": {
+ "color-name": "~1.1.4"
+ }
+ },
+ "color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
+ "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "jest-leak-detector": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-25.1.0.tgz",
+ "integrity": "sha512-3xRI264dnhGaMHRvkFyEKpDeaRzcEBhyNrOG5oT8xPxOyUAblIAQnpiR3QXu4wDor47MDTiHbiFcbypdLcLW5w==",
+ "dev": true,
+ "requires": {
+ "jest-get-type": "^25.1.0",
+ "pretty-format": "^25.1.0"
+ }
+ },
+ "jest-matcher-utils": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-25.1.0.tgz",
+ "integrity": "sha512-KGOAFcSFbclXIFE7bS4C53iYobKI20ZWleAdAFun4W1Wz1Kkej8Ng6RRbhL8leaEvIOjGXhGf/a1JjO8bkxIWQ==",
+ "dev": true,
+ "requires": {
+ "chalk": "^3.0.0",
+ "jest-diff": "^25.1.0",
+ "jest-get-type": "^25.1.0",
+ "pretty-format": "^25.1.0"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
+ "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
+ "dev": true,
+ "requires": {
+ "@types/color-name": "^1.1.1",
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
+ "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "requires": {
+ "color-name": "~1.1.4"
+ }
+ },
+ "color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
+ "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "jest-message-util": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-25.1.0.tgz",
+ "integrity": "sha512-Nr/Iwar2COfN22aCqX0kCVbXgn8IBm9nWf4xwGr5Olv/KZh0CZ32RKgZWMVDXGdOahicM10/fgjdimGNX/ttCQ==",
+ "dev": true,
+ "requires": {
+ "@babel/code-frame": "^7.0.0",
+ "@jest/test-result": "^25.1.0",
+ "@jest/types": "^25.1.0",
+ "@types/stack-utils": "^1.0.1",
+ "chalk": "^3.0.0",
+ "micromatch": "^4.0.2",
+ "slash": "^3.0.0",
+ "stack-utils": "^1.0.1"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
+ "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
+ "dev": true,
+ "requires": {
+ "@types/color-name": "^1.1.1",
+ "color-convert": "^2.0.1"
+ }
+ },
+ "braces": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
+ "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
+ "dev": true,
+ "requires": {
+ "fill-range": "^7.0.1"
+ }
+ },
+ "chalk": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
+ "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "requires": {
+ "color-name": "~1.1.4"
+ }
+ },
+ "color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true
+ },
+ "fill-range": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
+ "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
+ "dev": true,
+ "requires": {
+ "to-regex-range": "^5.0.1"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "is-number": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
+ "dev": true
+ },
+ "micromatch": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz",
+ "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==",
+ "dev": true,
+ "requires": {
+ "braces": "^3.0.1",
+ "picomatch": "^2.0.5"
+ }
+ },
+ "supports-color": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
+ "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ },
+ "to-regex-range": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
+ "dev": true,
+ "requires": {
+ "is-number": "^7.0.0"
+ }
+ }
+ }
+ },
+ "jest-mock": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-25.1.0.tgz",
+ "integrity": "sha512-28/u0sqS+42vIfcd1mlcg4ZVDmSUYuNvImP4X2lX5hRMLW+CN0BeiKVD4p+ujKKbSPKd3rg/zuhCF+QBLJ4vag==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^25.1.0"
+ }
+ },
+ "jest-pnp-resolver": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.1.tgz",
+ "integrity": "sha512-pgFw2tm54fzgYvc/OHrnysABEObZCUNFnhjoRjaVOCN8NYc032/gVjPaHD4Aq6ApkSieWtfKAFQtmDKAmhupnQ==",
+ "dev": true
+ },
+ "jest-regex-util": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-25.1.0.tgz",
+ "integrity": "sha512-9lShaDmDpqwg+xAd73zHydKrBbbrIi08Kk9YryBEBybQFg/lBWR/2BDjjiSE7KIppM9C5+c03XiDaZ+m4Pgs1w==",
+ "dev": true
+ },
+ "jest-resolve": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-25.1.0.tgz",
+ "integrity": "sha512-XkBQaU1SRCHj2Evz2Lu4Czs+uIgJXWypfO57L7JYccmAXv4slXA6hzNblmcRmf7P3cQ1mE7fL3ABV6jAwk4foQ==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^25.1.0",
+ "browser-resolve": "^1.11.3",
+ "chalk": "^3.0.0",
+ "jest-pnp-resolver": "^1.2.1",
+ "realpath-native": "^1.1.0"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
+ "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
+ "dev": true,
+ "requires": {
+ "@types/color-name": "^1.1.1",
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
+ "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "requires": {
+ "color-name": "~1.1.4"
+ }
+ },
+ "color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
+ "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "jest-resolve-dependencies": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-25.1.0.tgz",
+ "integrity": "sha512-Cu/Je38GSsccNy4I2vL12ZnBlD170x2Oh1devzuM9TLH5rrnLW1x51lN8kpZLYTvzx9j+77Y5pqBaTqfdzVzrw==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^25.1.0",
+ "jest-regex-util": "^25.1.0",
+ "jest-snapshot": "^25.1.0"
+ }
+ },
+ "jest-runner": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-25.1.0.tgz",
+ "integrity": "sha512-su3O5fy0ehwgt+e8Wy7A8CaxxAOCMzL4gUBftSs0Ip32S0epxyZPDov9Znvkl1nhVOJNf4UwAsnqfc3plfQH9w==",
+ "dev": true,
+ "requires": {
+ "@jest/console": "^25.1.0",
+ "@jest/environment": "^25.1.0",
+ "@jest/test-result": "^25.1.0",
+ "@jest/types": "^25.1.0",
+ "chalk": "^3.0.0",
+ "exit": "^0.1.2",
+ "graceful-fs": "^4.2.3",
+ "jest-config": "^25.1.0",
+ "jest-docblock": "^25.1.0",
+ "jest-haste-map": "^25.1.0",
+ "jest-jasmine2": "^25.1.0",
+ "jest-leak-detector": "^25.1.0",
+ "jest-message-util": "^25.1.0",
+ "jest-resolve": "^25.1.0",
+ "jest-runtime": "^25.1.0",
+ "jest-util": "^25.1.0",
+ "jest-worker": "^25.1.0",
+ "source-map-support": "^0.5.6",
+ "throat": "^5.0.0"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
+ "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
+ "dev": true,
+ "requires": {
+ "@types/color-name": "^1.1.1",
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
+ "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "requires": {
+ "color-name": "~1.1.4"
+ }
+ },
+ "color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "jest-worker": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-25.1.0.tgz",
+ "integrity": "sha512-ZHhHtlxOWSxCoNOKHGbiLzXnl42ga9CxDr27H36Qn+15pQZd3R/F24jrmjDelw9j/iHUIWMWs08/u2QN50HHOg==",
+ "dev": true,
+ "requires": {
+ "merge-stream": "^2.0.0",
+ "supports-color": "^7.0.0"
+ }
+ },
+ "supports-color": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
+ "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "jest-runtime": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-25.1.0.tgz",
+ "integrity": "sha512-mpPYYEdbExKBIBB16ryF6FLZTc1Rbk9Nx0ryIpIMiDDkOeGa0jQOKVI/QeGvVGlunKKm62ywcioeFVzIbK03bA==",
+ "dev": true,
+ "requires": {
+ "@jest/console": "^25.1.0",
+ "@jest/environment": "^25.1.0",
+ "@jest/source-map": "^25.1.0",
+ "@jest/test-result": "^25.1.0",
+ "@jest/transform": "^25.1.0",
+ "@jest/types": "^25.1.0",
+ "@types/yargs": "^15.0.0",
+ "chalk": "^3.0.0",
+ "collect-v8-coverage": "^1.0.0",
+ "exit": "^0.1.2",
+ "glob": "^7.1.3",
+ "graceful-fs": "^4.2.3",
+ "jest-config": "^25.1.0",
+ "jest-haste-map": "^25.1.0",
+ "jest-message-util": "^25.1.0",
+ "jest-mock": "^25.1.0",
+ "jest-regex-util": "^25.1.0",
+ "jest-resolve": "^25.1.0",
+ "jest-snapshot": "^25.1.0",
+ "jest-util": "^25.1.0",
+ "jest-validate": "^25.1.0",
+ "realpath-native": "^1.1.0",
+ "slash": "^3.0.0",
+ "strip-bom": "^4.0.0",
+ "yargs": "^15.0.0"
+ },
+ "dependencies": {
+ "ansi-regex": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
+ "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==",
+ "dev": true
+ },
+ "ansi-styles": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
+ "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
+ "dev": true,
+ "requires": {
+ "@types/color-name": "^1.1.1",
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
+ "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "cliui": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz",
+ "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==",
+ "dev": true,
+ "requires": {
+ "string-width": "^4.2.0",
+ "strip-ansi": "^6.0.0",
+ "wrap-ansi": "^6.2.0"
+ }
+ },
+ "color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "requires": {
+ "color-name": "~1.1.4"
+ }
+ },
+ "color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true
+ },
+ "find-up": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
+ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
+ "dev": true,
+ "requires": {
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
+ }
+ },
+ "get-caller-file": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
+ "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
+ "dev": true
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "is-fullwidth-code-point": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
+ "dev": true
+ },
+ "locate-path": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
+ "dev": true,
+ "requires": {
+ "p-locate": "^4.1.0"
+ }
+ },
+ "p-locate": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
+ "dev": true,
+ "requires": {
+ "p-limit": "^2.2.0"
+ }
+ },
+ "path-exists": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
+ "dev": true
+ },
+ "require-main-filename": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz",
+ "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==",
+ "dev": true
+ },
+ "string-width": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz",
+ "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==",
+ "dev": true,
+ "requires": {
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.0"
+ }
+ },
+ "strip-ansi": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz",
+ "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==",
+ "dev": true,
+ "requires": {
+ "ansi-regex": "^5.0.0"
+ }
+ },
+ "strip-bom": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz",
+ "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
+ "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ },
+ "which-module": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz",
+ "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=",
+ "dev": true
+ },
+ "wrap-ansi": {
+ "version": "6.2.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
+ "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
+ }
+ },
+ "y18n": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz",
+ "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==",
+ "dev": true
+ },
+ "yargs": {
+ "version": "15.3.1",
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.3.1.tgz",
+ "integrity": "sha512-92O1HWEjw27sBfgmXiixJWT5hRBp2eobqXicLtPBIDBhYB+1HpwZlXmbW2luivBJHBzki+7VyCLRtAkScbTBQA==",
+ "dev": true,
+ "requires": {
+ "cliui": "^6.0.0",
+ "decamelize": "^1.2.0",
+ "find-up": "^4.1.0",
+ "get-caller-file": "^2.0.1",
+ "require-directory": "^2.1.1",
+ "require-main-filename": "^2.0.0",
+ "set-blocking": "^2.0.0",
+ "string-width": "^4.2.0",
+ "which-module": "^2.0.0",
+ "y18n": "^4.0.0",
+ "yargs-parser": "^18.1.1"
+ }
+ },
+ "yargs-parser": {
+ "version": "18.1.1",
+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.1.tgz",
+ "integrity": "sha512-KRHEsOM16IX7XuLnMOqImcPNbLVXMNHYAoFc3BKR8Ortl5gzDbtXvvEoGx9imk5E+X1VeNKNlcHr8B8vi+7ipA==",
+ "dev": true,
+ "requires": {
+ "camelcase": "^5.0.0",
+ "decamelize": "^1.2.0"
+ }
+ }
+ }
+ },
+ "jest-serializer": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-25.1.0.tgz",
+ "integrity": "sha512-20Wkq5j7o84kssBwvyuJ7Xhn7hdPeTXndnwIblKDR2/sy1SUm6rWWiG9kSCgJPIfkDScJCIsTtOKdlzfIHOfKA==",
+ "dev": true
+ },
+ "jest-snapshot": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-25.1.0.tgz",
+ "integrity": "sha512-xZ73dFYN8b/+X2hKLXz4VpBZGIAn7muD/DAg+pXtDzDGw3iIV10jM7WiHqhCcpDZfGiKEj7/2HXAEPtHTj0P2A==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.0.0",
+ "@jest/types": "^25.1.0",
+ "chalk": "^3.0.0",
+ "expect": "^25.1.0",
+ "jest-diff": "^25.1.0",
+ "jest-get-type": "^25.1.0",
+ "jest-matcher-utils": "^25.1.0",
+ "jest-message-util": "^25.1.0",
+ "jest-resolve": "^25.1.0",
+ "mkdirp": "^0.5.1",
+ "natural-compare": "^1.4.0",
+ "pretty-format": "^25.1.0",
+ "semver": "^7.1.1"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
+ "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
+ "dev": true,
+ "requires": {
+ "@types/color-name": "^1.1.1",
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
+ "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "requires": {
+ "color-name": "~1.1.4"
+ }
+ },
+ "color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "minimist": {
+ "version": "1.2.5",
+ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz",
+ "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==",
+ "dev": true
+ },
+ "mkdirp": {
+ "version": "0.5.3",
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.3.tgz",
+ "integrity": "sha512-P+2gwrFqx8lhew375MQHHeTlY8AuOJSrGf0R5ddkEndUkmwpgUob/vQuBD1V22/Cw1/lJr4x+EjllSezBThzBg==",
+ "dev": true,
+ "requires": {
+ "minimist": "^1.2.5"
+ }
+ },
+ "semver": {
+ "version": "7.1.3",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.1.3.tgz",
+ "integrity": "sha512-ekM0zfiA9SCBlsKa2X1hxyxiI4L3B6EbVJkkdgQXnSEEaHlGdvyodMruTiulSRWMMB4NeIuYNMC9rTKTz97GxA==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
+ "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "jest-util": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-25.1.0.tgz",
+ "integrity": "sha512-7did6pLQ++87Qsj26Fs/TIwZMUFBXQ+4XXSodRNy3luch2DnRXsSnmpVtxxQ0Yd6WTipGpbhh2IFP1mq6/fQGw==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^25.1.0",
+ "chalk": "^3.0.0",
+ "is-ci": "^2.0.0",
+ "mkdirp": "^0.5.1"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
+ "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
+ "dev": true,
+ "requires": {
+ "@types/color-name": "^1.1.1",
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
+ "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "requires": {
+ "color-name": "~1.1.4"
+ }
+ },
+ "color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "minimist": {
+ "version": "1.2.5",
+ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz",
+ "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==",
+ "dev": true
+ },
+ "mkdirp": {
+ "version": "0.5.3",
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.3.tgz",
+ "integrity": "sha512-P+2gwrFqx8lhew375MQHHeTlY8AuOJSrGf0R5ddkEndUkmwpgUob/vQuBD1V22/Cw1/lJr4x+EjllSezBThzBg==",
+ "dev": true,
+ "requires": {
+ "minimist": "^1.2.5"
+ }
+ },
+ "supports-color": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
+ "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "jest-validate": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-25.1.0.tgz",
+ "integrity": "sha512-kGbZq1f02/zVO2+t1KQGSVoCTERc5XeObLwITqC6BTRH3Adv7NZdYqCpKIZLUgpLXf2yISzQ465qOZpul8abXA==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^25.1.0",
+ "camelcase": "^5.3.1",
+ "chalk": "^3.0.0",
+ "jest-get-type": "^25.1.0",
+ "leven": "^3.1.0",
+ "pretty-format": "^25.1.0"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
+ "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
+ "dev": true,
+ "requires": {
+ "@types/color-name": "^1.1.1",
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
+ "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "requires": {
+ "color-name": "~1.1.4"
+ }
+ },
+ "color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
+ "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "jest-watcher": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-25.1.0.tgz",
+ "integrity": "sha512-Q9eZ7pyaIr6xfU24OeTg4z1fUqBF/4MP6J801lyQfg7CsnZ/TCzAPvCfckKdL5dlBBEKBeHV0AdyjFZ5eWj4ig==",
+ "dev": true,
+ "requires": {
+ "@jest/test-result": "^25.1.0",
+ "@jest/types": "^25.1.0",
+ "ansi-escapes": "^4.2.1",
+ "chalk": "^3.0.0",
+ "jest-util": "^25.1.0",
+ "string-length": "^3.1.0"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
+ "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
+ "dev": true,
+ "requires": {
+ "@types/color-name": "^1.1.1",
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
+ "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "requires": {
+ "color-name": "~1.1.4"
+ }
+ },
+ "color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
+ "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "jest-worker": {
+ "version": "24.9.0",
+ "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-24.9.0.tgz",
+ "integrity": "sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==",
+ "dev": true,
+ "requires": {
+ "merge-stream": "^2.0.0",
+ "supports-color": "^6.1.0"
+ },
+ "dependencies": {
+ "supports-color": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
+ "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^3.0.0"
+ }
+ }
+ }
+ },
+ "jquery": {
+ "version": "2.2.4",
+ "resolved": "https://registry.npmjs.org/jquery/-/jquery-2.2.4.tgz",
+ "integrity": "sha1-LInWiJterFIqfuoywUUhVZxsvwI="
+ },
+ "jquery.json-viewer": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/jquery.json-viewer/-/jquery.json-viewer-1.4.0.tgz",
+ "integrity": "sha512-6H1U/w+/8vMwDH5Im0OveuKPZ1fZWy7hgvR3Cn+HeamQIoWrVqBuRaE2TF/xEc6Hmi3vhQVRqZBmYGKTdOo2tw=="
+ },
+ "js-beautify": {
+ "version": "1.6.14",
+ "resolved": "https://registry.npmjs.org/js-beautify/-/js-beautify-1.6.14.tgz",
+ "integrity": "sha1-07j3Mi0CuSd9WL0jgmTDJ+WARM0=",
+ "dev": true,
+ "requires": {
+ "config-chain": "~1.1.5",
+ "editorconfig": "^0.13.2",
+ "mkdirp": "~0.5.0",
+ "nopt": "~3.0.1"
+ },
+ "dependencies": {
+ "mkdirp": {
+ "version": "0.5.1",
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
+ "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=",
+ "dev": true,
+ "requires": {
+ "minimist": "0.0.8"
+ }
+ }
+ }
+ },
+ "js-tokens": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
+ "dev": true
+ },
+ "js-yaml": {
+ "version": "3.13.1",
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz",
+ "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==",
+ "dev": true,
+ "requires": {
+ "argparse": "^1.0.7",
+ "esprima": "^4.0.0"
+ }
+ },
+ "jsbn": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz",
+ "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM="
+ },
+ "jsdom": {
+ "version": "15.2.1",
+ "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-15.2.1.tgz",
+ "integrity": "sha512-fAl1W0/7T2G5vURSyxBzrJ1LSdQn6Tr5UX/xD4PXDx/PDgwygedfW6El/KIj3xJ7FU61TTYnc/l/B7P49Eqt6g==",
+ "dev": true,
+ "requires": {
+ "abab": "^2.0.0",
+ "acorn": "^7.1.0",
+ "acorn-globals": "^4.3.2",
+ "array-equal": "^1.0.0",
+ "cssom": "^0.4.1",
+ "cssstyle": "^2.0.0",
+ "data-urls": "^1.1.0",
+ "domexception": "^1.0.1",
+ "escodegen": "^1.11.1",
+ "html-encoding-sniffer": "^1.0.2",
+ "nwsapi": "^2.2.0",
+ "parse5": "5.1.0",
+ "pn": "^1.1.0",
+ "request": "^2.88.0",
+ "request-promise-native": "^1.0.7",
+ "saxes": "^3.1.9",
+ "symbol-tree": "^3.2.2",
+ "tough-cookie": "^3.0.1",
+ "w3c-hr-time": "^1.0.1",
+ "w3c-xmlserializer": "^1.1.2",
+ "webidl-conversions": "^4.0.2",
+ "whatwg-encoding": "^1.0.5",
+ "whatwg-mimetype": "^2.3.0",
+ "whatwg-url": "^7.0.0",
+ "ws": "^7.0.0",
+ "xml-name-validator": "^3.0.0"
+ },
+ "dependencies": {
+ "assert-plus": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
+ "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=",
+ "dev": true
+ },
+ "aws-sign2": {
+ "version": "0.7.0",
+ "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz",
+ "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=",
+ "dev": true
+ },
+ "caseless": {
+ "version": "0.12.0",
+ "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz",
+ "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=",
+ "dev": true
+ },
+ "form-data": {
+ "version": "2.3.3",
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz",
+ "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==",
+ "dev": true,
+ "requires": {
+ "asynckit": "^0.4.0",
+ "combined-stream": "^1.0.6",
+ "mime-types": "^2.1.12"
+ }
+ },
+ "har-validator": {
+ "version": "5.1.3",
+ "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz",
+ "integrity": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==",
+ "dev": true,
+ "requires": {
+ "ajv": "^6.5.5",
+ "har-schema": "^2.0.0"
+ }
+ },
+ "http-signature": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz",
+ "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=",
+ "dev": true,
+ "requires": {
+ "assert-plus": "^1.0.0",
+ "jsprim": "^1.2.2",
+ "sshpk": "^1.7.0"
+ }
+ },
+ "oauth-sign": {
+ "version": "0.9.0",
+ "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz",
+ "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==",
+ "dev": true
+ },
+ "parse5": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/parse5/-/parse5-5.1.0.tgz",
+ "integrity": "sha512-fxNG2sQjHvlVAYmzBZS9YlDp6PTSSDwa98vkD4QgVDDCAo84z5X1t5XyJQ62ImdLXx5NdIIfihey6xpum9/gRQ==",
+ "dev": true
+ },
+ "qs": {
+ "version": "6.5.2",
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz",
+ "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==",
+ "dev": true
+ },
+ "request": {
+ "version": "2.88.2",
+ "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz",
+ "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==",
+ "dev": true,
+ "requires": {
+ "aws-sign2": "~0.7.0",
+ "aws4": "^1.8.0",
+ "caseless": "~0.12.0",
+ "combined-stream": "~1.0.6",
+ "extend": "~3.0.2",
+ "forever-agent": "~0.6.1",
+ "form-data": "~2.3.2",
+ "har-validator": "~5.1.3",
+ "http-signature": "~1.2.0",
+ "is-typedarray": "~1.0.0",
+ "isstream": "~0.1.2",
+ "json-stringify-safe": "~5.0.1",
+ "mime-types": "~2.1.19",
+ "oauth-sign": "~0.9.0",
+ "performance-now": "^2.1.0",
+ "qs": "~6.5.2",
+ "safe-buffer": "^5.1.2",
+ "tough-cookie": "~2.5.0",
+ "tunnel-agent": "^0.6.0",
+ "uuid": "^3.3.2"
+ },
+ "dependencies": {
+ "tough-cookie": {
+ "version": "2.5.0",
+ "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz",
+ "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==",
+ "dev": true,
+ "requires": {
+ "psl": "^1.1.28",
+ "punycode": "^2.1.1"
+ }
+ }
+ }
+ },
+ "tough-cookie": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-3.0.1.tgz",
+ "integrity": "sha512-yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg==",
+ "dev": true,
+ "requires": {
+ "ip-regex": "^2.1.0",
+ "psl": "^1.1.28",
+ "punycode": "^2.1.1"
+ }
+ },
+ "tunnel-agent": {
+ "version": "0.6.0",
+ "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
+ "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=",
+ "dev": true,
+ "requires": {
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "uuid": {
+ "version": "3.4.0",
+ "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
+ "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==",
+ "dev": true
+ },
+ "ws": {
+ "version": "7.2.3",
+ "resolved": "https://registry.npmjs.org/ws/-/ws-7.2.3.tgz",
+ "integrity": "sha512-HTDl9G9hbkNDk98naoR/cHDws7+EyYMOdL1BmjsZXRUjf7d+MficC4B7HLUPlSiho0vg+CWKrGIt/VJBd1xunQ==",
+ "dev": true
+ }
+ }
+ },
+ "jsesc": {
+ "version": "2.5.2",
+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz",
+ "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==",
+ "dev": true
+ },
+ "json-buffer": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
+ "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
+ "dev": true
+ },
+ "json-parse-better-errors": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz",
+ "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==",
+ "dev": true
+ },
+ "json-schema": {
+ "version": "0.2.3",
+ "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz",
+ "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM="
+ },
+ "json-schema-traverse": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
+ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
+ "dev": true
+ },
+ "json-stable-stringify-without-jsonify": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
+ "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=",
+ "dev": true
+ },
+ "json-stringify-safe": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
+ "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus="
+ },
+ "json3": {
+ "version": "3.3.2",
+ "resolved": "https://registry.npmjs.org/json3/-/json3-3.3.2.tgz",
+ "integrity": "sha1-PAQ0dD35Pi9cQq7nsZvLSDV19OE=",
+ "dev": true
+ },
+ "json5": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz",
+ "integrity": "sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==",
+ "dev": true,
+ "requires": {
+ "minimist": "^1.2.5"
+ },
+ "dependencies": {
+ "minimist": {
+ "version": "1.2.5",
+ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz",
+ "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==",
+ "dev": true
+ }
+ }
+ },
+ "jsonfile": {
+ "version": "2.4.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz",
+ "integrity": "sha1-NzaitCi4e72gzIO1P6PWM6NcKug=",
+ "requires": {
+ "graceful-fs": "^4.1.6"
+ }
+ },
+ "jsonpointer": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-4.0.1.tgz",
+ "integrity": "sha1-T9kss04OnbPInIYi7PUfm5eMbLk="
+ },
+ "jsonschema": {
+ "version": "1.2.6",
+ "resolved": "https://registry.npmjs.org/jsonschema/-/jsonschema-1.2.6.tgz",
+ "integrity": "sha512-SqhURKZG07JyKKeo/ir24QnS4/BV7a6gQy93bUSe4lUdNp0QNpIz2c9elWJQ9dpc5cQYY6cvCzgRwy0MQCLyqA==",
+ "dev": true
+ },
+ "jsprim": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz",
+ "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=",
+ "requires": {
+ "assert-plus": "1.0.0",
+ "extsprintf": "1.3.0",
+ "json-schema": "0.2.3",
+ "verror": "1.10.0"
+ },
+ "dependencies": {
+ "assert-plus": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
+ "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU="
+ }
+ }
+ },
+ "jwt-decode": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/jwt-decode/-/jwt-decode-2.2.0.tgz",
+ "integrity": "sha1-fYa9VmefWM5qhHBKZX3TkruoGnk="
+ },
+ "kew": {
+ "version": "0.7.0",
+ "resolved": "https://registry.npmjs.org/kew/-/kew-0.7.0.tgz",
+ "integrity": "sha1-edk9LTM2PW/dKXCzNdkUGtWR15s="
+ },
+ "keypress": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/keypress/-/keypress-0.1.0.tgz",
+ "integrity": "sha1-SjGI1CkbZrT2XtuZ+AaqmuKTWSo="
+ },
+ "keyv": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.0.1.tgz",
+ "integrity": "sha512-xz6Jv6oNkbhrFCvCP7HQa8AaII8y8LRpoSm661NOKLr4uHuBwhX4epXrPQgF3+xdJnN4Esm5X0xwY4bOlALOtw==",
+ "dev": true,
+ "requires": {
+ "json-buffer": "3.0.1"
+ }
+ },
+ "kind-of": {
+ "version": "6.0.3",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
+ "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
+ "dev": true
+ },
+ "klaw": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz",
+ "integrity": "sha1-QIhDO0azsbolnXh4XY6W9zugJDk=",
+ "requires": {
+ "graceful-fs": "^4.1.9"
+ }
+ },
+ "kleur": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz",
+ "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==",
+ "dev": true
+ },
+ "lazy-ass": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/lazy-ass/-/lazy-ass-1.6.0.tgz",
+ "integrity": "sha1-eZllXoZGwX8In90YfRUNMyTVRRM=",
+ "dev": true
+ },
+ "lcid": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz",
+ "integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=",
+ "dev": true,
+ "requires": {
+ "invert-kv": "^1.0.0"
+ }
+ },
+ "leven": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz",
+ "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==",
+ "dev": true
+ },
+ "levenary": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/levenary/-/levenary-1.1.1.tgz",
+ "integrity": "sha512-mkAdOIt79FD6irqjYSs4rdbnlT5vRonMEvBVPVb3XmevfS8kgRXwfes0dhPdEtzTWD/1eNE/Bm/G1iRt6DcnQQ==",
+ "dev": true,
+ "requires": {
+ "leven": "^3.1.0"
+ }
+ },
+ "levn": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz",
+ "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=",
+ "dev": true,
+ "requires": {
+ "prelude-ls": "~1.1.2",
+ "type-check": "~0.3.2"
+ }
+ },
+ "limiter": {
+ "version": "1.1.5",
+ "resolved": "https://registry.npmjs.org/limiter/-/limiter-1.1.5.tgz",
+ "integrity": "sha512-FWWMIEOxz3GwUI4Ts/IvgVy6LPvoMPgjMdQ185nN6psJyBJ4yOpzqm695/h5umdLJg2vW3GR5iG11MAkR2AzJA==",
+ "dev": true
+ },
+ "lines-and-columns": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz",
+ "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=",
+ "dev": true
+ },
+ "listr": {
+ "version": "0.14.3",
+ "resolved": "https://registry.npmjs.org/listr/-/listr-0.14.3.tgz",
+ "integrity": "sha512-RmAl7su35BFd/xoMamRjpIE4j3v+L28o8CT5YhAXQJm1fD+1l9ngXY8JAQRJ+tFK2i5njvi0iRUKV09vPwA0iA==",
+ "dev": true,
+ "requires": {
+ "@samverschueren/stream-to-observable": "^0.3.0",
+ "is-observable": "^1.1.0",
+ "is-promise": "^2.1.0",
+ "is-stream": "^1.1.0",
+ "listr-silent-renderer": "^1.1.1",
+ "listr-update-renderer": "^0.5.0",
+ "listr-verbose-renderer": "^0.5.0",
+ "p-map": "^2.0.0",
+ "rxjs": "^6.3.3"
+ },
+ "dependencies": {
+ "rxjs": {
+ "version": "6.6.2",
+ "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.2.tgz",
+ "integrity": "sha512-BHdBMVoWC2sL26w//BCu3YzKT4s2jip/WhwsGEDmeKYBhKDZeYezVUnHatYB7L85v5xs0BAQmg6BEYJEKxBabg==",
+ "dev": true,
+ "requires": {
+ "tslib": "^1.9.0"
+ }
+ }
+ }
+ },
+ "listr-silent-renderer": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz",
+ "integrity": "sha1-kktaN1cVN3C/Go4/v3S4u/P5JC4=",
+ "dev": true
+ },
+ "listr-update-renderer": {
+ "version": "0.5.0",
+ "resolved": "https://registry.npmjs.org/listr-update-renderer/-/listr-update-renderer-0.5.0.tgz",
+ "integrity": "sha512-tKRsZpKz8GSGqoI/+caPmfrypiaq+OQCbd+CovEC24uk1h952lVj5sC7SqyFUm+OaJ5HN/a1YLt5cit2FMNsFA==",
+ "dev": true,
+ "requires": {
+ "chalk": "^1.1.3",
+ "cli-truncate": "^0.2.1",
+ "elegant-spinner": "^1.0.1",
+ "figures": "^1.7.0",
+ "indent-string": "^3.0.0",
+ "log-symbols": "^1.0.2",
+ "log-update": "^2.3.0",
+ "strip-ansi": "^3.0.1"
+ },
+ "dependencies": {
+ "figures": {
+ "version": "1.7.0",
+ "resolved": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz",
+ "integrity": "sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4=",
+ "dev": true,
+ "requires": {
+ "escape-string-regexp": "^1.0.5",
+ "object-assign": "^4.1.0"
+ }
+ },
+ "log-symbols": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-1.0.2.tgz",
+ "integrity": "sha1-N2/3tY6jCGoPCfrMdGF+ylAeGhg=",
+ "dev": true,
+ "requires": {
+ "chalk": "^1.0.0"
+ }
+ }
+ }
+ },
+ "listr-verbose-renderer": {
+ "version": "0.5.0",
+ "resolved": "https://registry.npmjs.org/listr-verbose-renderer/-/listr-verbose-renderer-0.5.0.tgz",
+ "integrity": "sha512-04PDPqSlsqIOaaaGZ+41vq5FejI9auqTInicFRndCBgE3bXG8D6W1I+mWhk+1nqbHmyhla/6BUrd5OSiHwKRXw==",
+ "dev": true,
+ "requires": {
+ "chalk": "^2.4.1",
+ "cli-cursor": "^2.1.0",
+ "date-fns": "^1.27.2",
+ "figures": "^2.0.0"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
+ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^1.9.0"
+ }
+ },
+ "chalk": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
+ "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^3.2.1",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^5.3.0"
+ }
+ },
+ "figures": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz",
+ "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=",
+ "dev": true,
+ "requires": {
+ "escape-string-regexp": "^1.0.5"
+ }
+ },
+ "supports-color": {
+ "version": "5.5.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
+ "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^3.0.0"
+ }
+ }
+ }
+ },
+ "lit-element": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/lit-element/-/lit-element-2.3.1.tgz",
+ "integrity": "sha512-tOcUAmeO3BzwiQ7FGWdsshNvC0HVHcTFYw/TLIImmKwXYoV0E7zCBASa8IJ7DiP4cen/Yoj454gS0qqTnIGsFA==",
+ "requires": {
+ "lit-html": "^1.1.1"
+ }
+ },
+ "lit-html": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/lit-html/-/lit-html-1.2.1.tgz",
+ "integrity": "sha512-GSJHHXMGLZDzTRq59IUfL9FCdAlGfqNp/dEa7k7aBaaWD+JKaCjsAk9KYm2V12ItonVaYx2dprN66Zdm1AuBTQ=="
+ },
+ "load-json-file": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz",
+ "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=",
+ "dev": true,
+ "requires": {
+ "graceful-fs": "^4.1.2",
+ "parse-json": "^2.2.0",
+ "pify": "^2.0.0",
+ "pinkie-promise": "^2.0.0",
+ "strip-bom": "^2.0.0"
+ },
+ "dependencies": {
+ "pify": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
+ "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=",
+ "dev": true
+ }
+ }
+ },
+ "loader-runner": {
+ "version": "2.4.0",
+ "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz",
+ "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==",
+ "dev": true
+ },
+ "loader-utils": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz",
+ "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==",
+ "dev": true,
+ "requires": {
+ "big.js": "^5.2.2",
+ "emojis-list": "^3.0.0",
+ "json5": "^1.0.1"
+ },
+ "dependencies": {
+ "json5": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
+ "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==",
+ "dev": true,
+ "requires": {
+ "minimist": "^1.2.0"
+ }
+ },
+ "minimist": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz",
+ "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=",
+ "dev": true
+ }
+ }
+ },
+ "localtunnel": {
+ "version": "1.9.2",
+ "resolved": "https://registry.npmjs.org/localtunnel/-/localtunnel-1.9.2.tgz",
+ "integrity": "sha512-NEKF7bDJE9U3xzJu3kbayF0WTvng6Pww7tzqNb/XtEARYwqw7CKEX7BvOMg98FtE9es2CRizl61gkV3hS8dqYg==",
+ "dev": true,
+ "requires": {
+ "axios": "0.19.0",
+ "debug": "4.1.1",
+ "openurl": "1.1.1",
+ "yargs": "6.6.0"
+ },
+ "dependencies": {
+ "camelcase": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz",
+ "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=",
+ "dev": true
+ },
+ "debug": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
+ "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
+ "dev": true,
+ "requires": {
+ "ms": "^2.1.1"
+ }
+ },
+ "yargs": {
+ "version": "6.6.0",
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-6.6.0.tgz",
+ "integrity": "sha1-eC7CHvQDNF+DCoCMo9UTr1YGUgg=",
+ "dev": true,
+ "requires": {
+ "camelcase": "^3.0.0",
+ "cliui": "^3.2.0",
+ "decamelize": "^1.1.1",
+ "get-caller-file": "^1.0.1",
+ "os-locale": "^1.4.0",
+ "read-pkg-up": "^1.0.1",
+ "require-directory": "^2.1.1",
+ "require-main-filename": "^1.0.1",
+ "set-blocking": "^2.0.0",
+ "string-width": "^1.0.2",
+ "which-module": "^1.0.0",
+ "y18n": "^3.2.1",
+ "yargs-parser": "^4.2.0"
+ }
+ },
+ "yargs-parser": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-4.2.1.tgz",
+ "integrity": "sha1-KczqwNxPA8bIe0qfIX3RjJ90hxw=",
+ "dev": true,
+ "requires": {
+ "camelcase": "^3.0.0"
+ }
+ }
+ }
+ },
+ "locate-path": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz",
+ "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==",
+ "dev": true,
+ "requires": {
+ "p-locate": "^3.0.0",
+ "path-exists": "^3.0.0"
+ }
+ },
+ "lodash": {
+ "version": "4.17.19",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz",
+ "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ=="
+ },
+ "lodash._arraycopy": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/lodash._arraycopy/-/lodash._arraycopy-3.0.0.tgz",
+ "integrity": "sha1-due3wfH7klRzdIeKVi7Qaj5Q9uE=",
+ "dev": true
+ },
+ "lodash._arrayeach": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/lodash._arrayeach/-/lodash._arrayeach-3.0.0.tgz",
+ "integrity": "sha1-urFWsqkNPxu9XGU0AzSeXlkz754=",
+ "dev": true
+ },
+ "lodash._baseassign": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz",
+ "integrity": "sha1-jDigmVAPIVrQnlnxci/QxSv+Ck4=",
+ "dev": true,
+ "requires": {
+ "lodash._basecopy": "^3.0.0",
+ "lodash.keys": "^3.0.0"
+ }
+ },
+ "lodash._baseclone": {
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/lodash._baseclone/-/lodash._baseclone-3.3.0.tgz",
+ "integrity": "sha1-MDUZv2OT/n5C802LYw73eU41Qrc=",
+ "dev": true,
+ "requires": {
+ "lodash._arraycopy": "^3.0.0",
+ "lodash._arrayeach": "^3.0.0",
+ "lodash._baseassign": "^3.0.0",
+ "lodash._basefor": "^3.0.0",
+ "lodash.isarray": "^3.0.0",
+ "lodash.keys": "^3.0.0"
+ }
+ },
+ "lodash._basecopy": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz",
+ "integrity": "sha1-jaDmqHbPNEwK2KVIghEd08XHyjY=",
+ "dev": true
+ },
+ "lodash._basecreate": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/lodash._basecreate/-/lodash._basecreate-3.0.3.tgz",
+ "integrity": "sha1-G8ZhYU2qf8MRt9A78WgGoCE8+CE=",
+ "dev": true
+ },
+ "lodash._basefor": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/lodash._basefor/-/lodash._basefor-3.0.3.tgz",
+ "integrity": "sha1-dVC06SGO8J+tJDQ7YSAhx5tMIMI=",
+ "dev": true
+ },
+ "lodash._bindcallback": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz",
+ "integrity": "sha1-5THCdkTPi1epnhftlbNcdIeJOS4=",
+ "dev": true
+ },
+ "lodash._getnative": {
+ "version": "3.9.1",
+ "resolved": "https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz",
+ "integrity": "sha1-VwvH3t5G1hzc3mh9ZdPuy6o6r/U=",
+ "dev": true
+ },
+ "lodash._isiterateecall": {
+ "version": "3.0.9",
+ "resolved": "https://registry.npmjs.org/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz",
+ "integrity": "sha1-UgOte6Ql+uhCRg5pbbnPPmqsBXw=",
+ "dev": true
+ },
+ "lodash._stack": {
+ "version": "4.1.3",
+ "resolved": "https://registry.npmjs.org/lodash._stack/-/lodash._stack-4.1.3.tgz",
+ "integrity": "sha1-dRqnbBuWSwR+dtFPxyoJP8teLdA=",
+ "dev": true
+ },
+ "lodash.clone": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/lodash.clone/-/lodash.clone-3.0.3.tgz",
+ "integrity": "sha1-hGiMc9MrWpDKJWFpY/GJJSqZcEM=",
+ "dev": true,
+ "requires": {
+ "lodash._baseclone": "^3.0.0",
+ "lodash._bindcallback": "^3.0.0",
+ "lodash._isiterateecall": "^3.0.0"
+ }
+ },
+ "lodash.create": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/lodash.create/-/lodash.create-3.1.1.tgz",
+ "integrity": "sha1-1/KEnw29p+BGgruM1yqwIkYd6+c=",
+ "dev": true,
+ "requires": {
+ "lodash._baseassign": "^3.0.0",
+ "lodash._basecreate": "^3.0.0",
+ "lodash._isiterateecall": "^3.0.0"
+ }
+ },
+ "lodash.defaultsdeep": {
+ "version": "4.3.2",
+ "resolved": "https://registry.npmjs.org/lodash.defaultsdeep/-/lodash.defaultsdeep-4.3.2.tgz",
+ "integrity": "sha1-bBpYbmxWR7DmTi15gUG4g2FYvoo=",
+ "dev": true,
+ "requires": {
+ "lodash._baseclone": "^4.0.0",
+ "lodash._stack": "^4.0.0",
+ "lodash.isplainobject": "^4.0.0",
+ "lodash.keysin": "^4.0.0",
+ "lodash.mergewith": "^4.0.0",
+ "lodash.rest": "^4.0.0"
+ },
+ "dependencies": {
+ "lodash._baseclone": {
+ "version": "4.5.7",
+ "resolved": "https://registry.npmjs.org/lodash._baseclone/-/lodash._baseclone-4.5.7.tgz",
+ "integrity": "sha1-zkKt4IOE711i+nfDD2GkbmhvhDQ=",
+ "dev": true
+ }
+ }
+ },
+ "lodash.isarguments": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz",
+ "integrity": "sha1-L1c9hcaiQon/AGY7SRwdM4/zRYo=",
+ "dev": true
+ },
+ "lodash.isarray": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz",
+ "integrity": "sha1-eeTriMNqgSKvhvhEqpvNhRtfu1U=",
+ "dev": true
+ },
+ "lodash.isfinite": {
+ "version": "3.3.2",
+ "resolved": "https://registry.npmjs.org/lodash.isfinite/-/lodash.isfinite-3.3.2.tgz",
+ "integrity": "sha1-+4m2WpqAKBgz8LdHizpRBPiY67M=",
+ "dev": true
+ },
+ "lodash.isplainobject": {
+ "version": "4.0.6",
+ "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz",
+ "integrity": "sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=",
+ "dev": true
+ },
+ "lodash.keys": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz",
+ "integrity": "sha1-TbwEcrFWvlCgsoaFXRvQsMZWCYo=",
+ "dev": true,
+ "requires": {
+ "lodash._getnative": "^3.0.0",
+ "lodash.isarguments": "^3.0.0",
+ "lodash.isarray": "^3.0.0"
+ }
+ },
+ "lodash.keysin": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/lodash.keysin/-/lodash.keysin-4.2.0.tgz",
+ "integrity": "sha1-jMP7NcLZSsxEOhhj4C+kB5nqbyg=",
+ "dev": true
+ },
+ "lodash.mergewith": {
+ "version": "4.6.2",
+ "resolved": "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz",
+ "integrity": "sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==",
+ "dev": true
+ },
+ "lodash.once": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz",
+ "integrity": "sha1-DdOXEhPHxW34gJd9UEyI+0cal6w=",
+ "dev": true
+ },
+ "lodash.rest": {
+ "version": "4.0.5",
+ "resolved": "https://registry.npmjs.org/lodash.rest/-/lodash.rest-4.0.5.tgz",
+ "integrity": "sha1-lU73UEkmIDjJbR/Jiyj9r58Hcqo=",
+ "dev": true
+ },
+ "lodash.sortby": {
+ "version": "4.7.0",
+ "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz",
+ "integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=",
+ "dev": true
+ },
+ "log-symbols": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz",
+ "integrity": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==",
+ "dev": true,
+ "requires": {
+ "chalk": "^2.0.1"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
+ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^1.9.0"
+ }
+ },
+ "chalk": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
+ "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^3.2.1",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^5.3.0"
+ }
+ },
+ "supports-color": {
+ "version": "5.5.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
+ "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^3.0.0"
+ }
+ }
+ }
+ },
+ "log-update": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/log-update/-/log-update-2.3.0.tgz",
+ "integrity": "sha1-iDKP19HOeTiykoN0bwsbwSayRwg=",
+ "dev": true,
+ "requires": {
+ "ansi-escapes": "^3.0.0",
+ "cli-cursor": "^2.0.0",
+ "wrap-ansi": "^3.0.1"
+ },
+ "dependencies": {
+ "ansi-escapes": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz",
+ "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==",
+ "dev": true
+ },
+ "ansi-regex": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz",
+ "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=",
+ "dev": true
+ },
+ "is-fullwidth-code-point": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
+ "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=",
+ "dev": true
+ },
+ "string-width": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz",
+ "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==",
+ "dev": true,
+ "requires": {
+ "is-fullwidth-code-point": "^2.0.0",
+ "strip-ansi": "^4.0.0"
+ }
+ },
+ "strip-ansi": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
+ "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=",
+ "dev": true,
+ "requires": {
+ "ansi-regex": "^3.0.0"
+ }
+ },
+ "wrap-ansi": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-3.0.1.tgz",
+ "integrity": "sha1-KIoE2H7aXChuBg3+jxNc6NAH+Lo=",
+ "dev": true,
+ "requires": {
+ "string-width": "^2.1.1",
+ "strip-ansi": "^4.0.0"
+ }
+ }
+ }
+ },
+ "lolex": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/lolex/-/lolex-5.1.2.tgz",
+ "integrity": "sha512-h4hmjAvHTmd+25JSwrtTIuwbKdwg5NzZVRMLn9saij4SZaepCrTCxPr35H/3bjwfMJtN+t3CX8672UIkglz28A==",
+ "dev": true,
+ "requires": {
+ "@sinonjs/commons": "^1.7.0"
+ }
+ },
+ "loose-envify": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
+ "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
+ "dev": true,
+ "requires": {
+ "js-tokens": "^3.0.0 || ^4.0.0"
+ }
+ },
+ "lower-case": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz",
+ "integrity": "sha1-miyr0bno4K6ZOkv31YdcOcQujqw=",
+ "dev": true
+ },
+ "lowercase-keys": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz",
+ "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==",
+ "dev": true
+ },
+ "lru-cache": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
+ "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
+ "dev": true,
+ "requires": {
+ "yallist": "^3.0.2"
+ }
+ },
+ "magic-string": {
+ "version": "0.25.7",
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.7.tgz",
+ "integrity": "sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==",
+ "dev": true,
+ "requires": {
+ "sourcemap-codec": "^1.4.4"
+ }
+ },
+ "make-dir": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz",
+ "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==",
+ "dev": true,
+ "requires": {
+ "pify": "^4.0.1",
+ "semver": "^5.6.0"
+ }
+ },
+ "makeerror": {
+ "version": "1.0.11",
+ "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.11.tgz",
+ "integrity": "sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=",
+ "dev": true,
+ "requires": {
+ "tmpl": "1.0.x"
+ }
+ },
+ "map-age-cleaner": {
+ "version": "0.1.3",
+ "resolved": "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz",
+ "integrity": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==",
+ "dev": true,
+ "requires": {
+ "p-defer": "^1.0.0"
+ }
+ },
+ "map-cache": {
+ "version": "0.2.2",
+ "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz",
+ "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=",
+ "dev": true
+ },
+ "map-visit": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz",
+ "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=",
+ "dev": true,
+ "requires": {
+ "object-visit": "^1.0.0"
+ }
+ },
+ "md5.js": {
+ "version": "1.3.5",
+ "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz",
+ "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==",
+ "dev": true,
+ "requires": {
+ "hash-base": "^3.0.0",
+ "inherits": "^2.0.1",
+ "safe-buffer": "^5.1.2"
+ }
+ },
+ "mem": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/mem/-/mem-4.3.0.tgz",
+ "integrity": "sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w==",
+ "dev": true,
+ "requires": {
+ "map-age-cleaner": "^0.1.1",
+ "mimic-fn": "^2.0.0",
+ "p-is-promise": "^2.0.0"
+ }
+ },
+ "memory-fs": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz",
+ "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=",
+ "dev": true,
+ "requires": {
+ "errno": "^0.1.3",
+ "readable-stream": "^2.0.1"
+ },
+ "dependencies": {
+ "isarray": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
+ "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
+ "dev": true
+ },
+ "process-nextick-args": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
+ "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
+ "dev": true
+ },
+ "readable-stream": {
+ "version": "2.3.7",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
+ "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
+ "dev": true,
+ "requires": {
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.3",
+ "isarray": "~1.0.0",
+ "process-nextick-args": "~2.0.0",
+ "safe-buffer": "~5.1.1",
+ "string_decoder": "~1.1.1",
+ "util-deprecate": "~1.0.1"
+ }
+ },
+ "string_decoder": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
+ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
+ "dev": true,
+ "requires": {
+ "safe-buffer": "~5.1.0"
+ }
+ }
+ }
+ },
+ "merge-descriptors": {
+ "version": "0.0.1",
+ "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-0.0.1.tgz",
+ "integrity": "sha1-L/CYDJJM+B0LXR+2ARd8uLtWwNA="
+ },
+ "merge-stream": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
+ "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==",
+ "dev": true
+ },
+ "merge2": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.3.0.tgz",
+ "integrity": "sha512-2j4DAdlBOkiSZIsaXk4mTE3sRS02yBHAtfy127xRV3bQUFqXkjHCHLW6Scv7DwNRbIWNHH8zpnz9zMaKXIdvYw==",
+ "dev": true
+ },
+ "methods": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/methods/-/methods-0.1.0.tgz",
+ "integrity": "sha1-M11Cnu/SG3us8unJIqjSvRSjDk8="
+ },
+ "micromatch": {
+ "version": "3.1.10",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
+ "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
+ "dev": true,
+ "requires": {
+ "arr-diff": "^4.0.0",
+ "array-unique": "^0.3.2",
+ "braces": "^2.3.1",
+ "define-property": "^2.0.2",
+ "extend-shallow": "^3.0.2",
+ "extglob": "^2.0.4",
+ "fragment-cache": "^0.2.1",
+ "kind-of": "^6.0.2",
+ "nanomatch": "^1.2.9",
+ "object.pick": "^1.3.0",
+ "regex-not": "^1.0.0",
+ "snapdragon": "^0.8.1",
+ "to-regex": "^3.0.2"
+ }
+ },
+ "miller-rabin": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz",
+ "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==",
+ "dev": true,
+ "requires": {
+ "bn.js": "^4.0.0",
+ "brorand": "^1.0.1"
+ },
+ "dependencies": {
+ "bn.js": {
+ "version": "4.11.8",
+ "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz",
+ "integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==",
+ "dev": true
+ }
+ }
+ },
+ "mime": {
+ "version": "1.2.11",
+ "resolved": "https://registry.npmjs.org/mime/-/mime-1.2.11.tgz",
+ "integrity": "sha1-WCA+7Ybjpe8XrtK32evUfwpg3RA="
+ },
+ "mime-db": {
+ "version": "1.43.0",
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.43.0.tgz",
+ "integrity": "sha512-+5dsGEEovYbT8UY9yD7eE4XTc4UwJ1jBYlgaQQF38ENsKR3wj/8q8RFZrF9WIZpB2V1ArTVFUva8sAul1NzRzQ=="
+ },
+ "mime-types": {
+ "version": "2.1.26",
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.26.tgz",
+ "integrity": "sha512-01paPWYgLrkqAyrlDorC1uDwl2p3qZT7yl806vW7DvDoxwXi46jsjFbg+WdwotBIk6/MbEhO/dh5aZ5sNj/dWQ==",
+ "requires": {
+ "mime-db": "1.43.0"
+ }
+ },
+ "mimic-fn": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
+ "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==",
+ "dev": true
+ },
+ "mimic-response": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-2.1.0.tgz",
+ "integrity": "sha512-wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA==",
+ "dev": true
+ },
+ "minimalistic-assert": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz",
+ "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==",
+ "dev": true
+ },
+ "minimalistic-crypto-utils": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz",
+ "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=",
+ "dev": true
+ },
+ "minimatch": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
+ "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
+ "requires": {
+ "brace-expansion": "^1.1.7"
+ }
+ },
+ "minimist": {
+ "version": "0.0.8",
+ "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz",
+ "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0="
+ },
+ "minipass": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.3.tgz",
+ "integrity": "sha512-Mgd2GdMVzY+x3IJ+oHnVM+KG3lA5c8tnabyJKmHSaG2kAGpudxuOf8ToDkhumF7UzME7DecbQE9uOZhNm7PuJg==",
+ "dev": true,
+ "requires": {
+ "yallist": "^4.0.0"
+ },
+ "dependencies": {
+ "yallist": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
+ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
+ "dev": true
+ }
+ }
+ },
+ "minipass-collect": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz",
+ "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==",
+ "dev": true,
+ "requires": {
+ "minipass": "^3.0.0"
+ }
+ },
+ "minipass-flush": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz",
+ "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==",
+ "dev": true,
+ "requires": {
+ "minipass": "^3.0.0"
+ }
+ },
+ "minipass-pipeline": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.3.tgz",
+ "integrity": "sha512-cFOknTvng5vqnwOpDsZTWhNll6Jf8o2x+/diplafmxpuIymAjzoOolZG0VvQf3V2HgqzJNhnuKHYp2BqDgz8IQ==",
+ "dev": true,
+ "requires": {
+ "minipass": "^3.0.0"
+ }
+ },
+ "minizlib": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.0.tgz",
+ "integrity": "sha512-EzTZN/fjSvifSX0SlqUERCN39o6T40AMarPbv0MrarSFtIITCBh7bi+dU8nxGFHuqs9jdIAeoYoKuQAAASsPPA==",
+ "dev": true,
+ "requires": {
+ "minipass": "^3.0.0",
+ "yallist": "^4.0.0"
+ },
+ "dependencies": {
+ "yallist": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
+ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
+ "dev": true
+ }
+ }
+ },
+ "mississippi": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz",
+ "integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==",
+ "dev": true,
+ "requires": {
+ "concat-stream": "^1.5.0",
+ "duplexify": "^3.4.2",
+ "end-of-stream": "^1.1.0",
+ "flush-write-stream": "^1.0.0",
+ "from2": "^2.1.0",
+ "parallel-transform": "^1.1.0",
+ "pump": "^3.0.0",
+ "pumpify": "^1.3.3",
+ "stream-each": "^1.1.0",
+ "through2": "^2.0.0"
+ }
+ },
+ "mitt": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/mitt/-/mitt-1.2.0.tgz",
+ "integrity": "sha512-r6lj77KlwqLhIUku9UWYes7KJtsczvolZkzp8hbaDPPaE24OmWl5s539Mytlj22siEQKosZ26qCBgda2PKwoJw==",
+ "dev": true
+ },
+ "mixin-deep": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz",
+ "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==",
+ "dev": true,
+ "requires": {
+ "for-in": "^1.0.2",
+ "is-extendable": "^1.0.1"
+ },
+ "dependencies": {
+ "is-extendable": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
+ "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
+ "dev": true,
+ "requires": {
+ "is-plain-object": "^2.0.4"
+ }
+ }
+ }
+ },
+ "mkdirp": {
+ "version": "0.3.5",
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.3.5.tgz",
+ "integrity": "sha1-3j5fiWHIjHh+4TaN+EmsRBPsqNc="
+ },
+ "mkpath": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/mkpath/-/mkpath-1.0.0.tgz",
+ "integrity": "sha1-67Opd+evHGg65v2hK1Raa6bFhT0=",
+ "dev": true
+ },
+ "mocha-nightwatch": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/mocha-nightwatch/-/mocha-nightwatch-3.2.2.tgz",
+ "integrity": "sha1-kby5s73gV912d8eBJeSR5Y1mZHw=",
+ "dev": true,
+ "requires": {
+ "browser-stdout": "1.3.0",
+ "commander": "2.9.0",
+ "debug": "2.2.0",
+ "diff": "1.4.0",
+ "escape-string-regexp": "1.0.5",
+ "glob": "7.0.5",
+ "growl": "1.9.2",
+ "json3": "3.3.2",
+ "lodash.create": "3.1.1",
+ "mkdirp": "0.5.1",
+ "supports-color": "3.1.2"
+ },
+ "dependencies": {
+ "commander": {
+ "version": "2.9.0",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz",
+ "integrity": "sha1-nJkJQXbhIkDLItbFFGCYQA/g99Q=",
+ "dev": true,
+ "requires": {
+ "graceful-readlink": ">= 1.0.0"
+ }
+ },
+ "debug": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz",
+ "integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=",
+ "dev": true,
+ "requires": {
+ "ms": "0.7.1"
+ }
+ },
+ "glob": {
+ "version": "7.0.5",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.0.5.tgz",
+ "integrity": "sha1-tCAqaQmbu00pKnwblbZoK2fr3JU=",
+ "dev": true,
+ "requires": {
+ "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"
+ }
+ },
+ "has-flag": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
+ "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=",
+ "dev": true
+ },
+ "mkdirp": {
+ "version": "0.5.1",
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
+ "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=",
+ "dev": true,
+ "requires": {
+ "minimist": "0.0.8"
+ }
+ },
+ "ms": {
+ "version": "0.7.1",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz",
+ "integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.1.2.tgz",
+ "integrity": "sha1-cqJiiU2dQIuVbKBf83su2KbiotU=",
+ "dev": true,
+ "requires": {
+ "has-flag": "^1.0.0"
+ }
+ }
+ }
+ },
+ "moment": {
+ "version": "2.24.0",
+ "resolved": "https://registry.npmjs.org/moment/-/moment-2.24.0.tgz",
+ "integrity": "sha512-bV7f+6l2QigeBBZSM/6yTNq4P2fNpSWj/0e7jQcy87A8e7o2nAfP/34/2ky5Vw4B9S446EtIhodAzkFCcR4dQg=="
+ },
+ "moment-timezone": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.4.1.tgz",
+ "integrity": "sha1-gfWYw61eIs2teWtn7NjYjQ9bqgY=",
+ "requires": {
+ "moment": ">= 2.6.0"
+ }
+ },
+ "move-concurrently": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz",
+ "integrity": "sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=",
+ "dev": true,
+ "requires": {
+ "aproba": "^1.1.1",
+ "copy-concurrently": "^1.0.0",
+ "fs-write-stream-atomic": "^1.0.8",
+ "mkdirp": "^0.5.1",
+ "rimraf": "^2.5.4",
+ "run-queue": "^1.0.3"
+ },
+ "dependencies": {
+ "mkdirp": {
+ "version": "0.5.1",
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
+ "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=",
+ "dev": true,
+ "requires": {
+ "minimist": "0.0.8"
+ }
+ }
+ }
+ },
+ "move-file": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/move-file/-/move-file-2.0.0.tgz",
+ "integrity": "sha512-cdkdhNCgbP5dvS4tlGxZbD+nloio9GIimP57EjqFhwLcMjnU+XJKAZzlmg/TN/AK1LuNAdTSvm3CPPP4Xkv0iQ==",
+ "dev": true,
+ "requires": {
+ "path-exists": "^4.0.0"
+ },
+ "dependencies": {
+ "path-exists": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
+ "dev": true
+ }
+ }
+ },
+ "ms": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
+ "dev": true
+ },
+ "multiparty": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/multiparty/-/multiparty-2.2.0.tgz",
+ "integrity": "sha1-pWfCrwAK0i3I8qZT2Rl4rh9TFvQ=",
+ "requires": {
+ "readable-stream": "~1.1.9",
+ "stream-counter": "~0.2.0"
+ }
+ },
+ "mute-stream": {
+ "version": "0.0.8",
+ "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz",
+ "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==",
+ "dev": true
+ },
+ "nan": {
+ "version": "2.14.0",
+ "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.0.tgz",
+ "integrity": "sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg==",
+ "dev": true,
+ "optional": true
+ },
+ "nanomatch": {
+ "version": "1.2.13",
+ "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz",
+ "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==",
+ "dev": true,
+ "requires": {
+ "arr-diff": "^4.0.0",
+ "array-unique": "^0.3.2",
+ "define-property": "^2.0.2",
+ "extend-shallow": "^3.0.2",
+ "fragment-cache": "^0.2.1",
+ "is-windows": "^1.0.2",
+ "kind-of": "^6.0.2",
+ "object.pick": "^1.3.0",
+ "regex-not": "^1.0.0",
+ "snapdragon": "^0.8.1",
+ "to-regex": "^3.0.1"
+ }
+ },
+ "natural-compare": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
+ "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=",
+ "dev": true
+ },
+ "ncp": {
+ "version": "0.4.2",
+ "resolved": "https://registry.npmjs.org/ncp/-/ncp-0.4.2.tgz",
+ "integrity": "sha1-q8xsvT7C7Spyn/bnwfqPAXhKhXQ=",
+ "dev": true
+ },
+ "negotiator": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.3.0.tgz",
+ "integrity": "sha1-cG1pLv7d9XTVfqn7GriaT6fuj2A="
+ },
+ "neo-async": {
+ "version": "2.6.1",
+ "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.1.tgz",
+ "integrity": "sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw==",
+ "dev": true
+ },
+ "netmask": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/netmask/-/netmask-1.0.6.tgz",
+ "integrity": "sha1-ICl+idhvb2QA8lDZ9Pa0wZRfzTU=",
+ "dev": true
+ },
+ "nice-try": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz",
+ "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==",
+ "dev": true
+ },
+ "nightwatch": {
+ "version": "0.9.21",
+ "resolved": "https://registry.npmjs.org/nightwatch/-/nightwatch-0.9.21.tgz",
+ "integrity": "sha1-nnlKdRS0/V9GYC02jlBRUjKrnpA=",
+ "dev": true,
+ "requires": {
+ "chai-nightwatch": "~0.1.x",
+ "ejs": "2.5.7",
+ "lodash.clone": "3.0.3",
+ "lodash.defaultsdeep": "4.3.2",
+ "minimatch": "3.0.3",
+ "mkpath": "1.0.0",
+ "mocha-nightwatch": "3.2.2",
+ "optimist": "0.6.1",
+ "proxy-agent": "2.0.0",
+ "q": "1.4.1"
+ },
+ "dependencies": {
+ "ejs": {
+ "version": "2.5.7",
+ "resolved": "https://registry.npmjs.org/ejs/-/ejs-2.5.7.tgz",
+ "integrity": "sha1-zIcsFoiArjxxiXYv1f/ACJbJUYo=",
+ "dev": true
+ },
+ "minimatch": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.3.tgz",
+ "integrity": "sha1-Kk5AkLlrLbBqnX3wEFWmKnfJt3Q=",
+ "dev": true,
+ "requires": {
+ "brace-expansion": "^1.0.0"
+ }
+ }
+ }
+ },
+ "no-case": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz",
+ "integrity": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==",
+ "dev": true,
+ "requires": {
+ "lower-case": "^1.1.1"
+ }
+ },
+ "node-int64": {
+ "version": "0.4.0",
+ "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz",
+ "integrity": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=",
+ "dev": true
+ },
+ "node-libs-browser": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz",
+ "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==",
+ "dev": true,
+ "requires": {
+ "assert": "^1.1.1",
+ "browserify-zlib": "^0.2.0",
+ "buffer": "^4.3.0",
+ "console-browserify": "^1.1.0",
+ "constants-browserify": "^1.0.0",
+ "crypto-browserify": "^3.11.0",
+ "domain-browser": "^1.1.1",
+ "events": "^3.0.0",
+ "https-browserify": "^1.0.0",
+ "os-browserify": "^0.3.0",
+ "path-browserify": "0.0.1",
+ "process": "^0.11.10",
+ "punycode": "^1.2.4",
+ "querystring-es3": "^0.2.0",
+ "readable-stream": "^2.3.3",
+ "stream-browserify": "^2.0.1",
+ "stream-http": "^2.7.2",
+ "string_decoder": "^1.0.0",
+ "timers-browserify": "^2.0.4",
+ "tty-browserify": "0.0.0",
+ "url": "^0.11.0",
+ "util": "^0.11.0",
+ "vm-browserify": "^1.0.1"
+ },
+ "dependencies": {
+ "isarray": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
+ "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
+ "dev": true
+ },
+ "process-nextick-args": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
+ "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
+ "dev": true
+ },
+ "punycode": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz",
+ "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=",
+ "dev": true
+ },
+ "readable-stream": {
+ "version": "2.3.7",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
+ "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
+ "dev": true,
+ "requires": {
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.3",
+ "isarray": "~1.0.0",
+ "process-nextick-args": "~2.0.0",
+ "safe-buffer": "~5.1.1",
+ "string_decoder": "~1.1.1",
+ "util-deprecate": "~1.0.1"
+ },
+ "dependencies": {
+ "string_decoder": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
+ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
+ "dev": true,
+ "requires": {
+ "safe-buffer": "~5.1.0"
+ }
+ }
+ }
+ },
+ "string_decoder": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
+ "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
+ "dev": true,
+ "requires": {
+ "safe-buffer": "~5.2.0"
+ },
+ "dependencies": {
+ "safe-buffer": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.0.tgz",
+ "integrity": "sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg==",
+ "dev": true
+ }
+ }
+ }
+ }
+ },
+ "node-modules-regexp": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz",
+ "integrity": "sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=",
+ "dev": true
+ },
+ "node-notifier": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-6.0.0.tgz",
+ "integrity": "sha512-SVfQ/wMw+DesunOm5cKqr6yDcvUTDl/yc97ybGHMrteNEY6oekXpNpS3lZwgLlwz0FLgHoiW28ZpmBHUDg37cw==",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "growly": "^1.3.0",
+ "is-wsl": "^2.1.1",
+ "semver": "^6.3.0",
+ "shellwords": "^0.1.1",
+ "which": "^1.3.1"
+ },
+ "dependencies": {
+ "is-wsl": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.1.1.tgz",
+ "integrity": "sha512-umZHcSrwlDHo2TGMXv0DZ8dIUGunZ2Iv68YZnrmCiBPkZ4aaOhtv7pXJKeki9k3qJ3RJr0cDyitcl5wEH3AYog==",
+ "dev": true,
+ "optional": true
+ },
+ "semver": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
+ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "dev": true,
+ "optional": true
+ },
+ "which": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
+ "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "isexe": "^2.0.0"
+ }
+ }
+ }
+ },
+ "node-releases": {
+ "version": "1.1.55",
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.55.tgz",
+ "integrity": "sha512-H3R3YR/8TjT5WPin/wOoHOUPHgvj8leuU/Keta/rwelEQN9pA/S2Dx8/se4pZ2LBxSd0nAGzsNzhqwa77v7F1w==",
+ "dev": true
+ },
+ "node-uuid": {
+ "version": "1.4.8",
+ "resolved": "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.8.tgz",
+ "integrity": "sha1-sEDrCSOWivq/jTL7HxfxFn/auQc="
+ },
+ "nopt": {
+ "version": "3.0.6",
+ "resolved": "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz",
+ "integrity": "sha1-xkZdvwirzU2zWTF/eaxopkayj/k=",
+ "dev": true,
+ "requires": {
+ "abbrev": "1"
+ }
+ },
+ "normalize-package-data": {
+ "version": "2.5.0",
+ "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz",
+ "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==",
+ "dev": true,
+ "requires": {
+ "hosted-git-info": "^2.1.4",
+ "resolve": "^1.10.0",
+ "semver": "2 || 3 || 4 || 5",
+ "validate-npm-package-license": "^3.0.1"
+ }
+ },
+ "normalize-path": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
+ "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
+ "dev": true
+ },
+ "normalize-url": {
+ "version": "4.5.0",
+ "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.0.tgz",
+ "integrity": "sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ==",
+ "dev": true
+ },
+ "npm-run-path": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz",
+ "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=",
+ "dev": true,
+ "requires": {
+ "path-key": "^2.0.0"
+ },
+ "dependencies": {
+ "path-key": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz",
+ "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=",
+ "dev": true
+ }
+ }
+ },
+ "nth-check": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz",
+ "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==",
+ "dev": true,
+ "requires": {
+ "boolbase": "~1.0.0"
+ }
+ },
+ "null-loader": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/null-loader/-/null-loader-4.0.0.tgz",
+ "integrity": "sha512-vSoBF6M08/RHwc6r0gvB/xBJBtmbvvEkf6+IiadUCoNYchjxE8lwzCGFg0Qp2D25xPiJxUBh2iNWzlzGMILp7Q==",
+ "dev": true,
+ "requires": {
+ "loader-utils": "^2.0.0",
+ "schema-utils": "^2.6.5"
+ },
+ "dependencies": {
+ "loader-utils": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz",
+ "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==",
+ "dev": true,
+ "requires": {
+ "big.js": "^5.2.2",
+ "emojis-list": "^3.0.0",
+ "json5": "^2.1.2"
+ }
+ },
+ "schema-utils": {
+ "version": "2.6.6",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.6.6.tgz",
+ "integrity": "sha512-wHutF/WPSbIi9x6ctjGGk2Hvl0VOz5l3EKEuKbjPlB30mKZUzb9A5k9yEXRX3pwyqVLPvpfZZEllaFq/M718hA==",
+ "dev": true,
+ "requires": {
+ "ajv": "^6.12.0",
+ "ajv-keywords": "^3.4.1"
+ }
+ }
+ }
+ },
+ "number-is-nan": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz",
+ "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=",
+ "dev": true
+ },
+ "nwsapi": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz",
+ "integrity": "sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==",
+ "dev": true
+ },
+ "oauth-sign": {
+ "version": "0.8.2",
+ "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz",
+ "integrity": "sha1-Rqarfwrq2N6unsBWV4C31O/rnUM="
+ },
+ "object-assign": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
+ "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=",
+ "dev": true
+ },
+ "object-component": {
+ "version": "0.0.3",
+ "resolved": "https://registry.npmjs.org/object-component/-/object-component-0.0.3.tgz",
+ "integrity": "sha1-8MaapQ78lbhmwYb0AKM3acsvEpE=",
+ "dev": true
+ },
+ "object-copy": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz",
+ "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=",
+ "dev": true,
+ "requires": {
+ "copy-descriptor": "^0.1.0",
+ "define-property": "^0.2.5",
+ "kind-of": "^3.0.3"
+ },
+ "dependencies": {
+ "define-property": {
+ "version": "0.2.5",
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
+ "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
+ "dev": true,
+ "requires": {
+ "is-descriptor": "^0.1.0"
+ }
+ },
+ "kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "requires": {
+ "is-buffer": "^1.1.5"
+ }
+ }
+ }
+ },
+ "object-inspect": {
+ "version": "1.7.0",
+ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.7.0.tgz",
+ "integrity": "sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw==",
+ "dev": true
+ },
+ "object-keys": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
+ "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
+ "dev": true
+ },
+ "object-path": {
+ "version": "0.9.2",
+ "resolved": "https://registry.npmjs.org/object-path/-/object-path-0.9.2.tgz",
+ "integrity": "sha1-D9mnT8X60a45aLWGvaXGMr1sBaU=",
+ "dev": true
+ },
+ "object-visit": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz",
+ "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=",
+ "dev": true,
+ "requires": {
+ "isobject": "^3.0.0"
+ }
+ },
+ "object.assign": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz",
+ "integrity": "sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==",
+ "dev": true,
+ "requires": {
+ "define-properties": "^1.1.2",
+ "function-bind": "^1.1.1",
+ "has-symbols": "^1.0.0",
+ "object-keys": "^1.0.11"
+ }
+ },
+ "object.getownpropertydescriptors": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.0.tgz",
+ "integrity": "sha512-Z53Oah9A3TdLoblT7VKJaTDdXdT+lQO+cNpKVnya5JDe9uLvzu1YyY1yFDFrcxrlRgWrEFH0jJtD/IbuwjcEVg==",
+ "dev": true,
+ "requires": {
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.17.0-next.1"
+ }
+ },
+ "object.pick": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz",
+ "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=",
+ "dev": true,
+ "requires": {
+ "isobject": "^3.0.1"
+ }
+ },
+ "object.values": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.1.tgz",
+ "integrity": "sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA==",
+ "dev": true,
+ "requires": {
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.17.0-next.1",
+ "function-bind": "^1.1.1",
+ "has": "^1.0.3"
+ }
+ },
+ "on-finished": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz",
+ "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=",
+ "dev": true,
+ "requires": {
+ "ee-first": "1.1.1"
+ }
+ },
+ "once": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
+ "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
+ "requires": {
+ "wrappy": "1"
+ }
+ },
+ "onetime": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.0.tgz",
+ "integrity": "sha512-5NcSkPHhwTVFIQN+TUqXoS5+dlElHXdpAWu9I0HP20YOtIi+aZ0Ct82jdlILDxjLEAWwvm+qj1m6aEtsDVmm6Q==",
+ "dev": true,
+ "requires": {
+ "mimic-fn": "^2.1.0"
+ }
+ },
+ "openurl": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/openurl/-/openurl-1.1.1.tgz",
+ "integrity": "sha1-OHW0sO96UsFW8NtB1GCduw+Us4c=",
+ "dev": true
+ },
+ "opn": {
+ "version": "5.3.0",
+ "resolved": "https://registry.npmjs.org/opn/-/opn-5.3.0.tgz",
+ "integrity": "sha512-bYJHo/LOmoTd+pfiYhfZDnf9zekVJrY+cnS2a5F2x+w5ppvTqObojTP7WiFG+kVZs9Inw+qQ/lw7TroWwhdd2g==",
+ "dev": true,
+ "requires": {
+ "is-wsl": "^1.1.0"
+ }
+ },
+ "optimist": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz",
+ "integrity": "sha1-2j6nRob6IaGaERwybpDrFaAZZoY=",
+ "dev": true,
+ "requires": {
+ "minimist": "~0.0.1",
+ "wordwrap": "~0.0.2"
+ }
+ },
+ "optionator": {
+ "version": "0.8.3",
+ "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz",
+ "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==",
+ "dev": true,
+ "requires": {
+ "deep-is": "~0.1.3",
+ "fast-levenshtein": "~2.0.6",
+ "levn": "~0.3.0",
+ "prelude-ls": "~1.1.2",
+ "type-check": "~0.3.2",
+ "word-wrap": "~1.2.3"
+ }
+ },
+ "ora": {
+ "version": "3.4.0",
+ "resolved": "https://registry.npmjs.org/ora/-/ora-3.4.0.tgz",
+ "integrity": "sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==",
+ "dev": true,
+ "requires": {
+ "chalk": "^2.4.2",
+ "cli-cursor": "^2.1.0",
+ "cli-spinners": "^2.0.0",
+ "log-symbols": "^2.2.0",
+ "strip-ansi": "^5.2.0",
+ "wcwidth": "^1.0.1"
+ },
+ "dependencies": {
+ "ansi-regex": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
+ "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==",
+ "dev": true
+ },
+ "ansi-styles": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
+ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^1.9.0"
+ }
+ },
+ "chalk": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
+ "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^3.2.1",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^5.3.0"
+ }
+ },
+ "strip-ansi": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
+ "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
+ "dev": true,
+ "requires": {
+ "ansi-regex": "^4.1.0"
+ }
+ },
+ "supports-color": {
+ "version": "5.5.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
+ "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^3.0.0"
+ }
+ }
+ }
+ },
+ "os-browserify": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz",
+ "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=",
+ "dev": true
+ },
+ "os-locale": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz",
+ "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=",
+ "dev": true,
+ "requires": {
+ "lcid": "^1.0.0"
+ }
+ },
+ "os-tmpdir": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz",
+ "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=",
+ "dev": true
+ },
+ "ospath": {
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/ospath/-/ospath-1.2.2.tgz",
+ "integrity": "sha1-EnZjl3Sj+O8lcvf+QoDg6kVQwHs=",
+ "dev": true
+ },
+ "p-cancelable": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.0.0.tgz",
+ "integrity": "sha512-wvPXDmbMmu2ksjkB4Z3nZWTSkJEb9lqVdMaCKpZUGJG9TMiNp9XcbG3fn9fPKjem04fJMJnXoyFPk2FmgiaiNg==",
+ "dev": true
+ },
+ "p-defer": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz",
+ "integrity": "sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=",
+ "dev": true
+ },
+ "p-each-series": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-2.1.0.tgz",
+ "integrity": "sha512-ZuRs1miPT4HrjFa+9fRfOFXxGJfORgelKV9f9nNOWw2gl6gVsRaVDOQP0+MI0G0wGKns1Yacsu0GjOFbTK0JFQ==",
+ "dev": true
+ },
+ "p-event": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/p-event/-/p-event-4.1.0.tgz",
+ "integrity": "sha512-4vAd06GCsgflX4wHN1JqrMzBh/8QZ4j+rzp0cd2scXRwuBEv+QR3wrVA5aLhWDLw4y2WgDKvzWF3CCLmVM1UgA==",
+ "dev": true,
+ "requires": {
+ "p-timeout": "^2.0.1"
+ }
+ },
+ "p-finally": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-2.0.1.tgz",
+ "integrity": "sha512-vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw==",
+ "dev": true
+ },
+ "p-is-promise": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.1.0.tgz",
+ "integrity": "sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==",
+ "dev": true
+ },
+ "p-limit": {
+ "version": "2.2.2",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.2.tgz",
+ "integrity": "sha512-WGR+xHecKTr7EbUEhyLSh5Dube9JtdiG78ufaeLxTgpudf/20KqyMioIUZJAezlTIi6evxuoUs9YXc11cU+yzQ==",
+ "dev": true,
+ "requires": {
+ "p-try": "^2.0.0"
+ }
+ },
+ "p-locate": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz",
+ "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==",
+ "dev": true,
+ "requires": {
+ "p-limit": "^2.0.0"
+ }
+ },
+ "p-map": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz",
+ "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==",
+ "dev": true
+ },
+ "p-queue": {
+ "version": "6.4.0",
+ "resolved": "https://registry.npmjs.org/p-queue/-/p-queue-6.4.0.tgz",
+ "integrity": "sha512-X7ddxxiQ+bLR/CUt3/BVKrGcJDNxBr0pEEFKHHB6vTPWNUhgDv36GpIH18RmGM3YGPpBT+JWGjDDqsVGuF0ERw==",
+ "dev": true,
+ "requires": {
+ "eventemitter3": "^4.0.0",
+ "p-timeout": "^3.1.0"
+ },
+ "dependencies": {
+ "eventemitter3": {
+ "version": "4.0.4",
+ "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.4.tgz",
+ "integrity": "sha512-rlaVLnVxtxvoyLsQQFBx53YmXHDxRIzzTLbdfxqi4yocpSjAxXwkU0cScM5JgSKMqEhrZpnvQ2D9gjylR0AimQ==",
+ "dev": true
+ },
+ "p-finally": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz",
+ "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=",
+ "dev": true
+ },
+ "p-timeout": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz",
+ "integrity": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==",
+ "dev": true,
+ "requires": {
+ "p-finally": "^1.0.0"
+ }
+ }
+ }
+ },
+ "p-timeout": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-2.0.1.tgz",
+ "integrity": "sha512-88em58dDVB/KzPEx1X0N3LwFfYZPyDc4B6eF38M1rk9VTZMbxXXgjugz8mmwpS9Ox4BDZ+t6t3QP5+/gazweIA==",
+ "dev": true,
+ "requires": {
+ "p-finally": "^1.0.0"
+ },
+ "dependencies": {
+ "p-finally": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz",
+ "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=",
+ "dev": true
+ }
+ }
+ },
+ "p-try": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
+ "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
+ "dev": true
+ },
+ "pac-proxy-agent": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-1.1.0.tgz",
+ "integrity": "sha512-QBELCWyLYPgE2Gj+4wUEiMscHrQ8nRPBzYItQNOHWavwBt25ohZHQC4qnd5IszdVVrFbLsQ+dPkm6eqdjJAmwQ==",
+ "dev": true,
+ "requires": {
+ "agent-base": "2",
+ "debug": "2",
+ "extend": "3",
+ "get-uri": "2",
+ "http-proxy-agent": "1",
+ "https-proxy-agent": "1",
+ "pac-resolver": "~2.0.0",
+ "raw-body": "2",
+ "socks-proxy-agent": "2"
+ },
+ "dependencies": {
+ "bytes": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz",
+ "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==",
+ "dev": true
+ },
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ },
+ "raw-body": {
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.1.tgz",
+ "integrity": "sha512-9WmIKF6mkvA0SLmA2Knm9+qj89e+j1zqgyn8aXGd7+nAduPoqgI9lO57SAZNn/Byzo5P7JhXTyg9PzaJbH73bA==",
+ "dev": true,
+ "requires": {
+ "bytes": "3.1.0",
+ "http-errors": "1.7.3",
+ "iconv-lite": "0.4.24",
+ "unpipe": "1.0.0"
+ }
+ }
+ }
+ },
+ "pac-resolver": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/pac-resolver/-/pac-resolver-2.0.0.tgz",
+ "integrity": "sha1-mbiNLxk/ve78HJpSnB8yYKtSd80=",
+ "dev": true,
+ "requires": {
+ "co": "~3.0.6",
+ "degenerator": "~1.0.2",
+ "ip": "1.0.1",
+ "netmask": "~1.0.4",
+ "thunkify": "~2.1.1"
+ }
+ },
+ "pako": {
+ "version": "1.0.11",
+ "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz",
+ "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==",
+ "dev": true
+ },
+ "parallel-transform": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz",
+ "integrity": "sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==",
+ "dev": true,
+ "requires": {
+ "cyclist": "^1.0.1",
+ "inherits": "^2.0.3",
+ "readable-stream": "^2.1.5"
+ },
+ "dependencies": {
+ "isarray": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
+ "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
+ "dev": true
+ },
+ "process-nextick-args": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
+ "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
+ "dev": true
+ },
+ "readable-stream": {
+ "version": "2.3.7",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
+ "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
+ "dev": true,
+ "requires": {
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.3",
+ "isarray": "~1.0.0",
+ "process-nextick-args": "~2.0.0",
+ "safe-buffer": "~5.1.1",
+ "string_decoder": "~1.1.1",
+ "util-deprecate": "~1.0.1"
+ }
+ },
+ "string_decoder": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
+ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
+ "dev": true,
+ "requires": {
+ "safe-buffer": "~5.1.0"
+ }
+ }
+ }
+ },
+ "param-case": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz",
+ "integrity": "sha1-35T9jPZTHs915r75oIWPvHK+Ikc=",
+ "dev": true,
+ "requires": {
+ "no-case": "^2.2.0"
+ }
+ },
+ "parent-module": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
+ "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
+ "dev": true,
+ "requires": {
+ "callsites": "^3.0.0"
+ }
+ },
+ "parse-asn1": {
+ "version": "5.1.5",
+ "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.5.tgz",
+ "integrity": "sha512-jkMYn1dcJqF6d5CpU689bq7w/b5ALS9ROVSpQDPrZsqqesUJii9qutvoT5ltGedNXMO2e16YUWIghG9KxaViTQ==",
+ "dev": true,
+ "requires": {
+ "asn1.js": "^4.0.0",
+ "browserify-aes": "^1.0.0",
+ "create-hash": "^1.1.0",
+ "evp_bytestokey": "^1.0.0",
+ "pbkdf2": "^3.0.3",
+ "safe-buffer": "^5.1.1"
+ }
+ },
+ "parse-json": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz",
+ "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=",
+ "dev": true,
+ "requires": {
+ "error-ex": "^1.2.0"
+ }
+ },
+ "parse-passwd": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz",
+ "integrity": "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=",
+ "dev": true
+ },
+ "parse5": {
+ "version": "1.5.1",
+ "resolved": "https://registry.npmjs.org/parse5/-/parse5-1.5.1.tgz",
+ "integrity": "sha1-m387DeMr543CQBsXVzzK8Pb1nZQ=",
+ "dev": true
+ },
+ "parseqs": {
+ "version": "0.0.5",
+ "resolved": "https://registry.npmjs.org/parseqs/-/parseqs-0.0.5.tgz",
+ "integrity": "sha1-1SCKNzjkZ2bikbouoXNoSSGouJ0=",
+ "dev": true,
+ "requires": {
+ "better-assert": "~1.0.0"
+ }
+ },
+ "parseuri": {
+ "version": "0.0.5",
+ "resolved": "https://registry.npmjs.org/parseuri/-/parseuri-0.0.5.tgz",
+ "integrity": "sha1-gCBKUNTbt3m/3G6+J3jZDkvOMgo=",
+ "dev": true,
+ "requires": {
+ "better-assert": "~1.0.0"
+ }
+ },
+ "parseurl": {
+ "version": "1.3.3",
+ "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
+ "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
+ "dev": true
+ },
+ "pascalcase": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz",
+ "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=",
+ "dev": true
+ },
+ "path-browserify": {
+ "version": "0.0.1",
+ "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz",
+ "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==",
+ "dev": true
+ },
+ "path-dirname": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz",
+ "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=",
+ "dev": true
+ },
+ "path-exists": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz",
+ "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=",
+ "dev": true
+ },
+ "path-is-absolute": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
+ "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18="
+ },
+ "path-is-inside": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz",
+ "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=",
+ "dev": true
+ },
+ "path-key": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
+ "dev": true
+ },
+ "path-parse": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz",
+ "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==",
+ "dev": true
+ },
+ "path-posix": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/path-posix/-/path-posix-1.0.0.tgz",
+ "integrity": "sha1-BrJhE/Vr6rBCVFojv6iAA8ysJg8=",
+ "dev": true
+ },
+ "path-type": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz",
+ "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=",
+ "dev": true,
+ "requires": {
+ "graceful-fs": "^4.1.2",
+ "pify": "^2.0.0",
+ "pinkie-promise": "^2.0.0"
+ },
+ "dependencies": {
+ "pify": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
+ "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=",
+ "dev": true
+ }
+ }
+ },
+ "pause": {
+ "version": "0.0.1",
+ "resolved": "https://registry.npmjs.org/pause/-/pause-0.0.1.tgz",
+ "integrity": "sha1-HUCLP9t2kjuVQ9lvtMnf1TXZy10="
+ },
+ "pbkdf2": {
+ "version": "3.0.17",
+ "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.17.tgz",
+ "integrity": "sha512-U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA==",
+ "dev": true,
+ "requires": {
+ "create-hash": "^1.1.2",
+ "create-hmac": "^1.1.4",
+ "ripemd160": "^2.0.1",
+ "safe-buffer": "^5.0.1",
+ "sha.js": "^2.4.8"
+ }
+ },
+ "pend": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz",
+ "integrity": "sha1-elfrVQpng/kRUzH89GY9XI4AelA="
+ },
+ "performance-now": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz",
+ "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=",
+ "dev": true
+ },
+ "phantomjs": {
+ "version": "1.9.20",
+ "resolved": "https://registry.npmjs.org/phantomjs/-/phantomjs-1.9.20.tgz",
+ "integrity": "sha1-RCSsog4U0lXAsIia9va4lz2hDg0=",
+ "requires": {
+ "extract-zip": "~1.5.0",
+ "fs-extra": "~0.26.4",
+ "hasha": "^2.2.0",
+ "kew": "~0.7.0",
+ "progress": "~1.1.8",
+ "request": "~2.67.0",
+ "request-progress": "~2.0.1",
+ "which": "~1.2.2"
+ }
+ },
+ "picomatch": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.1.tgz",
+ "integrity": "sha512-ISBaA8xQNmwELC7eOjqFKMESB2VIqt4PPDD0nsS95b/9dZXvVKOlz9keMSnoGGKcOHXfTvDD6WMaRoSc9UuhRA==",
+ "dev": true
+ },
+ "pify": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz",
+ "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==",
+ "dev": true
+ },
+ "pinkie": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz",
+ "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA="
+ },
+ "pinkie-promise": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz",
+ "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=",
+ "requires": {
+ "pinkie": "^2.0.0"
+ }
+ },
+ "pirates": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.1.tgz",
+ "integrity": "sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==",
+ "dev": true,
+ "requires": {
+ "node-modules-regexp": "^1.0.0"
+ }
+ },
+ "pkg-dir": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz",
+ "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==",
+ "dev": true,
+ "requires": {
+ "find-up": "^3.0.0"
+ }
+ },
+ "pkg-up": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-2.0.0.tgz",
+ "integrity": "sha1-yBmscoBZpGHKscOImivjxJoATX8=",
+ "dev": true,
+ "requires": {
+ "find-up": "^2.1.0"
+ },
+ "dependencies": {
+ "find-up": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz",
+ "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=",
+ "dev": true,
+ "requires": {
+ "locate-path": "^2.0.0"
+ }
+ },
+ "locate-path": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz",
+ "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=",
+ "dev": true,
+ "requires": {
+ "p-locate": "^2.0.0",
+ "path-exists": "^3.0.0"
+ }
+ },
+ "p-limit": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz",
+ "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==",
+ "dev": true,
+ "requires": {
+ "p-try": "^1.0.0"
+ }
+ },
+ "p-locate": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz",
+ "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=",
+ "dev": true,
+ "requires": {
+ "p-limit": "^1.1.0"
+ }
+ },
+ "p-try": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz",
+ "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=",
+ "dev": true
+ }
+ }
+ },
+ "pn": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/pn/-/pn-1.1.0.tgz",
+ "integrity": "sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA==",
+ "dev": true
+ },
+ "portscanner": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/portscanner/-/portscanner-2.1.1.tgz",
+ "integrity": "sha1-6rtAnk3iSVD1oqUW01rnaTQ/u5Y=",
+ "dev": true,
+ "requires": {
+ "async": "1.5.2",
+ "is-number-like": "^1.0.3"
+ },
+ "dependencies": {
+ "async": {
+ "version": "1.5.2",
+ "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz",
+ "integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=",
+ "dev": true
+ }
+ }
+ },
+ "posix-character-classes": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz",
+ "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=",
+ "dev": true
+ },
+ "postcss": {
+ "version": "7.0.27",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.27.tgz",
+ "integrity": "sha512-WuQETPMcW9Uf1/22HWUWP9lgsIC+KEHg2kozMflKjbeUtw9ujvFX6QmIfozaErDkmLWS9WEnEdEe6Uo9/BNTdQ==",
+ "dev": true,
+ "requires": {
+ "chalk": "^2.4.2",
+ "source-map": "^0.6.1",
+ "supports-color": "^6.1.0"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
+ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^1.9.0"
+ }
+ },
+ "chalk": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
+ "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^3.2.1",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^5.3.0"
+ },
+ "dependencies": {
+ "supports-color": {
+ "version": "5.5.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
+ "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^3.0.0"
+ }
+ }
+ }
+ },
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
+ "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^3.0.0"
+ }
+ }
+ }
+ },
+ "postcss-modules-extract-imports": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz",
+ "integrity": "sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==",
+ "dev": true,
+ "requires": {
+ "postcss": "^7.0.5"
+ }
+ },
+ "postcss-modules-local-by-default": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.2.tgz",
+ "integrity": "sha512-jM/V8eqM4oJ/22j0gx4jrp63GSvDH6v86OqyTHHUvk4/k1vceipZsaymiZ5PvocqZOl5SFHiFJqjs3la0wnfIQ==",
+ "dev": true,
+ "requires": {
+ "icss-utils": "^4.1.1",
+ "postcss": "^7.0.16",
+ "postcss-selector-parser": "^6.0.2",
+ "postcss-value-parser": "^4.0.0"
+ }
+ },
+ "postcss-modules-scope": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-2.1.1.tgz",
+ "integrity": "sha512-OXRUPecnHCg8b9xWvldG/jUpRIGPNRka0r4D4j0ESUU2/5IOnpsjfPPmDprM3Ih8CgZ8FXjWqaniK5v4rWt3oQ==",
+ "dev": true,
+ "requires": {
+ "postcss": "^7.0.6",
+ "postcss-selector-parser": "^6.0.0"
+ }
+ },
+ "postcss-modules-values": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz",
+ "integrity": "sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==",
+ "dev": true,
+ "requires": {
+ "icss-utils": "^4.0.0",
+ "postcss": "^7.0.6"
+ }
+ },
+ "postcss-selector-parser": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz",
+ "integrity": "sha512-36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg==",
+ "dev": true,
+ "requires": {
+ "cssesc": "^3.0.0",
+ "indexes-of": "^1.0.1",
+ "uniq": "^1.0.1"
+ }
+ },
+ "postcss-value-parser": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.0.3.tgz",
+ "integrity": "sha512-N7h4pG+Nnu5BEIzyeaaIYWs0LI5XC40OrRh5L60z0QjFsqGWcHcbkBvpe1WYpcIS9yQ8sOi/vIPt1ejQCrMVrg==",
+ "dev": true
+ },
+ "prelude-ls": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz",
+ "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=",
+ "dev": true
+ },
+ "pretty-bytes": {
+ "version": "5.3.0",
+ "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.3.0.tgz",
+ "integrity": "sha512-hjGrh+P926p4R4WbaB6OckyRtO0F0/lQBiT+0gnxjV+5kjPBrfVBFCsCLbMqVQeydvIoouYTCmmEURiH3R1Bdg==",
+ "dev": true
+ },
+ "pretty-error": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-2.1.1.tgz",
+ "integrity": "sha1-X0+HyPkeWuPzuoerTPXgOxoX8aM=",
+ "dev": true,
+ "requires": {
+ "renderkid": "^2.0.1",
+ "utila": "~0.4"
+ }
+ },
+ "pretty-format": {
+ "version": "25.1.0",
+ "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-25.1.0.tgz",
+ "integrity": "sha512-46zLRSGLd02Rp+Lhad9zzuNZ+swunitn8zIpfD2B4OPCRLXbM87RJT2aBLBWYOznNUML/2l/ReMyWNC80PJBUQ==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^25.1.0",
+ "ansi-regex": "^5.0.0",
+ "ansi-styles": "^4.0.0",
+ "react-is": "^16.12.0"
+ },
+ "dependencies": {
+ "ansi-regex": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
+ "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==",
+ "dev": true
+ },
+ "ansi-styles": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
+ "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
+ "dev": true,
+ "requires": {
+ "@types/color-name": "^1.1.1",
+ "color-convert": "^2.0.1"
+ }
+ },
+ "color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "requires": {
+ "color-name": "~1.1.4"
+ }
+ },
+ "color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true
+ }
+ }
+ },
+ "private": {
+ "version": "0.1.8",
+ "resolved": "https://registry.npmjs.org/private/-/private-0.1.8.tgz",
+ "integrity": "sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==",
+ "dev": true
+ },
+ "process": {
+ "version": "0.11.10",
+ "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz",
+ "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=",
+ "dev": true
+ },
+ "process-nextick-args": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz",
+ "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M="
+ },
+ "progress": {
+ "version": "1.1.8",
+ "resolved": "https://registry.npmjs.org/progress/-/progress-1.1.8.tgz",
+ "integrity": "sha1-4mDHj2Fhzdmw5WzD4Khd4Xx6V74="
+ },
+ "promise-inflight": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz",
+ "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=",
+ "dev": true
+ },
+ "prompts": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.3.2.tgz",
+ "integrity": "sha512-Q06uKs2CkNYVID0VqwfAl9mipo99zkBv/n2JtWY89Yxa3ZabWSrs0e2KTudKVa3peLUvYXMefDqIleLPVUBZMA==",
+ "dev": true,
+ "requires": {
+ "kleur": "^3.0.3",
+ "sisteransi": "^1.0.4"
+ }
+ },
+ "proto-list": {
+ "version": "1.2.4",
+ "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz",
+ "integrity": "sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk=",
+ "dev": true
+ },
+ "proxy-agent": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/proxy-agent/-/proxy-agent-2.0.0.tgz",
+ "integrity": "sha1-V+tTR6qAXXTsaByyVknbo5yTNJk=",
+ "dev": true,
+ "requires": {
+ "agent-base": "2",
+ "debug": "2",
+ "extend": "3",
+ "http-proxy-agent": "1",
+ "https-proxy-agent": "1",
+ "lru-cache": "~2.6.5",
+ "pac-proxy-agent": "1",
+ "socks-proxy-agent": "2"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "lru-cache": {
+ "version": "2.6.5",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.6.5.tgz",
+ "integrity": "sha1-5W1jVBSO3o13B7WNFDIg/QjfD9U=",
+ "dev": true
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ }
+ }
+ },
+ "prr": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz",
+ "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=",
+ "dev": true
+ },
+ "pseudomap": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz",
+ "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=",
+ "dev": true
+ },
+ "psl": {
+ "version": "1.7.0",
+ "resolved": "https://registry.npmjs.org/psl/-/psl-1.7.0.tgz",
+ "integrity": "sha512-5NsSEDv8zY70ScRnOTn7bK7eanl2MvFrOrS/R6x+dBt5g1ghnj9Zv90kO8GwT8gxcu2ANyFprnFYB85IogIJOQ==",
+ "dev": true
+ },
+ "public-encrypt": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz",
+ "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==",
+ "dev": true,
+ "requires": {
+ "bn.js": "^4.1.0",
+ "browserify-rsa": "^4.0.0",
+ "create-hash": "^1.1.0",
+ "parse-asn1": "^5.0.0",
+ "randombytes": "^2.0.1",
+ "safe-buffer": "^5.1.2"
+ },
+ "dependencies": {
+ "bn.js": {
+ "version": "4.11.8",
+ "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz",
+ "integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==",
+ "dev": true
+ }
+ }
+ },
+ "pump": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz",
+ "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==",
+ "dev": true,
+ "requires": {
+ "end-of-stream": "^1.1.0",
+ "once": "^1.3.1"
+ }
+ },
+ "pumpify": {
+ "version": "1.5.1",
+ "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz",
+ "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==",
+ "dev": true,
+ "requires": {
+ "duplexify": "^3.6.0",
+ "inherits": "^2.0.3",
+ "pump": "^2.0.0"
+ },
+ "dependencies": {
+ "pump": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz",
+ "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==",
+ "dev": true,
+ "requires": {
+ "end-of-stream": "^1.1.0",
+ "once": "^1.3.1"
+ }
+ }
+ }
+ },
+ "punycode": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz",
+ "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==",
+ "dev": true
+ },
+ "q": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/q/-/q-1.4.1.tgz",
+ "integrity": "sha1-VXBbzZPF82c1MMLCy8DCs63cKG4=",
+ "dev": true
+ },
+ "qs": {
+ "version": "0.6.6",
+ "resolved": "https://registry.npmjs.org/qs/-/qs-0.6.6.tgz",
+ "integrity": "sha1-bgFQmP9RlouKPIGQAdXyyJvEsQc="
+ },
+ "qtip2": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/qtip2/-/qtip2-3.0.3.tgz",
+ "integrity": "sha1-ffCIrkQSwkpAZN5p6CTLPPdiENw=",
+ "requires": {
+ "imagesloaded": ">=3.0.0",
+ "jquery": ">=1.6.0"
+ }
+ },
+ "querystring": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz",
+ "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=",
+ "dev": true
+ },
+ "querystring-es3": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz",
+ "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=",
+ "dev": true
+ },
+ "ramda": {
+ "version": "0.26.1",
+ "resolved": "https://registry.npmjs.org/ramda/-/ramda-0.26.1.tgz",
+ "integrity": "sha512-hLWjpy7EnsDBb0p+Z3B7rPi3GDeRG5ZtiI33kJhTt+ORCd38AbAIjB/9zRIUoeTbE/AVX5ZkU7m6bznsvrf8eQ==",
+ "dev": true
+ },
+ "randombytes": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz",
+ "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==",
+ "dev": true,
+ "requires": {
+ "safe-buffer": "^5.1.0"
+ }
+ },
+ "randomfill": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz",
+ "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==",
+ "dev": true,
+ "requires": {
+ "randombytes": "^2.0.5",
+ "safe-buffer": "^5.1.0"
+ }
+ },
+ "range-parser": {
+ "version": "0.0.4",
+ "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-0.0.4.tgz",
+ "integrity": "sha1-wEJ//vUcEKy6B4KkbJYC50T/Ygs="
+ },
+ "raw-body": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-1.1.2.tgz",
+ "integrity": "sha1-x0swBN6l3v0WlhcRBqx0DsMdYr4=",
+ "requires": {
+ "bytes": "~0.2.1"
+ }
+ },
+ "react-is": {
+ "version": "16.13.1",
+ "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
+ "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==",
+ "dev": true
+ },
+ "read-pkg": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz",
+ "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=",
+ "dev": true,
+ "requires": {
+ "load-json-file": "^1.0.0",
+ "normalize-package-data": "^2.3.2",
+ "path-type": "^1.0.0"
+ }
+ },
+ "read-pkg-up": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz",
+ "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=",
+ "dev": true,
+ "requires": {
+ "find-up": "^1.0.0",
+ "read-pkg": "^1.0.0"
+ },
+ "dependencies": {
+ "find-up": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz",
+ "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=",
+ "dev": true,
+ "requires": {
+ "path-exists": "^2.0.0",
+ "pinkie-promise": "^2.0.0"
+ }
+ },
+ "path-exists": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz",
+ "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=",
+ "dev": true,
+ "requires": {
+ "pinkie-promise": "^2.0.0"
+ }
+ }
+ }
+ },
+ "readable-stream": {
+ "version": "1.1.14",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz",
+ "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=",
+ "requires": {
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.1",
+ "isarray": "0.0.1",
+ "string_decoder": "~0.10.x"
+ }
+ },
+ "readdirp": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz",
+ "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==",
+ "dev": true,
+ "requires": {
+ "graceful-fs": "^4.1.11",
+ "micromatch": "^3.1.10",
+ "readable-stream": "^2.0.2"
+ },
+ "dependencies": {
+ "isarray": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
+ "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
+ "dev": true
+ },
+ "process-nextick-args": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
+ "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
+ "dev": true
+ },
+ "readable-stream": {
+ "version": "2.3.7",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
+ "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
+ "dev": true,
+ "requires": {
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.3",
+ "isarray": "~1.0.0",
+ "process-nextick-args": "~2.0.0",
+ "safe-buffer": "~5.1.1",
+ "string_decoder": "~1.1.1",
+ "util-deprecate": "~1.0.1"
+ }
+ },
+ "string_decoder": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
+ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
+ "dev": true,
+ "requires": {
+ "safe-buffer": "~5.1.0"
+ }
+ }
+ }
+ },
+ "realpath-native": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/realpath-native/-/realpath-native-1.1.0.tgz",
+ "integrity": "sha512-wlgPA6cCIIg9gKz0fgAPjnzh4yR/LnXovwuo9hvyGvx3h8nX4+/iLZplfUWasXpqD8BdnGnP5njOFjkUwPzvjA==",
+ "dev": true,
+ "requires": {
+ "util.promisify": "^1.0.0"
+ }
+ },
+ "recast": {
+ "version": "0.11.23",
+ "resolved": "https://registry.npmjs.org/recast/-/recast-0.11.23.tgz",
+ "integrity": "sha1-RR/TAEqx5N+bTktmN2sqIZEkYtM=",
+ "dev": true,
+ "requires": {
+ "ast-types": "0.9.6",
+ "esprima": "~3.1.0",
+ "private": "~0.1.5",
+ "source-map": "~0.5.0"
+ },
+ "dependencies": {
+ "esprima": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz",
+ "integrity": "sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM=",
+ "dev": true
+ }
+ }
+ },
+ "rechoir": {
+ "version": "0.6.2",
+ "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz",
+ "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=",
+ "dev": true,
+ "requires": {
+ "resolve": "^1.1.6"
+ }
+ },
+ "reduce-flatten": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/reduce-flatten/-/reduce-flatten-1.0.1.tgz",
+ "integrity": "sha1-JYx479FT3fk8tWEjf2EYTzaW4yc=",
+ "dev": true
+ },
+ "regenerate": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.0.tgz",
+ "integrity": "sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==",
+ "dev": true
+ },
+ "regenerate-unicode-properties": {
+ "version": "8.2.0",
+ "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz",
+ "integrity": "sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA==",
+ "dev": true,
+ "requires": {
+ "regenerate": "^1.4.0"
+ }
+ },
+ "regenerator-runtime": {
+ "version": "0.13.5",
+ "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz",
+ "integrity": "sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA==",
+ "dev": true
+ },
+ "regenerator-transform": {
+ "version": "0.14.4",
+ "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.4.tgz",
+ "integrity": "sha512-EaJaKPBI9GvKpvUz2mz4fhx7WPgvwRLY9v3hlNHWmAuJHI13T4nwKnNvm5RWJzEdnI5g5UwtOww+S8IdoUC2bw==",
+ "dev": true,
+ "requires": {
+ "@babel/runtime": "^7.8.4",
+ "private": "^0.1.8"
+ }
+ },
+ "regex-not": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz",
+ "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==",
+ "dev": true,
+ "requires": {
+ "extend-shallow": "^3.0.2",
+ "safe-regex": "^1.1.0"
+ }
+ },
+ "regexpp": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-2.0.1.tgz",
+ "integrity": "sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==",
+ "dev": true
+ },
+ "regexpu-core": {
+ "version": "4.7.0",
+ "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.0.tgz",
+ "integrity": "sha512-TQ4KXRnIn6tz6tjnrXEkD/sshygKH/j5KzK86X8MkeHyZ8qst/LZ89j3X4/8HEIfHANTFIP/AbXakeRhWIl5YQ==",
+ "dev": true,
+ "requires": {
+ "regenerate": "^1.4.0",
+ "regenerate-unicode-properties": "^8.2.0",
+ "regjsgen": "^0.5.1",
+ "regjsparser": "^0.6.4",
+ "unicode-match-property-ecmascript": "^1.0.4",
+ "unicode-match-property-value-ecmascript": "^1.2.0"
+ }
+ },
+ "regjsgen": {
+ "version": "0.5.1",
+ "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.1.tgz",
+ "integrity": "sha512-5qxzGZjDs9w4tzT3TPhCJqWdCc3RLYwy9J2NB0nm5Lz+S273lvWcpjaTGHsT1dc6Hhfq41uSEOw8wBmxrKOuyg==",
+ "dev": true
+ },
+ "regjsparser": {
+ "version": "0.6.4",
+ "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.4.tgz",
+ "integrity": "sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw==",
+ "dev": true,
+ "requires": {
+ "jsesc": "~0.5.0"
+ },
+ "dependencies": {
+ "jsesc": {
+ "version": "0.5.0",
+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz",
+ "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=",
+ "dev": true
+ }
+ }
+ },
+ "relateurl": {
+ "version": "0.2.7",
+ "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz",
+ "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=",
+ "dev": true
+ },
+ "remove-trailing-separator": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz",
+ "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=",
+ "dev": true
+ },
+ "renderkid": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-2.0.3.tgz",
+ "integrity": "sha512-z8CLQp7EZBPCwCnncgf9C4XAi3WR0dv+uWu/PjIyhhAb5d6IJ/QZqlHFprHeKT+59//V6BNUsLbvN8+2LarxGA==",
+ "dev": true,
+ "requires": {
+ "css-select": "^1.1.0",
+ "dom-converter": "^0.2",
+ "htmlparser2": "^3.3.0",
+ "strip-ansi": "^3.0.0",
+ "utila": "^0.4.0"
+ }
+ },
+ "repeat-element": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz",
+ "integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==",
+ "dev": true
+ },
+ "repeat-string": {
+ "version": "1.6.1",
+ "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz",
+ "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=",
+ "dev": true
+ },
+ "request": {
+ "version": "2.67.0",
+ "resolved": "https://registry.npmjs.org/request/-/request-2.67.0.tgz",
+ "integrity": "sha1-ivdHgOK/EeoK6aqWXBHxGv0nJ0I=",
+ "requires": {
+ "aws-sign2": "~0.6.0",
+ "bl": "~1.0.0",
+ "caseless": "~0.11.0",
+ "combined-stream": "~1.0.5",
+ "extend": "~3.0.0",
+ "forever-agent": "~0.6.1",
+ "form-data": "~1.0.0-rc3",
+ "har-validator": "~2.0.2",
+ "hawk": "~3.1.0",
+ "http-signature": "~1.1.0",
+ "is-typedarray": "~1.0.0",
+ "isstream": "~0.1.2",
+ "json-stringify-safe": "~5.0.1",
+ "mime-types": "~2.1.7",
+ "node-uuid": "~1.4.7",
+ "oauth-sign": "~0.8.0",
+ "qs": "~5.2.0",
+ "stringstream": "~0.0.4",
+ "tough-cookie": "~2.2.0",
+ "tunnel-agent": "~0.4.1"
+ },
+ "dependencies": {
+ "qs": {
+ "version": "5.2.1",
+ "resolved": "https://registry.npmjs.org/qs/-/qs-5.2.1.tgz",
+ "integrity": "sha1-gB/uAw4LlFDWOFrcSKTMVbRK7fw="
+ }
+ }
+ },
+ "request-progress": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/request-progress/-/request-progress-2.0.1.tgz",
+ "integrity": "sha1-XTa7V5YcZzqlt4jbyBQf3yO0Tgg=",
+ "requires": {
+ "throttleit": "^1.0.0"
+ }
+ },
+ "request-promise-core": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.3.tgz",
+ "integrity": "sha512-QIs2+ArIGQVp5ZYbWD5ZLCY29D5CfWizP8eWnm8FoGD1TX61veauETVQbrV60662V0oFBkrDOuaBI8XgtuyYAQ==",
+ "dev": true,
+ "requires": {
+ "lodash": "^4.17.15"
+ }
+ },
+ "request-promise-native": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.8.tgz",
+ "integrity": "sha512-dapwLGqkHtwL5AEbfenuzjTYg35Jd6KPytsC2/TLkVMz8rm+tNt72MGUWT1RP/aYawMpN6HqbNGBQaRcBtjQMQ==",
+ "dev": true,
+ "requires": {
+ "request-promise-core": "1.1.3",
+ "stealthy-require": "^1.1.1",
+ "tough-cookie": "^2.3.3"
+ },
+ "dependencies": {
+ "tough-cookie": {
+ "version": "2.5.0",
+ "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz",
+ "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==",
+ "dev": true,
+ "requires": {
+ "psl": "^1.1.28",
+ "punycode": "^2.1.1"
+ }
+ }
+ }
+ },
+ "require-directory": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
+ "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=",
+ "dev": true
+ },
+ "require-main-filename": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz",
+ "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=",
+ "dev": true
+ },
+ "requires-port": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz",
+ "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=",
+ "dev": true
+ },
+ "resolve": {
+ "version": "1.15.1",
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.15.1.tgz",
+ "integrity": "sha512-84oo6ZTtoTUpjgNEr5SJyzQhzL72gaRodsSfyxC/AXRvwu0Yse9H8eF9IpGo7b8YetZhlI6v7ZQ6bKBFV/6S7w==",
+ "dev": true,
+ "requires": {
+ "path-parse": "^1.0.6"
+ }
+ },
+ "resolve-cwd": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz",
+ "integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=",
+ "dev": true,
+ "requires": {
+ "resolve-from": "^3.0.0"
+ },
+ "dependencies": {
+ "resolve-from": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz",
+ "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=",
+ "dev": true
+ }
+ }
+ },
+ "resolve-dir": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz",
+ "integrity": "sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=",
+ "dev": true,
+ "requires": {
+ "expand-tilde": "^2.0.0",
+ "global-modules": "^1.0.0"
+ },
+ "dependencies": {
+ "global-modules": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz",
+ "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==",
+ "dev": true,
+ "requires": {
+ "global-prefix": "^1.0.1",
+ "is-windows": "^1.0.1",
+ "resolve-dir": "^1.0.0"
+ }
+ }
+ }
+ },
+ "resolve-from": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
+ "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
+ "dev": true
+ },
+ "resolve-url": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz",
+ "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=",
+ "dev": true
+ },
+ "resp-modifier": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/resp-modifier/-/resp-modifier-6.0.2.tgz",
+ "integrity": "sha1-sSTeXE+6/LpUH0j/pzlw9KpFa08=",
+ "dev": true,
+ "requires": {
+ "debug": "^2.2.0",
+ "minimatch": "^3.0.2"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ }
+ }
+ },
+ "responselike": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.0.tgz",
+ "integrity": "sha512-xH48u3FTB9VsZw7R+vvgaKeLKzT6jOogbQhEe/jewwnZgzPcnyWui2Av6JpoYZF/91uueC+lqhWqeURw5/qhCw==",
+ "dev": true,
+ "requires": {
+ "lowercase-keys": "^2.0.0"
+ }
+ },
+ "restore-cursor": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz",
+ "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=",
+ "dev": true,
+ "requires": {
+ "onetime": "^2.0.0",
+ "signal-exit": "^3.0.2"
+ },
+ "dependencies": {
+ "mimic-fn": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz",
+ "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==",
+ "dev": true
+ },
+ "onetime": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz",
+ "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=",
+ "dev": true,
+ "requires": {
+ "mimic-fn": "^1.0.0"
+ }
+ }
+ }
+ },
+ "ret": {
+ "version": "0.1.15",
+ "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz",
+ "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==",
+ "dev": true
+ },
+ "reusify": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
+ "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
+ "dev": true
+ },
+ "rev-hash": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/rev-hash/-/rev-hash-3.0.0.tgz",
+ "integrity": "sha512-s+87HfEKAu95TaTxnbCobn0/BkbzR23LHSwVdYvr8mn5+PPjzy+hTWyh92b5oaLgig9TKPe5d6ZcubsVBtUrZg==",
+ "dev": true
+ },
+ "rimraf": {
+ "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz",
+ "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==",
+ "requires": {
+ "glob": "^7.1.3"
+ }
+ },
+ "ripemd160": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz",
+ "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==",
+ "dev": true,
+ "requires": {
+ "hash-base": "^3.0.0",
+ "inherits": "^2.0.1"
+ }
+ },
+ "rollup-plugin-babel": {
+ "version": "4.4.0",
+ "resolved": "https://registry.npmjs.org/rollup-plugin-babel/-/rollup-plugin-babel-4.4.0.tgz",
+ "integrity": "sha512-Lek/TYp1+7g7I+uMfJnnSJ7YWoD58ajo6Oarhlex7lvUce+RCKRuGRSgztDO3/MF/PuGKmUL5iTHKf208UNszw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-module-imports": "^7.0.0",
+ "rollup-pluginutils": "^2.8.1"
+ }
+ },
+ "rollup-plugin-cleaner": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/rollup-plugin-cleaner/-/rollup-plugin-cleaner-1.0.0.tgz",
+ "integrity": "sha512-q+Zf9estkFwGede9QzmbkhKeuXzlliOvcICVNzBHAs5xYPPs1XLtfin5TMU2tC2EYjmfaF97saY9MnQM6Og4eA==",
+ "dev": true,
+ "requires": {
+ "rimraf": "^2.6.3"
+ }
+ },
+ "rollup-plugin-copy": {
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/rollup-plugin-copy/-/rollup-plugin-copy-3.3.0.tgz",
+ "integrity": "sha512-euDjCUSBXZa06nqnwCNADbkAcYDfzwowfZQkto9K/TFhiH+QG7I4PUsEMwM9tDgomGWJc//z7KLW8t+tZwxADA==",
+ "dev": true,
+ "requires": {
+ "@types/fs-extra": "^8.0.1",
+ "colorette": "^1.1.0",
+ "fs-extra": "^8.1.0",
+ "globby": "10.0.1",
+ "is-plain-object": "^3.0.0"
+ },
+ "dependencies": {
+ "array-union": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
+ "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==",
+ "dev": true
+ },
+ "dir-glob": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz",
+ "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==",
+ "dev": true,
+ "requires": {
+ "path-type": "^4.0.0"
+ }
+ },
+ "fs-extra": {
+ "version": "8.1.0",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz",
+ "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==",
+ "dev": true,
+ "requires": {
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^4.0.0",
+ "universalify": "^0.1.0"
+ }
+ },
+ "globby": {
+ "version": "10.0.1",
+ "resolved": "https://registry.npmjs.org/globby/-/globby-10.0.1.tgz",
+ "integrity": "sha512-sSs4inE1FB2YQiymcmTv6NWENryABjUNPeWhOvmn4SjtKybglsyPZxFB3U1/+L1bYi0rNZDqCLlHyLYDl1Pq5A==",
+ "dev": true,
+ "requires": {
+ "@types/glob": "^7.1.1",
+ "array-union": "^2.1.0",
+ "dir-glob": "^3.0.1",
+ "fast-glob": "^3.0.3",
+ "glob": "^7.1.3",
+ "ignore": "^5.1.1",
+ "merge2": "^1.2.3",
+ "slash": "^3.0.0"
+ }
+ },
+ "ignore": {
+ "version": "5.1.4",
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.4.tgz",
+ "integrity": "sha512-MzbUSahkTW1u7JpKKjY7LCARd1fU5W2rLdxlM4kdkayuCwZImjkpluF9CM1aLewYJguPDqewLam18Y6AU69A8A==",
+ "dev": true
+ },
+ "is-plain-object": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-3.0.0.tgz",
+ "integrity": "sha512-tZIpofR+P05k8Aocp7UI/2UTa9lTJSebCXpFFoR9aibpokDj/uXBsJ8luUu0tTVYKkMU6URDUuOfJZ7koewXvg==",
+ "dev": true,
+ "requires": {
+ "isobject": "^4.0.0"
+ }
+ },
+ "isobject": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/isobject/-/isobject-4.0.0.tgz",
+ "integrity": "sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==",
+ "dev": true
+ },
+ "jsonfile": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz",
+ "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=",
+ "dev": true,
+ "requires": {
+ "graceful-fs": "^4.1.6"
+ }
+ },
+ "path-type": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
+ "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
+ "dev": true
+ }
+ }
+ },
+ "rollup-plugin-eslint": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/rollup-plugin-eslint/-/rollup-plugin-eslint-7.0.0.tgz",
+ "integrity": "sha512-u35kXiY11ULeNQGTlRkYx7uGJ/hS/Dx3wj8f9YVC3oMLTGU9fOqQJsAKYtBFZU3gJ8Vt3gu8ppB1vnKl+7gatQ==",
+ "dev": true,
+ "requires": {
+ "eslint": "^6.0.0",
+ "rollup-pluginutils": "^2.7.1"
+ }
+ },
+ "rollup-plugin-fill-html": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/rollup-plugin-fill-html/-/rollup-plugin-fill-html-1.1.0.tgz",
+ "integrity": "sha512-9tblM+KkhevBkVEyQvIuVh9o8gue7e6JTbMxQuBzCTLppiLRpKjh6Na80fqDcZZA6lziQdhcK+he7J/UxEtrCA==",
+ "dev": true,
+ "requires": {
+ "cheerio": "^1.0.0-rc.2",
+ "hasha": "^3.0.0"
+ },
+ "dependencies": {
+ "hasha": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/hasha/-/hasha-3.0.0.tgz",
+ "integrity": "sha1-UqMvq4Vp1BymmmH/GiFPjrfIvTk=",
+ "dev": true,
+ "requires": {
+ "is-stream": "^1.0.1"
+ }
+ }
+ }
+ },
+ "rollup-plugin-terser": {
+ "version": "5.3.0",
+ "resolved": "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-5.3.0.tgz",
+ "integrity": "sha512-XGMJihTIO3eIBsVGq7jiNYOdDMb3pVxuzY0uhOE/FM4x/u9nQgr3+McsjzqBn3QfHIpNSZmFnpoKAwHBEcsT7g==",
+ "dev": true,
+ "requires": {
+ "@babel/code-frame": "^7.5.5",
+ "jest-worker": "^24.9.0",
+ "rollup-pluginutils": "^2.8.2",
+ "serialize-javascript": "^2.1.2",
+ "terser": "^4.6.2"
+ }
+ },
+ "rollup-pluginutils": {
+ "version": "2.8.2",
+ "resolved": "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz",
+ "integrity": "sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==",
+ "dev": true,
+ "requires": {
+ "estree-walker": "^0.6.1"
+ }
+ },
+ "rsvp": {
+ "version": "4.8.5",
+ "resolved": "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz",
+ "integrity": "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==",
+ "dev": true
+ },
+ "run-async": {
+ "version": "2.4.0",
+ "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.0.tgz",
+ "integrity": "sha512-xJTbh/d7Lm7SBhc1tNvTpeCHaEzoyxPrqNlvSdMfBTYwaY++UJFyXUOxAtsRUXjlqOfj8luNaR9vjCh4KeV+pg==",
+ "dev": true,
+ "requires": {
+ "is-promise": "^2.1.0"
+ }
+ },
+ "run-parallel": {
+ "version": "1.1.9",
+ "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.9.tgz",
+ "integrity": "sha512-DEqnSRTDw/Tc3FXf49zedI638Z9onwUotBMiUFKmrO2sdFKIbXamXGQ3Axd4qgphxKB4kw/qP1w5kTxnfU1B9Q==",
+ "dev": true
+ },
+ "run-queue": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz",
+ "integrity": "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=",
+ "dev": true,
+ "requires": {
+ "aproba": "^1.1.1"
+ }
+ },
+ "rx": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/rx/-/rx-4.1.0.tgz",
+ "integrity": "sha1-pfE/957zt0D+MKqAP7CfmIBdR4I=",
+ "dev": true
+ },
+ "rxjs": {
+ "version": "5.5.12",
+ "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-5.5.12.tgz",
+ "integrity": "sha512-xx2itnL5sBbqeeiVgNPVuQQ1nC8Jp2WfNJhXWHmElW9YmrpS9UVnNzhP3EH3HFqexO5Tlp8GhYY+WEcqcVMvGw==",
+ "dev": true,
+ "requires": {
+ "symbol-observable": "1.0.1"
+ }
+ },
+ "safe-buffer": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
+ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
+ "dev": true
+ },
+ "safe-regex": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz",
+ "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=",
+ "dev": true,
+ "requires": {
+ "ret": "~0.1.10"
+ }
+ },
+ "safer-buffer": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
+ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
+ },
+ "sane": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/sane/-/sane-4.1.0.tgz",
+ "integrity": "sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==",
+ "dev": true,
+ "requires": {
+ "@cnakazawa/watch": "^1.0.3",
+ "anymatch": "^2.0.0",
+ "capture-exit": "^2.0.0",
+ "exec-sh": "^0.3.2",
+ "execa": "^1.0.0",
+ "fb-watchman": "^2.0.0",
+ "micromatch": "^3.1.4",
+ "minimist": "^1.1.1",
+ "walker": "~1.0.5"
+ },
+ "dependencies": {
+ "cross-spawn": {
+ "version": "6.0.5",
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz",
+ "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==",
+ "dev": true,
+ "requires": {
+ "nice-try": "^1.0.4",
+ "path-key": "^2.0.1",
+ "semver": "^5.5.0",
+ "shebang-command": "^1.2.0",
+ "which": "^1.2.9"
+ }
+ },
+ "execa": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz",
+ "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==",
+ "dev": true,
+ "requires": {
+ "cross-spawn": "^6.0.0",
+ "get-stream": "^4.0.0",
+ "is-stream": "^1.1.0",
+ "npm-run-path": "^2.0.0",
+ "p-finally": "^1.0.0",
+ "signal-exit": "^3.0.0",
+ "strip-eof": "^1.0.0"
+ }
+ },
+ "get-stream": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz",
+ "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==",
+ "dev": true,
+ "requires": {
+ "pump": "^3.0.0"
+ }
+ },
+ "minimist": {
+ "version": "1.2.5",
+ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz",
+ "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==",
+ "dev": true
+ },
+ "npm-run-path": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz",
+ "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=",
+ "dev": true,
+ "requires": {
+ "path-key": "^2.0.0"
+ }
+ },
+ "p-finally": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz",
+ "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=",
+ "dev": true
+ },
+ "path-key": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz",
+ "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=",
+ "dev": true
+ },
+ "shebang-command": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz",
+ "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=",
+ "dev": true,
+ "requires": {
+ "shebang-regex": "^1.0.0"
+ }
+ },
+ "shebang-regex": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz",
+ "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=",
+ "dev": true
+ }
+ }
+ },
+ "sax": {
+ "version": "1.2.4",
+ "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz",
+ "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==",
+ "dev": true
+ },
+ "saxes": {
+ "version": "3.1.11",
+ "resolved": "https://registry.npmjs.org/saxes/-/saxes-3.1.11.tgz",
+ "integrity": "sha512-Ydydq3zC+WYDJK1+gRxRapLIED9PWeSuuS41wqyoRmzvhhh9nc+QQrVMKJYzJFULazeGhzSV0QleN2wD3boh2g==",
+ "dev": true,
+ "requires": {
+ "xmlchars": "^2.1.1"
+ }
+ },
+ "schema-utils": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz",
+ "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==",
+ "dev": true,
+ "requires": {
+ "ajv": "^6.1.0",
+ "ajv-errors": "^1.0.0",
+ "ajv-keywords": "^3.1.0"
+ }
+ },
+ "selenium-download": {
+ "version": "2.0.15",
+ "resolved": "https://registry.npmjs.org/selenium-download/-/selenium-download-2.0.15.tgz",
+ "integrity": "sha512-GoQgM8MtJ55czpTY9USNLS4jIjGnpsA6oZClk4ekawJt1GGZ6run0MmkvHTV0KXI61KDTD1K723ZdnUBR6KR+A==",
+ "dev": true,
+ "requires": {
+ "adm-zip": "~0.4.4",
+ "async": "^2.1.4",
+ "debug": "^2.2.0",
+ "fs.extra": "^1.2.1",
+ "lodash": "^4.6.1",
+ "mkdirp": "~0.5.1",
+ "request": "^2.34.0",
+ "semver": "^5.5.0",
+ "xml2js": "~0.4.1"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "mkdirp": {
+ "version": "0.5.1",
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
+ "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=",
+ "dev": true,
+ "requires": {
+ "minimist": "0.0.8"
+ }
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ }
+ }
+ },
+ "semver": {
+ "version": "5.7.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
+ "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
+ "dev": true
+ },
+ "send": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/send/-/send-0.1.4.tgz",
+ "integrity": "sha1-vnDY0b4B3mGCGvE3gLUDRaT3Gr0=",
+ "requires": {
+ "debug": "*",
+ "fresh": "0.2.0",
+ "mime": "~1.2.9",
+ "range-parser": "0.0.4"
+ }
+ },
+ "serialize-javascript": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-2.1.2.tgz",
+ "integrity": "sha512-rs9OggEUF0V4jUSecXazOYsLfu7OGK2qIn3c7IPBiffz32XniEp/TX9Xmc9LQfK2nQ2QKHvZ2oygKUGU0lG4jQ==",
+ "dev": true
+ },
+ "serve-index": {
+ "version": "1.9.1",
+ "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz",
+ "integrity": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=",
+ "dev": true,
+ "requires": {
+ "accepts": "~1.3.4",
+ "batch": "0.6.1",
+ "debug": "2.6.9",
+ "escape-html": "~1.0.3",
+ "http-errors": "~1.6.2",
+ "mime-types": "~2.1.17",
+ "parseurl": "~1.3.2"
+ },
+ "dependencies": {
+ "batch": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz",
+ "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=",
+ "dev": true
+ },
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "http-errors": {
+ "version": "1.6.3",
+ "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz",
+ "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=",
+ "dev": true,
+ "requires": {
+ "depd": "~1.1.2",
+ "inherits": "2.0.3",
+ "setprototypeof": "1.1.0",
+ "statuses": ">= 1.4.0 < 2"
+ }
+ },
+ "inherits": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
+ "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=",
+ "dev": true
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ },
+ "setprototypeof": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz",
+ "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==",
+ "dev": true
+ },
+ "statuses": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz",
+ "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=",
+ "dev": true
+ }
+ }
+ },
+ "serve-static": {
+ "version": "1.13.2",
+ "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.13.2.tgz",
+ "integrity": "sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==",
+ "dev": true,
+ "requires": {
+ "encodeurl": "~1.0.2",
+ "escape-html": "~1.0.3",
+ "parseurl": "~1.3.2",
+ "send": "0.16.2"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "fresh": {
+ "version": "0.5.2",
+ "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
+ "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=",
+ "dev": true
+ },
+ "http-errors": {
+ "version": "1.6.3",
+ "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz",
+ "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=",
+ "dev": true,
+ "requires": {
+ "depd": "~1.1.2",
+ "inherits": "2.0.3",
+ "setprototypeof": "1.1.0",
+ "statuses": ">= 1.4.0 < 2"
+ }
+ },
+ "inherits": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
+ "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=",
+ "dev": true
+ },
+ "mime": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz",
+ "integrity": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==",
+ "dev": true
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ },
+ "range-parser": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
+ "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
+ "dev": true
+ },
+ "send": {
+ "version": "0.16.2",
+ "resolved": "https://registry.npmjs.org/send/-/send-0.16.2.tgz",
+ "integrity": "sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==",
+ "dev": true,
+ "requires": {
+ "debug": "2.6.9",
+ "depd": "~1.1.2",
+ "destroy": "~1.0.4",
+ "encodeurl": "~1.0.2",
+ "escape-html": "~1.0.3",
+ "etag": "~1.8.1",
+ "fresh": "0.5.2",
+ "http-errors": "~1.6.2",
+ "mime": "1.4.1",
+ "ms": "2.0.0",
+ "on-finished": "~2.3.0",
+ "range-parser": "~1.2.0",
+ "statuses": "~1.4.0"
+ }
+ },
+ "setprototypeof": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz",
+ "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==",
+ "dev": true
+ },
+ "statuses": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz",
+ "integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==",
+ "dev": true
+ }
+ }
+ },
+ "server-destroy": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/server-destroy/-/server-destroy-1.0.1.tgz",
+ "integrity": "sha1-8Tv5KOQrnD55OD5hzDmYtdFObN0=",
+ "dev": true
+ },
+ "set-blocking": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
+ "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=",
+ "dev": true
+ },
+ "set-value": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz",
+ "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==",
+ "dev": true,
+ "requires": {
+ "extend-shallow": "^2.0.1",
+ "is-extendable": "^0.1.1",
+ "is-plain-object": "^2.0.3",
+ "split-string": "^3.0.1"
+ },
+ "dependencies": {
+ "extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "requires": {
+ "is-extendable": "^0.1.0"
+ }
+ }
+ }
+ },
+ "setimmediate": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz",
+ "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=",
+ "dev": true
+ },
+ "setprototypeof": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz",
+ "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==",
+ "dev": true
+ },
+ "sha.js": {
+ "version": "2.4.11",
+ "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz",
+ "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==",
+ "dev": true,
+ "requires": {
+ "inherits": "^2.0.1",
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "shebang-command": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
+ "dev": true,
+ "requires": {
+ "shebang-regex": "^3.0.0"
+ }
+ },
+ "shebang-regex": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
+ "dev": true
+ },
+ "shelljs": {
+ "version": "0.7.8",
+ "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.7.8.tgz",
+ "integrity": "sha1-3svPh0sNHl+3LhSxZKloMEjprLM=",
+ "dev": true,
+ "requires": {
+ "glob": "^7.0.0",
+ "interpret": "^1.0.0",
+ "rechoir": "^0.6.2"
+ }
+ },
+ "shellwords": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz",
+ "integrity": "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==",
+ "dev": true,
+ "optional": true
+ },
+ "sigmund": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz",
+ "integrity": "sha1-P/IfGYytIXX587eBhT/ZTQ0ZtZA=",
+ "dev": true
+ },
+ "signal-exit": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz",
+ "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=",
+ "dev": true
+ },
+ "sisteransi": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz",
+ "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==",
+ "dev": true
+ },
+ "slash": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
+ "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
+ "dev": true
+ },
+ "slice-ansi": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz",
+ "integrity": "sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^3.2.0",
+ "astral-regex": "^1.0.0",
+ "is-fullwidth-code-point": "^2.0.0"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
+ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^1.9.0"
+ }
+ },
+ "is-fullwidth-code-point": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
+ "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=",
+ "dev": true
+ }
+ }
+ },
+ "smart-buffer": {
+ "version": "1.1.15",
+ "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-1.1.15.tgz",
+ "integrity": "sha1-fxFLW2X6s+KjWqd1uxLw0cZJvxY=",
+ "dev": true
+ },
+ "snapdragon": {
+ "version": "0.8.2",
+ "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz",
+ "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==",
+ "dev": true,
+ "requires": {
+ "base": "^0.11.1",
+ "debug": "^2.2.0",
+ "define-property": "^0.2.5",
+ "extend-shallow": "^2.0.1",
+ "map-cache": "^0.2.2",
+ "source-map": "^0.5.6",
+ "source-map-resolve": "^0.5.0",
+ "use": "^3.1.0"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dev": true,
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "define-property": {
+ "version": "0.2.5",
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
+ "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
+ "dev": true,
+ "requires": {
+ "is-descriptor": "^0.1.0"
+ }
+ },
+ "extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+ "dev": true,
+ "requires": {
+ "is-extendable": "^0.1.0"
+ }
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ }
+ }
+ },
+ "snapdragon-node": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz",
+ "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==",
+ "dev": true,
+ "requires": {
+ "define-property": "^1.0.0",
+ "isobject": "^3.0.0",
+ "snapdragon-util": "^3.0.1"
+ },
+ "dependencies": {
+ "define-property": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
+ "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
+ "dev": true,
+ "requires": {
+ "is-descriptor": "^1.0.0"
+ }
+ },
+ "is-accessor-descriptor": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
+ "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
+ "dev": true,
+ "requires": {
+ "kind-of": "^6.0.0"
+ }
+ },
+ "is-data-descriptor": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
+ "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
+ "dev": true,
+ "requires": {
+ "kind-of": "^6.0.0"
+ }
+ },
+ "is-descriptor": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
+ "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
+ "dev": true,
+ "requires": {
+ "is-accessor-descriptor": "^1.0.0",
+ "is-data-descriptor": "^1.0.0",
+ "kind-of": "^6.0.2"
+ }
+ }
+ }
+ },
+ "snapdragon-util": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz",
+ "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==",
+ "dev": true,
+ "requires": {
+ "kind-of": "^3.2.0"
+ },
+ "dependencies": {
+ "kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "requires": {
+ "is-buffer": "^1.1.5"
+ }
+ }
+ }
+ },
+ "snowpack": {
+ "version": "1.7.1",
+ "resolved": "https://registry.npmjs.org/snowpack/-/snowpack-1.7.1.tgz",
+ "integrity": "sha512-W21f2olHpd73ozcdsoSudoXH9434LhI3q5wOSi5vpS6uz6PLJYyr7a98FjoUtmY2SHXancu9MXvV+2TemSkujA==",
+ "dev": true,
+ "requires": {
+ "@babel/core": "^7.6.4",
+ "@babel/plugin-transform-react-jsx": "^7.9.4",
+ "@babel/preset-env": "^7.6.3",
+ "@babel/types": "^7.6.3",
+ "@rollup/plugin-commonjs": "~11.0.0",
+ "@rollup/plugin-json": "^4.0.0",
+ "@rollup/plugin-node-resolve": "^7.1.0",
+ "@rollup/plugin-replace": "^2.1.0",
+ "cacache": "^15.0.0",
+ "cachedir": "^2.3.0",
+ "chalk": "^3.0.0",
+ "cosmiconfig": "^6.0.0",
+ "deepmerge": "^4.2.2",
+ "enhanced-resolve": "^4.1.1",
+ "es-module-lexer": "^0.3.17",
+ "find-package-json": "^1.2.0",
+ "glob": "^7.1.4",
+ "got": "^10.4.0",
+ "hasha": "^5.1.0",
+ "is-builtin-module": "^3.0.0",
+ "jsonschema": "^1.2.5",
+ "mkdirp": "^1.0.3",
+ "ora": "^3.1.0",
+ "p-queue": "^6.2.1",
+ "resolve-from": "^5.0.0",
+ "rimraf": "^3.0.0",
+ "rollup": "^2.3.0",
+ "rollup-plugin-babel": "^4.3.3",
+ "rollup-plugin-terser": "^5.1.1",
+ "validate-npm-package-name": "^3.0.0",
+ "yargs-parser": "^16.1.0"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
+ "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
+ "dev": true,
+ "requires": {
+ "@types/color-name": "^1.1.1",
+ "color-convert": "^2.0.1"
+ }
+ },
+ "cacache": {
+ "version": "15.0.3",
+ "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.0.3.tgz",
+ "integrity": "sha512-bc3jKYjqv7k4pWh7I/ixIjfcjPul4V4jme/WbjvwGS5LzoPL/GzXr4C5EgPNLO/QEZl9Oi61iGitYEdwcrwLCQ==",
+ "dev": true,
+ "requires": {
+ "chownr": "^2.0.0",
+ "fs-minipass": "^2.0.0",
+ "glob": "^7.1.4",
+ "infer-owner": "^1.0.4",
+ "lru-cache": "^5.1.1",
+ "minipass": "^3.1.1",
+ "minipass-collect": "^1.0.2",
+ "minipass-flush": "^1.0.5",
+ "minipass-pipeline": "^1.2.2",
+ "mkdirp": "^1.0.3",
+ "move-file": "^2.0.0",
+ "p-map": "^4.0.0",
+ "promise-inflight": "^1.0.1",
+ "rimraf": "^3.0.2",
+ "ssri": "^8.0.0",
+ "tar": "^6.0.2",
+ "unique-filename": "^1.1.1"
+ }
+ },
+ "chalk": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
+ "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "chownr": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz",
+ "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==",
+ "dev": true
+ },
+ "color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "requires": {
+ "color-name": "~1.1.4"
+ }
+ },
+ "color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true
+ },
+ "fsevents": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz",
+ "integrity": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==",
+ "dev": true,
+ "optional": true
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "hasha": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/hasha/-/hasha-5.2.0.tgz",
+ "integrity": "sha512-2W+jKdQbAdSIrggA8Q35Br8qKadTrqCTC8+XZvBWepKDK6m9XkX6Iz1a2yh2KP01kzAR/dpuMeUnocoLYDcskw==",
+ "dev": true,
+ "requires": {
+ "is-stream": "^2.0.0",
+ "type-fest": "^0.8.0"
+ }
+ },
+ "is-stream": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz",
+ "integrity": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==",
+ "dev": true
+ },
+ "mkdirp": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
+ "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
+ "dev": true
+ },
+ "p-map": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz",
+ "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==",
+ "dev": true,
+ "requires": {
+ "aggregate-error": "^3.0.0"
+ }
+ },
+ "rimraf": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
+ "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
+ "dev": true,
+ "requires": {
+ "glob": "^7.1.3"
+ }
+ },
+ "rollup": {
+ "version": "2.10.0",
+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.10.0.tgz",
+ "integrity": "sha512-7BmpEfUN9P6esJzWIn3DmR//90mW6YwYB1t3y48LpF8ITpYtL8s1kEirMKqUu44dVH/6a/rs0EuwYVL3FuRDoA==",
+ "dev": true,
+ "requires": {
+ "fsevents": "~2.1.2"
+ }
+ },
+ "ssri": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.0.tgz",
+ "integrity": "sha512-aq/pz989nxVYwn16Tsbj1TqFpD5LLrQxHf5zaHuieFV+R0Bbr4y8qUsOA45hXT/N4/9UNXTarBjnjVmjSOVaAA==",
+ "dev": true,
+ "requires": {
+ "minipass": "^3.1.1"
+ }
+ },
+ "supports-color": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
+ "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ },
+ "yargs-parser": {
+ "version": "16.1.0",
+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-16.1.0.tgz",
+ "integrity": "sha512-H/V41UNZQPkUMIT5h5hiwg4QKIY1RPvoBV4XcjUbRM8Bk2oKqqyZ0DIEbTFZB0XjbtSPG8SAa/0DxCQmiRgzKg==",
+ "dev": true,
+ "requires": {
+ "camelcase": "^5.0.0",
+ "decamelize": "^1.2.0"
+ }
+ }
+ }
+ },
+ "sntp": {
+ "version": "1.0.9",
+ "resolved": "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz",
+ "integrity": "sha1-ZUEYTMkK7qbG57NeJlkIJEPGYZg=",
+ "requires": {
+ "hoek": "2.x.x"
+ }
+ },
+ "socket.io": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-2.1.1.tgz",
+ "integrity": "sha512-rORqq9c+7W0DAK3cleWNSyfv/qKXV99hV4tZe+gGLfBECw3XEhBy7x85F3wypA9688LKjtwO9pX9L33/xQI8yA==",
+ "dev": true,
+ "requires": {
+ "debug": "~3.1.0",
+ "engine.io": "~3.2.0",
+ "has-binary2": "~1.0.2",
+ "socket.io-adapter": "~1.1.0",
+ "socket.io-client": "2.1.1",
+ "socket.io-parser": "~3.2.0"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz",
+ "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==",
+ "dev": true,
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "engine.io-client": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.2.1.tgz",
+ "integrity": "sha512-y5AbkytWeM4jQr7m/koQLc5AxpRKC1hEVUb/s1FUAWEJq5AzJJ4NLvzuKPuxtDi5Mq755WuDvZ6Iv2rXj4PTzw==",
+ "dev": true,
+ "requires": {
+ "component-emitter": "1.2.1",
+ "component-inherit": "0.0.3",
+ "debug": "~3.1.0",
+ "engine.io-parser": "~2.1.1",
+ "has-cors": "1.1.0",
+ "indexof": "0.0.1",
+ "parseqs": "0.0.5",
+ "parseuri": "0.0.5",
+ "ws": "~3.3.1",
+ "xmlhttprequest-ssl": "~1.5.4",
+ "yeast": "0.1.2"
+ }
+ },
+ "engine.io-parser": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-2.1.3.tgz",
+ "integrity": "sha512-6HXPre2O4Houl7c4g7Ic/XzPnHBvaEmN90vtRO9uLmwtRqQmTOw0QMevL1TOfL2Cpu1VzsaTmMotQgMdkzGkVA==",
+ "dev": true,
+ "requires": {
+ "after": "0.8.2",
+ "arraybuffer.slice": "~0.0.7",
+ "base64-arraybuffer": "0.1.5",
+ "blob": "0.0.5",
+ "has-binary2": "~1.0.2"
+ }
+ },
+ "isarray": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.1.tgz",
+ "integrity": "sha1-o32U7ZzaLVmGXJ92/llu4fM4dB4=",
+ "dev": true
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ },
+ "socket.io-client": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-2.1.1.tgz",
+ "integrity": "sha512-jxnFyhAuFxYfjqIgduQlhzqTcOEQSn+OHKVfAxWaNWa7ecP7xSNk2Dx/3UEsDcY7NcFafxvNvKPmmO7HTwTxGQ==",
+ "dev": true,
+ "requires": {
+ "backo2": "1.0.2",
+ "base64-arraybuffer": "0.1.5",
+ "component-bind": "1.0.0",
+ "component-emitter": "1.2.1",
+ "debug": "~3.1.0",
+ "engine.io-client": "~3.2.0",
+ "has-binary2": "~1.0.2",
+ "has-cors": "1.1.0",
+ "indexof": "0.0.1",
+ "object-component": "0.0.3",
+ "parseqs": "0.0.5",
+ "parseuri": "0.0.5",
+ "socket.io-parser": "~3.2.0",
+ "to-array": "0.1.4"
+ }
+ },
+ "socket.io-parser": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-3.2.0.tgz",
+ "integrity": "sha512-FYiBx7rc/KORMJlgsXysflWx/RIvtqZbyGLlHZvjfmPTPeuD/I8MaW7cfFrj5tRltICJdgwflhfZ3NVVbVLFQA==",
+ "dev": true,
+ "requires": {
+ "component-emitter": "1.2.1",
+ "debug": "~3.1.0",
+ "isarray": "2.0.1"
+ }
+ },
+ "ws": {
+ "version": "3.3.3",
+ "resolved": "https://registry.npmjs.org/ws/-/ws-3.3.3.tgz",
+ "integrity": "sha512-nnWLa/NwZSt4KQJu51MYlCcSQ5g7INpOrOMt4XV8j4dqTXdmlUmSHQ8/oLC069ckre0fRsgfvsKwbTdtKLCDkA==",
+ "dev": true,
+ "requires": {
+ "async-limiter": "~1.0.0",
+ "safe-buffer": "~5.1.0",
+ "ultron": "~1.1.0"
+ }
+ }
+ }
+ },
+ "socket.io-adapter": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-1.1.2.tgz",
+ "integrity": "sha512-WzZRUj1kUjrTIrUKpZLEzFZ1OLj5FwLlAFQs9kuZJzJi5DKdU7FsWc36SNmA8iDOtwBQyT8FkrriRM8vXLYz8g==",
+ "dev": true
+ },
+ "socket.io-client": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-2.3.0.tgz",
+ "integrity": "sha512-cEQQf24gET3rfhxZ2jJ5xzAOo/xhZwK+mOqtGRg5IowZsMgwvHwnf/mCRapAAkadhM26y+iydgwsXGObBB5ZdA==",
+ "dev": true,
+ "requires": {
+ "backo2": "1.0.2",
+ "base64-arraybuffer": "0.1.5",
+ "component-bind": "1.0.0",
+ "component-emitter": "1.2.1",
+ "debug": "~4.1.0",
+ "engine.io-client": "~3.4.0",
+ "has-binary2": "~1.0.2",
+ "has-cors": "1.1.0",
+ "indexof": "0.0.1",
+ "object-component": "0.0.3",
+ "parseqs": "0.0.5",
+ "parseuri": "0.0.5",
+ "socket.io-parser": "~3.3.0",
+ "to-array": "0.1.4"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
+ "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
+ "dev": true,
+ "requires": {
+ "ms": "^2.1.1"
+ }
+ }
+ }
+ },
+ "socket.io-parser": {
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-3.3.0.tgz",
+ "integrity": "sha512-hczmV6bDgdaEbVqhAeVMM/jfUfzuEZHsQg6eOmLgJht6G3mPKMxYm75w2+qhAQZ+4X+1+ATZ+QFKeOZD5riHng==",
+ "dev": true,
+ "requires": {
+ "component-emitter": "1.2.1",
+ "debug": "~3.1.0",
+ "isarray": "2.0.1"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz",
+ "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==",
+ "dev": true,
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "isarray": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.1.tgz",
+ "integrity": "sha1-o32U7ZzaLVmGXJ92/llu4fM4dB4=",
+ "dev": true
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+ "dev": true
+ }
+ }
+ },
+ "socks": {
+ "version": "1.1.10",
+ "resolved": "https://registry.npmjs.org/socks/-/socks-1.1.10.tgz",
+ "integrity": "sha1-W4t/x8jzQcU+0FbpKbe/Tei6e1o=",
+ "dev": true,
+ "requires": {
+ "ip": "^1.1.4",
+ "smart-buffer": "^1.0.13"
+ },
+ "dependencies": {
+ "ip": {
+ "version": "1.1.5",
+ "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz",
+ "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=",
+ "dev": true
+ }
+ }
+ },
+ "socks-proxy-agent": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-2.1.1.tgz",
+ "integrity": "sha512-sFtmYqdUK5dAMh85H0LEVFUCO7OhJJe1/z2x/Z6mxp3s7/QPf1RkZmpZy+BpuU0bEjcV9npqKjq9Y3kwFUjnxw==",
+ "dev": true,
+ "requires": {
+ "agent-base": "2",
+ "extend": "3",
+ "socks": "~1.1.5"
+ }
+ },
+ "source-list-map": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz",
+ "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==",
+ "dev": true
+ },
+ "source-map": {
+ "version": "0.5.7",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+ "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=",
+ "dev": true
+ },
+ "source-map-resolve": {
+ "version": "0.5.3",
+ "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz",
+ "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==",
+ "dev": true,
+ "requires": {
+ "atob": "^2.1.2",
+ "decode-uri-component": "^0.2.0",
+ "resolve-url": "^0.2.1",
+ "source-map-url": "^0.4.0",
+ "urix": "^0.1.0"
+ }
+ },
+ "source-map-support": {
+ "version": "0.5.16",
+ "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.16.tgz",
+ "integrity": "sha512-efyLRJDr68D9hBBNIPWFjhpFzURh+KJykQwvMyW5UiZzYwoF6l4YMMDIJJEyFWxWCqfyxLzz6tSfUFR+kXXsVQ==",
+ "dev": true,
+ "requires": {
+ "buffer-from": "^1.0.0",
+ "source-map": "^0.6.0"
+ },
+ "dependencies": {
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ }
+ }
+ },
+ "source-map-url": {
+ "version": "0.4.0",
+ "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz",
+ "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=",
+ "dev": true
+ },
+ "sourcemap-codec": {
+ "version": "1.4.8",
+ "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz",
+ "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==",
+ "dev": true
+ },
+ "spdx-correct": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.0.tgz",
+ "integrity": "sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q==",
+ "dev": true,
+ "requires": {
+ "spdx-expression-parse": "^3.0.0",
+ "spdx-license-ids": "^3.0.0"
+ }
+ },
+ "spdx-exceptions": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz",
+ "integrity": "sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA==",
+ "dev": true
+ },
+ "spdx-expression-parse": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz",
+ "integrity": "sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==",
+ "dev": true,
+ "requires": {
+ "spdx-exceptions": "^2.1.0",
+ "spdx-license-ids": "^3.0.0"
+ }
+ },
+ "spdx-license-ids": {
+ "version": "3.0.5",
+ "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz",
+ "integrity": "sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q==",
+ "dev": true
+ },
+ "split-string": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz",
+ "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==",
+ "dev": true,
+ "requires": {
+ "extend-shallow": "^3.0.0"
+ }
+ },
+ "sprintf-js": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
+ "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=",
+ "dev": true
+ },
+ "sshpk": {
+ "version": "1.16.1",
+ "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz",
+ "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==",
+ "requires": {
+ "asn1": "~0.2.3",
+ "assert-plus": "^1.0.0",
+ "bcrypt-pbkdf": "^1.0.0",
+ "dashdash": "^1.12.0",
+ "ecc-jsbn": "~0.1.1",
+ "getpass": "^0.1.1",
+ "jsbn": "~0.1.0",
+ "safer-buffer": "^2.0.2",
+ "tweetnacl": "~0.14.0"
+ },
+ "dependencies": {
+ "assert-plus": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
+ "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU="
+ }
+ }
+ },
+ "ssri": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz",
+ "integrity": "sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA==",
+ "dev": true,
+ "requires": {
+ "figgy-pudding": "^3.5.1"
+ }
+ },
+ "stack-utils": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-1.0.2.tgz",
+ "integrity": "sha512-MTX+MeG5U994cazkjd/9KNAapsHnibjMLnfXodlkXw76JEea0UiNzrqidzo1emMwk7w5Qhc9jd4Bn9TBb1MFwA==",
+ "dev": true
+ },
+ "static-extend": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz",
+ "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=",
+ "dev": true,
+ "requires": {
+ "define-property": "^0.2.5",
+ "object-copy": "^0.1.0"
+ },
+ "dependencies": {
+ "define-property": {
+ "version": "0.2.5",
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
+ "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
+ "dev": true,
+ "requires": {
+ "is-descriptor": "^0.1.0"
+ }
+ }
+ }
+ },
+ "statuses": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz",
+ "integrity": "sha1-+vUbnrdKrvOzrPStX2Gr8ky3uT4=",
+ "dev": true
+ },
+ "stealthy-require": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz",
+ "integrity": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=",
+ "dev": true
+ },
+ "stream-browserify": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz",
+ "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==",
+ "dev": true,
+ "requires": {
+ "inherits": "~2.0.1",
+ "readable-stream": "^2.0.2"
+ },
+ "dependencies": {
+ "isarray": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
+ "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
+ "dev": true
+ },
+ "process-nextick-args": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
+ "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
+ "dev": true
+ },
+ "readable-stream": {
+ "version": "2.3.7",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
+ "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
+ "dev": true,
+ "requires": {
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.3",
+ "isarray": "~1.0.0",
+ "process-nextick-args": "~2.0.0",
+ "safe-buffer": "~5.1.1",
+ "string_decoder": "~1.1.1",
+ "util-deprecate": "~1.0.1"
+ }
+ },
+ "string_decoder": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
+ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
+ "dev": true,
+ "requires": {
+ "safe-buffer": "~5.1.0"
+ }
+ }
+ }
+ },
+ "stream-counter": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/stream-counter/-/stream-counter-0.2.0.tgz",
+ "integrity": "sha1-3tJmVWMZyLDiIoErnPOyb6fZR94=",
+ "requires": {
+ "readable-stream": "~1.1.8"
+ }
+ },
+ "stream-each": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz",
+ "integrity": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==",
+ "dev": true,
+ "requires": {
+ "end-of-stream": "^1.1.0",
+ "stream-shift": "^1.0.0"
+ }
+ },
+ "stream-http": {
+ "version": "2.8.3",
+ "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz",
+ "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==",
+ "dev": true,
+ "requires": {
+ "builtin-status-codes": "^3.0.0",
+ "inherits": "^2.0.1",
+ "readable-stream": "^2.3.6",
+ "to-arraybuffer": "^1.0.0",
+ "xtend": "^4.0.0"
+ },
+ "dependencies": {
+ "isarray": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
+ "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
+ "dev": true
+ },
+ "process-nextick-args": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
+ "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
+ "dev": true
+ },
+ "readable-stream": {
+ "version": "2.3.7",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
+ "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
+ "dev": true,
+ "requires": {
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.3",
+ "isarray": "~1.0.0",
+ "process-nextick-args": "~2.0.0",
+ "safe-buffer": "~5.1.1",
+ "string_decoder": "~1.1.1",
+ "util-deprecate": "~1.0.1"
+ }
+ },
+ "string_decoder": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
+ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
+ "dev": true,
+ "requires": {
+ "safe-buffer": "~5.1.0"
+ }
+ }
+ }
+ },
+ "stream-shift": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz",
+ "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==",
+ "dev": true
+ },
+ "stream-throttle": {
+ "version": "0.1.3",
+ "resolved": "https://registry.npmjs.org/stream-throttle/-/stream-throttle-0.1.3.tgz",
+ "integrity": "sha1-rdV8jXzHOoFjDTHNVdOWHPr7qcM=",
+ "dev": true,
+ "requires": {
+ "commander": "^2.2.0",
+ "limiter": "^1.0.5"
+ },
+ "dependencies": {
+ "commander": {
+ "version": "2.20.3",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
+ "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
+ "dev": true
+ }
+ }
+ },
+ "string-length": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/string-length/-/string-length-3.1.0.tgz",
+ "integrity": "sha512-Ttp5YvkGm5v9Ijagtaz1BnN+k9ObpvS0eIBblPMp2YWL8FBmi9qblQ9fexc2k/CXFgrTIteU3jAw3payCnwSTA==",
+ "dev": true,
+ "requires": {
+ "astral-regex": "^1.0.0",
+ "strip-ansi": "^5.2.0"
+ },
+ "dependencies": {
+ "ansi-regex": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
+ "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==",
+ "dev": true
+ },
+ "strip-ansi": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
+ "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
+ "dev": true,
+ "requires": {
+ "ansi-regex": "^4.1.0"
+ }
+ }
+ }
+ },
+ "string-replace-loader": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/string-replace-loader/-/string-replace-loader-2.2.0.tgz",
+ "integrity": "sha512-Ukt4ZC8+xVWdBRut3/iwnPJCNL1yV8AbVKXn8UcWdYrHgtuW4UDDAbBSi/J/CQDEWQBt824AJvPYahF23eJLRg==",
+ "dev": true,
+ "requires": {
+ "loader-utils": "^1.2.3",
+ "schema-utils": "^1.0.0"
+ }
+ },
+ "string-replace-webpack-plugin": {
+ "version": "0.1.3",
+ "resolved": "https://registry.npmjs.org/string-replace-webpack-plugin/-/string-replace-webpack-plugin-0.1.3.tgz",
+ "integrity": "sha1-c8ZX51nWbP6Arh4M8JGqJW0OcVw=",
+ "dev": true,
+ "requires": {
+ "async": "~0.2.10",
+ "css-loader": "^0.9.1",
+ "file-loader": "^0.8.1",
+ "loader-utils": "~0.2.3",
+ "style-loader": "^0.8.3"
+ },
+ "dependencies": {
+ "async": {
+ "version": "0.2.10",
+ "resolved": "https://registry.npmjs.org/async/-/async-0.2.10.tgz",
+ "integrity": "sha1-trvgsGdLnXGXCMo43owjfLUmw9E=",
+ "dev": true
+ },
+ "big.js": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz",
+ "integrity": "sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q==",
+ "dev": true
+ },
+ "css-loader": {
+ "version": "0.9.1",
+ "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-0.9.1.tgz",
+ "integrity": "sha1-LhqgDOfjDvLGp6SzAKCAp8l54Nw=",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "csso": "1.3.x",
+ "loader-utils": "~0.2.2",
+ "source-map": "~0.1.38"
+ }
+ },
+ "emojis-list": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz",
+ "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=",
+ "dev": true
+ },
+ "file-loader": {
+ "version": "0.8.5",
+ "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-0.8.5.tgz",
+ "integrity": "sha1-knXQMf54DyfUf19K8CvUNxPMFRs=",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "loader-utils": "~0.2.5"
+ }
+ },
+ "json5": {
+ "version": "0.5.1",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz",
+ "integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=",
+ "dev": true
+ },
+ "loader-utils": {
+ "version": "0.2.17",
+ "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-0.2.17.tgz",
+ "integrity": "sha1-+G5jdNQyBabmxg6RlvF8Apm/s0g=",
+ "dev": true,
+ "requires": {
+ "big.js": "^3.1.3",
+ "emojis-list": "^2.0.0",
+ "json5": "^0.5.0",
+ "object-assign": "^4.0.1"
+ }
+ },
+ "source-map": {
+ "version": "0.1.43",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz",
+ "integrity": "sha1-wkvBRspRfBRx9drL4lcbK3+eM0Y=",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "amdefine": ">=0.0.4"
+ }
+ }
+ }
+ },
+ "string-width": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz",
+ "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=",
+ "dev": true,
+ "requires": {
+ "code-point-at": "^1.0.0",
+ "is-fullwidth-code-point": "^1.0.0",
+ "strip-ansi": "^3.0.0"
+ }
+ },
+ "string.prototype.trimleft": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/string.prototype.trimleft/-/string.prototype.trimleft-2.1.1.tgz",
+ "integrity": "sha512-iu2AGd3PuP5Rp7x2kEZCrB2Nf41ehzh+goo8TV7z8/XDBbsvc6HQIlUl9RjkZ4oyrW1XM5UwlGl1oVEaDjg6Ag==",
+ "dev": true,
+ "requires": {
+ "define-properties": "^1.1.3",
+ "function-bind": "^1.1.1"
+ }
+ },
+ "string.prototype.trimright": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/string.prototype.trimright/-/string.prototype.trimright-2.1.1.tgz",
+ "integrity": "sha512-qFvWL3/+QIgZXVmJBfpHmxLB7xsUXz6HsUmP8+5dRaC3Q7oKUv9Vo6aMCRZC1smrtyECFsIT30PqBJ1gTjAs+g==",
+ "dev": true,
+ "requires": {
+ "define-properties": "^1.1.3",
+ "function-bind": "^1.1.1"
+ }
+ },
+ "string_decoder": {
+ "version": "0.10.31",
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz",
+ "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ="
+ },
+ "stringstream": {
+ "version": "0.0.6",
+ "resolved": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.6.tgz",
+ "integrity": "sha512-87GEBAkegbBcweToUrdzf3eLhWNg06FJTebl4BVJz/JgWy8CvEr9dRtX5qWphiynMSQlxxi+QqN0z5T32SLlhA=="
+ },
+ "strip-ansi": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+ "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+ "requires": {
+ "ansi-regex": "^2.0.0"
+ }
+ },
+ "strip-bom": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz",
+ "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=",
+ "dev": true,
+ "requires": {
+ "is-utf8": "^0.2.0"
+ }
+ },
+ "strip-eof": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz",
+ "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=",
+ "dev": true
+ },
+ "strip-final-newline": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz",
+ "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==",
+ "dev": true
+ },
+ "strip-json-comments": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.0.1.tgz",
+ "integrity": "sha512-VTyMAUfdm047mwKl+u79WIdrZxtFtn+nBxHeb844XBQ9uMNTuTHdx2hc5RiAJYqwTj3wc/xe5HLSdJSkJ+WfZw==",
+ "dev": true
+ },
+ "style-loader": {
+ "version": "0.8.3",
+ "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-0.8.3.tgz",
+ "integrity": "sha1-9Pkut9tjdodI8VBlzWcA9aHIU1c=",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "loader-utils": "^0.2.5"
+ },
+ "dependencies": {
+ "big.js": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz",
+ "integrity": "sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q==",
+ "dev": true,
+ "optional": true
+ },
+ "emojis-list": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz",
+ "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=",
+ "dev": true,
+ "optional": true
+ },
+ "json5": {
+ "version": "0.5.1",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz",
+ "integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=",
+ "dev": true,
+ "optional": true
+ },
+ "loader-utils": {
+ "version": "0.2.17",
+ "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-0.2.17.tgz",
+ "integrity": "sha1-+G5jdNQyBabmxg6RlvF8Apm/s0g=",
+ "dev": true,
+ "optional": true,
+ "requires": {
+ "big.js": "^3.1.3",
+ "emojis-list": "^2.0.0",
+ "json5": "^0.5.0",
+ "object-assign": "^4.0.1"
+ }
+ }
+ }
+ },
+ "supports-color": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+ "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc="
+ },
+ "supports-hyperlinks": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.1.0.tgz",
+ "integrity": "sha512-zoE5/e+dnEijk6ASB6/qrK+oYdm2do1hjoLWrqUC/8WEIW1gbxFcKuBof7sW8ArN6e+AYvsE8HBGiVRWL/F5CA==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0",
+ "supports-color": "^7.0.0"
+ },
+ "dependencies": {
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
+ "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "sweetalert2": {
+ "version": "9.13.1",
+ "resolved": "https://registry.npmjs.org/sweetalert2/-/sweetalert2-9.13.1.tgz",
+ "integrity": "sha512-yyhf9f3FIYNpOLVCbGOdFr13KuXqKWOiHvoFBio7mMtZxTpOsa3XRdVDd0EYCoI+MDuUyYh6TeeG345j8zxT/Q=="
+ },
+ "symbol-observable": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.0.1.tgz",
+ "integrity": "sha1-g0D8RwLDEi310iKI+IKD9RPT/dQ=",
+ "dev": true
+ },
+ "symbol-tree": {
+ "version": "3.2.4",
+ "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz",
+ "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==",
+ "dev": true
+ },
+ "table": {
+ "version": "5.4.6",
+ "resolved": "https://registry.npmjs.org/table/-/table-5.4.6.tgz",
+ "integrity": "sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==",
+ "dev": true,
+ "requires": {
+ "ajv": "^6.10.2",
+ "lodash": "^4.17.14",
+ "slice-ansi": "^2.1.0",
+ "string-width": "^3.0.0"
+ },
+ "dependencies": {
+ "ansi-regex": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
+ "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==",
+ "dev": true
+ },
+ "emoji-regex": {
+ "version": "7.0.3",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz",
+ "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==",
+ "dev": true
+ },
+ "is-fullwidth-code-point": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
+ "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=",
+ "dev": true
+ },
+ "string-width": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz",
+ "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==",
+ "dev": true,
+ "requires": {
+ "emoji-regex": "^7.0.1",
+ "is-fullwidth-code-point": "^2.0.0",
+ "strip-ansi": "^5.1.0"
+ }
+ },
+ "strip-ansi": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
+ "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
+ "dev": true,
+ "requires": {
+ "ansi-regex": "^4.1.0"
+ }
+ }
+ }
+ },
+ "table-layout": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/table-layout/-/table-layout-0.3.0.tgz",
+ "integrity": "sha1-buINxIPbNxs+XIf3BO0vfHmdLJo=",
+ "dev": true,
+ "requires": {
+ "array-back": "^1.0.3",
+ "core-js": "^2.4.1",
+ "deep-extend": "~0.4.1",
+ "feature-detect-es6": "^1.3.1",
+ "typical": "^2.6.0",
+ "wordwrapjs": "^2.0.0-0"
+ }
+ },
+ "tapable": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz",
+ "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==",
+ "dev": true
+ },
+ "tar": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/tar/-/tar-6.0.2.tgz",
+ "integrity": "sha512-Glo3jkRtPcvpDlAs/0+hozav78yoXKFr+c4wgw62NNMO3oo4AaJdCo21Uu7lcwr55h39W2XD1LMERc64wtbItg==",
+ "dev": true,
+ "requires": {
+ "chownr": "^2.0.0",
+ "fs-minipass": "^2.0.0",
+ "minipass": "^3.0.0",
+ "minizlib": "^2.1.0",
+ "mkdirp": "^1.0.3",
+ "yallist": "^4.0.0"
+ },
+ "dependencies": {
+ "chownr": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz",
+ "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==",
+ "dev": true
+ },
+ "mkdirp": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
+ "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
+ "dev": true
+ },
+ "yallist": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
+ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
+ "dev": true
+ }
+ }
+ },
+ "terminal-link": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz",
+ "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==",
+ "dev": true,
+ "requires": {
+ "ansi-escapes": "^4.2.1",
+ "supports-hyperlinks": "^2.0.0"
+ }
+ },
+ "terser": {
+ "version": "4.6.6",
+ "resolved": "https://registry.npmjs.org/terser/-/terser-4.6.6.tgz",
+ "integrity": "sha512-4lYPyeNmstjIIESr/ysHg2vUPRGf2tzF9z2yYwnowXVuVzLEamPN1Gfrz7f8I9uEPuHcbFlW4PLIAsJoxXyJ1g==",
+ "dev": true,
+ "requires": {
+ "commander": "^2.20.0",
+ "source-map": "~0.6.1",
+ "source-map-support": "~0.5.12"
+ },
+ "dependencies": {
+ "commander": {
+ "version": "2.20.3",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
+ "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
+ "dev": true
+ },
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ }
+ }
+ },
+ "terser-webpack-plugin": {
+ "version": "1.4.3",
+ "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.3.tgz",
+ "integrity": "sha512-QMxecFz/gHQwteWwSo5nTc6UaICqN1bMedC5sMtUc7y3Ha3Q8y6ZO0iCR8pq4RJC8Hjf0FEPEHZqcMB/+DFCrA==",
+ "dev": true,
+ "requires": {
+ "cacache": "^12.0.2",
+ "find-cache-dir": "^2.1.0",
+ "is-wsl": "^1.1.0",
+ "schema-utils": "^1.0.0",
+ "serialize-javascript": "^2.1.2",
+ "source-map": "^0.6.1",
+ "terser": "^4.1.2",
+ "webpack-sources": "^1.4.0",
+ "worker-farm": "^1.7.0"
+ },
+ "dependencies": {
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ }
+ }
+ },
+ "test-exclude": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz",
+ "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==",
+ "dev": true,
+ "requires": {
+ "@istanbuljs/schema": "^0.1.2",
+ "glob": "^7.1.4",
+ "minimatch": "^3.0.4"
+ }
+ },
+ "test-value": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/test-value/-/test-value-2.1.0.tgz",
+ "integrity": "sha1-Edpv9nDzRxpztiXKTz/c97t0gpE=",
+ "dev": true,
+ "requires": {
+ "array-back": "^1.0.3",
+ "typical": "^2.6.0"
+ }
+ },
+ "text-table": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz",
+ "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=",
+ "dev": true
+ },
+ "tfunk": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/tfunk/-/tfunk-3.1.0.tgz",
+ "integrity": "sha1-OORBT8ZJd9h6/apy+sttKfgve1s=",
+ "dev": true,
+ "requires": {
+ "chalk": "^1.1.1",
+ "object-path": "^0.9.0"
+ }
+ },
+ "throat": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/throat/-/throat-5.0.0.tgz",
+ "integrity": "sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==",
+ "dev": true
+ },
+ "throttleit": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/throttleit/-/throttleit-1.0.0.tgz",
+ "integrity": "sha1-nnhYNtr0Z0MUWlmEtiaNgoUorGw="
+ },
+ "through": {
+ "version": "2.3.8",
+ "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz",
+ "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=",
+ "dev": true
+ },
+ "through2": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz",
+ "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==",
+ "dev": true,
+ "requires": {
+ "readable-stream": "~2.3.6",
+ "xtend": "~4.0.1"
+ },
+ "dependencies": {
+ "isarray": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
+ "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
+ "dev": true
+ },
+ "process-nextick-args": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
+ "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
+ "dev": true
+ },
+ "readable-stream": {
+ "version": "2.3.7",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
+ "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
+ "dev": true,
+ "requires": {
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.3",
+ "isarray": "~1.0.0",
+ "process-nextick-args": "~2.0.0",
+ "safe-buffer": "~5.1.1",
+ "string_decoder": "~1.1.1",
+ "util-deprecate": "~1.0.1"
+ }
+ },
+ "string_decoder": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
+ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
+ "dev": true,
+ "requires": {
+ "safe-buffer": "~5.1.0"
+ }
+ }
+ }
+ },
+ "thunkify": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/thunkify/-/thunkify-2.1.2.tgz",
+ "integrity": "sha1-+qDp0jDFGsyVyhOjYawFyn4EVT0=",
+ "dev": true
+ },
+ "timers-browserify": {
+ "version": "2.0.11",
+ "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.11.tgz",
+ "integrity": "sha512-60aV6sgJ5YEbzUdn9c8kYGIqOubPoUdqQCul3SBAsRCZ40s6Y5cMcrW4dt3/k/EsbLVJNl9n6Vz3fTc+k2GeKQ==",
+ "dev": true,
+ "requires": {
+ "setimmediate": "^1.0.4"
+ }
+ },
+ "tmp": {
+ "version": "0.0.33",
+ "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz",
+ "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==",
+ "dev": true,
+ "requires": {
+ "os-tmpdir": "~1.0.2"
+ }
+ },
+ "tmpl": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz",
+ "integrity": "sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE=",
+ "dev": true
+ },
+ "to-array": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/to-array/-/to-array-0.1.4.tgz",
+ "integrity": "sha1-F+bBH3PdTz10zaek/zI46a2b+JA=",
+ "dev": true
+ },
+ "to-arraybuffer": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz",
+ "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=",
+ "dev": true
+ },
+ "to-fast-properties": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz",
+ "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=",
+ "dev": true
+ },
+ "to-object-path": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz",
+ "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=",
+ "dev": true,
+ "requires": {
+ "kind-of": "^3.0.2"
+ },
+ "dependencies": {
+ "kind-of": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+ "dev": true,
+ "requires": {
+ "is-buffer": "^1.1.5"
+ }
+ }
+ }
+ },
+ "to-readable-stream": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-2.1.0.tgz",
+ "integrity": "sha512-o3Qa6DGg1CEXshSdvWNX2sN4QHqg03SPq7U6jPXRahlQdl5dK8oXjkU/2/sGrnOZKeGV1zLSO8qPwyKklPPE7w==",
+ "dev": true
+ },
+ "to-regex": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz",
+ "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==",
+ "dev": true,
+ "requires": {
+ "define-property": "^2.0.2",
+ "extend-shallow": "^3.0.2",
+ "regex-not": "^1.0.2",
+ "safe-regex": "^1.1.0"
+ }
+ },
+ "to-regex-range": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz",
+ "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=",
+ "dev": true,
+ "requires": {
+ "is-number": "^3.0.0",
+ "repeat-string": "^1.6.1"
+ }
+ },
+ "toidentifier": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz",
+ "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==",
+ "dev": true
+ },
+ "tokenize2": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/tokenize2/-/tokenize2-1.3.1.tgz",
+ "integrity": "sha512-l/K3INmunCa5Kpp97I0qooqY05t8TeFy26mFUoYouVrIEKazzu+rE+tJB2eJCxh9g2huZUc6Oq/pn/Wxrks+Fw==",
+ "requires": {
+ "jquery": ">=3.4.0"
+ },
+ "dependencies": {
+ "jquery": {
+ "version": "3.4.1",
+ "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.4.1.tgz",
+ "integrity": "sha512-36+AdBzCL+y6qjw5Tx7HgzeGCzC81MDDgaUP8ld2zhx58HdqXGoBd+tHdrBMiyjGQs0Hxs/MLZTu/eHNJJuWPw=="
+ }
+ }
+ },
+ "toposort": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/toposort/-/toposort-1.0.7.tgz",
+ "integrity": "sha1-LmhELZ9k7HILjMieZEOsbKqVACk=",
+ "dev": true
+ },
+ "tough-cookie": {
+ "version": "2.2.2",
+ "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.2.2.tgz",
+ "integrity": "sha1-yDoYMPTl7wuT7yo0iOck+N4Basc="
+ },
+ "tr46": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz",
+ "integrity": "sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=",
+ "dev": true,
+ "requires": {
+ "punycode": "^2.1.0"
+ }
+ },
+ "tslib": {
+ "version": "1.11.1",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.11.1.tgz",
+ "integrity": "sha512-aZW88SY8kQbU7gpV19lN24LtXh/yD4ZZg6qieAJDDg+YBsJcSmLGK9QpnUjAKVG/xefmvJGd1WUmfpT/g6AJGA==",
+ "dev": true
+ },
+ "tty-browserify": {
+ "version": "0.0.0",
+ "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz",
+ "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=",
+ "dev": true
+ },
+ "tunnel-agent": {
+ "version": "0.4.3",
+ "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.3.tgz",
+ "integrity": "sha1-Y3PbdpCf5XDgjXNYM2Xtgop07us="
+ },
+ "tweetnacl": {
+ "version": "0.14.5",
+ "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz",
+ "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q="
+ },
+ "type-check": {
+ "version": "0.3.2",
+ "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz",
+ "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=",
+ "dev": true,
+ "requires": {
+ "prelude-ls": "~1.1.2"
+ }
+ },
+ "type-detect": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-0.1.1.tgz",
+ "integrity": "sha1-C6XsKohWQORw6k6FBZcZANrFiCI=",
+ "dev": true
+ },
+ "type-fest": {
+ "version": "0.8.1",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz",
+ "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==",
+ "dev": true
+ },
+ "typedarray": {
+ "version": "0.0.6",
+ "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz",
+ "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c="
+ },
+ "typedarray-to-buffer": {
+ "version": "3.1.5",
+ "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz",
+ "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==",
+ "dev": true,
+ "requires": {
+ "is-typedarray": "^1.0.0"
+ }
+ },
+ "typical": {
+ "version": "2.6.1",
+ "resolved": "https://registry.npmjs.org/typical/-/typical-2.6.1.tgz",
+ "integrity": "sha1-XAgOXWYcu+OCWdLnCjxyU+hziB0=",
+ "dev": true
+ },
+ "ua-parser-js": {
+ "version": "0.7.17",
+ "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.17.tgz",
+ "integrity": "sha512-uRdSdu1oA1rncCQL7sCj8vSyZkgtL7faaw9Tc9rZ3mGgraQ7+Pdx7w5mnOSF3gw9ZNG6oc+KXfkon3bKuROm0g==",
+ "dev": true
+ },
+ "uglify-js": {
+ "version": "3.8.0",
+ "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.8.0.tgz",
+ "integrity": "sha512-ugNSTT8ierCsDHso2jkBHXYrU8Y5/fY2ZUprfrJUiD7YpuFvV4jODLFmb3h4btQjqr5Nh4TX4XtgDfCU1WdioQ==",
+ "dev": true,
+ "requires": {
+ "commander": "~2.20.3",
+ "source-map": "~0.6.1"
+ },
+ "dependencies": {
+ "commander": {
+ "version": "2.20.3",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
+ "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
+ "dev": true
+ },
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ }
+ }
+ },
+ "uglifycss": {
+ "version": "0.0.29",
+ "resolved": "https://registry.npmjs.org/uglifycss/-/uglifycss-0.0.29.tgz",
+ "integrity": "sha512-J2SQ2QLjiknNGbNdScaNZsXgmMGI0kYNrXaDlr4obnPW9ni1jljb1NeEVWAiTgZ8z+EBWP2ozfT9vpy03rjlMQ==",
+ "dev": true
+ },
+ "uid2": {
+ "version": "0.0.3",
+ "resolved": "https://registry.npmjs.org/uid2/-/uid2-0.0.3.tgz",
+ "integrity": "sha1-SDEm4Rd03y9xuLY53NeZw3YWK4I="
+ },
+ "ultron": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/ultron/-/ultron-1.1.1.tgz",
+ "integrity": "sha512-UIEXBNeYmKptWH6z8ZnqTeS8fV74zG0/eRU9VGkpzz+LIJNs8W/zM/L+7ctCkRrgbNnnR0xxw4bKOr0cW0N0Og==",
+ "dev": true
+ },
+ "underscore": {
+ "version": "1.8.3",
+ "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.8.3.tgz",
+ "integrity": "sha1-Tz+1OxBuYJf8+ctBCfKl6b36UCI="
+ },
+ "unicode-canonical-property-names-ecmascript": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz",
+ "integrity": "sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==",
+ "dev": true
+ },
+ "unicode-match-property-ecmascript": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz",
+ "integrity": "sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==",
+ "dev": true,
+ "requires": {
+ "unicode-canonical-property-names-ecmascript": "^1.0.4",
+ "unicode-property-aliases-ecmascript": "^1.0.4"
+ }
+ },
+ "unicode-match-property-value-ecmascript": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz",
+ "integrity": "sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==",
+ "dev": true
+ },
+ "unicode-property-aliases-ecmascript": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz",
+ "integrity": "sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg==",
+ "dev": true
+ },
+ "union-value": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz",
+ "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==",
+ "dev": true,
+ "requires": {
+ "arr-union": "^3.1.0",
+ "get-value": "^2.0.6",
+ "is-extendable": "^0.1.1",
+ "set-value": "^2.0.1"
+ }
+ },
+ "uniq": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz",
+ "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=",
+ "dev": true
+ },
+ "unique-filename": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz",
+ "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==",
+ "dev": true,
+ "requires": {
+ "unique-slug": "^2.0.0"
+ }
+ },
+ "unique-slug": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz",
+ "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==",
+ "dev": true,
+ "requires": {
+ "imurmurhash": "^0.1.4"
+ }
+ },
+ "universalify": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz",
+ "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==",
+ "dev": true
+ },
+ "unpipe": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
+ "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=",
+ "dev": true
+ },
+ "unset-value": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz",
+ "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=",
+ "dev": true,
+ "requires": {
+ "has-value": "^0.3.1",
+ "isobject": "^3.0.0"
+ },
+ "dependencies": {
+ "has-value": {
+ "version": "0.3.1",
+ "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz",
+ "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=",
+ "dev": true,
+ "requires": {
+ "get-value": "^2.0.3",
+ "has-values": "^0.1.4",
+ "isobject": "^2.0.0"
+ },
+ "dependencies": {
+ "isobject": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz",
+ "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=",
+ "dev": true,
+ "requires": {
+ "isarray": "1.0.0"
+ }
+ }
+ }
+ },
+ "has-values": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz",
+ "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=",
+ "dev": true
+ },
+ "isarray": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
+ "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
+ "dev": true
+ }
+ }
+ },
+ "untildify": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz",
+ "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==",
+ "dev": true
+ },
+ "upath": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz",
+ "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==",
+ "dev": true
+ },
+ "upper-case": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz",
+ "integrity": "sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg=",
+ "dev": true
+ },
+ "uri-js": {
+ "version": "4.2.2",
+ "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz",
+ "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==",
+ "dev": true,
+ "requires": {
+ "punycode": "^2.1.0"
+ }
+ },
+ "urijs": {
+ "version": "1.18.12",
+ "resolved": "https://registry.npmjs.org/urijs/-/urijs-1.18.12.tgz",
+ "integrity": "sha512-WlvUkocbQ+GYhi8zkcbecbGYq7YLSd2I3InxAfqeh6mWvWalBE7bISDHcAL3J7STrWFfizuJ709srHD+RuABPQ=="
+ },
+ "urix": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz",
+ "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=",
+ "dev": true
+ },
+ "url": {
+ "version": "0.11.0",
+ "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz",
+ "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=",
+ "dev": true,
+ "requires": {
+ "punycode": "1.3.2",
+ "querystring": "0.2.0"
+ },
+ "dependencies": {
+ "punycode": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz",
+ "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=",
+ "dev": true
+ }
+ }
+ },
+ "use": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz",
+ "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==",
+ "dev": true
+ },
+ "util": {
+ "version": "0.11.1",
+ "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz",
+ "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==",
+ "dev": true,
+ "requires": {
+ "inherits": "2.0.3"
+ },
+ "dependencies": {
+ "inherits": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
+ "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=",
+ "dev": true
+ }
+ }
+ },
+ "util-deprecate": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
+ "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8="
+ },
+ "util.promisify": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz",
+ "integrity": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==",
+ "dev": true,
+ "requires": {
+ "define-properties": "^1.1.2",
+ "object.getownpropertydescriptors": "^2.0.3"
+ }
+ },
+ "utila": {
+ "version": "0.4.0",
+ "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz",
+ "integrity": "sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=",
+ "dev": true
+ },
+ "utils-merge": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
+ "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=",
+ "dev": true
+ },
+ "v8-compile-cache": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.1.0.tgz",
+ "integrity": "sha512-usZBT3PW+LOjM25wbqIlZwPeJV+3OSz3M1k1Ws8snlW39dZyYL9lOGC5FgPVHfk0jKmjiDV8Z0mIbVQPiwFs7g==",
+ "dev": true
+ },
+ "v8-to-istanbul": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-4.1.2.tgz",
+ "integrity": "sha512-G9R+Hpw0ITAmPSr47lSlc5A1uekSYzXxTMlFxso2xoffwo4jQnzbv1p9yXIinO8UMZKfAFewaCHwWvnH4Jb4Ug==",
+ "dev": true,
+ "requires": {
+ "@types/istanbul-lib-coverage": "^2.0.1",
+ "convert-source-map": "^1.6.0",
+ "source-map": "^0.7.3"
+ },
+ "dependencies": {
+ "source-map": {
+ "version": "0.7.3",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz",
+ "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==",
+ "dev": true
+ }
+ }
+ },
+ "validate-npm-package-license": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz",
+ "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==",
+ "dev": true,
+ "requires": {
+ "spdx-correct": "^3.0.0",
+ "spdx-expression-parse": "^3.0.0"
+ }
+ },
+ "validate-npm-package-name": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz",
+ "integrity": "sha1-X6kS2B630MdK/BQN5zF/DKffQ34=",
+ "dev": true,
+ "requires": {
+ "builtins": "^1.0.3"
+ }
+ },
+ "verror": {
+ "version": "1.10.0",
+ "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz",
+ "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=",
+ "requires": {
+ "assert-plus": "^1.0.0",
+ "core-util-is": "1.0.2",
+ "extsprintf": "^1.2.0"
+ },
+ "dependencies": {
+ "assert-plus": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
+ "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU="
+ }
+ }
+ },
+ "vm-browserify": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz",
+ "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==",
+ "dev": true
+ },
+ "vulcanize": {
+ "version": "1.16.0",
+ "resolved": "https://registry.npmjs.org/vulcanize/-/vulcanize-1.16.0.tgz",
+ "integrity": "sha512-TYlFljSc896b5+0FmMiw0JAMrHNBiHx0IAFC/dQR3Dxdb9Nx43ohm6wMWTlPXQn4sk/0WkqfgoAA6SLxyvPCLQ==",
+ "dev": true,
+ "requires": {
+ "dom5": "^1.3.1",
+ "es6-promise": "^2.1.0",
+ "hydrolysis": "^1.19.1",
+ "nopt": "^3.0.1",
+ "path-posix": "^1.0.0"
+ }
+ },
+ "w3c-hr-time": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz",
+ "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==",
+ "dev": true,
+ "requires": {
+ "browser-process-hrtime": "^1.0.0"
+ }
+ },
+ "w3c-xmlserializer": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-1.1.2.tgz",
+ "integrity": "sha512-p10l/ayESzrBMYWRID6xbuCKh2Fp77+sA0doRuGn4tTIMrrZVeqfpKjXHY+oDh3K4nLdPgNwMTVP6Vp4pvqbNg==",
+ "dev": true,
+ "requires": {
+ "domexception": "^1.0.1",
+ "webidl-conversions": "^4.0.2",
+ "xml-name-validator": "^3.0.0"
+ }
+ },
+ "walk": {
+ "version": "2.3.14",
+ "resolved": "https://registry.npmjs.org/walk/-/walk-2.3.14.tgz",
+ "integrity": "sha512-5skcWAUmySj6hkBdH6B6+3ddMjVQYH5Qy9QGbPmN8kVmLteXk+yVXg+yfk1nbX30EYakahLrr8iPcCxJQSCBeg==",
+ "dev": true,
+ "requires": {
+ "foreachasync": "^3.0.0"
+ }
+ },
+ "walker": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.7.tgz",
+ "integrity": "sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=",
+ "dev": true,
+ "requires": {
+ "makeerror": "1.0.x"
+ }
+ },
+ "watchpack": {
+ "version": "1.6.1",
+ "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.6.1.tgz",
+ "integrity": "sha512-+IF9hfUFOrYOOaKyfaI7h7dquUIOgyEMoQMLA7OP5FxegKA2+XdXThAZ9TU2kucfhDH7rfMHs1oPYziVGWRnZA==",
+ "dev": true,
+ "requires": {
+ "chokidar": "^2.1.8",
+ "graceful-fs": "^4.1.2",
+ "neo-async": "^2.5.0"
+ }
+ },
+ "wcwidth": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz",
+ "integrity": "sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=",
+ "dev": true,
+ "requires": {
+ "defaults": "^1.0.3"
+ }
+ },
+ "webidl-conversions": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz",
+ "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==",
+ "dev": true
+ },
+ "webpack": {
+ "version": "4.43.0",
+ "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.43.0.tgz",
+ "integrity": "sha512-GW1LjnPipFW2Y78OOab8NJlCflB7EFskMih2AHdvjbpKMeDJqEgSx24cXXXiPS65+WSwVyxtDsJH6jGX2czy+g==",
+ "dev": true,
+ "requires": {
+ "@webassemblyjs/ast": "1.9.0",
+ "@webassemblyjs/helper-module-context": "1.9.0",
+ "@webassemblyjs/wasm-edit": "1.9.0",
+ "@webassemblyjs/wasm-parser": "1.9.0",
+ "acorn": "^6.4.1",
+ "ajv": "^6.10.2",
+ "ajv-keywords": "^3.4.1",
+ "chrome-trace-event": "^1.0.2",
+ "enhanced-resolve": "^4.1.0",
+ "eslint-scope": "^4.0.3",
+ "json-parse-better-errors": "^1.0.2",
+ "loader-runner": "^2.4.0",
+ "loader-utils": "^1.2.3",
+ "memory-fs": "^0.4.1",
+ "micromatch": "^3.1.10",
+ "mkdirp": "^0.5.3",
+ "neo-async": "^2.6.1",
+ "node-libs-browser": "^2.2.1",
+ "schema-utils": "^1.0.0",
+ "tapable": "^1.1.3",
+ "terser-webpack-plugin": "^1.4.3",
+ "watchpack": "^1.6.1",
+ "webpack-sources": "^1.4.1"
+ },
+ "dependencies": {
+ "acorn": {
+ "version": "6.4.1",
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.1.tgz",
+ "integrity": "sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA==",
+ "dev": true
+ },
+ "eslint-scope": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz",
+ "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==",
+ "dev": true,
+ "requires": {
+ "esrecurse": "^4.1.0",
+ "estraverse": "^4.1.1"
+ }
+ },
+ "minimist": {
+ "version": "1.2.5",
+ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz",
+ "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==",
+ "dev": true
+ },
+ "mkdirp": {
+ "version": "0.5.5",
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz",
+ "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==",
+ "dev": true,
+ "requires": {
+ "minimist": "^1.2.5"
+ }
+ }
+ }
+ },
+ "webpack-cli": {
+ "version": "3.3.11",
+ "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.3.11.tgz",
+ "integrity": "sha512-dXlfuml7xvAFwYUPsrtQAA9e4DOe58gnzSxhgrO/ZM/gyXTBowrsYeubyN4mqGhYdpXMFNyQ6emjJS9M7OBd4g==",
+ "dev": true,
+ "requires": {
+ "chalk": "2.4.2",
+ "cross-spawn": "6.0.5",
+ "enhanced-resolve": "4.1.0",
+ "findup-sync": "3.0.0",
+ "global-modules": "2.0.0",
+ "import-local": "2.0.0",
+ "interpret": "1.2.0",
+ "loader-utils": "1.2.3",
+ "supports-color": "6.1.0",
+ "v8-compile-cache": "2.0.3",
+ "yargs": "13.2.4"
+ },
+ "dependencies": {
+ "ansi-regex": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
+ "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==",
+ "dev": true
+ },
+ "ansi-styles": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
+ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^1.9.0"
+ }
+ },
+ "chalk": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
+ "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^3.2.1",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^5.3.0"
+ },
+ "dependencies": {
+ "supports-color": {
+ "version": "5.5.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
+ "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^3.0.0"
+ }
+ }
+ }
+ },
+ "cliui": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz",
+ "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==",
+ "dev": true,
+ "requires": {
+ "string-width": "^3.1.0",
+ "strip-ansi": "^5.2.0",
+ "wrap-ansi": "^5.1.0"
+ }
+ },
+ "cross-spawn": {
+ "version": "6.0.5",
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz",
+ "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==",
+ "dev": true,
+ "requires": {
+ "nice-try": "^1.0.4",
+ "path-key": "^2.0.1",
+ "semver": "^5.5.0",
+ "shebang-command": "^1.2.0",
+ "which": "^1.2.9"
+ }
+ },
+ "emoji-regex": {
+ "version": "7.0.3",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz",
+ "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==",
+ "dev": true
+ },
+ "emojis-list": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz",
+ "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=",
+ "dev": true
+ },
+ "enhanced-resolve": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.1.0.tgz",
+ "integrity": "sha512-F/7vkyTtyc/llOIn8oWclcB25KdRaiPBpZYDgJHgh/UHtpgT2p2eldQgtQnLtUvfMKPKxbRaQM/hHkvLHt1Vng==",
+ "dev": true,
+ "requires": {
+ "graceful-fs": "^4.1.2",
+ "memory-fs": "^0.4.0",
+ "tapable": "^1.0.0"
+ }
+ },
+ "execa": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz",
+ "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==",
+ "dev": true,
+ "requires": {
+ "cross-spawn": "^6.0.0",
+ "get-stream": "^4.0.0",
+ "is-stream": "^1.1.0",
+ "npm-run-path": "^2.0.0",
+ "p-finally": "^1.0.0",
+ "signal-exit": "^3.0.0",
+ "strip-eof": "^1.0.0"
+ }
+ },
+ "get-caller-file": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
+ "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
+ "dev": true
+ },
+ "get-stream": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz",
+ "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==",
+ "dev": true,
+ "requires": {
+ "pump": "^3.0.0"
+ }
+ },
+ "invert-kv": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz",
+ "integrity": "sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA==",
+ "dev": true
+ },
+ "is-fullwidth-code-point": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
+ "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=",
+ "dev": true
+ },
+ "json5": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
+ "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==",
+ "dev": true,
+ "requires": {
+ "minimist": "^1.2.0"
+ }
+ },
+ "lcid": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz",
+ "integrity": "sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA==",
+ "dev": true,
+ "requires": {
+ "invert-kv": "^2.0.0"
+ }
+ },
+ "loader-utils": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz",
+ "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==",
+ "dev": true,
+ "requires": {
+ "big.js": "^5.2.2",
+ "emojis-list": "^2.0.0",
+ "json5": "^1.0.1"
+ }
+ },
+ "minimist": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz",
+ "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=",
+ "dev": true
+ },
+ "npm-run-path": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz",
+ "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=",
+ "dev": true,
+ "requires": {
+ "path-key": "^2.0.0"
+ }
+ },
+ "os-locale": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz",
+ "integrity": "sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q==",
+ "dev": true,
+ "requires": {
+ "execa": "^1.0.0",
+ "lcid": "^2.0.0",
+ "mem": "^4.0.0"
+ }
+ },
+ "p-finally": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz",
+ "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=",
+ "dev": true
+ },
+ "path-key": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz",
+ "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=",
+ "dev": true
+ },
+ "require-main-filename": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz",
+ "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==",
+ "dev": true
+ },
+ "shebang-command": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz",
+ "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=",
+ "dev": true,
+ "requires": {
+ "shebang-regex": "^1.0.0"
+ }
+ },
+ "shebang-regex": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz",
+ "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=",
+ "dev": true
+ },
+ "string-width": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz",
+ "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==",
+ "dev": true,
+ "requires": {
+ "emoji-regex": "^7.0.1",
+ "is-fullwidth-code-point": "^2.0.0",
+ "strip-ansi": "^5.1.0"
+ }
+ },
+ "strip-ansi": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
+ "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
+ "dev": true,
+ "requires": {
+ "ansi-regex": "^4.1.0"
+ }
+ },
+ "supports-color": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
+ "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^3.0.0"
+ }
+ },
+ "v8-compile-cache": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.0.3.tgz",
+ "integrity": "sha512-CNmdbwQMBjwr9Gsmohvm0pbL954tJrNzf6gWL3K+QMQf00PF7ERGrEiLgjuU3mKreLC2MeGhUsNV9ybTbLgd3w==",
+ "dev": true
+ },
+ "which-module": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz",
+ "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=",
+ "dev": true
+ },
+ "wrap-ansi": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz",
+ "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^3.2.0",
+ "string-width": "^3.0.0",
+ "strip-ansi": "^5.0.0"
+ }
+ },
+ "y18n": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz",
+ "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==",
+ "dev": true
+ },
+ "yargs": {
+ "version": "13.2.4",
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.2.4.tgz",
+ "integrity": "sha512-HG/DWAJa1PAnHT9JAhNa8AbAv3FPaiLzioSjCcmuXXhP8MlpHO5vwls4g4j6n30Z74GVQj8Xa62dWVx1QCGklg==",
+ "dev": true,
+ "requires": {
+ "cliui": "^5.0.0",
+ "find-up": "^3.0.0",
+ "get-caller-file": "^2.0.1",
+ "os-locale": "^3.1.0",
+ "require-directory": "^2.1.1",
+ "require-main-filename": "^2.0.0",
+ "set-blocking": "^2.0.0",
+ "string-width": "^3.0.0",
+ "which-module": "^2.0.0",
+ "y18n": "^4.0.0",
+ "yargs-parser": "^13.1.0"
+ }
+ }
+ }
+ },
+ "webpack-log": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz",
+ "integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==",
+ "dev": true,
+ "requires": {
+ "ansi-colors": "^3.0.0",
+ "uuid": "^3.3.2"
+ },
+ "dependencies": {
+ "uuid": {
+ "version": "3.4.0",
+ "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
+ "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==",
+ "dev": true
+ }
+ }
+ },
+ "webpack-merge-and-include-globally": {
+ "version": "2.1.24",
+ "resolved": "https://registry.npmjs.org/webpack-merge-and-include-globally/-/webpack-merge-and-include-globally-2.1.24.tgz",
+ "integrity": "sha512-foR6vQAIH+fZscSTjbb9wxV6T1UZG3JmHvr79SOqTY13je0Vg9HV5pYSSvCFLgn7BTEKLQjegAzoOvbQNw9MSw==",
+ "dev": true,
+ "requires": {
+ "es6-promisify": "^6.0.0",
+ "glob": "^7.1.2",
+ "rev-hash": "^3.0.0"
+ }
+ },
+ "webpack-sources": {
+ "version": "1.4.3",
+ "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz",
+ "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==",
+ "dev": true,
+ "requires": {
+ "source-list-map": "^2.0.0",
+ "source-map": "~0.6.1"
+ },
+ "dependencies": {
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ }
+ }
+ },
+ "whatwg-encoding": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz",
+ "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==",
+ "dev": true,
+ "requires": {
+ "iconv-lite": "0.4.24"
+ }
+ },
+ "whatwg-mimetype": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz",
+ "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==",
+ "dev": true
+ },
+ "whatwg-url": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz",
+ "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==",
+ "dev": true,
+ "requires": {
+ "lodash.sortby": "^4.7.0",
+ "tr46": "^1.0.1",
+ "webidl-conversions": "^4.0.2"
+ }
+ },
+ "which": {
+ "version": "1.2.14",
+ "resolved": "https://registry.npmjs.org/which/-/which-1.2.14.tgz",
+ "integrity": "sha1-mofEN48D6CfOyvGs31bHNsAcFOU=",
+ "requires": {
+ "isexe": "^2.0.0"
+ }
+ },
+ "which-module": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz",
+ "integrity": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=",
+ "dev": true
+ },
+ "window-size": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.2.0.tgz",
+ "integrity": "sha1-tDFbtCFKPXBY6+7okuE/ok2YsHU=",
+ "dev": true
+ },
+ "word-wrap": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz",
+ "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==",
+ "dev": true
+ },
+ "wordwrap": {
+ "version": "0.0.3",
+ "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz",
+ "integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc=",
+ "dev": true
+ },
+ "wordwrapjs": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/wordwrapjs/-/wordwrapjs-2.0.0.tgz",
+ "integrity": "sha1-q1X2leYRjak4WP3XDAU9HF4BrCA=",
+ "dev": true,
+ "requires": {
+ "array-back": "^1.0.3",
+ "feature-detect-es6": "^1.3.1",
+ "reduce-flatten": "^1.0.1",
+ "typical": "^2.6.0"
+ }
+ },
+ "worker-farm": {
+ "version": "1.7.0",
+ "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz",
+ "integrity": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==",
+ "dev": true,
+ "requires": {
+ "errno": "~0.1.7"
+ }
+ },
+ "wrap-ansi": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz",
+ "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=",
+ "dev": true,
+ "requires": {
+ "string-width": "^1.0.1",
+ "strip-ansi": "^3.0.1"
+ }
+ },
+ "wrappy": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
+ "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8="
+ },
+ "write": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/write/-/write-1.0.3.tgz",
+ "integrity": "sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==",
+ "dev": true,
+ "requires": {
+ "mkdirp": "^0.5.1"
+ },
+ "dependencies": {
+ "mkdirp": {
+ "version": "0.5.1",
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
+ "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=",
+ "dev": true,
+ "requires": {
+ "minimist": "0.0.8"
+ }
+ }
+ }
+ },
+ "write-file-atomic": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz",
+ "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==",
+ "dev": true,
+ "requires": {
+ "imurmurhash": "^0.1.4",
+ "is-typedarray": "^1.0.0",
+ "signal-exit": "^3.0.2",
+ "typedarray-to-buffer": "^3.1.5"
+ }
+ },
+ "ws": {
+ "version": "6.1.4",
+ "resolved": "https://registry.npmjs.org/ws/-/ws-6.1.4.tgz",
+ "integrity": "sha512-eqZfL+NE/YQc1/ZynhojeV8q+H050oR8AZ2uIev7RU10svA9ZnJUddHcOUZTJLinZ9yEfdA2kSATS2qZK5fhJA==",
+ "dev": true,
+ "requires": {
+ "async-limiter": "~1.0.0"
+ }
+ },
+ "xml-name-validator": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz",
+ "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==",
+ "dev": true
+ },
+ "xml2js": {
+ "version": "0.4.23",
+ "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.4.23.tgz",
+ "integrity": "sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==",
+ "dev": true,
+ "requires": {
+ "sax": ">=0.6.0",
+ "xmlbuilder": "~11.0.0"
+ }
+ },
+ "xmlbuilder": {
+ "version": "11.0.1",
+ "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz",
+ "integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==",
+ "dev": true
+ },
+ "xmlchars": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz",
+ "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==",
+ "dev": true
+ },
+ "xmldom": {
+ "version": "0.1.27",
+ "resolved": "https://registry.npmjs.org/xmldom/-/xmldom-0.1.27.tgz",
+ "integrity": "sha1-1QH5ezvbQDr4757MIFcxh6rawOk=",
+ "dev": true
+ },
+ "xmlhttprequest-ssl": {
+ "version": "1.5.5",
+ "resolved": "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.5.tgz",
+ "integrity": "sha1-wodrBhaKrcQOV9l+gRkayPQ5iz4=",
+ "dev": true
+ },
+ "xregexp": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/xregexp/-/xregexp-2.0.0.tgz",
+ "integrity": "sha1-UqY+VsoLhKfzpfPWGHLxJq16WUM=",
+ "dev": true
+ },
+ "xtend": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz",
+ "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ=="
+ },
+ "y18n": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz",
+ "integrity": "sha1-bRX7qITAhnnA136I53WegR4H+kE=",
+ "dev": true
+ },
+ "yallist": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
+ "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
+ "dev": true
+ },
+ "yaml": {
+ "version": "1.9.2",
+ "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.9.2.tgz",
+ "integrity": "sha512-HPT7cGGI0DuRcsO51qC1j9O16Dh1mZ2bnXwsi0jrSpsLz0WxOLSLXfkABVl6bZO629py3CU+OMJtpNHDLB97kg==",
+ "dev": true,
+ "requires": {
+ "@babel/runtime": "^7.9.2"
+ }
+ },
+ "yargs": {
+ "version": "6.4.0",
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-6.4.0.tgz",
+ "integrity": "sha1-gW4ahm1VmMzzTlWW3c4i2S2kkNQ=",
+ "dev": true,
+ "requires": {
+ "camelcase": "^3.0.0",
+ "cliui": "^3.2.0",
+ "decamelize": "^1.1.1",
+ "get-caller-file": "^1.0.1",
+ "os-locale": "^1.4.0",
+ "read-pkg-up": "^1.0.1",
+ "require-directory": "^2.1.1",
+ "require-main-filename": "^1.0.1",
+ "set-blocking": "^2.0.0",
+ "string-width": "^1.0.2",
+ "which-module": "^1.0.0",
+ "window-size": "^0.2.0",
+ "y18n": "^3.2.1",
+ "yargs-parser": "^4.1.0"
+ },
+ "dependencies": {
+ "camelcase": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz",
+ "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=",
+ "dev": true
+ },
+ "yargs-parser": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-4.2.1.tgz",
+ "integrity": "sha1-KczqwNxPA8bIe0qfIX3RjJ90hxw=",
+ "dev": true,
+ "requires": {
+ "camelcase": "^3.0.0"
+ }
+ }
+ }
+ },
+ "yargs-parser": {
+ "version": "13.1.1",
+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.1.tgz",
+ "integrity": "sha512-oVAVsHz6uFrg3XQheFII8ESO2ssAf9luWuAd6Wexsu4F3OtIW0o8IribPXYrD4WC24LWtPrJlGy87y5udK+dxQ==",
+ "dev": true,
+ "requires": {
+ "camelcase": "^5.0.0",
+ "decamelize": "^1.2.0"
+ }
+ },
+ "yauzl": {
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.4.1.tgz",
+ "integrity": "sha1-lSj0QtqxsihOWLQ3m7GU4i4MQAU=",
+ "requires": {
+ "fd-slicer": "~1.0.1"
+ }
+ },
+ "yeast": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/yeast/-/yeast-0.1.2.tgz",
+ "integrity": "sha1-AI4G2AlDIMNy28L47XagymyKxBk=",
+ "dev": true
+ }
+ }
+}
diff --git a/package.json b/package.json
index e4d5d868b..20ae6fed6 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "iva",
- "version": "1.0.2",
+ "version": "2.0.0-rc",
"description": "IVA description",
"repository": {
"type": "git",
@@ -14,12 +14,20 @@
"copy": "mkdir -p build/vendors && cp -r src/*.html src/conf src/img LICENSE README.md build && cp src/prod/index.html build && ./build-vendors.js",
"copy-jsorolla": "mkdir -p build/jsorolla && cd lib/jsorolla && npm run dist && cd ../.. && cp -r lib/jsorolla/dist build/jsorolla",
"vulcanize": "node_modules/vulcanize/bin/vulcanize build/iva-app.html > build/iva-app-vulcanize.html && mv build/iva-app-vulcanize.html build/iva-app.html",
- "build-iva-app": "./post-replace-iva.js",
- "build": "npm run clean && npm run copy && npm run copy-jsorolla && npm run vulcanize && npm run build-iva-app",
- "test-e2e": "./node_modules/.bin/nightwatch"
+ "build-iva-app_old": "./post-replace-iva.js",
+ "build_old": "npm run clean && npm run copy && npm run copy-jsorolla && npm run vulcanize && npm run build-iva-app",
+ "test-e2e_old": "./node_modules/.bin/nightwatch",
+ "serve": "browser-sync start --config bs-config.js",
+ "prepare": "npx snowpack",
+ "browser-support": "npx browserslist",
+ "build": "npx webpack",
+ "deploy": "npx webpack && ./docker/docker-build.py push",
+ "e2e": "./credentials.sh npx cypress open"
},
"dependencies": {
+ "@fortawesome/fontawesome-free": "^5.11.2",
"@polymer/polymer": "2.6.1",
+ "@svgdotjs/svg.js": "^3.0.16",
"@webcomponents/shadycss": "^1.1.0",
"@webcomponents/webcomponentsjs": "^1.1.0",
"animate.css": "^3.5.2",
@@ -28,37 +36,92 @@
"bootstrap-3-typeahead": "^4.0.2",
"bootstrap-colorpicker": "2.3.6",
"bootstrap-notify": "git://github.com/mouse0270/bootstrap-notify#master",
- "bootstrap-select": "1.12.4",
- "bootstrap-table": "1.11.1",
+ "bootstrap-select": "^1.13.12",
+ "bootstrap-table": "^1.16.0",
"bootstrap-treeview": "1.2.0",
"bootstrap-validator": "~0.11.9",
"cookies-js": "~1.2.3",
+ "countup.js": "^2.0.4",
"crypto-js": "~3.1.9-1",
"eonasdan-bootstrap-datetimepicker": "~4.17.43",
"file-saver": "~1.3.2",
- "@fortawesome/fontawesome-free": "^5.6.0",
- "highcharts": "~4.2.7",
+ "highcharts": "^8.0.4",
"jquery": "~2.2.4",
- "jquery.json-viewer": "^1.1.0",
+ "jquery.json-viewer": "^1.4.0",
"jwt-decode": "^2.2.0",
+ "lit-element": "^2.3.1",
+ "lodash": "^4.17.19",
"moment": "^2.15.1",
"qtip2": "~3.0.3",
+ "sweetalert2": "^9.13.1",
+ "tokenize2": "^1.3.1",
"underscore": "~1.8.3",
"urijs": "~1.18.10"
},
"devDependencies": {
- "eslint": "~4.11.0",
- "eslint-plugin-jsx-a11y": "^5.1.1",
- "eslint-plugin-import": "^2.7.0",
- "eslint-plugin-react": "^7.1.0",
+ "@babel/core": "^7.9.6",
+ "@babel/plugin-proposal-class-properties": "^7.8.3",
+ "@babel/plugin-proposal-export-default-from": "^7.8.3",
+ "@babel/plugin-transform-runtime": "^7.9.6",
+ "@babel/preset-env": "^7.9.6",
+ "@purtuga/esm-webpack-plugin": "^1.2.1",
+ "@rollup/plugin-alias": "^3.0.1",
+ "@rollup/plugin-replace": "^2.3.1",
+ "babel-eslint": "^10.0.3",
+ "babel-loader": "^8.1.0",
+ "bower": "*",
+ "browser-sync": "^2.26.7",
+ "clean-webpack-plugin": "^3.0.0",
+ "copy-webpack-plugin": "^5.1.1",
"crisper": "~2.1.1",
+ "css-loader": "^3.4.2",
+ "cypress": "^4.12.1",
+ "cypress-wait-until": "^1.7.0",
+ "eslint": "^6.5.1",
+ "eslint-config-google": "^0.14.0",
+ "eslint-plugin-cypress": "^2.10.3",
+ "eslint-plugin-import": "^2.18.2",
+ "file-loader": "^5.0.2",
+ "html-loader": "^0.5.5",
+ "html-replace-webpack-plugin": "^2.5.6",
+ "html-webpack-plugin": "^3.2.0",
+ "jest": "^25.1.0",
"js-beautify": "~1.6.4",
- "uglify-js": "^2.7.3",
- "vulcanize": "~1.16.0",
- "xmldom": "0.1.27",
- "shelljs": "0.7.8",
- "bower": "*",
"nightwatch": "^0.9.16",
- "selenium-download": "^2.0.10"
- }
+ "null-loader": "^4.0.0",
+ "rollup-plugin-babel": "^4.3.3",
+ "rollup-plugin-cleaner": "^1.0.0",
+ "rollup-plugin-copy": "^3.3.0",
+ "rollup-plugin-eslint": "^7.0.0",
+ "rollup-plugin-fill-html": "^1.1.0",
+ "selenium-download": "^2.0.10",
+ "shelljs": "0.7.8",
+ "snowpack": "^1.7.1",
+ "string-replace-loader": "^2.2.0",
+ "string-replace-webpack-plugin": "^0.1.3",
+ "uglify-js": "^3.8.0",
+ "uglifycss": "0.0.29",
+ "vulcanize": "~1.16.0",
+ "webpack": "^4.43.0",
+ "webpack-cli": "^3.3.11",
+ "webpack-merge-and-include-globally": "^2.1.24",
+ "xmldom": "0.1.27"
+ },
+ "snowpack": {
+ "webDependencies": [
+ "lit-element",
+ "lit-html",
+ "lit-html/directives/class-map.js",
+ "lit-html/directives/if-defined.js"
+ ]
+ },
+ "browserslist": [
+ ">1%",
+ "not dead",
+ "not ie 11"
+ ],
+ "_browserslist": [
+ "chrome > 79",
+ "firefox > 75"
+ ]
}
diff --git a/src/about.html b/src/about.html
deleted file mode 100644
index ef3b8b2d8..000000000
--- a/src/about.html
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
-
-
-
-
-
-
-
-
About
-
-
-
-
-
-
-
diff --git a/src/about.js b/src/about.js
new file mode 100644
index 000000000..e7456f5d5
--- /dev/null
+++ b/src/about.js
@@ -0,0 +1,47 @@
+/**
+ * Copyright 2015-2019 OpenCB
+ *
+ * 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
+ *
+ * http://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.
+ */
+
+import {LitElement, html} from "/web_modules/lit-element.js";
+import "../lib/jsorolla/src/core/webcomponents/tool-header.js";
+
+
+export default class AboutWeb extends LitElement {
+
+ constructor() {
+ super();
+ }
+
+ createRenderRoot() {
+ return this;
+ }
+
+ render() {
+ return html`
+
+ `;
+ }
+
+}
+
+customElements.define("about-web", AboutWeb);
diff --git a/src/assets.js b/src/assets.js
new file mode 100644
index 000000000..01ba8602e
--- /dev/null
+++ b/src/assets.js
@@ -0,0 +1 @@
+console.log("assets entry point");
diff --git a/src/category-page.js b/src/category-page.js
new file mode 100644
index 000000000..b0e7f2136
--- /dev/null
+++ b/src/category-page.js
@@ -0,0 +1,171 @@
+/**
+ * Copyright 2015-2019 OpenCB
+ *
+ * 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
+ *
+ * http://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.
+ */
+
+import {LitElement, html} from "/web_modules/lit-element.js";
+import Utils from "../lib/jsorolla/src/core/utils.js";
+import UtilsNew from "../lib/jsorolla/src/core/utilsNew.js";
+import "../lib/jsorolla/src/core/webcomponents/tool-header.js";
+import "../lib/jsorolla/src/core/webcomponents/text-icon.js";
+
+// TODO the property "disabled" in config have to be renamed in active (boolean for an user or an usergroup)
+
+export default class CategoryPage extends LitElement {
+
+ constructor() {
+ super();
+ this._init();
+ }
+
+ createRenderRoot() {
+ return this;
+ }
+
+ static get properties() {
+ return {
+ opencgaSession: {
+ type: Object
+ },
+ config: {
+ type: Object
+ }
+ };
+ }
+
+ _init() {
+ this._prefix = "sf-" + Utils.randomString(6) + "_";
+ this._config = {...this.getDefaultConfig(), ...this.config};
+
+ }
+
+ updated(changedProperties) {
+ if (changedProperties.has("property")) {
+ this.propertyObserver();
+ }
+ }
+
+ isVisible(item) {
+ switch (item.visibility) {
+ case "public":
+ return true;
+ case "private":
+ return UtilsNew.isNotUndefinedOrNull(this.opencgaSession) && UtilsNew.isNotEmpty(this.opencgaSession.token);
+ case "none":
+ default:
+ return false;
+ }
+ }
+
+ renderHTML(html) {
+ return document.createRange().createContextualFragment(`${html}`);
+ }
+
+ getDefaultConfig() {
+
+ }
+
+ render() {
+ return html`
+
+
+
+
+
+ ${this.config.submenu && this.config.submenu.length ? this.config.submenu.map( (item, i) => item.category ? html`
+
${item.title}
+ ` : item.separator ? null : html`
+
+
+ ${item.disabled ? html`
+
+
+
+ ` : null}
+
+
+
+
+
+
+
${item.title}
+
${this.renderHTML(item.description || "")}
+
+
+ ` ) : null}
+
+ `;
+ }
+
+}
+
+customElements.define("category-page", CategoryPage);
diff --git a/src/client_test.html b/src/client_test.html
new file mode 100644
index 000000000..3da60010c
--- /dev/null
+++ b/src/client_test.html
@@ -0,0 +1,60 @@
+
+
+
+
+ Opencga Client test
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/conf/config.js b/src/conf/config.js
index 4cc29da70..087940615 100644
--- a/src/conf/config.js
+++ b/src/conf/config.js
@@ -15,15 +15,13 @@
*/
const cellbase = {
- hosts: [""],
- version: "v4",
+ host: "http://bioinfo.hpc.cam.ac.uk/cellbase",
+ version: "v4"
};
const opencga = {
- host: "",
- // host: "http://bioinfodev.hpc.cam.ac.uk/opencga-test",
- // host: "http://bioinfo.hpc.cam.ac.uk/hgva",
- version: "v1",
+ host: "http://bioinfo.hpc.cam.ac.uk/opencga-prod",
+ version: "v2",
serverVersion: "1.4",
// This forces the following projects to be used instead of the user's project
@@ -69,697 +67,599 @@ const opencga = {
// }
// ]
// },
- summary: true,
+ // summary: true,
cookie: {
- prefix: "iva",
- },
+ prefix: "iva"
+ }
};
const application = {
title: "IVA",
- version: "v1.0.2",
- logo: "img/opencb-logo.png",
+ version: "v2.0.0-rc",
+ logo: "img/iva.svg",
+ mode: "development",
+ appConfig: "opencb",
+ // defaultStudy: "serena@cancer37:test",
+ // defaultStudy: "emee-glh@cancer:myeloid",
// The order, title and nested submenus are respected
menu: [
{
id: "browser",
title: "Variant Browser",
+ description: "",
+ icon: "variant_browser.svg",
visibility: "public",
- },
- {
- id: "clinicalAnalysisPortal",
- title: "Interpretation Portal",
- visibility: "public",
- },
- {
- id: "beacon",
- title: "Beacon",
- visibility: "public",
- },
- {
- id: "facet",
- title: "Aggregation Stats",
- visibility: "public",
- },
- {
- id: "case",
- title: "Clinical",
- visibility: "none",
submenu: [
{
- id: "clinical",
- title: "Clinical (Old)",
+ id: "browser",
+ title: "Variant Browser",
+ acronym: "VB",
+ description: `
+ Explore all variants identified by the 100,000 Genomes Project
+
+ Rich annotation and links to leading reference databases
+ Filter by gene, consequence, frequency and much more
+ `,
visibility: "public",
+ fa_icon: "fa fa-list",
+ icon: "variant_browser.svg"
},
+ // {
+ // id: "genomeBrowser",
+ // title: "Genome Browser",
+ // acronym: "GB",
+ // description: `
+ // Based on Genome Maps (http://genomemaps.org)
+ // Smooth, interactive variant visualisation
+ // `,
+ // visibility: "private",
+ // thumbnail: "screenshot3.png",
+ // fa_icon: "fa fa-globe-europe",
+ // icon: "genome_browser.svg"
+ //
+ // },
]
},
- {
- id: "genomeBrowser",
- title: "Genome Browser",
- visibility: "private"
- },
{
id: "analysis",
- title: "Analysis (Pending)",
- visibility: "private",
+ title: "Variant Analysis",
+ description: "",
+ icon: "aggregation.svg",
+ visibility: "public",
submenu: [
{
title: "Summary Stats",
category: true,
- visibility: "public",
+ id: "cat-analysis",
+ visibility: "public"
},
{
- id: "stats",
- title: "Cohort Variant Stats",
- visibility: "public",
+ id: "sample-variant-stats",
+ title: "Sample Variant Stats",
+ acronym: "SVS",
+ description: "",
+ icon: "",
+ visibility: "public"
},
{
- id: "ibs",
- title: "IBS/IBD",
- visibility: "public",
- },
- {
- id: "h-w",
- title: "Hardy-Weinberg",
- visibility: "public",
- },
- {
- id: "mendel",
- title: "Mendel Errors",
+ id: "cohort-variant-stats",
+ title: "Cohort Variant Stats",
+ acronym: "CS",
+ description: "",
+ icon: "",
visibility: "public",
},
+ // {
+ // id: "hw", title: "Hardy-Weinberg", acronym: "HW",
+ // description: "",
+ // icon: "",
+ // visibility: "public"
+ // },
{
separator: true,
- visibility: "public",
+ visibility: "public"
},
{
- title: "GWAS",
+ title: "Association Analysis",
category: true,
- visibility: "public",
+ id: "cat-analysis",
+ visibility: "public"
},
{
- id: "assoc",
- title: "Association",
- visibility: "public",
- },
- {
- id: "tdt",
- title: "Family-based Association (TDT)",
- visibility: "public",
+ id: "gwas",
+ title: "Genome-Wide Association Study (GWAS)",
+ acronym: "GWAS",
+ description: "Study of a genome-wide set of genetic variants in different individuals to see if any variant is associated with a trait",
+ icon: "",
+ visibility: "public"
},
+ // {
+ // id: "tdt",
+ // title: "Family-Based Association (TDT)",
+ // acronym: "TDT",
+ // description: "",
+ // icon: "",
+ // visibility: "public"
+ // },
{
separator: true,
- visibility: "public",
+ visibility: "public"
},
{
- title: "Clinical Interpretation Analysis",
+ title: "Sample Analysis",
category: true,
- visibility: "public",
+ id: "cat-analysis",
+ visibility: "public"
},
{
- id: "interpretation",
- title: "Variant Interpreter",
- visibility: "public",
+ id: "knockout",
+ title: "Knockout Analysis",
+ acronym: "KO",
+ description: "",
+ icon: "",
+ visibility: "public"
},
{
- id: "tiering",
- title: "OpenCGA Tiering (Based on GEL Tiering)",
- visibility: "public",
- },
- {
- id: "team",
- title: "TEAM",
- visibility: "public",
+ id: "sample-eligibility",
+ title: "Eligibility Analysis",
+ description: "",
+ icon: "",
+ visibility: "public"
},
+
{
separator: true,
- visibility: "public",
+ visibility: "public"
},
{
- title: "Other",
+ title: "Individual Analysis",
category: true,
- visibility: "public",
+ id: "cat-analysis",
+ visibility: "public"
},
{
- id: "compound",
- title: "Compound Heterozygous",
- visibility: "public",
+ id: "inferred-sex",
+ title: "Sex Inference",
+ acronym: "SI",
+ description: "",
+ icon: "",
+ visibility: "public"
},
{
- id: "sampleFacet",
- title: "Aggregation Stats",
- visibility: "public",
+ id: "individual-relatedness",
+ title: "Relatedness",
+ acronym: "RL",
+ description: "",
+ icon: "",
+ visibility: "public"
},
{
- id: "exporter",
- title: "Exporter",
- visibility: "public",
- }
- ]
- },
- {
- id: "catalog",
- title: "Catalog Metadata",
- visibility: "public",
- submenu: [
- {
- id: "projects",
- title: "Projects",
- visibility: "public",
- },
- {
- id: "sample",
- title: "Sample View",
- visibility: "public",
+ id: "mendelian-errors",
+ title: "Mendelian Errors",
+ acronym: "ME",
+ description: "",
+ icon: "",
+ visibility: "public"
},
{
separator: true,
- visibility: "public",
+ visibility: "public"
},
{
- title: "Browsers",
+ title: "Cancer Analysis",
category: true,
- visibility: "public",
+ id: "cat-analysis",
+ visibility: "public"
},
{
- id: "files",
- title: "File Browser",
- visibility: "public",
+ id: "mutational-signature",
+ title: "Mutational Signature",
+ acronym: "SG",
+ description: "",
+ icon: "aggregation.svg",
+ visibility: "public"
},
{
- id: "samples",
- title: "Sample Browser",
- visibility: "public",
+ separator: true,
+ visibility: "public"
},
{
- id: "individuals",
- title: "Individual Browser",
- visibility: "public",
+ title: "Clinical Interpretation",
+ category: true,
+ id: "cat-analysis",
+ visibility: "public"
},
{
- id: "families",
- title: "Family Browser",
- visibility: "public",
+ id: "rd-tiering",
+ title: "RD Tiering",
+ acronym: "RDT",
+ description: "",
+ icon: "",
+ visibility: "public"
},
+ // {
+ // id: "team",
+ // title: "TEAM",
+ // description: "",
+ // icon: "",
+ // visibility: "public"
+ // },
+ // {
+ // id: "zetta",
+ // title: "Zetta",
+ // description: "",
+ // icon: "",
+ // visibility: "public"
+ // },
+ // {
+ // id: "cancer-tiering",
+ // title: "OpenCGA Cancer Tiering (Based on GEL algorithm)",
+ // description: "",
+ // icon: "",
+ // visibility: "public"
+ // },
{
- id: "cohorts",
- title: "Cohort Browser",
- visibility: "public",
+ separator: true,
+ visibility: "public"
},
{
- id: "clinicalAnalysis",
- title: "Clinical Analysis Browser",
- visibility: "public",
- }
- ],
- },
- ],
- search: {
- placeholder: "Search",
- visible: true,
- },
- settings: {
- visible: false,
- },
- about: {
- dropdown: true,
- links: [
- {id: "code", name: "Source code", url: "https://github.com/opencb/iva", icon: "fa fa-github"},
- {id: "documentation", name: "Documentation", url: "http://docs.opencb.org/display/iva", icon: "fa fa-book"},
- {id: "tutorial", name: "Tutorial", url: "http://docs.opencb.org/display/iva/Tutorials", icon: ""},
- {id: "releases", name: "Releases", url: "https://github.com/opencb/iva/releases", icon: ""},
- {id: "about", name: "About", url: "http://docs.opencb.org/display/iva/About", icon: "fa fa-envelope"},
- {id: "terms", name: "Terms", url: "http://docs.opencb.org/display/iva/About", icon: "fa fa-envelope"},
- {id: "contact", name: "Contact", url: "http://docs.opencb.org/display/iva/About", icon: "fa fa-envelope"},
- {id: "faq", name: "FAQ", url: "http://docs.opencb.org/display/iva/About", icon: "fa fa-envelope"},
- ]
- },
- login: {
- visible: true,
- },
- breadcrumb: {
- title: "Projects",
- visible: true,
- },
- notifyEventMessage: "notifymessage",
- session: {
- // 60000 ms = 1 min
- checkTime: 60000,
- // 60000 ms = 1 min
- minRemainingTime: 60000,
- // 600000 ms = 10 min = 1000(1sec) * 60(60 sec = 1min) * 10(10 min)
- maxRemainingTime: 600000
- }
-};
-
-const sampleBrowser = {
- title: "Sample Browser",
- showTitle: true,
- filter: {
-
- },
- grid: {
- showSelect: true,
- }
-};
-
-const fileBrowser = {
- title: "File Browser",
- showTitle: true,
- filter: {
-
- },
- grid: {
- showSelect: true,
- }
-};
-
-
-const cohortBrowser = {
- title: "Cohort Browser",
- showTitle: true,
- filter: {
-
- },
- grid: {
- showSelect: true,
- }
-};
-
-const beacon = {
- hosts: [
- "brca-exchange", "cell_lines", "cosmic", "wtsi", "wgs", "ncbi", "ebi", "ega", "broad", "gigascience",
- "ucsc", "lovd", "hgmd", "icgc", "sahgp"
- ]
-};
-
-const populationFrequencies = {
- // This is based on this figure:
- // http://www.dialogues-cns.com/wp-content/uploads/2015/03/DialoguesClinNeurosci-17-69-g001.jpg
- color: {
- veryRare: "#ff0000",
- rare: "#ff8080",
- average: "#8080ff",
- common: "#0000ff",
- unobserved: "black"
- },
- tooltip: `1000 Genomes Only considers variants whose observed allelic frequency in the 1000 genomes phase 3 database
- is below (or above) the defined value. Genome-wide allelic frequencies were obtained from more than 2.500 genomes.
- gnomAD Genomes Only considers variants whose observed allelic frequency in the gnomAD Genomes database is
- below (or above) the defined value. Frequencies were calculated from about 15,000 unrelated individuals`,
- studies: [
- {
- id: "1kG_phase3",
- title: "1000 Genomes",
- // tooltip: "Only considers variants whose observed allelic frequency in the 1000 genomes phase 3 database is below (or above) " +
- // "the defined value. Genome-wide allelic frequencies were obtained from more than 2.500 genomes.",
- populations: [
- {
- id: "ALL", title: "All populations [ALL]",
+ title: "Quality Control",
+ category: true,
+ id: "cat-analysis",
+ visibility: "public"
},
{
- id: "AFR", title: "African [AFR]",
+ id: "sample-qc",
+ title: "Sample Quality Control",
+ description: "Calculate different genetic checks and metrics and store data in Sample Catalog",
+ icon: "",
+ visibility: "public"
},
{
- id: "AMR", title: "American [AMR]",
+ id: "individual-qc",
+ title: "Individual Quality Control",
+ description: "Calculate different genetic checks and metrics and store data in Individual Catalog",
+ icon: "",
+ visibility: "public"
},
{
- id: "EAS", title: "East Asian [EAS]",
+ id: "family-qc",
+ title: "Family Quality Control",
+ description: "Calculate different genetic checks and metrics and store data in Family Catalog",
+ icon: "",
+ visibility: "public"
},
{
- id: "EUR", title: "European [EUR]",
+ separator: true,
+ visibility: "public"
},
{
- id: "SAS", title: "South Asian [SAS]",
- }
- ],
- },
- {
- id: "GNOMAD_GENOMES",
- title: "gnomAD Genomes",
- // tooltip: "Only considers variants whose observed allelic frequency in the gnomAD Genomes database is below (or above) the " +
- // "defined value. Frequencies were calculated from about 15,000 unrelated individuals.",
- populations: [
- {
- id: "ALL", title: "gnomAD [ALL]",
+ title: "External Tools",
+ category: true,
+ id: "cat-analysis",
+ visibility: "public"
},
{
- id: "AFR", title: "African/African American [AFR]",
+ id: "plink",
+ title: "Plink",
+ acronym: "Pl",
+ description: "",
+ icon: "",
+ visibility: "public"
},
{
- id: "AMR", title: "American [AMR]",
+ id: "gatk",
+ title: "GATK",
+ acronym: "GT",
+ description: "",
+ icon: "",
+ visibility: "public"
},
{
- id: "EAS", title: "East Asian [EAS]",
+ separator: true,
+ visibility: "public"
},
{
- id: "FIN", title: "Finnish[FIN]",
+ title: "Other",
+ category: true,
+ id: "cat-analysis",
+ visibility: "public"
},
{
- id: "NFE", title: "Non-Finnish European [NFE]",
+ id: "variant-exporter",
+ title: "Variant Exporter",
+ acronym: "EX",
+ description: "",
+ icon: "",
+ visibility: "public"
},
{
- id: "SAS", title: "South Asian [SAS]",
+ id: "variant-stats-exporter",
+ title: "Variant Stats Exporter",
+ acronym: "VSE",
+ description: "Export variant stats for different cohorts",
+ icon: "",
+ visibility: "public",
},
- ],
+ {
+ id: "beacon",
+ title: "GA4GH Beacon",
+ description: "",
+ icon: "beacon.svg",
+ visibility: "public"
+ }
+ ]
},
- ],
-};
-
-const proteinSubstitutionScores = {
- // This is to show the predictions in respective colors
- sift: {
- deleterious: "red",
- tolerated: "green",
- },
- polyphen: {
- probablyDamaging: "red",
- possiblyDamaging: "darkorange",
- benign: "green",
- unknown: "black",
- },
-};
-
-const consequenceTypes = {
- // This is the impact color. It allows to customise both the impact categories and desired colors
- color: {
- high: "red",
- moderate: "darkorange",
- low: "blue",
- modifier: "green",
- },
-
- // Loss-of-function SO terms
- lof: ["transcript_ablation", "splice_acceptor_variant", "splice_donor_variant", "stop_gained", "frameshift_variant",
- "stop_lost", "start_lost", "transcript_amplification", "inframe_insertion", "inframe_deletion"],
-
- // 'Title' is optional. if there is not title provided then 'name' will be used.
- // There are two more optional properties - 'checked' and 'impact'. They can be set to display them default in web application.
- // Similarly 'description' is optional as well.
- categories: [
{
- title: "Intergenic",
- terms: [
+ id: "clinical",
+ title: "Case Interpretation",
+ description: "",
+ icon: "interpretation_portal.svg",
+ visibility: "public",
+ submenu: [
{
- id: "SO:0001631",
- name: "upstream_gene_variant",
- description: "A sequence variant located 5' of a gene",
- impact: "modifier",
+ title: "Clinical Management",
+ category: true,
+ id: "cat-clinical",
+ visibility: "public"
},
{
- id: "SO:0001636",
- name: "2KB_upstream_variant",
- description: "A sequence variant located within 2KB 5' of a gene",
- impact: "modifier",
+ id: "clinicalAnalysisPortal",
+ title: "Case Portal",
+ acronym: "",
+ icon: "",
+ description: "",
+ visibility: "public"
},
{
- id: "SO:0001632",
- name: "downstream_gene_variant",
- description: "A sequence variant located 3' of a gene",
- impact: "modifier",
+ id: "clinical-analysis-writer",
+ title: "Create Case",
+ acronym: "",
+ icon: "",
+ description: "",
+ visibility: "public"
},
{
- id: "SO:0002083",
- name: "2KB_downstream_variant",
- description: "A sequence variant located within 2KB 3' of a gene",
- impact: "modifier",
+ separator: true,
+ visibility: "public"
},
{
- id: "SO:0001628",
- name: "intergenic_variant",
- description: "A sequence variant located in the intergenic region, between genes",
- impact: "modifier",
+ title: "Case Interpretation",
+ category: true,
+ id: "cat-clinical",
+ visibility: "public"
},
- ],
- },
- {
- title: "Regulatory",
- terms: [
{
- id: "SO:0001620",
- name: "mature_miRNA_variant",
- description: "A transcript variant located with the sequence of the mature miRNA",
- impact: "modifier",
+ id: "interpreter",
+ title: "Case Interpreter",
+ acronym: "",
+ icon: "",
+ description: "",
+ visibility: "public"
},
// {
- // id: "SO:0001894",
- // name: "regulatory_region_ablation",
- // description: "A feature ablation whereby the deleted region includes a regulatory region",
- // impact: "moderate",
- // },
- // {
- // id: "SO:0001891",
- // name: "regulatory_region_amplification",
- // description: "A feature amplification of a region containing a regulatory region",
- // impact: "modifier",
+ // separator: true,
+ // visibility: "public"
// },
- {
- id: "SO:0001566",
- name: "regulatory_region_variant",
- description: "A sequence variant located within a regulatory region",
- impact: "modifier",
- },
- {
- id: "SO:0001782",
- name: "TF_binding_site_variant",
- description: "A sequence variant located within a transcription factor binding site",
- impact: "modifier",
- },
// {
- // id: "SO:0001895",
- // name: "TFBS_ablation",
- // description: "A feature ablation whereby the deleted region includes a transcription factor binding site",
- // impact: "modifier",
+ // title: "Reported Variants",
+ // category: true,
+ // id: "cat-clinical",
+ // visibility: "public"
// },
// {
- // id: "SO:0001892",
- // name: "TFBS_amplification",
- // description: "A feature amplification of a region containing a transcription factor binding site",
- // impact: "modifier",
- // },
- ],
+ // id: "cva",
+ // title: "Clinical Variant Browser",
+ // acronym: "CVB",
+ // description: "",
+ // icon: "",
+ // visibility: "public"
+ // }
+ ]
},
{
- title: "Coding",
- terms: [
+ id: "alignment",
+ title: "Alignment",
+ description: "",
+ icon: "alignment.svg",
+ visibility: "public",
+ submenu: [
{
- id: "SO:0001580",
- name: "coding_sequence_variant",
- description: "A sequence variant that changes the coding sequence",
- impact: "modifier",
+ title: "Data Management",
+ category: true,
+ id: "cat-alignment",
+ visibility: "public"
},
- // {
- // id: "SO:0001907",
- // name: "feature_elongation",
- // description: "A sequence variant that causes the extension of a genomic feature, with regard to the reference sequence",
- // impact: "modifier",
- // },
{
- id: "SO:0001906",
- name: "feature_truncation",
- description: "A sequence variant that causes the reduction of a genomic feature, with regard to the reference sequence",
- impact: "modifier",
+ id: "alignment-index",
+ title: "Alignment Index",
+ description: "Create a .bai index file.",
+ icon: "",
+ visibility: "public"
},
{
- id: "SO:0001589",
- name: "frameshift_variant",
- description: "A sequence variant which causes a disruption of the translational reading frame, because the number of nucleotides inserted or deleted is not a multiple of three",
- impact: "high",
+ id: "coverage-index",
+ title: "Coverage Index",
+ description: "Precompute coverage in a BigWig file",
+ icon: "",
+ visibility: "public"
},
{
- id: "SO:0001626",
- name: "incomplete_terminal_codon_variant",
- description: "A sequence variant where at least one base of the final codon of an incompletely annotated transcript is changed",
- impact: "low",
+ separator: true,
+ visibility: "public"
},
{
- id: "SO:0001822",
- name: "inframe_deletion",
- description: "An inframe non synonymous variant that deletes bases from the coding sequence",
- impact: "high",
+ title: "Summary Stats",
+ category: true,
+ id: "cat-alignment",
+ visibility: "public"
},
{
- id: "SO:0001821",
- name: "inframe_insertion",
- description: "An inframe non synonymous variant that inserts bases into in the coding sequence",
- impact: "high",
+ id: "alignment-stats",
+ title: "Alignment Stats",
+ description: "Compute BAM stats using samtools",
+ icon: "",
+ visibility: "public"
},
+ ]
+ },
+ {
+ id: "catalog",
+ title: "Catalog",
+ visibility: "public",
+ icon: "aggregation2.svg",
+ submenu: [
{
- id: "SO:0001650",
- name: "inframe_variant",
- description: "A sequence variant which does not cause a disruption of the translational reading frame",
- impact: "low",
+ id: "projects",
+ title: "Projects",
+ visibility: "public"
},
{
- id: "SO:0001582",
- name: "initiator_codon_variant",
- description: "A codon variant that changes at least one base of the first codon of a transcript",
- impact: "moderate",
+ separator: true,
+ visibility: "public"
},
{
- id: "SO:0001583",
- name: "missense_variant",
- description: "A sequence variant, that changes one or more bases, resulting in a different amino acid sequence but where the length is preserved",
- impact: "moderate",
+ title: "Browsers",
+ category: true,
+ id: "cat-catalog",
+ visibility: "public"
},
{
- id: "SO:0001621",
- name: "NMD_transcript_variant",
- description: "A variant in a transcript that is the target of NMD",
- impact: "modifier",
+ id: "files",
+ title: "File Browser",
+ visibility: "public"
},
- // {
- // id: "SO:0001818",
- // name: "protein_altering_variant",
- // description: "A sequence_variant which is predicted to change the protein encoded in the coding sequence",
- // impact: "moderate",
- // },
{
- id: "SO:0001819",
- name: "synonymous_variant",
- description: "A sequence variant where there is no resulting change to the encoded amino acid",
- impact: "low",
+ id: "samples",
+ title: "Sample Browser",
+ visibility: "public"
},
{
- id: "SO:0002012",
- name: "start_lost",
- description: "A codon variant that changes at least one base of the canonical start codon",
- impact: "high",
+ id: "individuals",
+ title: "Individual Browser",
+ visibility: "public"
},
{
- id: "SO:0001587",
- name: "stop_gained",
- description: "A sequence variant whereby at least one base of a codon is changed, resulting in a premature stop codon, leading to a shortened transcript",
- impact: "high",
+ id: "families",
+ title: "Family Browser",
+ visibility: "public"
},
{
- id: "SO:0001578",
- name: "stop_lost",
- description: "A sequence variant where at least one base of the terminator codon (stop) is changed, resulting in an elongated transcript",
- impact: "high",
+ id: "cohorts",
+ title: "Cohort Browser",
+ visibility: "public"
},
{
- id: "SO:0001567",
- name: "stop_retained_variant",
- description: "A sequence variant where at least one base in the terminator codon is changed, but the terminator remains",
- impact: "low",
+ id: "clinicalAnalysis",
+ title: "Clinical Analysis Browser",
+ visibility: "public"
},
{
- id: "SO:0001590",
- name: "terminator_codon_variant",
- description: "A sequence variant whereby at least one of the bases in the terminator codon is changed",
- impact: "low",
- },
- ],
+ id: "jobs",
+ title: "Job Browser",
+ visibility: "public"
+ }
+ ]
},
+ ],
+ search: {
+ placeholder: "Search",
+ visible: false
+ },
+ about: {
+ dropdown: true,
+ links: [
+ {id: "code", name: "Source code", url: "https://github.com/opencb/iva", icon: "fa fa-code"},
+ {id: "documentation", name: "Documentation", url: "http://docs.opencb.org/display/iva", icon: "fa fa-book"},
+ {id: "tutorial", name: "Tutorial", url: "http://docs.opencb.org/display/iva/Tutorials", icon: "fa fa-question-circle"},
+ {id: "releases", name: "Releases", url: "https://github.com/opencb/iva/releases", icon: "fa fa-archive"},
+ {id: "about", name: "About", url: "#about", icon: "fa fa-info-circle"},
+ {id: "terms", name: "Terms", url: "#terms", icon: "fa fa-file-alt"},
+ {id: "contact", name: "Contact", url: "#contact", icon: "fa fa-envelope"},
+ {id: "faq", name: "FAQ", url: "#faq", icon: "fa fa-question"}
+ ]
+ },
+ login: {
+ visible: true
+ },
+ breadcrumb: {
+ title: "Projects",
+ visible: true
+ },
+ notifyEventMessage: "notifymessage",
+ session: {
+ // 60000 ms = 1 min
+ checkTime: 60000,
+ // 60000 ms = 1 min
+ minRemainingTime: 60000,
+ // 600000 ms = 10 min = 1000(1sec) * 60(60 sec = 1min) * 10(10 min)
+ maxRemainingTime: 600000
+ },
+ // Components in the welcome page
+ welcomePageContent: `
+ Welcome to the IVA tool for whole genome variant analysis.
+ This interactive tool allows finding genes affected by deleterious variants that segregate along family
+ pedigrees, case-controls or sporadic samples.
+
+ `,
+ welcomePageFooter: `
`,
+ components: [
{
- title: "Non-coding",
- terms: [
- {
- id: "SO:0001624",
- name: "3_prime_UTR_variant",
- description: "A UTR variant of the 3' UTR",
- impact: "modifier",
- },
- {
- id: "SO:0001623",
- name: "5_prime_UTR_variant",
- description: "A UTR variant of the 5' UTR",
- impact: "modifier",
- },
- {
- id: "SO:0001627",
- name: "intron_variant",
- description: "A transcript variant occurring within an intron",
- impact: "modifier",
- },
- {
- id: "SO:0001792",
- name: "non_coding_transcript_exon_variant",
- description: "A sequence variant that changes non-coding exon sequence in a non-coding transcript",
- impact: "modifier",
- },
- {
- id: "SO:0001619",
- name: "non_coding_transcript_variant",
- description: "A transcript variant of a non coding RNA gene",
- impact: "modifier",
- },
- ],
+ id: "browser",
+ title: "Variant Browser",
+ visibility: "public",
+ thumbnail: "variant-browser.png",
+ fa_icon: "fa fa-list",
+ icon: "variant_browser.svg",
+ description: `
+ Explore all variants identified by the 100,000 Genomes Project
+
+ Rich annotation and links to leading reference databases
+ Filter by gene, consequence, frequency and much more
+ `
},
{
- title: "Splice",
- terms: [
- {
- id: "SO:0001574",
- name: "splice_acceptor_variant",
- description: "A splice variant that changes the 2 base region at the 3' end of an intron",
- impact: "high",
- },
- {
- id: "SO:0001575",
- name: "splice_donor_variant",
- description: "A splice variant that changes the 2 base pair region at the 5' end of an intron",
- impact: "high",
- },
- {
- id: "SO:0001630",
- name: "splice_region_variant",
- description: "A sequence variant in which a change has occurred within the region of the splice site, either " +
- "within 1-3 bases of the exon or 3-8 bases of the intron",
- impact: "low",
- },
- ],
+ id: "facet",
+ title: "Aggregation Stats",
+ visibility: "public",
+ thumbnail: "variant-browser_aggregation.png",
+ fa_icon: "fa fa-chart-bar",
+ icon: "aggregation2.svg",
+ description: `
+
+ Filter by gene, consequence, frequency and much more
+ Add nested facets to generate aggregate statistics
+
+ `
},
{
- id: "SO:0001893",
- name: "transcript_ablation",
- description: "A feature ablation whereby the deleted region includes a transcript feature",
- impact: "high",
+ id: "clinicalAnalysisPortal",
+ title: "Interpretation portal",
+ visibility: "public",
+ thumbnail: "interpretation_portal.png",
+ fa_icon: "fa fa-user-md",
+ icon: "interpretation_portal.svg",
+ description: `
+
+ Analyse the genomes of participants in the 100,000 Genomes Project
+ Filter by gene, consequence, frequency and much more
+
+ `
},
{
- id: "SO:0001889",
- name: "transcript_amplification",
- description: "A feature amplification of a region containing a transcript",
- impact: "high",
- },
- ],
+ id: "beacon",
+ title: "GA4GH Beacon",
+ visibility: "public",
+ thumbnail: "beacon.png",
+ fa_icon: "fa fa-globe-europe",
+ icon: "beacon.svg",
+ description: `
+
+ Federated search from the Global Alliance for Genomics and Health
+ Find databases that have information about specific variants
+ `
+ }
+ ]
};
-// const DEFAULT_SPECIES = {
-// vertebrates: [
-// {
-//
-// id: "hsapiens",
-// scientificName: "Homo sapiens",
-// assembly: {
-//
-// name: "GRCh37",
-// ensemblVersion: "75_37",
-//
-// },
-// assemblies: [
-// {
-//
-// name: "GRCh37",
-// ensemblVersion: "75_37",
-//
-// },
-// {
-// name: "GRCh38",
-// ensemblVersion: "79_38",
-// },
-// ],
-// data: [
-// "genome",
-// "gene",
-// "variation",
-// "regulation",
-// "protein",
-// "conservation",
-// "clinical",
-// "gene2disease",
-// ],
-// },
-// ],
-// };
+//export {application, beacon, cellbase, consequenceTypes, opencga, populationFrequencies, proteinSubstitutionScores}
diff --git a/src/conf/opencga-clinical-analysis-browser.config.js b/src/conf/opencga-clinical-analysis-browser.config.js
new file mode 100644
index 000000000..7873e3d01
--- /dev/null
+++ b/src/conf/opencga-clinical-analysis-browser.config.js
@@ -0,0 +1,3 @@
+const OpencgaClinicalAnalysisBrowserConfig = {
+
+};
diff --git a/src/conf/opencga-clinical-analysis-view.settings.js b/src/conf/opencga-clinical-analysis-view.settings.js
new file mode 100644
index 000000000..0209fcc41
--- /dev/null
+++ b/src/conf/opencga-clinical-analysis-view.settings.js
@@ -0,0 +1,3 @@
+const OpencgaClinicalAnalysisViewSettings = {
+ hiddenFields: []
+}
diff --git a/src/conf/opencga-clinical-portal.config.js b/src/conf/opencga-clinical-portal.config.js
new file mode 100644
index 000000000..935eaec18
--- /dev/null
+++ b/src/conf/opencga-clinical-portal.config.js
@@ -0,0 +1,3 @@
+const OpencgaClinicalPortalConfig = {
+ showCreate: true
+};
diff --git a/src/conf/opencga-cohort-browser.config.js b/src/conf/opencga-cohort-browser.config.js
new file mode 100644
index 000000000..209b72552
--- /dev/null
+++ b/src/conf/opencga-cohort-browser.config.js
@@ -0,0 +1,3 @@
+const OpencgaCohortBrowserConfig = {
+
+};
diff --git a/src/conf/opencga-family-browser.config.js b/src/conf/opencga-family-browser.config.js
new file mode 100644
index 000000000..e265ddb8a
--- /dev/null
+++ b/src/conf/opencga-family-browser.config.js
@@ -0,0 +1,3 @@
+const OpencgaFamilyBrowserConfig = {
+
+};
diff --git a/src/conf/opencga-file-browser.config.js b/src/conf/opencga-file-browser.config.js
new file mode 100644
index 000000000..5bc8bfc98
--- /dev/null
+++ b/src/conf/opencga-file-browser.config.js
@@ -0,0 +1,3 @@
+const OpencgaFileBrowserConfig = {
+
+};
diff --git a/src/conf/opencga-individual-browser.config.js b/src/conf/opencga-individual-browser.config.js
new file mode 100644
index 000000000..2e778cbb5
--- /dev/null
+++ b/src/conf/opencga-individual-browser.config.js
@@ -0,0 +1,3 @@
+const OpencgaIndividualBrowserConfig = {
+
+};
diff --git a/src/conf/opencga-jobs-browser.config.js b/src/conf/opencga-jobs-browser.config.js
new file mode 100644
index 000000000..a370240d6
--- /dev/null
+++ b/src/conf/opencga-jobs-browser.config.js
@@ -0,0 +1,3 @@
+const OpencgaJobsBrowserConfig = {
+
+};
diff --git a/src/conf/opencga-sample-browser.config.js b/src/conf/opencga-sample-browser.config.js
new file mode 100644
index 000000000..9ed1a7e20
--- /dev/null
+++ b/src/conf/opencga-sample-browser.config.js
@@ -0,0 +1,3 @@
+const OpencgaSampleBrowserConfig = {
+
+};
diff --git a/src/conf/opencga-variant-browser.config.js b/src/conf/opencga-variant-browser.config.js
new file mode 100644
index 000000000..f71e460e4
--- /dev/null
+++ b/src/conf/opencga-variant-browser.config.js
@@ -0,0 +1,3 @@
+const OpencgaVariantBrowserConfig = {
+
+};
diff --git a/src/conf/opencga-variant-browser.settings.js b/src/conf/opencga-variant-browser.settings.js
new file mode 100644
index 000000000..9d90789cc
--- /dev/null
+++ b/src/conf/opencga-variant-browser.settings.js
@@ -0,0 +1,3 @@
+const OpencgaVariantBrowserSettings = {
+
+};
diff --git a/src/conf/opencga-variant-constants.js b/src/conf/opencga-variant-constants.js
new file mode 100644
index 000000000..63ef10176
--- /dev/null
+++ b/src/conf/opencga-variant-constants.js
@@ -0,0 +1,446 @@
+/**
+ * Copyright 2015-2019 OpenCB
+ *
+ * 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
+ *
+ * http://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.
+ */
+
+
+// export const biotypes = VARIANT_CONSTANTS.biotypes;
+
+const biotypes = [
+ "3prime_overlapping_ncrna", "IG_C_gene", "IG_C_pseudogene", "IG_D_gene", "IG_J_gene", "IG_J_pseudogene",
+ "IG_V_gene", "IG_V_pseudogene", "Mt_rRNA", "Mt_tRNA", "TR_C_gene", "TR_D_gene", "TR_J_gene", "TR_J_pseudogene",
+ "TR_V_gene", "TR_V_pseudogene", "antisense", "lincRNA", "miRNA", "misc_RNA", "non_stop_decay",
+ "nonsense_mediated_decay", "polymorphic_pseudogene", "processed_pseudogene", "processed_transcript",
+ "protein_coding", "pseudogene", "rRNA", "retained_intron", "sense_intronic", "sense_overlapping", "snRNA",
+ "snoRNA", "transcribed_processed_pseudogene", "transcribed_unprocessed_pseudogene",
+ "translated_processed_pseudogene", "unitary_pseudogene", "unprocessed_pseudogene"
+];
+
+const types = ["SNV", "INDEL", "CNV", "INSERTION", "DELETION", "MNV"];
+
+const consequenceTypes = {
+ style: {
+ // This is the impact color. It allows to customise both the impact categories and desired colors
+ high: "red",
+ moderate: "darkorange",
+ low: "blue",
+ modifier: "green"
+ },
+
+ // Loss-of-function SO terms
+ lof: ["transcript_ablation", "splice_acceptor_variant", "splice_donor_variant", "stop_gained", "frameshift_variant",
+ "stop_lost", "start_lost", "transcript_amplification", "inframe_insertion", "inframe_deletion"],
+
+ // 'Title' is optional. if there is not title provided then 'name' will be used.
+ // There are two more optional properties - 'checked' and 'impact'. They can be set to display them default in web application.
+ // Similarly 'description' is optional as well.
+ categories: [
+ {
+ title: "Intergenic",
+ terms: [
+ {
+ id: "SO:0001631",
+ name: "upstream_gene_variant",
+ description: "A sequence variant located 5' of a gene",
+ impact: "modifier"
+ },
+ {
+ id: "SO:0001636",
+ name: "2KB_upstream_variant",
+ description: "A sequence variant located within 2KB 5' of a gene",
+ impact: "modifier"
+ },
+ {
+ id: "SO:0001632",
+ name: "downstream_gene_variant",
+ description: "A sequence variant located 3' of a gene",
+ impact: "modifier"
+ },
+ {
+ id: "SO:0002083",
+ name: "2KB_downstream_variant",
+ description: "A sequence variant located within 2KB 3' of a gene",
+ impact: "modifier"
+ },
+ {
+ id: "SO:0001628",
+ name: "intergenic_variant",
+ description: "A sequence variant located in the intergenic region, between genes",
+ impact: "modifier"
+ }
+ ]
+ },
+ {
+ title: "Regulatory",
+ terms: [
+ {
+ id: "SO:0001620",
+ name: "mature_miRNA_variant",
+ description: "A transcript variant located with the sequence of the mature miRNA",
+ impact: "modifier"
+ },
+ // {
+ // id: "SO:0001894",
+ // name: "regulatory_region_ablation",
+ // description: "A feature ablation whereby the deleted region includes a regulatory region",
+ // impact: "moderate",
+ // },
+ // {
+ // id: "SO:0001891",
+ // name: "regulatory_region_amplification",
+ // description: "A feature amplification of a region containing a regulatory region",
+ // impact: "modifier",
+ // },
+ {
+ id: "SO:0001566",
+ name: "regulatory_region_variant",
+ description: "A sequence variant located within a regulatory region",
+ impact: "modifier"
+ },
+ {
+ id: "SO:0001782",
+ name: "TF_binding_site_variant",
+ description: "A sequence variant located within a transcription factor binding site",
+ impact: "modifier"
+ }
+ // {
+ // id: "SO:0001895",
+ // name: "TFBS_ablation",
+ // description: "A feature ablation whereby the deleted region includes a transcription factor binding site",
+ // impact: "modifier",
+ // },
+ // {
+ // id: "SO:0001892",
+ // name: "TFBS_amplification",
+ // description: "A feature amplification of a region containing a transcription factor binding site",
+ // impact: "modifier",
+ // },
+ ]
+ },
+ {
+ title: "Coding",
+ terms: [
+ {
+ id: "SO:0001580",
+ name: "coding_sequence_variant",
+ description: "A sequence variant that changes the coding sequence",
+ impact: "modifier"
+ },
+ // {
+ // id: "SO:0001907",
+ // name: "feature_elongation",
+ // description: "A sequence variant that causes the extension of a genomic feature, with regard to the reference sequence",
+ // impact: "modifier",
+ // },
+ {
+ id: "SO:0001906",
+ name: "feature_truncation",
+ description: "A sequence variant that causes the reduction of a genomic feature, with regard to the reference sequence",
+ impact: "modifier"
+ },
+ {
+ id: "SO:0001589",
+ name: "frameshift_variant",
+ description: "A sequence variant which causes a disruption of the translational reading frame, because the number of nucleotides inserted or deleted is not a multiple of three",
+ impact: "high"
+ },
+ {
+ id: "SO:0001626",
+ name: "incomplete_terminal_codon_variant",
+ description: "A sequence variant where at least one base of the final codon of an incompletely annotated transcript is changed",
+ impact: "low"
+ },
+ {
+ id: "SO:0001822",
+ name: "inframe_deletion",
+ description: "An inframe non synonymous variant that deletes bases from the coding sequence",
+ impact: "high"
+ },
+ {
+ id: "SO:0001821",
+ name: "inframe_insertion",
+ description: "An inframe non synonymous variant that inserts bases into in the coding sequence",
+ impact: "high"
+ },
+ {
+ id: "SO:0001650",
+ name: "inframe_variant",
+ description: "A sequence variant which does not cause a disruption of the translational reading frame",
+ impact: "low"
+ },
+ {
+ id: "SO:0001582",
+ name: "initiator_codon_variant",
+ description: "A codon variant that changes at least one base of the first codon of a transcript",
+ impact: "moderate"
+ },
+ {
+ id: "SO:0001583",
+ name: "missense_variant",
+ description: "A sequence variant, that changes one or more bases, resulting in a different amino acid sequence but where the length is preserved",
+ impact: "moderate"
+ },
+ {
+ id: "SO:0001621",
+ name: "NMD_transcript_variant",
+ description: "A variant in a transcript that is the target of NMD",
+ impact: "modifier"
+ },
+ // {
+ // id: "SO:0001818",
+ // name: "protein_altering_variant",
+ // description: "A sequence_variant which is predicted to change the protein encoded in the coding sequence",
+ // impact: "moderate",
+ // },
+ {
+ id: "SO:0001819",
+ name: "synonymous_variant",
+ description: "A sequence variant where there is no resulting change to the encoded amino acid",
+ impact: "low"
+ },
+ {
+ id: "SO:0002012",
+ name: "start_lost",
+ description: "A codon variant that changes at least one base of the canonical start codon",
+ impact: "high"
+ },
+ {
+ id: "SO:0001587",
+ name: "stop_gained",
+ description: "A sequence variant whereby at least one base of a codon is changed, resulting in a premature stop codon, leading to a shortened transcript",
+ impact: "high"
+ },
+ {
+ id: "SO:0001578",
+ name: "stop_lost",
+ description: "A sequence variant where at least one base of the terminator codon (stop) is changed, resulting in an elongated transcript",
+ impact: "high"
+ },
+ {
+ id: "SO:0001567",
+ name: "stop_retained_variant",
+ description: "A sequence variant where at least one base in the terminator codon is changed, but the terminator remains",
+ impact: "low"
+ },
+ {
+ id: "SO:0001590",
+ name: "terminator_codon_variant",
+ description: "A sequence variant whereby at least one of the bases in the terminator codon is changed",
+ impact: "low"
+ }
+ ]
+ },
+ {
+ title: "Non-coding",
+ terms: [
+ {
+ id: "SO:0001624",
+ name: "3_prime_UTR_variant",
+ description: "A UTR variant of the 3' UTR",
+ impact: "modifier"
+ },
+ {
+ id: "SO:0001623",
+ name: "5_prime_UTR_variant",
+ description: "A UTR variant of the 5' UTR",
+ impact: "modifier"
+ },
+ {
+ id: "SO:0001627",
+ name: "intron_variant",
+ description: "A transcript variant occurring within an intron",
+ impact: "modifier"
+ },
+ {
+ id: "SO:0001792",
+ name: "non_coding_transcript_exon_variant",
+ description: "A sequence variant that changes non-coding exon sequence in a non-coding transcript",
+ impact: "modifier"
+ },
+ {
+ id: "SO:0001619",
+ name: "non_coding_transcript_variant",
+ description: "A transcript variant of a non coding RNA gene",
+ impact: "modifier"
+ }
+ ]
+ },
+ {
+ title: "Splice",
+ terms: [
+ {
+ id: "SO:0001574",
+ name: "splice_acceptor_variant",
+ description: "A splice variant that changes the 2 base region at the 3' end of an intron",
+ impact: "high"
+ },
+ {
+ id: "SO:0001575",
+ name: "splice_donor_variant",
+ description: "A splice variant that changes the 2 base pair region at the 5' end of an intron",
+ impact: "high"
+ },
+ {
+ id: "SO:0001630",
+ name: "splice_region_variant",
+ description: "A sequence variant in which a change has occurred within the region of the splice site, either " +
+ "within 1-3 bases of the exon or 3-8 bases of the intron",
+ impact: "low"
+ }
+ ]
+ },
+ {
+ id: "SO:0001893",
+ name: "transcript_ablation",
+ description: "A feature ablation whereby the deleted region includes a transcript feature",
+ impact: "high"
+ },
+ {
+ id: "SO:0001889",
+ name: "transcript_amplification",
+ description: "A feature amplification of a region containing a transcript",
+ impact: "high"
+ }
+ ]
+};
+
+const populationFrequencies = {
+ style: {
+ // This is based on this figure:
+ // http://www.dialogues-cns.com/wp-content/uploads/2015/03/DialoguesClinNeurosci-17-69-g001.jpg
+ veryRare: "#ff0000",
+ rare: "#ff8080",
+ average: "#8080ff",
+ common: "#0000ff",
+ unobserved: "black"
+ },
+ studies: [
+ {
+ id: "1kG_phase3",
+ title: "1000 Genomes",
+ // tooltip: "Only considers variants whose observed allelic frequency in the 1000 genomes phase 3 database is below (or above) " +
+ // "the defined value. Genome-wide allelic frequencies were obtained from more than 2.500 genomes.",
+ populations: [
+ {
+ id: "ALL", title: "All populations [ALL]"
+ },
+ {
+ id: "AFR", title: "African [AFR]"
+ },
+ {
+ id: "AMR", title: "American [AMR]"
+ },
+ {
+ id: "EAS", title: "East Asian [EAS]"
+ },
+ {
+ id: "EUR", title: "European [EUR]"
+ },
+ {
+ id: "SAS", title: "South Asian [SAS]"
+ }
+ ]
+ },
+ {
+ id: "GNOMAD_GENOMES",
+ title: "gnomAD Genomes",
+ // tooltip: "Only considers variants whose observed allelic frequency in the gnomAD Genomes database is below (or above) the " +
+ // "defined value. Frequencies were calculated from about 15,000 unrelated individuals.",
+ populations: [
+ {
+ id: "ALL", title: "gnomAD [ALL]"
+ },
+ {
+ id: "AFR", title: "African/African American [AFR]"
+ },
+ {
+ id: "AMR", title: "American [AMR]"
+ },
+ {
+ id: "EAS", title: "East Asian [EAS]"
+ },
+ {
+ id: "FIN", title: "Finnish[FIN]"
+ },
+ {
+ id: "NFE", title: "Non-Finnish European [NFE]"
+ },
+ // {
+ // id: "SAS", title: "South Asian [SAS]"
+ // }
+ ]
+ }
+ ]
+};
+
+const tooltips = {
+ conservation: "PhyloP scores measure evolutionary conservation at individual alignment sites. The scores " +
+ "are interpreted as follows compared to the evolution expected under neutral drift: positive scores (max 3.0) mean " +
+ "conserved positions and negative scores (min -14.0) indicate positive selection. PhyloP scores are useful to " +
+ "evaluate signatures of selection at particular nucleotides or classes of nucleotides (e.g., third codon positions, " +
+ "or first positions of miRNA target sites). " +
+ "PhastCons estimates the probability that each nucleotide belongs to a conserved element, based on " +
+ "the multiple alignment. The phastCons scores represent probabilities of negative selection and range between 0 " +
+ "(non-conserved) and 1 (highly conserved). " +
+ "Genomic Evolutionary Rate Profiling (GERP) score estimate the level of conservation of positions." +
+ " Scores ≥ 2 indicate evolutionary constraint to and ≥ 3 indicate purifying selection.",
+ populationFrequencies: `1000 Genomes Only considers variants whose observed allelic frequency in the 1000 genomes phase 3 database
+ is below (or above) the defined value. Genome-wide allelic frequencies were obtained from more than 2.500 genomes.
+ gnomAD Genomes Only considers variants whose observed allelic frequency in the gnomAD Genomes database is
+ below (or above) the defined value. Frequencies were calculated from about 15,000 unrelated individuals`,
+ proteinSubstitutionScore: "SIFT score: Choose either a Tolerated/Deleterious qualitative score or provide below a " +
+ "quantitative impact value. SIFT scores <0.05 are considered deleterious. " +
+ "Polyphen: Choose, either a Benign/probably damaging qualitative score or provide below a " +
+ "quantitative impact value. Polyphen scores can be Benign (<0.15), Possibly damaging (0.15-0.85) or Damaging (>0.85)",
+ study: "Only considers variants from the selected studies",
+ region: "Filter out variants falling outside the genomic interval(s) defined",
+ feature: "Filter out variants falling outside the genomic features (gene, transcript, SNP, etc.) defined",
+ diseasePanels: "Filter out variants falling outside the genomic intervals (typically genes) defined by the panel(s) chosen",
+ biotype: "Filter out variants falling outside the genomic features (gene, transcript, SNP, etc.) defined",
+ type: "Only considers variants of the selected type",
+ consequenceTypeSelect: "Filter out variants falling outside the genomic features (gene, transcript, SNP, etc.) defined",
+ go: "Filter out variants falling outside the genomic features (gene, transcript, SNP, etc.) defined",
+ hpo: "Filter out variants falling outside the genomic features (gene, transcript, SNP, etc.) defined",
+ clinvar: "Filter out variants falling outside the genomic features (gene, transcript, SNP, etc.) defined",
+ fullTextSearch: "Filter out variants falling outside the genomic features (gene, transcript, SNP, etc.) defined",
+ cadd: "Raw values have relative meaning, with higher values indicating that a variant is more likely to be " +
+ "simulated (or not observed) and therefore more likely to have deleterious effects. If discovering causal variants " +
+ "within an individual, or small groups, of exomes or genomes te use of the scaled CADD score is recommended",
+ cohort: "Filter variants by the cohort alternate allele frequency",
+ sample: "Filter variants by sample genotypes or mode of inheritance (Compounf Het., de Novo, ...)"
+};
+
+const beacon = {
+ hosts: [
+ "brca-exchange", "cell_lines", "cosmic", "wtsi", "wgs", "ncbi", "ebi", "ega", "broad", "gigascience",
+ "ucsc", "lovd", "hgmd", "icgc", "sahgp"
+ ]
+};
+
+const proteinSubstitutionScore = {
+ style: {
+ // This is to show the predictions in respective colors
+ sift: {
+ deleterious: "red",
+ tolerated: "green"
+ },
+ polyphen: {
+ "probably damaging": "red",
+ "possibly damaging": "darkorange",
+ "benign": "green",
+ "unknown": "black"
+ }
+ }
+};
+
diff --git a/src/conf/panels.js b/src/conf/panels.js
deleted file mode 100644
index bdec7adc2..000000000
--- a/src/conf/panels.js
+++ /dev/null
@@ -1 +0,0 @@
-PANELS=[{"id":"57c59f3f8f62030d4e7e01be","name":"Unexplained monogenic fetal disorders","title":"Unexplained monogenic fetal disorders","genes":[],"source":{"id":"PanelApp","version":"0.2"}},{"id":"553f9596bb5a1616e5ed45aa","name":"Agranulocytosis","title":"Agranulocytosis","genes":["HAX1","TCN2"],"source":{"id":"PanelApp","version":"1.2"}},{"id":"553f9599bb5a1616e5ed45af","name":"Erythropoietic protoporphyria, mild variant","title":"Erythropoietic protoporphyria, mild variant","genes":["ALAS2","FECH"],"source":{"id":"PanelApp","version":"1.1"}},{"id":"5550b7bebb5a161bf644a3bc","name":"Severe familial anorexia","title":"Severe familial anorexia","genes":["BDNF"],"source":{"id":"PanelApp","version":"1.1"}},{"id":"554a0ac9bb5a167e4ccd1ec1","name":"Stickler syndrome","title":"Stickler syndrome","genes":["COL11A1","COL11A2","COL2A1","COL9A1","COL9A2","COL9A3","LOXL3"],"source":{"id":"PanelApp","version":"1.20"}},{"id":"553f968cbb5a1616e5ed45cc","name":"Classical tuberous sclerosis","title":"Classical tuberous sclerosis","genes":["TSC1","TSC2"],"source":{"id":"PanelApp","version":"1.1"}},{"id":"5549fcd4bb5a167e4ccd1eb9","name":"Genetic Epilepsies with Febrile Seizures Plus (GEFS+)","title":"Genetic Epilepsies with Febrile Seizures Plus (GEFS+)","genes":["GABRG2","SCN1A","SCN1B","ADGRV1","CPA6","SCN9A"],"source":{"id":"PanelApp","version":"1.8"}},{"id":"5763f6048f620350a1996052","name":"Familial disseminated superficial actinic porokeratosis","title":"Familial disseminated superficial actinic porokeratosis","genes":["MVK","FDPS","MVD","PMVK","SART3","SLC17A9","SSH1"],"source":{"id":"PanelApp","version":"0.17"}},{"id":"5549fce0bb5a167e4ccd1ebc","name":"Familial Focal Epilepsies","title":"Familial Focal Epilepsies","genes":["CHRNA4","CHRNB2","CNTNAP2","DEPDC5","KCNT1","LGI1","SCN1A","CHRNA2","SCN9A","TSC1"],"source":{"id":"PanelApp","version":"1.8"}},{"id":"5549d5c4bb5a1630f22d5886","name":"Kabuki syndrome","title":"Kabuki syndrome","genes":["KDM6A","KMT2D","RAP1A","RAP1B"],"source":{"id":"PanelApp","version":"1.1"}},{"id":"55bf826222c1fc0fe45530c1","name":"Familial or syndromic hypoparathyroidism","title":"Familial or syndromic hypoparathyroidism","genes":["AIRE","CASR","GATA3","GCM2","GNA11","PTH","TBCE","SOX3"],"source":{"id":"PanelApp","version":"1.5"}},{"id":"553f95d0bb5a1616e5ed45c1","name":"Severe multi-system atopic disease with high IgE","title":"Severe multi-system atopic disease with high IgE","genes":["DOCK8","PGM3","SPINK5","STAT3","IL21R","PLA2G7","TYK2"],"source":{"id":"PanelApp","version":"1.1"}},{"id":"563242a422c1fc582756e3cd","name":"Infantile nystagmus","title":"Infantile nystagmus","genes":["C10orf11","CACNA1A","FRMD7","GPR143","LYST","OCA2","SLC24A5","SLC45A2","TYR","TYRP1","DGUOK","GNAI3","MT-ATP6","MT-CO1","MT-CO3","MT-CYB","MT-ND2","MT-ND6"],"source":{"id":"PanelApp","version":"1.1"}},{"id":"553f9781bb5a1616e5ed45f4","name":"Hyperinsulinism","title":"Hyperinsulinism","genes":["ABCC8","GCK","GLUD1","HADH","HNF1A","HNF4A","KCNJ11","SLC16A1","INSR","RYR3","TRMT10A"],"source":{"id":"PanelApp","version":"1.1"}},{"id":"56937d0d22c1fc25158f3c9e","name":"Non-syndromic hypotrichosis","title":"Non-syndromic hypotrichosis","genes":["APCDD1","CDSN","DSG4","HR","KRT74","LIPH","LPAR6","SNRPE","DSC3","KRT71","RPL21"],"source":{"id":"PanelApp","version":"1.0"}},{"id":"55d1c77722c1fc237ed709f8","name":"Genodermatoses with malignancies","title":"Genodermatoses with malignancies","genes":["MLH1","MSH2","MSH6","PTCH1","PTEN","SUFU","AKT1","KLLN","PIK3CA","PTCH2","SDHB","SDHD"],"source":{"id":"PanelApp","version":"1.1"}},{"id":"553f94d5bb5a1616e5ed45a4","name":"Renal tubular acidosis","title":"Renal tubular acidosis","genes":["ATP6V0A4","ATP6V1B1","BSND","CA2","CLCNKB","CTNS","EHHADH","FAH","KCNJ1","SLC12A1","SLC12A3","SLC4A1","SLC4A4","SCNN1B","TRPM6"],"source":{"id":"PanelApp","version":"1.4"}},{"id":"5763f4408f620350a22bcce1","name":"PHACE(S) syndrome","title":"PHACE(S) syndrome","genes":["AKR1B1","ANTXR1","DUSP5","FLT4","KDR","SLC35B4"],"source":{"id":"PanelApp","version":"1.0"}},{"id":"554a0ac9bb5a167e4ccd1ec0","name":"Chondrodysplasia punctata","title":"Chondrodysplasia punctata","genes":["AGPS","ARSE","EBP","GNPAT","PEX7"],"source":{"id":"PanelApp","version":"1.1"}},{"id":"5885eb948f620309044f8a0b","name":"Disseminated non-tuberculous mycobacterial infection","title":"Disseminated non-tuberculous mycobacterial infection","genes":["IFNGR1","IFNGR2","IL12RB1","STAT1"],"source":{"id":"PanelApp","version":"0.4"}},{"id":"553f9599bb5a1616e5ed45b0","name":"Hydroa vacciniforme","title":"Hydroa vacciniforme","genes":["UVSSA","ERCC6","ERCC8"],"source":{"id":"PanelApp","version":"1.1"}},{"id":"5633857722c1fc582756e3d9","name":"Hereditary haemorrhagic telangiectasia","title":"Hereditary haemorrhagic telangiectasia","genes":["ACVRL1","ENG","SMAD4","GDF2","ATM","ATR","FOXF1","KRIT1","MRE11A","PIK3CA","RASA1","SOX18","TEK"],"source":{"id":"PanelApp","version":"1.25"}},{"id":"5763f3788f620350a199604a","name":"Currarino triad","title":"Currarino triad","genes":["MNX1","FUZ","GDF11","GDF6","PAM16","PCSK5","SHH","T","VANGL1","VANGL2","ZIC3"],"source":{"id":"PanelApp","version":"1.0"}},{"id":"553f9595bb5a1616e5ed45a9","name":"Congenital neutropaenia","title":"Congenital neutropaenia","genes":["CXCR4","ELANE","G6PC3","GFI1","HAX1","SBDS","SLC37A4","TAZ","TCN2","VPS45","WAS","CSF3R","FCGR3B","GATA1","RAC2"],"source":{"id":"PanelApp","version":"1.17"}},{"id":"553f9697bb5a1616e5ed45d4","name":"Extreme early-onset hypertension","title":"Extreme early-onset hypertension","genes":["CUL3","CYP11B1","CYP11B2","CYP17A1","HSD11B2","KCNJ5","KLHL3","NR3C1","NR3C2","SCNN1B","SCNN1G","WNK1","WNK4","AGT","AGTR1","BMPR2","CAV1","CPS1","CYP21A2","KCNK3","PNMT","PTGIS","SARS2","SMAD9"],"source":{"id":"PanelApp","version":"1.2"}},{"id":"568e87e022c1fc1c79ca1754","name":"Holoprosencephaly","title":"Holoprosencephaly","genes":["CDON","DISP1","FGF8","FGFR1","GLI2","PTCH1","SHH","SIX3","TGIF1","ZIC2","DLL1","SUFU","FOXH1","GCM2","NODAL","SMAD2"],"source":{"id":"PanelApp","version":"1.1"}},{"id":"553f94b4bb5a1616e5ed4595","name":"Multiple endocrine tumours","title":"Multiple endocrine tumours","genes":["AIP","CDC73","CDKN1B","MAX","MEN1","PRKAR1A","RET","SDHAF2","SDHB","SDHC","SDHD","TMEM127","TP53","VHL","NTRK1","PTEN"],"source":{"id":"PanelApp","version":"1.4"}},{"id":"5616435a22c1fc212900fbd1","name":"Generalised pustular psoriasis","title":"Generalised pustular psoriasis","genes":["IL36RN","AP1S3","CARD14","HLA-C","MSMO1","NOD2","PSTPIP1","SLC39A4","STAT2","TRAF3IP2","TRPV3","ZNF750"],"source":{"id":"PanelApp","version":"1.2"}},{"id":"5763f2ea8f620350a1996048","name":"Multiple lipomas","title":"Multiple lipomas","genes":["MT-TK","EGFR","HMGA2","MDM2"],"source":{"id":"PanelApp","version":"1.0"}},{"id":"58c7f8a78f62033482c42716","name":"Pulmonary arterial hypertension","title":"Pulmonary arterial hypertension","genes":["ACVRL1","BMPR2","EIF2AK4","ENG","KCNK3","SMAD9","BMPR1B","CAV1","TBX4","CBLN2","KCNA5","SMAD1","SMAD4"],"source":{"id":"PanelApp","version":"0.64"}},{"id":"55b7337f22c1fc05fd2345ba","name":"Familial rhabdomyosarcoma","title":"Familial rhabdomyosarcoma","genes":["TP53","FOXO1","PAX3","PAX7"],"source":{"id":"PanelApp","version":"0.4"}},{"id":"568ea06122c1fc1c78b67161","name":"Peeling skin syndrome","title":"Peeling skin syndrome","genes":["CAST","CDSN","CSTA","SERPINB8","TGM5","CARD14","CHST8","EDA","KRT1","KRT10","KRT2","TP63","TRPV3"],"source":{"id":"PanelApp","version":"1.1"}},{"id":"5693787622c1fc25158f3c9a","name":"Familial cerebral small vessel disease","title":"Familial cerebral small vessel disease","genes":["ABCC6","APP","ATP1A2","CACNA1A","COL3A1","COL4A1","COL4A2","FOXC1","GLA","HTRA1","NOTCH3","TREX1","CST3","ITM2B","SCN1A"],"source":{"id":"PanelApp","version":"1.1"}},{"id":"564cbd3622c1fc10dcb42ac7","name":"RASopathies","title":"RASopathies","genes":["BRAF","CBL","HRAS","KRAS","LZTR1","MAP2K1","MAP2K2","NF1","NRAS","PTPN11","RAF1","RIT1","SHOC2","SOS1","SOS2","SPRED1","A2ML1","RASA2"],"source":{"id":"PanelApp","version":"1.14"}},{"id":"553f9697bb5a1616e5ed45d3","name":"Choanal atresia","title":"Choanal atresia","genes":["CHD7","EFTUD2","FAM20C","FGFR2","FGFR3","FOXE1","SPINT2","TXNL4A","PTPN14","SALL4","SEMA3E"],"source":{"id":"PanelApp","version":"1.6"}},{"id":"57ee82ef8f62035c9b2d0487","name":"Lymphatic Disorders","title":"Lymphatic Disorders","genes":["CCBE1","EPHB4","FAT4","FLT4","FOXC2","GATA2","GJA1","GJC2","IKBKG","KIF11","PIEZO1","SOX18","VEGFC","ALX3","AQP1","CCDC88A","CDC42","PTPN14","TTR"],"source":{"id":"PanelApp","version":"1.7"}},{"id":"562e5d2622c1fc582756e3b5","name":"Autosomal recessive congenital ichthyosis","title":"Autosomal recessive congenital ichthyosis","genes":["ABCA12","ALOX12B","ALOXE3","CERS3","CYP4F22","NIPAL4","PNPLA1","SLC27A4","ST14","STS","TGM1","LIPN"],"source":{"id":"PanelApp","version":"1.1"}},{"id":"55e01bb222c1fc6199b42904","name":"Familial haematuria","title":"Familial haematuria","genes":["COL4A3","COL4A4","COL4A5","MYH9","CFHR5","COL4A6","NPHS2","COL4A1"],"source":{"id":"PanelApp","version":"1.4"}},{"id":"56938f1a22c1fc251660fb16","name":"Fetal structural CNS abnormalities","title":"Fetal structural CNS abnormalities","genes":["ASPM"],"source":{"id":"PanelApp","version":"0.3"}},{"id":"553f95e2bb5a1616e5ed45c8","name":"Inherited optic neuropathies","title":"Inherited optic neuropathies","genes":["ACO2","MFN2","MT-ATP6","MT-ND1","MT-ND4","MT-ND6","NR2F1","OPA1","OPA3","RTN4IP1","WFS1","GP1BA","LYST","OPA2","OPA4","OPA5","OPA6","OPA8","SPG7","TIMM8A","TMEM126A"],"source":{"id":"PanelApp","version":"1.2"}},{"id":"553f968cbb5a1616e5ed45cd","name":"Multiple Epiphyseal Dysplasia","title":"Multiple Epiphyseal Dysplasia","genes":["COL9A2","COL9A3","COMP","MATN3","SLC26A2","CHST3","COL11A2","COL2A1","COL9A1","EIF2AK3","TRAPPC2"],"source":{"id":"PanelApp","version":"1.1"}},{"id":"55d3196022c1fc313273e328","name":"Parathyroid Cancer","title":"Parathyroid Cancer","genes":["CDC73","MEN1","AIP","CASR","CDKN1B","PRKAR1A","RET"],"source":{"id":"PanelApp","version":"1.2"}},{"id":"55a38d3a22c1fc64c2942434","name":"Left Ventricular Noncompaction Cardiomyopathy","title":"Left Ventricular Noncompaction Cardiomyopathy","genes":["ACTC1","MYBPC3","MYH7","TAZ","TNNT2","TPM1","CASQ2","DNAJC19","DTNA","LDB3","LMNA","MIB1","MYPN","PRDM16","SDHA","TNNI3"],"source":{"id":"PanelApp","version":"1.1"}},{"id":"553f9595bb5a1616e5ed45a8","name":"A- or hypo-gammaglobulinaemia","title":"A- or hypo-gammaglobulinaemia","genes":["BLNK","BTK","CD19","CTLA4","DNMT3B","IGHM","IKZF1","PIK3CD","PIK3R1","TCN2","MYD88","TNFRSF13B","CD79A","CD79B","CR2","ELF4","GAD1","ICOS","IGLL1","LRRC8A","AICDA","NFKB2","PLCG2","TCF3","TTC37","UNG"],"source":{"id":"PanelApp","version":"1.10"}},{"id":"5554c7cabb5a161bf644a3ce","name":"Balanced translocations with an unusual phenotype","title":"Balanced translocations with an unusual phenotype","genes":[],"source":{"id":"PanelApp","version":"0.2"}},{"id":"576cd44c8f6203609632be80","name":"Resistance to thyroid hormone","title":"Resistance to thyroid hormone","genes":["SECISBP2","SLC16A2","THRA","THRB","TRU-TCA1-1"],"source":{"id":"PanelApp","version":"1.0"}},{"id":"558c24a2bb5a166f63868678","name":"Juvenile dermatomyositis","title":"Juvenile dermatomyositis","genes":["RNASEH2A","RNASEH2B","RNASEH2C","SAMHD1","TREX1"],"source":{"id":"PanelApp","version":"1.1"}},{"id":"553f9599bb5a1616e5ed45b1","name":"Neuro-endocrine Tumours- PCC and PGL","title":"Neuro-endocrine Tumours- PCC and PGL","genes":["FH","MAX","MEN1","NF1","PRKAR1A","RET","SDHA","SDHAF2","SDHB","SDHC","SDHD","TMEM127","VHL","CDC73","CDKN1B","GDNF","KIF1B","MDH2","PTEN","TP53"],"source":{"id":"PanelApp","version":"1.1"}},{"id":"5549fcdfbb5a167e4ccd1ebb","name":"Familial Genetic Generalised Epilepsies","title":"Familial Genetic Generalised Epilepsies","genes":["GABRA1","GABRG2","PCDH19","SCN1A","SCN1B","SLC2A1","TRAK1","CACNB4","CASR","CNTN2","CPA6","DEPDC5","FTL","GABRB3","KCNMA1","KCNQ3","LGI1","NEDD4L","PRRT2","SCN2A","SCN9A","TBC1D24"],"source":{"id":"PanelApp","version":"1.17"}},{"id":"55b2109c22c1fc7dd7ce411f","name":"Insulin resistance (including lipodystrophy)","title":"Insulin resistance (including lipodystrophy)","genes":["AGPAT2","ALMS1","BLM","BSCL2","INSR","LMNA","PCNT","PCYT1A","PIK3R1","PLIN1","POLD1","PPARG","PTRF","WRN","ZMPSTE24","AGPS","AKT2","CAV1","CIDEC","FGFR3","NSMCE2","POC1A","PPP1R3A","PSMB8"],"source":{"id":"PanelApp","version":"1.1"}},{"id":"55b20bdf22c1fc7dd6b9bbb7","name":"Auditory Neuropathy Spectrum Disorder","title":"Auditory Neuropathy Spectrum Disorder","genes":["ATP1A3","DFNB59","OPA1","OTOF","DIAPH3"],"source":{"id":"PanelApp","version":"1.3"}},{"id":"58c8048d8f62033f90c2716c","name":"Unprovoked Thrombosis before 40 years of age","title":"Unprovoked Thrombosis before 40 years of age","genes":["F5"],"source":{"id":"PanelApp","version":"0.1"}},{"id":"5763f2bf8f620350a1996047","name":"Familial prostate cancer","title":"Familial prostate cancer","genes":["BRCA2","BRCA1","BRIP1","CHEK2","ELAC2","HOXB13","MSH2","MSH5","MSH6","MSR1","PALB2","PTEN","RNASEL","SPOP"],"source":{"id":"PanelApp","version":"1.0"}},{"id":"553f94d5bb5a1616e5ed45a5","name":"Renal tract calcification (or Nephrolithiasis/nephrocalcinosis)","title":"Renal tract calcification (or Nephrolithiasis/nephrocalcinosis)","genes":["AGXT","APRT","ATP6V0A4","ATP6V1B1","BSND","CA2","CASR","CLCN5","CLCNKB","CLDN16","CLDN19","CYP24A1","GRHPR","HOGA1","KCNJ1","OCRL","SLC12A1","SLC34A1","SLC34A3","SLC3A1","SLC4A1","SLC7A9","SLC9A3R1","TRPM6","XDH","ADCY10","AGK","AP2S1","CLCNKA","FAM20A","GNA11","HNF4A","HPRT1","SLC22A12","SLC2A9","SLC36A2","SLC6A19","SLC6A20","SLC9A3","VDR","ZNF365"],"source":{"id":"PanelApp","version":"1.9"}},{"id":"58c8066b8f6203413360f1cf","name":"Ductal plate malformation (DPM)","title":"Ductal plate malformation (DPM)","genes":[],"source":{"id":"PanelApp","version":"0.0"}},{"id":"58c7f6858f620328d77ce711","name":"Short QT syndrome","title":"Short QT syndrome","genes":[],"source":{"id":"PanelApp","version":"0.0"}},{"id":"561677af22c1fc212a6db65d","name":"Ectodermal dysplasia without a known gene mutation","title":"Ectodermal dysplasia without a known gene mutation","genes":["CDH3","EDA","EDAR","EDARADD","GJB6","HOXC13","IKBKG","KRT14","KRT85","MSX1","NFKB2","NFKBIA","PKP1","PORCN","PVRL1","PVRL4","RMRP","TP63","WNT10A","AIRE","DSP","GJB2","IFT122","IFT43","KREMEN1","KRT74","WDR19","WDR35"],"source":{"id":"PanelApp","version":"1.10"}},{"id":"55af764522c1fc78a829f89a","name":"Familial Tumours Syndromes of the central & peripheral Nervous system","title":"Familial Tumours Syndromes of the central & peripheral Nervous system","genes":["APC","LZTR1","MLH1","MSH2","MSH6","NF1","NF2","PMS2","PTCH1","SMARCB1","SMARCE1","SUFU","TP53","VHL","ALK","ATM","MEN1","NBN","PALB2","PHOX2B"],"source":{"id":"PanelApp","version":"1.3"}},{"id":"55a628f522c1fc6710839b93","name":"Combined B and T cell defect","title":"Combined B and T cell defect","genes":["ADA","CD27","CIITA","CORO1A","DCLRE1C","DOCK8","ITK","LIG4","MAGT1","NHEJ1","RAG1","RAG2","RFX5","RFXANK","RFXAP","RMRP","STK4","TCN2","WAS","RAC2"],"source":{"id":"PanelApp","version":"1.1"}},{"id":"5885e8ca8f620309044f8a09","name":"Idiopathic ventricular fibrillation","title":"Idiopathic ventricular fibrillation","genes":["SCN5A","DPP6","KCNE5","KCNJ8","RYR2"],"source":{"id":"PanelApp","version":"0.3"}},{"id":"576cd7e38f62036097d6cc9c","name":"Non-syndromic familial congenital anorectal malformations","title":"Non-syndromic familial congenital anorectal malformations","genes":[],"source":{"id":"PanelApp","version":"0.2"}},{"id":"5739e7268f62030c3a8f9767","name":"Silver Russell syndrome","title":"Silver Russell syndrome","genes":["IGF1","IGF1R","CDKN1C","H19","IGF2","IGFBP1","IGFBP3"],"source":{"id":"PanelApp","version":"1.2"}},{"id":"5693932722c1fc251660fb19","name":"Kyphoscoliotic Ehlers-Danlos syndrome","title":"Kyphoscoliotic Ehlers-Danlos syndrome","genes":["CHST14","FKBP14","PLOD1"],"source":{"id":"PanelApp","version":"1.1"}},{"id":"563248da22c1fc58285b283a","name":"Atypical haemolytic uraemic syndrome","title":"Atypical haemolytic uraemic syndrome","genes":["C3","CD46","CFB","CFH","CFHR1","CFHR3","CFI","DGKE","THBD"],"source":{"id":"PanelApp","version":"1.1"}},{"id":"5763f1118f620350a22bccda","name":"Ocular and oculo-cutaneous albinism","title":"Ocular and oculo-cutaneous albinism","genes":["C10orf11","GPR143","LYST","OCA2","SLC24A5","SLC45A2","TYR","TYRP1","GNAI3","HPS1","HPS3","HPS4","HPS5","MITF"],"source":{"id":"PanelApp","version":"1.5"}},{"id":"5763f2938f620350a1996046","name":"Congenital hypothyroidism or thyroid agenesis","title":"Congenital hypothyroidism or thyroid agenesis","genes":["DUOX2","DUOXA2","FOXE1","GLIS3","GNAS","HESX1","IGSF1","IYD","LHX3","LHX4","NKX2-1","OTX2","PAX8","POU1F1","PRKAR1A","PROP1","SLC26A4","SLC5A5","TG","THRA","TPO","TRHR","TSHB","TSHR","NKX2-5","TBL1X","SOX3"],"source":{"id":"PanelApp","version":"1.0"}},{"id":"5763f6508f620350a1996055","name":"Sudden death in young people","title":"Sudden death in young people","genes":["GLRA1","PHOX2B","PPA2","KCNJ8","ASCL1","BDNF","CACNA2D1","EDN3","GDNF","KCND2","KCND3","MAOA","RET","SLC6A4","TSPYL1","AARS2","ACADM","AKAP10","AKAP9","AQP4","CAV3","CTNNA3","FEV","IL10","IL6","MT-CYB","MT-ND1","MT-TL1","MYLK2","NKX2-5","RYR2","SCN4B","SLC25A4","TMPO"],"source":{"id":"PanelApp","version":"1.4"}},{"id":"56323bce22c1fc58285b2837","name":"Inherited complement deficiency","title":"Inherited complement deficiency","genes":["C2","CFD","CFH","CFI","MBL2","TCN2"],"source":{"id":"PanelApp","version":"0.8"}},{"id":"5541ef3dbb5a160c33b964e0","name":"Paediatric motor neuronopathies","title":"Paediatric motor neuronopathies","genes":["AR","ASAH1","BICD2","CHCHD10","DYNC1H1","EXOSC3","IGHMBP2","SLC52A2","SLC52A3","SMN1","SPG11","TRIP4","TRPV4","UBA1","VRK1","ALS2","ATP7A","EXOSC8","HSPB1","HSPB8","REEP1","SETX","VAPB","AARS","BSCL2","DCTN1","DMPK","DNAJB2","FBXO38","GARS","HSPB3","MEG3","PLEKHG5","SIGMAR1","SLC52A1","SLC5A7","SNRPN","SYT2","UBQLN1"],"source":{"id":"PanelApp","version":"1.6"}},{"id":"568f8db422c1fc1c79ca1777","name":"Intracerebral calcification disorders","title":"Intracerebral calcification disorders","genes":["ACP5","ADAR","AP1S2","COL4A1","CTC1","CYP2U1","IFIH1","JAM3","OCLN","PDGFB","PDGFRB","RNASEH2A","RNASEH2B","RNASEH2C","SAMHD1","SLC20A2","TREM2","TREX1","USP18","XPR1","ERCC6","MAT1A","SNORD118"],"source":{"id":"PanelApp","version":"1.6"}},{"id":"56ba025922c1fc5025762b4e","name":"Neurotransmitter disorders","title":"Neurotransmitter disorders","genes":["DBH","DDC","DHFR","DNAJC12","FOLR1","GCH1","MAOA","PTS","QDPR","SLC18A2","SLC6A3","SPR","TH","PITX3"],"source":{"id":"PanelApp","version":"1.1"}},{"id":"55a3876e22c1fc63fec6d0da","name":"Arrhythmogenic Right Ventricular Cardiomyopathy","title":"Arrhythmogenic Right Ventricular Cardiomyopathy","genes":["DES","DSC2","DSG2","DSP","JUP","PKP2","PLN","RYR2","TMEM43","CTNNA3","LDB3","LMNA","SCN5A","TGFB3","TTN"],"source":{"id":"PanelApp","version":"1.3"}},{"id":"553f9598bb5a1616e5ed45ae","name":"VACTERL-like phenotypes","title":"VACTERL-like phenotypes","genes":["CHD7","EFTUD2","FANCB","FGF10","HOXA13","MYCN","PUF60","SALL1","SALL4","TBX3","TBX5","TRAP1","ZIC3","ARHGAP31","BMP2","BMPR1B","CC2D2A","CDH3","CEP290","CHSY1","ESCO2","FBLN1","FBXW4","FGFR2","FGFR3","FMN1","GDF5","GLI3","GNAS","GREM1","HDAC4","HOXD13","IHH","KIF7","LMBR1","LRP4","MGP","MIR17HG","MKS1","NIPBL","NOG","PIGV","PITX1","PTEN","PTHLH","RECQL4","ROR2","RPGRIP1L","SHH","SOX9","TBX15","THPO","TP63","WNT3","WNT7A"],"source":{"id":"PanelApp","version":"1.6"}},{"id":"55bf785822c1fc0fe45530bf","name":"Congenital adrenal hypoplasia","title":"Congenital adrenal hypoplasia","genes":["AAAS","AIRE","CDKN1C","CYP11A1","MC2R","MRAP","NNT","NR0B1","NR5A1","SAMD9","STAR","TBX19","MCM4","ABCD1","CYP17A1","CYP21A2","HSD3B2","POMC","TXNRD2"],"source":{"id":"PanelApp","version":"1.2"}},{"id":"576cd7ca8f6203609632be82","name":"Inherited non-medullary thyroid cancer","title":"Inherited non-medullary thyroid cancer","genes":["APC","PRKAR1A","PTEN","TG","WRN","SLC5A5","BRAF","DICER1","DIRAS3","FOXE1","HABP2","KISS1R","MINPP1","MSH2","MSH6","NDUFA13","NKX2-1","PIK3CA","PTCSC1","PTCSC3","SEC23B","SRGAP1","VTRNA2-1","SDHB","SRRM2"],"source":{"id":"PanelApp","version":"0.13"}},{"id":"55ace3c022c1fc7042059034","name":"Kleine-Levin syndrome","title":"Kleine-Levin syndrome","genes":["DNMT1","CSNK1D","MOG","AKR1C2","EIF3G","EXT1","HCRT","HLA-DQB1","NTRK2","PER2","SLC6A4","TRPV4"],"source":{"id":"PanelApp","version":"1.1"}},{"id":"57332be28f62037ca4859835","name":"Ehlers-Danlos syndrome type 3","title":"Ehlers-Danlos syndrome type 3","genes":["ADAMTS2","CHST14","COL1A1","COL1A2","COL3A1","COL5A1","COL5A2","FBN1","FKBP14","PLOD1","SLC39A13","TGFBR1","TGFBR2","TNXB","ABCC6","ACTA2","ACVR1","ALDH18A1","ATP6V0A2","ATP7A","B3GALT6","B4GALT7","CBS","COL11A1","COL11A2","COL2A1","COL9A1","COL9A2","COL9A3","COX7B","EFEMP2","ELN","FBLN5","FBN2","FLCN","FLNA","GGCX","LTBP4","MED12","MYH11","MYLK","NOTCH1","PKD2","PRDM5","PYCR1","RIN2","SERPINA1","SKI","SLC2A10","SMAD3","SMAD4","TGFB2","TSC1","TSC2","ZNF469"],"source":{"id":"PanelApp","version":"1.1"}},{"id":"5763f4f18f620350a1996051","name":"Neonatal or paediatric intensive care admission with a likely monogenic cause","title":"Neonatal or paediatric intensive care admission with a likely monogenic cause","genes":["USP18"],"source":{"id":"PanelApp","version":"0.3"}},{"id":"55a6566d22c1fc6710839b9c","name":"Periodic fever syndromes","title":"Periodic fever syndromes","genes":["APOA1","APOA2","ELANE","FGA","GSN","IL1RN","IL36RN","LPIN2","LYZ","MEFV","MVK","NLRP12","NLRP3","NOD2","OSMR","PSMB8","PSTPIP1","TNFRSF1A","TTR","APOC2","APOC3","APP","B2M","CST3","HTR1A","IL31RA","NLRC4","TRNT1","OTULIN","TNFAIP3"],"source":{"id":"PanelApp","version":"1.4"}},{"id":"578e24b78f62031b4bd04516","name":"Familial haemophagocytic lymphohistiocytic disorders","title":"Familial haemophagocytic lymphohistiocytic disorders","genes":[],"source":{"id":"PanelApp","version":"0.1"}},{"id":"553f97abbb5a1616e5ed45f9","name":"Anophthalmia/microphthamia","title":"Anophthalmia/microphthamia","genes":["ALDH1A3","BCOR","BMP4","COL4A1","FOXC1","FOXE3","FRAS1","FREM1","FREM2","GRIP1","HCCS","MAB21L2","MFRP","OTX2","PAX6","PITX2","PRSS56","RAB18","RAB3GAP1","RAB3GAP2","RARB","RAX","SHH","SIX6","SMOC1","SOX2","STRA6","TBC1D20","VSX2","ABCB6","B3GALTL","BMPR1A","CYP1B1","DDB1","DDB2","ERCC1","ERCC2","ERCC3","ERCC4","ERCC5","ERCC6","ERCC8","GDF3","GDF6","GTF2H5","HDAC6","MPLKIP","PITX3","POLH","TENM3","VAX1","XPA","XPC","TMEM98"],"source":{"id":"PanelApp","version":"1.5"}},{"id":"5763f2348f620350a1996043","name":"Regional overgrowth disorders","title":"Regional overgrowth disorders","genes":["AKT1","AKT3","CCND2","CDKN1C","PIK3CA","PIK3R2","PTEN","RASA1","AKT2","HRAS","KRAS","MTOR","NRAS","TBC1D7"],"source":{"id":"PanelApp","version":"1.2"}},{"id":"5763f5688f620350a22bcce3","name":"Ultra-rare undescribed monogenic disorders","title":"Ultra-rare undescribed monogenic disorders","genes":[],"source":{"id":"PanelApp","version":"0.1"}},{"id":"57c841c58f620314a4788738","name":"Single autosomal recessive mutation in rare disease","title":"Single autosomal recessive mutation in rare disease","genes":[],"source":{"id":"PanelApp","version":"0.1"}},{"id":"58c7fba38f6203345887d4f5","name":"Hereditary Erythrocytosis","title":"Hereditary Erythrocytosis","genes":["BPGM","EGLN1","EPAS1","EPOR","HBA1","HBA2","HBB","VHL","EGLN2","EGLN3","EPO","HIF1A","PKLR"],"source":{"id":"PanelApp","version":"1.0"}},{"id":"5763f3038f620350a1996049","name":"Pityriasis rubra pilaris","title":"Pityriasis rubra pilaris","genes":["CARD14"],"source":{"id":"PanelApp","version":"1.0"}},{"id":"55c2321822c1fc0fe5e416e1","name":"Brain channelopathy","title":"Brain channelopathy","genes":["ADCY5","ATP1A2","ATP1A3","ATP7B","CACNA1A","CACNB4","GLRA1","GLRB","KCNA1","KCNQ2","KCNQ3","PNKD","PRRT2","SCN1A","SCN8A","SLC1A3","SLC2A1","SLC6A5","KCNK18","HTT","NKX2-1","SCN9A"],"source":{"id":"PanelApp","version":"1.15"}},{"id":"5540ef61bb5a160c33b964da","name":"Isomerism and laterality disorders","title":"Isomerism and laterality disorders","genes":["ACVR2B","NODAL","ZIC3","ACTC1","CFC1","CRELD1","DNAH11","DNAH5","DNAI1","GDF1","MYH6","AGPAT2","CCDC103","CCDC114","CCDC39","CCDC40","CFAP53","CITED2","DNAAF1","DNAAF2","DNAAF3","DNAAF5","DNAI2","DNAL1","FOXH1","GATA4","GATA5","GATA6","GJA1","HYDIN","LEFTY2","LRRC6","LZTFL1","MMP21","NKX2-5","NME8","NPHP4","OFD1","RPGR","RPSA","RSPH4A","RSPH9","SHROOM3","TBX20","TLL1"],"source":{"id":"PanelApp","version":"0.7"}},{"id":"58c7fd7f8f6203413360f1b6","name":"Monogenic viral susceptibility","title":"Monogenic viral susceptibility","genes":["IRF7","TMC6","TMC8","UNC93B1"],"source":{"id":"PanelApp","version":"0.4"}},{"id":"56ba026422c1fc5025762b4f","name":"Gastrointestinal epithelial barrier disorders","title":"Gastrointestinal epithelial barrier disorders","genes":["MYO5B","ADAM17","EPCAM","IKBKG"],"source":{"id":"PanelApp","version":"0.6"}},{"id":"575ec3a58f62034208b69eda","name":"monogenic nephrogenic diabetes insipidus","title":"monogenic nephrogenic diabetes insipidus","genes":["AQP2","AVPR2","AVP","SLC12A1","WFS1"],"source":{"id":"PanelApp","version":"1.4"}},{"id":"55af787822c1fc78a829f89f","name":"Proteinuric renal disease","title":"Proteinuric renal disease","genes":["ACTN4","AMN","ARHGDIA","CLCN5","COL4A3","COL4A4","COL4A5","COQ2","COQ6","CUBN","INF2","ITGA3","LAMB2","LCAT","LMX1B","MYH9","MYO1E","NPHS1","NPHS2","NUP93","PLCE1","SCARB2","SMARCAL1","TRPC6","WT1","ANLN","ALG1","ALMS1","APOL1","ARHGAP24","CD151","CD2AP","CYP11B2","DHFR","E2F3","GIF","ITGB4","KANK2","MTR","MTRR","PDSS2","PMM2","PTPRO","SLC19A2","SLC19A3","ZMPSTE24"],"source":{"id":"PanelApp","version":"1.6"}},{"id":"55a9041e22c1fc6711b0c6c0","name":"Neonatal diabetes diagnosed <6 months","title":"Neonatal diabetes diagnosed <6 months","genes":["ABCC8","BSCL2","EIF2AK3","FOXP3","GATA4","GATA6","GCK","GLIS3","HNF1B","IER3IP1","IL2RA","INS","INSR","KCNJ11","LRBA","MNX1","NEUROD1","NEUROG3","NKX2-2","PDX1","PTF1A","RFX6","SLC19A2","SLC2A2","STAT3","WFS1","ZFP57","AGPAT2","CISD2"],"source":{"id":"PanelApp","version":"1.0"}},{"id":"57eab3658f620356ef5e4010","name":"Severe hypertriglyceridaemia","title":"Severe hypertriglyceridaemia","genes":["APOA5","APOC2","GPIHBP1","LPL","CELSR2","GPD1","LMF1"],"source":{"id":"PanelApp","version":"1.1"}},{"id":"55537918bb5a161bf644a3c7","name":"Cerebral folate deficiency","title":"Cerebral folate deficiency","genes":["DHFR","FOLR1","MTHFR","SLC46A1"],"source":{"id":"PanelApp","version":"1.1"}},{"id":"569380ac22c1fc251660faf8","name":"Disorders of sex development","title":"Disorders of sex development","genes":["AR","ARX","ATRX","CDKN1C","CHD7","CUL4B","CYB5A","CYP11A1","CYP11B1","CYP17A1","CYP19A1","CYP21A2","DHCR7","DHH","HSD17B3","HSD3B2","LHCGR","MAMLD1","MAP3K1","NR0B1","NR5A1","POR","RSPO1","SAMD9","SOX10","SOX9","SRD5A2","SRY","STAR","TOE1","WT1","ZFPM2","AKR1C2","ATP6V0A4","CBX2","DGKQ","DMRT1","GATA4","GLI2","HHAT","HSD17B2","INPP5E","PAX6","SEMA3E","TAF4B","TSPYL1","TWIST2"],"source":{"id":"PanelApp","version":"1.12"}},{"id":"55a3a78122c1fc6711b0c6b5","name":"Brugada syndrome","title":"Brugada syndrome","genes":["CACNB2","GPD1L","HCN4","KCNE3","SCN10A","SCN1B","SCN3B","SCN5A","TRPM4","ABCC9","ANK2","CACNA1C","CACNA2D1","CAV3","DLG1","KCND3","KCNE5","KCNH2","KCNJ8","PKP2","RANGRF","SCN2B","SLMAP"],"source":{"id":"PanelApp","version":"1.5"}},{"id":"55c4a3ed22c1fc0fe5e416e9","name":"Skeletal Muscle Channelopathies","title":"Skeletal Muscle Channelopathies","genes":["ADCY5","ATP2A1","CACNA1S","CLCN1","KCNA1","KCNJ2","MT-ATP6","MT-ATP8","PYGM","RYR1","SCN4A","SLC1A3","CACNA1A","CACNB4","KCNJ5","KCNQ2","CNBP","DMPK","HSPG2","KCNJ18"],"source":{"id":"PanelApp","version":"1.2"}},{"id":"55b7a0bb22c1fc05fd2345d1","name":"Distal myopathies","title":"Distal myopathies","genes":["ACTA1","ANO5","BAG3","CNBP","CRYAB","DES","DNAJB6","DNM2","DYSF","FHL1","FLNC","GNE","HSPB1","HSPB8","LDB3","MATR3","MYH7","MYOT","NEB","SQSTM1","TIA1","TTN","VCP","DMD","DMPK","DUX4","KLHL9"],"source":{"id":"PanelApp","version":"1.0"}},{"id":"576cd7b18f6203609632be81","name":"Young adult onset cancer","title":"Young adult onset cancer","genes":["BRCA1","BRCA2","FAP","MLH1","MSH2","MUTYH","TP53"],"source":{"id":"PanelApp","version":"0.12"}},{"id":"55a646ef22c1fc6710839b9a","name":"Cystic kidney disease","title":"Cystic kidney disease","genes":["ANKS6","CEP164","HNF1B","INVS","NPHP1","NPHP3","NPHP4","PKD1","PKD2","PKHD1","TMEM67","TSC1","TSC2","TTC21B","UMOD","VHL","AHI1","ARL13B","ARL6","BBS1","BBS10","BBS12","BBS2","BBS4","BBS5","BBS9","C5orf42","CC2D2A","CCDC28B","CEP290","CEP41","GLA","GLIS2","INPP5E","IQCB1","KIF7","MKS1","MUC1","NEK8","OFD1","PRKCSH","RPGRIP1L","SDCCAG8","SEC63","TCTN1","TCTN3","TMEM138","TMEM216","TMEM231","TMEM237","TRIM32","TTC8","WDPCP","WDR19","XPNPEP3","ZNF423","COL4A1","GANAB"],"source":{"id":"PanelApp","version":"1.3"}},{"id":"553f979ebb5a1616e5ed45f6","name":"Corneal abnormalities","title":"Corneal abnormalities","genes":["ADAMTS18","ALDH18A1","B3GALTL","CHRDL1","CHST6","COL8A2","DCN","GJA1","GSN","HMX1","KERA","KRT12","KRT3","LTBP2","MAF","MIR184","OVOL2","PIK3R1","PIKFYVE","PITX2","PRDM5","RAB18","RAB3GAP1","RAB3GAP2","SLC16A12","SLC4A11","TACSTD2","TGFBI","UBIAD1","VSX1","ZEB1","ZNF469","AGBL1","ABCA3","APOA1","BEST1","CYP4V2","GJA8","GLS","LAMB2","MED25","PAX6"],"source":{"id":"PanelApp","version":"1.0"}},{"id":"568f8ba422c1fc1c79ca1774","name":"Malformations of cortical development","title":"Malformations of cortical development","genes":["ACTB","ACTG1","ADGRG1","AKT3","ARFGEF2","ARX","ASPM","B3GALNT2","CCND2","CSNK2A1","DAG1","DCX","DYNC1H1","FKRP","FKTN","FLNA","GPSM2","ISPD","KATNB1","KIAA1279","KIF2A","KIF5C","LAMB1","LAMC3","LARGE","NDE1","NEDD4L","OCLN","PAFAH1B1","PIK3CA","PIK3R2","POMGNT1","POMGNT2","POMT1","POMT2","RELN","RTTN","TMEM5","TUBA1A","TUBA8","TUBB2A","TUBB2B","TUBB3","TUBG1","WDR62","TUBB","B4GAT1","ERMARD","GMPPB","POMK"],"source":{"id":"PanelApp","version":"1.116"}},{"id":"55a3aac122c1fc6710839b7d","name":"Catecholaminergic Polymorphic Ventricular Tachycardia","title":"Catecholaminergic Polymorphic Ventricular Tachycardia","genes":["CALM1","CALM2","CASQ2","RYR2","TRDN","ANK2","CALM3","KCNE1","KCNJ2"],"source":{"id":"PanelApp","version":"1.1"}},{"id":"55d2fc2d22c1fc2cc6635960","name":"Significant early-onset obesity +/- other endocrine features and short stature","title":"Significant early-onset obesity +/- other endocrine features and short stature","genes":["ALMS1","ARL6","BBS1","BBS10","BBS12","BBS2","BBS4","BBS5","BBS7","BBS9","LEP","LEPR","MC4R","MKKS","MKS1","PCSK1","PHF6","POMC","SDCCAG8","TTC8","VPS13B","MYT1L","SH2B1","SIM1","AKR1C2","CEP19","CEP290","CPE","GNAS","INPP5E","KSR2","MAGEL2","MRAP2","NR0B2","NTRK2","PPARG","TRIM32","TUB","WDPCP"],"source":{"id":"PanelApp","version":"1.1"}},{"id":"553f94b3bb5a1616e5ed4593","name":"Vici Syndrome and other autophagy disorders","title":"Vici Syndrome and other autophagy disorders","genes":["EPG5","LAMP2","LYST","MLPH","AP1S1","AP3B1","CTDP1","MYO5A","RAB27A","SIL1","SNAP29","VPS13B"],"source":{"id":"PanelApp","version":"0.37"}},{"id":"55bf939f22c1fc0fe45530c4","name":"Mucopolysaccharideosis, Gaucher, Fabry","title":"Mucopolysaccharideosis, Gaucher, Fabry","genes":["ARSB","GALNS","GBA","GLA","GLB1","GNPTAB","GNPTG","GNS","GUSB","HGSNAT","IDS","IDUA","MCOLN1","NAGLU","NEU1","PSAP","SGSH","HYAL1"],"source":{"id":"PanelApp","version":"1.1"}},{"id":"553f9745bb5a1616e5ed45e9","name":"Familial diabetes","title":"Familial diabetes","genes":["ABCC8","AGPAT2","BSCL2","EIF2AK3","FOXP3","GATA4","GATA6","GCK","GLIS3","HNF1A","HNF1B","HNF4A","IER3IP1","INS","INSR","KCNJ11","LMNA","LRBA","MNX1","MT-TL1","NEUROD1","NEUROG3","NKX2-2","PDX1","PIK3R1","PLIN1","POLD1","PPARG","PTF1A","RFX6","SLC19A2","SLC29A3","SLC2A2","STAT3","TRMT10A","WFS1","ZFP57","PCBD1","BLK","CEL","DCAF17","ENPP1","IL2RA","KLF11","LIPC","PAX4","STAT1","ZBTB20"],"source":{"id":"PanelApp","version":"1.6"}},{"id":"5885e9db8f620309044f8a0a","name":"Familial hidradenitis suppurativa","title":"Familial hidradenitis suppurativa","genes":["NCSTN","PSENEN","FGFR2","GJB2","PSTPIP1","IL12RB1","IL22","KRT17","MEFV","PSEN1","TNF"],"source":{"id":"PanelApp","version":"0.16"}},{"id":"55b6173522c1fc05fc7a1855","name":"Early onset dementia (encompassing fronto-temporal dementia and prion disease)","title":"Early onset dementia (encompassing fronto-temporal dementia and prion disease)","genes":["APP","CHMP2B","CSF1R","DNAJC5","DNMT1","EPM2A","GRN","ITM2B","MAPT","NHLRC1","NOTCH3","PRNP","PSEN1","PSEN2","TARDBP","TBK1","TYROBP","UBQLN2","VCP","C9orf72","CHCHD10","DCTN1","FUS","GBA","HNRNPA1","HTRA1","JPH3","SNCA","SNCB","TREM2"],"source":{"id":"PanelApp","version":"1.10"}},{"id":"5763f1d68f620350a22bccdc","name":"Familial dysautonomia","title":"Familial dysautonomia","genes":["AAAS","FAM134B","GMPPA","IKBKAP","KIF1A","NGF","NTRK1","PHOX2B","PRDM12","SCN11A","SCN9A","SPTLC1","SPTLC2","WNK1","PRNP","TTR","ATL1","ATL3","COQ2","DNMT1","DST","TECPR2"],"source":{"id":"PanelApp","version":"1.3"}},{"id":"58c805938f6203413360f1cb","name":"Primary Membranoproliferative Glomerulonephritis","title":"Primary Membranoproliferative Glomerulonephritis","genes":["CFH","CFHR1","CFHR2","CFHR5","CFI","C3","CD46","CFB","DGKE"],"source":{"id":"PanelApp","version":"0.12"}},{"id":"568e844522c1fc1c78b67156","name":"Familial cicatricial alopecia","title":"Familial cicatricial alopecia","genes":["FOXN1","ABCA12","ALOX12B","ALOXE3","C2","C5","CERS3","CLDN1","CYBB","CYP4F22","GJA1","GJB2","HLA-DRA","ITGA6","ITGB4","LIPN","MBTPS2","NIPAL4","PLEC","PNPLA1","PPARG","ST14","TGM1","TSPYL2"],"source":{"id":"PanelApp","version":"0.8"}},{"id":"57e3df7e8f62034b82c0d332","name":"Familial Neural Tube Defects","title":"Familial Neural Tube Defects","genes":["B9D1","B9D2","CC2D2A","CCL2","CDON","CEP290","DLL3","FOXH1","FUZ","GATA3","GDF3","GDF6","GLI2","HES7","HPE1","HYLS1","KCNJ10","KIF14","LFNG","MEOX1","MESP2","MKS1","MTHFD1","MTHFR","MTR","MTRR","NODAL","NPHP3","PIK3CA","PTCH1","PTK7","RPGRIP1L","SHROOM3","T","TBX6","TCTN2","TGIF1","TMEM216","TMEM231","TMEM5","TMEM67","VANGL1","VANGL2","ZIC2"],"source":{"id":"PanelApp","version":"1.0"}},{"id":"55a39e2d22c1fc6711b0c6b3","name":"Hypertrophic Cardiomyopathy","title":"Hypertrophic Cardiomyopathy","genes":["ACTC1","CSRP3","FHL1","GLA","LAMP2","MYBPC3","MYH6","MYH7","MYL2","MYL3","PLN","PRKAG2","SLC25A3","TNNC1","TNNI3","TNNT2","TPM1","TSFM","ACTN2","JPH2","MYLK2","MYPN","NEXN","ACADVL","ACTA1","AGL","ANKRD1","ATP5E","BRAF","CACNA1C","CALR3","CASQ2","CAV3","COA5","CRYAB","DES","FLNC","FOXRED1","FXN","GAA","GLB1","GUSB","HRAS","KCNQ1","KLF10","LDB3","LMNA","MAP2K1","MAP2K2","MRPL3","MYO6","MYOM1","MYOZ2","NRAS","PDLIM3","PTPN11","RAF1","SCO2","SHOC2","SLC25A4","SOS1","TCAP","TMEM70","TRIM63","TTN","TTR","VCL"],"source":{"id":"PanelApp","version":"1.15"}},{"id":"594a86b58f620375d2fbc08d","name":"Solid tumours","title":"Solid tumours","genes":["APC","ATM","BAP1","BMPR1A","BRCA1","BRCA2","CDK4","CDKN2A","FH","FLCN","MET","MLH1","MSH2","MSH6","MUTYH","PALB2","PMS2","POLD1","POLE","PTEN","RAD51C","RAD51D","SDHB","SMAD4","STK11","TP53","VHL"],"source":{"id":"PanelApp","version":"0.4"}},{"id":"55a3b19722c1fc6710839b80","name":"Long QT syndrome","title":"Long QT syndrome","genes":["ANK2","CACNA1C","KCNE1","KCNE2","KCNH2","KCNJ2","KCNJ5","KCNQ1","SCN5A","SNTA1","AKAP9","ALG10","CALM1","CALM2","CALM3","CAV3","KCNE3","NOS1AP","RYR2","SCN4B"],"source":{"id":"PanelApp","version":"1.3"}},{"id":"572c908e8f62036eed0a39c8","name":"Familial Pneumothorax","title":"Familial Pneumothorax","genes":["COL3A1","FBN1","FLCN","TGFB2","TGFB3","TGFBR1","TGFBR2","TSC1","TSC2","SMAD3","ALDH18A1","ATP6V0A2","ATP7A","EFEMP2","ELN","FBLN5","LTBP4","MTHFR","PYCR1","SERPINA1"],"source":{"id":"PanelApp","version":"1.1"}},{"id":"55b117c022c1fc7dd7ce411c","name":"Congenital muscular dystrophy","title":"Congenital muscular dystrophy","genes":["B3GALNT2","B4GAT1","CHKB","COL12A1","COL6A1","COL6A2","COL6A3","DAG1","DMD","DOLK","DPM2","FKRP","FKTN","GMPPB","INPP5K","ISPD","ITGA7","LAMA2","LARGE","LMNA","MICU1","POMGNT1","POMGNT2","POMK","POMT1","POMT2","RYR1","SEPN1","SYNE1","TMEM5","ACTA1","COL4A1","DPM1","DPM3","DYSF","TCAP","ANO5","COL4A2","DUX4","EMD","PABPN1","PLEC","SMCHD1","SYNE2","TMEM43"],"source":{"id":"PanelApp","version":"1.7"}},{"id":"57c5b45b8f62030d5014a949","name":"Neurofibromatosis Type 1","title":"Neurofibromatosis Type 1","genes":["BRAF","BRCA2","BRIP1","FANCA","FANCB","FANCC","FANCD2","FANCE","FANCF","FANCG","FANCI","FANCL","GNAS","MLH1","MSH2","MSH6","NF1","PALB2","PMS2","PTPN11","RAD51C","RAF1","SLX4","SPRED1","ERCC4","FANCM","MAP2K1","UBE2T"],"source":{"id":"PanelApp","version":"1.13"}},{"id":"56fa8eb88f62030f36e3026b","name":"Beckwith-Wiedemann syndrome (BWS) and other congenital overgrowth disorders","title":"Beckwith-Wiedemann syndrome (BWS) and other congenital overgrowth disorders","genes":["CDKN1C","EZH2","GPC3","NFIX","NSD1","OFD1","BRWD3","CHD8","DNMT3A","EED","H19","HERC1","HIST1H1E","IGF2","KCNQ1OT1","PIK3CA","PPP2R5D","PTEN"],"source":{"id":"PanelApp","version":"1.25"}},{"id":"553f94c2bb5a1616e5ed459c","name":"Congenital myaesthenia","title":"Congenital myaesthenia","genes":["AGRN","CHAT","CHRNA1","CHRNB1","CHRND","CHRNE","CHRNG","COL13A1","COLQ","DOK7","DPAGT1","GFPT1","GMPPB","LRP4","MUSK","PLEC","RAPSN","SCN4A","SLC18A3","SLC5A7","ALG2","MYO9A","ALG14","LAMB2","PREPL","SNAP25","SYT2","GRN"],"source":{"id":"PanelApp","version":"1.4"}},{"id":"573b204d8f62030defb98057","name":"Idiopathic hypogonadotropic hypogonadism","title":"Idiopathic hypogonadotropic hypogonadism","genes":["CHD7","CUL4B","FEZF1","FGF8","FGFR1","FSHB","GLI2","GNRH1","GNRHR","HAMP","HFE","IL17RD","KAL1","KISS1R","LHB","LHX4","NR0B1","NSMF","PROK2","PROKR2","PROP1","SLC29A3","SLC40A1","SOX10","SOX2","TAC3","TACR3","TFR2","WDR11","DCAF17","DUSP6","FGF17","FLRT3","HESX1","HFE2","HS6ST1","KISS1","LHCGR","LHX3","SEMA3A","SEMA3E","SEMA7A","SPRY4"],"source":{"id":"PanelApp","version":"1.13"}},{"id":"55a4d99022c1fc6710839b84","name":"Dilated Cardiomyopathy and conduction defects","title":"Dilated Cardiomyopathy and conduction defects","genes":["ABCC9","ACTC1","ACTN2","BAG3","CSRP3","DES","DMD","DSP","EYA4","FKTN","HAMP","HFE","HFE2","IDH2","LDB3","LMNA","MYBPC3","MYH6","MYH7","NEXN","PLN","RBM20","SCN5A","SGCD","TAZ","TCAP","TNNC1","TNNI3","TNNT2","TPM1","TTN","VCL","ANKRD1","CRYAB","GATAD1","MYPN","PSEN1","PSEN2","SCN1B","ACTA1","CTF1","DMPK","DNAJC19","DOLK","DSC2","DSG2","EMD","FHL2","ILK","JUP","LAMA4","LAMP2","MPO","MURC","NEBL","NKX2-5","NPPA","PDLIM3","PKP2","PRDM16","RYR2","SDHA","SGCB","SYNE1","SYNE2","TMPO","TTR","TXNRD2","XK"],"source":{"id":"PanelApp","version":"1.20"}},{"id":"592843a08f6203468490fa68","name":"Familial ovarian cancer","title":"Familial ovarian cancer","genes":["BRCA1","BRCA2","BRIP1","MLH1","MSH2","MSH6","RAD51C","RAD51D","PMS2","AR","ATM","BARD1","CDH1","CHEK2","EPCAM","ESR1","MUTYH","NBN","PALB2","PPM1D","PTEN","RAD54L","RRAS2","STK11","TP53","XRCC2"],"source":{"id":"PanelApp","version":"0.23"}},{"id":"553f94cabb5a1616e5ed45a2","name":"Non-CF bronchiectasis","title":"Non-CF bronchiectasis","genes":["CFTR","PIK3CD","SCNN1A","SCNN1B","SCNN1G","CCDC39","CCDC40","DNAAF1","DNAAF2","DNAH11","DNAH5","DNAI1","DNAI2","DNAL1","NME8","RSPH4A","RSPH9"],"source":{"id":"PanelApp","version":"1.2"}},{"id":"56310b9a22c1fc58285b282c","name":"Epidermolysis bullosa","title":"Epidermolysis bullosa","genes":["COL17A1","COL7A1","DSP","DST","EXPH5","FERMT1","ITGA3","ITGA6","ITGB4","JUP","KRT14","KRT5","LAMA3","LAMB3","LAMC2","PKP1","PLEC","TGM5","CD151","MMP1","KLHL24"],"source":{"id":"PanelApp","version":"1.1"}},{"id":"55b7a65322c1fc05fc7a1869","name":"Limb girdle muscular dystrophy","title":"Limb girdle muscular dystrophy","genes":["ANO5","CAPN3","CAV3","COL6A1","COL6A2","COL6A3","DMD","DNAJB6","DYSF","EMD","FHL1","FKRP","FKTN","FLNC","GAA","GMPPB","LMNA","MYOT","PLEC","POMGNT1","POMT1","POMT2","SGCA","SGCB","SGCD","SGCG","SYNE1","TCAP","TRIM32","VCP","BVES","DAG1","DES","DUX4","GNE","ISPD","LIMS2","POMGNT2","POMK","SMCHD1","SYNE2","TRAPPC11","TTN"],"source":{"id":"PanelApp","version":"1.3"}},{"id":"583c128f8f62036f70db8d29","name":"Familial non syndromic congenital heart disease","title":"Familial non syndromic congenital heart disease","genes":["ELN","FLNA","GATA4","GATA6","GDF1","JAG1","NKX2-5","NR2F2","TBX5","ABL1","ACTC1","GATA5","MYH6","NOTCH1","TBX20","ALDH1A2","CFC1","CITED2","CRELD1","CRKL","DISP1","FOXH1","FOXL1","GJA1","HAND2","IRX4","MED13L","MYOM2","NFATC1","NKX2-6","PLXND1","SEMA3D","SMAD6","TAB2","TBX1","TLL1","ZFPM2"],"source":{"id":"PanelApp","version":"1.8"}},{"id":"561518be22c1fc212900fb84","name":"Familial hypercholesterolaemia","title":"Familial hypercholesterolaemia","genes":["ABCG5","ABCG8","APOB","LDLR","LDLRAP1","LIPA","PCSK9","ABCA1","ACE","ANGPTL3","APOA1","APOA2","APOA5","APOC2","APOC3","APOE","CELSR2","CETP","CYP27A1","EPHX2","ESR1","F13A1","F7","GCLC","GCLM","GHR","GPD1","GPIHBP1","HFE","ITGB3","LCAT","LIPC","LMF1","LPL","MTTP","MYLIP","NYNRIN","SAR1B","SCARB1","SLC22A1","SREBF2","ST3GAL4","STAP1"],"source":{"id":"PanelApp","version":"1.10"}},{"id":"568f871422c1fc1c79ca176d","name":"Cerebellar hypoplasia","title":"Cerebellar hypoplasia","genes":["ADGRG1","AMPD2","B3GALNT2","CASK","CHMP1A","CLP1","CWF19L1","DKC1","EXOSC3","FKRP","FKTN","GMPPB","ISPD","ITPR1","KCNC3","LARGE","OPHN1","POMGNT1","POMGNT2","POMT1","POMT2","PTF1A","RARS2","RELN","SEPSECS","SNX14","SPTBN2","TINF2","TMEM5","TOE1","TSEN2","TSEN34","TSEN54","TUBA1A","TUBA8","TUBB2B","TUBB3","VLDLR","VRK1","WDR81","ATP8A2","B4GAT1","CA8","DAG1","PHGDH","TERT","VPS53","BRF1","CDK5","EXOSC8","FRMD4A","PCLO","PI4KA","PMPCA","POMK","STUB1","TSEN15","TUBB"],"source":{"id":"PanelApp","version":"1.2"}},{"id":"5811a8738f620323c5766a2b","name":"Cockayne and Xeroderma Pigmentosum-like disorders","title":"Cockayne and Xeroderma Pigmentosum-like disorders","genes":["DDB2","ERCC1","ERCC2","ERCC3","ERCC4","ERCC5","ERCC6","ERCC8","GTF2H5","MPLKIP","POLH","XPA","XPC","GTF2E2","DDB1","RNF113A"],"source":{"id":"PanelApp","version":"1.2"}},{"id":"55af539322c1fc78a9ef5052","name":"Paediatric congenital malformation-dysmorphism-tumour syndromes","title":"Paediatric congenital malformation-dysmorphism-tumour syndromes","genes":["ALK","APC","ATM","BLM","BRCA2","BRIP1","BUB1B","CBL","CDC73","CDKN1C","DICER1","DIS3L2","ERCC4","EZH2","FANCA","FANCB","FANCC","FANCD2","FANCE","FANCF","FANCG","FANCI","FANCL","GPC3","HRAS","MLH1","MSH2","MSH6","NBN","NF1","NF2","NSD1","PALB2","PDGFRB","PHOX2B","PMS2","PTCH1","PTEN","PTPN11","RAD51C","RB1","RECQL4","REST","RET","SLX4","SMARCA4","SMARCB1","TP53","TRIM37","TSC1","TSC2","WT1","AKT1","FANCM","H19","IGF2","KCNQ1OT1","KLLN","NFIX","NOTCH3","PAX6","PIK3CA","SDHB","SDHD"],"source":{"id":"PanelApp","version":"1.14"}},{"id":"55a62bba22c1fc6710839b95","name":"SCID","title":"SCID","genes":["ADA","AK2","CD3D","CD3E","DCLRE1C","IL2RG","IL7R","JAK3","LIG4","NHEJ1","PNP","PRKDC","PTPRC","RAG1","RAG2","TCN2","ZAP70","FOXN1","CD247","ORAI1","RAC2","STAT5B","STIM1","TBX1"],"source":{"id":"PanelApp","version":"1.1"}},{"id":"553f9696bb5a1616e5ed45d1","name":"CAKUT","title":"CAKUT","genes":["ACE","ACTG2","AGT","AGTR1","CHD7","DSTYK","EYA1","FRAS1","FREM1","FREM2","GATA3","GLI3","GRIP1","HNF1B","HPSE2","ITGA8","KAL1","LRIG2","NPHP3","PAX2","REN","RET","RPGRIP1L","RRM2B","SALL1","SIX5","TBX18","TRAP1","VPS33B","ACTA2","BICC1","BMP4","BSND","CHRM3","COX10","DLG3","FOXC1","FOXC2","GDNF","GREM1","HCN3","KIT","MUC1","MYH11","NEK8","OCRL","ROBO2","SHH","SIX1","SLIT2","SMARCA4","SOX17","SPRY1","TNXB","TSHZ3","UMOD","UPK2","UPK3A","VIPAS39"],"source":{"id":"PanelApp","version":"1.2"}},{"id":"57b6f5058f6203767a308772","name":"Peroxisomal disorders","title":"Peroxisomal disorders","genes":["ABCD1","ACOX1","AGK","AGPS","AGXT","AMACR","ARSE","CAT","DNM1L","DYM","EBP","FAR1","GNPAT","GRHPR","HOGA1","HSD17B4","NSDHL","PEX1","PEX10","PEX11B","PEX12","PEX13","PEX14","PEX16","PEX19","PEX2","PEX26","PEX3","PEX5","PEX6","PEX7","PHYH","SCP2","TRIM37","ABCD3","CBS","IDH1"],"source":{"id":"PanelApp","version":"1.5"}},{"id":"57f4dbd18f62036d37cfe4e4","name":"Deafness and congenital structural abnormalities","title":"Deafness and congenital structural abnormalities","genes":["BMP4","CDC6","CDT1","CHD7","DHODH","EDNRA","EFTUD2","EIF4A3","EYA1","FGF10","FGF3","FGFR2","FGFR3","FRAS1","FREM2","GNAI3","GRIP1","GSC","HMX1","HOXA2","HSPA9","KDM6A","KMT2D","OFD1","ORC1","ORC4","ORC6","OTX2","PLCB4","POLR1A","POLR1C","POLR1D","SALL1","SALL4","SF3B4","SIX1","SLC26A4","SOX10","TCOF1","TFAP2A","GDF6","RPS28","SIX5","BMP5","DWS","EVC","FOXI1","FOXI3","LEMD3","NKX3-2","PORCN","TWSG1","WIF1"],"source":{"id":"PanelApp","version":"1.1"}},{"id":"55a3921f22c1fc64c3e95273","name":"Dilated Cardiomyopathy (DCM)","title":"Dilated Cardiomyopathy (DCM)","genes":["ABCC9","ACTC1","ACTN2","BAG3","CSRP3","DES","DMD","DSP","EYA4","FKTN","LDB3","LMNA","MYBPC3","MYH6","MYH7","NEXN","PLN","RAB3GAP2","RBM20","SCN5A","SGCD","SLC40A1","TAZ","TCAP","TFR2","TNNC1","TNNI3","TNNT2","TPM1","TTN","VCL","ANKRD1","CRYAB","GATAD1","MYPN","PSEN1","PSEN2","ACTA1","CTF1","DMPK","DNAJC19","DOLK","DSC2","DSG2","EMD","FHL1","FHL2","FLNC","GLA","HFE","ILK","JUP","LAMA4","LAMP2","MPO","MURC","MYL2","MYL3","NEBL","NPPA","PDLIM3","PKP2","PRDM16","PRKAG2","RYR2","SDHA","SGCB","SYNE1","SYNE2","TMEM43","TMPO","TTR","TXNRD2","XK"],"source":{"id":"PanelApp","version":"1.29"}},{"id":"55d1e3f522c1fc237fbd46e9","name":"Multi-organ autoimmune diabetes","title":"Multi-organ autoimmune diabetes","genes":["AIRE","FOXP3","LRBA","STAT3","IL2RA","ABCC8","AKT2","AQP2","AVP","AVPR2","BLK","CEL","EIF2AK3","ENPP1","GATA4","GATA6","GCK","GLIS3","HNF1A","HNF1B","HNF4A","IER3IP1","INS","INSR","KCNJ11","KLF11","LIPC","LMNA","MNX1","MT-TL1","NEUROD1","NEUROG3","NKX2-2","PAX4","PDX1","PPARG","PTF1A","RFX6","SLC19A2","SLC2A2","WFS1","ZFP57"],"source":{"id":"PanelApp","version":"1.3"}},{"id":"55b605f722c1fc05fd2345af","name":"Craniosynostosis syndromes phenotypes","title":"Craniosynostosis syndromes phenotypes","genes":["ALPL","ASXL1","CDC45","COLEC11","CTSK","EFNB1","ERF","FGFR1","FGFR2","FGFR3","FLNA","GLI3","GNPTAB","IDS","IDUA","IHH","IL11RA","KAT6A","KMT2D","KRAS","MEGF8","MSX2","PHEX","POR","RAB23","RECQL4","RUNX2","SKI","STAT3","TCF12","TGFBR1","TGFBR2","TWIST1","WDR35","ZEB2","ZIC1","ADAMTSL4","ALX4","ATR","CYP26B1","EFNA4","ESCO2","FAM20C","FBN1","FREM1","GNAS","GPC3","HUWE1","IFT122","IRX5","JAG1","LMX1B","LRP5","SCARF2","SH3PXD2B","SPECC1L","TMCO1","SMAD6","SMO"],"source":{"id":"PanelApp","version":"1.9"}},{"id":"58c7f3c78f620328d77ce70e","name":"Amelogenesis Imperfecta","title":"Amelogenesis Imperfecta","genes":["DLX3","ENAM","MMP20","WDR72","AMELX","C4orf26","FAM20A","FAM83H","KLK4","LAMB3","ACPT","AMBN","AMTN","CLDN16","CLDN19","CNNM4","COL17A1","FAM20C","GPR68","ITGB4","ITGB6","KCNJ1","LAMA3","LAMC2","LTBP3","ORAI1","PEX1","PEX6","ROGDI","SLC13A5","SLC24A4","SMARCD2","STIM1","TMEM165","TP63","TUFT1"],"source":{"id":"PanelApp","version":"0.42"}},{"id":"588728f38f62030cf7152165","name":"Ehlers-Danlos syndromes","title":"Ehlers-Danlos syndromes","genes":["ADAMTS2","ALDH18A1","ATP6V0A2","ATP7A","B3GALT6","B4GALT7","BGN","C1R","C1S","CBS","CHST14","COL11A1","COL11A2","COL12A1","COL1A1","COL1A2","COL2A1","COL3A1","COL5A1","COL5A2","COL6A1","COL6A2","COL6A3","COL9A1","COL9A2","COL9A3","EFEMP2","ELN","FBLN5","FBN1","FBN2","FKBP14","FLCN","GORAB","LOX","LTBP4","PLOD1","PRDM5","PYCR1","RIN2","SKI","SLC39A13","SMAD3","SMAD4","TGFB2","TGFB3","TGFBR1","TGFBR2","TNXB","ZNF469","DSE","ABCC6","ACTA2","ACVR1","ATP6V1A","COX7B","FLNA","GGCX","MYH11","MYLK","NOTCH1","PLOD3","SLC2A10","TPSAB1","MED12","PKD2","SERPINA1","TSC1","TSC2"],"source":{"id":"PanelApp","version":"0.398"}},{"id":"578e26918f62031b478bdb68","name":"Neonatal and familial gastrointestinal neuromuscular disorders","title":"Neonatal and familial gastrointestinal neuromuscular disorders","genes":["ACTG2","ATRX","DES","DMD","FLNA","IDS","POLG","RET","RRM2B","SAMD9","SCN11A","SOX10","TMEM70","TYMP","GDNF","L1CAM","PTEN","COG7","DMPK","EVC2","MT-TK","PTRF","SGOL1","SMO","TTC7A"],"source":{"id":"PanelApp","version":"1.3"}},{"id":"55b62bc422c1fc05fc7a1857","name":"Familial breast cancer","title":"Familial breast cancer","genes":["ATM","BRCA1","BRCA2","CDH1","PALB2","PTEN","RAD51C","RAD51D","STK11","TP53","CHEK2","AR","BARD1","BRIP1","EPCAM","ESR1","MLH1","MSH2","MSH6","MUTYH","NBN","PMS2","PPM1D","RAD54L","RRAS2","XRCC2"],"source":{"id":"PanelApp","version":"1.7"}},{"id":"553f94b6bb5a1616e5ed459a","name":"Congenital myopathy","title":"Congenital myopathy","genes":["ACTA1","BIN1","CACNA1S","CFL2","COL12A1","COL6A1","COL6A2","COL6A3","DNM2","EPG5","FKBP14","KBTBD13","KLHL40","KLHL41","LMNA","LMOD3","MAP3K20*","MEGF10","MICU1","MTM1","MYH2","MYH3","MYH7","MYH8","MYO18B","NEB","ORAI1","RYR1","SCN4A","SEPN1","SLC25A4","SPEG","STAC3","STIM1","TNNT1","TPM2","TPM3","TTN","VMA21","CASQ1","CCDC78","CNTN1","HACD1","KY","LAMP2","MTMR14","MYBPC3","MYL1","MYPN","NEFL","VPS33B","ATP2A1","BAG3","CAV3","CHCHD10","COL9A3","CPT2","CRYAB","DES","DMPK","DNAJB6","DYSF","ECEL1","FAM111B","FLNC","GFER","GNE","HNRNPA1","HRAS","ISCU","LDB3","MATR3","MT-TL1","MYBPC1","MYF6","MYH14","MYOT","PIEZO2","PNPLA2","PUS1","RBCK1","SLC25A42","STIM2","TIA1","TNNI2","TNNT3","VCP","YARS2"],"source":{"id":"PanelApp","version":"1.41"}},{"id":"591444928f620348d4b20c16","name":"GI tract","title":"GI tract","genes":["APC","BMPR1A","MLH1","MSH2","MSH6","MUTYH","NTHL1","PMS2","POLD1","POLE","PTEN","SMAD4","STK11","CDH1","ADM","BRCA1","BRCA2","CDKN2A","CHEK2","ENG","EPCAM","FOXO3","GREM1","MSH3","PTPN12","SLC26A3","SMAD9","SRC","TP53"],"source":{"id":"PanelApp","version":"1.2"}},{"id":"55b63d7f22c1fc05fc7a185b","name":"Rhabdomyolysis and metabolic muscle disorders","title":"Rhabdomyolysis and metabolic muscle disorders","genes":["ACAD9","ACADM","ACADVL","AGL","ALDOA","ANO5","CACNA1S","CAV3","CPT2","DMD","DYSF","ENO3","ETFA","ETFB","ETFDH","FKRP","FKTN","GAA","GBE1","GYG1","GYS1","HADHA","HADHB","ISCU","LAMP2","LDHA","LPIN1","PFKM","PGAM2","PGK1","PGM1","PHKA1","PHKB","POLG","POLG2","PRKAG2","PYGM","RBCK1","RRM2B","RYR1","SIL1","SLC22A5","SUCLA2","TK2","TSEN54","TSFM","TYMP","AMPD1","CPT1B","CYP2C8","FBP2","OBSCN","PHKG1","SLC22A12","SLC2A9","POLG1*"],"source":{"id":"PanelApp","version":"1.4"}},{"id":"575ed2398f62034208b69ee1","name":"Early onset familial premature ovarian insufficiency","title":"Early onset familial premature ovarian insufficiency","genes":["AARS2","ATM","BMP15","C10orf2","CLPP","CYP17A1","CYP19A1","EIF2B5","FOXL2","FSHB","FSHR","GALT","HFM1","HSD17B4","LARS2","MCM8","MCM9","NBN","NOBOX","NR5A1","PMM2","POLG","RECQL4","SOHLH1","STAG3","BMPR1B-AS1","DACH2","DIAPH2","EIF2B4","EIF4ENIF1","FIGLA","GDF9","HARS2","LMNA","NANOS3","NOG","NUP107","PGRMC1","POF1B","POU5F1","PSMC3IP","RCBTB1","SGOL2","SOHLH2","SYCE1","BLM","EIF2B2","FANCA","FANCC","FANCG","FMR1","FOXO4","WRN"],"source":{"id":"PanelApp","version":"1.0"}},{"id":"5819a24f8f6203341de99c89","name":"Cerebrovascular disorders","title":"Cerebrovascular disorders","genes":["ACTA2","ACVRL1","ATR","CCM2","CECR1","CEP152","COL3A1","ELN","ENG","FLVCR2","GUCY1A3","HBB","JAG1","KRIT1","NF1","NOTCH3","PCNT","PDCD10","PKD1","PKD2","RASA1","SAMHD1","SLC2A10","SMAD3","SMAD4","TGFB2","TGFBR1","TGFBR2","THSD1","GDF2","ABCC6","ACE","ADGRG1","ANIB1","ANTXR1","ARX","ATP7A","BRCC3","CENPJ","CEP63","COL4A1","COL4A2","CRB1","DCX","DNA2","FBN1","FLT4","FOXF1","GLA","GLMN","GNAQ","HLA-B","HLA-DQB1","HLA-DRB1","HTRA1","IL6","KDR","LAMB1","LAMC3","LARGE","MEF2C","MYMY1","MYMY3","NDE1","NIN","OCLN","OPHN1","PAFAH1B1","PIK3CA","PIK3R2","POMGNT1","POMT1","POMT2","PTEN","RBBP8","RELN","RNF213","RTTN","SMARCAL1","SRPX2","STAMBP","TEK","TMEM5","TRAIP","TUBA1A","TUBA8","TUBB","TUBB2A","TUBB2B","TUBB3","TUBG1","VLDLR","WDR62"],"source":{"id":"PanelApp","version":"1.27"}},{"id":"568f860222c1fc1c79ca1769","name":"Primary Microcephaly - Microcephalic Dwarfism Spectrum","title":"Primary Microcephaly - Microcephalic Dwarfism Spectrum","genes":["ASPM","ATR","ATRX","BLM","BRCA2","BRIP1","CASC5","CASK","CDK5RAP2","CDT1","CENPF","CENPJ","CEP135","CEP152","CEP63","CIT","CKAP2L","CREBBP","CTNNB1","DDX11","DHCR7","DIAPH1","DPP6","DYRK1A","EFTUD2","ERCC4","ERCC6","ERCC8","FANCA","FANCB","FANCC","FANCD2","FANCE","FANCF","FANCG","FANCI","FANCL","GMNN","HDAC8","IER3IP1","IGF1","IGF1R","KIAA1279","KIF11","LARP7","LIG4","MCPH1","MFSD2A","MSMO1","MYCN","NBN","NDE1","NHEJ1","NIPBL","ORC1","ORC4","ORC6","PALB2","PCNT","PDHA1","PLK4","PNKP","POC1A","PQBP1","PRUNE","RAD21","RAD51C","RBBP8","RNU4ATAC","RTTN","SLC25A19","SLC9A6","SLX4","SMC1A","SMC3","STAMBP","STIL","TRAIP","TRMT10A","TUBGCP4","TUBGCP6","WDR62","WDR73","XRCC4","ZEB2","CRIPT","QARS","ZNF335","AGMO","ANKLE2","ATRIP","CDC6","CDK6","CENPE","DNA2","ERCC5","FANCM","NIN","NSMCE2","PHC1","PPP1R15B","SASS6","TUBGCP3","WDR4"],"source":{"id":"PanelApp","version":"1.6"}},{"id":"5548cc07bb5a16250cc22015","name":"Hyperammonaemia","title":"Hyperammonaemia","genes":["ACADM","ACADVL","ALDH18A1","ARG1","ASL","ASS1","AUH","BCKDHA","BCKDHB","CA5A","CPS1","CPT1A","CPT2","DBT","ETFA","ETFB","ETFDH","GLUD1","HADHA","HADHB","HLCS","HMGCL","IVD","MLYCD","MMAA","MMAB","MUT","NAGS","OAT","OTC","PC","PCCA","PCCB","POLG","PYGM","SLC22A5","SLC25A13","SLC25A15","SLC25A20","SLC7A7","TMEM70","ACAD9","ACADL","ACADS","ACSF3","AGA","AGL","ARSA","ARSB","ATPAF2","CD320","CLN3","CLN5","CLN6","CLN8","CYP27A1","DLD","ENO3","G6PC","GAA","GALC","GALNS","GBA","GBE1","GLA","GLB1","GM2A","GNPTAB","GYS1","GYS2","HGSNAT","HMGCS2","HYAL1","IDS","IDUA","LIPA","LMBRD1","LPIN1","MAN2B1","MANBA","MCCC1","MCCC2","MCEE","MCOLN1","MFSD8","MMACHC","MTR","MTRR","NAGA","NAGLU","NEU1","NPC1","NPC2","OPA3","PFKM","PPT1","PYGL","SERAC1","SGSH","SLC17A5","SLC37A4","SMPD1","SUCLG1","SUMF1","TAZ","TPP1"],"source":{"id":"PanelApp","version":"1.2"}},{"id":"5669854622c1fc3d5bbee17a","name":"Undiagnosed neurocutaneous disorders","title":"Undiagnosed neurocutaneous disorders","genes":["BRAF","BRCA2","BRIP1","CBL","FANCA","FANCB","FANCC","FANCD2","FANCE","FANCF","FANCG","FANCI","FANCL","KIT","KRAS","MAP2K1","NF1","NF2","NRAS","PALB2","PAX3","PTCH1","PTEN","PTPN11","RAD51C","RAF1","SHOC2","SLC2A2","SLX4","SNAI2","SOS1","TSC1","TSC2","EDN3","EDNRB","ERCC4","IKBKG","MITF","MLH1","MSH2","MSH6","PMS2","SOX10","ABCC6","ACD","ACVRL1","AKT1","ALDH18A1","ALDH3A2","AP1S1","ATM","ATP6V0A2","ATP7A","ATXN2","BLM","BTD","CCND1","CYP27A1","DDB2","DKC1","DSTYK","ECM1","EHHADH","ELOVL4","ENG","ERCC2","ERCC3","ERCC5","ERCC8","FANCM","FGFR1","FGFR3","GDF2","GJB2","GLA","GNAQ","HCCS","HLCS","HRAS","IDS","IDUA","KLLN","KRIT1","LYST","LZTR1","MAP2K2","MBTPS2","MEF2C","MPLKIP","MRE11A","MSMO1","MYO5A","NHP2","NLRP3","NOD2","NOP10","PAH","PARN","PCNA","PEX7","PHYH","PIGL","PIK3CA","POLH","PORCN","PTCH2","RASA1","RECQL4","RIT1","RTEL1","SDHB","SDHD","SLC34A1","SLC6A19","SMAD4","SMARCB1","SNAP29","SOS2","SPRED1","ST3GAL5","STAMBP","STS","SUFU","SUMF1","TAT","TERC","TERT","TINF2","TREX1","TYR","VHL","VPS33B","WRAP53","XPA","XPC","XYLT1","XYLT2"],"source":{"id":"PanelApp","version":"0.41"}},{"id":"55d30b0322c1fc2ff2a5bf7b","name":"Amyotrophic lateral sclerosis/motor neuron disease","title":"Amyotrophic lateral sclerosis/motor neuron disease","genes":["ALS2","ANG","AR","DCTN1","FIG4","FUS","HNRNPA1","OPTN","PFN1","SETX","SIGMAR1","SLC52A2","SLC52A3","SOD1","TARDBP","TBK1","UBQLN2","VAPB","VCP","NEFH","ATXN2","C9orf72","CHCHD10","CHMP2B","ERBB4","GRN","HFE","SLC52A1","UNC13A","VEGFA"],"source":{"id":"PanelApp","version":"1.7"}},{"id":"562f5e7822c1fc582756e3bb","name":"Palmoplantar keratoderma and erythrokeratodermas","title":"Palmoplantar keratoderma and erythrokeratodermas","genes":["AAGAB","ALOX12B","ALOXE3","AQP5","CARD14","CAST","DSC2","DSG1","DSP","ENPP1","GJA1","GJB2","GJB3","GJB4","GJB6","JUP","KRT1","KRT10","KRT14","KRT16","KRT17","KRT6A","KRT6B","KRT6C","KRT9","RHBDF2","RSPO1","SERPINB7","SLURP1","SNAP29","TAT","TRPV3","SMARCAD1","DES","DSG2","FAM83G","KANK2","LIPH","MT-TS1","POMP","SASH1"],"source":{"id":"PanelApp","version":"1.4"}},{"id":"5763f4868f620350a199604f","name":"Fetal hydrops","title":"Fetal hydrops","genes":["ASAH1","BRAF","CBL","CCBE1","CTSA","FLT4","FOXC2","FOXP3","GALNS","GBA","GBE1","GLA","GLB1","GNPTAB","GUSB","HBA1","HBA2","HRAS","KLF1","KRAS","LBR","LIPA","LZTR1","MAP2K1","MAP2K2","NEU1","NPC1","NRAS","PEX1","PEX10","PEX11B","PEX12","PEX13","PEX14","PEX16","PEX19","PEX2","PEX26","PEX3","PEX5","PEX6","PEX7","PIEZO1","PMM2","PTPN11","RAF1","RIT1","SHOC2","SLC17A5","SMPD1","SOS1","SOS2","TALDO1","IDUA","AHCY","ALG1","DHCR7","DMPK","EBP","FH","GLE1","HADHA","HBZ","LARS2","SUMF1","UROS"],"source":{"id":"PanelApp","version":"1.9"}},{"id":"553f9744bb5a1616e5ed45e8","name":"IUGR and IGF abnormalities","title":"IUGR and IGF abnormalities","genes":["ANKRD11","BLM","BRAF","CBL","CCDC8","CDC6","CDKN1C","CDT1","CENPJ","CHD7","CREBBP","CRIPT","CUL7","DHCR7","EP300","ERCC6","ERCC8","FANCA","FANCB","FANCC","FANCD2","FANCE","FANCF","FANCG","FANCI","FANCL","FGD1","FGF8","FGFR1","GH1","GHR","GHRHR","GLI2","GLI3","HDAC8","HESX1","HRAS","IGF1","IGF1R","IGFALS","INSR","KDM6A","KMT2D","KRAS","LHX3","LHX4","LIG4","MAP2K1","MAP2K2","NBN","NIPBL","NRAS","OBSL1","ORC1","ORC4","ORC6","OTX2","PAPPA2","PCNT","PIK3R1","PITX2","PNPLA6","POU1F1","PROKR2","PROP1","PTPN11","RAD21","RAF1","RBBP8","RIT1","RNU4ATAC","ROR2","RPS6KA3","SAMD9","SHOC2","SHOX","SMC1A","SMC3","SOS1","SOX2","SOX3","SRCAP","STAT5B","TBCE","TRIM37","WRN","XRCC4","ZFP57","ACAN","ATRIP","ATRX","BTK","DNA2","DOK7","EPHX1","FANCM","GHSR","GPR161","H19","IFT172","IGF2","LIG1","RAPSN","RNPC3","SHOX2","SMARCAL1","THRB"],"source":{"id":"PanelApp","version":"1.7"}},{"id":"55ad019f22c1fc7042059038","name":"Hereditary spastic paraplegia","title":"Hereditary spastic paraplegia","genes":["ADAR","AFG3L2","AIMP1","ALDH18A1","ALS2","AP4B1","AP4E1","AP4M1","AP4S1","ATL1","B4GALNT1","BSCL2","C12orf65","C19orf12","CYP2U1","CYP7B1","DDHD1","DDHD2","FA2H","GBA2","HSPD1","KIAA0196","KIF1A","KIF5A","L1CAM","NIPA1","PLP1","PNPLA6","REEP1","RTN2","SACS","SLC16A2","SPAST","SPG11","SPG20","SPG21","SPG7","TUBB4A","WDR45B","ZFYVE26","AMPD2","AP5Z1","ARL6IP1","ARSI","CCT5","DSTYK","ENTPD1","ERLIN2","GAD1","GJC2","KIF1C","MARS","MARS2","MTPAP","NT5C2","PGAP1","PSEN1","SLC33A1","SPG14","SPG16","SPG19","SPG23","SPG24","SPG25","SPG27","SPG29","SPG32","SPG34","SPG36","SPG37","SPG38","SPG41","SPG9","TECPR2","TFG","USP8","VAMP1","VPS37A","WDR48","ZEB2","ZFYVE27"],"source":{"id":"PanelApp","version":"1.13"}},{"id":"58078e6e8f62030e233a8157","name":"Parkinson Disease and Complex Parkinsonism","title":"Parkinson Disease and Complex Parkinsonism","genes":["ATP13A2","ATP1A3","C19orf12","CSF1R","DCTN1","DNAJC6","FBXO7","FTL","GCH1","GRN","LRRK2","MAPT","PANK2","PARK2","PARK7","PINK1","PLA2G6","PRKRA","RAB39B","SLC30A10","SLC39A14","SLC6A3","SNCA","SPG11","SPR","SYNJ1","TH","TUBB4A","VPS13A","VPS35","WDR45","CHCHD2","GBA","TAF1","ANO3","ATXN2","ATXN3","C9orf72","EIF4G1","GIGYF2","GNAL","HTRA2","HTT","IPPK","JPH3","NR4A2","SGCE","SLC41A1","SNCAIP","TBP","THAP1","TOR1A","UCHL1","C9ORF72*"],"source":{"id":"PanelApp","version":"1.5"}},{"id":"55a9238422c1fc6711b0c6c3","name":"Diabetes with additional phenotypes suggestive of a monogenic aetiology","title":"Diabetes with additional phenotypes suggestive of a monogenic aetiology","genes":["ABCC8","AGPAT2","ALMS1","BSCL2","CISD2","EIF2AK3","FOXP3","GATA4","GATA6","GCK","GLIS3","HAMP","HFE","HFE2","HNF1A","HNF1B","HNF4A","IER3IP1","INS","INSR","KCNJ11","LMNA","LRBA","MNX1","MT-TL1","NEUROD1","NEUROG3","NKX2-2","PDX1","PIK3R1","PLIN1","POLD1","PPARG","PTF1A","RFX6","SLC19A2","SLC29A3","SLC2A2","SLC40A1","STAT3","TFR2","TRMT10A","WFS1","ZFP57","BLK","CEL","DCAF17","FOXC2","IL2RA","KLF11","PAX4","PCBD1","STAT1","ZBTB20","ACE","AQP2","AVP","AVPR2","ENPP1","IL1RN","LIPC","SPINK1","UGT1A1"],"source":{"id":"PanelApp","version":"1.46"}},{"id":"5554c896bb5a161bf644a3cf","name":"Ketotic hypoglycaemia","title":"Ketotic hypoglycaemia","genes":["ACAT1","AGL","ALDOA","ALDOB","BTD","FBP1","G6PC","GBE1","GYS2","HLCS","IVD","LDHA","MCEE","MUT","OXCT1","PC","PCCA","PCCB","PGM1","PHKA2","PHKB","PHKG2","PYGL","SLC16A1","SLC2A2","SLC37A4","ABCC8","BAAT","ENO3","EPM2A","FBP2","GAA","GYG1","GYG2","GYS1","LAMP2","NHLRC1","PFKL","PFKM","PGAM2","PGK1","PRKAG2","PYGM","SLC27A5"],"source":{"id":"PanelApp","version":"1.1"}},{"id":"56ba026c22c1fc5025762b50","name":"Infantile enterocolitis & monogenic inflammatory bowel disease","title":"Infantile enterocolitis & monogenic inflammatory bowel disease","genes":["ADA","AICDA","BTK","CD3G","CD40LG","COL7A1","CTLA4","CYBA","CYBB","DCLRE1C","DOCK8","EPCAM","FERMT1","FOXP3","G6PC3","GUCY2C","HPS1","HPS4","HPS6","ICOS","IKBKG","IL10RA","IL10RB","IL2RA","IL2RG","ITGB2","LIG4","LRBA","MEFV","MVK","NCF1","NCF2","PIK3CD","PTEN","RAG1","RAG2","RTEL1","SAMD9","SH2D1A","SKIV2L","SLC37A4","STAT1","STAT3","STXBP2","TGFBR1","TGFBR2","TTC37","TTC7A","WAS","XIAP","ADAM17","DKC1","IL10","IL21","NPC1","PIK3R1","PLCG2","ZAP70","MASP2","NCF4","RIPK2","OTULIN"],"source":{"id":"PanelApp","version":"1.9"}},{"id":"5763f35c8f620350a22bccdf","name":"Hydrocephalus","title":"Hydrocephalus","genes":["AKT3","AP1S2","ARSB","B3GALNT2","B3GALTL","BUB1B","CCDC88C","CCND2","CENPF","CEP83","COL4A1","CRB2","DAG1","DENND5A","DHCR24","ERF","FAM20C","FANCB","FGFR1","FGFR2","FGFR3","FKRP","FKTN","FLVCR2","FMR1","GFAP","GLI3","GPSM2","GUSB","HYLS1","IDS","ISPD","KIAA0196","KIAA0586","L1CAM","LAMB1","LARGE","MAN2B1","NF1","NSD1","OSTM1","PIK3CA","PIK3R2","PLG","POMGNT1","POMGNT2","POMK","POMT1","POMT2","PPP2R5D","PTCH1","PTEN","RNF125","RPS6KA3","SKI","SNX10","SUFU","SUMF1","TCF12","TMEM5","TWIST1","ZBTB20","ZIC2","ZIC3","ARX","B3GNT2","CLIC2","EBP","EML1","FLNA","HDAC6","ICK","KIF7","MPDZ","MTM1","P4HB","PTCH2","SEC24D","TBC1D7","WNT3","GMPPB","MMACHC","NANS","NOTCH2","NRAS","OFD1","RNASEH2A","TBX15","TMEM216","TTR"],"source":{"id":"PanelApp","version":"1.2"}},{"id":"58c7f5008f620328d77ce70f","name":"Familial Hirschsprung Disease","title":"Familial Hirschsprung Disease","genes":["PHOX2B","RET","ZEB2","EDN3","EDNRB","GDNF","SOX10","ABCC9","ARID1B","ARVCF","CELSR3","COMT","CREBBP","DENND3","DHCR7","DLL3","DNMT3B","DSCAM","ECE1","FZD3","GABRG2","GAL","GAP43","GFRA1","GHRL","IKBKAP","IL11","INMT","KIAA1279","L1CAM","MAPK10","MBTPS2","MED12","MIR146A","MIR369","NCLN","NKX2-1","NRG1","NRG3","NRSN1","NRTN","NTRK3","NUP98","PIGV","PSPN","PTCH1","RELN","RMRP","RORA","SAMD9","SEMA3A","SEMA3C","SEMA3D","SLC6A20","SOX2","TBATA","TCF4","TUBA1A","VAMP5","VCL","WNT3A"],"source":{"id":"PanelApp","version":"0.60"}},{"id":"5763f32a8f620350a22bccde","name":"Inherited bleeding disorders","title":"Inherited bleeding disorders","genes":["ACTN1","ADAMTS13","ANKRD26","ANO6","AP3B1","BLOC1S3","BLOC1S6","CHST14","CYCS","DIAPH1","DTNBP1","ETV6","F10","F11","F13A1","F13B","F2","F5","F7","F8","F9","FERMT3","FGA","FGB","FGG","FLI1","FLNA","GATA1","GFI1B","GGCX","GNE","GP1BA","GP1BB","GP6","GP9","HOXA11","HPS1","HPS3","HPS4","HPS5","HPS6","HRG","ITGA2B","ITGB3","LMAN1","LYST","MCFD2","MECOM","MPL","MYH9","NBEA","NBEAL2","ORAI1","P2RY12","PLA2G4A","PLAT","PLAU","PLG","PROC","PROS1","RASGRP2","RBM8A","RUNX1","SERPINC1","SERPIND1","SERPINE1","SERPINF2","SLC45A2","SLFN14","STIM1","STXBP2","TBXA2R","TBXAS1","THBD","THPO","TUBB1","VIPAS39","VKORC1","VPS33B","VWF","WAS","FYB","AP3D1","APOH","C6orf25","COL2A1","HABP2","IFNAR2","LPA","MTHFR","PROCR","PROZ","SERPINA10","SRC","TFPI"],"source":{"id":"PanelApp","version":"1.25"}},{"id":"563259de22c1fc58285b2840","name":"Familial pulmonary fibrosis","title":"Familial pulmonary fibrosis","genes":["ABCA3","AP3B1","ASAH1","CSF2RA","CSF2RB","DKC1","FAM111B","GBA","HPS1","HPS4","ITGA3","NKX2-1","PARN","RTEL1","SFTPA2","SFTPB","SFTPC","SLC34A2","SLC7A7","SMPD1","TERC","TERT","TINF2","CASR","ACVRL1","ASCL1","BDNF","BLOC1S3","BLOC1S6","BMPR2","CCDC39","CCDC40","CFTR","DNAAF1","DNAAF2","DNAH11","DNAH5","DNAI1","DNAI2","DNAL1","DOCK8","DTNBP1","EDN3","EFEMP2","ELMOD2","ELN","ENG","FBLN5","FLCN","GDNF","HPS3","HPS5","HPS6","LTBP4","MUC5B","NF1","NME8","PHOX2B","RET","RSPH4A","RSPH9","SCNN1A","SCNN1B","SCNN1G","SERPINA1","SFTPA1","SFTPD","SMAD9","STAT3","TSC1","TSC2"],"source":{"id":"PanelApp","version":"1.2"}},{"id":"5596735822c1fc4f7d26e96d","name":"Familial Thoracic Aortic Aneurysm Disease","title":"Familial Thoracic Aortic Aneurysm Disease","genes":["ACTA2","COL1A1","COL1A2","COL3A1","COL5A1","COL5A2","EFEMP2","ELN","FBN1","FBN2","FLCN","FLNA","MED12","MYH11","MYLK","NOTCH1","PRKG1","SKI","SLC2A10","SMAD3","SMAD4","TGFB2","TGFB3","TGFBR1","TGFBR2","PKD1","PKD2","ABCC6","ACVR1","ADAMTS2","ALDH18A1","ATP6V0A2","ATP7A","B4GALT7","CBS","CHST14","COL11A1","COL11A2","COL2A1","COL4A1","COL9A1","COL9A2","COL9A3","FBLN5","FKBP14","FOXE3","HNRNPK","KCNN1","LTBP2","SLC39A13","TNXB","ZNF469","LOX"],"source":{"id":"PanelApp","version":"1.33"}},{"id":"5550a166bb5a161bf644a3b6","name":"Ocular coloboma","title":"Ocular coloboma","genes":["ACTB","ACTG1","ALDH1A3","B3GALT1","BMP4","C12orf57","CC2D2A","CHD7","CLDN19","FOXE3","HCCS","MAB21L2","OTX2","PAX2","PAX6","PORCN","RARB","RPGRIP1L","SALL4","SOX2","STRA6","VSX2","YAP1","HMX1","IGBP1","LRP2","MAF","PIGL","RBP4","SIX6","ABCB6","AHI1","ARL13B","BMP7","C5orf42","CEP290","CEP41","GDF3","GDF6","HMGB3","INPP5E","KIF7","MIR204","NAA10","NPHP1","OFD1","PUF60","SALL2","SHH","SIX3","SMO","TCTN1","TCTN2","TCTN3","TENM3","TFAP2A","TMEM138","TMEM216","TMEM231","TMEM237","TMEM67"],"source":{"id":"PanelApp","version":"1.4"}},{"id":"58346b8b8f62036225ca8a7d","name":"Congenital disorders of glycosylation","title":"Congenital disorders of glycosylation","genes":["ALG1","ALG11","ALG12","ALG3","ALG6","ALG8","ALG9","ATP6AP1","ATP6V0A2","B3GALNT2","B3GALT6","B3GALTL","B3GAT3","B4GALT1","B4GALT7","CCDC115","CHST14","CHST3","CHST6","CHSY1","COG1","COG4","COG5","COG6","COG7","COG8","DOLK","DPAGT1","DPM1","EXT1","EXT2","FKRP","FKTN","GALNT3","GFPT1","GMPPB","GNE","ISPD","LARGE","MAN1B1","MGAT2","MOGS","MPDU1","MPI","PGAP2","PGAP3","PGM1","PGM3","PIGA","PIGL","PIGN","PIGO","PIGT","PIGV","PMM2","POMGNT1","POMGNT2","POMT1","POMT2","RFT1","SEC23B","SLC35C1","SLC35D1","SLC39A8","SRD5A3","SSR4","ST3GAL5","TMEM165","TMEM5","TUSC3","XYLT1","XYLT2","PIGM","SLC35A1","SLC35A2","ST3GAL3","STT3A","ALG13","ALG14","ALG2","C1GALT1C1","CAD","COG2","DDOST","DHDDS","DPM2","DPM3","GALNT12","GLS","GORAB","LFNG","MAGT1","NGLY1","NUS1","PIGW","SLC35A3","STT3B","TMEM199","TRAPPC11"],"source":{"id":"PanelApp","version":"1.10"}},{"id":"56ba024322c1fc5025762b4d","name":"Structural basal ganglia disorders","title":"Structural basal ganglia disorders","genes":["ADAR","AP1S2","ATP13A2","ATP7B","BCS1L","C19orf12","COASY","COX10","COX15","CP","DLAT","ETHE1","FA2H","FOXP2","FTL","GCDH","HIBCH","IFIH1","ISG15","IVD","KMT2B","MECR","MT-ATP6","MT-ND1","MT-ND6","MUT","NDUFA1","NDUFA10","NDUFAF2","NDUFAF6","NDUFS4","NDUFS7","NDUFS8","NDUFV1","OCLN","PANK2","PCCA","PCCB","PDE10A","PDGFB","PDGFRB","PDHA1","PDP1","PLA2G6","PRNP","RAB39B","SDHA","SERAC1","SLC19A3","SLC20A2","SLC25A19","SLC30A10","SLC39A14","SUCLA2","SUCLG1","SURF1","TOR1A","TUBA1A","TUBB4A","VAC14","VPS13A","WDR45","XPR1","GFAP","AIFM1","BDNF","DCAF10","HEXA","HTT","NDUFA2","NDUFA9","NDUFS3","NUP62","PDX1","SUOX"],"source":{"id":"PanelApp","version":"1.0"}},{"id":"594a71908f620375d17ea6b2","name":"Haematological malignancies","title":"Haematological malignancies","genes":["ACD","ANKRD26","ATM","BLM","BRCA1","BRCA2","BRIP1","CBL","CEBPA","CTC1","DDX41","DKC1","DOCK8","ELANE","ERCC4","ETV6","FANCA","FANCB","FANCC","FANCD2","FANCE","FANCF","FANCG","FANCI","FANCL","FANCM","FAS","GATA1","GATA2","GBA","HAX1","ITK","LIG4","MAD2L2","MLH1","MSH2","MSH6","NAF1","NBN","NF1","NHP2","NOP10","OBFC1","PALB2","PARN","PAX5","PMS2","PRF1","PTPN11","RAD51","RAD51C","RMRP","RPL11","RPL15","RPL23","RPL26","RPL27","RPL31","RPL35A","RPL36","RPL5","RPS10","RPS15","RPS17","RPS19","RPS24","RPS26","RPS27","RPS27A","RPS28","RPS29","RPS7","RTEL1","RUNX1","SAMD9L","SBDS","SH2B3","SH2D1A","SLX4","STAT3","TERC","TERT","TINF2","TP53","TSR2","UBE2T","WAS","WRAP53","XRCC2"],"source":{"id":"PanelApp","version":"0.6"}},{"id":"55af785222c1fc78a9ef5058","name":"Multiple Tumours","title":"Multiple Tumours","genes":["AIP","ALK","APC","ATM","BAP1","BLM","BMPR1A","BRCA1","BRCA2","BRIP1","BUB1B","CBL","CDC73","CDH1","CDK4","CDKN1B","CDKN1C","CDKN2A","DICER1","DIS3L2","ERCC4","EZH2","FANCA","FANCB","FANCC","FANCD2","FANCE","FANCF","FANCG","FANCI","FANCL","FH","FLCN","GPC3","HRAS","LZTR1","MAX","MEN1","MET","MLH1","MSH2","MSH6","MUTYH","NBN","NF1","NF2","NSD1","NTHL1","PALB2","PHOX2B","PMS2","POLD1","POLE","PRKAR1A","PTCH1","PTEN","PTPN11","RAD51C","RAD51D","RB1","RECQL4","REST","RET","SDHA","SDHAF2","SDHB","SDHC","SDHD","SLX4","SMAD4","SMARCA4","SMARCB1","SMARCE1","STK11","SUFU","TMEM127","TP53","TRIM37","TSC1","TSC2","VHL","WT1","AKT1","BARD1","BRAF","CASR","CHEK2","CTRC","EPCAM","GALNT12","GNAS","HNF1A","KIT","MITF","PDGFRA","PDGFRB","PIK3CA","PPM1D","PRSS1","PRSS2","SPINK1","SPRED1","VSIG10L","CEBPA","CEP57","CYLD","DDB2","EGFR","ERCC2","ERCC3","ERCC5","ESR1","EXT1","EXT2","FANCM","FAP","FOXO1","FOXO3","GATA2","GDNF","GREM1","HOXB13","PRF1","RHBDF2","RUNX1","SBDS","WRN","XPA","XPC"],"source":{"id":"PanelApp","version":"1.87"}},{"id":"5763f4588f620350a199604e","name":"Radial dysplasia","title":"Radial dysplasia","genes":["BRCA2","BRIP1","ERCC4","ESCO2","FANCA","FANCB","FANCC","FANCD2","FANCE","FANCF","FANCG","FANCI","FANCL","FGF10","FGFR2","FGFR3","FIG4","FLNA","HDAC8","HOXA13","KCNH1","LMBR1","NIPBL","PALB2","RBM8A","RECQL4","RPL11","RPL35A","RPL5","RPS10","RPS17","RPS19","RPS24","RPS26","RPS7","SALL1","SALL4","SF3B4","SHOX","SLX4","SMC1A","SMC3","TBX3","TBX5","UBE2T","WNT7A","ZIC3","PTEN","RAD21","RAD51C","RPL15","RPL26","RPS29","CREBBP","FANCM","PITX1","PUF60","SAMD9"],"source":{"id":"PanelApp","version":"1.0"}},{"id":"55a631ae22c1fc6710839b97","name":"Non-Fanconi anaemia","title":"Non-Fanconi anaemia","genes":["ALAS2","BRCA2","BRIP1","CDAN1","CUBN","ERCC4","FANCA","FANCB","FANCC","FANCD2","FANCE","FANCF","FANCG","FANCI","FANCL","G6PD","GATA1","KLF1","PALB2","RAD51C","RPL11","RPL35A","RPL5","RPS10","RPS17","RPS19","RPS24","RPS26","RPS7","SEC23B","SLC11A2","SLC19A2","SLC25A38","SLX4","TMPRSS6","ABCB7","BAAT","COX4I2","HOXD13","PUS1","TERT","YARS2","ZIC3","AK1","AMN","ARHGAP31","BMP2","BMPR1B","C15orf41","CC2D2A","CD59","CDH3","CEP290","CHSY1","DHFR","DKC1","EPHX1","ERCC1","ESCO2","FANCM","FBLN1","FBXW4","FGF10","FGFR2","FGFR3","FMN1","GCLC","GDF5","GLI3","GLRX5","GNAS","GPI","GPX1","GREM1","GSS","HBA1","HBA2","HBB","HBD","HDAC4","HEPH","HK1","IFNG","IHH","KIF23","KIF7","LMBR1","LRP4","MGP","MKS1","MTR","MTRR","MYCN","NHP2","NIPBL","NOG","NOP10","NT5C3A","PIGV","PITX1","PKLR","PTEN","PTHLH","RECQL4","RHAG","ROR2","RPGRIP1L","RPL19","RPL26","RPL27","RPL9","RPS14","RPS27","RPS29","SALL1","SALL4","SBDS","SHH","SLC4A1","SOX9","TBX15","TBX3","TBX5","TERC","TF","THPO","TINF2","TP63","TPI1","WNT3","WNT7A","BRCA1"],"source":{"id":"PanelApp","version":"0.321"}},{"id":"553f95c9bb5a1616e5ed45bf","name":"Early onset dystonia","title":"Early onset dystonia","genes":["ADAR","ADCY5","ANO3","APTX","ATM","ATP13A2","ATP1A3","ATP7B","C19orf12","CHMP2B","COASY","CP","CSTB","DCAF17","FA2H","FBXO7","FTL","GCH1","KMT2B","MECR","PANK2","PARK2","PINK1","PLA2G6","PNKD","PRKRA","PRRT2","SGCE","SLC2A1","SLC30A10","SLC6A3","SPR","SYNJ1","TH","THAP1","TOR1A","TUBB4A","VAC14","VPS13A","WDR45","WDR73","CIZ1","GNAL","TAF1","ACTB","AFG3L2","AP1S2","ARSA","ARX","ATP1A2","AUH","BCAP31","CACNA1A","CYP27A1","DCTN1","DDC","DLAT","DRD2","DRD5","EARS2","ERCC6","FASTKD2","FOXG1","FOXRED1","GAMT","GCDH","HPRT1","KCNQ2","L2HGDH","MAT1A","MCOLN1","MMADHC","MPV17","MR1","MT-ND6","NPC2","PARK7","PDGFRB","PDHX","PLP1","PNPT1","PSEN1","PTEN","PTS","QDPR","RNASEH2A","RNASEH2B","RNASEH2C","SAMHD1","SCP2","SDHAF1","SERAC1","SLC19A3","SLC20A2","SLC39A14","SLC46A1","SUCLA2","SUOX","TIMM8A","TPK1","TREM2","TREX1","VPS37A"],"source":{"id":"PanelApp","version":"1.30"}},{"id":"55a76be222c1fc6710839b9f","name":"Primary ciliary disorders","title":"Primary ciliary disorders","genes":["ARMC4","C21orf59","CCDC103","CCDC114","CCDC151","CCDC39","CCDC40","CCDC65","CCNO","DNAAF1","DNAAF2","DNAAF3","DNAAF5","DNAH11","DNAH5","DNAI1","DNAI2","DNAL1","DRC1","DYX1C1","GAS8","HYDIN","LRRC6","MCIDAS","PIH1D3","RPGR","RSPH1","RSPH3","RSPH4A","RSPH9","SPAG1","ZMYND10","ACVR2B","ADGRV1","AHI1","AIPL1","ARL13B","ARL6","ATXN10","B9D1","B9D2","BBS1","BBS10","BBS12","BBS2","BBS4","BBS5","BBS7","BBS9","C2orf71","C5orf42","CC2D2A","CCDC28B","CDH23","CENPF","CEP164","CEP290","CEP41","CEP55","CFTR","CLRN1","CRB1","CRELD1","CRX","DFNB31","DNAH1","DNAH8","DYNC2H1","EVC","EVC2","FOXH1","GDF1","GLIS2","GUCY2D","HYLS1","IFT43","IFT80","IMPDH1","INVS","IQCB1","KCNJ13","KIF7","LCA5","LEFTY2","LRAT","LRRC56","MKKS","MKS1","MYO7A","NEK1","NEK8","NKX2-5","NME8","NODAL","NPHP1","NPHP3","NPHP4","OFD1","PCDH15","PKD2","PKHD1","RD3","RDH12","RPE65","RPGRIP1","RPGRIP1L","SCNN1A","SCNN1B","SCNN1G","SDCCAG8","SPATA7","TCTN1","TCTN2","TMEM138","TMEM216","TMEM231","TMEM237","TMEM67","TOPORS","TRIM32","TSC1","TSC2","TTC21B","TTC8","TULP1","UMOD","USH1C","USH1G","USH2A","VHL","WDPCP","WDR19","WDR35","XPNPEP3","ZIC3","ZNF423"],"source":{"id":"PanelApp","version":"1.8"}},{"id":"5693974122c1fc251660fb1f","name":"Unexplained kidney failure in young people","title":"Unexplained kidney failure in young people","genes":["ACE","ACTG2","ACTN4","AGT","AGTR1","AMN","ANKS6","ARHGDIA","C3","CD46","CEP164","CFB","CFH","CFI","CHD7","CLCN5","COL4A3","COL4A4","COL4A5","COQ2","COQ6","CTNS","CUBN","DGKE","DSTYK","EYA1","FRAS1","FREM1","FREM2","GATA3","GLI3","GRIP1","HNF1B","HPSE2","INF2","INVS","ITGA3","ITGA8","KAL1","LAMB2","LMX1B","LRIG2","MUC1","MYH9","MYO1E","NPHP1","NPHP3","NPHP4","NPHS1","NPHS2","NUP107","NUP93","OFD1","PAX2","PKD1","PKD2","PKHD1","PLCE1","REN","RPGRIP1L","RRM2B","SALL1","SCARB2","SIX5","SMARCAL1","TBX18","TMEM67","TRAP1","TRPC6","TSC1","TSC2","TTC21B","UMOD","VHL","VPS33B","WT1","ACTA2","AHI1","ALG1","ALMS1","APOL1","ARHGAP24","ARL13B","ARL6","BBS1","BBS10","BBS12","BBS2","BBS4","BBS5","BBS9","BICC1","BMP4","BSND","C5orf42","CC2D2A","CCDC28B","CD151","CD2AP","CEP290","CEP41","CFHR5","CHRM3","COL4A6","COX10","CYP11B2","DHFR","DLG3","E2F3","FOXC1","FOXC2","GDNF","GIF","GLA","GLIS2","GREM1","HCN3","INPP5E","IQCB1","ITGB4","KANK2","KIF7","KIT","MKS1","MTR","MTRR","MYH11","NEK8","OCRL","PDSS2","PMM2","PRKCSH","PTPRO","RET","ROBO2","SDCCAG8","SEC63","SHH","SIX1","SLC19A2","SLC19A3","SLIT2","SMARCA4","SOX17","SPRY1","TCTN1","TCTN3","TMEM138","TMEM216","TMEM231","TMEM237","TNXB","TRIM32","TSHZ3","TTC8","UPK2","UPK3A","VIPAS39","WDPCP","WDR19","XPNPEP3","ZMPSTE24","ZNF423"],"source":{"id":"PanelApp","version":"1.3"}},{"id":"554a0ac9bb5a167e4ccd1ec2","name":"Thoracic dystrophies","title":"Thoracic dystrophies","genes":["C21orf2","C2CD3","CEP120","CSPP1","DYNC2H1","DYNC2LI1","EVC","EVC2","HYLS1","ICK","IFT122","IFT140","IFT172","IFT43","IFT52","IFT80","IFT81","KIAA0586","KIF7","NEK1","OFD1","TCTEX1D2","TTC21B","WDR19","WDR34","WDR35","WDR60","DDX59","INTU","TMEM107","ACVR2B","ADGRV1","AHI1","AIPL1","ARL13B","ARL6","ATXN10","B9D1","B9D2","BBS1","BBS10","BBS12","BBS2","BBS4","BBS5","BBS7","BBS9","C2orf71","C5orf42","CC2D2A","CCDC28B","CCDC39","CCDC40","CDH23","CEP164","CEP290","CEP41","CFTR","CLRN1","CRB1","CRELD1","CRX","DFNB31","DNAAF1","DNAAF2","DNAAF3","DNAH11","DNAH5","DNAI1","DNAI2","DNAL1","FOXH1","GDF1","GLIS2","GUCY2D","IMPDH1","INVS","IQCB1","KCNJ13","LCA5","LEFTY2","LRAT","MKKS","MKS1","MYO7A","NEK8","NKX2-5","NME8","NODAL","NPHP1","NPHP3","NPHP4","PCDH15","PKD2","PKHD1","RD3","RDH12","RPE65","RPGR","RPGRIP1","RPGRIP1L","RSPH4A","RSPH9","SCLT1","SCNN1A","SCNN1B","SCNN1G","SDCCAG8","SPATA7","TBC1D32","TCTN1","TCTN2","TMEM138","TMEM216","TMEM231","TMEM237","TMEM67","TOPORS","TRIM32","TSC1","TSC2","TTC8","TULP1","UMOD","USH1C","USH1G","USH2A","VHL","WDPCP","XPNPEP3","ZIC3","ZNF423"],"source":{"id":"PanelApp","version":"1.0"}},{"id":"568f920822c1fc1c79ca177a","name":"Inherited white matter disorders","title":"Inherited white matter disorders","genes":["AARS2","ABCD1","ACOX1","ADAR","ADCK3","AIMP1","ALDH3A2","ARSA","ASPA","BCAP31","BCS1L","C10orf2","CLCN2","COQ2","COX10","COX15","CSF1R","CYP27A1","D2HGDH","DARS","DARS2","DGUOK","DPYD","EARS2","EIF2B1","EIF2B2","EIF2B3","EIF2B4","EIF2B5","ERCC6","ERCC8","ETFDH","FAM126A","FLVCR2","FOLR1","FUCA1","GALC","GBE1","GFAP","GFM1","GJA1","GJB1","GJC2","HEPACAM","HSD17B4","IFIH1","L2HGDH","LMNB1","LYRM7","MCOLN1","MEF2C","MLC1","MPLKIP","MTFMT","NDUFAF1","NDUFS1","NDUFS2","NDUFS4","NDUFS7","NDUFS8","NDUFV1","NUBPL","PAFAH1B1","PEX1","PEX10","PEX12","PEX13","PEX16","PEX2","PEX26","PEX3","PEX5","PEX6","PLP1","POLG","POLG2","POLR1C","POLR3A","POLR3B","PSAP","RARS","RNASEH2A","RNASEH2B","RNASEH2C","RNASET2","RRM2B","SAMHD1","SCO1","SCO2","SCP2","SDHAF1","SDHB","SLC16A2","SLC17A5","SLC25A12","SLC25A4","SOX10","SUCLA2","SUMF1","SURF1","TACO1","TREX1","TUBB4A","TYMP","ATPAF2","COQ9","MRPS16","PEX14","PEX19","TUFM","ADGRG1","ARX","DCX","EGR2","HSPD1","HTRA1","ISCA2","JAM3","LAMB1","MFF","MPZ","NDE1","NOTCH3","PMP22","RELN","SDHD","SLC25A1","SNORD118","TREM2","TUBA1A","TUBA8","TUBB2B"],"source":{"id":"PanelApp","version":"1.6"}},{"id":"57d15bb28f6203284d610aaa","name":"Epilepsy Plus","title":"Epilepsy Plus","genes":["ADSL","ALG13","ARHGEF9","ARX","ATP1A3","ATRX","CDKL5","CHD2","CHRNA4","CNTNAP2","DEPDC5","DNM1","DOCK7","DYRK1A","EHMT1","FOXG1","GABRA1","GABRB3","GABRG2","GNAO1","GRIN1","GRIN2A","GRIN2B","HCN1","IQSEC2","KCNA2","KCNB1","KCNJ10","KCNQ2","KCNQ3","KCNT1","KIAA1279","KIAA2022","MAPK10","MBD5","MECP2","MEF2C","PCDH19","PIGA","PLCB1","PNKP","POLG","PRRT2","PURA","QARS","SCN1A","SCN1B","SCN2A","SCN8A","SETD5","SIK1","SLC12A5","SLC13A5","SLC16A2","SLC25A22","SLC2A1","SLC6A1","SLC9A6","SPTAN1","STX1B","STXBP1","SYNGAP1","TCF4","UBE2A","UBE3A","WDR45","WWOX","ZEB2","ABAT","ADGRV1","ALDH7A1","ATP1A2","BTD","CACNA1A","CACNA1H","CACNB4","CASK","CASR","CBL","CHRNA2","CHRNB2","CLN3","CLN5","CLN6","CLN8","CNTN2","COL4A1","COL4A2","CPA6","CRH","CSNK1G1","CSTB","CTSD","EEF1A2","EFHC1","EPM2A","FTL","GABBR2","GABRD","GAMT","GATAD2B","GATM","GLRA1","GLRB","GOSR2","GPHN","HLCS","HNRNPU","KCNA1","KCNC1","KCNMA1","KCTD7","LGI1","MAGI2","MFSD8","MOCS1","MOCS2","MT-TL1","NECAP1","NEDD4L","NHLRC1","NRXN1","PIGQ","PNPO","PPT1","PRICKLE1","PRICKLE2","RYR3","SCARB2","SCN2B","SCN9A","SLC6A5","SLC6A8","SMS","SRPX2","ST3GAL3","SZT2","TBC1D24","TBL1XR1","TPP1","TSC1","PCDH12"],"source":{"id":"PanelApp","version":"0.8"}},{"id":"55896ed2bb5a1671a7fef4f9","name":"Osteogenesis Imperfecta","title":"Osteogenesis Imperfecta","genes":["ALPL","B3GALT6","BMP1","COL1A1","COL1A2","CRTAP","FKBP10","IFITM5","LRP5","NOTCH2","P3H1","P4HB","PLOD2","PLS3","PPIB","SEC24D","SERPINF1","SERPINH1","SP7","SPARC","TAPT1","TMEM38B","WNT1","ACAN","ANKH","ANO5","ATP6V0A2","B3GAT3","B4GALT7","CASR","CLCN5","COL10A1","COL11A1","COL11A2","COL12A1","COL2A1","COL5A1","CREB3L1","CREBBP","CYP26B1","DMP1","DSPP","ENPP1","ESR1","FGF23","GHR","GNAS","GNPTAB","GORAB","GSC","LMNA","LRP4","LRP6","MAFB","MATN3","MMP2","NBAS","OFD1","PAX3","PHEX","PLOD1","POC1A","PTPRQ","PYCR1","SHOX","SLC34A3","SOST","TDP2","TMCO1","TNFRSF11A","TNXB","TREM2","TRMT10A","TYROBP","VDR","ZMPSTE24","ACP5","ATRX","BLM","BMPR1B","BTK","CANT1","CDKN1C","CHST14","CHST3","COL9A1","COL9A2","COL9A3","COMP","CTSK","CUL7","DDR2","DHCR24","DHCR7","DYM","DYNC2H1","EIF2AK3","EP300","ERCC6","ERCC8","EVC","EVC2","EXT1","EXT2","FAM20C","FBN1","FGD1","FGFR1","FGFR2","FGFR3","FLNA","FLNB","GDF5","GH1","GHRHR","GHSR","GLI2","GLI3","GPC6","HESX1","HSPG2","ICK","IFT122","IFT140","IFT80","IGF1","IGF1R","IHH","INSR","KDM6A","KIF22","KMT2D","KRAS","LHX3","LIFR","MMP13","MMP9","NBN","NEK1","NIPBL","NKX3-2","NPR2","OBSL1","PAPSS2","PCNT","PITX2","POU1F1","PRKAR1A","PROP1","PTH1R","PTPN11","RAF1","ROR2","RPS6KA3","RUNX2","SH3PXD2B","SHOX2","SLC26A2","SLC35D1","SLC39A13","SMARCAL1","SMC1A","SMC3","SOS1","SOX2","SOX3","SOX9","SRCAP","STAT5B","SULF1","TBCE","TCTN3","THRB","TRIM37","TRIP11","TRPS1","TRPV4","WDR35","WNT5A","WRN"],"source":{"id":"PanelApp","version":"1.6"}},{"id":"55507b25bb5a161bf644a3b2","name":"Glaucoma (developmental)","title":"Glaucoma (developmental)","genes":["ADAMTS10","ADAMTS17","CYP1B1","FOXC1","FOXD3","FOXE3","LTBP2","MYOC","PITX2","DDX58","GJA1","SBF2","ABCA4","ABHD12","ADAM9","ADGRV1","AHI1","AIPL1","ALMS1","ARL13B","ARL6","ASB10","ATOH7","ATP13A2","B3GALTL","BBS1","BBS10","BBS12","BBS2","BBS4","BBS5","BBS7","BBS9","BCOR","BEST1","BMP4","C10orf11","C1QTNF5","C2orf71","C5orf42","C8orf37","CA4","CABP4","CACNA1F","CACNA2D4","CC2D2A","CDH23","CDH3","CDHR1","CEP290","CEP41","CERKL","CHM","CIB2","CLN3","CLN5","CLN6","CLN8","CLRN1","CNGA1","CNGA3","CNGB1","CNGB3","CNNM4","COL11A1","COL11A2","COL2A1","COL4A1","COL9A1","COL9A2","CRB1","CRX","CTSD","CYP27A1","CYP4V2","DFNB31","DHDDS","EFEMP1","ELOVL4","EYS","FAM161A","FLVCR1","FRAS1","FREM1","FREM2","FSCN2","FZD4","GNAT1","GNAT2","GPR143","GPR179","GRIP1","GRM6","GRN","GUCA1A","GUCA1B","GUCY2D","HARS","HCCS","IDH3B","IMPDH1","IMPG2","INVS","IQCB1","KCNJ13","KCNV2","KCTD7","KIF7","KLHL7","LCA5","LRAT","LRIT3","LRP5","LZTFL1","MAK","MERTK","MFN2","MFRP","MFSD8","MKKS","MKS1","MTTP","MYO7A","NDP","NPHP1","NPHP3","NPHP4","NR2E3","NRL","NTF4","NYX","OAT","OCA2","OFD1","OPA1","OPA3","OPTN","OTX2","PAX6","PCDH15","PDE6A","PDE6B","PDE6C","PDE6G","PDE6H","PDZD7","PEX7","PHYH","PITPNM3","PITX3","PLA2G5","PPT1","PRCD","PROM1","PRPF3","PRPF31","PRPF6","PRPF8","PRPH2","RAX2","RBP3","RBP4","RD3","RDH12","RDH5","RGR","RGS9","RGS9BP","RHO","RIMS1","RLBP1","ROM1","RP1","RP2","RP9","RPE65","RPGR","RPGRIP1","RPGRIP1L","RS1","SAG","SDCCAG8","SEMA4A","SLC24A1","SLC24A5","SLC45A2","SMOC1","SNRNP200","SOX2","SPATA7","STRA6","TCTN1","TCTN2","TCTN3","TIMM8A","TIMP3","TMEM126A","TMEM216","TMEM237","TMEM67","TOPORS","TP53BP2","TPP1","TRIM32","TRPM1","TSPAN12","TTC21B","TTC8","TULP1","TYR","TYRP1","UNC119","USH1C","USH1G","USH2A","VAX1","VCAN","VSX2","WDPCP","WDR36","WFS1","WT1","ZNF423","ZNF513"],"source":{"id":"PanelApp","version":"1.0"}},{"id":"553f979fbb5a1616e5ed45f8","name":"Cataracts","title":"Cataracts","genes":["ADAMTS10","AGK","AGPS","ALDH18A1","B3GALTL","BCOR","BFSP1","BFSP2","CHMP4B","COL11A1","COL18A1","COL2A1","COL4A1","CRYAA","CRYAB","CRYBA1","CRYBA4","CRYBB1","CRYBB2","CRYBB3","CRYGC","CRYGD","CRYGS","CYP27A1","CYP51A1","DHCR7","EPHA2","ERCC2","ERCC3","ERCC6","ERCC8","FAM126A","FOXE3","FTL","FYCO1","GALK1","GALT","GCNT2","GJA3","GJA8","GNPAT","HMX1","HSF4","INPP5K","JAM3","LIM2","MAF","MAN2B1","MIP","MIR184","MSMO1","MYH9","NDP","NF2","NHS","OCRL","OPA3","P3H2","PAX6","PEX1","PEX10","PEX11B","PEX12","PEX13","PEX14","PEX16","PEX19","PEX2","PEX26","PEX3","PEX5","PEX6","PEX7","PITX3","PXDN","RAB18","RAB3GAP1","RAB3GAP2","SC5D","SIL1","SLC2A1","SLC33A1","SRD5A3","TDRD7","TFAP2A","VIM","VSX2","WRN","ABHD12","ADAMTSL4","AKR1E2","B3GALNT2","B4GAT1","BEST1","BUB1B","CAPN15","CBS","CDKN2A","CRYGA","CRYGB","CRYGFP","CTDP1","DAG1","ESCO2","EYA1","FBN1","FKRP","FKTN","FLNB","FOXC1","FOXD3","FZD4","GFER","GJA1","GJC3","GJE1","GMPPB","HCCS","ISPD","LARGE","LCAT","LCT","LMX1B","LRP5","LTBP2","LTBP3","MAFIP","MAN2A1","MFSD6L","MIPEP","MMP1","OTX2","PEX5L","PITX2","POMGNT1","POMGNT2","POMK","POMT1","POMT2","PRX","PTCH1","PVRL3","RECQL4","RNLS","SEC23A","SIX3","SIX5","SIX6","SLC16A12","SOX2","SREBF2","TMEM114","TMEM5","TMEM70"],"source":{"id":"PanelApp","version":"1.9"}},{"id":"559a7d1022c1fc58ad67fc97","name":"Hereditary ataxia","title":"Hereditary ataxia","genes":["AAAS","ABCB7","ABHD12","ADCK3","AFG3L2","AMPD2","ANO10","AP1S2","APTX","ARSA","ATCAY","ATM","ATP1A3","C10orf2","CA8","CACNA1A","CACNA1G","CAMTA1","CASK","CHMP1A","CLN6","COX20","CP","CWF19L1","CYP27A1","CYP2U1","DARS2","DDHD2","DNAJC5","DNMT1","EIF2B1","EIF2B2","EIF2B3","EIF2B4","EIF2B5","EPM2A","EXOSC3","FGF14","FLVCR1","FMR1","FOLR1","FXN","GBA2","GFAP","GJC2","GOSR2","GRID2","GRM1","HEXA","HEXB","ITPR1","KCNA1","KCNC3","KCND3","KCNJ10","KIF1C","MARS2","MMACHC","MRE11A","MT-ATP6","MTTP","NHLRC1","NPC1","NPC2","OPHN1","PAX6","PDYN","PEX16","PLA2G6","PMPCA","PNKP","PNPLA6","POLG","POLR3A","PRKCG","PRNP","PRRT2","RARS2","RNF170","RNF216","SACS","SAR1B","SEPSECS","SETX","SIL1","SLC1A3","SLC2A1","SLC9A6","SNX14","SPG7","SPTBN2","SRD5A3","STUB1","SYNE1","TGM6","TMEM240","TPP1","TSEN2","TSEN54","TTBK2","TTC19","TTPA","TUBB4A","VAMP1","VLDLR","VRK1","WDR73","WDR81","WFS1","WWOX","AARS","ALAS2","ATN1","ATP2B3","ATP8A2","ATXN1","ATXN10","ATXN2","ATXN3","ATXN7","ATXN8","CACNB4","CCDC88C","CLP1","CSTB","DYNC1H1","ELOVL5","KIAA0226","MTPAP","NAGLU","NOP56","PAX2","PCLO","PIK3R5","PPP2R2B","PRICKLE1","RELN","SCN8A","SYT14","TBP","TDP1","TSEN34","UBR4","UCHL1","VPS53","XRCC1","ZFYVE26","ZNF592"],"source":{"id":"PanelApp","version":"1.58"}},{"id":"594aa3c78f620375d17ea723","name":"DNA Repair Genes","title":"DNA Repair Genes","genes":["ALKBH2","ALKBH3","APEX1","APEX2","APLF","APTX","ATM","ATR","ATRIP","BLM","BRCA1","BRCA2","BRIP1","CCNH","CDK7","CETN2","CHAF1A","CHEK1","CHEK2","CLK2","DCLRE1A","DCLRE1B","DCLRE1C","DDB1","DDB2","DMC1","DUT","EME1","EME2","ENDOV","ERCC1","ERCC2","ERCC3","ERCC4","ERCC5","ERCC6","ERCC8","EXO1","FAAP20*","FAAP24*","FAN1","FANCA","FANCB","FANCC","FANCD2","FANCE","FANCF","FANCG","FANCI","FANCL","FANCM","FEN1","GEN1","GTF2H1","GTF2H2","GTF2H3","GTF2H4","GTF2H5","H2AFX","HELQ","HLTF","HUS1","LIG1","LIG3","LIG4","MAD2L2","MBD4","MDC1","MGMT","MLH1","MLH3","MMS19","MNAT1","MPG","MRE11*","MSH2","MSH3","MSH4","MSH5","MSH6","MUS81","MUTYH","NBN","NEIL1","NEIL2","NEIL3","NHEJ1","NTHL1","NUDT1","OBFC2B*","OGG1","PALB2","PARP1","PARP2","PARP3","PCNA","PER1","PMS1","PMS2","PMS2P3","PNKP","POLB","POLD1","POLE","POLG","POLH","POLI","POLK","POLL","POLM","POLN","POLQ","PRKDC","PRPF19","RAD1","RAD17","RAD18","RAD23A","RAD23B","RAD50","RAD51","RAD51B","RAD51C","RAD51D","RAD52","RAD54B","RAD54L","RAD9A","RBBP8","RDM1","RECQL","RECQL4","RECQL5","REV1L*","REV3L","RIF1","RNF168","RNF4","RNF8","RPA1","RPA2","RPA3","RPA4","RRM2B","SEM1*","SETMAR","SHPRH","SLX1A","SLX1B","SLX4","SMUG1","SPO11","SPRTN","TDG","TDP1","TDP2","TFIIH*","TOPBP1","TP53","TP53BP1","TREX1","TREX2","TTDN1*","UBE2A","UBE2B","UBE2N","UBE2V2","UNG","UVSSA","WRN","XAB2","XPA","XPC","XRCC1","XRCC2","XRCC3","XRCC4","XRCC5","XRCC6"],"source":{"id":"PanelApp","version":"0.2"}},{"id":"58a70e858f62037e8779b2e8","name":"Cytopaenias and congenital anaemias","title":"Cytopaenias and congenital anaemias","genes":["ABCB7","ADAMTS13","AK1","ALAS2","ALDOA","AMN","ANK1","BRCA2","BRIP1","C15orf41","CD59","CDAN1","CSF3R","CTC1","CUBN","CXCR4","DHFR","DKC1","ELANE","EPB41","EPB42","ERCC4","FANCA","FANCB","FANCC","FANCD2","FANCE","FANCF","FANCG","FANCI","FANCL","G6PC3","G6PD","GATA1","GATA2","GCLC","GFI1","GLRX5","GSS","HAX1","HBA1","HBA2","HBB","HK1","KIF23","KLF1","LPIN2","MPL","MTR","MTRR","NBN","NT5C3A","PALB2","PFKM","PIEZO1","PKLR","PUS1","RHAG","RMRP","RPL11","RPL35A","RPL5","RPS10","RPS17","RPS19","RPS24","RPS26","RPS7","RTEL1","SAMD9","SAMD9L","SBDS","SEC23B","SLC11A2","SLC19A2","SLC25A38","SLC2A1","SLC4A1","SLX4","SPTA1","SPTB","TAZ","TCN2","TERT","TF","TMPRSS6","TPI1","UBE2T","UROS","VPS45","WAS","YARS2","ATRX","BRCA1","CBL","CEBPA","COX4I2","ERCC6L2","FLT3","GPI","HBD","HOXA11","IKZF1","NHP2","RAD51C","RPS29","TERC","TINF2","WRAP53","ABL1","ACSL6","ANKRD26","ANKRD34A","ANKRD35","ARHGAP26","ASXL1","BAAT","BCOR","BCORL1","BRAF","C6orf25","CALR","CBLB","CBLC","CD36","CDKN2A","CUX1","CYCS","DNMT3A","ENO1","EPHX1","EZH2","FANCM","FBXW7","FCGR3B","GNAS","GNRHR2","GPX1","GSR","HBG1","HBG2","HEPH","HFE2","HRAS","IDH1","IDH2","IFNG","IRF1","ITGA10","ITGA2B","ITGB3","JAK2","JAK3","KDM6A","KIT","KMT2A","KRAS","LIX1L","MASTL","MYD88","MYH9","NF1","NOP10","NOTCH1","NPM1","NRAS","NUDT1","PDGFRA","PEX11B","PHF6","PIAS3","PIGA","PIGT","POLR3GL","PRKG1","PTEN","PTPN11","RAC2","RAD21","RBM8A","RPL15","RPL18","RPL19","RPL26","RPL27","RPL35","RPL9","RPS14","RPS27","RPS28","RUNX1","SETBP1","SF3B1","SH3BP1","SLC34A1","SMC1A","SMC3","SRP72","SRSF2","STAG2","TET2","TP53","TSR2","TUBB1","TXNIP","U2AF1","USB1","USP18","WIPF1","WT1","ZRSR2","RPL13","RPL31"],"source":{"id":"PanelApp","version":"1.33"}},{"id":"55ad205422c1fc7041340234","name":"Charcot-Marie-Tooth disease","title":"Charcot-Marie-Tooth disease","genes":["AARS","AIFM1","APTX","ARHGEF10","ATL1","ATL3","ATM","ATP7A","BICD2","BSCL2","C12orf65","CHCHD10","COX6A1","DNM2","DNMT1","DYNC1H1","EGR2","FAM134B","FBLN5","FGD4","FIG4","GAN","GARS","GDAP1","GJB1","GLA","HARS","HINT1","HK1","HSPB1","HSPB8","IGHMBP2","IKBKAP","INF2","KIF1A","KIF5A","LITAF","LMNA","LRSAM1","MFN2","MORC2","MPV17","MPZ","MT-ATP6","MTMR2","NDRG1","NEFL","NGF","NTRK1","PDHA1","PEX7","PHYH","PLEKHG5","PMP22","POLG","PRDM12","PRNP","PRPS1","PRX","RAB7A","REEP1","SACS","SBF2","SCN11A","SCN9A","SEPT9","SETX","SH3TC2","SIGMAR1","SLC12A6","SLC52A2","SLC52A3","SMN1","SPAST","SPG11","SPTLC1","SPTLC2","TFG","TRPV4","TTR","TUBB3","TYMP","VCP","WNK1","YARS","MME","ABCC9","ACTC1","ACTN2","ADCK3","ALDH3A2","ANKRD1","BAG3","BRAF","C10orf2","CACNB4","CASQ2","CAV3","CCT5","CLTCL1","CRYAB","CSRP3","CTDP1","DCAF8","DCTN1","DES","DHH","DHTKD1","DMD","DNAJB2","DRP2","DSC2","DSG2","DSP","DST","DTNA","EMD","FBXO38","FGF14","FKTN","FXN","GAA","GATAD1","GNB4","HADHA","HADHB","HOXD10","HRAS","HSPB3","ITPR1","JPH2","JUP","KARS","KCNA1","KCNC3","KIAA0196","KIF1B","KRAS","L1CAM","LAMA4","LAMP2","LAS1L","LDB3","MAP2K1","MAP2K2","MARS","MED25","MRE11A","MTTP","MYBPC3","MYH14","MYH6","MYH7","MYL2","MYL3","MYOZ2","MYPN","NAGLU","NEBL","NEXN","NIPA1","NRAS","PDK3","PDLIM3","PKP2","PLN","PLP1","PNPLA6","PRKAG2","PRKCG","PTPN11","RAF1","RBM20","RIT1","RYR2","SBF1","SCN5A","SGCD","SIL1","SLC1A3","SLC52A1","SLC5A7","SOS1","SOX10","SPG20","SPG21","SPG7","SPTBN2","SYT2","TAZ","TCAP","TDP1","TMEM43","TNNC1","TNNI3","TNNT2","TPM1","TRIM2","TTBK2","TTN","TTPA","VCL","ZFYVE26","ZFYVE27"],"source":{"id":"PanelApp","version":"1.10"}},{"id":"568ea01e22c1fc1c78b6715d","name":"Rare multisystem ciliopathy disorders","title":"Rare multisystem ciliopathy disorders","genes":["AHI1","ALMS1","ANKS6","ARL13B","ARL6","B9D2","BBS1","BBS10","BBS12","BBS2","BBS4","BBS5","BBS7","BBS9","C2CD3","C5orf42","CC2D2A","CENPF","CEP104","CEP164","CEP290","CEP41","CEP83","CRB2","CSPP1","DHCR7","DYNC2H1","DYNC2LI1","EVC","EVC2","GLI3","HNF1B","HYLS1","IFT122","IFT140","IFT172","IFT80","INPP5E","INVS","IQCB1","KIAA0586","KIF7","MAPKBP1","MKKS","MKS1","NEK1","NPHP1","NPHP3","NPHP4","OFD1","PKD1","PKD2","PKHD1","PMM2","RPGRIP1L","SBDS","SDCCAG8","TCTN1","TCTN2","TCTN3","TMEM138","TMEM216","TMEM231","TMEM237","TMEM67","TRAF3IP1","TTC21B","TTC8","VPS13B","WDPCP","WDR19","WDR34","WDR35","ZSWIM6","CEP120","DCDC2","GLIS2","IFT43","NEK8","ZNF423","ACVR2B","ADGRV1","AIPL1","ARMC4","ATD","ATXN10","B9D1","BBIP1","C21orf59","C2orf71","C8orf37","CCDC103","CCDC114","CCDC151","CCDC28B","CCDC39","CCDC40","CCDC65","CCNO","CDH23","CFAP53","CFC1","CFTR","CLRN1","CRB1","CRELD1","CRX","DDX59","DFNB31","DNAAF1","DNAAF2","DNAAF3","DNAAF5","DNAH11","DNAH5","DNAI1","DNAI2","DNAJB13","DNAL1","DNHD1","DRC1","DYX1C1","EXOC8","FOXH1","GAS8","GDF1","GUCY2D","HYDIN","IFT27","IFT52","IFT74","IFT81","IMPDH1","KCNJ13","KIAA0556","KIAA0753","KIF14","LBR","LCA5","LEFTY2","LRAT","LRRC6","LZTFL1","MCIDAS","MUC1","MYO7A","NKX2-5","NME8","NODAL","OCRL","PCDH15","PDE6D","PIBF1","POC1A","POC1B","PRKCSH","RD3","RDH12","RPE65","RPGR","RPGRIP1","RSPH1","RSPH4A","RSPH9","SCLT1","SCNN1A","SCNN1B","SCNN1G","SEC63","SPAG1","SPATA7","TAPT1","TBC1D32","TMEM107","TOPORS","TRIM32","TSC1","TSC2","TTBK2","TULP1","UMOD","USH1C","USH1G","USH2A","VHL","WDR60","WDR63","XPNPEP3","ZIC3","ZMYND10"],"source":{"id":"PanelApp","version":"1.27"}},{"id":"56e0238b22c1fc09c97a6e46","name":"Posterior segment abnormalities","title":"Posterior segment abnormalities","genes":["ABCA4","ABHD12","ACO2","ADAM9","ADAMTS18","ADGRV1","AHI1","AIPL1","ALMS1","ARL2BP","ARL6","ATOH7","BBS1","BBS10","BBS12","BBS2","BBS4","BBS5","BBS7","BBS9","BEST1","C1QTNF5","C2orf71","C8orf37","CA4","CABP4","CACNA1F","CAPN5","CC2D2A","CDH23","CDH3","CDHR1","CEP164","CEP290","CERKL","CHM","CIB2","CLN3","CLRN1","CNGA1","CNGA3","CNGB1","CNGB3","CNNM4","COL4A1","CRB1","CRX","CSPP1","CYP4V2","DFNB31","DHDDS","EFEMP1","ELOVL4","ERCC6","ERCC8","EYS","FAM161A","FLVCR1","FZD4","GNAT1","GNAT2","GNPTG","GPR179","GRK1","GRM6","GUCA1A","GUCA1B","GUCY2D","HARS","HMX1","IDH3B","IFT140","IMPDH1","IMPG1","IMPG2","INPP5E","IQCB1","KCNJ13","KCNV2","KIF11","KLHL7","LCA5","LRAT","LRIT3","LRP5","LZTFL1","MAK","MERTK","MFRP","MKKS","MKS1","MYO7A","NDP","NMNAT1","NPHP1","NPHP3","NPHP4","NR2E3","NRL","NYX","OAT","OFD1","OTX2","PANK2","PCDH15","PCYT1A","PDE6A","PDE6B","PDE6C","PDE6G","PEX1","PEX2","PEX7","PHYH","PLA2G5","PRCD","PROM1","PRPF3","PRPF31","PRPF4","PRPF6","PRPF8","PRPH2","RAB28","RAX2","RBP3","RBP4","RD3","RDH12","RDH5","RGR","RGS9","RHO","RLBP1","RP1","RP1L1","RP2","RP9","RPE65","RPGR","RPGRIP1","RPGRIP1L","RS1","SAG","SDCCAG8","SEMA4A","SLC24A1","SNRNP200","SPATA7","TIMP3","TMEM237","TOPORS","TRIM32","TRPM1","TSPAN12","TTC8","TUB","TULP1","USH1C","USH1G","USH2A","VCAN","VPS13B","WDPCP","WDR19","ZNF408","ZNF423","CYP2R1","ACBD5","ADGRA3","AGBL5","AMN","ARL13B","ARMS2","ATF6","ATP13A2","B3GALTL","BBIP1","BCOR","BMP4","C10orf11","C2","C21orf2","C3","C5orf42","CACNA2D4","CCZ1B","CEP41","CFB","CFH","CLN5","CLN6","CLN8","COL11A1","COL11A2","COL18A1","COL2A1","COL9A1","COL9A2","CROCC","CTSD","CUBN","CYP1B1","CYP27A1","DHX38","DTHD1","EMC1","EVR3","FAM57B","FAM71A","FBLN5","FOXC1","FOXE3","FOXI2","FRAS1","FREM1","FREM2","FSCN2","FUT5","GDF6","GP1BA","GPR143","GRIP1","GRN","HCCS","HMCN1","HTRA1","INVS","IRX5","ITIH2","ITM2B","KCTD7","KIAA1549","KIF7","KIZ","LRP2","MFN2","MFSD8","MT-ATP6","MT-ND1","MT-ND4","MT-ND6","MT-TL1","MTTP","MVK","MYOC","NAALADL1","NEK2","NR2F1","NUMB","OCA2","OPA1","OPA3","OPN1LW","OPN1MW","OR2M7","P3H2","PAX6","PDAP1","PDE6H","PDZD7","PITPNM3","PITX2","PITX3","PLD4","POC1B","PODNL1","POMZP3","PPT1","PRTFDC1","RB1","RCBTB1","RGS9BP","RIMS1","ROM1","SCAPER","SLC24A5","SLC37A3","SLC45A2","SLC7A14","SMOC1","SOX2","SPG7","STRA6","TCTN1","TCTN2","TCTN3","TEAD1","TEX28","TIMM8A","TMEM126A","TMEM216","TMEM67","TPP1","TTC21B","TTLL5","TYR","TYRP1","UBAP1L","UNC119","VAX1","VSX2","WASF3","WFS1","WT1","ZNF513","SLC38A8"],"source":{"id":"PanelApp","version":"1.35"}},{"id":"57acb8268f620364dc61afd3","name":"Clefting","title":"Clefting","genes":["ACTB","ACTG1","AMER1","ANKRD11","ARHGAP31","ASXL1","B3GALTL","BCOR","C2CD3","C5orf42","CC2D2A","CDKN1C","CHD1","CHD7","CHRNG","CHST14","COL11A1","COL11A2","COL2A1","COL9A1","COLEC10","COLEC11","CTCF","CTNND1","DHCR7","DHODH","DLL4","DOCK6","DVL1","DYNC2H1","DYNC2LI1","EBP","EDNRA","EFNB1","EFTUD2","EIF2S3","EOGT","EPG5","ESCO2","EYA1","FAM20C","FGD1","FGFR1","FGFR2","FLNA","FLNB","FOXC2","FRAS1","GJA1","GLI3","GPC3","GRHL3","HDAC8","HYLS1","ICK","IFT140","IFT172","IFT80","IMPAD1","IRF6","KAT6A","KCNJ2","KDM6A","KIAA0586","KIAA1279","KIF7","KMT2D","MAP3K7","MAPRE2","MASP1","MBTPS2","MEIS2","MID1","MKS1","MSX1","NEDD4L","NEK1","NIPBL","NOTCH1","OFD1","PAX3","PHF8","PIEZO2","PIGN","PIGV","POLR1C","POLR1D","PORCN","PTCH1","PVRL1","RBM10","ROR2","RPL5","RPS26","SALL4","SATB2","SCARF2","SEPT9","SF3B4","SHH","SIX1","SIX3","SIX5","SKI","SLC26A2","SMAD3","SMAD4","SMC1A","SMC3","SMS","SNRPB","SON","SOX9","SPECC1L","STAMBP","TBX22","TCOF1","TCTN3","TELO2","TFAP2A","TGDS","TGFB3","TGFBR1","TMCO1","TP63","TRAPPC9","TRIM37","TUBB","TXNL4A","WNT5A","XYLT1","ZEB2","ZIC2","ZIC3","ZSWIM6","ALX3","ATR","B3GALT6","B4GALT7","BUB1B","CDC45","COL9A2","DDX3X","DDX59","DLX4","FOXP2","FTO","GATA3","GNB1","IFT52","KDM1A","LMNA","MED13L","MED25","MEOX1","PHGDH","RARB","RBPJ","RPS28","RYR1","SEC23A","SMG9","TBX1","TBX15","TTC21B","WDR19","WDR34","WDR35","WDR60","ZBTB24","ZMPSTE24","ALG9","ARCN1","ARHGAP29","ATRX","B3GAT3","BMP4","CANT1","CASK","CHSY1","CKAP2L","DIS3L2","DNMT3B","FAM111A","FANCL","FREM2","FSHMD1A","GATA6","GDF1","GMNN","GRIP1","GYPE","HOXA2","KANSL1","KAT6B","KIAA0196","KIF22","LMX1B","MED12","METTL23","NBN","NKX2-5","NKX2-6","NSDHL","PGAP2","PIGA","PIGL","PIK3R2","POMT1","POMT2","PQBP1","PSAT1","PTDSS1","RAI1","RBM8A","RPS17","RPS19","SMOC1","SOX2","STIL","STRA6","STXBP1","SUMO1","TWIST2","UBB","UQCC2","VAX1","WNT3","YAP1"],"source":{"id":"PanelApp","version":"1.3"}},{"id":"55940f0e22c1fc4f7d26e965","name":"Epileptic encephalopathy","title":"Epileptic encephalopathy","genes":["ADSL","ALG13","ARHGEF9","ARX","ATP1A3","ATRX","CDKL5","CHD2","CNTNAP2","DIAPH1","DNM1","DOCK7","DPYD","DYRK1A","EHMT1","FOXG1","GABRA1","GABRB3","GLYCTK","GNAO1","GRIN1","GRIN2A","GRIN2B","GSS","HCN1","HNRNPU","IDH2","IQSEC2","ITPA","KCNA2","KCNB1","KCNJ10","KCNQ2","KCNQ3","KCNT1","KIAA1279","KIAA2022","MAPK10","MBD5","MECP2","MEF2C","MFF","MOGS","NACC1","PCDH19","PIGA","PIGT","PLCB1","PNKP","POLG","PRODH","PRRT2","PURA","QARS","RANBP2","SCN1A","SCN1B","SCN2A","SCN8A","SETD5","SIK1","SLC12A5","SLC13A5","SLC16A2","SLC25A1","SLC25A22","SLC2A1","SLC35A2","SLC6A1","SLC6A19","SLC9A6","SPTAN1","STX1B","STXBP1","SUOX","SYNGAP1","SYNJ1","TCF4","TRAK1","TRPM6","UBE2A","UBE3A","WDR45","WDR45B","WWOX","ZEB2","ABAT","ALDH7A1","ATP1A2","BTD","CACNA1A","CACNA1H","CACNB4","CASK","CBL","CHRNA2","CHRNA4","CHRNB2","CLN3","CLN5","CLN6","CLN8","COL4A1","COL4A2","CRH","CSNK1G1","CSTB","CTSD","DEPDC5","EEF1A2","EFHC1","EPM2A","GABBR2","GABRD","GABRG2","GAMT","GATAD2B","GATM","GLRA1","GLRB","GOSR2","GPHN","HLCS","KCNA1","KCNC1","KCNMA1","KCTD7","LGI1","MAGI2","MFSD8","MOCS1","MOCS2","MT-TL1","NECAP1","NHLRC1","NRXN1","PIGQ","PNPO","PPT1","PRICKLE1","PRICKLE2","RYR3","SCARB2","SCN2B","SCN9A","SLC6A5","SLC6A8","SMS","SRPX2","ST3GAL3","SZT2","TBC1D24","TBL1XR1","TPP1"],"source":{"id":"PanelApp","version":"1.54"}},{"id":"55b75d5b22c1fc05fd2345c9","name":"Arthrogryposis","title":"Arthrogryposis","genes":["ACTA1","ADAMTS10","ADGRG6","ANTXR2","ASXL1","B3GALNT2","B4GAT1","CHAT","CHRNA1","CHRNB1","CHRND","CHRNE","CHRNG","CHST14","CNTNAP1","COL12A1","COL6A1","COL6A2","COL6A3","COLQ","CRLF1","DAG1","DNM2","DOK7","ECEL1","ERCC6","ERCC8","EXOSC3","FAM20C","FBN2","FGFR2","FGFR3","FKBP10","FKRP","FKTN","FLNB","GBA","GBE1","GLDN","GLE1","GMPPB","HSPG2","IRF6","ISPD","KAT6B","KLHL40","KLHL41","KLHL7","LAMA2","LARGE","LMOD3","MTM1","MUSK","MYBPC1","MYH2","MYH3","MYH7","MYH8","NALCN","NEB","PEX1","PEX10","PEX11B","PEX12","PEX13","PEX14","PEX16","PEX19","PEX2","PEX26","PEX3","PEX5","PEX6","PEX7","PFKM","PIEZO2","PLOD1","PLOD2","POMGNT1","POMGNT2","POMK","POMT1","POMT2","POR","PRG4","RAPSN","RIPK4","RYR1","SCARF2","SEPN1","SKI","SLC5A7","SMAD3","SMAD4","TGFB2","TGFB3","TGFBR1","TGFBR2","TMEM5","TNNI2","TNNT1","TNNT3","TPM2","TPM3","TRPV4","TSEN54","UBA1","VIPAS39","VPS33B","ZC4H2","ZMPSTE24","DPM2","ERBB3","ORAI1","PIP5K1C","STIM1","ABHD5","ACADM","ACADS","ACADVL","ADCY6","ADSL","AGL","AGRN","AIMP1","ALG14","ALG2","ANO5","ANXA3","ATP2A1","BAG3","BICD2","BIN1","CAPN3","CAV3","CCDC78","CFL2","CHCHD10","CHKB","CLCF1","CNTN1","COL4A1","COL4A2","COL9A3","CPT2","CRYAB","CTDP1","CUL4B","DES","DMD","DMPK","DNAJB6","DOLK","DPAGT1","DPM1","DPM3","DUX4","DYSF","EGR2","EMD","ETFA","ETFB","ETFDH","FAM111B","FHL1","FKBP14","FLNC","GAA","GARS","GDAP1","GFER","GFPT1","GNE","GRN","HADH","HADHA","HADHB","HNRNPA1","HRAS","IBA57","IGHMBP2","ISCU","ITGA7","KBTBD13","LAMP2","LDB3","LMNA","LPIN1","MATR3","MEGF10","MFN2","MICU1","MPZ","MT-TL1","MTMR1","MYF6","MYH14","MYOT","NEFL","NEK9","PABPN1","PI4KA","PLEC","PNPLA2","POLG","PUS1","PYGM","RBCK1","RRM2B","SCN4A","SGCA","SGCB","SGCD","SGCG","SIL1","SLC22A5","SLC25A4","SLC25A42","SLC35A3","SLC52A3","SMCHD1","STAC3","STIM2","SYNE1","SYNE2","SYT2","TCAP","TIA1","TK2","TMEM43","TRIM32","TSEN2","TSEN34","TTN","UTRN","VCP","YARS2"],"source":{"id":"PanelApp","version":"2.6"}},{"id":"558ac48fbb5a16630dcfeaad","name":"Congenital hearing impairment (profound/severe)","title":"Congenital hearing impairment (profound/severe)","genes":["ABHD12","ACTG1","ADGRV1","ALMS1","ATP6V1B1","BCS1L","BSND","CABP2","CDH23","CHD7","CIB2","CLDN14","CLIC5","CLPP","CLRN1","COCH","COL11A2","COL4A5","COL4A6","DFNA5","DFNB31","DFNB59","DNMT1","DSPP","EDN3","EDNRB","EPS8","ESPN","ESRRB","EYA1","EYA4","FGF3","GATA3","GIPC3","GJB2","GJB3","GPSM2","GRHL2","GRXCR1","HOXA2","HSD17B4","ILDR1","KARS","KCNE1","KCNJ10","KCNQ1","KCNQ4","KIT","LARS2","LHFPL5","LOXHD1","LRTOMT","MARVELD2","MASP1","MITF","MSRB3","MT-RNR1","MT-TS1","MYH14","MYH9","MYO15A","MYO3A","MYO6","MYO7A","OPA1","OSBPL2","OTOA","OTOF","OTOG","P2RX2","PAX2","PAX3","PCDH15","PDZD7","PNPT1","POU3F4","POU4F3","PRPS1","PTPRQ","RDX","SALL1","SALL4","SERPINB6","SIX1","SLC26A4","SLC4A11","SMPX","SNAI2","SOX10","SOX2","STRC","TECTA","TIMM8A","TMC1","TMIE","TMPRSS3","TPRN","TRIOBP","USH1C","USH1G","USH2A","WFS1","ABHD5","ABR","ACAN","ACTB","ADCY1","ALDH1A2","AP3D1","APAF1","APOPT1","AQP4","ARSB","ATF2","ATOH1","ATP1A2","ATP2B2","ATP6V0A4","ATP8B1","AXIN1","BARHL1","BBS1","BBS4","BCAP31","BCR","BDNF","BDP1","BLOC1S5","BLOC1S6","BMP4","BSN","BTD","CACNA1D","CACNB2","CACNG2","CASP3","CATSPER2","CCDC50","CD151","CDKN1B","CDKN2D","CEACAM16","CELSR1","CHRNA9","CISD2","CKB","CLDN11","CLDN9","CLNS1A","COL11A1","COL2A1","COL4A3","COL4A4","COL9A1","COL9A2","COL9A3","CPLX1","CRYM","DDB2","DDR1","DIABLO","DIAPH1","DIAPH3","DIO2","DIO3","DLX2","DLX5","DMD","DVL1","DVL2","DVL3","ELMOD3","EPHB1","EPHB2","EPHB3","ERBB4","ERCC1","ERCC2","ERCC3","ERCC4","ERCC5","ESR2","FABP4","FAM65B","FAS","FBXO2","FGFR1","FGFR2","FGFR3","FIGN","FKBP14","FOXC1","FOXG1","FOXI1","FZD3","FZD6","GBX2","GFER","GFI1","GJA1","GJA1P1","GJB1","GJB4","GJB5","GJB6","GLI3","GPX1","GRID1","GRXCR2","GSTM1","GSTP1","GSTT1","GUSB","HAL","HARS","HARS2","HES1","HES5","HGF","HMX2","HMX3","HOXA1","HOXB1","IFT88","IGF1","ITGA8","JAG1","JAG2","KCNMA1","KITLG","LAMA2","LARGE","LFNG","LHX3","LMO4","LMX1A","LRIG3","LRP2","MAFB","MAP1A","MCOLN3","MIR182","MIR183","MIR96","MKKS","MOS","MPV17","MSX2","MT-TL1","MTAP","MYO1A","MYO1C","MYO1F","NAV2","NDP","NEU1","NEUROD1","NEUROG1","NF1","NLRP3","NOTCH1","NOX3","NOXO1","NR2F1","NR4A3","NTF3","NTN1","NTRK2","NTRK3","OC90","OTOGL","OTOP1","OTOR","OTX1","OTX2","PET100","PHEX","PITX2","PMP22","PNOC","POLD1","POLH","POLR1C","POLR1D","POU1F1","PROP1","PRRX1","PRRX2","PTK7","RARA","RARB","RARG","RASA1","RPGR","RPS6KA3","S1PR2","SCARB2","SCRIB","SDHD","SERAC1","SIX5","SLC12A2","SLC12A6","SLC12A7","SLC17A8","SLC19A2","SLC1A3","SLC26A5","SLC29A3","SLC30A4","SLC33A1","SLC4A7","SLC9A1","SLITRK6","SMS","SOBP","SOD1","SOX9","SPINK5","SPRY2","ST3GAL5","SYNE4","SYNJ2","TBC1D24","TBL1X","TBX1","TBX10","TCF21","TCOF1","TGFA","TGFB2","THRA","THRB","TJP2","TMPRSS5","TNC","TNFRSF11B","TRMU","TRPV4","TSHR","TSPEAR","TUB","TYRP1","UCN","VANGL2","XPA","XPC","YAP1"],"source":{"id":"PanelApp","version":"1.8"}},{"id":"55928cf522c1fc4f7d26e960","name":"Mitochondrial disorders","title":"Mitochondrial disorders","genes":["AARS2","ABAT","ABCB7","ACAD9","ACO2","ADCK3","ADCK4","AFG3L2","AGK","AIFM1","ANO10","APOPT1","APTX","ATAD3A","ATPAF2","BCS1L","BOLA3","BTD","C10orf2","C12orf65","C19orf12","CHCHD10","CHKB","CLPB","CLPP","COQ2","COQ4","COQ6","COQ9","COX10","COX14","COX15","COX20","COX6A1","COX6B1","COX7B","CYC1","DARS","DARS2","DGUOK","DHTKD1","DLAT","DLD","DNA2","DNM1L","EARS2","ECHS1","ELAC2","ETFDH","ETHE1","FARS2","FASTKD2","FBXL4","FH","FLAD1","FOXRED1","GARS","GATM","GDAP1","GFER","GFM1","GLRX5","GLUD1","GTPBP3","HCCS","HIBCH","HLCS","HSPD1","IBA57","KARS","LARS2","LIAS","LIPT1","LONP1","LRPPRC","MARS2","MFF","MFN2","MGME1","MPV17","MRPS22","MT-ATP6","MT-ATP8","MT-CO1","MT-CO2","MT-CO3","MT-CYB","MT-ND1","MT-ND2","MT-ND3","MT-ND4","MT-ND4L","MT-ND5","MT-ND6","MT-RNR1","MT-TA","MT-TC","MT-TD","MT-TE","MT-TF","MT-TG","MT-TH","MT-TI","MT-TK","MT-TL1","MT-TL2","MT-TM","MT-TN","MT-TP","MT-TQ","MT-TR","MT-TS1","MT-TS2","MT-TV","MT-TW","MT-TY","MTO1","NARS2","NDUFA1","NDUFA10","NDUFA11","NDUFA2","NDUFAF1","NDUFAF2","NDUFAF3","NDUFAF4","NDUFAF5","NDUFAF6","NDUFB11","NDUFB3","NDUFS1","NDUFS2","NDUFS3","NDUFS4","NDUFS6","NDUFS7","NDUFS8","NDUFV1","NDUFV2","NFU1","NUBPL","OPA1","OPA3","PC","PDHA1","PDHB","PDHX","PDP1","PDSS1","PDSS2","PET100","PMPCA","PNPT1","POLG","POLG2","PPA2","PYCR1","RARS2","RMND1","RNASEH1","RRM2B","SACS","SAMHD1","SARS2","SCO1","SCO2","SDHA","SDHAF1","SDHB","SDHD","SERAC1","SLC19A2","SLC19A3","SLC25A19","SLC25A22","SLC25A26","SLC25A3","SLC25A38","SLC25A4","SLC25A46","SPG7","SUCLA2","SUCLG1","SURF1","TACO1","TANGO2","TAZ","TIMM8A","TK2","TMEM70","TPK1","TRMU","TRNT1","TSFM","TTC19","TYMP","UQCRQ","VARS2","YARS2","COA3","COA6","CYCS","DNAJC19","G6PC","IARS2","MT-RNR2","MT-TT","NDUFA4","NDUFB9","PARS2","PDPR","QARS","TARS2","TMEM126B","TUFM","UQCRB","XPNPEP3","ALDH1B1","ATAD3B","ATP5A1","ATP5B","ATP5C1","ATP5E","ATP5G1","ATP5G2","ATP5G3","ATP5I","ATP5J","ATP5O","BOLA1","BOLA2","CARS2","CEP89","COA1","COA5","COQ7","COX4I1","COX4I2","COX5A","COX5B","COX6C","COX7A1","COX7A2","COX7B2","COX7C","COX8A","DLST","DNM2","DYM","ECSIT","FBP2","FDX1L","FXN","GATB","GATC","GFM2","HARS2","HSPA9","ISCA2","ISCU","LACTB","LARS","LETM1","LIPT2","LYRM4","LYRM7","MPC1","MRPL12","MRPL3","MRPL40","MRPL44","MRPS16","MRPS2","MRPS23","MRPS7","MTFMT","MTPAP","NADK2","NDUFA12","NDUFA13","NDUFA3","NDUFA5","NDUFA6","NDUFA7","NDUFA8","NDUFA9","NDUFAB1","NDUFB1","NDUFB10","NDUFB2","NDUFB4","NDUFB5","NDUFB6","NDUFB7","NDUFB8","NDUFC1","NDUFC2","NDUFS5","NDUFV3","NFS1","NNT","OGDH","OXA1L","PANK2","PDK1","PDK2","PDK3","PDK4","PDP2","PITRM1","POP1","PTCD1","PUS1","QRSL1","SDHAF2","SDHC","SFXN4","SLC25A1","SLC25A12","SLC25A13","SLC25A40","SRRT","STAT2","SUCLG2","TIMM44","TMEM126A","TRAP1","TRIT1","TRMT10C","TRMT5","TXN2","UQCC2","UQCC3","UQCRC1","UQCRC2","UQCRFS1","UQCRH","WARS2"],"source":{"id":"PanelApp","version":"1.47"}},{"id":"5693952f22c1fc251660fb1e","name":"Unexplained skeletal dysplasia","title":"Unexplained skeletal dysplasia","genes":["ABCC9","ACAN","ACP5","ACVR1","ADAMTSL2","AGA","AGPS","ALG12","ALG3","ALG9","ALPL","ALX3","ALX4","AMER1","ANKH","ANKRD11","ANO5","ANTXR2","ARHGAP31","ARSB","ARSE","ASXL1","ATP6V0A2","ATP7A","B3GALT6","B3GAT3","B4GALT7","B9D1","BHLHA9","BMP1","BMPER","BMPR1B","C21orf2","C2CD3","CA2","CANT1","CASR","CC2D2A","CDC45","CDH3","CDKN1C","CDT1","CEP120","CEP290","CHST14","CHST3","CHSY1","CLCN5","CLCN7","COL10A1","COL11A1","COL11A2","COL1A1","COL1A2","COL2A1","COL9A1","COL9A2","COL9A3","COLEC11","COMP","CREBBP","CRTAP","CSPP1","CTSA","CTSC","CTSK","CUL7","CYP27B1","DDR2","DHCR24","DHODH","DIS3L2","DLL3","DLX3","DLX5","DMP1","DNMT3A","DOCK6","DPM1","DVL1","DYM","DYNC2H1","DYNC2LI1","EBP","EFNB1","EFTUD2","EIF2AK3","ENPP1","EOGT","ERF","ESCO2","EVC","EVC2","EXT1","EXT2","EZH2","FAM111A","FAM20C","FAM58A","FBN1","FBN2","FERMT3","FGF10","FGF16","FGF23","FGFR1","FGFR2","FGFR3","FIG4","FKBP10","FLNA","FLNB","FUCA1","GALNS","GALNT3","GDF5","GDF6","GHR","GJA1","GLB1","GLI3","GNAS","GNPAT","GNPTAB","GNPTG","GNS","GORAB","GPC6","GPX4","GSC","GUSB","HDAC4","HDAC8","HES7","HGSNAT","HOXA13","HOXD13","HPGD","HSPG2","ICK","IDH1","IDS","IDUA","IFITM5","IFT122","IFT140","IFT172","IFT43","IFT52","IFT80","IFT81","IHH","IKBKG","IL11RA","IL1RN","IMPAD1","INPPL1","KIF22","KIF7","LBR","LEMD3","LIFR","LMBR1","LMNA","LMX1B","LONP1","LPIN2","LRP4","LRP5","MAFB","MAN2B1","MATN3","MEGF8","MEOX1","MESP2","MGP","MIR17HG","MKS1","MMP13","MMP2","MNX1","MPDU1","MSX2","MYCN","NAGLU","NANS","NEK1","NEU1","NF1","NFIX","NIN","NIPBL","NKX3-2","NLRP3","NOG","NOTCH2","NPR2","NSD1","NSDHL","OBSL1","OFD1","ORC1","ORC4","ORC6","OSTM1","P3H1","PAPSS2","PCNT","PCYT1A","PDE4D","PEX5","PEX7","PGM3","PHEX","PHGDH","PIGT","PIGV","PIK3R1","PITX1","PLOD2","PLS3","POC1A","POLR1A","POLR1C","POLR1D","POP1","POR","PPIB","PRKAR1A","PSAT1","PSPH","PTDSS1","PTH1R","PTHLH","PTPN11","PYCR1","RAB23","RASGRP2","RBM8A","RECQL4","RFT1","RMRP","RNU4ATAC","ROR2","RPGRIP1L","RUNX2","SALL1","SALL4","SBDS","SCARF2","SEC24D","SERPINF1","SERPINH1","SETD2","SF3B4","SGSH","SH3BP2","SH3PXD2B","SHOX","SKI","SLC17A5","SLC26A2","SLC29A3","SLC34A3","SLC35D1","SLC39A13","SLCO2A1","SMAD3","SMAD4","SMARCAL1","SMC1A","SMC3","SNRPB","SNX10","SOST","SOX9","SUMF1","TALDO1","TBCE","TBX15","TBX3","TBX4","TBX5","TBX6","TBXAS1","TCF12","TCIRG1","TCOF1","TCTEX1D2","TCTN2","TCTN3","TERT","TGFB1","TGFB2","TGFBR1","TGFBR2","THPO","TMCO1","TMEM165","TMEM216","TMEM231","TMEM38B","TMEM67","TNFRSF11A","TNFRSF11B","TNFSF11","TP63","TRAPPC2","TREM2","TRIP11","TRPS1","TRPV4","TTC21B","TWIST1","TWIST2","TYROBP","WDR19","WDR34","WDR35","WDR60","WISP3","WNT1","WNT10B","WNT5A","WNT7A","XRCC4","XYLT1","XYLT2","ZIC1","ZMPSTE24","ACVR2B","ADGRV1","ADI1","AFF3","AHI1","AIPL1","AKT1","ALX1","ARID1A","ARID1B","ARL13B","ARL6","ATXN10","B9D2","BANF1","BBS1","BBS10","BBS12","BBS2","BBS4","BBS5","BBS7","BBS9","BMP2","C2orf71","C5orf42","CCDC28B","CCDC39","CCDC40","CCDC8","CDC6","CDH23","CEP164","CEP41","CFTR","CLRN1","COG1","COL12A1","COL5A1","CRB1","CREB3L1","CRELD1","CRX","CYP26B1","DFNB31","DLX6","DNAAF1","DNAAF2","DNAAF3","DNAH11","DNAH5","DNAI1","DNAI2","DNAL1","DOLPP1","DPM2","DPM3","DSPP","EP300","ESR1","ETF1","FBLN1","FBXW4","FGF8","FGF9","FMN1","FOXC1","FOXH1","FZD2","GDF1","GLIS2","GREM1","GUCY2D","HDAC5","HOXA11","HYLS1","IDH2","IFT88","IMPDH1","INVS","IQCB1","KAT6A","KAT6B","KCNJ13","LCA5","LEFTY2","LFNG","LOXL3","LRAT","LRP6","MAN2C1","MKKS","MMP14","MMP9","MTAP","MYO7A","NBAS","NEK8","NKX2-5","NME8","NODAL","NPHP1","NPHP3","NPHP4","NPPC","P4HB","PAM16","PAX3","PCDH15","PHF6","PIN1","PIR","PKD2","PKHD1","PLEKHM1","PLK4","PLOD1","PTPRQ","RAB33B","RAB3GAP2","RAD21","RBPJ","RD3","RDH12","RPE65","RPGR","RPGRIP1","RSPH4A","RSPH9","SCNN1A","SCNN1B","SCNN1G","SDCCAG8","SHFM1","SHH","SLCO5A1","SMARCA2","SMARCA4","SMARCB1","SMARCE1","SOX11","SP7","SPARC","SPATA7","SPECC1L","SULF1","TAPT1","TCTN1","TDP2","TMEM138","TMEM237","TNXB","TOPORS","TRIM32","TRMT10A","TSC1","TSC2","TTC8","TULP1","UMOD","USH1C","USH1G","USH2A","USP9X","VAC14","VDR","VHL","WDPCP","WNT3","XPNPEP3","ZBTB16","ZIC3","ZNF423"],"source":{"id":"PanelApp","version":"1.46"}},{"id":"5763f1518f620350a22bccdb","name":"Undiagnosed metabolic disorders","title":"Undiagnosed metabolic disorders","genes":["AARS2","AASS","ABAT","ABCA1","ABCB11","ABCB4","ABCB7","ABCD1","ABCD4","ABHD5","ACAD8","ACAD9","ACADM","ACADS","ACADSB","ACADVL","ACAT1","ACO2","ACOX1","ACSF3","ADAR","ADCK3","ADCK4","AFG3L2","AGA","AGK","AGL","AGPS","AGXT","AIFM1","AKR1D1","ALAD","ALDH18A1","ALDH4A1","ALDH5A1","ALDH6A1","ALDH7A1","ALDOA","ALDOB","ALG1","ALG11","ALG12","ALG3","ALG6","ALG8","ALG9","AMACR","AMN","AMT","ANO10","APOA1","APOA5","APOC2","APOE","APOPT1","APRT","APTX","ARG1","ARSA","ARSB","ARSE","ASL","ASPA","ASS1","ATIC","ATP13A2","ATP6AP1","ATP6V0A2","ATP7A","ATP7B","ATP8B1","ATPAF2","AUH","B3GALNT2","B3GALT6","B3GALTL","B3GAT3","B4GALT1","B4GALT7","BAAT","BCKDHA","BCKDHB","BCKDK","BCS1L","BOLA3","BTD","C10orf2","C12orf65","C19orf12","CA5A","CAT","CBS","CCDC115","CHCHD10","CHKB","CHST14","CHST3","CHST6","CHSY1","CLN3","CLN5","CLN6","CLN8","CLPB","CLPP","CNNM2","COG1","COG4","COG5","COG6","COG7","COG8","COQ2","COQ4","COQ6","COQ9","COX10","COX14","COX15","COX20","COX6A1","COX6B1","COX7B","CP","CPOX","CPS1","CPT1A","CPT2","CTH","CTNS","CTSA","CTSD","CTSK","CUBN","CYC1","CYP27A1","D2HGDH","DARS","DARS2","DBH","DBT","DDC","DGUOK","DHFR","DHTKD1","DLAT","DLD","DNA2","DNAJC12","DNAJC5","DNM1L","DOLK","DPAGT1","DPM1","DPM2","DPYD","DPYS","DYM","EARS2","EBP","ECHS1","ELAC2","ENO3","EPM2A","ETFA","ETFB","ETFDH","ETHE1","EXT1","EXT2","FA2H","FAH","FAR1","FARS2","FASTKD2","FBP1","FBXL4","FH","FKRP","FKTN","FMO3","FOLR1","FOXRED1","FUCA1","G6PC","G6PC3","GAA","GABRG2","GALC","GALE","GALK1","GALNS","GALNT3","GALT","GARS","GATM","GBA","GBE1","GCDH","GCH1","GCLC","GDAP1","GFER","GFM1","GFPT1","GIF","GLA","GLB1","GLDC","GLRA1","GLRX5","GLUD1","GLYCTK","GM2A","GMPPB","GNE","GNPAT","GNPTAB","GNPTG","GNS","GPHN","GRHPR","GSS","GTPBP3","GUSB","GYG1","GYS1","GYS2","HADHA","HADHB","HAMP","HCCS","HCFC1","HEXA","HEXB","HFE","HFE2","HGD","HGSNAT","HIBCH","HLCS","HMBS","HMGCL","HMGCS2","HOGA1","HPRT1","HSD17B4","HSD3B7","HSPD1","HYAL1","IARS2","IBA57","IDH2","IDS","IDUA","ISPD","ITPA","IVD","KARS","L2HGDH","LAMP2","LARGE","LARS2","LCAT","LCT","LDHA","LIAS","LIPA","LIPT1","LMBRD1","LONP1","LPIN1","LPL","LRPPRC","MAN1B1","MAN2B1","MARS2","MAT1A","MCCC1","MCCC2","MCEE","MCOLN1","MFF","MFN2","MFSD8","MGAT2","MGME1","MLYCD","MMAA","MMAB","MMACHC","MMADHC","MOGS","MPDU1","MPI","MPV17","MRPS22","MSMO1","MT-ATP6","MT-ATP8","MT-CO1","MT-CO2","MT-CO3","MT-CYB","MT-ND1","MT-ND2","MT-ND3","MT-ND4","MT-ND4L","MT-ND5","MT-ND6","MT-RNR1","MT-TA","MT-TC","MT-TD","MT-TE","MT-TF","MT-TG","MT-TH","MT-TI","MT-TK","MT-TL1","MT-TL2","MT-TM","MT-TN","MT-TP","MT-TQ","MT-TR","MT-TS1","MT-TS2","MT-TV","MT-TW","MT-TY","MTHFR","MTO1","MTR","MTRR","MTTP","MUT","NAGA","NAGLU","NAGS","NARS2","NDUFA1","NDUFA10","NDUFA11","NDUFA2","NDUFAF1","NDUFAF2","NDUFAF3","NDUFAF4","NDUFAF5","NDUFAF6","NDUFB11","NDUFB3","NDUFS1","NDUFS2","NDUFS3","NDUFS4","NDUFS6","NDUFS7","NDUFS8","NDUFV1","NDUFV2","NEU1","NFU1","NHLRC1","NPC1","NPC2","NSDHL","NT5C3A","NUBPL","OAT","OPA1","OPA3","OTC","OXCT1","PAH","PC","PCBD1","PCCA","PCCB","PDHA1","PDHB","PDHX","PDP1","PDSS1","PDSS2","PET100","PEX1","PEX10","PEX11B","PEX12","PEX13","PEX14","PEX16","PEX19","PEX2","PEX26","PEX3","PEX5","PEX6","PEX7","PFKM","PGAP2","PGAP3","PGK1","PGM1","PGM3","PHKA1","PHKA2","PHKB","PHKG2","PHYH","PIGA","PIGL","PIGN","PIGO","PIGT","PIGV","PLA2G6","PMM2","PMPCA","PNPO","PNPT1","POLG","POLG2","POMGNT1","POMGNT2","POMT1","POMT2","PPA2","PPOX","PPT1","PRKAG2","PRODH","PSAP","PUS1","PYCR1","PYGL","PYGM","QDPR","RANBP2","RARS2","RBCK1","RFT1","RMND1","RNASEH1","RRM2B","SACS","SAMHD1","SAR1B","SARS2","SCO1","SCO2","SCP2","SDHA","SDHAF1","SDHB","SDHD","SEC23B","SERAC1","SGSH","SI","SLC16A1","SLC17A5","SLC19A2","SLC19A3","SLC22A5","SLC25A1","SLC25A13","SLC25A15","SLC25A19","SLC25A20","SLC25A22","SLC25A26","SLC25A3","SLC25A38","SLC25A4","SLC25A46","SLC2A2","SLC30A10","SLC35C1","SLC35D1","SLC37A4","SLC39A14","SLC39A4","SLC39A8","SLC40A1","SLC46A1","SLC52A2","SLC52A3","SLC5A1","SLC6A19","SLC6A20","SLC7A7","SMPD1","SPG7","SRD5A3","SSR4","ST3GAL5","SUCLA2","SUCLG1","SUMF1","SUOX","SURF1","TACO1","TALDO1","TAZ","TFR2","TIMM8A","TK2","TMEM165","TMEM5","TMEM70","TPK1","TPP1","TRIM37","TRMU","TRNT1","TRPM6","TSFM","TTC19","TUSC3","TYMP","UGT1A1","UMPS","UQCRQ","UROD","UROS","VARS2","WDR45","XDH","XYLT1","XYLT2","YARS2","ABCG5","ABCG8","ABHD12","ACY1","ADA","ADSL","ALAS2","ALDH3A2","ALG13","ALPL","APOB","ASAH1","CISD2","CLDN16","CLDN19","CSTB","CTSC","CYP7B1","DCXR","DHCR24","DHCR7","DHDDS","DHODH","DNAJC19","DPM3","FECH","FGFR2","FTCD","FXN","GAMT","GK","GLUL","GNMT","HADH","HPD","HPS1","HSD17B10","ISCU","LBR","LDLR","LDLRAP1","LIPC","MAGT1","MANBA","MAOA","MOCS1","MOCS2","MRPL3","MTFMT","MTPAP","MVK","NDUFB9","OCRL","OPLAH","PANK2","PCK1","PCSK9","PEPD","PGAM2","PHGDH","PINK1","PNP","POR","PRPS1","PSAT1","PSPH","PTS","RBP4","RNASEH2A","RNASEH2B","RNASEH2C","RNASET2","RYR1","SC5D","SDHAF2","SDHC","SETX","SKIV2L","SLC12A3","SLC18A2","SLC25A12","SLC2A1","SLC35A2","SLC3A1","SLC6A3","SLC6A8","SLC7A9","SPR","SPTLC1","SPTLC2","ST3GAL3","STS","TAT","TCN2","TH","TREX1","TTC37","TTPA","TUFM","UMOD","UROC1","VIPAS39","VKORC1","VPS33B","WFS1","ABCG2","AHCY","ALG14","ALG2","AMPD1","AOX1","ARSG","ATP5A1","ATP5E","ATXN7","BCAT1","BCAT2","C1GALT1C1","CD320","CETP","CLPS","CNDP1","COA5","COX4I2","CYP7A1","DHFRL1","DLST","DMGDH","DPEP1","EGF","FOLR2","FOLR3","FXYD2","GALNT12","GCSH","GGT1","GLS","HAL","HARS2","HYKK","KHK","KYNU","LFNG","LIPI","MRPS16","MTHFD1","NAT8L","NDUFA12","NDUFA9","NT5C","NUP62","OGDH","PDK1","PDK2","PDK3","PDK4","PDP2","PDPR","PDXK","PHKG1","PHYKPL","PIGM","PNLIP","PPM1B","PPM1K","PREPL","PTPRZ1","RPIA","SARDH","SCARB1","SHPK","SLC22A4","SLC25A2","SLC27A5","SLC35A1","SLC36A2","SLC52A1","SLCO1B1","SLCO1B3","SUCLG2","SUGCT","TCN1","TDO2","TM6SF2","TMEM126A","TPMT","TREH","UPB1","UQCRB","USF1"],"source":{"id":"PanelApp","version":"1.51"}},{"id":"5899ea6e8f62032082874547","name":"BRIDGE_SPEED_NEURO_v2.0_20160416","title":"BRIDGE_SPEED_NEURO_v2.0_20160416","genes":["AAAS","ABAT","ABCB7","ABCC9","ABCD1","ABHD12","ABHD5","ACAD9","ACADM","ACADS","ACADVL","ACAT1","ACOX1","ACTB","ACTG1","ACY1","ADAR","ADCK3","ADCY5","ADNP","ADSL","AFF2","AFF4","AFG3L2","AGA","AGK","AGL","AGPS","AGXT","AHDC1","AIRE","AKR1D1","AKT1","ALAD","ALDH18A1","ALDH1A3","ALDH3A2","ALDH4A1","ALDH5A1","ALDH7A1","ALDOA","ALDOB","ALG1","ALG12","ALG3","ALG6","ALG8","ALMS1","ALPL","ALS2","ALX1","ALX3","AMER1","AMPD2","AMT","ANKH","ANKRD11","ANO10","ANO3","ANO5","ANTXR1","AP1S2","AP4B1","AP4E1","AP4M1","AP4S1","AP5Z1","APOPT1","APTX","AR","ARFGEF2","ARG1","ARHGEF9","ARID1A","ARID1B","ARL6","ARSA","ARSB","ARSE","ARX","ASAH1","ASL","ASPA","ASPM","ASS1","ASXL1","ATCAY","ATIC","ATL1","ATM","ATN1","ATP13A2","ATP1A3","ATP6AP2","ATP7A","ATP7B","ATP8B1","ATRX","ATXN1","ATXN10","ATXN2","ATXN3","ATXN7","AUH","AUTS2","B3GALT6","B4GALNT1","B4GALT7","BBS1","BBS10","BBS12","BBS2","BBS4","BBS5","BBS7","BBS9","BCAP31","BCKDHA","BCKDHB","BCL11A","BCOR","BCS1L","BEAN1","BICD2","BIN1","BLM","BMP4","BMPER","BRAF","BRAT1","BRCA1","BRCA2","BRIP1","BRWD3","BSCL2","BSND","BTD","BUB1B","C12orf65","C19orf12","C2orf71","C5orf42","C9orf72","CA2","CA8","CACNA1A","CACNA1S","CACNB4","CAMTA1","CASC5","CASK","CASR","CBL","CBS","CC2D1A","CC2D2A","CCBE1","CCDC39","CCDC88C","CCND2","CCT5","CDC6","CDH15","CDK5RAP2","CDKL5","CDKN1C","CDON","CDT1","CENPJ","CEP152","CEP290","CEP41","CEP57","CHAMP1","CHD2","CHD7","CHRNA2","CHRNA4","CHRNB2","CHRNG","CHST14","CHST3","CHUK","CIB2","CISD2","CKAP2L","CLCN2","CLDN19","CLN3","CLN5","CLN6","CLN8","CLPB","CNTNAP2","COASY","COG1","COG4","COG7","COG8","COL11A2","COL1A1","COL2A1","COL4A1","COL4A2","COL4A3BP","COL9A3","COLEC11","COQ2","COQ9","COX10","COX15","COX6B1","COX7B","CP","CPA6","CPS1","CRB1","CRB2","CREBBP","CSF1R","CSPP1","CSTB","CTC1","CTCF","CTDP1","CTNNB1","CTNS","CTSA","CTSD","CUL4B","CUL7","CYC1","CYP27A1","CYP2U1","CYP7B1","DAG1","DARS","DARS2","DBT","DCHS1","DCTN1","DCX","DDC","DDHD1","DDHD2","DDOST","DDR2","DDX11","DDX3X","DEAF1","DEPDC5","DHCR24","DHCR7","DHFR","DIS3L2","DKC1","DLAT","DLD","DLG3","DMD","DMP1","DMPK","DNM2","DNMT1","DNMT3A","DNMT3B","DOCK8","DOLK","DPAGT1","DPM1","DRD2","DYM","DYNC1H1","DYRK1A","EBP","EDNRB","EFHC1","EFNB1","EFTUD2","EGR2","EHMT1","EIF2AK3","EIF4G1","ELAC2","ELOVL4","ELOVL5","EP300","EPG5","EPM2A","ERCC1","ERCC2","ERCC3","ERCC4","ERCC5","ERCC6","ERCC6L2","ERCC8","ERLIN2","ESCO2","ETFA","ETFB","ETFDH","ETHE1","EVC","EVC2","EXOSC3","EXT1","EYA1","EZH2","FA2H","FAH","FAM111A","FAM111B","FAM126A","FAM134B","FAM20C","FANCA","FANCC","FANCD2","FANCE","FAR1","FAT4","FBN1","FBN2","FBP1","FBXL4","FBXO7","FGD1","FGD4","FGF14","FGF3","FGFR1","FGFR2","FGFR3","FH","FHL1","FIG4","FKBP14","FKRP","FKTN","FLNA","FLNB","FLVCR1","FLVCR2","FMR1","FOLR1","FOXG1","FOXP1","FOXP3","FOXRED1","FRAS1","FREM1","FREM2","FRMD7","FTCD","FTL","FTSJ1","FUCA1","FXN","GAA","GABRA1","GABRB3","GABRG2","GAD1","GALC","GALE","GALK1","GALNS","GALT","GAMT","GATA6","GATM","GBA","GBA2","GCDH","GCH1","GDAP1","GDI1","GFAP","GFM1","GHR","GJA1","GJB1","GJC2","GK","GLB1","GLDC","GLE1","GLI2","GLI3","GLIS3","GLUD1","GLUL","GM2A","GMPPA","GMPPB","GNAL","GNAO1","GNAS","GNPAT","GNPTAB","GNPTG","GNS","GOSR2","GPR56*","GPR98*","GPSM2","GRIA3","GRID2","GRIK2","GRIN2A","GRIN2B","GRM1","GRN","GTF2H5","GTPBP3","GUSB","HADH","HADHA","HAX1","HCCS","HCFC1","HCN1","HDAC4","HDAC8","HEXA","HEXB","HGSNAT","HIBCH","HINT1","HK1","HLCS","HMGCL","HMGCS2","HNF1B","HNF4A","HNRNPU","HOXA1","HPRT1","HRAS","HSD17B10","HSD17B4","HSD3B7","HSPD1","HSPG2","HTT","HUWE1","HYAL1","HYLS1","IDS","IDUA","IER3IP1","IFIH1","IFT140","IFT172","IGF1","IGF1R","IGF2","IGHMBP2","IGSF1","IKBKG","IL1RAPL1","INPP5E","IQSEC2","ISPD","ITGA7","ITPR1","IVD","KANSL1","KARS","KAT6A","KAT6B","KBTBD13","KCNA1","KCNA2","KCNB1","KCNC1","KCNC3","KCND3","KCNJ10","KCNJ11","KCNQ2","KCNQ3","KCNT1","KCTD7","KDM5C","KDM6A","KIAA0196","KIAA1279","KIAA2022","KIF11","KIF1A","KIF1C","KIF5A","KIF7","KIRREL3","KLHL40","KMT2A","KMT2B","KMT2D","KRAS","KRIT1","L1CAM","L2HGDH","LAMA1","LAMA2","LAMC3","LAMP2","LARGE","LBR","LDB3","LEPRE1*","LGI1","LHX3","LHX4","LIG4","LITAF","LMBRD1","LMNA","LRP2","LRP5","LRPPRC","LRRK2","LYST","MAB21L2","MAF","MAGEL2","MAN2B1","MANBA","MAOA","MAP2K1","MAP2K2","MAPT","MARS2","MASP1","MC2R","MCCC1","MCCC2","MCEE","MCOLN1","MCPH1","MECP2","MED12","MED17","MEF2C","MEGF10","MEGF8","MFSD8","MGAT2","MGP","MICU1","MID1","MITF","MKKS","MKS1","MLC1","MLYCD","MMAA","MMAB","MMACHC","MMADHC","MNX1","MOCS1","MOCS2","MPDU1","MPI","MPLKIP","MPV17","MPZ","MRE11A","MT-ATP6","MT-ND1","MT-ND4","MT-TK","MTHFR","MTM1","MTMR2","MTO1","MTPAP","MTR","MTRR","MTTP","MUT","MYBPC1","MYCN","MYH3","MYO5A","MYO7A","NAA10","NAGA","NAGLU","NAGS","NALCN","NBN","NDE1","NDP","NDRG1","NDUFA1","NDUFS1","NDUFS4","NDUFS7","NDUFS8","NDUFV1","NEFL","NEU1","NF1","NFIX","NFU1","NGLY1","NHEJ1","NHLRC1","NHS","NIPA1","NIPBL","NKX2-1","NKX2-5","NOP56","NPC1","NPC2","NPHP1","NR2F1","NRAS","NSD1","NSDHL","NT5C2","NTRK1","NUBPL","OBSL1","OCRL","OFD1","OPA3","OPHN1","ORC1","ORC4","ORC6","OTC","OTX2","OXCT1","PACS1","PAFAH1B1","PAH","PAK3","PALB2","PANK2","PAPSS2","PARK2","PARK7","PAX2","PAX6","PAX8","PC","PCBD1","PCCA","PCCB","PCDH19","PCNT","PDCD10","PDE4D","PDGFB","PDGFRB","PDHA1","PDHX","PDSS2","PDYN","PEPD","PEX1","PEX10","PEX12","PEX13","PEX14","PEX16","PEX19","PEX2","PEX26","PEX3","PEX5","PEX6","PEX7","PGAP1","PGAP2","PGAP3","PGK1","PGM1","PHF6","PHF8","PHGDH","PHOX2B","PIEZO2","PIGA","PIGL","PIGN","PIGO","PIGV","PIK3CA","PIK3R1","PIK3R2","PINK1","PITX3","PLA2G6","PLCB1","PLEC","PLK4","PLOD1","PLP1","PMM2","PMP22","PNKD","PNKP","PNPLA6","PNPO","PNPT1","POC1A","POGZ","POLG","POLR3A","POLR3B","POMGNT1","POMGNT2","POMT1","POMT2","PORCN","POU1F1","PPP2R1A","PPP2R2B","PPP2R5D","PPT1","PQBP1","PRICKLE1","PRICKLE2","PRKAR1A","PRKCG","PRKRA","PROP1","PRPS1","PRRT2","PRSS12","PRX","PSAP","PSEN1","PSMB8","PSPH","PTCH1","PTCHD1","PTDSS1","PTEN","PTF1A","PTH1R","PTPN11","PTS","PURA","PYCR1","QARS","QDPR","RAB18","RAB23","RAB39B","RAB3GAP1","RAB3GAP2","RAD21","RAF1","RAI1","RAPSN","RARB","RARS2","RAX","RBM8A","RECQL4","REEP1","REEP2","RELN","RET","RFX6","RNASEH2A","RNASEH2B","RNASEH2C","RNASET2","RNF216","RNU4ATAC","ROGDI","ROR2","RPGRIP1L","RPS6KA3","RTEL1","RTN2","RTTN","RYR1","SACS","SALL1","SAMHD1","SATB2","SBDS","SBF2","SC5D","SCARB2","SCN11A","SCN1A","SCN1B","SCN2A","SCN4A","SCN8A","SCN9A","SCO1","SCO2","SDHA","SDHAF1","SETBP1","SETD5","SETX","SF3B4","SGCE","SGSH","SH3TC2","SHANK3","SHH","SHOC2","SIGMAR1","SIK1","SIL1","SIX3","SKI","SLC12A6","SLC13A5","SLC16A2","SLC17A5","SLC19A3","SLC20A2","SLC22A5","SLC25A15","SLC25A20","SLC25A22","SLC2A1","SLC2A10","SLC2A2","SLC33A1","SLC35A2","SLC35C1","SLC46A1","SLC4A1","SLC4A4","SLC52A3","SLC5A5","SLC6A1","SLC6A17","SLC6A19","SLC6A3","SLC6A5","SLC6A8","SLC9A6","SLX4","SMARCA2","SMARCA4","SMARCAL1","SMARCB1","SMC1A","SMOC1","SMPD1","SNCA","SNRPB","SNX14","SOS1","SOX10","SOX2","SOX3","SPAST","SPEG","SPG11","SPG20","SPG21","SPG7","SPR","SPRED1","SPTAN1","SPTBN2","SPTLC2","SRCAP","SRD5A3","ST3GAL3","ST3GAL5","STAMBP","STIL","STRA6","STRADA","STS","STUB1","STX1B","STXBP1","SUCLG1","SUMF1","SURF1","SYNE1","SYNGAP1","SYNJ1","SYP","TAF1","TARDBP","TAT","TAZ","TBC1D24","TBCE","TBP","TBX1","TBX3","TCF4","TCOF1","TECPR2","TFAP2A","TFAP2B","TFG","TGFBR1","TGIF1","TGM6","TH","THAP1","THRA","TIMM8A","TK2","TMCO1","TMEM165","TMEM237","TMEM240","TMEM5","TMEM67","TMEM70","TOR1A","TP63","TPP1","TRAPPC9","TREX1","TRIM32","TRIM37","TRMT10A","TSC1","TSC2","TSEN54","TSHB","TSHR","TSPAN7","TTBK2","TTC19","TTC8","TTPA","TUBA1A","TUBA8","TUBB","TUBB2A","TUBB2B","TUBB4A","TUBGCP6","TUSC3","TWIST1","TYR","UBE2A","UBE3A","UBE3B","UBR1","UMPS","UPF3B","UROC1","VAMP1","VDR","VIPAS39","VLDLR","VPS13B","VPS35","WDPCP","WDR45","WDR60","WDR62","WNT5A","WWOX","XPA","XRCC4","ZBTB20","ZC4H2","ZDHHC9","ZEB2","ZFP57","ZFYVE26","ZIC2","ZMPSTE24","ZNF711"],"source":{"id":"PanelApp","version":"0.3"}},{"id":"558aa423bb5a16630e15b63c","name":"Intellectual disability","title":"Intellectual disability","genes":["AARS","AASS","ABCC9","ABCD1","ABCD4","ABHD5","ACAD9","ACADM","ACO2","ACOX1","ACSL4","ACTB","ACTG1","ACY1","ADAR","ADCK3","ADGRG1","ADNP","ADSL","AFF2","AFF4","AFG3L2","AGA","AGPS","AHDC1","AIFM1","AIMP1","AKT3","ALDH18A1","ALDH3A2","ALDH4A1","ALDH5A1","ALDH7A1","ALG1","ALG11","ALG12","ALG13","ALG3","ALG6","ALG8","ALMS1","ALS2","AMPD2","AMT","ANKH","ANKRD11","AP1S2","AP4B1","AP4E1","AP4M1","AP4S1","APOPT1","APTX","ARFGEF2","ARG1","ARHGEF6","ARHGEF9","ARID1A","ARID1B","ARL6","ARSA","ARSB","ARSE","ARX","ASAH1","ASPA","ASPM","ASXL1","ASXL3","ATAD3A","ATIC","ATM","ATP13A2","ATP1A3","ATP6V1B2","ATP7A","ATR","ATRX","AUH","AUTS2","B3GALNT2","B3GALTL","B4GALNT1","B4GALT7","BBS1","BBS10","BBS12","BBS2","BBS4","BBS5","BBS7","BBS9","BCAP31","BCKDHA","BCKDHB","BCL11A","BCOR","BLM","BOLA3","BRAF","BRAT1","BRWD3","BTD","BUB1B","C12orf57","C12orf65","C5orf42","CA2","CA8","CAMTA1","CASK","CBL","CBS","CC2D1A","CC2D2A","CCBE1","CCDC22","CCDC8","CCND2","CDC6","CDH15","CDK5RAP2","CDKL5","CDON","CDT1","CENPJ","CEP135","CEP152","CEP290","CEP41","CEP57","CEP83","CHAMP1","CHD2","CHD7","CHD8","CISD2","CIT","CKAP2L","CLN3","CLN5","CLN6","CLN8","CLP1","CLPB","CNKSR2","CNNM2","CNTNAP2","COASY","COG1","COG4","COG7","COG8","COL4A1","COL4A2","COL4A3BP","COLEC11","COQ4","COX10","COX15","COX6B1","CPS1","CRB2","CREBBP","CSNK2A1","CSPP1","CSTB","CTC1","CTCF","CTDP1","CTNNB1","CTSA","CTSD","CUL4B","CYB5R3","CYC1","CYP2U1","DARS","DARS2","DBT","DCAF17","DCHS1","DCX","DDC","DDHD2","DDOST","DDX11","DDX3X","DEAF1","DEPDC5","DHCR24","DHCR7","DHFR","DHTKD1","DIAPH1","DKC1","DLD","DLG3","DMD","DNAJC12","DNM1","DNMT3A","DNMT3B","DOCK7","DOCK8","DOLK","DPAGT1","DPM1","DPP6","DPYD","DYM","DYNC1H1","DYRK1A","EBP","EDNRB","EEF1A2","EFTUD2","EHMT1","EIF2AK3","EIF2S3","ELAC2","ELOVL4","EP300","EPG5","ERCC1","ERCC2","ERCC3","ERCC5","ERCC6","ERCC6L2","ERCC8","ESCO2","ETFA","ETFB","ETFDH","ETHE1","EXOSC3","EZH2","FAM111A","FAM126A","FAM20C","FAR1","FAT4","FBXL4","FGD1","FH","FIG4","FKRP","FKTN","FLNA","FLVCR1","FLVCR2","FMN2","FMR1","FOLR1","FOXG1","FOXP1","FOXP2","FOXRED1","FTCD","FTSJ1","FUCA1","GABRA1","GABRB3","GALC","GALE","GALT","GAMT","GATAD2B","GATM","GCDH","GCH1","GDI1","GFAP","GFM1","GJC2","GK","GLB1","GLDC","GLI2","GLI3","GLUL","GLYCTK","GM2A","GMPPA","GNAO1","GNAS","GNB1","GNPAT","GNPTAB","GNPTG","GNS","GPC3","GPSM2","GRIA3","GRIK2","GRIN2A","GRIN2B","GRM1","GSPT2","GTF2H5","GTPBP3","GUSB","HADH","HADHA","HCCS","HCFC1","HCN1","HDAC4","HDAC8","HERC1","HESX1","HEXA","HEXB","HGSNAT","HIBCH","HLCS","HNRNPU","HOXA1","HPD","HPRT1","HRAS","HSD17B10","HSD17B4","HSPD1","HUWE1","HYLS1","IDH2","IDS","IDUA","IFIH1","IFT172","IGF1","IKBKG","IL1RAPL1","INPP5E","INPP5K","IQSEC2","IRX5","ISPD","IVD","JAM3","KANSL1","KAT6A","KAT6B","KCNA2","KCNB1","KCNC1","KCNC3","KCNH1","KCNJ10","KCNJ11","KCNQ2","KCNT1","KCTD7","KDM5B","KDM5C","KDM6A","KIAA1279","KIAA2022","KIF11","KIF1A","KIF5C","KIF7","KMT2A","KMT2D","KPTN","KRAS","L1CAM","L2HGDH","LAMA1","LAMA2","LAMB1","LAMC3","LAMP2","LARGE","LARP7","LIG4","LINS","LRP2","LRPPRC","MAB21L2","MAF","MAGEL2","MAN1B1","MAN2B1","MANBA","MAOA","MAP2K1","MAP2K2","MASP1","MAT1A","MBD5","MCCC1","MCCC2","MCOLN1","MCPH1","MECP2","MED12","MED13L","MED17","MEF2C","MFF","MFSD8","MGAT2","MGP","MICU1","MID1","MKKS","MKS1","MLC1","MLYCD","MMAA","MMAB","MMACHC","MMADHC","MOCS1","MOCS2","MOGS","MPDU1","MPI","MPLKIP","MRPS22","MSMO1","MTHFR","MTR","MTRR","MUT","MYCN","MYO5A","NAA10","NACC1","NAGA","NAGLU","NALCN","NANS","NDE1","NDP","NDUFA1","NDUFS1","NDUFS4","NDUFS7","NDUFS8","NDUFV1","NEU1","NF1","NFIX","NFU1","NGLY1","NHS","NIPBL","NKX2-1","NLGN3","NPC1","NPC2","NPHP1","NR2F1","NRAS","NRXN1","NRXN2","NSD1","NSDHL","NSUN2","NUBPL","OCLN","OCRL","OFD1","OPHN1","ORC1","ORC4","ORC6","OTC","OTX2","PACS1","PAFAH1B1","PAH","PAK3","PAX6","PAX8","PC","PCCA","PCCB","PCDH19","PCGF2","PCNT","PDHA1","PDSS1","PDSS2","PEPD","PEX1","PEX10","PEX12","PEX13","PEX14","PEX16","PEX19","PEX2","PEX26","PEX3","PEX5","PEX6","PEX7","PGAP2","PGAP3","PGK1","PHF6","PHF8","PHGDH","PIGA","PIGL","PIGN","PIGO","PIGT","PIGV","PIK3R2","PLA2G6","PLCB1","PLK4","PLP1","PMM2","PNKP","POGZ","POLG","POLR3A","POLR3B","POMGNT1","POMGNT2","POMT1","POMT2","PORCN","PPM1D","PPP2R1A","PPP2R5D","PPT1","PQBP1","PRODH","PRPS1","PRRT2","PRSS12","PSAP","PSPH","PTCH1","PTCHD1","PTDSS1","PTEN","PTF1A","PTPN11","PTS","PURA","QDPR","RAB18","RAB23","RAB39B","RAB3GAP1","RAB3GAP2","RAD21","RAF1","RAI1","RANBP2","RARB","RARS2","RBM10","RELN","RFT1","RIT1","RMND1","RNASEH2A","RNASEH2B","RNASEH2C","RNASET2","ROGDI","ROR2","RPGRIP1L","RPS6KA3","RTEL1","SAMD9","SAMHD1","SATB2","SC5D","SCN1A","SCN2A","SCN8A","SCO1","SCO2","SDHA","SDHAF1","SETBP1","SETD5","SGSH","SHANK1","SHANK2","SHANK3","SHH","SHOC2","SIK1","SIL1","SIX3","SKI","SLC12A5","SLC12A6","SLC13A5","SLC16A2","SLC17A5","SLC19A3","SLC22A5","SLC25A1","SLC25A15","SLC25A20","SLC25A22","SLC2A1","SLC35A2","SLC35C1","SLC39A8","SLC46A1","SLC4A4","SLC6A1","SLC6A17","SLC6A19","SLC6A3","SLC6A8","SLC9A6","SLX4","SMARCA2","SMARCA4","SMARCB1","SMARCE1","SMC1A","SMOC1","SMPD1","SMS","SNAP29","SNRPB","SNX14","SOS1","SOX10","SOX11","SOX2","SOX3","SOX5","SPG11","SPR","SPRED1","SPTAN1","SRCAP","SRD5A3","SRPX2","ST3GAL3","STAMBP","STIL","STRA6","STX1B","STXBP1","SUCLG1","SUMF1","SUOX","SURF1","SYN1","SYNGAP1","SYNJ1","SYP","TANGO2","TAT","TAZ","TBC1D24","TBCE","TBL1XR1","TBR1","TCF4","TCN2","TCTN2","TGIF1","TH","THAP1","THRA","TIMM8A","TMCO1","TMEM165","TMEM216","TMEM237","TMEM5","TMEM67","TMEM70","TOE1","TPP1","TRAPPC9","TREX1","TRIM32","TRIM37","TRIO","TSC1","TSC2","TSEN2","TSEN34","TSEN54","TSFM","TSHB","TSPAN7","TTC19","TTC8","TTI2","TUBA1A","TUBA8","TUBB","TUBB2A","TUBB2B","TUBB3","TUBB4A","TUBGCP6","TUSC3","TWIST1","UBE2A","UBE3A","UBE3B","UBR1","UMPS","UPF3B","UROC1","USP9X","VLDLR","VPS13B","VRK1","WAC","WDPCP","WDR45","WDR45B","WDR62","WDR73","WWOX","XRCC4","YY1","ZBTB20","ZC4H2","ZDHHC9","ZEB2","ZFYVE26","ZIC2","ZMYND11","ZNF711","GRIN1","ABCB7","ACBD6","ACE2","ACIN1","ACOT9","ACSF3","ACTL6A","ACTL6B","ACVR1","ADGRG4","ADK","ADRA2B","AGO1","AGPAT2","AGTR2","AHCY","AHI1","AK1","AKAP17A","AKAP4","AKR1C2","ALDH1A3","ALG2","ALG9","ALX1","ALX4","ANK3","ANO10","AP3B1","AR","ARHGAP36","ARHGAP6","ARHGEF4","ARID2","ARIH1","ARL13B","ARL14EP","ARSF","ASB12","ASCC3","ASCL1","ASH1L","ASL","ASMT","ASMTL","ATP1A2","ATP2A2","ATP2B3","ATP6AP2","ATP6V0A2","ATP8A2","ATXN3L","AVPR2","AWAT2","B4GALT1","B9D1","BCORL1","BCS1L","BDP1","BMP15","BPIFB6","BRCA1","BSCL2","BTK","C2CD3","CACNA1A","CACNA1C","CACNA1D","CACNA1F","CACNA1G","CACNA1H","CACNB4","CACNG2","CAMK2A","CAMK2G","CAP1","CAPN10","CAPRIN1","CASP2","CCDC23","CCDC39","CCDC78","CCNA2","CCNB3","CD96","CD99","CDK16","CDK8","CEP63","CFAP47","CFP","CHL1","CHMP1A","CHRNA2","CHRNA4","CHRNB2","CIC","CLCN4","CLCN5","CLCNKB","CLIC2","CMC4","CNKSR1","COA5","COG5","COL4A6","COQ2","COQ5","COX14","CPXCR1","CRADD","CRBN","CRLF2","CSF2RA","CSNK1G1","CSTF2","CTPS2","CTTNBP2","CUL7","CUX2","CXorf58","CYP7B1","D2HGDH","DAG1","DCHS2","DDHD1","DDX26B","DDX53","DECR1","DGKH","DHRSX","DHX30","DIAPH2","DIP2B","DLG1","DLG2","DLG4","DMPK","DNA2","DNAJC19","DOCK11","DPF1","DPF2","DPF3","DPM3","DST","EEF1B2","ELK1","ELP2","EMX2","ENOX2","ENTHD2","ENTPD1","EOMES","EPB41L1","EPPK1","ERLIN2","ERMARD","ESX1","FAAH2","FAH","FAM120C","FAM47B","FAM58A","FANCB","FASN","FBN1","FBXO25","FGFR1","FGFR2","FGFR3","FKBPL","FOXP3","FRAS1","FREM1","FRMD7","FRMPD4","FRY","FTL","FTO","GAB3","GABBR2","GABRQ","GAD1","GALNS","GBA2","GCSH","GFER","GJB1","GLRA2","GMPPB","GON4L","GPAA1","GPHN","GPRASP1","GRB14","GRIA1","GRIA2","GSS","GTPBP8","HAUS7","HAX1","HDAC6","HDHD1","HIST1H4B","HIST3H3","HIVEP2","HMGCL","HS6ST2","IARS2","IER3IP1","IFNAR2","IGBP1","IGSF1","IL1RAPL2","IL3RA","INF2","INPP4A","IRAK1","ITGA4","ITIH6","ITPR1","KANK1","KCND1","KCNH5","KCNJ6","KCNK12","KCNK9","KCNMA1","KCNQ3","KDM1A","KDM5A","KDM6B","KIAA0226","KIF26B","KIF2A","KIF4A","KIRREL3","KLF8","KLHL15","KLHL21","KLHL34","KLHL4","KMT2C","KRIT1","LAS1L","LBR","LGI1","LHFPL3","LIMK1","LONP1","LRAT","LRP1","LRRK1","MAGEA11","MAGEB1","MAGEB10","MAGEB2","MAGEC1","MAGEC3","MAGED1","MAGEE2","MAGI2","MAGIX","MAGT1","MAOB","MAP3K15","MAP7D3","MAPK10","MBNL3","MBTPS2","MCEE","MED23","MED25","MGAT5B","MIB1","MIR17HG","MLH1","MORC4","MPDZ","MRE11A","MSL3","MTF1","MTM1","MTMR1","MTMR8","MTOR","MTTP","MVK","MXRA5","MYO1D","MYO1G","MYT1L","NDN","NDST1","NDUFA11","NDUFA12","NDUFAF2","NDUFS2","NDUFS3","NECAB2","NEDD4L","NFIA","NKAP","NLGN4X","NLRP3","NR1I3","NRK","NRXN3","NTM","NTRK1","NUP62","NXF4","NXF5","OBSL1","ODF2L","OGT","OR5M1","OXCT1","P2RY4","P2RY8","P4HB","PABPC5","PANK2","PARP1","PASD1","PBRM1","PCBD1","PCDH10","PDCD10","PDGFRB","PECR","PET100","PEX11B","PGRMC1","PHACTR1","PHC1","PHF10","PHF21A","PHIP","PHKA1","PHOX2B","PIGQ","PIK3C3","PIN4","PJA1","PLCXD1","PLXNB3","PNP","POC1A","POLA1","PPOX","PRDX4","PREPL","PRICKLE3","PRMT9","PROX2","PRRG1","PRRG3","PSAT1","PSMA7","PSMD10","PTPN21","PUF60","PUS1","PVRL1","PYCR1","PYCR2","QARS","QKI","RAB27A","RAB40AL","RABL6","RAD50","RAD51","RAD51C","RALGDS","RAPGEF1","RAPSN","RAX","RBM28","RENBP","RGAG1","RGN","RGS7","RHEB","RLIM","RNF113A","RNF168","RPGR","RPL10","RRAS","RTTN","RYR3","SACS","SALL1","SCAPER","SCN1B","SCRIB","SERAC1","SETDB2","SHOX","SHROOM2","SHROOM4","SLC25A19","SLC25A53","SLC25A6","SLC26A9","SLC31A1","SLC33A1","SLC35A1","SLC39A14","SLC52A3","SLC6A5","SLC9A9","SMAD4","SMARCC1","SMARCC2","SMARCD1","SMARCD2","SMARCD3","SMC3","SNIP1","SNTG1","SNX3","SOBP","SPRY3","SPTLC2","SREBF2","SRGAP3","ST3GAL5","STAB2","STAG1","STARD8","STT3A","STT3B","SYNCRIP","SYNE1","SYT1","SYT14","SYTL4","SYTL5","SZT2","TACO1","TAF1","TAF2","TAF7L","TANC2","TBC1D8B","TBX1","TCEAL3","TCP10L2","TCTN1","TECPR2","TECR","TENM1","TFB2M","TGFBR1","TGFBR2","THOC2","THRB","THUMPD1","TK2","TKTL1","TLR8","TM4SF20","TMEM132E","TMEM135","TMEM231","TMLHE","TNKS2","TNPO2","TRAPPC11","TREX2","TRMT1","TSC22D3","TUBAL3","TUBGCP4","TUFM","UBR7","UBTF","UPB1","UQCRB","UQCRQ","USP27X","UTP14A","VAMP7","VIP","WDR11","WDR13","WDR60","WDR81","WNK3","WNT4","WWC3","XIAP","XK","XKRX","XPA","XPNPEP3","YAP1","ZBTB16","ZBTB18","ZBTB40","ZC3H14","ZCCHC12","ZCCHC8","ZDHHC15","ZFHX4","ZFX","ZMYM3","ZMYM6","ZMYND12","ZNF335","ZNF41","ZNF425","ZNF526","ZNF592","ZNF599","ZNF674","ZNF713","ZNF81","ZSWIM6"],"source":{"id":"PanelApp","version":"1.158"}}]
\ No newline at end of file
diff --git a/src/conf/tools.js b/src/conf/tools.js
index 4cf937eaa..aad4e73c8 100644
--- a/src/conf/tools.js
+++ b/src/conf/tools.js
@@ -21,12 +21,12 @@
const cohortFileMenu = {
id: "cohort",
title: "Cohort Alternate Allele Stats",
- cohorts: { // organised in projects and studies
+ cohorts: { // organised in projects and studies
reference_grch37: {
"1kG_phase3": [
{id: "ALL", name: "All"}, {id: "MXL", name: "Mexican"}
],
- EXAC: [
+ "EXAC": [
{id: "ALL", name: "All"}
]
},
@@ -35,22 +35,28 @@ const cohortFileMenu = {
{id: "ALL", name: "ALL"}
]
},
- tooltip: "Filter variants by cohort Alternate allele frequency"
- }
+ exomes_grch37: {
+ corpasome: [
+ {id: "ALL", name: "ALL"}
+ ]
+ }
+ },
+ tooltip: "Filter variants by cohort Alternate allele frequency"
};
+/* MOVED in variant-browser config (TODO copy in interpretation portal) */
const filterMenu = {
searchButtonText: "Search",
tooltip: {
- classes: "qtip-rounded qtip-shadow qtip-custom-class",
+ classes: "qtip-rounded qtip-shadow qtip-custom-class"
// classes: "qtip-dark qtip-rounded qtip-shadow"
},
- skipSubsections: [], // controls which subsections are disabled and should not be displayed
- sections: [ // sections and subsections, structure and order is respected
+ skipSubsections: [], // controls which subsections are disabled and should not be displayed
+ sections: [ // sections and subsections, structure and order is respected
{
title: "Study and Cohorts",
collapsed: false,
- subsections: [
+ fields: [
{
id: "study",
title: "Studies Filter",
@@ -62,9 +68,9 @@ const filterMenu = {
{
title: "Genomic",
collapsed: true,
- subsections: [
+ fields: [
{
- id: "location",
+ id: "region",
title: "Chromosomal Location",
tooltip: "Filter out variants falling outside the genomic interval(s) defined"
},
@@ -103,7 +109,7 @@ const filterMenu = {
{
title: "Population Frequency",
collapsed: true,
- subsections: [
+ fields: [
{
id: "populationFrequency",
title: "Select Population Frequency",
@@ -115,7 +121,7 @@ const filterMenu = {
{
title: "Consequence Type",
collapsed: true,
- subsections: [
+ fields: [
{
id: "consequenceType",
title: "Select SO terms",
@@ -126,51 +132,51 @@ const filterMenu = {
{
title: "Deleteriousness",
collapsed: true,
- subsections: [
+ fields: [
{
id: "proteinSubstitutionScore",
title: "Protein Substitution Score",
tooltip: "SIFT score: Choose either a Tolerated/Deleterious qualitative score or provide below a " +
- "quantitative impact value. SIFT scores <0.05 are considered deleterious. " +
- "Polyphen: Choose, either a Benign/probably damaging qualitative score or provide below a " +
- "quantitative impact value. Polyphen scores can be Benign (<0.15), Possibly damaging (0.15-0.85) or Damaging (>0.85)"
+ "quantitative impact value. SIFT scores <0.05 are considered deleterious. " +
+ "Polyphen: Choose, either a Benign/probably damaging qualitative score or provide below a " +
+ "quantitative impact value. Polyphen scores can be Benign (<0.15), Possibly damaging (0.15-0.85) or Damaging (>0.85)"
},
{
id: "cadd",
title: "CADD",
tooltip: "Raw values have relative meaning, with higher values indicating that a variant is more likely to be " +
- "simulated (or not observed) and therefore more likely to have deleterious effects. If discovering causal variants " +
- "within an individual, or small groups, of exomes or genomes te use of the scaled CADD score is recommended"
+ "simulated (or not observed) and therefore more likely to have deleterious effects. If discovering causal variants " +
+ "within an individual, or small groups, of exomes or genomes te use of the scaled CADD score is recommended"
}
]
},
{
title: "Conservation",
collapsed: true,
- subsections: [
+ fields: [
{
id: "conservation",
title: "Conservation Score",
tooltip: "PhyloP scores measure evolutionary conservation at individual alignment sites. The scores " +
- "are interpreted as follows compared to the evolution expected under neutral drift: positive scores (max 3.0) mean " +
- "conserved positions and negative scores (min -14.0) indicate positive selection. PhyloP scores are useful to " +
- "evaluate signatures of selection at particular nucleotides or classes of nucleotides (e.g., third codon positions, " +
- "or first positions of miRNA target sites). " +
- "PhastCons estimates the probability that each nucleotide belongs to a conserved element, based on " +
- "the multiple alignment. The phastCons scores represent probabilities of negative selection and range between 0 " +
- "(non-conserved) and 1 (highly conserved). " +
- "Genomic Evolutionary Rate Profiling (GERP) score estimate the level of conservation of positions." +
- " Scores ≥ 2 indicate evolutionary constraint to and ≥ 3 indicate purifying selection."
+ "are interpreted as follows compared to the evolution expected under neutral drift: positive scores (max 3.0) mean " +
+ "conserved positions and negative scores (min -14.0) indicate positive selection. PhyloP scores are useful to " +
+ "evaluate signatures of selection at particular nucleotides or classes of nucleotides (e.g., third codon positions, " +
+ "or first positions of miRNA target sites). " +
+ "PhastCons estimates the probability that each nucleotide belongs to a conserved element, based on " +
+ "the multiple alignment. The phastCons scores represent probabilities of negative selection and range between 0 " +
+ "(non-conserved) and 1 (highly conserved). " +
+ "Genomic Evolutionary Rate Profiling (GERP) score estimate the level of conservation of positions." +
+ " Scores ≥ 2 indicate evolutionary constraint to and ≥ 3 indicate purifying selection."
}
]
},
{
title: "Gene Ontology",
collapsed: true,
- subsections: [
+ fields: [
{
id: "go",
- title: "GO Accessions",
+ title: "GO Accessions (max. 100 terms)",
tooltip: "Filter out variants falling outside the genomic features (gene, transcript, SNP, etc.) defined"
}
]
@@ -178,7 +184,7 @@ const filterMenu = {
{
title: "Phenotype-Disease",
collapsed: true,
- subsections: [
+ fields: [
{
id: "hpo",
title: "HPO Accessions",
@@ -201,10 +207,10 @@ const filterMenu = {
// Clone menu for interpretation and add clinical section
-let clinical = {
+/*const clinical = {
title: "Sample and File",
collapsed: false,
- subsections: [
+ fields: [
{
id: "sample",
title: "Sample Genotype",
@@ -220,22 +226,27 @@ let clinical = {
tooltip: "Filter by sample genotype and mode of inheritance"
},
{
- id: "file",
- title: "File Attributes",
- tooltip: "Filter by file attributes such as QUAL and FILTER"
+ id: "file-qual",
+ title: "File QUAL Attribute",
+ tooltip: "Filter by file attribute QUAL"
+ },
+ {
+ id: "file-pass",
+ title: "File PASS Attribute",
+ tooltip: "Filter by file attribute PASS"
}
]
};
-let interpreterMenu = JSON.parse(JSON.stringify(filterMenu));
-let interpreterSections = interpreterMenu.sections.slice(1); // remove first section "Study and Cohorts"
-interpreterSections.unshift(clinical); // insert "Clinical" section
+const interpreterMenu = JSON.parse(JSON.stringify(filterMenu));
+const interpreterSections = interpreterMenu.sections.slice(1); // remove first section "Study and Cohorts"
+interpreterSections.unshift(clinical); // insert "Clinical" section
// interpreterSections[1].subsections.splice(2,1); // remove "Disease Panels" subsection from "Genomic" section
-interpreterMenu.sections = interpreterSections;
+interpreterMenu.sections = interpreterSections;*/
const tools = {
- browser: {
+ /*browser: {
title: "Variant Browser",
active: false,
showSummary: true,
@@ -249,15 +260,31 @@ const tools = {
query: {
gene: "BRCA2",
conservation: "phylop<0.001"
- },
+ }
},
{
name: "Example OR11",
query: {
gene: "OR11H1",
conservation: "phylop<=0.001"
- },
+ }
},
+ {
+ name: "Full Example",
+ query: {
+ "studies": "exomes_grch37:corpasome;opencga@exomes_grch37:ceph_trio",
+ "region": "3:444-555",
+ "xref": "BRCA1,DDEF",
+ "panel": "Albinism_or_congenital_nystagmus-PanelAppId-511,Amyloidosis-PanelAppId-502",
+ "biotype": "IG_C_gene,IG_C_pseudogene",
+ "type": "INDEL",
+ "ct": "frameshift_variant,incomplete_terminal_codon_variant,inframe_deletion,inframe_insertion,3_prime_UTR_variant,5_prime_UTR_variant,intron_variant,non_coding_transcript_exon_variant,non_coding_transcript_variant",
+ "populationFrequencyAlt": "1kG_phase3:ALL<1;1kG_phase3:AFR<1;1kG_phase3:AMR<1;1kG_phase3:EAS<1;1kG_phase3:EUR<1;1kG_phase3:SAS<1;GNOMAD_GENOMES:ALL<1;GNOMAD_GENOMES:AFR<1;GNOMAD_GENOMES:AMR<1;GNOMAD_GENOMES:EAS<1;GNOMAD_GENOMES:FIN<1;GNOMAD_GENOMES:NFE<1;GNOMAD_GENOMES:SAS<1",
+ "protein_substitution": "sift>5,polyphen>4",
+ "annot-functional-score": "cadd_raw>2,cadd_scaled<4",
+ "conservation": "phylop>1;phastCons>2;gerp<=3"
+ }
+ }
]
},
grid: {
@@ -275,24 +302,24 @@ const tools = {
detail: [
{
id: "annotation",
- component: "cellbase-variantannotation-view",
+ // component: "cellbase-variantannotation-view",
title: "Advanced Annotation",
active: true
},
{
id: "cohortStats",
- component: "opencga-variant-cohort-stats",
+ // component: "opencga-variant-cohort-stats",
title: "Cohort Stats"
},
{
- id: "samples",
- component: "opencga-variant-samples",
+ id: "sample",
+ // component: "opencga-variant-sample",
title: "Samples"
},
{
id: "beacon",
- component: "variant-beacon-network",
- title: "Beacon",
+ // component: "variant-beacon-network",
+ title: "Beacon"
// Uncomment and edit Beacon hosts to change default hosts
// hosts: [
// "brca-exchange", "cell_lines", "cosmic", "wtsi", "wgs", "ncbi", "ebi", "ega", "broad", "gigascience", "ucsc",
@@ -301,23 +328,23 @@ const tools = {
},
{
id: "network",
- component: "reactome-variant-network",
+ // component: "reactome-variant-network",
title: "Reactome Pathways"
- },
+ }
// {
// id: "template",
// component: "opencga-variant-detail-template",
// title: "Template"
// }
]
- },
- interpretation: {
- title: "Variant Interpreter",
+ },*/
+ /*"rd-interpreter": {
+ title: "Variant RD Interpreter",
disableSaveInterpretation: false,
active: false,
showOtherTools: true,
filter: {
- menu: interpreterMenu,
+ ...interpreterMenu,
lof: ["transcript_ablation", "splice_acceptor_variant", "splice_donor_variant", "stop_gained", "frameshift_variant",
"stop_lost", "start_lost", "transcript_amplification", "inframe_insertion", "inframe_deletion"],
examples: [
@@ -330,7 +357,7 @@ const tools = {
// alternate_frequency: "1kG_phase3:ALL<0.001;GNOMAD_GENOMES:ALL<0.001",
ct: "transcript_ablation,splice_acceptor_variant,splice_donor_variant,stop_gained," +
"frameshift_variant,stop_lost,start_lost,transcript_amplification,inframe_insertion,inframe_deletion," +
- "missense_variant",
+ "missense_variant"
}
},
{
@@ -380,9 +407,9 @@ const tools = {
// },
queryParams: {
useSearchIndex: "yes",
- skipCount: true,
+ skipCount: false,
approximateCount: true,
- approximateCountSamplingSize: 1000,
+ approximateCountSamplingSize: 500,
timeout: 30000
}
},
@@ -401,79 +428,30 @@ const tools = {
{
id: "beacon",
component: "variant-beacon-network",
- title: "Beacon",
+ title: "Beacon"
// Uncomment and edit Beacon hosts to change default hosts
// hosts: [
// "brca-exchange", "cell_lines", "cosmic", "wtsi", "wgs", "ncbi", "ebi", "ega", "broad", "gigascience", "ucsc",
// "lovd", "hgmd", "icgc", "sahgp"
// ]
- },
+ }
],
css: {
style: "font-size: 12px"
}
- },
- clinicalPortal: {
- title: "Clinical Interpretation Portal",
+ },*/
+/* clinicalPortal: {
+ title: "Case Portal",
reviewCases: {
grid: {
columns: {
- hidden: ["dueDate"]
+ hidden: []
}
}
}
- },
- facet: {
- // title: "Facet Analysis",
- active: false,
- // fields: [
- // {
- // name: "Chromosome", value: "chromosome"
- // },
- // {
- // name: "Studies", value: "studies"
- // },
- // {
- // name: "Variant Type", value: "type"
- // },
- // {
- // name: "Genes", value: "genes"
- // },
- // {
- // name: "Biotypes", value: "biotypes"
- // },
- // {
- // name: "Consequence Type", value: "soAcc"
- // }
- // ],
- // ranges: [
- // {
- // name: "PhastCons", value: "phastCons"
- // },
- // {
- // name: "PhyloP", value: "phylop"
- // },
- // {
- // name: "Gerp", value: "gerp"
- // },
- // {
- // name: "CADD Raw", value: "caddRaw"
- // },
- // {
- // name: "CADD Scaled", value: "caddScaled"
- // },
- // {
- // name: "Sift", value: "sift"
- // },
- // {
- // name: "Polyphen", value: "polyphen"
- // }
- // ],
- filter: {
- menu: Object.assign({}, filterMenu, {skipSubsections: ["sample"]}),
- }
- },
- panel: {
+ },*/
+
+ /*panel: {
active: false
},
individual: {
@@ -481,7 +459,7 @@ const tools = {
},
family: {
active: false
- },
+ },*/
gene: {
protein: {
color: {
@@ -492,30 +470,30 @@ const tools = {
start_lost: "red",
stop_gained: "red",
stop_lost: "red",
- stop_retained_variant: "red",
- },
+ stop_retained_variant: "red"
+ }
},
- active: false,
+ active: false
},
- beacon: {
+ /*beacon: {
active: false,
hosts: [
"brca-exchange", "cell_lines", "cosmic", "wtsi", "wgs", "ncbi", "ebi", "ega", "broad", "gigascience", "ucsc", "lovd", "hgmd", "icgc", "sahgp"
]
- },
- clinical: {
+ },*/
+ /*clinical: {
icd10: ICD_10,
upload: {
- visible: true,
+ visible: true
},
analysis: {
- visible: true,
+ visible: true
},
interpretation: {
visible: true,
algorithms: [
{id: "interactive", title: "Interactive (based on TEAM paper)"},
- {id: "automatic", title: "Automatic", checked: true},
+ {id: "automatic", title: "Automatic", checked: true}
],
// Interpretation standard config
@@ -534,12 +512,12 @@ const tools = {
approximateCount: true,
skipCount: false,
approximateCountSamplingSize: 5000,
- timeout: 30000,
+ timeout: 30000
}
}
},
report: {
- visible: true,
+ visible: true
},
@@ -553,8 +531,8 @@ const tools = {
name: "clinical_vs",
exclude: [
{
- webComponent: "variant-samples-filter",
- variables: ["HPO", "diagnosis"],
+ webComponent: "variant-sample-filter",
+ variables: ["HPO", "diagnosis"]
}
]
},
@@ -672,13 +650,13 @@ const tools = {
{
id: "germline",
title: "constitutive (germline)",
- checked: true,
+ checked: true
},
{
id: "somatic",
title: "somatic",
- checked: false,
- },
+ checked: false
+ }
],
active: false,
filter: filterMenu,
@@ -687,8 +665,8 @@ const tools = {
nucleotideGenotype: true,
downloadQcSample: false
}
- },
- genomeBrowser: {
- active: false,
- }
+ },*/
+ /*genomeBrowser: {
+ active: false
+ }*/
};
diff --git a/src/conf/variant-interpreter.config.js b/src/conf/variant-interpreter.config.js
new file mode 100644
index 000000000..b6e72c253
--- /dev/null
+++ b/src/conf/variant-interpreter.config.js
@@ -0,0 +1,51 @@
+const VariantInterpreterConfig = {
+ title: "Case Interpreter",
+ icon: "fas fa-user-md",
+ clinicalAnalysisSelector: true,
+ tools: [
+ {
+ id: "select",
+ title: "Case Info",
+ acronym: "VB",
+ description: "",
+ icon: "fa fa-folder-open"
+ },
+ {
+ id: "qc",
+ title: "Quality Control",
+ acronym: "VB",
+ description: "",
+ icon: "fa fa-chart-bar"
+ },
+ {
+ id: "interpretation",
+ title: "Interpretation Methods",
+ acronym: "VB",
+ description: "",
+ icon: "fa fa-sync",
+ hidden: true
+ },
+ {
+ id: "variant-browser",
+ title: "Sample Variant Browser",
+ acronym: "VB",
+ description: "",
+ icon: "fa fa-search"
+ },
+ {
+ id: "review",
+ title: "Interpretation Review",
+ acronym: "VB",
+ description: "",
+ icon: "fa fa-edit"
+ },
+ {
+ id: "report",
+ title: "Report",
+ acronym: "VB",
+ description: "",
+ disabled: true,
+ icon: "fa fa-file-alt"
+ }
+ ]
+};
diff --git a/src/contact.html b/src/contact.html
deleted file mode 100644
index c90a4f539..000000000
--- a/src/contact.html
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
-
-
-
-
-
-
-
-
Contact
-
-
-
-
-
-
-
diff --git a/src/contact.js b/src/contact.js
new file mode 100644
index 000000000..f7edb2a4c
--- /dev/null
+++ b/src/contact.js
@@ -0,0 +1,47 @@
+/**
+ * Copyright 2015-2019 OpenCB
+ *
+ * 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
+ *
+ * http://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.
+ */
+
+import {LitElement, html} from "/web_modules/lit-element.js";
+import "../lib/jsorolla/src/core/webcomponents/tool-header.js";
+
+
+export default class ContactWeb extends LitElement {
+
+ constructor() {
+ super();
+ }
+
+ createRenderRoot() {
+ return this;
+ }
+
+ render() {
+ return html`
+
+ `;
+ }
+
+}
+
+customElements.define("contact-web", ContactWeb);
diff --git a/src/faq.html b/src/faq.html
deleted file mode 100644
index 069883184..000000000
--- a/src/faq.html
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
-
-
-
-
-
-
-
-
Frequently Asked Questions
-
-
-
-
-
-
-
diff --git a/src/faq.js b/src/faq.js
new file mode 100644
index 000000000..f247ea29f
--- /dev/null
+++ b/src/faq.js
@@ -0,0 +1,47 @@
+/**
+ * Copyright 2015-2019 OpenCB
+ *
+ * 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
+ *
+ * http://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.
+ */
+
+import {LitElement, html} from "/web_modules/lit-element.js";
+import "../lib/jsorolla/src/core/webcomponents/tool-header.js";
+
+
+export default class FaqWeb extends LitElement {
+
+ constructor() {
+ super()
+ }
+
+ createRenderRoot() {
+ return this;
+ }
+
+ render() {
+ return html`
+
+ `;
+ }
+
+}
+
+customElements.define("faq-web",FaqWeb);
diff --git a/src/favicon.ico b/src/favicon.ico
new file mode 100644
index 000000000..97e6fc47d
Binary files /dev/null and b/src/favicon.ico differ
diff --git a/src/getting-started.js b/src/getting-started.js
new file mode 100644
index 000000000..46bdfe5bb
--- /dev/null
+++ b/src/getting-started.js
@@ -0,0 +1,151 @@
+/**
+ * Copyright 2015-2019 OpenCB
+ *
+ * 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
+ *
+ * http://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.
+ */
+
+import {LitElement, html} from "/web_modules/lit-element.js";
+import UtilsNew from "../lib/jsorolla/src/core/utilsNew.js";
+
+// TODO Video-Tutorial here?
+
+export default class GettingStarted extends LitElement {
+
+ constructor() {
+ super();
+ this._init();
+ }
+
+ createRenderRoot() {
+ return this;
+ }
+
+ static get properties() {
+ return {
+ version: {
+ type: String
+ },
+ opencgaSession: {
+ type: Object
+ },
+ config: {
+ type: Object
+ }
+ };
+ }
+
+ _init() {
+ this._prefix = "gs-" + UtilsNew.randomString(6) + "_";
+ }
+
+ openModal(e) {
+ $("#thumbnail_modal img", this).attr("src", e.target.src);
+ $("#thumbnail_modal", this).modal("show");
+ }
+
+ isVisible(item) {
+ switch (item.visibility) {
+ case "public":
+ return true;
+ case "private":
+ return UtilsNew.isNotUndefinedOrNull(this.opencgaSession) && UtilsNew.isNotEmpty(this.opencgaSession.token);
+ case "none":
+ default:
+ return false;
+ }
+ }
+
+ renderHTML(html) {
+ return document.createRange().createContextualFragment(`${html}`);
+ }
+
+ render() {
+ return html`
+
+
+
+
+
Getting started with IVA
+
+
+
+ ${this.config.components.filter(this.isVisible).map( (tool, i) => html`
+
+
+
+
+
+
+
+
${this.renderHTML(tool.description)}
+
+
+
+ `)}
+
+
+
+
+
+
+
+
+
+
+
+
+ `;
+ }
+
+}
+
+customElements.define("getting-started", GettingStarted);
diff --git a/src/img/Genomics-England-logo-2015-white.png b/src/img/Genomics-England-logo-2015-white.png
new file mode 100644
index 000000000..dc8af2160
Binary files /dev/null and b/src/img/Genomics-England-logo-2015-white.png differ
diff --git a/src/img/Genomics-England-logo-2015.png b/src/img/Genomics-England-logo-2015.png
new file mode 100644
index 000000000..14211e4a4
Binary files /dev/null and b/src/img/Genomics-England-logo-2015.png differ
diff --git a/src/img/iva-white.svg b/src/img/iva-white.svg
new file mode 100644
index 000000000..9ac146189
--- /dev/null
+++ b/src/img/iva-white.svg
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/img/iva.svg b/src/img/iva.svg
new file mode 100644
index 000000000..a2ff4d79e
--- /dev/null
+++ b/src/img/iva.svg
@@ -0,0 +1 @@
+IVA
diff --git a/src/img/iva2.svg b/src/img/iva2.svg
new file mode 100644
index 000000000..3850b0efb
--- /dev/null
+++ b/src/img/iva2.svg
@@ -0,0 +1 @@
+IVA2
diff --git a/src/img/tools/icons/aggregation.svg b/src/img/tools/icons/aggregation.svg
new file mode 100644
index 000000000..6c0b3cd41
--- /dev/null
+++ b/src/img/tools/icons/aggregation.svg
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/img/tools/icons/aggregation2.svg b/src/img/tools/icons/aggregation2.svg
new file mode 100644
index 000000000..460c9156d
--- /dev/null
+++ b/src/img/tools/icons/aggregation2.svg
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
diff --git a/src/img/tools/icons/alignment.svg b/src/img/tools/icons/alignment.svg
new file mode 100644
index 000000000..8efbb5f3b
--- /dev/null
+++ b/src/img/tools/icons/alignment.svg
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/img/tools/icons/beacon.svg b/src/img/tools/icons/beacon.svg
new file mode 100644
index 000000000..8c6d7f6bd
--- /dev/null
+++ b/src/img/tools/icons/beacon.svg
@@ -0,0 +1,317 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/img/tools/icons/file-explorer.svg b/src/img/tools/icons/file-explorer.svg
new file mode 100644
index 000000000..3ee0b1491
--- /dev/null
+++ b/src/img/tools/icons/file-explorer.svg
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/img/tools/icons/gene-view.svg b/src/img/tools/icons/gene-view.svg
new file mode 100644
index 000000000..04b3429a0
--- /dev/null
+++ b/src/img/tools/icons/gene-view.svg
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/src/img/tools/icons/genome_browser.svg b/src/img/tools/icons/genome_browser.svg
new file mode 100644
index 000000000..3f6ec006d
--- /dev/null
+++ b/src/img/tools/icons/genome_browser.svg
@@ -0,0 +1,33 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/img/tools/icons/interpretation_portal.svg b/src/img/tools/icons/interpretation_portal.svg
new file mode 100644
index 000000000..04fe5a6b9
--- /dev/null
+++ b/src/img/tools/icons/interpretation_portal.svg
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
diff --git a/src/img/tools/icons/variant_browser.svg b/src/img/tools/icons/variant_browser.svg
new file mode 100644
index 000000000..2dc14f755
--- /dev/null
+++ b/src/img/tools/icons/variant_browser.svg
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/img/tools/thumbnails/beacon.png b/src/img/tools/thumbnails/beacon.png
new file mode 100644
index 000000000..450d33218
Binary files /dev/null and b/src/img/tools/thumbnails/beacon.png differ
diff --git a/src/img/tools/thumbnails/interpretation_portal.png b/src/img/tools/thumbnails/interpretation_portal.png
new file mode 100644
index 000000000..b7b073f21
Binary files /dev/null and b/src/img/tools/thumbnails/interpretation_portal.png differ
diff --git a/src/img/tools/thumbnails/variant-browser.png b/src/img/tools/thumbnails/variant-browser.png
new file mode 100644
index 000000000..7361f1235
Binary files /dev/null and b/src/img/tools/thumbnails/variant-browser.png differ
diff --git a/src/img/tools/thumbnails/variant-browser_aggregation.png b/src/img/tools/thumbnails/variant-browser_aggregation.png
new file mode 100644
index 000000000..49073baad
Binary files /dev/null and b/src/img/tools/thumbnails/variant-browser_aggregation.png differ
diff --git a/src/index.html b/src/index.html
index 07ffc1f39..a7955ebd2 100644
--- a/src/index.html
+++ b/src/index.html
@@ -1,4 +1,3 @@
-
-
+
@@ -27,7 +26,7 @@
-
+
@@ -49,60 +48,33 @@
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
-
+
+
@@ -112,10 +84,9 @@
-
-
+
@@ -123,50 +94,45 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
-
-
@@ -174,41 +140,38 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+ -->
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
+
-
+
diff --git a/src/iva-app.html b/src/iva-app.html
deleted file mode 100644
index df4280523..000000000
--- a/src/iva-app.html
+++ /dev/null
@@ -1,1317 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/iva-app.js b/src/iva-app.js
new file mode 100644
index 000000000..894e16036
--- /dev/null
+++ b/src/iva-app.js
@@ -0,0 +1,1894 @@
+/**
+ * Copyright 2015-2019 OpenCB
+ *
+ * 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
+ *
+ * http://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.
+ */
+
+// import { LitElement, html } from 'lit-element'; // bare import by name doesn't work yet in browser,
+// see: https://www.polymer-project.org/blog/2018-02-26-3.0-preview-paths-and-names
+import {LitElement, html} from "/web_modules/lit-element.js";
+import "./welcome.js";
+import "./about.js";
+import "./contact.js";
+import "./faq.js";
+import "./terms.js";
+import "./getting-started.js";
+import "./opencga-breadcrumb.js";
+import "./category-page.js";
+import "./iva-profile.js";
+import "./iva-settings.js";
+
+// @dev[jsorolla]
+import {OpenCGAClient} from "../lib/jsorolla/src/core/clients/opencga/opencga-client.js";
+import {CellBaseClient} from "../lib/jsorolla/src/core/clients/cellbase/cellbase-client.js";
+import {ReactomeClient} from "../lib/jsorolla/src/core/clients/reactome/reactome-client.js";
+
+import UtilsNew from "../lib/jsorolla/src/core/utilsNew.js";
+import NotificationUtils from "../lib/jsorolla/src/core/NotificationUtils.js";
+import "../lib/jsorolla/src/core/webcomponents/clinical/opencga-clinical-analysis-browser.js";
+import {NotificationQueue} from "../lib/jsorolla/src/core/webcomponents/Notification.js";
+import "../lib/jsorolla/src/core/webcomponents/variant/opencga-variant-browser.js";
+import "../lib/jsorolla/src/core/webcomponents/variant/variant-beacon.js";
+import "../lib/jsorolla/src/core/webcomponents/opencga/opencga-gene-view.js";
+import "../lib/jsorolla/src/core/webcomponents/opencga/opencga-transcript-view.js";
+import "../lib/jsorolla/src/core/webcomponents/opencga/opencga-protein-view.js";
+import "../lib/jsorolla/src/core/webcomponents/user/opencga-projects.js";
+import "../lib/jsorolla/src/core/webcomponents/samples/opencga-sample-browser.js";
+import "../lib/jsorolla/src/core/webcomponents/samples/opencga-sample-view.js";
+import "../lib/jsorolla/src/core/webcomponents/samples/sample-variant-stats-browser.js";
+import "../lib/jsorolla/src/core/webcomponents/samples/sample-cancer-variant-stats-browser.js";
+import "../lib/jsorolla/src/core/webcomponents/files/opencga-file-browser.js";
+import "../lib/jsorolla/src/core/webcomponents/family/opencga-family-browser.js";
+import "../lib/jsorolla/src/core/webcomponents/user/opencga-login.js";
+import "../lib/jsorolla/src/core/webcomponents/individual/opencga-individual-browser.js";
+import "../lib/jsorolla/src/core/webcomponents/cohorts/opencga-cohort-browser.js";
+import "../lib/jsorolla/src/core/webcomponents/jobs/opencga-jobs-browser.js";
+import "../lib/jsorolla/src/core/webcomponents/jobs/opencga-jobs-view.js";
+import "../lib/jsorolla/src/core/webcomponents/clinical/opencga-clinical-portal.js";
+import "../lib/jsorolla/src/core/webcomponents/clinical/opencga-clinical-analysis-browser.js";
+import "../lib/jsorolla/src/core/webcomponents/variant/analysis/opencga-gwas-analysis.js";
+import "../lib/jsorolla/src/core/webcomponents/variant/analysis/opencga-sample-variant-stats-analysis.js";
+import "../lib/jsorolla/src/core/webcomponents/variant/analysis/opencga-cohort-variant-stats-analysis.js";
+import "../lib/jsorolla/src/core/webcomponents/variant/analysis/opencga-mutational-signature-analysis.js";
+import "../lib/jsorolla/src/core/webcomponents/variant/analysis/opencga-sample-elegibility-analysis.js";
+import "../lib/jsorolla/src/core/webcomponents/variant/analysis/opencga-knockout-analysis.js";
+import "../lib/jsorolla/src/core/webcomponents/variant/analysis/opencga-inferred-sex-analysis.js";
+import "../lib/jsorolla/src/core/webcomponents/variant/analysis/opencga-individual-relatedness-analysis.js";
+import "../lib/jsorolla/src/core/webcomponents/variant/analysis/opencga-individual-mendelian-error-analysis.js";
+import "../lib/jsorolla/src/core/webcomponents/variant/analysis/opencga-sample-qc-analysis.js";
+import "../lib/jsorolla/src/core/webcomponents/variant/analysis/opencga-individual-qc-analysis.js";
+import "../lib/jsorolla/src/core/webcomponents/variant/analysis/opencga-family-qc-analysis.js";
+import "../lib/jsorolla/src/core/webcomponents/variant/analysis/opencga-plink-analysis.js";
+import "../lib/jsorolla/src/core/webcomponents/variant/analysis/opencga-gatk-analysis.js";
+import "../lib/jsorolla/src/core/webcomponents/variant/analysis/opencga-variant-exporter-analysis.js";
+import "../lib/jsorolla/src/core/webcomponents/variant/analysis/opencga-variant-stats-exporter-analysis.js";
+import "../lib/jsorolla/src/core/webcomponents/variant/interpretation/variant-interpreter-browser-rd.js";
+import "../lib/jsorolla/src/core/webcomponents/variant/interpretation/variant-interpreter-browser-cancer.js";
+import "../lib/jsorolla/src/core/webcomponents/variant/interpretation/variant-interpreter.js";
+import "../lib/jsorolla/src/core/webcomponents/clinical/analysis/opencga-rd-tiering-analysis.js";
+import "../lib/jsorolla/src/core/webcomponents/clinical/opencga-clinical-analysis-writer.js";
+import "../lib/jsorolla/src/core/webcomponents/files/opencga-file-manager.js";
+import "../lib/jsorolla/src/core/webcomponents/job-monitor.js";
+//import "../lib/jsorolla/src/core/webcomponents/alignment/analysis/opencga-alignment-stats-analysis.js";
+// /@dev
+
+
+class IvaApp extends LitElement {
+
+ constructor() {
+ super();
+ this._init();
+ }
+
+ createRenderRoot() {
+ return this;
+ }
+
+ static get properties() {
+ return {
+ opencgaSession: {
+ type: Object
+ },
+ // sample: {
+ // type: Array
+ // },
+ // studySummaries: {
+ // type: Array
+ // },
+ // tool: {
+ // type: String
+ // },
+ // cellbaseClient: {
+ // type: Object
+ // },
+ config: {
+ type: Object
+ }
+ };
+ }
+
+ /**
+ * This function creates all the initial configuration
+ * @private
+ */
+ _init() {
+
+ // Create the 'config' , this objects contains all the different configuration
+ const _config = application;
+ _config.menu.counter = 0;
+ _config.cellbase = cellbase;
+ _config.tools = tools;
+ _config.opencga = opencga;
+ // _config.species = DEFAULT_SPECIES;
+ _config.enabledComponents = {};
+ // _config.panelExamples = diseasePanels;
+ _config.populationFrequencies = populationFrequencies;
+ _config.proteinSubstitutionScores = proteinSubstitutionScore.style;
+ _config.consequenceTypes = consequenceTypes;
+
+ // We can customise which components are active by default, this improves the first loading time.
+ _config.enabledComponents.home = true;
+
+ // Enable tools reading the configuration
+ for (const tool in _config.tools) {
+ if (UtilsNew.isNotUndefinedOrNull(_config.tools[tool].active)) {
+ _config.enabledComponents[tool] = _config.tools[tool].active;
+ }
+ }
+
+ // console.log("this.config.enabledComponents",_config.enabledComponents)
+ const components = [
+ "home",
+ "about",
+ "contact",
+ "terms",
+ "faq",
+ "gettingstarted",
+ "login",
+ "settings",
+ "account",
+ "projects",
+ "file-manager",
+ //"beacon",
+ "project",
+ "sample",
+ "files",
+ "samples",
+ "individuals",
+ "families",
+ "cohorts",
+ "clinicalAnalysis",
+ "clinicalAnalysisPortal",
+ "clinicalAnalysisCreator",
+ "settings",
+ "gene",
+ "transcript",
+ "protein",
+ "sample-grid",
+ "browser",
+ "family",
+ "cohorts",
+ "jobs",
+ "cat-browser",
+ "cat-analysis",
+ "cat-clinical",
+ "cat-catalog",
+ "cat-alignment",
+ "cat-ga4gh",
+ // Sample
+ "sampleVariantStatsBrowser",
+ "sampleCancerVariantStatsBrowser",
+ // Variant
+ "eligibility",
+ "gwas",
+ "sample-variant-stats",
+ "cohort-variant-stats",
+ "sample-eligibility",
+ "knockout",
+ "inferred-sex",
+ "mutational-signature",
+ "individual-relatedness",
+ "mendelian-errors",
+ "plink",
+ "gatk",
+ "variant-exporter",
+ "variant-stats-exporter",
+ // Quality Control
+ "sample-qc",
+ "individual-qc",
+ "family-qc",
+ // Clinical
+ "clinical-analysis-writer",
+ "interpreter",
+ "rd-tiering",
+ // Alignment
+ "alignment-index",
+ "alignment-stats",
+ "coverage-index",
+ "job-view"];
+
+ for (const component of components) {
+ _config.enabledComponents[component] = false;
+ }
+
+ // We set the global Polymer variable, this produces one single event
+ this.config = _config;
+
+
+ // TODO do we need this?
+ // We deep clone some config sections for having a default initial copy, this allows us to reset config.
+ /*this.defaultConfig = {};
+ if (UtilsNew.isNotUndefined(populationFrequencies)) {
+ this.defaultConfig.populationFrequencies = JSON.parse(JSON.stringify(populationFrequencies));
+ }
+ if (UtilsNew.isNotUndefined(proteinSubstitutionScore.style)) {
+ this.defaultConfig.proteinSubstitutionScores = JSON.parse(JSON.stringify(proteinSubstitutionScore.style));
+ }
+ if (UtilsNew.isNotUndefined(consequenceTypes)) {
+ this.defaultConfig.consequenceTypes = JSON.parse(JSON.stringify(consequenceTypes));
+ }*/
+
+
+ // We need to listen to hash fragment changes to update the display and breadcrumb
+ const _this = this;
+ window.onhashchange = function(e) {
+ //e.preventDefault();
+ _this.hashFragmentListener(_this);
+ };
+
+ // Remember the tool that was previously set
+ this.tool = window.location.hash.split("/")[0];
+ if (UtilsNew.isEmpty(this.tool)) {
+ this.tool = "#home";
+ }
+
+ // Go to the page that tool has
+ if (window.location.hash !== this.tool) {
+ window.location.hash = this.tool;
+ }
+
+
+ // Other initialisations
+ this.icd10 = ICD_10;
+ this._isBreadcrumbVisible = false;
+ // This manages the sample selected in each tool for updating the breadcrumb
+ this.samples = [];
+ this._samplesPerTool = {};
+
+
+ // TODO remove browserSearchQuery
+ this.browserSearchQuery = {};
+ // keeps track of the executedQueries transitioning from browser tool to facet tool
+ this.queries = [];
+
+ this.remoteCall = {completed: 0, total: 0};
+ globalThis.addEventListener("request", () => {
+ this.remoteCall.total++;
+ //console.log("REMOTE CALL!", this.remoteCall.total)
+ this.requestUpdate();
+ }, false);
+ globalThis.addEventListener("response", () => {
+ //this.remoteCall.total--;
+ this.remoteCall.completed++;
+ if (this.remoteCall.completed >= this.remoteCall.total) {
+ this.remoteCall.total = 0;
+ this.remoteCall.completed = 0;
+ }
+ //console.log("REMOTE CALL DONE! total", this.remoteCall.total, "completed", this.remoteCall.completed)
+ this.requestUpdate();
+ }, false);
+ }
+
+ connectedCallback() {
+ super.connectedCallback();
+ new NotificationQueue().setContext(this);
+
+ // Initialise clients and create the session
+ // this.opencgaClientConfig = new OpenCGAClientConfig(this.config.opencga.host, this.config.opencga.version, true, this.config.opencga.cookie.prefix);
+ // this.opencgaClientConfig.serverVersion = this.config.opencga.serverVersion;
+ const sid = Cookies.get(this.config.opencga.cookie.prefix + "_sid");
+ const userId = Cookies.get(this.config.opencga.cookie.prefix + "_userId");
+ this.opencgaClient = new OpenCGAClient({
+ host: this.config.opencga.host,
+ version: this.config.opencga.version,
+ token: sid,
+ userId: userId,
+ cookies: {active: true, prefix: this.config.opencga.cookie.prefix},
+ // TODO remove this soon!
+ serverVersion: this.config.opencga.serverVersion
+ });
+
+ // this.cellBaseClientConfig = new CellBaseClientConfig(this.config.cellbase.hosts, this.config.cellbase.version, "hsapiens");
+ this.cellbaseClient = new CellBaseClient({
+ hosts: this.config.cellbase.hosts,
+ version: this.config.cellbase.version,
+ species: "hsapiens"
+ });
+
+ console.log("cellbaseClient iva-app", this.cellbaseClient);
+
+ this.reactomeClient = new ReactomeClient();
+
+ if (UtilsNew.isNotEmpty(sid)) { // && !this._publicMode
+ // this.opencgaClient._config.token = sid;
+ this._createOpenCGASession();
+ // This must happen after creating the OpencgaClient
+ this.checkSessionActive();
+ this.intervalCheckSession = setInterval(this.checkSessionActive.bind(this), this.config.session.checkTime);
+ } else {
+ this._createOpencgaSessionFromConfig();
+ }
+ }
+
+ updated(changedProperties) {
+ if (changedProperties.has("opencgaSession")) {
+ this.opencgaSessionObserver();
+ }
+ }
+
+
+ opencgaSessionObserver() {
+ this.renderHashFragments();
+ this.queries = {};
+ this.requestUpdate();
+ }
+
+ _createOpenCGASession() {
+ const _this = this;
+ const opencgaSession = this.opencgaClient.createSession()
+ .then(function(response) {
+ console.log("_createOpenCGASession", response);
+ // check if project array has been defined in the config.js
+ if (UtilsNew.isNotEmptyArray(_this.config.opencga.projects)) {
+ // We store the project and study ids the user needs to visualise (defined in the config.js)
+ const configProjects = {};
+ for (let i = 0; i < _this.config.opencga.projects.length; i++) {
+ configProjects[_this.config.opencga.projects[i].id] = [];
+
+ for (let j = 0; j < _this.config.opencga.projects[i].studies.length; j++) {
+ configProjects[_this.config.opencga.projects[i].id].push(
+ _this.config.opencga.projects[i].studies[j].id
+ );
+ }
+ }
+
+ // We must keep only the projects defined in the configuration file
+ const activeProjects = [];
+ for (let i = 0; i < response.projects.length; i++) {
+ if (response.projects[i].id in configProjects) {
+ const project = response.projects[i];
+ const activeStudies = [];
+ for (let j = 0; j < project.studies.length; j++) {
+ const study = project.studies[j];
+ if (configProjects[project.id].indexOf(study.id) > -1) {
+ activeStudies.push(study);
+ }
+ }
+
+ // We replace the studies obtained with the ones from the configuration file
+ project.studies = activeStudies;
+ activeProjects.push(project);
+ }
+ }
+
+ // TODO we must query projects/info URL to get the whole object
+ response.projects = activeProjects || [];
+ if (UtilsNew.isNotEmptyArray(response.projects[0].studies)) {
+ response.project = response.projects[0];
+ response.study = response.projects[0].studies[0];
+ }
+ }
+
+ // this forces the observer to be executed.
+ _this.opencgaSession = Object.assign({}, response);
+ _this.opencgaSession.mode = _this.config.mode;
+ // _this.set('config.menu', application.menu.slice()); // Do not remove: this is for refreshing the menu
+ // TODO check if render works
+ _this.config.menu = application.menu.slice();
+ _this.config = {..._this.config};
+ })
+ .catch( e => {
+ console.log("An error occurred creating the OpenCGA session:");
+ const restResponse = e.value;
+ console.error(restResponse);
+ if(restResponse.getEvents?.("ERROR")?.length) {
+ const msg = restResponse.getEvents("ERROR").map(error => error.message).join(" ");
+ new NotificationQueue().push(e.message, msg, "error");
+ } else {
+ new NotificationQueue().push("Server error!", null, "error");
+ }
+ });
+ }
+
+ // TODO turn this into a Promise
+ _createOpencgaSessionFromConfig() {
+ // Create a private opencga-session to avoid calling to the Observer
+ const opencgaSession = this.opencgaClient.createAnonymousSession();
+
+ // If 'config.opencga.anonymous' exists and contains either 'user' or 'projects'
+ if (UtilsNew.isNotUndefinedOrNull(this.config.opencga.anonymous) && Object.keys(this.config.opencga.anonymous).length > 0) {
+ // If 'projects' is defined we only load those projects
+ if (UtilsNew.isNotUndefinedOrNull(this.config.opencga.anonymous.projects)) {
+ if (this.config.opencga.anonymous.projects.length > 0) {
+ // TODO we must query projects/info URL to get the whole object
+ opencgaSession.projects = this.config.opencga.anonymous.projects;
+ if (UtilsNew.isNotEmptyArray(opencgaSession.projects[0].studies)) {
+ opencgaSession.project = opencgaSession.projects[0];
+ opencgaSession.study = opencgaSession.projects[0].studies[0];
+ }
+ }
+
+ // This triggers the event and call to opencgaSessionObserver
+ this.opencgaSession = opencgaSession;
+ } else {
+ // When no 'projects' is defined we fetch all public projects
+ if (UtilsNew.isNotUndefinedOrNull(this.config.opencga.anonymous.user)) {
+ const _this = this;
+ this.opencgaClient.users().projects(this.config.opencga.anonymous.user, {})
+ .then(function(response) {
+ // _this._setup(_projects);
+
+ opencgaSession.projects = response.response[0].result;
+ if (UtilsNew.isNotEmptyArray(opencgaSession.projects) && UtilsNew.isNotEmptyArray(opencgaSession.projects[0].studies)) {
+ // this sets the current active project and study
+ opencgaSession.project = opencgaSession.projects[0];
+ opencgaSession.study = opencgaSession.projects[0].studies[0];
+ }
+
+ // This triggers the event and call to opencgaSessionObserver
+ _this.opencgaSession = opencgaSession;
+ })
+ .catch(function(response) {
+ console.log("An error when getting projects");
+ console.log(response);
+ });
+ }
+ }
+ } else {
+ // This triggers the event and call to opencgaSessionObserver
+ this.opencgaSession = opencgaSession;
+ }
+ }
+
+ onLogin(credentials) {
+ // This creates a new authenticated opencga-session object
+
+ console.log("iva-app: roger I'm in", credentials);
+ this.opencgaClient._config.token = credentials.detail.token;
+ this._createOpenCGASession();
+
+ if (this.tool === "#login") {
+ this.tool = "#home";
+ }
+
+ // 60000 ms = 1 min. Every 1 min we check if session is close to expire.
+ this.intervalCheckSession = setInterval(this.checkSessionActive.bind(this), this.config.session.checkTime);
+ }
+
+ refresh() {
+ this.opencgaClient.refresh();
+ }
+
+ async logout() {
+ // this delete token in the client and removes the Cookies
+ this.opencgaClient.logout();
+ this._createOpencgaSessionFromConfig();
+
+ // TODO check if render works
+ this.config.menu = application.menu.slice(); // Do not remove: this is for refreshing the menu
+
+ this.tool = "#home";
+ window.location.hash = "home";
+
+ window.clearInterval(this.intervalCheckSession);
+ }
+
+ onUrlChange(e) {
+ let hashFrag = e.detail.id;
+ if (UtilsNew.isNotUndefined(this.opencgaSession.project) && UtilsNew.isNotEmpty(this.opencgaSession.project.alias)) {
+
+ hashFrag += "/" + this.opencgaSession.project.alias;
+ if (UtilsNew.isNotUndefined(this.opencgaSession.study) && UtilsNew.isNotEmpty(this.opencgaSession.study.alias)) {
+ hashFrag += "/" + this.opencgaSession.study.alias;
+ }
+ }
+
+ const myQueryParams = [];
+ for (const key in e.detail.query) {
+ myQueryParams.push(key + "=" + e.detail.query[key]);
+ }
+ if (myQueryParams.length > 0) {
+ hashFrag += `?${myQueryParams.join("&")}`;
+ }
+
+ window.location.hash = hashFrag;
+ }
+
+ checkSessionActive() {
+ let _message = "";
+ // We check if refresh token has updated session id cookie
+ // let sid = Cookies.get(this.config.opencga.cookie.prefix + "_sid");
+
+ if (UtilsNew.isNotUndefinedOrNull(this.opencgaClient._config.token)) { // UtilsNew.isNotEmpty(this.opencgaSession.token) &&
+ // this.token = sid;
+ const decoded = jwt_decode(this.opencgaClient._config.token);
+ const currentTime = new Date().getTime();
+ const remainingTime = ((decoded.exp * 1000) - currentTime);
+ // 600000 ms = 10 min = 1000(1sec) * 60(60 sec = 1min) * 10(10 min)
+ if (remainingTime <= this.config.session.maxRemainingTime && remainingTime >= this.config.session.minRemainingTime) {
+ const remainingMinutes = Math.floor(remainingTime / this.config.session.minRemainingTime);
+
+ //_message = html`Your session is close to expire. ${remainingMinutes} minutes remaining this.notifySession.refreshToken()}"> Click here to refresh `
+ new NotificationQueue().pushRemainingTime(remainingMinutes, this.opencgaClient);
+
+ } else {
+ // TODO remove NotificationUtils
+ if (remainingTime < this.config.session.minRemainingTime) {
+ _message = "Your session has expired.";
+ this.logout();
+ window.clearInterval(this.intervalCheckSession);
+ } else {
+ if (UtilsNew.isNotUndefinedOrNull(this.notifySession)) {
+ NotificationUtils.closeNotify(this.notifySession);
+ }
+ return;
+ }
+ }
+ } else {
+ // _message = "Your session has expired.";
+ // window.clearInterval(this.intervalCheckSession);
+ }
+ // delay = 0 to fix the notify until user closes it.
+ if (UtilsNew.isNotEmpty(_message)) {
+ this.notifySession = NotificationUtils.showNotify(_message, UtilsNew.MESSAGE_INFO,
+ {}, {
+ delay: 0,
+ onClosed: this.onCloseRefreshNotify.bind(this)
+ }, this.opencgaClient, this.notifySession);
+ }
+ }
+
+ onCloseRefreshNotify() {
+ delete this.notifySession;
+ }
+
+ changeTool(e) {
+ e.preventDefault()
+ const target = e.currentTarget;
+ $(".navbar-inverse ul > li", this).removeClass("active");
+ $(target).parent("li").addClass("active");
+ if ($(target).closest("ul").hasClass("dropdown-menu")) {
+ $(target).closest("ul").closest("li").addClass("active");
+ }
+
+ if (UtilsNew.isNotUndefined(e)) {
+ e.preventDefault(); // prevents the hash change to "#" and allows to manipulate the hash fragment as needed
+ }
+
+ if (UtilsNew.isNotUndefined(target) && UtilsNew.isNotUndefined(target.attributes.href)) {
+ // $(e.target.attributes.href.value).show(); // get the href and use it find which div to show
+ this.tool = target.attributes.href.value;
+ if (UtilsNew.isNotUndefinedOrNull(this._samplesPerTool)) {
+ if (this._samplesPerTool.hasOwnProperty(this.tool.replace("#", ""))) {
+ this.samples = this._samplesPerTool[this.tool.replace("#", "")];
+ } else {
+ this.samples = [];
+ }
+ }
+ // this.renderBreadcrumb()
+ } else {
+ this.tool = "#home";
+ }
+
+ this.renderHashFragments();
+ }
+
+ renderHashFragments() {
+ console.log("renderHashFragments - DEBUG", this.tool);
+ let hashFrag = this.tool;
+ if (this.opencgaSession?.project?.alias) {
+
+ hashFrag += "/" + this.opencgaSession.project.id;
+ if (UtilsNew.isNotUndefined(this.opencgaSession.study) && UtilsNew.isNotEmpty(this.opencgaSession.study.alias)) {
+ hashFrag += "/" + this.opencgaSession.study.id;
+ }
+ }
+
+ if (window.location.hash === hashFrag) {
+ //debugger
+ this.hashFragmentListener(this);
+ } else {
+ //debugger
+ window.location.hash = hashFrag;
+ }
+
+ }
+
+ hashFragmentListener(ctx) {
+ console.log("hashFragmentListener - DEBUG", this.tool);
+ // Hide all elements
+ for (const element in this.config.enabledComponents) {
+ if (UtilsNew.isNotUndefined(this.config.enabledComponents[element])) {
+ this.config.enabledComponents[element] = false;
+ }
+ }
+
+ let arr = window.location.hash.split("/");
+
+ // TODO evaluate refactor
+ const [hashTool, hashProject, hashStudy, feature] = arr;
+
+ // Stopping the recursive call
+ if (hashTool !== this.tool || (this.opencgaSession?.project && hashProject !== this.opencgaSession.project.alias) ||
+ (UtilsNew.isNotUndefined(this.study) && hashStudy !== this.opencgaSession.study.alias)) {
+ if (arr.length > 1) {
+ // Field 'project' is being observed, just in case Polymer triggers
+ // an unnecessary event we can check they are really different
+ if (ctx.opencgaSession?.project?.alias && ctx.opencgaSession.project.alias !== hashProject) {
+ ctx.opencgaSession.project.alias = hashProject;
+ }
+ if (ctx.opencgaSession?.study && arr.length > 2 && ctx.opencgaSession.study !== hashStudy) {
+ for (let i = 0; i < ctx.opencgaSession.projects.length; i++) {
+ if (ctx.opencgaSession.projects[i].name === ctx.opencgaSession.project.name ||
+ ctx.opencgaSession.projects[i].alias === ctx.opencgaSession.project.alias) {
+ for (let j = 0; j < ctx.opencgaSession.projects[i].studies.length; j++) {
+ if (ctx.opencgaSession.projects[i].studies[j].name === hashStudy || ctx.opencgaSession.projects[i].studies[j].alias === hashStudy) {
+ ctx.opencgaSession.study = ctx.opencgaSession.projects[i].studies[j];
+ break;
+ }
+ }
+ break;
+ }
+ }
+ }
+ }
+
+ switch (hashTool) {
+ case "#browser":
+ this.browserSearchQuery = Object.assign({}, this.browserSearchQuery);
+ break;
+ case "#protein":
+ break;
+ case "#interpreter":
+ this.clinicalAnalysisId = feature;
+ break;
+ case "#sampleVariantStatsBrowser":
+ case "#sampleCancerVariantStatsBrowser":
+ this.sampleId = feature;
+ break;
+ }
+
+
+ if (UtilsNew.isNotEmpty(feature)) {
+ if (hashTool === "#protein") {
+ ctx.protein = feature;
+ } else if (feature.startsWith("ENST")) {
+ ctx.transcript = feature;
+ } else {
+ ctx.gene = feature;
+ }
+ }
+ ctx.tool = hashTool;
+ }
+
+ const searchArr = window.location.hash.split("?");
+ if (searchArr.length > 1) {
+ const search = searchArr[1];
+ arr = search.split("&");
+ const query = {};
+ for (let i = 0; i < arr.length; i++) {
+ const split = arr[i].split("=");
+ query[split[0]] = split[1];
+ }
+ this.query = query;
+ }
+
+ if (UtilsNew.isNotUndefined(this.config.enabledComponents[this.tool.replace("#", "")])) {
+ //debugger
+ this.config.enabledComponents[this.tool.replace("#", "")] = true;
+ }
+
+ //debugger
+ this.config = {...this.config};
+ // TODO quickfix to avoid hash browser scroll
+ $('body,html').animate({
+ scrollTop: 0
+ }, 1);
+ }
+
+ // TODO recheck what's the use for this
+ refreshConfig(e) {
+ const colorConfig = e.detail.config;
+ const _this = this;
+ for (const key in colorConfig) {
+ switch (key) {
+ case "consequenceTypes":
+ const ctColor = colorConfig[key].color;
+ for (const impact in ctColor) {
+ _this.consequenceTypes.color[impact] = ctColor[impact];
+ }
+ const ctModified = Object.assign({}, _this.consequenceTypes);
+ _this.consequenceTypes = ctModified;
+ break;
+ case "proteinSubstitutionScores":
+ for (const source in colorConfig[key]) {
+ if (source === "sift") {
+ const sift = colorConfig[key].sift;
+ for (const prediction in sift) {
+ _this.proteinSubstitutionScores.sift[prediction] = sift[prediction];
+ }
+ } else if (source === "polyphen") {
+ const polyphen = colorConfig[key].polyphen;
+ for (const pred in polyphen) {
+ _this.proteinSubstitutionScores.polyphen[pred] = polyphen[pred];
+ }
+ }
+ }
+ const pssModified = Object.assign({}, _this.proteinSubstitutionScores);
+ _this.proteinSubstitutionScores = pssModified;
+ break;
+ case "populationFrequencies":
+ const pfColor = colorConfig[key].color;
+ for (const i in pfColor) {
+ _this.populationFrequencies.color[i] = pfColor[i];
+ }
+ const pfModified = Object.assign({}, _this.populationFrequencies);
+ _this.populationFrequencies = pfModified;
+ break;
+ }
+ }
+ }
+
+ onStudySelect(e) {
+ e.preventDefault(); // prevents the hash change to "#" and allows to manipulate the hash fragment as needed
+
+ const [_studyId, _projectId] = [e.target.getAttribute("data-study"), e.target.getAttribute("data-project")];
+ let _project, _study;
+ for (let i = 0; i < this.opencgaSession.projects.length; i++) {
+ if (this.opencgaSession.projects[i].id === _projectId) {
+ _project = this.opencgaSession.projects[i];
+ for (let j = 0; j < this.opencgaSession.projects[i].studies.length; j++) {
+ if (this.opencgaSession.projects[i].studies[j].id === _studyId) {
+ _study = this.opencgaSession.projects[i].studies[j];
+ break;
+ }
+ }
+ break;
+ }
+ }
+ this.opencgaSession = {...this.opencgaSession, project: _project, study: _study};
+ }
+
+ updateProject(e) {
+ for (let i = 0; i < this.projects.length; i++) {
+ if (this.projects[i].name === e.detail.project.name) { // getting the selected project from projects array
+ this.project = this.projects[i];
+ }
+ }
+ this.tool = "#project";
+ this.renderHashFragments();
+ // this.renderBreadcrumb();
+ }
+
+ updateStudy(e) {
+ if (UtilsNew.isNotUndefined(e.detail.project) && UtilsNew.isNotEmpty(e.detail.project.name)) {
+ this.project = e.detail.project;
+ }
+ for (let i = 0; i < this.project.studies.length; i++) {
+ if (this.project.studies[i].name === e.detail.study.name || this.project.studies[i].alias === e.detail.study.alias) {
+ this.study = this.project.studies[i];
+ }
+ }
+
+ // TODO: Opencga study will be shown later. For now variant browser is shown when the study changes
+ // this.tool = "studyInformation";
+ this.tool = "#browser";
+ this.renderHashFragments();
+ // this.renderBreadcrumb();
+ }
+
+ onSampleChange(e) {
+ if (UtilsNew.isNotUndefinedOrNull(this.samples) && UtilsNew.isNotUndefinedOrNull(e.detail)) {
+ this.samples = e.detail.samples;
+ this._samplesPerTool[this.tool.replace("#", "")] = this.samples;
+ // this.renderBreadcrumb();
+ }
+ }
+
+ buildQuery(e) {
+ const query = {};
+ let value = "";
+ // TODO searchTextBox is not used anymore. Remove related code
+ if (UtilsNew.isNotUndefined(e) && UtilsNew.isNotUndefined(e.detail.value)) {
+ value = e.detail.value; // It takes care of the fired event from welcome.html
+ } else if (UtilsNew.isNotUndefined(e) && e.keyCode === "13" || UtilsNew.isNotUndefined(e) && e.type === "click") {
+ value = this.querySelector("#" + searchTextBox).value; // When enter key is pressed or search icon is clicked, it takes the value entered and assign it
+ }
+
+ if (value !== "") {
+ if (value.startsWith("rs") || value.split(":").length > 2) {
+ query.ids = value;
+ } else if (value.indexOf(":") > -1 && value.indexOf("-") > -1) {
+ query.region = value;
+ } else if (value.startsWith("GO:")) {
+ query["annot-go"] = value;
+ } else if (value.startsWith("HP:")) {
+ query["annot-hpo"] = value;
+ } else if (value.startsWith("ENST")) {
+ this.transcript = value;
+ this.tool = "#transcript";
+ } else {
+ this.gene = value.toUpperCase();
+ this.tool = "#gene";
+ }
+
+ // This query object is built for variant browser. Only when the queries to browser are made, we are setting the tool to browser
+ if (Object.keys(query).length > 0) {
+ this._query = query;
+ this.tool = "#browser";
+ }
+
+ this.renderHashFragments();
+ // TODO convert in LitElement compliant
+ this.$.searchTextBox.value = ""; // Empty the value of search text box when search is complete and respective view is loaded
+ }
+ }
+
+ onQuickSearch(e) {
+ const gene = PolymerUtils.getValue("searchTextBox");
+ if (UtilsNew.isNotUndefinedOrNull(this.tool)) {
+ const _query = {
+ xref: gene
+ };
+ switch (this.tool) {
+ case "#browser":
+ window.location.hash = "browser/" + this.opencgaSession.project.id + "/" + this.opencgaSession.study.id;
+ this.browserSearchQuery = _query;
+ break;
+ case "#interpretation":
+ window.location.hash = "interpretation/" + this.opencgaSession.project.id + "/" + this.opencgaSession.study.id;
+ this.interpretationSearchQuery = _query;
+ break;
+ default:
+ this.tool = "#browser";
+ window.location.hash = "browser/" + this.opencgaSession.project.id + "/" + this.opencgaSession.study.id;
+ this.browserSearchQuery = _query;
+ break;
+ }
+ }
+ // debugger
+ }
+
+ quickSearch(e) {
+ // debugger
+ this.tool = "#browser";
+ window.location.hash = "browser/" + this.opencgaSession.project.id + "/" + this.opencgaSession.study.id;
+ // this.browserQuery = {xref: e.detail.value};
+
+ this.browserSearchQuery = e.detail;
+ }
+
+ quickFacetSearch(e) {
+ console.log("IVA-APP quickfacetsearch");
+ this.tool = "#facet";
+ window.location.hash = "facet/" + this.opencgaSession.project.id + "/" + this.opencgaSession.study.id;
+ // this.browserQuery = {xref: e.detail.value};
+ this.browserSearchQuery = e.detail;
+ }
+
+ onJobSelected(e) {
+ console.log("JOB", e.detail)
+ this.jobSelected = e.detail.jobId;
+ this.requestUpdate();
+
+ }
+
+ _isMenuItemVisible(item) {
+ switch (item.visibility) {
+ case "public":
+ return true;
+ case "private":
+ return UtilsNew.isNotUndefinedOrNull(this.opencgaSession) && UtilsNew.isNotEmpty(this.opencgaSession.token);
+ case "none":
+ default:
+ return false;
+ }
+ }
+
+ //TODO remove
+ onNotifyMessage(e) {
+ //NotificationUtils.closeNotify(this.notifySession);
+ //NotificationUtils.showNotify(e.detail.message, e.detail.type, e.detail.options, e.detail.settings);
+ new NotificationQueue().push(e.detail.title, e.detail.message, e.detail.type);
+ }
+
+ // TODO geneSelected() is called by several components but it doesn't exists
+
+ // TODO this should keep in sync the query object between variant-browser and variant-facet
+ onQueryChange(e) {
+ console.log("onQueryChange", e);
+ this.browserSearchQuery = {...e.detail.query};
+ }
+
+
+ onQueryFilterSearch(e, source) {
+ // FIXME filters component emits a event containing {detail:{query:Object}} while active-filter emits {detail:{Object}}
+ // TODO fix active-filters
+ const q = e.detail.query ? {...e.detail.query} : {...e.detail};
+ this.queries[source] = {...q};
+ this.queries = {...this.queries};
+ //console.log("this.queries",this.queries);
+ this.requestUpdate();
+ }
+
+ onSelectClinicalAnalysis(e) {
+ this.clinicalAnalysis = e.detail.clinicalAnalysis;
+ }
+
+ /* Set the width of the side navigation to 250px */
+ openNav() {
+ this.querySelector("#side-nav").style.width = "250px";
+ console.log("open");
+ }
+
+ /* Set the width of the side navigation to 0 */
+ closeNav() {
+ this.querySelector("#side-nav").style.width = "0";
+ }
+
+ toggleSideNav(e) {
+ e.preventDefault();
+ const sidenav = this.querySelector("#side-nav");
+ $("#side-nav").toggleClass("active");
+ $("#overlay").toggleClass("active");
+ }
+
+ isVisible(item) {
+ switch (item.visibility) {
+ case "public":
+ return true;
+ case "private":
+ return !!this?.opencgaSession?.token;
+ case "none":
+ default:
+ return false;
+ }
+ }
+
+ isLoggedIn() {
+ return !!this?.opencgaSession?.token;
+ }
+
+ render() {
+ return html`
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ${this.config.enabledComponents.home ? html`
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents.about ? html`
+
+ ` : null}
+
+ ${this.config.enabledComponents.terms ? html`
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents.contact ? html`
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents.faq ? html`
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents.gettingstarted ? html`
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents.login ? html`
+
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents.browser ? html`
+
+ this.onQueryFilterSearch(e, "variant")}"
+ @activeFilterChange="${e => this.onQueryFilterSearch(e, "variant")}"
+ @facetSearch="${this.quickFacetSearch}">
+
+
+ ` : null}
+
+ ${this.config.enabledComponents.clinicalAnalysisPortal ? html`
+
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents["rd-interpreter"] ? html`
+
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents["cancer-interpreter"] ? html`
+
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents.beacon ? html`
+
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents.genomeBrowser ? html`
+
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents.projects ? html`
+
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents["samples"] ? html`
+
+ this.onQueryFilterSearch(e, "sample")}"
+ @activeFilterChange="${e => this.onQueryFilterSearch(e, "sample")}">
+
+
+ ` : null}
+
+ ${this.config.enabledComponents.panel ? html`
+
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents.files ? html`
+
+ this.onQueryFilterSearch(e, "files")}"
+ @activeFilterChange="${e => this.onQueryFilterSearch(e, "files")}">
+
+
+ ` : null}
+
+
+ ${this.config.enabledComponents.gene ? html`
+
+ this.onQueryFilterSearch(e, "variant")}">
+
+
+ ` : null}
+
+ ${this.config.enabledComponents.sample ? html`
+
+
+
+
+ ` : null}
+
+
+ ${this.config.enabledComponents.transcript ? html`
+
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents.protein ? html`
+
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents.individuals ? html`
+
+ this.onQueryFilterSearch(e, "individuals")}"
+ @activeFilterChange="${e => this.onQueryFilterSearch(e, "individuals")}">
+
+
+ ` : null}
+
+ ${this.config.enabledComponents.families ? html`
+
+ this.onQueryFilterSearch(e, "families")}"
+ @activeFilterChange="${e => this.onQueryFilterSearch(e, "families")}">
+
+
+ ` : null}
+
+ ${this.config.enabledComponents.cohorts ? html`
+
+ this.onQueryFilterSearch(e, "cohorts")}"
+ @activeFilterChange="${e => this.onQueryFilterSearch(e, "cohorts")}"
+
+
+ ` : null}
+
+ ${this.config.enabledComponents.clinicalAnalysis ? html`
+
+ this.onQueryFilterSearch(e, "clinical-analysis")}"
+ @activeFilterChange="${e => this.onQueryFilterSearch(e, "clinical-analysis")}">
+
+
+ ` : null}
+
+ ${this.config.enabledComponents["jobs"] ? html`
+
+ this.onQueryFilterSearch(e, "jobs")}"
+ @activeFilterChange="${e => this.onQueryFilterSearch(e, "jobs")}">
+
+
+ ` : null}
+
+ ${this.config.enabledComponents["cat-browser"] ? html`
+
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents["cat-analysis"] ? html`
+
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents["cat-clinical"] ? html`
+
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents["cat-catalog"] ? html`
+
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents["cat-alignment"] ? html`
+
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents["cat-ga4gh"] ? html`
+
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents["sampleVariantStatsBrowser"] ? html`
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents["sampleCancerVariantStatsBrowser"] ? html`
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents["sample-variant-stats"] ? html`
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents["cohort-variant-stats"] ? html`
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents["eligibility"] ? html`
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents["sample-eligibility"] ? html`
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents["knockout"] ? html`
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents["inferred-sex"] ? html`
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents["individual-relatedness"] ? html`
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents["mendelian-errors"] ? html`
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents["sample-qc"] ? html`
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents["individual-qc"] ? html`
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents["family-qc"] ? html`
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents["plink"] ? html`
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents["gatk"] ? html`
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents["variant-exporter"] ? html`
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents["variant-stats-exporter"] ? html`
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents["mutational-signature"] ? html`
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents.gwas ? html`
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents["rd-tiering"] ? html`
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents["clinical-analysis-writer"] ? html`
+
+
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents.account ? html`
+
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents["file-manager"] ? html`
+
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents.settings ? html`
+
+
+
+
+ ` : null}
+
+
+ ${this.config.enabledComponents["interpreter"] ? html`
+
+
+
+
+ ` : null}
+
+
+ ${this.config.enabledComponents["alignment-index"] ? html`
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents["coverage-index"] ? html`
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents["alignment-stats"] ? html`
+
+
+
+ ` : null}
+
+ ${this.config.enabledComponents["job-view"] ? html`
+
+
+
+
+ ` : null}
+
+
+
+
+
+`;
+
+ }
+
+}
+
+customElements.define("iva-app", IvaApp);
diff --git a/src/iva-profile.js b/src/iva-profile.js
new file mode 100644
index 000000000..00f9a153e
--- /dev/null
+++ b/src/iva-profile.js
@@ -0,0 +1,224 @@
+/**
+ * Copyright 2015-2019 OpenCB
+ *
+ * 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
+ *
+ * http://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.
+ */
+
+import {LitElement, html} from "/web_modules/lit-element.js";
+import UtilsNew from "../lib/jsorolla/src/core/utilsNew.js";
+import "../lib/jsorolla/src/core/webcomponents/commons/view/data-form.js";
+import "../lib/jsorolla/src/core/webcomponents/tool-header.js";
+
+export default class IvaProfile extends LitElement {
+
+ constructor() {
+ super();
+ this._init();
+ }
+
+ createRenderRoot() {
+ return this;
+ }
+
+ static get properties() {
+ return {
+ opencgaSession: {
+ type: Object
+ },
+ config: {
+ type: Object
+ }
+ };
+ }
+
+ _init() {
+
+ }
+
+ connectedCallback() {
+ super.connectedCallback();
+ this._config = {...this.getDefaultConfig(), ...this.config};
+
+ }
+
+ updated(changedProperties) {
+ if (changedProperties.has("property")) {
+ this.propertyObserver();
+ }
+ if (changedProperties.has("opencgaSession")) {
+ this.opencgaSessionObserver();
+ }
+ }
+
+ opencgaSessionObserver() {
+ this.requestUpdate();
+
+ }
+
+ onFilterChange(field, value) {
+ console.log("field, value", field, value)
+
+ }
+
+ getDefaultConfig() {
+ return {
+ title: "Your profile",
+ icon: "",
+ display: {
+ collapsable: true,
+ showTitle: false,
+ labelWidth: 2,
+ defaultValue: "-"
+ },
+ sections: [
+ {
+ title: "General",
+ collapsed: false,
+ elements: [
+ {
+ name: "id",
+ field: "user.id"
+ },
+ {
+ name: "Name",
+ field: "user.name"
+ },
+ {
+ name: "Organization",
+ field: "user.organization"
+ },
+ {
+ name: "Account type",
+ field: "user.account.type"
+ },
+ {
+ name: "Status",
+ field: "user.internal.status",
+ type: "custom",
+ display: {
+ render: field => `${field?.name} (${UtilsNew.dateFormatter(field?.date)})`
+ }
+ },
+ {
+ name: "Project and studies",
+ field: "projects",
+ type: "table",
+ display: {
+ columns: [
+ {
+ name: "Id",
+ field: "id"
+ },
+ {
+ name: "Name",
+ field: "name"
+ },
+ {
+ name: "Studies",
+ field: "studies",
+ type: "custom",
+ display: {
+ render: studies => {
+ return studies.map( study => study.name).join(", ")
+ }
+ }
+ }
+ ]
+ }
+ },
+ /*{
+ name: "Quota",
+ field: "quota",
+ type: "custom",
+ display: {
+ render: field => html`${Object.entries(field).map( ([k, v]) => html`${k}:${v} `)}`
+ }
+ }*/
+ ]
+ },
+ /*{
+ title: "Administration",
+ collapsed: false,
+ elements: [
+ {
+ name: "User",
+ field: "user.id",
+ type: "custom",
+ display: {
+ render: data => {
+ const config = {
+ addButton: false,
+ fields: item => ({
+ name: item.id
+ }),
+ dataSource: (query, process) => {
+ this.opencgaSession.opencgaClient.studies().acl(this.opencgaSession.study.fqn).then(restResponse => {
+ const results = restResponse.getResults();
+ process(results.map(config.fields));
+ });
+ }
+ };
+ return html` this.onFilterChange("userid", e.detail.value)}"> `
+ }
+ }
+ },
+ {
+ name: "Permissions",
+ type: "select",
+ multiple: true,
+ defaultValue: ["WRITE_FILES"],
+ allowedValues: ["CONFIDENTIAL_VARIABLE_SET_ACCESS", "EXECUTION",
+ {name: "Files", fields: ["WRITE_FILES", "VIEW_FILE_HEADERS", "VIEW_FILE_CONTENTS", "VIEW_FILES", "DELETE_FILES", "DOWNLOAD_FILES", "UPLOAD_FILES", "WRITE_FILE_ANNOTATIONS", "VIEW_FILE_ANNOTATIONS", "DELETE_FILE_ANNOTATIONS"]},
+ {name: "Jobs", fields: ["VIEW_JOBS", "WRITE_JOBS", "DELETE_JOBS"]},
+ {name: "Sample", fields: ["VIEW_SAMPLES", "WRITE_SAMPLES", "DELETE_SAMPLES", "WRITE_SAMPLE_ANNOTATIONS", "VIEW_SAMPLE_ANNOTATIONS", "DELETE_SAMPLE_ANNOTATIONS"]},
+ {name: "Individual", fields: ["VIEW_INDIVIDUALS", "WRITE_INDIVIDUALS", "DELETE_INDIVIDUALS", "WRITE_INDIVIDUAL_ANNOTATIONS", "VIEW_INDIVIDUAL_ANNOTATIONS", "DELETE_INDIVIDUAL_ANNOTATIONS"]},
+ {name: "Family", fields: ["VIEW_FAMILIES", "WRITE_FAMILIES", "DELETE_FAMILIES", "WRITE_FAMILY_ANNOTATIONS", "VIEW_FAMILY_ANNOTATIONS", "DELETE_FAMILY_ANNOTATIONS"]},
+ {name: "Cohort", fields: ["VIEW_COHORTS", "WRITE_COHORTS", "DELETE_COHORTS", "WRITE_COHORT_ANNOTATIONS", "VIEW_COHORT_ANNOTATIONS", "DELETE_COHORT_ANNOTATIONS"]},
+ {name: "Disease Panels", fields: ["VIEW_PANELS", "WRITE_PANELS", "DELETE_PANELS"]},
+ {name: "Clinical Analysis", fields: ["VIEW_CLINICAL_ANALYSIS", "WRITE_CLINICAL_ANALYSIS", "DELETE_CLINICAL_ANALYSIS"]}]
+ },
+ {
+ name: "Study",
+ field: "study",
+ type: "select",
+ allowedValues: ["study1"],
+ defaultValue: ["study1"],
+ errorMessage: "No found...",
+ display: {
+ width: 9
+ }
+ }
+ ]
+ },*/
+
+ ]
+ };
+ }
+
+ render() {
+ return html`
+
+ `;
+ }
+}
+
+customElements.define("iva-profile", IvaProfile);
diff --git a/src/iva-settings.js b/src/iva-settings.js
new file mode 100644
index 000000000..2e75eeb32
--- /dev/null
+++ b/src/iva-settings.js
@@ -0,0 +1,63 @@
+/**
+ * Copyright 2015-2019 OpenCB
+ *
+ * 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
+ *
+ * http://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.
+ */
+
+import {LitElement, html} from "/web_modules/lit-element.js";
+
+export default class IvaSettings extends LitElement {
+
+ constructor() {
+ super();
+ this._init();
+ }
+
+ createRenderRoot() {
+ return this;
+ }
+
+ static get properties() {
+ return {
+ cellbaseClient: {
+ type: Object
+ },
+ query: {
+ type: Object
+ },
+ config: {
+ type: Object
+ }
+ }
+ }
+
+ _init(){
+ this._prefix = "s-";
+ }
+
+ updated(changedProperties) {
+ if(changedProperties.has("property")) {
+ this.propertyObserver();
+ }
+ }
+
+ render() {
+ return html`
+
+
Settings
+
+ `;
+ }
+}
+
+customElements.define("iva-settings", IvaSettings);
diff --git a/src/jso-styles.html b/src/jso-styles.html
deleted file mode 100644
index 1aa30cb59..000000000
--- a/src/jso-styles.html
+++ /dev/null
@@ -1,99 +0,0 @@
-
-
-
-
-
-
-
diff --git a/src/opencga-breadcrumb.js b/src/opencga-breadcrumb.js
new file mode 100644
index 000000000..a686153cd
--- /dev/null
+++ b/src/opencga-breadcrumb.js
@@ -0,0 +1,84 @@
+/**
+ * Copyright 2015-2019 OpenCB
+ *
+ * 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
+ *
+ * http://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.
+ */
+
+import {LitElement, html} from "/web_modules/lit-element.js";
+
+export default class OpencgaBreadcrumb extends LitElement {
+
+ constructor() {
+ super();
+ this._init();
+ }
+
+ createRenderRoot() {
+ return this;
+ }
+
+ static get properties() {
+ return {
+ opencgaSession: {
+ type: Object
+ },
+ config: {
+ type: Object
+ }
+ };
+ }
+
+ _init() {
+ this._prefix = "bc-";
+ }
+
+ render() {
+ let breadcrumHtml, projectAndStudy;
+ if (this.opencgaSession.project && this.opencgaSession.project.id) {
+ let studyId = this.opencgaSession.study ? this.opencgaSession.study.id : "null";
+ projectAndStudy = this.opencgaSession.project.id + "/" + studyId;
+ breadcrumHtml = html`
+
+ ${this.opencgaSession.project.id}
+
+
+ ${studyId}
+ `;
+ } else {
+ projectAndStudy = "null";
+ breadcrumHtml = html`
+
+ null
+ `;
+ }
+
+ return html`
+
+
+ `;
+ }
+}
+
+customElements.define("opencga-breadcrumb", OpencgaBreadcrumb);
diff --git a/src/prod/index.html b/src/prod/index.html
deleted file mode 100644
index 467bf67b0..000000000
--- a/src/prod/index.html
+++ /dev/null
@@ -1,145 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/rollup.html b/src/rollup.html
new file mode 100644
index 000000000..7475b69d9
--- /dev/null
+++ b/src/rollup.html
@@ -0,0 +1,94 @@
+
+
+
+
+ Title
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/styles/global.css b/src/styles/global.css
new file mode 100644
index 000000000..b91c885dd
--- /dev/null
+++ b/src/styles/global.css
@@ -0,0 +1,2063 @@
+:root {
+ --main-bg-color: #0c2f4c;
+ --main-bg-color-darker: #09243a;
+}
+
+body, * {
+ font-family: "Lato", Helvetica, Arial, sans-serif;
+}
+
+p {
+ margin: 0;
+}
+
+a:link, a:visited {
+ color: #286090;
+}
+
+a:focus, a:hover {
+ /*color: #333;*/
+ text-decoration: none;
+}
+
+a.disabled, a.disabled:hover {
+ cursor: not-allowed;
+ text-decoration: none;
+}
+
+.uppercase {
+ font-size: 15px;
+ text-transform: uppercase;
+ letter-spacing: 2px;
+}
+
+.inline-block {
+ display: inline-block;
+}
+
+.pad5 {
+ padding: 5px;
+}
+
+.pad15 {
+ padding: 15px;
+}
+
+.mag5 {
+ margin: 5px;
+}
+
+input[type="text"] {
+ width: 100%;
+}
+
+.v-space {
+ height: 100px;
+}
+
+.badge {;
+ margin: 0 1px;
+ background: #337ab7;
+}
+
+.badge .close-icon {
+ cursor: pointer;
+}
+
+/* badge style from bootstrap 4 */
+.badge-info {
+ color: #fff;
+ background-color: #17a2b8;
+}
+
+.badge-success {
+ color: #fff;
+ background-color: #28a745;
+}
+
+.badge-secondary {
+ color: #fff;
+ background-color: #6c757d;
+}
+
+.badge-warning {
+ color: #212529;
+ background-color: #ffc107;
+}
+
+.badge-danger {
+ color: #fff;
+ background-color: #dc3545;
+}
+
+.badge-light {
+ color: #ffffff;
+ background-color: #a5a5a5;
+}
+
+.badge-dark {
+ color: #fff;
+ background-color: #343a40;
+}
+
+.align-middle {
+ vertical-align: middle;
+}
+
+.break-word {
+ word-break: break-all;
+}
+
+.multi-line {
+ white-space: normal;
+}
+
+.one-line {
+ white-space: nowrap !important;
+}
+
+.force-text-left {
+ text-align: left !important;
+}
+
+.bg-white {
+ background: white !important;
+}
+/* TODO input material effect continue*/
+.input {
+ border: 0;
+ transition: 0.5s;
+ border-bottom: 1px solid #ccc;
+ box-shadow: 0px 0px 4px rgba(0, 0, 0, .1);
+}
+
+.input:focus {
+ transition: 0.5s;
+ border-radius: 0;
+ border-bottom: 1px solid rgba(12, 47, 76);
+ box-shadow: 0px 0px 4px rgba(0, 0, 0, .3);
+}
+
+#welcome-page-title {
+ font-size: 10px;
+ text-align: center;
+ letter-spacing: -20px;
+ position: relative;
+ margin-top: 40px;
+}
+
+#welcome-page-title .iva-logo{
+
+}
+
+.company-logo {
+ padding: 1px;
+}
+.company-logo img{
+ height: 45px;
+}
+
+.iva-logo img {
+ width: 35em;
+}
+
+.iva-logo span.subtitle {
+ font-size: 2em;
+ display: block;
+ font-variant: all-small-caps;
+ letter-spacing: .3em;
+ font-weight: bold;
+}
+
+.iva-logo .version {
+ font-size: 2.5em;
+ font-variant: all-small-caps;
+ display: inline-block;
+ vertical-align: top;
+ letter-spacing: 0px;
+ margin: 0px 0 0 10px;
+ position: absolute;
+}
+
+.iva-logo .bracket {
+ font-size: 1em;
+ color: black;
+ font-weight: bold;
+ margin: 0 4px;
+}
+
+.iva-logo-white {
+ padding: 10px;
+}
+
+.iva-logo-white img{
+ width: 70px;
+ display: inline-block;
+}
+
+.iva-logo-white sup{
+ font-variant: all-small-caps;
+ top: -1em;
+ text-transform: uppercase;
+ font-size: .6em;
+}
+
+/* plain text in form-group (instead of input text) */
+.form-group .text {
+ padding-top: 7px;
+ margin-bottom: 0;
+}
+
+/* bringing bootstrap dropdown (opencga-active-filters) above bootstraptable */
+.dropdown-menu {
+ z-index: 1001;
+}
+
+.main-navbar {
+ margin: 0;
+ border-radius: 0px;
+}
+
+.main-navbar .nav-item-category{
+ font-weight: bold;
+}
+
+.main-navbar .separator {
+ background: rgba(255, 255, 255, 0.3);
+ width: 1px;
+ height: 32px;
+ margin: 9px;
+}
+
+/*********** bootstrap override *****************/
+@media (min-width: 576px) {
+ .modal-lg {
+ width: 100%;
+ }
+}
+
+@media (min-width: 768px) {
+ .modal-lg {
+ width: 60%;
+ }
+}
+
+.nav-tabs > li.active > a {
+ border-top: 1px solid var(--main-bg-color) !important;
+}
+
+.study-switcher {
+ display: flex !important;
+ justify-content: center;
+ align-items: center;
+ padding: 0;
+ height: 50px;
+}
+
+.study-switcher p{
+ padding: 0;
+ line-height: 1.1em;
+}
+
+.study-switcher p.project-name {
+ color: #afafaf;
+}
+
+.study-switcher p.study-id{
+ font-size: 1.2em;
+ font-weight: bold;
+}
+
+.study-switcher .caret {
+ /*align-self: flex-end;*/
+}
+
+/*********** bootstrap tabs customisation *****************/
+.table>tbody>tr.success>td {
+ /*background-color: #d0e9c6 !important;*/
+}
+
+/* Bootstrap panel and button overrides */
+h3.page-title {
+ margin: 10px 10px 10px 15px;
+ font-size: 2em;
+}
+
+.panel-title {
+ font-size: 1.2em;
+ text-transform: uppercase;
+ letter-spacing: 2px;
+}
+
+.panel-default > .panel-heading {
+ background: none;
+}
+
+.panel-default > .panel-heading + .panel-collapse > .panel-body {
+ border: none;
+}
+
+.btn-primary.ripple {
+ color: white;
+}
+
+.btn-group .ripple {
+ margin: 0;
+}
+.btn-group>.btn+.dropdown-toggle {
+ padding-bottom: 9px;
+}
+
+/*.btn-group .btn:first-child {
+ clip-path: inset(-17px 0px -17px -17px);
+}
+
+.btn-group .btn:last-child {
+ clip-path: inset(-17px -17px -17px 0px);
+}*/
+
+.shadow {
+ -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
+ box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
+ -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
+ transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
+}
+
+.shadow-lg {
+ -webkit-box-shadow: 0 0 16px rgba(0, 0, 0, .28);
+ box-shadow: 0 0 16px rgba(0, 0, 0, .28);
+}
+
+.shadow-sm {
+ -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .16), 0 0 2px 0 rgba(0, 0, 0, .12);
+ box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .16), 0 0 2px 0 rgba(0, 0, 0, .12);
+}
+
+.no-shadow {
+ box-shadow: none !important;
+}
+
+.ripple {
+ margin: 0 .375rem; /* visual issues with toggle-switch*/
+ margin: 0;
+ text-transform: uppercase;
+ word-wrap: break-word;
+ white-space: normal;
+ cursor: pointer;
+ border: 0;
+ border-radius: 0px;
+ -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
+ box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
+ -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
+ transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
+ padding: 0.8rem 2.2rem;
+ position: relative;
+ overflow: hidden;
+ transform: translate3d(0, 0, 0);
+}
+
+.ripple:hover {
+ outline: 0;
+ -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.18), 0 3px 10px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.18), 0 3px 10px 0 rgba(0, 0, 0, 0.15);
+
+}
+
+.ripple:active, .ripple:focus {
+ -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
+}
+
+.ripple:after {
+ content: "";
+ display: block;
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ top: 0;
+ left: 0;
+ pointer-events: none;
+ background-image: radial-gradient(circle, #000 10%, transparent 10.01%);
+ background-repeat: no-repeat;
+ background-position: 50%;
+ transform: scale(10, 10);
+ opacity: 0;
+ transition: transform .4s, opacity .6s;
+}
+
+.ripple:active:after {
+ transform: scale(0, 0);
+ opacity: .2;
+ transition: 0s;
+}
+/* TODO evaluate remove .ripple-disabled */
+.ripple-disabled:after {
+ display: none;
+}
+
+.ripple-disabled,
+.ripple-disabled:active,
+.ripple-disabled:hover,
+.ripple-disabled:focus,
+.btn-primary.ripple-disabled:active:hover,
+.ripple[disabled] {
+ -webkit-box-shadow: none;
+ box-shadow: none;
+ cursor: default;
+ outline: 0;
+}
+
+.ripple[disabled] {
+ cursor: not-allowed;
+}
+
+.btn-primary.ripple-disabled:hover,
+.btn-primary.ripple-disabled:active:hover {
+ background: #337ab7;
+}
+
+.ripple.no-transform {
+ text-transform: none;
+}
+
+.ripple.btn-small {
+ padding: 0.8rem 1.3rem;
+ font-size: .8em;
+}
+
+.button-wrapper {
+ padding: 15px 0;
+}
+
+/*********** bootstrap tabs customisation *****************/
+.nav-tabs.nav-center {
+ text-align: center;
+}
+
+.nav-tabs.nav-center > li {
+ float: none;
+ display: inline-block;
+}
+
+.content-tab-wrapper > .content-tab:not(.active) {
+ display: none;
+}
+
+/*********** main view tabs *****************/
+.main-view .content-tab {
+ display: none;
+}
+
+.main-view .content-tab.active {
+ display: block;
+}
+
+/********** browser components *************/
+.page-title {
+ background-color: #f5f5f5;
+ margin: 0 -15px 20px -15px;
+ padding: 10px 30px 10px 10px;
+}
+
+.page-title.no-background {
+ background: none;
+}
+
+.page-title h2 {
+ text-transform: uppercase;
+ letter-spacing: .2em;
+ margin: 0;
+ padding: 8px;
+ text-decoration: none;
+ color: var(--main-bg-color);;
+ display: block;
+ transition: 0.3s;
+ font-size: 2em;
+}
+
+.page-title h2 .inverse,
+.detail-tabs h3 .inverse {
+ background: var(--main-bg-color);
+ color: white;
+ display: inline-block;
+ padding: 4px 10px;
+ margin: 0 0 0 10px;
+}
+
+.page-title img,
+.page-title i {
+ width: 40px;
+ font-size: 40px;
+ vertical-align: middle;
+}
+
+.variant-interpreter-interpretation > tool-header > .page-title {
+ height: 5em;
+}
+
+.variant-interpreter-interpretation > tool-header > .page-title h2 {
+ float: left;
+}
+
+.variant-interpreter-interpretation > tool-header > .page-title .page-title-right i{
+ font-size: 14px;
+}
+.variant-interpreter-interpretation .page-title-right {
+ padding: 7px;
+}
+.variant-interpreter-interpretation .page-title-right a,
+.variant-interpreter-interpretation .page-title-right button{
+ background: var(--main-bg-color);
+}
+
+.page-title-right {
+ float: right;
+}
+
+.search-button-wrapper {
+ text-align: center;
+ margin: 0 0 20px 0;
+}
+
+.search-button-wrapper i {
+ padding: 0 5px;
+}
+
+.full-width {
+ width: 100%;
+}
+
+.content-pills {
+ margin: 0 0 20px 0;
+}
+
+/********** active-filters *************/
+.active-filter-button:hover {
+ text-decoration: line-through;
+}
+
+.active-filter-button[disabled]:hover {
+ text-decoration: none;
+}
+
+.facet-wrapper {
+ margin: 10px 0 0 0;
+}
+
+.double-arrow {
+ transform: rotate(90deg);
+ width: 60px;
+ display: block;
+ margin: 0 auto;
+ height: 60px;
+}
+
+.double-arrow-wrapper {
+ display: flex;
+ margin: 5px 0;
+}
+
+.button-list{
+ padding-left: 20px;
+ display: inline-block;
+}
+
+.active-filter-label{
+ display: inline-block;
+ font-size: 15px;
+ text-transform: uppercase;
+ letter-spacing: 2px;
+ height: 34px;
+ line-height: 34px;
+ margin: 0;
+ padding-right: 10px;
+}
+
+.lhs {
+ display: inline-block;
+ padding: 5px 0;
+}
+
+.lhs .btn-group {
+ padding: 2px 0;
+}
+
+.rhs {
+ float: right;
+ padding:5px
+}
+
+.rhs .dropdown {
+ display: inline-block;
+}
+
+.filter-warning {
+ padding: 10px;
+ margin-bottom: 10px;
+ display: none;
+}
+
+.left-menu-tabs {
+ font-size: 1.2em;
+ font-weight: bold;
+ margin-bottom: 20px;
+}
+
+.left-menu-tabs li {
+ width: 50%;
+}
+
+.facet-selector {
+ margin-top: 15px;
+}
+
+.facet-list-container {
+ margin-top: 15px;
+ padding-top: 15px;
+ border-top: 1px solid rgba(221, 221, 221, 1);
+}
+
+.facet-box:not(:first-child) {
+ border-top: 1px solid rgba(221, 221, 221, 1);
+}
+
+.facet-row {
+ margin: 0;
+}
+
+.facet-row > div {
+ padding: 3px;
+ margin: 0;
+}
+
+.facet-row .nested {
+ /*padding: 15px;*/
+}
+
+.panel-title p {
+ margin: 0;
+}
+
+.facetResultsDiv {
+ padding-top: 20px;
+}
+
+.content-pills {
+ margin: 0 0 20px 0;
+}
+
+.icon-padding {
+ padding-right: 5px;
+}
+
+.or-text {
+ text-align: center;
+}
+
+.facet-list .alert-info small {
+ display: block;
+}
+
+/********** toggle-switch plugin override ************/
+.switch-toggle-wrapper {
+ margin: 10px 0;
+}
+
+.switch-toggle {
+ background: #f3f3f3;
+}
+
+.switch-toggle.text-white input[disabled] + label {
+ color: #bfbfbf;
+}
+
+.switch-toggle.text-white input + label {
+ color: #c7c7c7;
+}
+
+.switch-toggle input[disabled] ~ a.btn {
+ background: #e4e4e4;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+
+/* switch-toggle BUG trying to style the :checked input only. A checked disabled radio input remains grey after you enable it (e.g.Study-filter). Same problem in somatic-filter too on "None" value */
+.switch-toggle input:checked + label {
+ color: white
+}
+
+/********** waffle icon ************/
+a#waffle-icon-wrapper {
+ padding: 10px;
+}
+
+#waffle-icon {
+ background-image: url("data:image/svg+xml;base64, PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAxNzUuMyAxNjguNCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTc1LjMgMTY4LjQ7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZGlzcGxheTpub25lO30KCS5zdDF7ZGlzcGxheTppbmxpbmU7ZmlsbDojNUM1QzVDO3N0cm9rZTojRkZGRkZGO3N0cm9rZS13aWR0aDo2O3N0cm9rZS1taXRlcmxpbWl0OjEwO30KCS5zdDJ7ZmlsbDojRkZGRkZGO3N0cm9rZTojRkZGRkZGO3N0cm9rZS13aWR0aDo2O3N0cm9rZS1taXRlcmxpbWl0OjEwO30KPC9zdHlsZT4KPGcgaWQ9IkxpdmVsbG9fMiIgY2xhc3M9InN0MCI+Cgk8cmVjdCB4PSItMC41IiBjbGFzcz0ic3QxIiB3aWR0aD0iMTc1LjMiIGhlaWdodD0iMTY4LjQiLz4KPC9nPgo8ZyBpZD0iTGl2ZWxsb18xIj4KCTxnPgoJCTxjaXJjbGUgY2xhc3M9InN0MiIgY3g9IjQ0IiBjeT0iNDEuMSIgcj0iNy4yIi8+CgkJPGNpcmNsZSBjbGFzcz0ic3QyIiBjeD0iNDQiIGN5PSI4NC4yIiByPSI3LjIiLz4KCQk8Y2lyY2xlIGNsYXNzPSJzdDIiIGN4PSI0NCIgY3k9IjEyNy4yIiByPSI3LjIiLz4KCQk8Y2lyY2xlIGNsYXNzPSJzdDIiIGN4PSIxMzAuMSIgY3k9IjEyNy4yIiByPSI3LjIiLz4KCQk8Y2lyY2xlIGNsYXNzPSJzdDIiIGN4PSI4Ny4xIiBjeT0iMTI3LjIiIHI9IjcuMiIvPgoJCTxjaXJjbGUgY2xhc3M9InN0MiIgY3g9Ijg3LjEiIGN5PSI0MS4xIiByPSI3LjIiLz4KCQk8Y2lyY2xlIGNsYXNzPSJzdDIiIGN4PSIxMzAuMSIgY3k9IjQxLjEiIHI9IjcuMiIvPgoJCTxjaXJjbGUgY2xhc3M9InN0MiIgY3g9Ijg3LjEiIGN5PSI4NC4yIiByPSI3LjIiLz4KCQk8Y2lyY2xlIGNsYXNzPSJzdDIiIGN4PSIxMzAuMSIgY3k9Ijg0LjIiIHI9IjcuMiIvPgoJPC9nPgo8L2c+Cjwvc3ZnPgoK");
+ background-size: cover;
+ width: 30px;
+ height: 30px;
+}
+
+/********** sidenav ************/
+.ms-sidenav {
+ position: absolute;
+ z-index: 1000000;
+ background-color: #fff;
+ width: 320px;
+ min-width: 320px;
+ max-width: 320px;
+ box-sizing: border-box;
+ outline: none;
+ overflow-y: auto;
+ visibility: visible;
+ pointer-events: auto;
+ top: 0;
+ left: 0;
+ right: auto;
+ height: 100vh;
+ -webkit-transform-origin: top left;
+ -ms-transform-origin: top left;
+ transform-origin: top left;
+ -webkit-animation-duration: .18s;
+ animation-duration: .18s;
+ -webkit-animation-timing-function: ease;
+ animation-timing-function: ease;
+ -webkit-animation-name: slideOutFrames;
+ animation-name: slideOutFrames
+
+}
+
+.ms-sidenav.active {
+ -webkit-animation-name: slideInFrames;
+ animation-name: slideInFrames
+}
+
+@-webkit-keyframes slideInFrames {
+ 0% {
+ opacity: 0;
+ -webkit-transform: scale(.95);
+ -ms-transform: scale(.95);
+ transform: scale(.95)
+ }
+ to {
+ opacity: 1;
+ -webkit-transform: scale(1);
+ -ms-transform: scale(1);
+ transform: scale(1)
+ }
+}
+
+@keyframes slideInFrames {
+ 0% {
+ opacity: 0;
+ -webkit-transform: scale(.95);
+ -ms-transform: scale(.95);
+ transform: scale(.95)
+ }
+ to {
+ opacity: 1;
+ -webkit-transform: scale(1);
+ -ms-transform: scale(1);
+ transform: scale(1)
+ }
+}
+
+@-webkit-keyframes slideOutFrames {
+ 0% {
+ visibility: visible;
+ opacity: 1;
+ -webkit-transform: scale(1);
+ -ms-transform: scale(1);
+ transform: scale(1)
+ }
+ to {
+ visibility: hidden;
+ opacity: 0;
+ -webkit-transform: scale(.95);
+ -ms-transform: scale(.95);
+ transform: scale(.95)
+ }
+}
+
+@keyframes slideOutFrames {
+ 0% {
+ visibility: visible;
+ opacity: 1;
+ -webkit-transform: scale(1);
+ -ms-transform: scale(1);
+ transform: scale(1)
+ }
+ to {
+ visibility: hidden;
+ opacity: 0;
+ -webkit-transform: scale(.95);
+ -ms-transform: scale(.95);
+ transform: scale(.95)
+ }
+}
+
+/********** cards ************/
+.card {
+ background: #fff;
+ display: inline-block;
+ border: 1px solid #ddd;
+}
+
+.card .image {
+ float: left;
+ background: #000;
+ width: 25%;
+ height: 150px
+}
+
+.card .content {
+ float: left;
+ height: 140px;
+ width: 73%;
+ overflow: hidden;
+ padding: 5px;
+}
+
+.card .content h4 {
+ margin: 5px 0;
+}
+
+/********** text-only icons in category pages ************/
+.text-icon-wrapper {
+ float: left;
+ height: 100px;
+ width: 100px;
+ margin: 0 15px 0 0;
+}
+
+.text-icon {
+ border: 5px solid var(--main-bg-color);
+ color: var(--main-bg-color);
+ font-size: 32px;
+ text-align: center;
+ border-radius: 50%;
+ line-height: 85px;
+ font-weight: 500;
+ letter-spacing: -2px;
+ font-family: "Lato", serif;
+ overflow: hidden;
+ /*
+ -webkit-box-shadow: 5px 5px 5px -2px rgba(0, 0, 0, 0.75);
+ -moz-box-shadow: 5px 5px 5px -2px rgba(0, 0, 0, 0.75);
+ box-shadow: 5px 5px 5px -2px rgba(0, 0, 0, 0.75);
+ */
+ background: linear-gradient(135deg, #c4d3e0 0%, #c4d3e0 50%, #c4d3e0 100%);
+ background: #c6ddf3;
+ text-shadow: 2px 2px 0px rgba(12, 47, 76, 0.3),
+ 4px 4px 3px rgba(163, 191, 216, 1),
+ 6px 6px 3px rgba(163, 191, 216, 1),
+ 8px 8px 3px rgba(163, 191, 216, 1),
+ 10px 10px 3px rgba(163, 191, 216, 1),
+ 12px 12px 3px rgba(163, 191, 216, 1),
+ 14px 14px 3px rgba(163, 191, 216, 1),
+ 16px 16px 3px rgba(163, 191, 216, 1),
+ 18px 18px 3px rgba(163, 191, 216, 1),
+ 20px 20px 3px rgba(163, 191, 216, 1),
+ 22px 22px 3px rgba(163, 191, 216, 1),
+ 24px 24px 3px rgba(163, 191, 216, 1),
+ 26px 26px 3px rgba(163, 191, 216, 1),
+ 28px 28px 3px rgba(163, 191, 216, 1),
+ 30px 30px 3px rgba(163, 191, 216, 1),
+ 32px 32px 3px rgba(163, 191, 216, 1),
+ 34px 34px 3px rgba(163, 191, 216, 1),
+ 36px 36px 3px rgba(163, 191, 216, 1),
+ 38px 38px 3px rgba(163, 191, 216, 1),
+ 40px 40px 3px rgba(163, 191, 216, 1),
+ 42px 42px 3px rgba(163, 191, 216, 1),
+ 44px 44px 3px rgba(163, 191, 216, 1)
+}
+
+.text-icon.grey {
+ border: 5px solid var(--main-bg-color);
+ color: var(--main-bg-color);
+ background: linear-gradient(135deg, #c4d3e0 0%, #c4d3e0 50%, #c4d3e0 100%);
+ background: #ffffff;
+ text-shadow: 2px 2px 0px rgba(12, 47, 76, 0.3),
+ 4px 4px 3px rgb(236, 236, 236),
+ 6px 6px 3px rgb(236, 236, 236),
+ 8px 8px 3px rgb(236, 236, 236),
+ 10px 10px 3px rgb(236, 236, 236),
+ 12px 12px 3px rgb(236, 236, 236),
+ 14px 14px 3px rgb(236, 236, 236),
+ 16px 16px 3px rgb(236, 236, 236),
+ 18px 18px 3px rgb(236, 236, 236),
+ 20px 20px 3px rgb(236, 236, 236),
+ 22px 22px 3px rgb(236, 236, 236),
+ 24px 24px 3px rgb(236, 236, 236),
+ 26px 26px 3px rgb(236, 236, 236),
+ 28px 28px 3px rgb(236, 236, 236),
+ 30px 30px 3px rgb(236, 236, 236),
+ 32px 32px 3px rgb(236, 236, 236),
+ 34px 34px 3px rgb(236, 236, 236),
+ 36px 36px 3px rgb(236, 236, 236),
+ 38px 38px 3px rgb(236, 236, 236),
+ 40px 40px 3px rgb(236, 236, 236),
+ 42px 42px 3px rgb(236, 236, 236),
+ 44px 44px 3px rgb(236, 236, 236)
+}
+
+.text-icon.green {
+ border: 5px solid green;
+ color: green;
+ background: #d2ffd2;
+ text-shadow: 2px 2px 0px rgba(12, 47, 76, 0.3),
+ 4px 4px 3px rgba(171, 211, 174, 1),
+ 6px 6px 3px rgba(171, 211, 174, 1),
+ 8px 8px 3px rgba(171, 211, 174, 1),
+ 10px 10px 3px rgba(171, 211, 174, 1),
+ 12px 12px 3px rgba(171, 211, 174, 1),
+ 14px 14px 3px rgba(171, 211, 174, 1),
+ 16px 16px 3px rgba(171, 211, 174, 1),
+ 18px 18px 3px rgba(171, 211, 174, 1),
+ 20px 20px 3px rgba(171, 211, 174, 1),
+ 22px 22px 3px rgba(171, 211, 174, 1),
+ 24px 24px 3px rgba(171, 211, 174, 1),
+ 26px 26px 3px rgba(171, 211, 174, 1),
+ 28px 28px 3px rgba(171, 211, 174, 1),
+ 30px 30px 3px rgba(171, 211, 174, 1),
+ 32px 32px 3px rgba(171, 211, 174, 1),
+ 34px 34px 3px rgba(171, 211, 174, 1),
+ 36px 36px 3px rgba(171, 211, 174, 1),
+ 38px 38px 3px rgba(171, 211, 174, 1),
+ 40px 40px 3px rgba(171, 211, 174, 1),
+ 42px 42px 3px rgba(171, 211, 174, 1),
+ 44px 44px 3px rgba(171, 211, 174, 1)
+}
+
+.text-icon.red {
+ background: #e4c5c5;
+ border: 5px solid #bb0000;
+ color: #bb0000;
+ text-shadow: 2px 2px 0px rgba(12, 47, 76, 0.3),
+ 4px 4px 3px rgba(218, 166, 166, 1),
+ 6px 6px 3px rgba(218, 166, 166, 1),
+ 8px 8px 3px rgba(218, 166, 166, 1),
+ 10px 10px 3px rgba(218, 166, 166, 1),
+ 12px 12px 3px rgba(218, 166, 166, 1),
+ 14px 14px 3px rgba(218, 166, 166, 1),
+ 16px 16px 3px rgba(218, 166, 166, 1),
+ 18px 18px 3px rgba(218, 166, 166, 1),
+ 20px 20px 3px rgba(218, 166, 166, 1),
+ 22px 22px 3px rgba(218, 166, 166, 1),
+ 24px 24px 3px rgba(218, 166, 166, 1),
+ 26px 26px 3px rgba(218, 166, 166, 1),
+ 28px 28px 3px rgba(218, 166, 166, 1),
+ 30px 30px 3px rgba(218, 166, 166, 1),
+ 32px 32px 3px rgba(218, 166, 166, 1),
+ 34px 34px 3px rgba(218, 166, 166, 1),
+ 36px 36px 3px rgba(218, 166, 166, 1),
+ 38px 38px 3px rgba(218, 166, 166, 1),
+ 40px 40px 3px rgba(218, 166, 166, 1),
+ 42px 42px 3px rgba(218, 166, 166, 1),
+ 44px 44px 3px rgba(218, 166, 166, 1)
+}
+
+/* TODO move in jsorolla */
+.bootstrap-table {
+ font-size: 13px;
+}
+
+.bootstrap-table thead {
+ background-color: #f5f5f5;
+}
+
+.bootstrap-table .fixed-table-body {
+ /* min-height: 170px; /* making space for the loading spinner */
+}
+
+.bootstrap-table .fixed-table-body{
+ min-height: 20vh;
+}
+
+/* hide the default loading animation */
+.bootstrap-table .animation-wrap {
+ display: none !important;
+}
+
+.bootstrap-table .fixed-table-loading {
+ min-height: 90px;
+}
+
+.bootstrap-table > .fixed-table-pagination .pagination{
+
+}
+
+.bootstrap-table .detail-view:hover {
+ background-color: white;
+}
+
+.bootstrap-table .detail-view-row:hover {
+ background-color: #f5f5f5;
+}
+
+/* fix the dropdown hidden in a bootstrap table */
+.force-overflow .fixed-table-body {
+ overflow: visible !important;
+}
+
+/* Custom pagination-detail on top of the boostrap-table grids.
+ This removes the pager buttons on top pf the grids leaving only the counter of records.
+ nth-child(2) is the top pager while nth-child(4) would the bottom pager.
+*/
+.bootstrap-table.bootstrap3 .fixed-table-pagination:nth-child(2) .pagination-info {
+ line-height: 1;
+}
+.bootstrap-table.bootstrap3 .fixed-table-pagination:nth-child(2) .pagination-detail {
+ margin: 0 0 3px 0;
+}
+.bootstrap-table.bootstrap3 .fixed-table-pagination:nth-child(2) .page-list,
+.bootstrap-table.bootstrap3 .fixed-table-pagination:nth-child(2) .pagination {
+ display: none;
+}
+
+.bootstrap-table .pagination-info {
+ font-size: 12px;
+}
+
+/* qtip tooltip style */
+.qtip-content > p {
+ padding: 5px 0;
+}
+
+/* browsers style */
+.browser-subsection {
+ font-size: 1.5rem;
+ font-weight: bold;
+ padding: 7px 0px 5px 0px;
+ color: #444444;
+ border: none
+}
+
+opencga-facet .panel-body > .form-group:not(:first-child) {
+ border-top: 1px solid rgba(221, 221, 221, 0.8);
+}
+
+.subsection-content {
+ margin: 5px 5px;
+}
+
+.panel.filter-section {
+ margin-bottom: 10px;
+ font-size: 13px;
+}
+
+/********** annotation-filter-modal ************/
+.map-field-input {
+
+}
+.map-field-wrapper {
+ margin-: 10px 0;
+}
+.map-field-inputs {
+ margin-top: 10px;
+ margin-bottom: 15px;
+}
+
+/********** checkbox widget TODO remove ************/
+/*
+.checkbox-container {
+ margin:0;
+ padding:0;
+}
+.checkbox-container li{
+ display: block;
+ position: relative;
+ cursor: pointer;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+}
+.checkbox-container > li > a {
+ padding: 3px 10px 3px 0;
+ display: block;
+}
+.checkbox-container span + span {
+ margin: 0 5px;
+}
+.checkbox-container .checkmark-label {
+ padding:0 0 0 30px;
+ color: #333;
+}
+.checkbox-container input[type=checkbox] {
+ position: absolute;
+ opacity: 0;
+ cursor: pointer;
+ height: 0;
+ width: 0;
+}
+.checkbox-container .checkmark {
+ position: absolute;
+ top: 3px;
+ left: 0;
+ height: 20px;
+ width: 20px;
+ background-color: #f5f5f5;
+}
+.checkbox-container input:checked ~ .checkmark {
+ background-color: #337ab7;
+}
+.checkbox-container .checkmark:after {
+ content: "";
+ position: absolute;
+ display: none;
+}
+.checkbox-container input:checked ~ .checkmark:after {
+ display: block;
+}
+.checkbox-container .checkmark:after {
+ left: 8px;
+ top: 4px;
+ width: 5px;
+ height: 10px;
+ border: solid white;
+ border-width: 0 3px 3px 0;
+ -webkit-transform: rotate(45deg);
+ -ms-transform: rotate(45deg);
+ transform: rotate(45deg);
+}
+
+.checkbox-container a:focus .checkmark-label,
+.checkbox-container a:hover .checkmark-label {
+ color: #337ab7;
+}
+
+.checkbox-container li a:focus,
+.checkbox-container li a:hover {
+ text-decoration: none;
+}*/
+
+/********** checkbox container 2 ************/
+ul.checkbox-container {
+ list-style: none;
+ margin: 0;
+ padding: 0;
+}
+
+.checkbox-container input[type=checkbox] {
+ display: none;
+}
+
+/* Draw our custom check box */
+.checkbox-container {
+ line-height: 20px;
+}
+
+.checkbox-container label {
+ cursor: pointer;
+ transition: all 1s;
+}
+
+.checkbox-container label:before {
+ display: inline-block;
+ width: 20px;
+ margin-right: 5px;
+ content: "\00a0";
+ text-align: center;
+ background: #eee;
+}
+
+.checkbox-container label:hover::before {
+ background: #d2d2d2;
+}
+
+.checkbox-container input:checked ~ label:before {
+ content: "\02714";
+ background: #337ab7;
+ color: #fff;
+}
+
+/********** switch widget ************/
+.switch-container {
+ position: relative;
+ width: 180px;
+ padding-top: 10px;
+}
+
+.switch-container .flex-center {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+
+.switch-container .rating-label {
+ position: relative;
+ text-align: center;
+ flex: 0.5;
+ z-index: 3;
+ font-weight: bold;
+ cursor: pointer;
+ color: #bbbbbb;
+ transition: 500ms;
+}
+
+.switch-container .rating-label:hover,
+.switch-container .rating-label:active {
+ color: #bbbbbb;
+}
+
+.switch-container .rating-label-and {
+ left: -27px;
+ text-align: right;
+}
+
+.switch-container .rating-label-or {
+ left: 33px;
+ text-align: left;
+ color: #222;
+}
+
+.switch-container input {
+ display: none;
+}
+
+.switch-container .toggle-rating-pill {
+ position: relative;
+ height: 30px;
+ width: 60px;
+ background: #347ab7;
+ border-radius: 50px;
+ transition: all 500ms;
+}
+
+.switch-container .rating-toggle {
+ position: absolute;
+ width: 26px;
+ height: 26px;
+ background-color: white;
+ left: 62px;
+ border-radius: 50%;
+ transition: all 300ms;
+ z-index: 4;
+}
+
+.switch-container input[disabled].radio-or ~ .rating-label-or,
+.switch-container input[disabled].radio-and ~ .rating-label-and {
+ color: #e4e4e4;
+}
+
+.switch-container input[disabled] ~ .toggle-rating-pill {
+ background: #e4e4e4;
+}
+
+/*
+Toggle Changes
+*/
+.switch-container .radio-or:checked ~ .rating-label-or {
+ color: #555e63;
+}
+
+.switch-container .radio-and:checked ~ .rating-label-or {
+ color: #bbbbbb;
+}
+
+.switch-container .radio-and:checked ~ .rating-label-and {
+ color: #555e63;
+}
+
+.switch-container .radio-and:checked ~ .rating-toggle {
+ left: 92px;
+}
+
+.switch-container .radio-and:checked ~ .toggle-rating-pill {
+ /*background-color: #00b9ee;*/
+}
+
+/* Notification */
+
+#notifications-queue {
+ position: fixed;
+ top: 10px;
+ z-index: 9999;
+ left: 33%;
+}
+
+#notifications-queue .alert {
+ display: flex;
+ align-items: center;
+ margin: 5px auto;
+ position: relative;
+ transition: all 0.5s ease-in-out 0s;
+ z-index: 2020;
+ box-shadow: 0 1px 3px 0 rgba(60, 64, 67, 0.302), 0 4px 8px 3px rgba(60, 64, 67, 0.149);
+ font-size: .9em;
+ letter-spacing: .2px;
+ background-color: #373743;
+ border: none;
+ -webkit-border-radius: 4px;
+ border-radius: 4px;
+ bottom: 0;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ color: #fff;
+ left: 0;
+ padding: 10px 24px 11px 24px;
+ white-space: normal;
+}
+
+#notifications-queue .alert p.title {
+ font-size: 1.2em;
+}
+
+#notifications-queue .alert p.title i {
+ vertical-align: sub;
+}
+
+#notifications-queue .alert p.details {
+ color: #b6c1c9;
+ word-break: break-all;
+}
+
+#notifications-queue .alert a {
+ color: #c9c9c9;
+}
+
+#notifications-queue .alert .close {
+ position: absolute;
+ top: 5px;
+ right: 0px;
+ font-size: 1em;
+ opacity: .4;
+}
+
+#notifications-queue .alert .close i {
+ color: #fff;
+}
+
+#notifications-queue .alert .fa {
+ margin-right: .3em;
+}
+
+#notifications-queue .alert-success i {
+ color: #91f096;
+}
+
+#notifications-queue .alert-info i {
+ color: #d2e6f7;
+}
+
+#notifications-queue .alert-warning i {
+ color: #f5e513;
+}
+
+#notifications-queue .alert-danger i {
+ color: #f28c8b;
+}
+
+.guard-page {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ flex-direction: column;
+ padding-top: 50px;
+}
+
+.guard-page i {
+ color: grey;
+}
+
+/* custom animations */
+.anim-rotate {
+ animation: rotate 1.5s linear infinite;
+}
+
+@keyframes rotate {
+ to {
+ transform: rotate(360deg);
+ }
+}
+
+/********** range slider ************/
+.slide-container {
+ height: 20px;
+}
+
+.slider {
+ -webkit-appearance: none; /* Override default CSS styles */
+ appearance: none;
+ width: 100%;
+ height: 5px;
+ background: #d3d3d3;
+ outline: none;
+ opacity: 0.7;
+ -webkit-transition: .2s;
+ transition: opacity .2s;
+}
+
+.slider:hover {
+ opacity: 1;
+}
+
+/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
+.slider::-webkit-slider-thumb {
+ -webkit-appearance: none; /* Override default look */
+ appearance: none;
+ width: 15px;
+ height: 15px;
+ background: #337ab7;
+ cursor: pointer;
+ border-radius: 50%;
+}
+
+.slider::-moz-range-thumb {
+ width: 10px;
+ height: 10px;
+ background: #337ab7;
+ cursor: pointer;
+ border-radius: 50%;
+
+}
+
+/********** center page box ************/
+.flex-center {
+
+}
+
+/********** interpreter ************/
+.save-button {
+ padding: 20px 0px 10px 10px;
+}
+
+/********** interpreter side-nav & opencga-project side-nav ************/
+.side-tabs.side-nav button{
+ padding: 15px;
+}
+
+.side-tabs.side-nav button.active {
+ padding: 15px;
+ font-weight: bold;
+ background-color: #EEEEEE;
+ color: #555;
+ border-color: #ddd #ddd #ddd var(--main-bg-color);
+}
+
+.side-tabs.side-nav button:focus {
+ border-color: #ddd;
+ outline: 0;
+}
+
+
+/********** welcome page / interpreter icons ************/
+.hi-icon-wrap {
+ text-align: center;
+ margin: 0 auto;
+ padding: 2em 0 3em;
+ padding-top: 10px;
+ padding-top: 10px;
+ padding-bottom: 20px;
+}
+
+.hi-icon {
+ display: inline-block;
+ margin: 10px 20px;
+ width: 80px;
+ height: 80px;
+ border-radius: 50%;
+ text-align: center;
+ position: relative;
+ z-index: 1;
+}
+
+.hi-icon a p {
+ text-decoration: none;
+ color: #000966;
+}
+
+.hi-icon a:hover p {
+ text-decoration: none;
+}
+
+.hi-icon:after {
+ pointer-events: none;
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ border-radius: 50%;
+ content: '';
+ -webkit-box-sizing: content-box;
+ -moz-box-sizing: content-box;
+ box-sizing: content-box;
+}
+
+.hi-icon:before {
+ /*font-family: 'ecoicon';*/
+ speak: none;
+ font-size: 32px;
+ line-height: 80px;
+ font-style: normal;
+ font-variant: normal;
+ text-transform: none;
+ display: block;
+ -webkit-font-smoothing: antialiased;
+ color: var(--main-bg-color);
+}
+
+.hi-icon-mobile:before {
+ content: "\e009";
+}
+
+.hi-icon-animation .hi-icon {
+ background: #fff;
+ -webkit-transition: box-shadow 0.2s;
+ -moz-transition: box-shadow 0.2s;
+ transition: box-shadow 0.2s;
+}
+
+.hi-icon-animation p {
+ -webkit-transition: all 0.3s;
+ -moz-transition: all 0.3s;
+ transition: all 0.3s;
+ color: #797979;
+}
+
+.hi-icon-animation .hi-icon svg {
+ -webkit-transition: -webkit-transform 0.2s, all 0.2s;
+ -moz-transition: -moz-transform 0.2s, all 0.2s;
+ transition: transform 0.2s, all 0.2s;
+ fill: var(--main-bg-color);
+ height: 90px;
+ width: 90px;
+}
+
+.hi-icon-animation .hi-icon.fa,
+.hi-icon-animation .icon-wrapper:hover .hi-icon img {
+ -webkit-transition: -webkit-transform 0.2s, all 0.2s;
+ -moz-transition: -moz-transform 0.2s, all 0.2s;
+ transition: transform 0.2s, all 0.2s;
+}
+
+.hi-icon-animation .hi-icon svg image {
+ height: 90px;
+ width: 90px;
+}
+
+.hi-icon-animation .hi-icon:after {
+ top: 0;
+ left: 0;
+ padding: 0;
+ box-shadow: 0 0 0 4px var(--main-bg-color);
+ -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
+ -moz-transition: -moz-transform 0.2s, opacity 0.2s;
+ transition: transform 0.2s, opacity 0.2s;
+}
+
+.hi-icon-animation .icon-wrapper:not(.disabled):hover .hi-icon:after,
+.hi-icon-animation .icon-wrapper:not(.disabled).active .hi-icon:after {
+ -webkit-transform: scale(0.85);
+ -moz-transform: scale(0.85);
+ -ms-transform: scale(0.85);
+ transform: scale(0.85);
+ opacity: 0.5;
+}
+
+/* in case of svg or image[src=svg] icon */
+.hi-icon-animation .icon-wrapper:hover .hi-icon svg,
+.hi-icon-animation .icon-wrapper:hover .hi-icon img,
+.hi-icon-animation .icon-wrapper.active .hi-icon svg,
+.hi-icon-animation .icon-wrapper.active .hi-icon img {
+ transform: scale(0.85);
+}
+
+/* in case of fa icon*/
+.hi-icon-animation .icon-wrapper:not(.disabled):hover .hi-icon.fa,
+.hi-icon-animation .icon-wrapper.active:not(.disabled) .hi-icon.fa {
+ transform: scale(0.85);
+}
+
+.hi-icon-animation .icon-wrapper:hover .hi-icon,
+.hi-icon-animation .icon-wrapper.active .hi-icon {
+ box-shadow: 0 0 0 10px var(--main-bg-color);
+ color: #fff;
+}
+
+.hi-icon-animation .icon-wrapper:not(.disabled):hover p,
+.hi-icon-animation .icon-wrapper:not(.disabled).active p {
+ color: var(--main-bg-color);
+}
+
+.hi-icon-animation .icon-wrapper.disabled .hi-icon:after,
+.hi-icon-animation .icon-wrapper.active.disabled .hi-icon.fa,
+.hi-icon-animation .icon-wrapper.disabled:hover .hi-icon.fa,
+.hi-icon-animation .icon-wrapper.disabled:hover .hi-icon:after {
+ transform: none;
+ opacity: 1;
+ box-shadow: 0 0 0 4px #8e8e8e;
+}
+
+.hi-icon-animation .icon-wrapper.disabled {
+ cursor: not-allowed;
+}
+
+.hi-icon-animation .icon-wrapper.disabled .hi-icon.fa:before {
+ color: #8e8e8e;
+}
+
+.hi-icon-animation .icon-wrapper.active:not(.disabled) .hi-icon:before {
+ transition: all .2s;
+ font-size: 36px;
+}
+
+.hi-icon-wrap {
+ display: flex;
+ justify-content: space-evenly;
+}
+
+/* valid for the wizard only (interpreter page) */
+.hi-icon-wrap.wizard a.icon-wrapper {
+ position: relative;
+}
+
+.hi-icon-wrap.wizard a.icon-wrapper:before {
+ content: "";
+ position: absolute;
+ width: 270px;
+ height: 3px;
+ top: 50px;
+ background: var(--main-bg-color);
+ left: 60px;
+}
+
+.hi-icon-wrap.wizard a.icon-wrapper.disabled:before {
+ background: #8e8e8e;
+}
+
+.hi-icon-wrap.wizard a.icon-wrapper:last-child:before {
+ content: none;
+}
+
+/****** magic checkbox / radio ********/
+.magic-radio + .magic-horizontal-label {
+ display: inline-block;
+ margin-right: 15px;
+}
+
+.magic-checkbox:checked + label:before {
+ border: #337ab7;
+ background: #337ab7;
+}
+
+/****** detail-tabs ********/
+.detail-tabs h3,
+data-form h3,
+.cellbase-variant-annotation-summary h3 /* TODO refactor this component in detail-tabs*/,
+.interpreter-content-tab h3,
+.modal-header,
+opencga-gene-view h3.section-title /* TODO refactor */{
+ text-transform: uppercase;
+ letter-spacing: .2em;
+ margin: 0;
+ padding: 10px 0 10px 0;
+ color: var(--main-bg-color);
+ display: block;
+ font-size: 1.6em;
+}
+
+.cellbase-variant-annotation-summary h3 {
+
+}
+
+.modal-header {
+ padding: 15px;
+}
+
+.detail-tabs .nav-tabs li a{
+ font-weight: bold;
+ font-size: 1.1em;
+}
+
+.detail-tabs .tab-content,
+.cellbase-variant-annotation-summary /* TODO refactor this component in detail-tabs*/{
+ padding: 10px 30px
+}
+/****** data-view ********/
+.detail-row {
+ padding: 5px 0;
+}
+
+/****** sweetalert2 fix ********/
+.swal2-popup {
+ font-size: 1em;
+}
+
+.list-item-arrow {
+ margin-left: 1em;
+ position: relative;
+ color: #2b388f;
+ font-weight: bold;
+}
+
+.list-item-arrow:before {
+ content: "";
+ position: absolute;
+ width: .9em;
+ height: 1.1em;
+ left: -1.1em;
+ background: transparent url('data:image/svg+xml;base64, PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNjYuNTEgMTgwLjc5Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzJiMzg4Zjt9LmNscy0ye2ZpbGw6IzFiNzViYjt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPlVudGl0bGVkLTE8L3RpdGxlPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIwIDAgMCAxMiAwIDI0IDAgMzYgMTY2LjUxIDEwOC41MSAxNjYuNTEgOTYuNTEgMTY2LjUxIDg0LjUxIDE2Ni41MSA3Mi41MSAwIDAiLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMCAxNDQuNzkgMCAxNTYuNzkgMCAxNjguNzkgMCAxODAuNzkgMTY2LjUxIDEwOC4yOCAxNjYuNTEgOTYuMjggMTY2LjUxIDg0LjI4IDE2Ni41MSA3Mi4yOCAwIDE0NC43OSIvPjwvc3ZnPgo=') no-repeat center center;
+}
+
+/****** job logs ********/
+.cmd {
+ background: black;
+ font-family: "Courier New", monospace;
+ padding: 15px;
+ color: #a5a5a5;
+ font-size: .9em;
+}
+
+/****** file manager ********/
+.file-manager {
+ padding: 0;
+}
+
+.file-manager > li {
+ border-radius: 3px;
+ background-color: #373743;
+ width: 307px;
+ height: 118px;
+ list-style-type: none;
+ margin: 10px;
+ display: inline-block;
+ position: relative;
+ overflow: hidden;
+ padding: 0.3em;
+ z-index: 1;
+ cursor: pointer;
+ box-sizing: border-box;
+ transition: 0.3s background-color;
+}
+
+.file-manager-breadcrumbs {
+ padding: 10px;
+}
+
+.file-manager-breadcrumbs a,
+.file-manager-breadcrumbs .path-separator {
+ font-size: 1.5em;
+ cursor: pointer;
+}
+
+.file-manager li a {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ display: flex;
+ align-items: center;
+}
+
+.file-manager li:hover {
+ background-color: #42424E;
+}
+
+.file-manager li:hover .icon {
+ color: #286090;
+}
+
+.file-manager .icon {
+ margin: 1em;
+ background-color: transparent;
+ overflow: hidden;
+}
+.file-manager .content {
+ width: 210px;
+}
+
+.file-manager .name {
+ color: #ffffff;
+ font-size: 15px;
+ font-weight: 700;
+ line-height: 20px;
+ word-break: break-all;
+}
+
+.file-manager .name .max-lines-2 {
+ display: -webkit-box;
+ -webkit-line-clamp: 2;
+ -webkit-box-orient: vertical;
+ overflow: hidden;
+}
+
+.file-manager .details {
+ color: #b6c1c9;
+ font-size: 13px;
+ font-weight: 400;
+ width: 55px;
+ height: 10px;
+ white-space: nowrap;
+ display: block;
+}
+.file-manager .format {
+ display: block;
+ color: #fff;
+ text-align: center;
+ margin-top: 3px;
+ width: 45px;
+ text-overflow: ellipsis;
+ overflow: hidden;
+}
+.file-manager .file.active {
+ background-color: #626269;
+ outline: thick solid #d0d0d0;
+}
+
+.file-manager-tree {
+ border-right: 1px solid gainsboro;
+}
+
+.file-manager-tree ul {
+ font-size: 14px;
+ margin-top: 30px;
+}
+
+.file-manager-tree ul {
+ margin: 0;
+ padding: 0;
+ list-style-type: none;
+}
+
+.file-manager-tree .folder {
+ padding: 10px 0 0 15px;
+}
+
+.file-manager-tree .folder-name {
+ font-weight: bold;
+ word-break: break-all;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+}
+
+.file-manager-tree .folder-name,
+.file-manager-tree .home{
+ cursor: pointer;
+}
+
+.file-manager-tree .folder-name + ul {
+ display: none;
+}
+
+.file-manager-tree .folder-name.exploded + ul {
+ display: block;
+}
+
+.file-manager-tree .file {
+ word-break: break-all;
+ padding: 5px 0 0px 12px;
+ cursor: pointer;
+ color: #337ab7;
+}
+
+.file-manager-tree .file i{
+ margin-right: 10px;
+ color: #747474;
+}
+
+.file-manager-tree .file.active {
+ color: black;
+}
+
+.opencga-file-manager .opencga-file-view {
+ margin-left: 5px;
+}
+
+.opencga-file-manager .file-manager-full-height,
+.opencga-file-manager .file-manager-tree{
+ min-height: calc(100vh - 160px);
+}
+
+/* temp fix for long filenames in opencga-file-manager */
+.opencga-file-manager .file-manager-tree .file {
+ display: flex;
+}
+.file-manager-tree .file {
+ word-break: normal;
+}
+.file-manager-tree .folder {
+ overflow: auto;
+}
+
+/* jobs-monitor*/
+.notification-nav li.notification,
+.notification-nav li.notification > a {
+ height: 50px;
+ min-width: 40px;
+}
+
+.notification-nav .dropdown-menu {
+ width: 340px;
+}
+
+.notification-nav .info {
+ padding: 3px 20px;
+ font-weight: bold;
+}
+
+.notification-nav .dropdown-menu a {
+ border-top: 1px solid #dedede;
+}
+.notification-nav .dropdown-menu li:first-child a {
+ border: 0;
+}
+
+.notification-nav .media-body .media-heading {
+ font-size: 14px;
+ margin: 3px 0 0px 0;
+}
+.notification-nav .media-body small {
+ color: #5d5d5d;
+}
+
+.notification-nav .media-left {
+ font-size: 20px;
+ color: #5d5d5d;
+ vertical-align: middle;
+}
+
+.media-heading {
+ width: 270px;
+ overflow: hidden;
+ text-overflow: ellipsis;
+}
+
+.notification-nav .media-body p {
+ width: 270px;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ color: grey;
+}
+
+.notification-nav .updated.status-ERROR {
+ background: rgba(255, 0, 0, 0.05);
+}
+
+.notification-nav .updated.status-DONE {
+ background: rgba(72, 255, 0, 0.05);
+}
+
+#job-monitor .job-monitor-item {
+}
+
+.rocket-RUNNING {
+ animation: spaceOutUp 2s infinite;
+}
+
+.rocket-PENDING,
+.rocket-QUEUED,
+.rocket-REGISTERING {
+ animation: float-rocket .5s infinite;
+}
+
+/****** animation ********/
+.anim-float {
+ animation: float .5s infinite;
+}
+.anim-spaceOutUp {
+ animation: spaceOutUp .5s infinite;
+}
+
+@keyframes float {
+ 0% {
+ -webkit-transform: translateY(0);
+ transform: translateY(0);
+ }
+ 50% {
+ -webkit-transform: translateY(-6px);
+ transform: translateY(-6px);
+ }
+ 100% {
+ -webkit-transform: translateY(0);
+ transform: translateY(0);
+ }
+}
+
+@keyframes float-rocket {
+ 0% {
+ -webkit-transform: translateY(0);
+ transform: translateY(-2px) translateX(0px) rotate(-45deg);
+ }
+ 50% {
+ -webkit-transform: translateY(-6px);
+ transform: translateY(0px) translateX(0px) rotate(-45deg);
+ }
+ 100% {
+ -webkit-transform: translateY(0) translateX(10px);
+ transform: translateY(-2px) translateX(0px) rotate(-45deg);
+ }
+}
+
+@keyframes spaceOutUp {
+ 0% {
+ opacity: 1;
+ -webkit-transform-origin: 50% 0%;
+ transform-origin: 50% 0%;
+ -webkit-transform: scale(1) translate(-200%, 200%);
+ transform: scale(1) translate(-200%, 200%);
+ }
+ 50% {
+ opacity: 1;
+ -webkit-transform-origin: 50% 0%;
+ transform-origin: 50% 0%;
+ -webkit-transform: scale(1) translate(0%, 0%);
+ transform: scale(1) translate(0%, 0%);
+ }
+ 100% {
+ opacity: 0;
+ -webkit-transform-origin: 50% 0%;
+ transform-origin: 50% 0%;
+ -webkit-transform: scale(.2) translate(200%, -200%);
+ transform: scale(.2) translate(200%, -200%);
+ }
+}
+
+/********** opencga-projects *************/
+#projects .project-tab .project-name {
+ padding: 15px 0 20px 0;
+}
+
+#projects .panel-container {
+ display: flex;
+ justify-content: center;
+}
+
+#projects .panel-container .panel{
+ flex-basis: 250px;
+ margin: 1em;
+ background: #f1f1f1;
+}
+
+#projects .panel-container .panel .counter {
+ font-size: 4em;
+ color: #204d74;
+}
+
+#projects .panel-container .panel .counter-title {
+ margin: -20px 0 0 0;
+ font-size: 15px;
+ text-transform: uppercase;
+ letter-spacing: 2px;
+}
+
+#projects .study-title {
+ font-size: 15px;
+ text-transform: uppercase;
+ letter-spacing: 2px;
+}
+
+/********** TODO refactor. variant-interpreter tooltip quickfix *************/
+.zygosity-formatter,
+.predictionTooltip-inner {
+ width: 250px;
+}
+.zygosity-formatter .col-md-5,
+.predictionTooltip-inner .col-md-5,
+.zygosity-formatter .col-md-7
+.predictionTooltip-inner .col-md-7{
+ padding: 0;
+}
diff --git a/src/styles/magic-check.css b/src/styles/magic-check.css
new file mode 100644
index 000000000..824506728
--- /dev/null
+++ b/src/styles/magic-check.css
@@ -0,0 +1,141 @@
+@keyframes hover-color {
+ from {
+ border-color: #c0c0c0;
+ }
+ to {
+ border-color: #3e97eb;
+ }
+}
+
+.magic-radio,
+.magic-checkbox {
+ position: absolute;
+ display: none;
+}
+
+.magic-radio[disabled],
+.magic-checkbox[disabled] {
+ cursor: not-allowed;
+}
+
+.magic-radio + label,
+.magic-checkbox + label {
+ position: relative;
+ display: block;
+ padding-left: 30px;
+ cursor: pointer;
+ vertical-align: middle;
+}
+
+.magic-radio + label:hover:before,
+.magic-checkbox + label:hover:before {
+ animation-duration: 0.4s;
+ animation-fill-mode: both;
+ animation-name: hover-color;
+}
+
+.magic-radio + label:before,
+.magic-checkbox + label:before {
+ position: absolute;
+ top: 0;
+ left: 0;
+ display: inline-block;
+ width: 20px;
+ height: 20px;
+ content: '';
+ border: 1px solid #c0c0c0;
+}
+
+.magic-radio + label:after,
+.magic-checkbox + label:after {
+ position: absolute;
+ display: none;
+ content: '';
+}
+
+.magic-radio[disabled] + label,
+.magic-checkbox[disabled] + label {
+ cursor: not-allowed;
+ color: #e4e4e4;
+}
+
+.magic-radio[disabled] + label:hover, .magic-radio[disabled] + label:before, .magic-radio[disabled] + label:after,
+.magic-checkbox[disabled] + label:hover,
+.magic-checkbox[disabled] + label:before,
+.magic-checkbox[disabled] + label:after {
+ cursor: not-allowed;
+}
+
+.magic-radio[disabled] + label:hover:before,
+.magic-checkbox[disabled] + label:hover:before {
+ border: 1px solid #e4e4e4;
+ animation-name: none;
+}
+
+.magic-radio[disabled] + label:before,
+.magic-checkbox[disabled] + label:before {
+ border-color: #e4e4e4;
+}
+
+.magic-radio:checked + label:before,
+.magic-checkbox:checked + label:before {
+ animation-name: none;
+}
+
+.magic-radio:checked + label:after,
+.magic-checkbox:checked + label:after {
+ display: block;
+}
+
+.magic-radio + label:before {
+ border-radius: 50%;
+}
+
+.magic-radio + label:after {
+ top: 6px;
+ left: 6px;
+ width: 8px;
+ height: 8px;
+ border-radius: 50%;
+ background: #3e97eb;
+}
+
+.magic-radio:checked + label:before {
+ border: 1px solid #3e97eb;
+}
+
+.magic-radio:checked[disabled] + label:before {
+ border: 1px solid #c9e2f9;
+}
+
+.magic-radio:checked[disabled] + label:after {
+ background: #c9e2f9;
+}
+
+.magic-checkbox + label:before {
+ border-radius: 3px;
+}
+
+.magic-checkbox + label:after {
+ top: 2px;
+ left: 7px;
+ box-sizing: border-box;
+ width: 6px;
+ height: 12px;
+ transform: rotate(45deg);
+ border-width: 2px;
+ border-style: solid;
+ border-color: #fff;
+ border-top: 0;
+ border-left: 0;
+}
+
+.magic-checkbox:checked + label:before {
+ border: #3e97eb;
+ background: #3e97eb;
+}
+
+.magic-checkbox:checked[disabled] + label:before {
+ border: #c9e2f9;
+ background: #c9e2f9;
+}
diff --git a/src/styles/toggle-switch.css b/src/styles/toggle-switch.css
new file mode 100644
index 000000000..d04fc89db
--- /dev/null
+++ b/src/styles/toggle-switch.css
@@ -0,0 +1,493 @@
+@charset "UTF-8";
+/*
+* CSS TOGGLE SWITCH
+*
+* IonuČ› Colceriu - ghinda.net
+* https://github.com/ghinda/css-toggle-switch
+*
+*/
+/* supported values are px, rem-calc, em-calc
+ */
+/* imports
+ */
+/* Functions
+ */
+/* Shared
+ */
+/* Hide by default
+ */
+.switch-toggle a,
+.switch-light span span {
+ display: none; }
+
+/* We can't test for a specific feature,
+ * so we only target browsers with support for media queries.
+ */
+@media only screen {
+ /* Checkbox
+ */
+ .switch-light {
+ position: relative;
+ display: block;
+ /* simulate default browser focus outlines on the switch,
+ * when the inputs are focused.
+ */ }
+ .switch-light::after {
+ clear: both;
+ content: '';
+ display: table; }
+ .switch-light *,
+ .switch-light *:before,
+ .switch-light *:after {
+ box-sizing: border-box; }
+ .switch-light a {
+ display: block;
+ transition: all 0.2s ease-out; }
+ .switch-light label,
+ .switch-light > span {
+ /* breathing room for bootstrap/foundation classes.
+ */
+ line-height: 2em; }
+ .switch-light input:focus ~ span a,
+ .switch-light input:focus + label {
+ outline-width: 2px;
+ outline-style: solid;
+ outline-color: Highlight;
+ /* Chrome/Opera gets its native focus styles.
+ */ } }
+ @media only screen and (-webkit-min-device-pixel-ratio: 0) {
+ .switch-light input:focus ~ span a,
+ .switch-light input:focus + label {
+ outline-color: -webkit-focus-ring-color;
+ outline-style: auto; } }
+
+@media only screen {
+ /* don't hide the input from screen-readers and keyboard access
+ */
+ .switch-light input {
+ position: absolute;
+ opacity: 0;
+ z-index: 3; }
+ .switch-light input:checked ~ span a {
+ right: 0%; }
+ /* inherit from label
+ */
+ .switch-light strong {
+ font-weight: inherit; }
+ .switch-light > span {
+ position: relative;
+ overflow: hidden;
+ display: block;
+ min-height: 2em;
+ /* overwrite 3rd party classes padding
+ * eg. bootstrap .alert
+ */
+ padding: 0;
+ text-align: left; }
+ .switch-light span span {
+ position: relative;
+ z-index: 2;
+ display: block;
+ float: left;
+ width: 50%;
+ text-align: center;
+ user-select: none; }
+ .switch-light a {
+ position: absolute;
+ right: 50%;
+ top: 0;
+ z-index: 1;
+ display: block;
+ width: 50%;
+ height: 100%;
+ padding: 0; }
+ /* bootstrap 4 tweaks
+*/
+ .switch-light.row {
+ display: flex; }
+ .switch-light .alert-light {
+ color: #333; }
+ /* Radio Switch
+ */
+ .switch-toggle {
+ position: relative;
+ display: block;
+ /* simulate default browser focus outlines on the switch,
+ * when the inputs are focused.
+ */
+ /* For callout panels in foundation
+ */
+ padding: 0 !important;
+ /* 2 items
+ */
+ /* 3 items
+ */
+ /* 4 items
+ */
+ /* 5 items
+ */
+ /* 6 items
+ */ }
+ .switch-toggle::after {
+ clear: both;
+ content: '';
+ display: table; }
+ .switch-toggle *,
+ .switch-toggle *:before,
+ .switch-toggle *:after {
+ box-sizing: border-box; }
+ .switch-toggle a {
+ display: block;
+ transition: all 0.2s ease-out; }
+ .switch-toggle label,
+ .switch-toggle > span {
+ /* breathing room for bootstrap/foundation classes.
+ */
+ line-height: 2em; }
+ .switch-toggle input:focus ~ span a,
+ .switch-toggle input:focus + label {
+ outline-width: 2px;
+ outline-style: solid;
+ outline-color: Highlight;
+ /* Chrome/Opera gets its native focus styles.
+ */ } }
+ @media only screen and (-webkit-min-device-pixel-ratio: 0) {
+ .switch-toggle input:focus ~ span a,
+ .switch-toggle input:focus + label {
+ outline-color: -webkit-focus-ring-color;
+ outline-style: auto; } }
+
+@media only screen {
+ .switch-toggle input {
+ position: absolute;
+ left: 0;
+ opacity: 0; }
+ .switch-toggle input + label {
+ position: relative;
+ z-index: 2;
+ display: block;
+ float: left;
+ padding: 0 0.5em;
+ margin: 0;
+ text-align: center; }
+ .switch-toggle a {
+ position: absolute;
+ top: 0;
+ left: 0;
+ padding: 0;
+ z-index: 1;
+ width: 10px;
+ height: 100%; }
+ .switch-toggle label:nth-child(2):nth-last-child(4),
+ .switch-toggle label:nth-child(2):nth-last-child(4) ~ label,
+ .switch-toggle label:nth-child(2):nth-last-child(4) ~ a {
+ width: 50%; }
+ .switch-toggle label:nth-child(2):nth-last-child(4) ~ input:checked:nth-child(3) + label ~ a {
+ left: 50%; }
+ .switch-toggle label:nth-child(2):nth-last-child(6),
+ .switch-toggle label:nth-child(2):nth-last-child(6) ~ label,
+ .switch-toggle label:nth-child(2):nth-last-child(6) ~ a {
+ width: 33.33%; }
+ .switch-toggle label:nth-child(2):nth-last-child(6) ~ input:checked:nth-child(3) + label ~ a {
+ left: 33.33%; }
+ .switch-toggle label:nth-child(2):nth-last-child(6) ~ input:checked:nth-child(5) + label ~ a {
+ left: 66.66%; }
+ .switch-toggle label:nth-child(2):nth-last-child(8),
+ .switch-toggle label:nth-child(2):nth-last-child(8) ~ label,
+ .switch-toggle label:nth-child(2):nth-last-child(8) ~ a {
+ width: 25%; }
+ .switch-toggle label:nth-child(2):nth-last-child(8) ~ input:checked:nth-child(3) + label ~ a {
+ left: 25%; }
+ .switch-toggle label:nth-child(2):nth-last-child(8) ~ input:checked:nth-child(5) + label ~ a {
+ left: 50%; }
+ .switch-toggle label:nth-child(2):nth-last-child(8) ~ input:checked:nth-child(7) + label ~ a {
+ left: 75%; }
+ .switch-toggle label:nth-child(2):nth-last-child(10),
+ .switch-toggle label:nth-child(2):nth-last-child(10) ~ label,
+ .switch-toggle label:nth-child(2):nth-last-child(10) ~ a {
+ width: 20%; }
+ .switch-toggle label:nth-child(2):nth-last-child(10) ~ input:checked:nth-child(3) + label ~ a {
+ left: 20%; }
+ .switch-toggle label:nth-child(2):nth-last-child(10) ~ input:checked:nth-child(5) + label ~ a {
+ left: 40%; }
+ .switch-toggle label:nth-child(2):nth-last-child(10) ~ input:checked:nth-child(7) + label ~ a {
+ left: 60%; }
+ .switch-toggle label:nth-child(2):nth-last-child(10) ~ input:checked:nth-child(9) + label ~ a {
+ left: 80%; }
+ .switch-toggle label:nth-child(2):nth-last-child(12),
+ .switch-toggle label:nth-child(2):nth-last-child(12) ~ label,
+ .switch-toggle label:nth-child(2):nth-last-child(12) ~ a {
+ width: 16.6%; }
+ .switch-toggle label:nth-child(2):nth-last-child(12) ~ input:checked:nth-child(3) + label ~ a {
+ left: 16.6%; }
+ .switch-toggle label:nth-child(2):nth-last-child(12) ~ input:checked:nth-child(5) + label ~ a {
+ left: 33.2%; }
+ .switch-toggle label:nth-child(2):nth-last-child(12) ~ input:checked:nth-child(7) + label ~ a {
+ left: 49.8%; }
+ .switch-toggle label:nth-child(2):nth-last-child(12) ~ input:checked:nth-child(9) + label ~ a {
+ left: 66.4%; }
+ .switch-toggle label:nth-child(2):nth-last-child(12) ~ input:checked:nth-child(11) + label ~ a {
+ left: 83%; }
+ /* Candy Theme
+ * Based on the "Sort Switches / Toggles (PSD)" by Ormal Clarck
+ * http://www.premiumpixels.com/freebies/sort-switches-toggles-psd/
+ */
+ .switch-toggle.switch-candy,
+ .switch-light.switch-candy > span {
+ background-color: #2d3035;
+ border-radius: 3px;
+ box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.2); }
+ .switch-light.switch-candy span span,
+ .switch-light.switch-candy input:checked ~ span span:first-child,
+ .switch-toggle.switch-candy label {
+ color: #fff;
+ font-weight: bold;
+ text-align: center;
+ text-shadow: 1px 1px 1px #191b1e; }
+ .switch-light.switch-candy input ~ span span:first-child,
+ .switch-light.switch-candy input:checked ~ span span:nth-child(2),
+ .switch-candy input:checked + label {
+ color: #333;
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); }
+ .switch-candy a {
+ border: 1px solid #333;
+ border-radius: 3px;
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.45);
+ background-color: #70c66b;
+ background-image: linear-gradient(rgba(255, 255, 255, 0.2), transparent); }
+ .switch-candy-blue a {
+ background-color: #38a3d4; }
+ .switch-candy-yellow a {
+ background-color: #f5e560; }
+ /* iOS Theme
+*/
+ .switch-ios.switch-light span span {
+ color: #888b92; }
+ .switch-ios.switch-light a {
+ left: 0;
+ top: 0;
+ width: 2em;
+ height: 2em;
+ background-color: #fff;
+ border-radius: 100%;
+ border: 0.25em solid #D8D9DB;
+ transition: all .2s ease-out; }
+ .switch-ios.switch-light > span {
+ display: block;
+ width: 100%;
+ height: 2em;
+ background-color: #D8D9DB;
+ border-radius: 1.75em;
+ transition: all .4s ease-out; }
+ .switch-ios.switch-light > span span {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ opacity: 0;
+ line-height: 1.875em;
+ vertical-align: middle;
+ transition: all .2s ease-out; }
+ .switch-ios.switch-light > span span:first-of-type {
+ opacity: 1;
+ padding-left: 1.875em; }
+ .switch-ios.switch-light > span span:last-of-type {
+ padding-right: 1.875em; }
+ .switch-ios.switch-light input:checked ~ span a {
+ left: 100%;
+ border-color: #4BD865;
+ margin-left: -2em; }
+ .switch-ios.switch-light input:checked ~ span {
+ border-color: #4BD865;
+ box-shadow: inset 0 0 0 30px #4BD865; }
+ .switch-ios.switch-light input:checked ~ span span:first-of-type {
+ opacity: 0; }
+ .switch-ios.switch-light input:checked ~ span span:last-of-type {
+ opacity: 1;
+ color: #fff; }
+ .switch-ios.switch-toggle {
+ background-color: #D8D9DB;
+ border-radius: 30px;
+ box-shadow: inset rgba(0, 0, 0, 0.1) 0 1px 0; }
+ .switch-ios.switch-toggle a {
+ background-color: #4BD865;
+ border: 0.125em solid #D8D9DB;
+ border-radius: 1.75em;
+ transition: all 0.12s ease-out; }
+ .switch-ios.switch-toggle label {
+ height: 2.4em;
+ color: #888b92;
+ line-height: 2.4em;
+ vertical-align: middle; }
+ .switch-ios input:checked + label {
+ color: #3e4043; }
+ /* Holo Theme
+ */
+ .switch-toggle.switch-holo,
+ .switch-light.switch-holo > span {
+ background-color: #464747;
+ border-radius: 1px;
+ box-shadow: inset rgba(0, 0, 0, 0.1) 0 1px 0;
+ color: #fff;
+ text-transform: uppercase; }
+ .switch-holo label {
+ color: #fff; }
+ .switch-holo > span span {
+ opacity: 0;
+ transition: all 0.1s; }
+ .switch-holo > span span:first-of-type {
+ opacity: 1; }
+ .switch-holo > span span,
+ .switch-holo label {
+ font-size: 85%;
+ line-height: 2.15625em; }
+ .switch-holo a {
+ background-color: #666;
+ border-radius: 1px;
+ box-shadow: inset rgba(255, 255, 255, 0.2) 0 1px 0, inset rgba(0, 0, 0, 0.3) 0 -1px 0; }
+ /* Selected ON switch-light
+*/
+ .switch-holo.switch-light input:checked ~ span a {
+ background-color: #0E88B1; }
+ .switch-holo.switch-light input:checked ~ span span:first-of-type {
+ opacity: 0; }
+ .switch-holo.switch-light input:checked ~ span span:last-of-type {
+ opacity: 1; }
+ /* Material Theme
+ */
+ /* switch-light
+ */
+ .switch-light.switch-material a {
+ top: -0.1875em;
+ width: 1.75em;
+ height: 1.75em;
+ border-radius: 50%;
+ background: #fafafa;
+ box-shadow: 0 0.125em 0.125em 0 rgba(0, 0, 0, 0.14), 0 0.1875em 0.125em -0.125em rgba(0, 0, 0, 0.2), 0 0.125em 0.25em 0 rgba(0, 0, 0, 0.12);
+ transition: right 0.28s cubic-bezier(0.4, 0, 0.2, 1); }
+ .switch-material.switch-light {
+ overflow: visible; }
+ .switch-material.switch-light::after {
+ clear: both;
+ content: '';
+ display: table; }
+ .switch-material.switch-light > span {
+ overflow: visible;
+ position: relative;
+ top: 0.1875em;
+ width: 3.25em;
+ height: 1.5em;
+ min-height: auto;
+ border-radius: 1em;
+ background: rgba(0, 0, 0, 0.26); }
+ .switch-material.switch-light span span {
+ position: absolute;
+ clip: rect(0 0 0 0); }
+ .switch-material.switch-light input:checked ~ span a {
+ right: 0;
+ background: #3f51b5;
+ box-shadow: 0 0.1875em 0.25em 0 rgba(0, 0, 0, 0.14), 0 0.1875em 0.1875em -0.125em rgba(0, 0, 0, 0.2), 0 0.0625em 0.375em 0 rgba(0, 0, 0, 0.12); }
+ .switch-material.switch-light input:checked ~ span {
+ background: rgba(63, 81, 181, 0.5); }
+ /* switch-toggle
+ */
+ .switch-toggle.switch-material {
+ overflow: visible; }
+ .switch-toggle.switch-material::after {
+ clear: both;
+ content: '';
+ display: table; }
+ .switch-toggle.switch-material a {
+ top: 48%;
+ width: 0.375em !important;
+ height: 0.375em;
+ margin-left: 0.25em;
+ background: #3f51b5;
+ border-radius: 100%;
+ transform: translateY(-50%);
+ transition: transform .4s ease-in; }
+ .switch-toggle.switch-material label {
+ color: rgba(0, 0, 0, 0.54);
+ font-size: 1em; }
+ .switch-toggle.switch-material label:before {
+ content: '';
+ position: absolute;
+ top: 48%;
+ left: 0;
+ display: block;
+ width: 0.875em;
+ height: 0.875em;
+ border-radius: 100%;
+ border: 0.125em solid rgba(0, 0, 0, 0.54);
+ transform: translateY(-50%); }
+ .switch-toggle.switch-material input:checked + label:before {
+ border-color: #3f51b5; }
+ /* ripple
+ */
+ .switch-light.switch-material > span:before,
+ .switch-light.switch-material > span:after,
+ .switch-toggle.switch-material label:after {
+ content: '';
+ position: absolute;
+ top: 0;
+ left: 0;
+ z-index: 3;
+ display: block;
+ width: 4em;
+ height: 4em;
+ border-radius: 100%;
+ background: #3f51b5;
+ opacity: .4;
+ margin-left: -1.25em;
+ margin-top: -1.25em;
+ transform: scale(0);
+ transition: opacity .4s ease-in; }
+ .switch-light.switch-material > span:after {
+ left: auto;
+ right: 0;
+ margin-left: 0;
+ margin-right: -1.25em; }
+ .switch-toggle.switch-material label:after {
+ width: 3.25em;
+ height: 3.25em;
+ margin-top: -0.75em; }
+ @keyframes materialRipple {
+ 0% {
+ transform: scale(0); }
+ 20% {
+ transform: scale(1); }
+ 100% {
+ opacity: 0;
+ transform: scale(1); } }
+ .switch-material.switch-light input:not(:checked) ~ span:after,
+ .switch-material.switch-light input:checked ~ span:before,
+ .switch-toggle.switch-material input:checked + label:after {
+ animation: materialRipple .4s ease-in; }
+ /* trick to prevent the default checked ripple animation from showing
+ * when the page loads.
+ * the ripples are hidden by default, and shown only when the input is focused.
+ */
+ .switch-light.switch-material.switch-light input ~ span:before,
+ .switch-light.switch-material.switch-light input ~ span:after,
+ .switch-material.switch-toggle input + label:after {
+ visibility: hidden; }
+ .switch-light.switch-material.switch-light input:focus:checked ~ span:before,
+ .switch-light.switch-material.switch-light input:focus:not(:checked) ~ span:after,
+ .switch-material.switch-toggle input:focus:checked + label:after {
+ visibility: visible; } }
+
+/* Bugfix for older Webkit, including mobile Webkit. Adapted from
+ * http://css-tricks.com/webkit-sibling-bug/
+ */
+@media only screen and (-webkit-max-device-pixel-ratio: 2) and (max-device-width: 80em) {
+ .switch-light,
+ .switch-toggle {
+ -webkit-animation: webkitSiblingBugfix infinite 1s; } }
+
+@-webkit-keyframes webkitSiblingBugfix {
+ from {
+ -webkit-transform: translate3d(0, 0, 0); }
+ to {
+ -webkit-transform: translate3d(0, 0, 0); } }
+
+/*# sourceMappingURL=toggle-switch.css.map */
\ No newline at end of file
diff --git a/src/terms.html b/src/terms.html
deleted file mode 100644
index b60c657bc..000000000
--- a/src/terms.html
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
-
-
-
-
-
-
-
-
Terms
-
-
-
-
-
-
-
diff --git a/src/terms.js b/src/terms.js
new file mode 100644
index 000000000..3886d97d9
--- /dev/null
+++ b/src/terms.js
@@ -0,0 +1,47 @@
+/**
+ * Copyright 2015-2019 OpenCB
+ *
+ * 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
+ *
+ * http://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.
+ */
+
+import {LitElement, html} from "/web_modules/lit-element.js";
+import "../lib/jsorolla/src/core/webcomponents/tool-header.js";
+
+
+export default class TermsWeb extends LitElement {
+
+ constructor() {
+ super();
+ }
+
+ createRenderRoot() {
+ return this;
+ }
+
+ render() {
+ return html`
+
+ `;
+ }
+
+}
+
+customElements.define("terms-web", TermsWeb);
diff --git a/src/welcome.html b/src/welcome.html
deleted file mode 100644
index b2a3fc113..000000000
--- a/src/welcome.html
+++ /dev/null
@@ -1,194 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
IVA {{version}}
-
-
Overview
-
- Welcome to the IVA tool for whole genome variant analysis.
- This interactive tool allows finding genes affected by deleterious variants that segregate along family pedigrees, case-controls or sporadic samples.
-
-
-
-
-
-
-
-
-
-
-
Note:
-
- IVA web application makes an intensive use of the HTML5 standard and other cutting-edge web technologies such as Web Components,
- so only modern web browsers are fully supported, these include Chrome 49+, Firefox 45+, Microsoft Edge 14+, Safari 10+ and Opera 36+.
-
-
-
-
-
-
-
-
-
-
diff --git a/src/welcome.js b/src/welcome.js
new file mode 100644
index 000000000..ef9a590a2
--- /dev/null
+++ b/src/welcome.js
@@ -0,0 +1,292 @@
+/**
+ * Copyright 2015-2019 OpenCB
+ *
+ * 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
+ *
+ * http://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.
+ */
+import {LitElement, html} from "/web_modules/lit-element.js";
+import UtilsNew from "./../lib/jsorolla/src/core/utilsNew.js";
+import PolymerUtils from "../lib/jsorolla/src/core/webcomponents/PolymerUtils.js";
+
+export default class WelcomeWeb extends LitElement {
+
+ constructor() {
+ super();
+ this.checkProjects = false;
+ }
+
+ createRenderRoot() {
+ return this;
+ }
+
+ static get properties() {
+ return {
+ opencgaSession: {
+ type: Object
+ },
+ version: {
+ type: String
+ },
+ cellbaseClient: {
+ type: Object
+ },
+ checkProjects: {
+ type: Boolean
+ },
+ config: {
+ type: Object
+ }
+ };
+ }
+
+ updated(changedProperties) {
+ if (changedProperties.has("opencgaSession")) {
+ this.opencgaSessionObserver();
+ }
+ }
+
+ opencgaSessionObserver() {
+ //console.log("opencgaSessionObserver")
+ //console.log(this.opencgaSession)
+ this._checkProjects();
+ }
+
+ _checkProjects() {
+ return !!(UtilsNew.isNotUndefinedOrNull(this.opencgaSession) && UtilsNew.isNotUndefinedOrNull(this.opencgaSession.project));
+
+ }
+
+ onExampleClick(e) {
+ const query = {study: this.opencgaSession.study.fqn};
+ switch (e.currentTarget.dataset.type) {
+ case "gene":
+ query.gene = e.currentTarget.text;
+ break;
+ case "region":
+ query.region = e.currentTarget.text;
+ break;
+ case "snp":
+ query.xref = e.currentTarget.text;
+ break;
+ case "variant":
+ query.xref = e.currentTarget.text;
+ break;
+ }
+ this.notify(query);
+ }
+
+ notify(query) {
+ this.dispatchEvent(new CustomEvent("search", {
+ detail: {
+ ...query,
+ study: this.opencgaSession.study.fqn
+ },
+ bubbles: true,
+ composed: true
+ }));
+ }
+
+ callAutocomplete(e) {
+ // Only gene symbols are going to be searched and not Ensembl IDs
+ const featureId = this.querySelector("#welcomeSearchTextBox").value;
+ if (UtilsNew.isNotEmpty(featureId)) {
+ const query = {};
+ if (featureId.startsWith("chr") || featureId.startsWith("X") || featureId.startsWith("Y") || featureId.startsWith("MT") || featureId.match(/^\d/)) {
+ if (featureId.split(":").length < 3) {
+ // It's a region, contains only one ':' character
+ query.region = featureId;
+ } else {
+ query.xref = featureId;
+ }
+ } else if (featureId.startsWith("rs")) {
+ query.xref = featureId;
+ } else {
+ // The ID written seems to be a gene name
+ query.gene = featureId;
+ if (featureId.length >= 3 && !featureId.startsWith("ENS")) {
+ const _this = this;
+ _this.cellbaseClient.get("feature", "id", featureId.toUpperCase(), "starts_with", {}, {})
+ .then(function(response) {
+ let options = "";
+ for (const id of response.response[0].result) {
+ options += ``;
+ }
+ PolymerUtils.innerHTML("FeatureDatalist", options);
+ });
+ }
+ }
+
+ if (e.keyCode === 13) {
+ this.notify(query);
+ this.querySelector("#welcomeSearchTextBox").value = "";
+ }
+
+ } else {
+ PolymerUtils.innerHTML("FeatureDatalist", "");
+ }
+ }
+
+ isVisible(item) {
+ switch (item.visibility) {
+ case "public":
+ return true;
+ case "private":
+ return !!this?.opencgaSession?.token;
+ case "none":
+ default:
+ return false;
+ }
+ }
+
+ render() {
+ return html`
+
+
+
+
+
+
+
+
+ ( ${this.version} )
+
+
Interactive Variant Analysis
+
+
+
+ ${UtilsNew.renderHTML(this.config.welcomePageContent)}
+
+
+
+
+
+
+
+ Examples - Gene: BRCA2 ,
+ Region: 3 , 3:113000-1150000 ,
+ SNP: rs445909
+ Variant: 13:32962274:G:T
+
+
`
+ : null }
+ -->
+
+
+
+ ${application.appConfig === "opencb" ? html`
+
+ ` : html`
+
+ `}
+
+
+
+ ${UtilsNew.renderHTML(this.config.welcomePageFooter)}
+
+
+ `;
+ }
+
+}
+
+customElements.define("welcome-web", WelcomeWeb);
diff --git a/test/e2e/analysis-test.js b/test/e2e/analysis-test.js
index fd09fda36..1d69c562f 100644
--- a/test/e2e/analysis-test.js
+++ b/test/e2e/analysis-test.js
@@ -30,7 +30,7 @@ module.exports = {
.waitForElementVisible('variant-clinical-upload-new', 1000)
.assert.visible('button[data-id="SamplesButton"]')
.click('button[data-id="SamplesButton"]')
- .assert.elementPresent('variant-clinical-samples')
+ .assert.elementPresent('variant-clinical-sample')
.waitForElementVisible('variant-sample-grid',1000)
.assert.visible('table[data-test-id="variant-sample-grid-sample-selector"]')
.saveScreenshot(config.imgpath(browser) + "analysis.png")
diff --git a/webpack.config.js b/webpack.config.js
new file mode 100644
index 000000000..534297837
--- /dev/null
+++ b/webpack.config.js
@@ -0,0 +1,255 @@
+const path = require("path");
+const webpack = require("webpack");
+const {CleanWebpackPlugin} = require("clean-webpack-plugin");
+const HtmlWebpackPlugin = require("html-webpack-plugin");
+const HtmlReplaceWebpackPlugin = require("html-replace-webpack-plugin");
+// const StringReplacePlugin = require("string-replace-webpack-plugin"); webpack 2
+const EsmWebpackPlugin = require("@purtuga/esm-webpack-plugin");
+const PluginProposalExportDefaultFrom = require("@babel/plugin-proposal-export-default-from"); // Allows `export .. from` syntax in the entry point
+const MergeIntoSingleFilePlugin = require("webpack-merge-and-include-globally");
+const CopyWebpackPlugin = require("copy-webpack-plugin");
+const TerserPlugin = require("terser-webpack-plugin");
+
+const DIST_PATH = path.resolve(__dirname, "build/");
+
+const tpl = path => ({
+ img: ` `,
+ css: ` `,
+ js: ``,
+ void: ""
+});
+
+// TODO add CSS loader and group all fonts in one directory rewriting urls
+
+module.exports = {
+ mode: "production",
+ entry: {
+ "iva-app": "./src/iva-app.js"
+ },
+ output: {
+ filename: "[name][hash].js",
+ path: DIST_PATH
+ },
+ plugins: [
+ new CleanWebpackPlugin(),
+ new HtmlWebpackPlugin({
+ template: "./src/index.html",
+ minify: {
+ removeAttributeQuotes: true,
+ collapseWhitespace: true
+ //removeComments: true //cannot be uncommented because of HtmlReplaceWebpackPlugin depends on comments
+ }
+ }),
+ new HtmlReplaceWebpackPlugin([
+ {
+ // mimic the behaviour of Grunt processhtml (for the assets defined in MergeIntoSingleFilePlugin())
+ pattern: /[\s\S]*?/m,
+ replacement: function(match, type, path) {
+ return tpl(path)[type];
+ }
+ }
+ ]
+ ),
+ new MergeIntoSingleFilePlugin({
+ files: {
+ "assets/css/styles.css": [
+ "lib/jsorolla/styles/css/style.css",
+ "src/styles/toggle-switch.css",
+ "src/styles/magic-check.css",
+ "src/styles/global.css"
+ ],
+ "assets/css/vendor.css": [
+ "./node_modules/bootstrap/dist/css/bootstrap.min.css",
+ "./node_modules/animate.css/animate.min.css",
+ "./node_modules/bootstrap-table/dist/bootstrap-table.min.css",
+ "./node_modules/bootstrap-select/dist/css/bootstrap-select.min.css",
+ "./node_modules/bootstrap-treeview/dist/bootstrap-treeview.min.css",
+ "./node_modules/bootstrap-colorpicker/dist/css/bootstrap-colorpicker.min.css",
+ "./node_modules/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.css",
+ "./node_modules/@fortawesome/fontawesome-free/css/all.min.css",
+ "./node_modules/qtip2/dist/jquery.qtip.min.css",
+ "./node_modules/jquery.json-viewer/json-viewer/jquery.json-viewer.css",
+ "./node_modules/tokenize2/dist/tokenize2.min.css",
+ "./node_modules/sweetalert2/dist/sweetalert2.css"
+ ],
+ "assets/js/vendor.js": [
+ "./node_modules/jquery/dist/jquery.js",
+ "./node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js",
+ "./node_modules/lodash/lodash.min.js",
+ "./node_modules/backbone/backbone-min.js",
+ "./node_modules/highcharts/highcharts.js",
+ "./node_modules/qtip2/dist/jquery.qtip.min.js",
+ "./node_modules/urijs/src/URI.min.js",
+ "./node_modules/cookies-js/dist/cookies.min.js",
+ "./node_modules/crypto-js/core.js",
+ "./node_modules/crypto-js/sha256.js",
+ "./node_modules/jquery.json-viewer/json-viewer/jquery.json-viewer.js",
+ "./node_modules/bootstrap/dist/js/bootstrap.min.js",
+ "./node_modules/bootstrap-table/dist/bootstrap-table.min.js",
+ "./node_modules/bootstrap-select/dist/js/bootstrap-select.js",
+ "./node_modules/bootstrap-treeview/dist/bootstrap-treeview.min.js",
+ "./node_modules/bootstrap-colorpicker/dist/js/bootstrap-colorpicker.min.js",
+ "./node_modules/bootstrap-validator/dist/validator.min.js",
+ "./node_modules/moment/min/moment.min.js",
+ "./node_modules/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.js",
+ "./node_modules/bootstrap-notify/bootstrap-notify.js",
+ "./node_modules/jwt-decode/build/jwt-decode.min.js",
+ "./node_modules/tokenize2/dist/tokenize2.min.js",
+ "./node_modules/bootstrap-3-typeahead/bootstrap3-typeahead.min.js",
+ "./node_modules/@svgdotjs/svg.js/dist/svg.min.js",
+ "./node_modules/sweetalert2/dist/sweetalert2.js"
+ ]
+ },
+ transform: {
+ "assets/js/vendor.js": code => require("uglify-js").minify(code).code,
+ "assets/css/styles.css": code => require("uglifycss").processString(code)
+ }
+ }),
+ new CopyWebpackPlugin([
+ {
+ context: "./src/conf",
+ from: "**/*.js",
+ to: DIST_PATH + "/conf"
+ },
+ {
+ from: "./favicon.ico",
+ to: DIST_PATH + "/"
+ },
+ {
+ context: "./src/img",
+ from: "**/*",
+ to: DIST_PATH + "/img"
+ },
+ {
+ context: "./lib/jsorolla/styles/fonts",
+ from: "**/*",
+ to: DIST_PATH + "/assets/fonts"
+ },
+ {
+ context: "./node_modules/bootstrap/dist/fonts",
+ from: "**/*",
+ to: DIST_PATH + "/assets/fonts"
+ },
+ {
+ context: "node_modules/@webcomponents/webcomponentsjs",
+ from: "**/*.js",
+ to: DIST_PATH + "/webcomponents"
+ },
+ {
+ context: "node_modules/@fortawesome/fontawesome-free/webfonts",
+ from: "*",
+ to: DIST_PATH + "/assets/webfonts"
+
+ }
+ ]),
+ /*new MethodExtractor({options: true, output: DIST_PATH + "/conf", components: [
+ "./lib/jsorolla/src/core/webcomponents/opencga/catalog/cohorts/opencga-cohort-browser.js"
+ ]})*/
+ // ignore is not the best way to externalize a resource, but webpack don't support external ES modules yet.
+ // ignore makes sense because iva-app bundle will be an ES module on its own, so import X from "/jsorolla.min.js" won't be a problem if not processed by webpack
+ // why do whe need to bundle iva-app in webpack at all then? Because we need to process litElement imports
+ new webpack.IgnorePlugin({
+ checkResource(resource) {
+ //console.log("res", resource)
+ //if (resource === "./conf/opencga-variant-browser.config.js") return true;
+ //return false;
+ }
+
+ //resourceRegExp: /import [\s\S]+? from "\.\/\.\.\/lib\/jsorolla\/dist\/main\.js";/
+ //resourceRegExp: /import [\s\S]+? from "main\.js";/
+ //resourceRegExp: /^\.\/locale$/,
+ //contextRegExp: /moment$/
+ })
+ ],
+ optimization: {
+ minimize: true
+ /*minimizer: [
+ new TerserPlugin({
+ terserOptions: {
+ keep_classnames: true,
+ keep_fnames: true
+ }
+ })
+ ]*/
+ },
+ /* externals: [
+ {
+ "externalConfig": "./conf/external-config.js"
+ }
+ ],*/
+ module: {
+ rules: [
+ /*{
+ // Test for a polyfill (or any file) and it won't be included in your
+ // bundle
+ test: path.resolve(__dirname, "src/conf/external-config.js"),
+ use: "null-loader"
+ },*/
+ {
+ test: /\.html$/,
+ use: ["html-loader"] // rewrite html content (replace automatically in require("img.jpg"))
+ },
+ {
+ test: /\.m?js$/,
+ exclude: /(node_modules|bower_components)/,
+ use: {
+ loader: "babel-loader",
+ options: {
+ presets: [[
+ "@babel/preset-env",
+ {
+ // useBuiltIns: "usage",
+ // targets: ">20%, not dead, not ie 11" //browserslist query now defined in package.json
+ // corejs: 3
+ }
+ ]],
+ plugins: [
+ "@babel/plugin-proposal-export-default-from",
+ //"@babel/regenerator-runtime/runtime",
+ "@babel/transform-runtime",
+ ["@babel/plugin-proposal-class-properties", {"loose": true}]
+ ]
+ }
+ }
+ },
+ {
+ test: /\.js$/,
+ loader: "string-replace-loader",
+ options: {
+ multiple: [
+ {
+ search: "/web_modules/lit-element.js",
+ replace: "lit-element"
+ },
+ {
+ search: "/web_modules/lit-html.js",
+ replace: "lit-html"
+ },
+ {
+ search: "/web_modules/lit-html/directives/class-map.js",
+ replace: "lit-html/directives/class-map.js"
+ },
+ {
+ search: "/web_modules/lit-html/directives/if-defined.js",
+ replace: "lit-html/directives/if-defined.js"
+ },
+ {
+ search: "/node_modules/countup.js/dist/countUp.min.js",
+ replace: "countup.js"
+ }
+ /* js string replacement
+ {
+ search: "// @dev\\[([\\s\\S]*?)\\][\\s\\S]*?// /@dev",
+ replace: (match, p1, offset, string) => `import ${p1} from "main.js";`,
+ //replace: (match, p1, offset, string) => `${p1}`,
+ flags: "gim",
+ strict: true
+ }*/
+ ]
+
+ }
+ }
+ ]
+
+ }
+};