diff --git a/README.txt b/README.txt index 262e335..f60c77e 100644 --- a/README.txt +++ b/README.txt @@ -3,6 +3,7 @@ Installation 1. brew install mkdocs 2. pip install mkdocs-material 3. pip install fontawesome_markdown +4. `npm install -g license-checker` To build, navigate to the root of this repo and run: mkdocs build --clean diff --git a/docs/dci-deploysasviya.md b/docs/dci-deploysasviya.md index 9257aab..207a674 100644 --- a/docs/dci-deploysasviya.md +++ b/docs/dci-deploysasviya.md @@ -15,14 +15,14 @@ A database that supports concurrent access is highly recommended. ### System Account -Data Controller makes use of a system account for performing backend data updates and writing to the staging area. This needs to be provisioned in advance using the Viya admin-cli. The process is well described here: https://communities.sas.com/t5/SAS-Communities-Library/SAS-Viya-3-5-Compute-Server-Service-Accounts/ta-p/620992 +Data Controller makes use of a system account for performing backend data updates and writing to the staging area. This needs to be provisioned in advance using the Viya admin-cli. The process is well described here: [https://communities.sas.com/t5/SAS-Communities-Library/SAS-Viya-3-5-Compute-Server-Service-Accounts/ta-p/620992](https://communities.sas.com/t5/SAS-Communities-Library/SAS-Viya-3-5-Compute-Server-Service-Accounts/ta-p/620992) ### Database We strongly recommend that the Data Controller configuration tables are stored in a database for concurrency reasons, however it is also possible to use a BASE engine library. Let us know which database you are using and we will provide the DDL. We have customers in production using Oracle, Postgres, Netezza, SQL Server to name a few. -Simply run the provided DDL script to create the tables and initial configuration data in your chosen database. Make sure the system account (see prerequisites) has full read / write access. +Simply run the provided DDL script to create the tables and initial configuration data in your chosen database. Make sure the system account (see prerequisites) has full read / write access. !!! note "Modify schema" privileges are not required. @@ -64,7 +64,7 @@ We strongly recommend a dedicated compute context for running Data Controller. * Now switch to the Advanced tab and enter the following autoexec statements: ``` -%let DC_LIBREF=DCDBVIYA; +%let DC_LIBREF=DCDBVIYA; %let DC_ADMIN_GROUP={{YOUR DC ADMIN GROUP}}; %let DC_STAGING_AREA={{YOUR DEDICATED FILE SYSTEM DRIVE}}; libname &dc_libref {{YOUR DC DATABASE}}; @@ -72,7 +72,7 @@ libname &dc_libref {{YOUR DC DATABASE}}; To explain each of these lines: -* `DC_LIBREF` can be any valid 8 character libref. +* `DC_LIBREF` can be any valid 8 character libref. * `DC_ADMIN_GROUP` is the name of a group which will be granted unrestricted access to Data Controller * `DC_STAGING_AREA` should point to a location on the filesystem (this is where the staging files and logs will be stored) * The final libname statement should be configured to point at the database that was figured in [prerequisites](#prerequisites) @@ -99,7 +99,7 @@ You can now launch the application! The automated deploy makes use of the SASjs CLI to create the dependent context and job execution services. In addition to the standard prerequisites (a registered viya system account and a prepared database) you will also need: * a local copy of the [SASjs CLI](https://sasjs.io/sasjs-cli/#installation) -* a Client / Secret - with an administrator group in SCOPE, and an authorization_code GRANT_TYPE. The SASjs [Viya Token Generator](https://github.com/sasjs/viyatoken) may help with this. +* a Client / Secret - with an administrator group in SCOPE, and an authorization_code GRANT_TYPE. The SASjs [Viya Token Generator](https://github.com/sasjs/viyatoken) may help with this. ### Prepare the Target and Token diff --git a/docs/img/logos/data_controler_logo-01.eps b/docs/img/logos/data_controler_logo-01.eps new file mode 100644 index 0000000..bd3d8fb Binary files /dev/null and b/docs/img/logos/data_controler_logo-01.eps differ diff --git a/docs/img/logos/data_controler_logo-01.png b/docs/img/logos/data_controler_logo-01.png new file mode 100644 index 0000000..32658cf Binary files /dev/null and b/docs/img/logos/data_controler_logo-01.png differ diff --git a/docs/img/logos/data_controler_logo.pdf b/docs/img/logos/data_controler_logo.pdf new file mode 100644 index 0000000..827d5cb Binary files /dev/null and b/docs/img/logos/data_controler_logo.pdf differ diff --git a/docs/licences.md b/docs/licences.md index 5d141ea..e1846fd 100644 --- a/docs/licences.md +++ b/docs/licences.md @@ -5,77 +5,71 @@ Data Controller source licences are extracted automatically from our repo using the [license-checker](https://www.npmjs.com/package/license-checker) NPM module ``` -├─ @angular/animations@10.1.0 +├─ @angular/animations@10.2.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/angular/angular │ ├─ publisher: angular -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@angular/animations +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@angular/animations │ └─ licenseFile: node_modules/@angular/animations/README.md -├─ @angular/common@10.1.0 +├─ @angular/common@10.2.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/angular/angular │ ├─ publisher: angular -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@angular/common +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@angular/common │ └─ licenseFile: node_modules/@angular/common/README.md -├─ @angular/compiler@10.1.0 +├─ @angular/compiler@10.2.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/angular/angular │ ├─ publisher: angular -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@angular/compiler +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@angular/compiler │ └─ licenseFile: node_modules/@angular/compiler/README.md -├─ @angular/core@10.1.0 +├─ @angular/core@10.2.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/angular/angular │ ├─ publisher: angular -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@angular/core +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@angular/core │ └─ licenseFile: node_modules/@angular/core/README.md -├─ @angular/forms@10.1.0 +├─ @angular/forms@10.2.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/angular/angular │ ├─ publisher: angular -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@angular/forms +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@angular/forms │ └─ licenseFile: node_modules/@angular/forms/README.md -├─ @angular/platform-browser-dynamic@10.1.0 +├─ @angular/platform-browser-dynamic@10.2.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/angular/angular │ ├─ publisher: angular -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@angular/platform-browser-dynamic +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@angular/platform-browser-dynamic │ └─ licenseFile: node_modules/@angular/platform-browser-dynamic/README.md -├─ @angular/platform-browser@10.1.0 +├─ @angular/platform-browser@10.2.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/angular/angular │ ├─ publisher: angular -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@angular/platform-browser +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@angular/platform-browser │ └─ licenseFile: node_modules/@angular/platform-browser/README.md -├─ @angular/router@10.1.0 +├─ @angular/router@10.2.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/angular/angular │ ├─ publisher: angular -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@angular/router +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@angular/router │ └─ licenseFile: node_modules/@angular/router/README.md -├─ @auth0/angular-jwt@4.2.0 -│ ├─ licenses: MIT -│ ├─ repository: https://github.com/auth0/angular2-jwt -│ ├─ publisher: Sam Bellen -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@auth0/angular-jwt -│ └─ licenseFile: node_modules/@auth0/angular-jwt/LICENSE -├─ @clr/angular@4.0.1 +├─ @clr/angular@4.0.5 │ ├─ licenses: MIT │ ├─ repository: https://github.com/vmware/clarity │ ├─ publisher: Clarity Design System -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@clr/angular +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@clr/angular │ └─ licenseFile: node_modules/@clr/angular/README.md -├─ @clr/icons@4.0.1 +├─ @clr/icons@4.0.5 │ ├─ licenses: MIT │ ├─ repository: ssh://git@git.eng.vmware.com/clarity │ ├─ publisher: clarity -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@clr/icons +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@clr/icons │ └─ licenseFile: node_modules/@clr/icons/README.md -├─ @clr/ui@4.0.1 +├─ @clr/ui@4.0.5 │ ├─ licenses: MIT │ ├─ repository: https://github.com/vmware/clarity │ ├─ publisher: clarity -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@clr/ui +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@clr/ui │ └─ licenseFile: node_modules/@clr/ui/README.md ├─ @handsontable/angular@6.0.1 │ ├─ licenses: MIT @@ -83,180 +77,195 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Handsoncode │ ├─ email: hello@handsoncode.net │ ├─ url: https://handsoncode.net -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@handsontable/angular +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@handsontable/angular │ └─ licenseFile: node_modules/@handsontable/angular/LICENSE ├─ @handsontable/formulajs@2.0.2 │ ├─ licenses: MIT │ ├─ repository: https://github.com/handsontable/formula.js │ ├─ publisher: Handsoncode │ ├─ email: hello@handsontable.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@handsontable/formulajs +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@handsontable/formulajs │ └─ licenseFile: node_modules/@handsontable/formulajs/LICENSE -├─ @sasjs/adapter@1.3.13 +├─ @npmcli/move-file@1.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/npm/move-file +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@npmcli/move-file +│ └─ licenseFile: node_modules/@npmcli/move-file/LICENSE.md +├─ @sasjs/adapter@1.17.0 │ ├─ licenses: ISC │ ├─ repository: https://github.com/sasjs/adapter │ ├─ publisher: Allan Bowe │ ├─ email: support@macropeople.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@sasjs/adapter +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@sasjs/adapter │ └─ licenseFile: node_modules/@sasjs/adapter/LICENSE -├─ @sheet/perf@1.20200728.1 +├─ @sheet/perf@1.20200908.1 │ ├─ licenses: MIT* │ ├─ publisher: sheetjs -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@sheet/perf +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@sheet/perf │ └─ licenseFile: node_modules/@sheet/perf/README.html -├─ @types/d3-color@1.2.2 +├─ @types/d3-color@1.4.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/DefinitelyTyped/DefinitelyTyped -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@types/d3-color +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@types/d3-color │ └─ licenseFile: node_modules/@types/d3-color/LICENSE -├─ @types/d3-graphviz@2.6.3 +├─ @types/d3-graphviz@2.6.6 │ ├─ licenses: MIT │ ├─ repository: https://github.com/DefinitelyTyped/DefinitelyTyped -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@types/d3-graphviz +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@types/d3-graphviz │ └─ licenseFile: node_modules/@types/d3-graphviz/LICENSE -├─ @types/d3-interpolate@1.3.1 +├─ @types/d3-interpolate@1.4.2 │ ├─ licenses: MIT │ ├─ repository: https://github.com/DefinitelyTyped/DefinitelyTyped -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@types/d3-interpolate +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@types/d3-interpolate │ └─ licenseFile: node_modules/@types/d3-interpolate/LICENSE -├─ @types/d3-selection@1.4.2 +├─ @types/d3-selection@1.4.3 │ ├─ licenses: MIT │ ├─ repository: https://github.com/DefinitelyTyped/DefinitelyTyped -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@types/d3-selection +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@types/d3-selection │ └─ licenseFile: node_modules/@types/d3-selection/LICENSE -├─ @types/d3-transition@1.1.6 +├─ @types/d3-transition@1.3.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/DefinitelyTyped/DefinitelyTyped -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@types/d3-transition +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@types/d3-transition │ └─ licenseFile: node_modules/@types/d3-transition/LICENSE -├─ @types/d3-zoom@1.7.4 +├─ @types/d3-zoom@1.8.2 │ ├─ licenses: MIT │ ├─ repository: https://github.com/DefinitelyTyped/DefinitelyTyped -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@types/d3-zoom +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@types/d3-zoom │ └─ licenseFile: node_modules/@types/d3-zoom/LICENSE ├─ @types/json-schema@7.0.6 │ ├─ licenses: MIT │ ├─ repository: https://github.com/DefinitelyTyped/DefinitelyTyped -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@types/json-schema +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@types/json-schema │ └─ licenseFile: node_modules/@types/json-schema/LICENSE +├─ @types/marked@1.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/DefinitelyTyped/DefinitelyTyped +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@types/marked +│ └─ licenseFile: node_modules/@types/marked/LICENSE ├─ @types/minimatch@3.0.3 │ ├─ licenses: MIT │ ├─ repository: https://github.com/DefinitelyTyped/DefinitelyTyped -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@types/minimatch +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@types/minimatch │ └─ licenseFile: node_modules/@types/minimatch/LICENSE +├─ @types/node@12.19.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/DefinitelyTyped/DefinitelyTyped +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@types/node +│ └─ licenseFile: node_modules/@types/node/LICENSE ├─ @types/pikaday@1.7.4 │ ├─ licenses: MIT │ ├─ repository: https://github.com/DefinitelyTyped/DefinitelyTyped -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@types/pikaday +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@types/pikaday │ └─ licenseFile: node_modules/@types/pikaday/LICENSE ├─ @webassemblyjs/ast@1.9.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/xtuc/webassemblyjs │ ├─ publisher: Sven Sauleau -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@webassemblyjs/ast +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@webassemblyjs/ast │ └─ licenseFile: node_modules/@webassemblyjs/ast/LICENSE ├─ @webassemblyjs/floating-point-hex-parser@1.9.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/xtuc/webassemblyjs │ ├─ publisher: Mauro Bringolf -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@webassemblyjs/floating-point-hex-parser +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@webassemblyjs/floating-point-hex-parser │ └─ licenseFile: node_modules/@webassemblyjs/floating-point-hex-parser/LICENSE ├─ @webassemblyjs/helper-api-error@1.9.0 │ ├─ licenses: MIT │ ├─ publisher: Sven Sauleau -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@webassemblyjs/helper-api-error +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@webassemblyjs/helper-api-error │ └─ licenseFile: node_modules/@webassemblyjs/helper-api-error/LICENSE ├─ @webassemblyjs/helper-buffer@1.9.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/xtuc/webassemblyjs │ ├─ publisher: Sven Sauleau -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@webassemblyjs/helper-buffer +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@webassemblyjs/helper-buffer │ └─ licenseFile: node_modules/@webassemblyjs/helper-buffer/LICENSE ├─ @webassemblyjs/helper-code-frame@1.9.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/xtuc/webassemblyjs │ ├─ publisher: Sven Sauleau -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@webassemblyjs/helper-code-frame +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@webassemblyjs/helper-code-frame │ └─ licenseFile: node_modules/@webassemblyjs/helper-code-frame/LICENSE ├─ @webassemblyjs/helper-fsm@1.9.0 │ ├─ licenses: ISC │ ├─ publisher: Mauro Bringolf -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@webassemblyjs/helper-fsm +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@webassemblyjs/helper-fsm │ └─ licenseFile: node_modules/@webassemblyjs/helper-fsm/LICENSE ├─ @webassemblyjs/helper-module-context@1.9.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/xtuc/webassemblyjs │ ├─ publisher: Sven Sauleau -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@webassemblyjs/helper-module-context +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@webassemblyjs/helper-module-context │ └─ licenseFile: node_modules/@webassemblyjs/helper-module-context/LICENSE ├─ @webassemblyjs/helper-wasm-bytecode@1.9.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/xtuc/webassemblyjs │ ├─ publisher: Sven Sauleau -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@webassemblyjs/helper-wasm-bytecode +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@webassemblyjs/helper-wasm-bytecode │ └─ licenseFile: node_modules/@webassemblyjs/helper-wasm-bytecode/LICENSE ├─ @webassemblyjs/helper-wasm-section@1.9.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/xtuc/webassemblyjs │ ├─ publisher: Sven Sauleau -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@webassemblyjs/helper-wasm-section +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@webassemblyjs/helper-wasm-section │ └─ licenseFile: node_modules/@webassemblyjs/helper-wasm-section/LICENSE ├─ @webassemblyjs/ieee754@1.9.0 │ ├─ licenses: MIT -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@webassemblyjs/ieee754 +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@webassemblyjs/ieee754 │ └─ licenseFile: node_modules/@webassemblyjs/ieee754/LICENSE ├─ @webassemblyjs/leb128@1.9.0 │ ├─ licenses: MIT -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@webassemblyjs/leb128 +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@webassemblyjs/leb128 │ └─ licenseFile: node_modules/@webassemblyjs/leb128/LICENSE.txt ├─ @webassemblyjs/utf8@1.9.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/xtuc/webassemblyjs │ ├─ publisher: Sven Sauleau -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@webassemblyjs/utf8 +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@webassemblyjs/utf8 │ └─ licenseFile: node_modules/@webassemblyjs/utf8/LICENSE ├─ @webassemblyjs/wasm-edit@1.9.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/xtuc/webassemblyjs │ ├─ publisher: Sven Sauleau -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@webassemblyjs/wasm-edit +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@webassemblyjs/wasm-edit │ └─ licenseFile: node_modules/@webassemblyjs/wasm-edit/LICENSE ├─ @webassemblyjs/wasm-gen@1.9.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/xtuc/webassemblyjs │ ├─ publisher: Sven Sauleau -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@webassemblyjs/wasm-gen +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@webassemblyjs/wasm-gen │ └─ licenseFile: node_modules/@webassemblyjs/wasm-gen/LICENSE ├─ @webassemblyjs/wasm-opt@1.9.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/xtuc/webassemblyjs │ ├─ publisher: Sven Sauleau -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@webassemblyjs/wasm-opt +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@webassemblyjs/wasm-opt │ └─ licenseFile: node_modules/@webassemblyjs/wasm-opt/LICENSE ├─ @webassemblyjs/wasm-parser@1.9.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/xtuc/webassemblyjs │ ├─ publisher: Sven Sauleau -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@webassemblyjs/wasm-parser +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@webassemblyjs/wasm-parser │ └─ licenseFile: node_modules/@webassemblyjs/wasm-parser/LICENSE ├─ @webassemblyjs/wast-parser@1.9.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/xtuc/webassemblyjs │ ├─ publisher: Sven Sauleau -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@webassemblyjs/wast-parser +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@webassemblyjs/wast-parser │ └─ licenseFile: node_modules/@webassemblyjs/wast-parser/LICENSE ├─ @webassemblyjs/wast-printer@1.9.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/xtuc/webassemblyjs │ ├─ publisher: Sven Sauleau -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@webassemblyjs/wast-printer +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@webassemblyjs/wast-printer │ └─ licenseFile: node_modules/@webassemblyjs/wast-printer/LICENSE -├─ @webcomponents/custom-elements@1.4.2 +├─ @webcomponents/custom-elements@1.4.3 │ ├─ licenses: BSD-3-Clause │ ├─ repository: https://github.com/webcomponents/polyfills │ ├─ publisher: The Polymer Project Authors │ ├─ url: https://polymer.github.io/AUTHORS.txt -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@webcomponents/custom-elements +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@webcomponents/custom-elements │ └─ licenseFile: node_modules/@webcomponents/custom-elements/LICENSE.md ├─ @xtuc/ieee754@1.2.0 │ ├─ licenses: BSD-3-Clause @@ -264,26 +273,26 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Feross Aboukhadijeh │ ├─ email: feross@feross.org │ ├─ url: http://feross.org -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@xtuc/ieee754 +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@xtuc/ieee754 │ └─ licenseFile: node_modules/@xtuc/ieee754/LICENSE ├─ @xtuc/long@4.2.2 │ ├─ licenses: Apache-2.0 │ ├─ repository: https://github.com/dcodeIO/long.js │ ├─ publisher: Daniel Wirtz │ ├─ email: dcode@dcode.io -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/@xtuc/long +│ ├─ path: /home/zah/git/dcfrontend/node_modules/@xtuc/long │ └─ licenseFile: node_modules/@xtuc/long/LICENSE ├─ abbrev@1.1.1 │ ├─ licenses: ISC │ ├─ repository: https://github.com/isaacs/abbrev-js │ ├─ publisher: Isaac Z. Schlueter │ ├─ email: i@izs.me -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/abbrev +│ ├─ path: /home/zah/git/dcfrontend/node_modules/abbrev │ └─ licenseFile: node_modules/abbrev/LICENSE -├─ acorn@6.4.1 +├─ acorn@6.4.2 │ ├─ licenses: MIT │ ├─ repository: https://github.com/acornjs/acorn -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/acorn +│ ├─ path: /home/zah/git/dcfrontend/node_modules/acorn │ └─ licenseFile: node_modules/acorn/LICENSE ├─ aggregate-error@3.1.0 │ ├─ licenses: MIT @@ -291,19 +300,19 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/aggregate-error +│ ├─ path: /home/zah/git/dcfrontend/node_modules/aggregate-error │ └─ licenseFile: node_modules/aggregate-error/license ├─ ajv-keywords@3.5.2 │ ├─ licenses: MIT │ ├─ repository: https://github.com/epoberezkin/ajv-keywords │ ├─ publisher: Evgeny Poberezkin -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/ajv-keywords +│ ├─ path: /home/zah/git/dcfrontend/node_modules/ajv-keywords │ └─ licenseFile: node_modules/ajv-keywords/LICENSE -├─ ajv@6.12.4 +├─ ajv@6.12.6 │ ├─ licenses: MIT │ ├─ repository: https://github.com/ajv-validator/ajv │ ├─ publisher: Evgeny Poberezkin -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/ajv +│ ├─ path: /home/zah/git/dcfrontend/node_modules/ajv │ └─ licenseFile: node_modules/ajv/LICENSE ├─ amdefine@1.0.1 │ ├─ licenses: BSD-3-Clause OR MIT @@ -311,14 +320,14 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: James Burke │ ├─ email: jrburke@gmail.com │ ├─ url: http://github.com/jrburke -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/amdefine +│ ├─ path: /home/zah/git/dcfrontend/node_modules/amdefine │ └─ licenseFile: node_modules/amdefine/LICENSE ├─ angular-prism@0.1.20 │ ├─ licenses: MIT │ ├─ repository: https://github.com/vaibhav93/angular-prism │ ├─ publisher: Vaibhav Bansal │ ├─ email: vaibhavbansal1993@gmail.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/angular-prism +│ ├─ path: /home/zah/git/dcfrontend/node_modules/angular-prism │ └─ licenseFile: node_modules/angular-prism/README.MD ├─ ansi-regex@2.1.1 │ ├─ licenses: MIT @@ -326,7 +335,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/ansi-regex +│ ├─ path: /home/zah/git/dcfrontend/node_modules/ansi-regex │ └─ licenseFile: node_modules/ansi-regex/license ├─ ansi-styles@2.2.1 │ ├─ licenses: MIT @@ -334,28 +343,28 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/ansi-styles +│ ├─ path: /home/zah/git/dcfrontend/node_modules/ansi-styles │ └─ licenseFile: node_modules/ansi-styles/license ├─ anymatch@3.1.1 │ ├─ licenses: ISC │ ├─ repository: https://github.com/micromatch/anymatch │ ├─ publisher: Elan Shanker │ ├─ url: https://github.com/es128 -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/anymatch +│ ├─ path: /home/zah/git/dcfrontend/node_modules/anymatch │ └─ licenseFile: node_modules/anymatch/LICENSE ├─ aproba@1.2.0 │ ├─ licenses: ISC │ ├─ repository: https://github.com/iarna/aproba │ ├─ publisher: Rebecca Turner │ ├─ email: me@re-becca.org -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/aproba +│ ├─ path: /home/zah/git/dcfrontend/node_modules/aproba │ └─ licenseFile: node_modules/aproba/LICENSE ├─ are-we-there-yet@1.1.5 │ ├─ licenses: ISC │ ├─ repository: https://github.com/iarna/are-we-there-yet │ ├─ publisher: Rebecca Turner │ ├─ url: http://re-becca.org -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/are-we-there-yet +│ ├─ path: /home/zah/git/dcfrontend/node_modules/are-we-there-yet │ └─ licenseFile: node_modules/are-we-there-yet/LICENSE ├─ array-find-index@1.0.2 │ ├─ licenses: MIT @@ -363,46 +372,46 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/array-find-index +│ ├─ path: /home/zah/git/dcfrontend/node_modules/array-find-index │ └─ licenseFile: node_modules/array-find-index/license ├─ asn1.js@5.4.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/indutny/asn1.js │ ├─ publisher: Fedor Indutny -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/asn1.js +│ ├─ path: /home/zah/git/dcfrontend/node_modules/asn1.js │ └─ licenseFile: node_modules/asn1.js/LICENSE ├─ asn1@0.2.4 │ ├─ licenses: MIT │ ├─ repository: https://github.com/joyent/node-asn1 │ ├─ publisher: Joyent │ ├─ url: joyent.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/asn1 +│ ├─ path: /home/zah/git/dcfrontend/node_modules/asn1 │ └─ licenseFile: node_modules/asn1/LICENSE ├─ assert-plus@1.0.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/mcavage/node-assert-plus │ ├─ publisher: Mark Cavage │ ├─ email: mcavage@gmail.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/assert-plus +│ ├─ path: /home/zah/git/dcfrontend/node_modules/assert-plus │ └─ licenseFile: node_modules/assert-plus/README.md ├─ assert@1.4.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/defunctzombie/commonjs-assert -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/assert +│ ├─ path: /home/zah/git/dcfrontend/node_modules/assert │ └─ licenseFile: node_modules/assert/LICENSE ├─ async-foreach@0.1.3 │ ├─ licenses: MIT* │ ├─ repository: https://github.com/cowboy/javascript-sync-async-foreach │ ├─ publisher: "Cowboy" Ben Alman │ ├─ url: http://benalman.com/ -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/async-foreach +│ ├─ path: /home/zah/git/dcfrontend/node_modules/async-foreach │ └─ licenseFile: node_modules/async-foreach/LICENSE-MIT ├─ asynckit@0.4.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/alexindigo/asynckit │ ├─ publisher: Alex Indigo │ ├─ email: iam@alexindigo.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/asynckit +│ ├─ path: /home/zah/git/dcfrontend/node_modules/asynckit │ └─ licenseFile: node_modules/asynckit/LICENSE ├─ aws-sign2@0.7.0 │ ├─ licenses: Apache-2.0 @@ -410,15 +419,15 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Mikeal Rogers │ ├─ email: mikeal.rogers@gmail.com │ ├─ url: http://www.futurealoof.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/aws-sign2 +│ ├─ path: /home/zah/git/dcfrontend/node_modules/aws-sign2 │ └─ licenseFile: node_modules/aws-sign2/LICENSE -├─ aws4@1.10.1 +├─ aws4@1.11.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/mhart/aws4 │ ├─ publisher: Michael Hart │ ├─ email: michael.hart.au@gmail.com │ ├─ url: https://github.com/mhart -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/aws4 +│ ├─ path: /home/zah/git/dcfrontend/node_modules/aws4 │ └─ licenseFile: node_modules/aws4/LICENSE ├─ balanced-match@1.0.0 │ ├─ licenses: MIT @@ -426,39 +435,47 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Julian Gruber │ ├─ email: mail@juliangruber.com │ ├─ url: http://juliangruber.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/balanced-match +│ ├─ path: /home/zah/git/dcfrontend/node_modules/balanced-match │ └─ licenseFile: node_modules/balanced-match/LICENSE.md +├─ base64-arraybuffer@0.1.4 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/niklasvh/base64-arraybuffer +│ ├─ publisher: Niklas von Hertzen +│ ├─ email: niklasvh@gmail.com +│ ├─ url: http://hertzen.com +│ ├─ path: /home/zah/git/dcfrontend/node_modules/base64-arraybuffer +│ └─ licenseFile: node_modules/base64-arraybuffer/LICENSE-MIT ├─ base64-js@1.3.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/beatgammit/base64-js │ ├─ publisher: T. Jameson Little │ ├─ email: t.jameson.little@gmail.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/base64-js +│ ├─ path: /home/zah/git/dcfrontend/node_modules/base64-js │ └─ licenseFile: node_modules/base64-js/LICENSE ├─ bcrypt-pbkdf@1.0.2 │ ├─ licenses: BSD-3-Clause │ ├─ repository: https://github.com/joyent/node-bcrypt-pbkdf -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/bcrypt-pbkdf +│ ├─ path: /home/zah/git/dcfrontend/node_modules/bcrypt-pbkdf │ └─ licenseFile: node_modules/bcrypt-pbkdf/LICENSE ├─ bessel@1.0.2 │ ├─ licenses: Apache-2.0 │ ├─ repository: https://github.com/SheetJS/bessel │ ├─ publisher: SheetJS -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/bessel +│ ├─ path: /home/zah/git/dcfrontend/node_modules/bessel │ └─ licenseFile: node_modules/bessel/LICENSE ├─ big.js@5.2.2 │ ├─ licenses: MIT │ ├─ repository: https://github.com/MikeMcl/big.js │ ├─ publisher: Michael Mclaughlin │ ├─ email: M8ch88l@gmail.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/big.js +│ ├─ path: /home/zah/git/dcfrontend/node_modules/big.js │ └─ licenseFile: node_modules/big.js/LICENCE ├─ bignumber.js@8.1.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/MikeMcl/bignumber.js │ ├─ publisher: Michael Mclaughlin │ ├─ email: M8ch88l@gmail.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/bignumber.js +│ ├─ path: /home/zah/git/dcfrontend/node_modules/bignumber.js │ └─ licenseFile: node_modules/bignumber.js/LICENCE ├─ binary-extensions@2.1.0 │ ├─ licenses: MIT @@ -466,7 +483,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/binary-extensions +│ ├─ path: /home/zah/git/dcfrontend/node_modules/binary-extensions │ └─ licenseFile: node_modules/binary-extensions/license ├─ block-stream@0.0.9 │ ├─ licenses: ISC @@ -474,14 +491,14 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Isaac Z. Schlueter │ ├─ email: i@izs.me │ ├─ url: http://blog.izs.me/ -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/block-stream +│ ├─ path: /home/zah/git/dcfrontend/node_modules/block-stream │ └─ licenseFile: node_modules/block-stream/LICENSE ├─ bn.js@5.1.3 │ ├─ licenses: MIT │ ├─ repository: https://github.com/indutny/bn.js │ ├─ publisher: Fedor Indutny │ ├─ email: fedor@indutny.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/bn.js +│ ├─ path: /home/zah/git/dcfrontend/node_modules/bn.js │ └─ licenseFile: node_modules/bn.js/README.md ├─ brace-expansion@1.1.11 │ ├─ licenses: MIT @@ -489,76 +506,76 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Julian Gruber │ ├─ email: mail@juliangruber.com │ ├─ url: http://juliangruber.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/brace-expansion +│ ├─ path: /home/zah/git/dcfrontend/node_modules/brace-expansion │ └─ licenseFile: node_modules/brace-expansion/LICENSE ├─ braces@3.0.2 │ ├─ licenses: MIT │ ├─ repository: https://github.com/micromatch/braces │ ├─ publisher: Jon Schlinkert │ ├─ url: https://github.com/jonschlinkert -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/braces +│ ├─ path: /home/zah/git/dcfrontend/node_modules/braces │ └─ licenseFile: node_modules/braces/LICENSE ├─ brorand@1.1.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/indutny/brorand │ ├─ publisher: Fedor Indutny │ ├─ email: fedor@indutny.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/brorand +│ ├─ path: /home/zah/git/dcfrontend/node_modules/brorand │ └─ licenseFile: node_modules/brorand/README.md ├─ browserify-aes@1.2.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/crypto-browserify/browserify-aes -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/browserify-aes +│ ├─ path: /home/zah/git/dcfrontend/node_modules/browserify-aes │ └─ licenseFile: node_modules/browserify-aes/LICENSE ├─ browserify-cipher@1.0.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/crypto-browserify/browserify-cipher │ ├─ publisher: Calvin Metcalf │ ├─ email: calvin.metcalf@gmail.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/browserify-cipher +│ ├─ path: /home/zah/git/dcfrontend/node_modules/browserify-cipher │ └─ licenseFile: node_modules/browserify-cipher/LICENSE ├─ browserify-des@1.0.2 │ ├─ licenses: MIT │ ├─ repository: https://github.com/crypto-browserify/browserify-des │ ├─ publisher: Calvin Metcalf │ ├─ email: calvin.metcalf@gmail.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/browserify-des +│ ├─ path: /home/zah/git/dcfrontend/node_modules/browserify-des │ └─ licenseFile: node_modules/browserify-des/license ├─ browserify-rsa@4.0.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/crypto-browserify/browserify-rsa -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/browserify-rsa +│ ├─ path: /home/zah/git/dcfrontend/node_modules/browserify-rsa │ └─ licenseFile: node_modules/browserify-rsa/LICENSE ├─ browserify-sign@4.2.1 │ ├─ licenses: ISC │ ├─ repository: https://github.com/crypto-browserify/browserify-sign -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/browserify-sign +│ ├─ path: /home/zah/git/dcfrontend/node_modules/browserify-sign │ └─ licenseFile: node_modules/browserify-sign/LICENSE ├─ browserify-zlib@0.2.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/devongovett/browserify-zlib │ ├─ publisher: Devon Govett │ ├─ email: devongovett@gmail.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/browserify-zlib +│ ├─ path: /home/zah/git/dcfrontend/node_modules/browserify-zlib │ └─ licenseFile: node_modules/browserify-zlib/LICENSE ├─ buffer-from@1.1.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/LinusU/buffer-from -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/buffer-from +│ ├─ path: /home/zah/git/dcfrontend/node_modules/buffer-from │ └─ licenseFile: node_modules/buffer-from/LICENSE ├─ buffer-xor@1.0.3 │ ├─ licenses: MIT │ ├─ repository: https://github.com/crypto-browserify/buffer-xor │ ├─ publisher: Daniel Cousens -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/buffer-xor +│ ├─ path: /home/zah/git/dcfrontend/node_modules/buffer-xor │ └─ licenseFile: node_modules/buffer-xor/LICENSE -├─ buffer@5.6.0 +├─ buffer@5.7.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/feross/buffer │ ├─ publisher: Feross Aboukhadijeh │ ├─ email: feross@feross.org -│ ├─ url: http://feross.org -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/buffer +│ ├─ url: https://feross.org +│ ├─ path: /home/zah/git/dcfrontend/node_modules/buffer │ └─ licenseFile: node_modules/buffer/LICENSE ├─ builtin-status-codes@3.0.0 │ ├─ licenses: MIT @@ -566,14 +583,14 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Ben Drucker │ ├─ email: bvdrucker@gmail.com │ ├─ url: bendrucker.me -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/builtin-status-codes +│ ├─ path: /home/zah/git/dcfrontend/node_modules/builtin-status-codes │ └─ licenseFile: node_modules/builtin-status-codes/license -├─ cacache@15.0.3 +├─ cacache@15.0.5 │ ├─ licenses: ISC │ ├─ repository: https://github.com/npm/cacache │ ├─ publisher: Kat Marchán │ ├─ email: kzm@sykosomatic.org -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/cacache +│ ├─ path: /home/zah/git/dcfrontend/node_modules/cacache │ └─ licenseFile: node_modules/cacache/LICENSE.md ├─ camelcase-keys@2.1.0 │ ├─ licenses: MIT @@ -581,7 +598,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: http://sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/camelcase-keys +│ ├─ path: /home/zah/git/dcfrontend/node_modules/camelcase-keys │ └─ licenseFile: node_modules/camelcase-keys/license ├─ camelcase@2.1.1 │ ├─ licenses: MIT @@ -589,26 +606,26 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: http://sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/camelcase +│ ├─ path: /home/zah/git/dcfrontend/node_modules/camelcase │ └─ licenseFile: node_modules/camelcase/license ├─ caseless@0.12.0 │ ├─ licenses: Apache-2.0 │ ├─ repository: https://github.com/mikeal/caseless │ ├─ publisher: Mikeal Rogers │ ├─ email: mikeal.rogers@gmail.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/caseless +│ ├─ path: /home/zah/git/dcfrontend/node_modules/caseless │ └─ licenseFile: node_modules/caseless/LICENSE ├─ chalk@1.1.3 │ ├─ licenses: MIT │ ├─ repository: https://github.com/chalk/chalk -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/chalk +│ ├─ path: /home/zah/git/dcfrontend/node_modules/chalk │ └─ licenseFile: node_modules/chalk/license -├─ chokidar@3.4.2 +├─ chokidar@3.4.3 │ ├─ licenses: MIT │ ├─ repository: https://github.com/paulmillr/chokidar │ ├─ publisher: Paul Miller │ ├─ url: https://paulmillr.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/chokidar +│ ├─ path: /home/zah/git/dcfrontend/node_modules/chokidar │ └─ licenseFile: node_modules/chokidar/LICENSE ├─ chownr@2.0.0 │ ├─ licenses: ISC @@ -616,20 +633,20 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Isaac Z. Schlueter │ ├─ email: i@izs.me │ ├─ url: http://blog.izs.me/ -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/chownr +│ ├─ path: /home/zah/git/dcfrontend/node_modules/chownr │ └─ licenseFile: node_modules/chownr/LICENSE ├─ chrome-trace-event@1.0.2 │ ├─ licenses: MIT │ ├─ repository: github.com:samccone/chrome-trace-event │ ├─ publisher: Trent Mick, Sam Saccone -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/chrome-trace-event +│ ├─ path: /home/zah/git/dcfrontend/node_modules/chrome-trace-event │ └─ licenseFile: node_modules/chrome-trace-event/LICENSE.txt ├─ cipher-base@1.0.4 │ ├─ licenses: MIT │ ├─ repository: https://github.com/crypto-browserify/cipher-base │ ├─ publisher: Calvin Metcalf │ ├─ email: calvin.metcalf@gmail.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/cipher-base +│ ├─ path: /home/zah/git/dcfrontend/node_modules/cipher-base │ └─ licenseFile: node_modules/cipher-base/LICENSE ├─ clean-stack@2.2.0 │ ├─ licenses: MIT @@ -637,26 +654,26 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/clean-stack +│ ├─ path: /home/zah/git/dcfrontend/node_modules/clean-stack │ └─ licenseFile: node_modules/clean-stack/license ├─ clipboard@2.0.6 │ ├─ licenses: MIT │ ├─ repository: https://github.com/zenorocha/clipboard.js -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/clipboard +│ ├─ path: /home/zah/git/dcfrontend/node_modules/clipboard │ └─ licenseFile: node_modules/clipboard/LICENSE ├─ cliui@5.0.0 │ ├─ licenses: ISC │ ├─ repository: https://github.com/yargs/cliui │ ├─ publisher: Ben Coe │ ├─ email: ben@npmjs.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/cliui +│ ├─ path: /home/zah/git/dcfrontend/node_modules/cliui │ └─ licenseFile: node_modules/cliui/LICENSE.txt ├─ clone-deep@4.0.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/jonschlinkert/clone-deep │ ├─ publisher: Jon Schlinkert │ ├─ url: https://github.com/jonschlinkert -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/clone-deep +│ ├─ path: /home/zah/git/dcfrontend/node_modules/clone-deep │ └─ licenseFile: node_modules/clone-deep/LICENSE ├─ code-point-at@1.1.0 │ ├─ licenses: MIT @@ -664,13 +681,13 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/code-point-at +│ ├─ path: /home/zah/git/dcfrontend/node_modules/code-point-at │ └─ licenseFile: node_modules/code-point-at/license ├─ codepage@1.13.1 │ ├─ licenses: Apache-2.0 │ ├─ repository: https://github.com/SheetJS/js-codepage │ ├─ publisher: SheetJS -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/codepage +│ ├─ path: /home/zah/git/dcfrontend/node_modules/codepage │ └─ licenseFile: node_modules/codepage/LICENSE ├─ combined-stream@1.0.8 │ ├─ licenses: MIT @@ -678,14 +695,14 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Felix Geisendörfer │ ├─ email: felix@debuggable.com │ ├─ url: http://debuggable.com/ -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/combined-stream +│ ├─ path: /home/zah/git/dcfrontend/node_modules/combined-stream │ └─ licenseFile: node_modules/combined-stream/License ├─ commander@2.15.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/tj/commander.js │ ├─ publisher: TJ Holowaychuk │ ├─ email: tj@vision-media.ca -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/commander +│ ├─ path: /home/zah/git/dcfrontend/node_modules/commander │ └─ licenseFile: node_modules/commander/LICENSE ├─ commondir@1.0.1 │ ├─ licenses: MIT @@ -693,7 +710,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: James Halliday │ ├─ email: mail@substack.net │ ├─ url: http://substack.net -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/commondir +│ ├─ path: /home/zah/git/dcfrontend/node_modules/commondir │ └─ licenseFile: node_modules/commondir/LICENSE ├─ concat-map@0.0.1 │ ├─ licenses: MIT @@ -701,14 +718,14 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: James Halliday │ ├─ email: mail@substack.net │ ├─ url: http://substack.net -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/concat-map +│ ├─ path: /home/zah/git/dcfrontend/node_modules/concat-map │ └─ licenseFile: node_modules/concat-map/LICENSE ├─ console-browserify@1.2.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/browserify/console-browserify │ ├─ publisher: Raynos │ ├─ email: raynos2@gmail.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/console-browserify +│ ├─ path: /home/zah/git/dcfrontend/node_modules/console-browserify │ └─ licenseFile: node_modules/console-browserify/LICENCE ├─ console-control-strings@1.1.0 │ ├─ licenses: ISC @@ -716,7 +733,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Rebecca Turner │ ├─ email: me@re-becca.org │ ├─ url: http://re-becca.org/ -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/console-control-strings +│ ├─ path: /home/zah/git/dcfrontend/node_modules/console-control-strings │ └─ licenseFile: node_modules/console-control-strings/LICENSE ├─ constants-browserify@1.0.0 │ ├─ licenses: MIT @@ -724,12 +741,12 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Julian Gruber │ ├─ email: julian@juliangruber.com │ ├─ url: http://juliangruber.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/constants-browserify +│ ├─ path: /home/zah/git/dcfrontend/node_modules/constants-browserify │ └─ licenseFile: node_modules/constants-browserify/README.md ├─ core-js@2.6.11 │ ├─ licenses: MIT │ ├─ repository: https://github.com/zloirock/core-js -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/core-js +│ ├─ path: /home/zah/git/dcfrontend/node_modules/core-js │ └─ licenseFile: node_modules/core-js/LICENSE ├─ core-util-is@1.0.2 │ ├─ licenses: MIT @@ -737,23 +754,23 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Isaac Z. Schlueter │ ├─ email: i@izs.me │ ├─ url: http://blog.izs.me/ -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/core-util-is +│ ├─ path: /home/zah/git/dcfrontend/node_modules/core-util-is │ └─ licenseFile: node_modules/core-util-is/LICENSE ├─ create-ecdh@4.0.4 │ ├─ licenses: MIT │ ├─ repository: https://github.com/crypto-browserify/createECDH │ ├─ publisher: Calvin Metcalf -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/create-ecdh +│ ├─ path: /home/zah/git/dcfrontend/node_modules/create-ecdh │ └─ licenseFile: node_modules/create-ecdh/LICENSE ├─ create-hash@1.2.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/crypto-browserify/createHash -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/create-hash +│ ├─ path: /home/zah/git/dcfrontend/node_modules/create-hash │ └─ licenseFile: node_modules/create-hash/LICENSE ├─ create-hmac@1.1.7 │ ├─ licenses: MIT │ ├─ repository: https://github.com/crypto-browserify/createHmac -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/create-hmac +│ ├─ path: /home/zah/git/dcfrontend/node_modules/create-hmac │ └─ licenseFile: node_modules/create-hmac/LICENSE ├─ cross-spawn@3.0.1 │ ├─ licenses: MIT @@ -761,7 +778,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: IndigoUnited │ ├─ email: hello@indigounited.com │ ├─ url: http://indigounited.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/cross-spawn +│ ├─ path: /home/zah/git/dcfrontend/node_modules/cross-spawn │ └─ licenseFile: node_modules/cross-spawn/LICENSE ├─ crypto-browserify@3.12.0 │ ├─ licenses: MIT @@ -769,14 +786,14 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Dominic Tarr │ ├─ email: dominic.tarr@gmail.com │ ├─ url: dominictarr.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/crypto-browserify +│ ├─ path: /home/zah/git/dcfrontend/node_modules/crypto-browserify │ └─ licenseFile: node_modules/crypto-browserify/LICENSE ├─ crypto-js@3.3.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/brix/crypto-js │ ├─ publisher: Evan Vosberg │ ├─ url: http://github.com/evanvosberg -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/crypto-js +│ ├─ path: /home/zah/git/dcfrontend/node_modules/crypto-js │ └─ licenseFile: node_modules/crypto-js/LICENSE ├─ currently-unhandled@0.4.1 │ ├─ licenses: MIT @@ -784,89 +801,89 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: James Talmage │ ├─ email: james@talmage.io │ ├─ url: github.com/jamestalmage -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/currently-unhandled +│ ├─ path: /home/zah/git/dcfrontend/node_modules/currently-unhandled │ └─ licenseFile: node_modules/currently-unhandled/license ├─ d3-color@1.4.1 │ ├─ licenses: BSD-3-Clause │ ├─ repository: https://github.com/d3/d3-color │ ├─ publisher: Mike Bostock │ ├─ url: http://bost.ocks.org/mike -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/d3-color +│ ├─ path: /home/zah/git/dcfrontend/node_modules/d3-color │ └─ licenseFile: node_modules/d3-color/LICENSE ├─ d3-dispatch@1.0.6 │ ├─ licenses: BSD-3-Clause │ ├─ repository: https://github.com/d3/d3-dispatch │ ├─ publisher: Mike Bostock │ ├─ url: http://bost.ocks.org/mike -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/d3-dispatch +│ ├─ path: /home/zah/git/dcfrontend/node_modules/d3-dispatch │ └─ licenseFile: node_modules/d3-dispatch/LICENSE ├─ d3-drag@1.2.5 │ ├─ licenses: BSD-3-Clause │ ├─ repository: https://github.com/d3/d3-drag │ ├─ publisher: Mike Bostock │ ├─ url: http://bost.ocks.org/mike -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/d3-drag +│ ├─ path: /home/zah/git/dcfrontend/node_modules/d3-drag │ └─ licenseFile: node_modules/d3-drag/LICENSE ├─ d3-ease@1.0.7 │ ├─ licenses: BSD-3-Clause │ ├─ repository: https://github.com/d3/d3-ease │ ├─ publisher: Mike Bostock │ ├─ url: http://bost.ocks.org/mike -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/d3-ease +│ ├─ path: /home/zah/git/dcfrontend/node_modules/d3-ease │ └─ licenseFile: node_modules/d3-ease/LICENSE ├─ d3-format@1.4.5 │ ├─ licenses: BSD-3-Clause │ ├─ repository: https://github.com/d3/d3-format │ ├─ publisher: Mike Bostock │ ├─ url: http://bost.ocks.org/mike -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/d3-format +│ ├─ path: /home/zah/git/dcfrontend/node_modules/d3-format │ └─ licenseFile: node_modules/d3-format/LICENSE ├─ d3-graphviz@2.6.1 │ ├─ licenses: BSD-3-Clause │ ├─ repository: https://github.com/magjac/d3-graphviz -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/d3-graphviz +│ ├─ path: /home/zah/git/dcfrontend/node_modules/d3-graphviz │ └─ licenseFile: node_modules/d3-graphviz/LICENSE ├─ d3-interpolate@1.4.0 │ ├─ licenses: BSD-3-Clause │ ├─ repository: https://github.com/d3/d3-interpolate │ ├─ publisher: Mike Bostock │ ├─ url: http://bost.ocks.org/mike -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/d3-interpolate +│ ├─ path: /home/zah/git/dcfrontend/node_modules/d3-interpolate │ └─ licenseFile: node_modules/d3-interpolate/LICENSE ├─ d3-path@1.0.9 │ ├─ licenses: BSD-3-Clause │ ├─ repository: https://github.com/d3/d3-path │ ├─ publisher: Mike Bostock │ ├─ url: http://bost.ocks.org/mike -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/d3-path +│ ├─ path: /home/zah/git/dcfrontend/node_modules/d3-path │ └─ licenseFile: node_modules/d3-path/LICENSE ├─ d3-selection@1.4.2 │ ├─ licenses: BSD-3-Clause │ ├─ repository: https://github.com/d3/d3-selection │ ├─ publisher: Mike Bostock │ ├─ url: https://bost.ocks.org/mike -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/d3-selection +│ ├─ path: /home/zah/git/dcfrontend/node_modules/d3-selection │ └─ licenseFile: node_modules/d3-selection/LICENSE ├─ d3-timer@1.0.10 │ ├─ licenses: BSD-3-Clause │ ├─ repository: https://github.com/d3/d3-timer │ ├─ publisher: Mike Bostock │ ├─ url: http://bost.ocks.org/mike -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/d3-timer +│ ├─ path: /home/zah/git/dcfrontend/node_modules/d3-timer │ └─ licenseFile: node_modules/d3-timer/LICENSE ├─ d3-transition@1.3.2 │ ├─ licenses: BSD-3-Clause │ ├─ repository: https://github.com/d3/d3-transition │ ├─ publisher: Mike Bostock │ ├─ url: https://bost.ocks.org/mike -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/d3-transition +│ ├─ path: /home/zah/git/dcfrontend/node_modules/d3-transition │ └─ licenseFile: node_modules/d3-transition/LICENSE ├─ d3-zoom@1.8.3 │ ├─ licenses: BSD-3-Clause │ ├─ repository: https://github.com/d3/d3-zoom │ ├─ publisher: Mike Bostock │ ├─ url: http://bost.ocks.org/mike -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/d3-zoom +│ ├─ path: /home/zah/git/dcfrontend/node_modules/d3-zoom │ └─ licenseFile: node_modules/d3-zoom/LICENSE ├─ dashdash@1.14.1 │ ├─ licenses: MIT @@ -874,7 +891,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Trent Mick │ ├─ email: trentm@gmail.com │ ├─ url: http://trentm.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/dashdash +│ ├─ path: /home/zah/git/dcfrontend/node_modules/dashdash │ └─ licenseFile: node_modules/dashdash/LICENSE.txt ├─ datacontroller@3.10.0 │ ├─ licenses: UNLICENSED @@ -887,7 +904,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/decamelize +│ ├─ path: /home/zah/git/dcfrontend/node_modules/decamelize │ └─ licenseFile: node_modules/decamelize/license ├─ delayed-stream@1.0.0 │ ├─ licenses: MIT @@ -895,30 +912,30 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Felix Geisendörfer │ ├─ email: felix@debuggable.com │ ├─ url: http://debuggable.com/ -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/delayed-stream +│ ├─ path: /home/zah/git/dcfrontend/node_modules/delayed-stream │ └─ licenseFile: node_modules/delayed-stream/License ├─ delegate@3.2.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/zenorocha/delegate -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/delegate +│ ├─ path: /home/zah/git/dcfrontend/node_modules/delegate │ └─ licenseFile: node_modules/delegate/readme.md ├─ delegates@1.0.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/visionmedia/node-delegates -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/delegates +│ ├─ path: /home/zah/git/dcfrontend/node_modules/delegates │ └─ licenseFile: node_modules/delegates/License ├─ des.js@1.0.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/indutny/des.js │ ├─ publisher: Fedor Indutny │ ├─ email: fedor@indutny.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/des.js +│ ├─ path: /home/zah/git/dcfrontend/node_modules/des.js │ └─ licenseFile: node_modules/des.js/README.md ├─ diffie-hellman@5.0.3 │ ├─ licenses: MIT │ ├─ repository: https://github.com/crypto-browserify/diffie-hellman │ ├─ publisher: Calvin Metcalf -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/diffie-hellman +│ ├─ path: /home/zah/git/dcfrontend/node_modules/diffie-hellman │ └─ licenseFile: node_modules/diffie-hellman/LICENSE ├─ domain-browser@1.2.0 │ ├─ licenses: MIT @@ -926,7 +943,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: 2013+ Bevry Pty Ltd │ ├─ email: us@bevry.me │ ├─ url: http://bevry.me -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/domain-browser +│ ├─ path: /home/zah/git/dcfrontend/node_modules/domain-browser │ └─ licenseFile: node_modules/domain-browser/LICENSE.md ├─ ecc-jsbn@0.1.2 │ ├─ licenses: MIT @@ -934,51 +951,59 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Jeremie Miller │ ├─ email: jeremie@jabber.org │ ├─ url: http://jeremie.com/ -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/ecc-jsbn +│ ├─ path: /home/zah/git/dcfrontend/node_modules/ecc-jsbn │ └─ licenseFile: node_modules/ecc-jsbn/LICENSE ├─ elliptic@6.5.3 │ ├─ licenses: MIT │ ├─ repository: https://github.com/indutny/elliptic │ ├─ publisher: Fedor Indutny │ ├─ email: fedor@indutny.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/elliptic +│ ├─ path: /home/zah/git/dcfrontend/node_modules/elliptic │ └─ licenseFile: node_modules/elliptic/README.md +├─ emoji-toolkit@6.0.1 +│ ├─ licenses: (MIT) +│ ├─ repository: https://github.com/joypixels/emoji-toolkit +│ ├─ publisher: JoyPixels +│ ├─ email: support@joypixels.com +│ ├─ url: https://www.joypixels.com +│ ├─ path: /home/zah/git/dcfrontend/node_modules/emoji-toolkit +│ └─ licenseFile: node_modules/emoji-toolkit/LICENSE.md ├─ emojis-list@3.0.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/kikobeats/emojis-list │ ├─ publisher: Kiko Beats │ ├─ email: josefrancisco.verdu@gmail.com │ ├─ url: https://github.com/Kikobeats -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/emojis-list +│ ├─ path: /home/zah/git/dcfrontend/node_modules/emojis-list │ └─ licenseFile: node_modules/emojis-list/LICENSE.md ├─ encoding@0.1.13 │ ├─ licenses: MIT │ ├─ repository: https://github.com/andris9/encoding │ ├─ publisher: Andris Reinman -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/encoding +│ ├─ path: /home/zah/git/dcfrontend/node_modules/encoding │ └─ licenseFile: node_modules/encoding/LICENSE ├─ enhanced-resolve@3.4.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/webpack/enhanced-resolve │ ├─ publisher: Tobias Koppers @sokra -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/enhanced-resolve +│ ├─ path: /home/zah/git/dcfrontend/node_modules/enhanced-resolve │ └─ licenseFile: node_modules/enhanced-resolve/README.md ├─ errno@0.1.7 │ ├─ licenses: MIT │ ├─ repository: https://github.com/rvagg/node-errno -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/errno +│ ├─ path: /home/zah/git/dcfrontend/node_modules/errno │ └─ licenseFile: node_modules/errno/README.md ├─ error-ex@1.3.2 │ ├─ licenses: MIT │ ├─ repository: https://github.com/qix-/node-error-ex -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/error-ex +│ ├─ path: /home/zah/git/dcfrontend/node_modules/error-ex │ └─ licenseFile: node_modules/error-ex/LICENSE ├─ es6-promise@4.2.8 │ ├─ licenses: MIT │ ├─ repository: https://github.com/stefanpenner/es6-promise │ ├─ publisher: Yehuda Katz, Tom Dale, Stefan Penner and contributors │ ├─ url: Conversion to ES6 API by Jake Archibald -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/es6-promise +│ ├─ path: /home/zah/git/dcfrontend/node_modules/es6-promise │ └─ licenseFile: node_modules/es6-promise/LICENSE ├─ escape-string-regexp@1.0.5 │ ├─ licenses: MIT @@ -986,22 +1011,22 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/escape-string-regexp +│ ├─ path: /home/zah/git/dcfrontend/node_modules/escape-string-regexp │ └─ licenseFile: node_modules/escape-string-regexp/license ├─ eslint-scope@4.0.3 │ ├─ licenses: BSD-2-Clause │ ├─ repository: https://github.com/eslint/eslint-scope -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/eslint-scope +│ ├─ path: /home/zah/git/dcfrontend/node_modules/eslint-scope │ └─ licenseFile: node_modules/eslint-scope/LICENSE ├─ esrecurse@4.3.0 │ ├─ licenses: BSD-2-Clause │ ├─ repository: https://github.com/estools/esrecurse -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/esrecurse +│ ├─ path: /home/zah/git/dcfrontend/node_modules/esrecurse │ └─ licenseFile: node_modules/esrecurse/README.md ├─ estraverse@4.3.0 │ ├─ licenses: BSD-2-Clause │ ├─ repository: https://github.com/estools/estraverse -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/estraverse +│ ├─ path: /home/zah/git/dcfrontend/node_modules/estraverse │ └─ licenseFile: node_modules/estraverse/LICENSE.BSD ├─ events@3.2.0 │ ├─ licenses: MIT @@ -1009,20 +1034,20 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Irakli Gozalishvili │ ├─ email: rfobic@gmail.com │ ├─ url: http://jeditoolkit.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/events +│ ├─ path: /home/zah/git/dcfrontend/node_modules/events │ └─ licenseFile: node_modules/events/LICENSE ├─ evp_bytestokey@1.0.3 │ ├─ licenses: MIT │ ├─ repository: https://github.com/crypto-browserify/EVP_BytesToKey │ ├─ publisher: Calvin Metcalf │ ├─ email: calvin.metcalf@gmail.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/evp_bytestokey +│ ├─ path: /home/zah/git/dcfrontend/node_modules/evp_bytestokey │ └─ licenseFile: node_modules/evp_bytestokey/LICENSE ├─ exit-on-epipe@1.0.1 │ ├─ licenses: Apache-2.0 │ ├─ repository: https://github.com/SheetJS/node-exit-on-epipe │ ├─ publisher: sheetjs -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/exit-on-epipe +│ ├─ path: /home/zah/git/dcfrontend/node_modules/exit-on-epipe │ └─ licenseFile: node_modules/exit-on-epipe/LICENSE ├─ extend@3.0.2 │ ├─ licenses: MIT @@ -1030,18 +1055,18 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Stefan Thomas │ ├─ email: justmoon@members.fsf.org │ ├─ url: http://www.justmoon.net -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/extend +│ ├─ path: /home/zah/git/dcfrontend/node_modules/extend │ └─ licenseFile: node_modules/extend/LICENSE ├─ extsprintf@1.3.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/davepacheco/node-extsprintf -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/extsprintf +│ ├─ path: /home/zah/git/dcfrontend/node_modules/extsprintf │ └─ licenseFile: node_modules/extsprintf/LICENSE ├─ fast-deep-equal@3.1.3 │ ├─ licenses: MIT │ ├─ repository: https://github.com/epoberezkin/fast-deep-equal │ ├─ publisher: Evgeny Poberezkin -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/fast-deep-equal +│ ├─ path: /home/zah/git/dcfrontend/node_modules/fast-deep-equal │ └─ licenseFile: node_modules/fast-deep-equal/LICENSE ├─ fast-json-stable-stringify@2.1.0 │ ├─ licenses: MIT @@ -1049,19 +1074,19 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: James Halliday │ ├─ email: mail@substack.net │ ├─ url: http://substack.net -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/fast-json-stable-stringify +│ ├─ path: /home/zah/git/dcfrontend/node_modules/fast-json-stable-stringify │ └─ licenseFile: node_modules/fast-json-stable-stringify/LICENSE ├─ fill-range@7.0.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/jonschlinkert/fill-range │ ├─ publisher: Jon Schlinkert │ ├─ url: https://github.com/jonschlinkert -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/fill-range +│ ├─ path: /home/zah/git/dcfrontend/node_modules/fill-range │ └─ licenseFile: node_modules/fill-range/LICENSE ├─ find-cache-dir@3.3.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/avajs/find-cache-dir -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/find-cache-dir +│ ├─ path: /home/zah/git/dcfrontend/node_modules/find-cache-dir │ └─ licenseFile: node_modules/find-cache-dir/license ├─ find-up@1.1.2 │ ├─ licenses: MIT @@ -1069,7 +1094,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/find-up +│ ├─ path: /home/zah/git/dcfrontend/node_modules/find-up │ └─ licenseFile: node_modules/find-up/license ├─ forever-agent@0.6.1 │ ├─ licenses: Apache-2.0 @@ -1077,7 +1102,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Mikeal Rogers │ ├─ email: mikeal.rogers@gmail.com │ ├─ url: http://www.futurealoof.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/forever-agent +│ ├─ path: /home/zah/git/dcfrontend/node_modules/forever-agent │ └─ licenseFile: node_modules/forever-agent/LICENSE ├─ form-data@3.0.0 │ ├─ licenses: MIT @@ -1085,14 +1110,14 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Felix Geisendörfer │ ├─ email: felix@debuggable.com │ ├─ url: http://debuggable.com/ -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/form-data +│ ├─ path: /home/zah/git/dcfrontend/node_modules/form-data │ └─ licenseFile: node_modules/form-data/License ├─ fs-extra@7.0.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/jprichardson/node-fs-extra │ ├─ publisher: JP Richardson │ ├─ email: jprichardson@gmail.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/fs-extra +│ ├─ path: /home/zah/git/dcfrontend/node_modules/fs-extra │ └─ licenseFile: node_modules/fs-extra/LICENSE ├─ fs-minipass@2.1.0 │ ├─ licenses: ISC @@ -1100,7 +1125,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Isaac Z. Schlueter │ ├─ email: i@izs.me │ ├─ url: http://blog.izs.me/ -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/fs-minipass +│ ├─ path: /home/zah/git/dcfrontend/node_modules/fs-minipass │ └─ licenseFile: node_modules/fs-minipass/LICENSE ├─ fs.realpath@1.0.0 │ ├─ licenses: ISC @@ -1108,35 +1133,47 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Isaac Z. Schlueter │ ├─ email: i@izs.me │ ├─ url: http://blog.izs.me/ -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/fs.realpath +│ ├─ path: /home/zah/git/dcfrontend/node_modules/fs.realpath │ └─ licenseFile: node_modules/fs.realpath/LICENSE +├─ fsevents@2.1.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/fsevents/fsevents +│ ├─ path: /home/zah/git/dcfrontend/node_modules/fsevents +│ └─ licenseFile: node_modules/fsevents/LICENSE ├─ fstream@1.0.12 │ ├─ licenses: ISC │ ├─ repository: https://github.com/npm/fstream │ ├─ publisher: Isaac Z. Schlueter │ ├─ email: i@izs.me │ ├─ url: http://blog.izs.me/ -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/fstream +│ ├─ path: /home/zah/git/dcfrontend/node_modules/fstream │ └─ licenseFile: node_modules/fstream/LICENSE +├─ function-bind@1.1.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/Raynos/function-bind +│ ├─ publisher: Raynos +│ ├─ email: raynos2@gmail.com +│ ├─ path: /home/zah/git/dcfrontend/node_modules/function-bind +│ └─ licenseFile: node_modules/function-bind/LICENSE ├─ gauge@2.7.4 │ ├─ licenses: ISC │ ├─ repository: https://github.com/iarna/gauge │ ├─ publisher: Rebecca Turner │ ├─ email: me@re-becca.org -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/gauge +│ ├─ path: /home/zah/git/dcfrontend/node_modules/gauge │ └─ licenseFile: node_modules/gauge/LICENSE ├─ gaze@1.1.3 │ ├─ licenses: MIT │ ├─ repository: https://github.com/shama/gaze │ ├─ publisher: Kyle Robinson Young │ ├─ email: kyle@dontkry.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/gaze +│ ├─ path: /home/zah/git/dcfrontend/node_modules/gaze │ └─ licenseFile: node_modules/gaze/LICENSE-MIT ├─ get-caller-file@2.0.5 │ ├─ licenses: ISC │ ├─ repository: https://github.com/stefanpenner/get-caller-file │ ├─ publisher: Stefan Penner -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/get-caller-file +│ ├─ path: /home/zah/git/dcfrontend/node_modules/get-caller-file │ └─ licenseFile: node_modules/get-caller-file/LICENSE.md ├─ get-stdin@4.0.1 │ ├─ licenses: MIT @@ -1144,14 +1181,14 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: http://sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/get-stdin +│ ├─ path: /home/zah/git/dcfrontend/node_modules/get-stdin │ └─ licenseFile: node_modules/get-stdin/readme.md ├─ getpass@0.1.7 │ ├─ licenses: MIT │ ├─ repository: https://github.com/arekinath/node-getpass │ ├─ publisher: Alex Wilson │ ├─ email: alex.wilson@joyent.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/getpass +│ ├─ path: /home/zah/git/dcfrontend/node_modules/getpass │ └─ licenseFile: node_modules/getpass/LICENSE ├─ glob-parent@5.1.1 │ ├─ licenses: ISC @@ -1159,7 +1196,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Gulp Team │ ├─ email: team@gulpjs.com │ ├─ url: https://gulpjs.com/ -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/glob-parent +│ ├─ path: /home/zah/git/dcfrontend/node_modules/glob-parent │ └─ licenseFile: node_modules/glob-parent/LICENSE ├─ glob@7.1.6 │ ├─ licenses: ISC @@ -1167,37 +1204,37 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Isaac Z. Schlueter │ ├─ email: i@izs.me │ ├─ url: http://blog.izs.me/ -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/glob +│ ├─ path: /home/zah/git/dcfrontend/node_modules/glob │ └─ licenseFile: node_modules/glob/LICENSE ├─ globule@1.3.2 │ ├─ licenses: MIT │ ├─ repository: https://github.com/cowboy/node-globule │ ├─ publisher: "Cowboy" Ben Alman │ ├─ url: http://benalman.com/ -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/globule +│ ├─ path: /home/zah/git/dcfrontend/node_modules/globule │ └─ licenseFile: node_modules/globule/LICENSE ├─ good-listener@1.2.2 │ ├─ licenses: MIT │ ├─ repository: https://github.com/zenorocha/good-listener -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/good-listener +│ ├─ path: /home/zah/git/dcfrontend/node_modules/good-listener │ └─ licenseFile: node_modules/good-listener/readme.md ├─ graceful-fs@4.2.4 │ ├─ licenses: ISC │ ├─ repository: https://github.com/isaacs/node-graceful-fs -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/graceful-fs +│ ├─ path: /home/zah/git/dcfrontend/node_modules/graceful-fs │ └─ licenseFile: node_modules/graceful-fs/LICENSE ├─ handlebars@4.7.6 │ ├─ licenses: MIT │ ├─ repository: https://github.com/wycats/handlebars.js │ ├─ publisher: Yehuda Katz -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/handlebars +│ ├─ path: /home/zah/git/dcfrontend/node_modules/handlebars │ └─ licenseFile: node_modules/handlebars/LICENSE -├─ handsontable@8.0.0 +├─ handsontable@8.1.0 │ ├─ licenses: Custom: https://raw.githubusercontent.com/handsontable/handsontable/develop/resources/handsontable-logo.svg │ ├─ repository: https://github.com/handsontable/handsontable │ ├─ publisher: Handsoncode │ ├─ email: hello@handsontable.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/handsontable +│ ├─ path: /home/zah/git/dcfrontend/node_modules/handsontable │ └─ licenseFile: node_modules/handsontable/LICENSE.txt ├─ har-schema@2.0.0 │ ├─ licenses: ISC @@ -1205,7 +1242,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Ahmad Nassri │ ├─ email: ahmad@ahmadnassri.com │ ├─ url: https://www.ahmadnassri.com/ -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/har-schema +│ ├─ path: /home/zah/git/dcfrontend/node_modules/har-schema │ └─ licenseFile: node_modules/har-schema/LICENSE ├─ har-validator@5.1.5 │ ├─ licenses: MIT @@ -1213,7 +1250,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Ahmad Nassri │ ├─ email: ahmad@ahmadnassri.com │ ├─ url: https://www.ahmadnassri.com/ -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/har-validator +│ ├─ path: /home/zah/git/dcfrontend/node_modules/har-validator │ └─ licenseFile: node_modules/har-validator/LICENSE ├─ has-ansi@2.0.0 │ ├─ licenses: MIT @@ -1221,43 +1258,50 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/has-ansi +│ ├─ path: /home/zah/git/dcfrontend/node_modules/has-ansi │ └─ licenseFile: node_modules/has-ansi/license ├─ has-unicode@2.0.1 │ ├─ licenses: ISC │ ├─ repository: https://github.com/iarna/has-unicode │ ├─ publisher: Rebecca Turner │ ├─ email: me@re-becca.org -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/has-unicode +│ ├─ path: /home/zah/git/dcfrontend/node_modules/has-unicode │ └─ licenseFile: node_modules/has-unicode/LICENSE +├─ has@1.0.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/tarruda/has +│ ├─ publisher: Thiago de Arruda +│ ├─ email: tpadilha84@gmail.com +│ ├─ path: /home/zah/git/dcfrontend/node_modules/has +│ └─ licenseFile: node_modules/has/LICENSE-MIT ├─ hash-base@3.1.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/crypto-browserify/hash-base │ ├─ publisher: Kirill Fomichev │ ├─ email: fanatid@ya.ru │ ├─ url: https://github.com/fanatid -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/hash-base +│ ├─ path: /home/zah/git/dcfrontend/node_modules/hash-base │ └─ licenseFile: node_modules/hash-base/LICENSE ├─ hash.js@1.1.7 │ ├─ licenses: MIT │ ├─ repository: https://github.com/indutny/hash.js │ ├─ publisher: Fedor Indutny │ ├─ email: fedor@indutny.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/hash.js +│ ├─ path: /home/zah/git/dcfrontend/node_modules/hash.js │ └─ licenseFile: node_modules/hash.js/README.md -├─ highlight.js@10.1.2 +├─ highlight.js@10.3.2 │ ├─ licenses: BSD-3-Clause │ ├─ repository: https://github.com/highlightjs/highlight.js │ ├─ publisher: Ivan Sagalaev │ ├─ email: maniac@softwaremaniacs.org -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/highlight.js +│ ├─ path: /home/zah/git/dcfrontend/node_modules/highlight.js │ └─ licenseFile: node_modules/highlight.js/LICENSE ├─ hmac-drbg@1.0.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/indutny/hmac-drbg │ ├─ publisher: Fedor Indutny │ ├─ email: fedor@indutny.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/hmac-drbg +│ ├─ path: /home/zah/git/dcfrontend/node_modules/hmac-drbg │ └─ licenseFile: node_modules/hmac-drbg/README.md ├─ hosted-git-info@2.8.8 │ ├─ licenses: ISC @@ -1265,20 +1309,20 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Rebecca Turner │ ├─ email: me@re-becca.org │ ├─ url: http://re-becca.org -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/hosted-git-info +│ ├─ path: /home/zah/git/dcfrontend/node_modules/hosted-git-info │ └─ licenseFile: node_modules/hosted-git-info/LICENSE ├─ hot-formula-parser@3.0.2 │ ├─ licenses: MIT │ ├─ repository: https://github.com/handsontable/formula-parser │ ├─ publisher: Handsoncode │ ├─ email: hello@handsontable.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/hot-formula-parser +│ ├─ path: /home/zah/git/dcfrontend/node_modules/hot-formula-parser │ └─ licenseFile: node_modules/hot-formula-parser/LICENSE ├─ http-signature@1.2.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/joyent/node-http-signature │ ├─ publisher: Joyent, Inc -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/http-signature +│ ├─ path: /home/zah/git/dcfrontend/node_modules/http-signature │ └─ licenseFile: node_modules/http-signature/LICENSE ├─ https-browserify@1.0.0 │ ├─ licenses: MIT @@ -1286,22 +1330,22 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: James Halliday │ ├─ email: mail@substack.net │ ├─ url: http://substack.net -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/https-browserify +│ ├─ path: /home/zah/git/dcfrontend/node_modules/https-browserify │ └─ licenseFile: node_modules/https-browserify/LICENSE ├─ iconv-lite@0.5.2 │ ├─ licenses: MIT │ ├─ repository: https://github.com/ashtuchkin/iconv-lite │ ├─ publisher: Alexander Shtuchkin │ ├─ email: ashtuchkin@gmail.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/iconv-lite +│ ├─ path: /home/zah/git/dcfrontend/node_modules/iconv-lite │ └─ licenseFile: node_modules/iconv-lite/LICENSE -├─ ieee754@1.1.13 +├─ ieee754@1.2.1 │ ├─ licenses: BSD-3-Clause │ ├─ repository: https://github.com/feross/ieee754 │ ├─ publisher: Feross Aboukhadijeh │ ├─ email: feross@feross.org -│ ├─ url: http://feross.org -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/ieee754 +│ ├─ url: https://feross.org +│ ├─ path: /home/zah/git/dcfrontend/node_modules/ieee754 │ └─ licenseFile: node_modules/ieee754/LICENSE ├─ imurmurhash@0.1.4 │ ├─ licenses: MIT @@ -1309,14 +1353,14 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Jens Taylor │ ├─ email: jensyt@gmail.com │ ├─ url: https://github.com/homebrewing -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/imurmurhash +│ ├─ path: /home/zah/git/dcfrontend/node_modules/imurmurhash │ └─ licenseFile: node_modules/imurmurhash/README.md ├─ in-publish@2.0.1 │ ├─ licenses: ISC │ ├─ repository: https://github.com/iarna/in-publish │ ├─ publisher: Rebecca Turner │ ├─ email: me@re-becca.org -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/in-publish +│ ├─ path: /home/zah/git/dcfrontend/node_modules/in-publish │ └─ licenseFile: node_modules/in-publish/LICENSE ├─ indent-string@2.1.0 │ ├─ licenses: MIT @@ -1324,7 +1368,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/indent-string +│ ├─ path: /home/zah/git/dcfrontend/node_modules/indent-string │ └─ licenseFile: node_modules/indent-string/license ├─ infer-owner@1.0.4 │ ├─ licenses: ISC @@ -1332,7 +1376,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Isaac Z. Schlueter │ ├─ email: i@izs.me │ ├─ url: https://izs.me -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/infer-owner +│ ├─ path: /home/zah/git/dcfrontend/node_modules/infer-owner │ └─ licenseFile: node_modules/infer-owner/LICENSE ├─ inflight@1.0.6 │ ├─ licenses: ISC @@ -1340,12 +1384,12 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Isaac Z. Schlueter │ ├─ email: i@izs.me │ ├─ url: http://blog.izs.me/ -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/inflight +│ ├─ path: /home/zah/git/dcfrontend/node_modules/inflight │ └─ licenseFile: node_modules/inflight/LICENSE ├─ inherits@2.0.4 │ ├─ licenses: ISC │ ├─ repository: https://github.com/isaacs/inherits -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/inherits +│ ├─ path: /home/zah/git/dcfrontend/node_modules/inherits │ └─ licenseFile: node_modules/inherits/LICENSE ├─ interpret@1.4.0 │ ├─ licenses: MIT @@ -1353,14 +1397,14 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Gulp Team │ ├─ email: team@gulpjs.com │ ├─ url: http://gulpjs.com/ -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/interpret +│ ├─ path: /home/zah/git/dcfrontend/node_modules/interpret │ └─ licenseFile: node_modules/interpret/LICENSE ├─ is-arrayish@0.2.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/qix-/node-is-arrayish │ ├─ publisher: Qix │ ├─ url: http://github.com/qix- -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/is-arrayish +│ ├─ path: /home/zah/git/dcfrontend/node_modules/is-arrayish │ └─ licenseFile: node_modules/is-arrayish/LICENSE ├─ is-binary-path@2.1.0 │ ├─ licenses: MIT @@ -1368,14 +1412,21 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/is-binary-path +│ ├─ path: /home/zah/git/dcfrontend/node_modules/is-binary-path │ └─ licenseFile: node_modules/is-binary-path/license +├─ is-core-module@2.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/inspect-js/is-core-module +│ ├─ publisher: Jordan Harband +│ ├─ email: ljharb@gmail.com +│ ├─ path: /home/zah/git/dcfrontend/node_modules/is-core-module +│ └─ licenseFile: node_modules/is-core-module/LICENSE ├─ is-extglob@2.1.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/jonschlinkert/is-extglob │ ├─ publisher: Jon Schlinkert │ ├─ url: https://github.com/jonschlinkert -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/is-extglob +│ ├─ path: /home/zah/git/dcfrontend/node_modules/is-extglob │ └─ licenseFile: node_modules/is-extglob/LICENSE ├─ is-finite@1.1.0 │ ├─ licenses: MIT @@ -1383,7 +1434,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/is-finite +│ ├─ path: /home/zah/git/dcfrontend/node_modules/is-finite │ └─ licenseFile: node_modules/is-finite/license ├─ is-fullwidth-code-point@1.0.0 │ ├─ licenses: MIT @@ -1391,28 +1442,28 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/is-fullwidth-code-point +│ ├─ path: /home/zah/git/dcfrontend/node_modules/is-fullwidth-code-point │ └─ licenseFile: node_modules/is-fullwidth-code-point/license ├─ is-glob@4.0.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/micromatch/is-glob │ ├─ publisher: Jon Schlinkert │ ├─ url: https://github.com/jonschlinkert -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/is-glob +│ ├─ path: /home/zah/git/dcfrontend/node_modules/is-glob │ └─ licenseFile: node_modules/is-glob/LICENSE ├─ is-number@7.0.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/jonschlinkert/is-number │ ├─ publisher: Jon Schlinkert │ ├─ url: https://github.com/jonschlinkert -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/is-number +│ ├─ path: /home/zah/git/dcfrontend/node_modules/is-number │ └─ licenseFile: node_modules/is-number/LICENSE ├─ is-plain-object@2.0.4 │ ├─ licenses: MIT │ ├─ repository: https://github.com/jonschlinkert/is-plain-object │ ├─ publisher: Jon Schlinkert │ ├─ url: https://github.com/jonschlinkert -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/is-plain-object +│ ├─ path: /home/zah/git/dcfrontend/node_modules/is-plain-object │ └─ licenseFile: node_modules/is-plain-object/LICENSE ├─ is-stream@1.1.0 │ ├─ licenses: MIT @@ -1420,7 +1471,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/is-stream +│ ├─ path: /home/zah/git/dcfrontend/node_modules/is-stream │ └─ licenseFile: node_modules/is-stream/license ├─ is-typedarray@1.0.0 │ ├─ licenses: MIT @@ -1428,13 +1479,13 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Hugh Kennedy │ ├─ email: hughskennedy@gmail.com │ ├─ url: http://hughsk.io/ -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/is-typedarray +│ ├─ path: /home/zah/git/dcfrontend/node_modules/is-typedarray │ └─ licenseFile: node_modules/is-typedarray/LICENSE.md ├─ is-utf8@0.2.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/wayfind/is-utf8 │ ├─ publisher: wayfind -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/is-utf8 +│ ├─ path: /home/zah/git/dcfrontend/node_modules/is-utf8 │ └─ licenseFile: node_modules/is-utf8/LICENSE ├─ isarray@1.0.0 │ ├─ licenses: MIT @@ -1442,7 +1493,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Julian Gruber │ ├─ email: mail@juliangruber.com │ ├─ url: http://juliangruber.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/isarray +│ ├─ path: /home/zah/git/dcfrontend/node_modules/isarray │ └─ licenseFile: node_modules/isarray/README.md ├─ isexe@2.0.0 │ ├─ licenses: ISC @@ -1450,33 +1501,33 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Isaac Z. Schlueter │ ├─ email: i@izs.me │ ├─ url: http://blog.izs.me/ -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/isexe +│ ├─ path: /home/zah/git/dcfrontend/node_modules/isexe │ └─ licenseFile: node_modules/isexe/LICENSE ├─ isobject@3.0.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/jonschlinkert/isobject │ ├─ publisher: Jon Schlinkert │ ├─ url: https://github.com/jonschlinkert -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/isobject +│ ├─ path: /home/zah/git/dcfrontend/node_modules/isobject │ └─ licenseFile: node_modules/isobject/LICENSE ├─ isomorphic-fetch@2.2.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/matthew-andrews/isomorphic-fetch │ ├─ publisher: Matt Andrews │ ├─ email: matt@mattandre.ws -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/isomorphic-fetch +│ ├─ path: /home/zah/git/dcfrontend/node_modules/isomorphic-fetch │ └─ licenseFile: node_modules/isomorphic-fetch/LICENSE ├─ isstream@0.1.2 │ ├─ licenses: MIT │ ├─ repository: https://github.com/rvagg/isstream │ ├─ publisher: Rod Vagg │ ├─ email: rod@vagg.org -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/isstream +│ ├─ path: /home/zah/git/dcfrontend/node_modules/isstream │ └─ licenseFile: node_modules/isstream/LICENSE.md -├─ jest-worker@26.0.0 +├─ jest-worker@26.3.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/facebook/jest -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/jest-worker +│ ├─ path: /home/zah/git/dcfrontend/node_modules/jest-worker │ └─ licenseFile: node_modules/jest-worker/LICENSE ├─ jquery-datetimepicker@2.5.21 │ ├─ licenses: MIT @@ -1484,46 +1535,46 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Chupurnov │ ├─ email: chupurnov@gmail.com │ ├─ url: https://xdsoft.net/ -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/jquery-datetimepicker +│ ├─ path: /home/zah/git/dcfrontend/node_modules/jquery-datetimepicker │ └─ licenseFile: node_modules/jquery-datetimepicker/README.md ├─ jquery-mousewheel@3.1.13 │ ├─ licenses: MIT │ ├─ repository: https://github.com/jquery/jquery-mousewheel │ ├─ publisher: jQuery Foundation and other contributors │ ├─ url: https://github.com/jquery/jquery-mousewheel/blob/master/AUTHORS.txt -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/jquery-mousewheel +│ ├─ path: /home/zah/git/dcfrontend/node_modules/jquery-mousewheel │ └─ licenseFile: node_modules/jquery-mousewheel/LICENSE.txt ├─ jquery@3.5.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/jquery/jquery │ ├─ publisher: JS Foundation and other contributors │ ├─ url: https://github.com/jquery/jquery/blob/3.5.1/AUTHORS.txt -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/jquery +│ ├─ path: /home/zah/git/dcfrontend/node_modules/jquery │ └─ licenseFile: node_modules/jquery/LICENSE.txt ├─ js-base64@2.6.4 │ ├─ licenses: BSD-3-Clause │ ├─ repository: https://github.com/dankogai/js-base64 │ ├─ publisher: Dan Kogai -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/js-base64 +│ ├─ path: /home/zah/git/dcfrontend/node_modules/js-base64 │ └─ licenseFile: node_modules/js-base64/LICENSE.md ├─ jsbn@0.1.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/andyperlitch/jsbn │ ├─ publisher: Tom Wu -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/jsbn +│ ├─ path: /home/zah/git/dcfrontend/node_modules/jsbn │ └─ licenseFile: node_modules/jsbn/LICENSE ├─ json-parse-better-errors@1.0.2 │ ├─ licenses: MIT │ ├─ repository: https://github.com/zkat/json-parse-better-errors │ ├─ publisher: Kat Marchán │ ├─ email: kzm@zkat.tech -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/json-parse-better-errors +│ ├─ path: /home/zah/git/dcfrontend/node_modules/json-parse-better-errors │ └─ licenseFile: node_modules/json-parse-better-errors/LICENSE.md ├─ json-schema-traverse@0.4.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/epoberezkin/json-schema-traverse │ ├─ publisher: Evgeny Poberezkin -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/json-schema-traverse +│ ├─ path: /home/zah/git/dcfrontend/node_modules/json-schema-traverse │ └─ licenseFile: node_modules/json-schema-traverse/LICENSE ├─ json-schema@0.2.3 │ ├─ licenses @@ -1531,7 +1582,7 @@ Data Controller source licences are extracted automatically from our repo using │ │ └─ 1: BSD │ ├─ repository: https://github.com/kriszyp/json-schema │ ├─ publisher: Kris Zyp -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/json-schema +│ ├─ path: /home/zah/git/dcfrontend/node_modules/json-schema │ └─ licenseFile: node_modules/json-schema/README.md ├─ json-stringify-safe@5.0.1 │ ├─ licenses: ISC @@ -1539,41 +1590,52 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Isaac Z. Schlueter │ ├─ email: i@izs.me │ ├─ url: http://blog.izs.me -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/json-stringify-safe +│ ├─ path: /home/zah/git/dcfrontend/node_modules/json-stringify-safe │ └─ licenseFile: node_modules/json-stringify-safe/LICENSE ├─ json5@1.0.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/json5/json5 │ ├─ publisher: Aseem Kishore │ ├─ email: aseem.kishore@gmail.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/json5 +│ ├─ path: /home/zah/git/dcfrontend/node_modules/json5 │ └─ licenseFile: node_modules/json5/LICENSE.md ├─ jsonfile@4.0.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/jprichardson/node-jsonfile │ ├─ publisher: JP Richardson │ ├─ email: jprichardson@gmail.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/jsonfile +│ ├─ path: /home/zah/git/dcfrontend/node_modules/jsonfile │ └─ licenseFile: node_modules/jsonfile/LICENSE ├─ jsprim@1.4.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/joyent/node-jsprim -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/jsprim +│ ├─ path: /home/zah/git/dcfrontend/node_modules/jsprim │ └─ licenseFile: node_modules/jsprim/LICENSE -├─ jstat@1.9.3 +├─ jsrsasign@10.0.4 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/kjur/jsrsasign +│ ├─ publisher: Kenji Urushima +│ ├─ path: /home/zah/git/dcfrontend/node_modules/jsrsasign +│ └─ licenseFile: node_modules/jsrsasign/README.md +├─ jstat@1.9.4 │ ├─ licenses: MIT │ ├─ repository: https://github.com/jstat/jstat │ ├─ publisher: Trevor Norris │ ├─ email: trev.norris@gmail.com │ ├─ url: http://trevorjnorris.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/jstat +│ ├─ path: /home/zah/git/dcfrontend/node_modules/jstat │ └─ licenseFile: node_modules/jstat/LICENSE +├─ katex@0.12.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/KaTeX/KaTeX +│ ├─ path: /home/zah/git/dcfrontend/node_modules/katex +│ └─ licenseFile: node_modules/katex/LICENSE ├─ kind-of@6.0.3 │ ├─ licenses: MIT │ ├─ repository: https://github.com/jonschlinkert/kind-of │ ├─ publisher: Jon Schlinkert │ ├─ url: https://github.com/jonschlinkert -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/kind-of +│ ├─ path: /home/zah/git/dcfrontend/node_modules/kind-of │ └─ licenseFile: node_modules/kind-of/LICENSE ├─ load-json-file@1.1.0 │ ├─ licenses: MIT @@ -1581,26 +1643,26 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/load-json-file +│ ├─ path: /home/zah/git/dcfrontend/node_modules/load-json-file │ └─ licenseFile: node_modules/load-json-file/license ├─ loader-runner@2.4.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/webpack/loader-runner │ ├─ publisher: Tobias Koppers @sokra -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/loader-runner +│ ├─ path: /home/zah/git/dcfrontend/node_modules/loader-runner │ └─ licenseFile: node_modules/loader-runner/LICENSE ├─ loader-utils@1.4.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/webpack/loader-utils │ ├─ publisher: Tobias Koppers @sokra -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/loader-utils +│ ├─ path: /home/zah/git/dcfrontend/node_modules/loader-utils │ └─ licenseFile: node_modules/loader-utils/LICENSE ├─ lodash@4.17.20 │ ├─ licenses: MIT │ ├─ repository: https://github.com/lodash/lodash │ ├─ publisher: John-David Dalton │ ├─ email: john.david.dalton@gmail.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/lodash +│ ├─ path: /home/zah/git/dcfrontend/node_modules/lodash │ └─ licenseFile: node_modules/lodash/LICENSE ├─ loud-rejection@1.6.0 │ ├─ licenses: MIT @@ -1608,20 +1670,20 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/loud-rejection +│ ├─ path: /home/zah/git/dcfrontend/node_modules/loud-rejection │ └─ licenseFile: node_modules/loud-rejection/license ├─ lru-cache@4.1.5 │ ├─ licenses: ISC │ ├─ repository: https://github.com/isaacs/node-lru-cache │ ├─ publisher: Isaac Z. Schlueter │ ├─ email: i@izs.me -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/lru-cache +│ ├─ path: /home/zah/git/dcfrontend/node_modules/lru-cache │ └─ licenseFile: node_modules/lru-cache/LICENSE ├─ lunr@2.3.9 │ ├─ licenses: MIT │ ├─ repository: https://github.com/olivernn/lunr.js │ ├─ publisher: Oliver Nightingale -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/lunr +│ ├─ path: /home/zah/git/dcfrontend/node_modules/lunr │ └─ licenseFile: node_modules/lunr/LICENSE ├─ make-dir@2.1.0 │ ├─ licenses: MIT @@ -1629,7 +1691,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/make-dir +│ ├─ path: /home/zah/git/dcfrontend/node_modules/make-dir │ └─ licenseFile: node_modules/make-dir/license ├─ map-obj@1.0.1 │ ├─ licenses: MIT @@ -1637,13 +1699,13 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/map-obj +│ ├─ path: /home/zah/git/dcfrontend/node_modules/map-obj │ └─ licenseFile: node_modules/map-obj/license -├─ marked@1.0.0 +├─ marked@1.2.2 │ ├─ licenses: MIT │ ├─ repository: https://github.com/markedjs/marked │ ├─ publisher: Christopher Jeffrey -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/marked +│ ├─ path: /home/zah/git/dcfrontend/node_modules/marked │ └─ licenseFile: node_modules/marked/LICENSE.md ├─ md5.js@1.3.5 │ ├─ licenses: MIT @@ -1651,13 +1713,13 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Kirill Fomichev │ ├─ email: fanatid@ya.ru │ ├─ url: https://github.com/fanatid -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/md5.js +│ ├─ path: /home/zah/git/dcfrontend/node_modules/md5.js │ └─ licenseFile: node_modules/md5.js/LICENSE ├─ memory-fs@0.5.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/webpack/memory-fs │ ├─ publisher: Tobias Koppers @sokra -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/memory-fs +│ ├─ path: /home/zah/git/dcfrontend/node_modules/memory-fs │ └─ licenseFile: node_modules/memory-fs/LICENSE ├─ meow@3.7.0 │ ├─ licenses: MIT @@ -1665,50 +1727,50 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/meow +│ ├─ path: /home/zah/git/dcfrontend/node_modules/meow │ └─ licenseFile: node_modules/meow/license ├─ merge-stream@2.0.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/grncdr/merge-stream │ ├─ publisher: Stephen Sugden │ ├─ email: me@stephensugden.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/merge-stream +│ ├─ path: /home/zah/git/dcfrontend/node_modules/merge-stream │ └─ licenseFile: node_modules/merge-stream/LICENSE ├─ micromatch@4.0.2 │ ├─ licenses: MIT │ ├─ repository: https://github.com/micromatch/micromatch │ ├─ publisher: Jon Schlinkert │ ├─ url: https://github.com/jonschlinkert -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/micromatch +│ ├─ path: /home/zah/git/dcfrontend/node_modules/micromatch │ └─ licenseFile: node_modules/micromatch/LICENSE ├─ miller-rabin@4.0.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/indutny/miller-rabin │ ├─ publisher: Fedor Indutny │ ├─ email: fedor@indutny.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/miller-rabin +│ ├─ path: /home/zah/git/dcfrontend/node_modules/miller-rabin │ └─ licenseFile: node_modules/miller-rabin/README.md ├─ mime-db@1.44.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/jshttp/mime-db -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/mime-db +│ ├─ path: /home/zah/git/dcfrontend/node_modules/mime-db │ └─ licenseFile: node_modules/mime-db/LICENSE ├─ mime-types@2.1.27 │ ├─ licenses: MIT │ ├─ repository: https://github.com/jshttp/mime-types -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/mime-types +│ ├─ path: /home/zah/git/dcfrontend/node_modules/mime-types │ └─ licenseFile: node_modules/mime-types/LICENSE ├─ minimalistic-assert@1.0.1 │ ├─ licenses: ISC │ ├─ repository: https://github.com/calvinmetcalf/minimalistic-assert -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/minimalistic-assert +│ ├─ path: /home/zah/git/dcfrontend/node_modules/minimalistic-assert │ └─ licenseFile: node_modules/minimalistic-assert/LICENSE ├─ minimalistic-crypto-utils@1.0.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/indutny/minimalistic-crypto-utils │ ├─ publisher: Fedor Indutny │ ├─ email: fedor@indutny.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/minimalistic-crypto-utils +│ ├─ path: /home/zah/git/dcfrontend/node_modules/minimalistic-crypto-utils │ └─ licenseFile: node_modules/minimalistic-crypto-utils/README.md ├─ minimatch@3.0.4 │ ├─ licenses: ISC @@ -1716,7 +1778,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Isaac Z. Schlueter │ ├─ email: i@izs.me │ ├─ url: http://blog.izs.me -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/minimatch +│ ├─ path: /home/zah/git/dcfrontend/node_modules/minimatch │ └─ licenseFile: node_modules/minimatch/LICENSE ├─ minimist@1.2.5 │ ├─ licenses: MIT @@ -1724,14 +1786,14 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: James Halliday │ ├─ email: mail@substack.net │ ├─ url: http://substack.net -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/minimist +│ ├─ path: /home/zah/git/dcfrontend/node_modules/minimist │ └─ licenseFile: node_modules/minimist/LICENSE ├─ minipass-collect@1.0.2 │ ├─ licenses: ISC │ ├─ publisher: Isaac Z. Schlueter │ ├─ email: i@izs.me │ ├─ url: https://izs.me -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/minipass-collect +│ ├─ path: /home/zah/git/dcfrontend/node_modules/minipass-collect │ └─ licenseFile: node_modules/minipass-collect/LICENSE ├─ minipass-flush@1.0.5 │ ├─ licenses: ISC @@ -1739,14 +1801,14 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Isaac Z. Schlueter │ ├─ email: i@izs.me │ ├─ url: https://izs.me -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/minipass-flush +│ ├─ path: /home/zah/git/dcfrontend/node_modules/minipass-flush │ └─ licenseFile: node_modules/minipass-flush/LICENSE ├─ minipass-pipeline@1.2.4 │ ├─ licenses: ISC │ ├─ publisher: Isaac Z. Schlueter │ ├─ email: i@izs.me │ ├─ url: https://izs.me -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/minipass-pipeline +│ ├─ path: /home/zah/git/dcfrontend/node_modules/minipass-pipeline │ └─ licenseFile: node_modules/minipass-pipeline/LICENSE ├─ minipass@3.1.3 │ ├─ licenses: ISC @@ -1754,7 +1816,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Isaac Z. Schlueter │ ├─ email: i@izs.me │ ├─ url: http://blog.izs.me/ -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/minipass +│ ├─ path: /home/zah/git/dcfrontend/node_modules/minipass │ └─ licenseFile: node_modules/minipass/LICENSE ├─ mkdirp@0.5.5 │ ├─ licenses: MIT @@ -1762,55 +1824,54 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: James Halliday │ ├─ email: mail@substack.net │ ├─ url: http://substack.net -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/mkdirp +│ ├─ path: /home/zah/git/dcfrontend/node_modules/mkdirp │ └─ licenseFile: node_modules/mkdirp/LICENSE -├─ moment@2.27.0 +├─ moment@2.29.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/moment/moment │ ├─ publisher: Iskren Ivov Chernev │ ├─ email: iskren.chernev@gmail.com │ ├─ url: https://github.com/ichernev -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/moment +│ ├─ path: /home/zah/git/dcfrontend/node_modules/moment │ └─ licenseFile: node_modules/moment/LICENSE -├─ move-file@2.0.0 -│ ├─ licenses: MIT -│ ├─ repository: https://github.com/sindresorhus/move-file -│ ├─ publisher: Sindre Sorhus -│ ├─ email: sindresorhus@gmail.com -│ ├─ url: https://sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/move-file -│ └─ licenseFile: node_modules/move-file/license -├─ nan@2.14.1 +├─ nan@2.14.2 │ ├─ licenses: MIT │ ├─ repository: https://github.com/nodejs/nan -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/nan +│ ├─ path: /home/zah/git/dcfrontend/node_modules/nan │ └─ licenseFile: node_modules/nan/LICENSE.md ├─ neo-async@2.6.2 │ ├─ licenses: MIT │ ├─ repository: https://github.com/suguru03/neo-async -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/neo-async +│ ├─ path: /home/zah/git/dcfrontend/node_modules/neo-async │ └─ licenseFile: node_modules/neo-async/LICENSE ├─ ng2-file-upload@1.4.0 │ ├─ licenses: UNKNOWN -│ └─ path: /home/vrh/git/dcfrontend/node_modules/ng2-file-upload +│ └─ path: /home/zah/git/dcfrontend/node_modules/ng2-file-upload ├─ ngx-clipboard@12.3.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/maxisam/ngx-clipboard │ ├─ publisher: Sam Lin │ ├─ email: maxisam@gmail.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/ngx-clipboard +│ ├─ path: /home/zah/git/dcfrontend/node_modules/ngx-clipboard │ └─ licenseFile: node_modules/ngx-clipboard/README.md +├─ ngx-markdown@10.1.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jfcere/ngx-markdown +│ ├─ publisher: Jean-Francois Cere +│ ├─ email: jfcere@sherweb.com +│ ├─ path: /home/zah/git/dcfrontend/node_modules/ngx-markdown +│ └─ licenseFile: node_modules/ngx-markdown/LICENSE ├─ ngx-window-token@2.0.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/maxisam/ngx-window-token │ ├─ publisher: Sam Lin │ ├─ email: maxisam@gmail.com -│ └─ path: /home/vrh/git/dcfrontend/node_modules/ngx-window-token +│ └─ path: /home/zah/git/dcfrontend/node_modules/ngx-window-token ├─ node-fetch@1.7.3 │ ├─ licenses: MIT │ ├─ repository: https://github.com/bitinn/node-fetch │ ├─ publisher: David Frank -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/node-fetch +│ ├─ path: /home/zah/git/dcfrontend/node_modules/node-fetch │ └─ licenseFile: node_modules/node-fetch/LICENSE.md ├─ node-gyp@3.8.0 │ ├─ licenses: MIT @@ -1818,13 +1879,13 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Nathan Rajlich │ ├─ email: nathan@tootallnate.net │ ├─ url: http://tootallnate.net -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/node-gyp +│ ├─ path: /home/zah/git/dcfrontend/node_modules/node-gyp │ └─ licenseFile: node_modules/node-gyp/LICENSE ├─ node-libs-browser@2.2.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/webpack/node-libs-browser │ ├─ publisher: Tobias Koppers @sokra -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/node-libs-browser +│ ├─ path: /home/zah/git/dcfrontend/node_modules/node-libs-browser │ └─ licenseFile: node_modules/node-libs-browser/LICENSE ├─ node-sass@4.14.1 │ ├─ licenses: MIT @@ -1832,32 +1893,32 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Andrew Nesbitt │ ├─ email: andrewnez@gmail.com │ ├─ url: http://andrew.github.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/node-sass +│ ├─ path: /home/zah/git/dcfrontend/node_modules/node-sass │ └─ licenseFile: node_modules/node-sass/LICENSE ├─ nodejs@0.0.0 │ ├─ licenses: ISC -│ └─ path: /home/vrh/git/dcfrontend/node_modules/nodejs +│ └─ path: /home/zah/git/dcfrontend/node_modules/nodejs ├─ nopt@3.0.6 │ ├─ licenses: ISC │ ├─ repository: https://github.com/npm/nopt │ ├─ publisher: Isaac Z. Schlueter │ ├─ email: i@izs.me │ ├─ url: http://blog.izs.me/ -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/nopt +│ ├─ path: /home/zah/git/dcfrontend/node_modules/nopt │ └─ licenseFile: node_modules/nopt/LICENSE ├─ normalize-package-data@2.5.0 │ ├─ licenses: BSD-2-Clause │ ├─ repository: https://github.com/npm/normalize-package-data │ ├─ publisher: Meryn Stol │ ├─ email: merynstol@gmail.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/normalize-package-data +│ ├─ path: /home/zah/git/dcfrontend/node_modules/normalize-package-data │ └─ licenseFile: node_modules/normalize-package-data/LICENSE ├─ normalize-path@3.0.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/jonschlinkert/normalize-path │ ├─ publisher: Jon Schlinkert │ ├─ url: https://github.com/jonschlinkert -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/normalize-path +│ ├─ path: /home/zah/git/dcfrontend/node_modules/normalize-path │ └─ licenseFile: node_modules/normalize-path/LICENSE ├─ npmlog@4.1.2 │ ├─ licenses: ISC @@ -1865,7 +1926,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Isaac Z. Schlueter │ ├─ email: i@izs.me │ ├─ url: http://blog.izs.me/ -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/npmlog +│ ├─ path: /home/zah/git/dcfrontend/node_modules/npmlog │ └─ licenseFile: node_modules/npmlog/LICENSE ├─ number-is-nan@1.0.1 │ ├─ licenses: MIT @@ -1873,15 +1934,15 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/number-is-nan +│ ├─ path: /home/zah/git/dcfrontend/node_modules/number-is-nan │ └─ licenseFile: node_modules/number-is-nan/license -├─ numbro@2.3.1 +├─ numbro@2.3.2 │ ├─ licenses: MIT │ ├─ repository: https://github.com/BenjaminVanRyseghem/numbro │ ├─ publisher: Benjamin Van Ryseghem │ ├─ email: benjamin@vanryseghem.com │ ├─ url: https://benjamin.vanryseghem.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/numbro +│ ├─ path: /home/zah/git/dcfrontend/node_modules/numbro │ └─ licenseFile: node_modules/numbro/LICENSE ├─ oauth-sign@0.9.0 │ ├─ licenses: Apache-2.0 @@ -1889,7 +1950,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Mikeal Rogers │ ├─ email: mikeal.rogers@gmail.com │ ├─ url: http://www.futurealoof.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/oauth-sign +│ ├─ path: /home/zah/git/dcfrontend/node_modules/oauth-sign │ └─ licenseFile: node_modules/oauth-sign/LICENSE ├─ object-assign@4.1.1 │ ├─ licenses: MIT @@ -1897,7 +1958,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/object-assign +│ ├─ path: /home/zah/git/dcfrontend/node_modules/object-assign │ └─ licenseFile: node_modules/object-assign/license ├─ once@1.4.0 │ ├─ licenses: ISC @@ -1905,14 +1966,14 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Isaac Z. Schlueter │ ├─ email: i@izs.me │ ├─ url: http://blog.izs.me/ -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/once +│ ├─ path: /home/zah/git/dcfrontend/node_modules/once │ └─ licenseFile: node_modules/once/LICENSE ├─ os-browserify@0.3.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/CoderPuppy/os-browserify │ ├─ publisher: CoderPuppy │ ├─ email: coderpup@gmail.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/os-browserify +│ ├─ path: /home/zah/git/dcfrontend/node_modules/os-browserify │ └─ licenseFile: node_modules/os-browserify/LICENSE ├─ os-homedir@1.0.2 │ ├─ licenses: MIT @@ -1920,7 +1981,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/os-homedir +│ ├─ path: /home/zah/git/dcfrontend/node_modules/os-homedir │ └─ licenseFile: node_modules/os-homedir/license ├─ os-tmpdir@1.0.2 │ ├─ licenses: MIT @@ -1928,7 +1989,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/os-tmpdir +│ ├─ path: /home/zah/git/dcfrontend/node_modules/os-tmpdir │ └─ licenseFile: node_modules/os-tmpdir/license ├─ osenv@0.1.5 │ ├─ licenses: ISC @@ -1936,7 +1997,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Isaac Z. Schlueter │ ├─ email: i@izs.me │ ├─ url: http://blog.izs.me/ -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/osenv +│ ├─ path: /home/zah/git/dcfrontend/node_modules/osenv │ └─ licenseFile: node_modules/osenv/LICENSE ├─ p-limit@2.3.0 │ ├─ licenses: MIT @@ -1944,7 +2005,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/p-limit +│ ├─ path: /home/zah/git/dcfrontend/node_modules/p-limit │ └─ licenseFile: node_modules/p-limit/license ├─ p-map@4.0.0 │ ├─ licenses: MIT @@ -1952,7 +2013,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: https://sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/p-map +│ ├─ path: /home/zah/git/dcfrontend/node_modules/p-map │ └─ licenseFile: node_modules/p-map/license ├─ p-try@2.2.0 │ ├─ licenses: MIT @@ -1960,17 +2021,17 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/p-try +│ ├─ path: /home/zah/git/dcfrontend/node_modules/p-try │ └─ licenseFile: node_modules/p-try/license ├─ pako@1.0.11 │ ├─ licenses: (MIT AND Zlib) │ ├─ repository: https://github.com/nodeca/pako -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/pako +│ ├─ path: /home/zah/git/dcfrontend/node_modules/pako │ └─ licenseFile: node_modules/pako/LICENSE ├─ parse-asn1@5.1.6 │ ├─ licenses: ISC │ ├─ repository: https://github.com/crypto-browserify/parse-asn1 -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/parse-asn1 +│ ├─ path: /home/zah/git/dcfrontend/node_modules/parse-asn1 │ └─ licenseFile: node_modules/parse-asn1/LICENSE ├─ parse-json@2.2.0 │ ├─ licenses: MIT @@ -1978,7 +2039,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/parse-json +│ ├─ path: /home/zah/git/dcfrontend/node_modules/parse-json │ └─ licenseFile: node_modules/parse-json/license ├─ path-browserify@0.0.1 │ ├─ licenses: MIT @@ -1986,7 +2047,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: James Halliday │ ├─ email: mail@substack.net │ ├─ url: http://substack.net -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/path-browserify +│ ├─ path: /home/zah/git/dcfrontend/node_modules/path-browserify │ └─ licenseFile: node_modules/path-browserify/LICENSE ├─ path-exists@2.1.0 │ ├─ licenses: MIT @@ -1994,7 +2055,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/path-exists +│ ├─ path: /home/zah/git/dcfrontend/node_modules/path-exists │ └─ licenseFile: node_modules/path-exists/license ├─ path-is-absolute@1.0.1 │ ├─ licenses: MIT @@ -2002,14 +2063,14 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/path-is-absolute +│ ├─ path: /home/zah/git/dcfrontend/node_modules/path-is-absolute │ └─ licenseFile: node_modules/path-is-absolute/license ├─ path-parse@1.0.6 │ ├─ licenses: MIT │ ├─ repository: https://github.com/jbgutierrez/path-parse │ ├─ publisher: Javier Blanco │ ├─ email: http://jbgutierrez.info -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/path-parse +│ ├─ path: /home/zah/git/dcfrontend/node_modules/path-parse │ └─ licenseFile: node_modules/path-parse/LICENSE ├─ path-type@1.1.0 │ ├─ licenses: MIT @@ -2017,34 +2078,34 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/path-type +│ ├─ path: /home/zah/git/dcfrontend/node_modules/path-type │ └─ licenseFile: node_modules/path-type/license ├─ pbkdf2@3.1.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/crypto-browserify/pbkdf2 │ ├─ publisher: Daniel Cousens -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/pbkdf2 +│ ├─ path: /home/zah/git/dcfrontend/node_modules/pbkdf2 │ └─ licenseFile: node_modules/pbkdf2/LICENSE ├─ performance-now@2.1.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/braveg1rl/performance-now │ ├─ publisher: Braveg1rl │ ├─ email: braveg1rl@outlook.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/performance-now +│ ├─ path: /home/zah/git/dcfrontend/node_modules/performance-now │ └─ licenseFile: node_modules/performance-now/license.txt ├─ php-date-formatter@1.3.6 │ ├─ licenses: BSD-3-Clause │ ├─ repository: https://github.com/kartik-v/php-date-formatter │ ├─ publisher: Kartik Visweswaran │ ├─ email: kartikv2@gmail.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/php-date-formatter +│ ├─ path: /home/zah/git/dcfrontend/node_modules/php-date-formatter │ └─ licenseFile: node_modules/php-date-formatter/LICENSE.md ├─ picomatch@2.2.2 │ ├─ licenses: MIT │ ├─ repository: https://github.com/micromatch/picomatch │ ├─ publisher: Jon Schlinkert │ ├─ url: https://github.com/jonschlinkert -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/picomatch +│ ├─ path: /home/zah/git/dcfrontend/node_modules/picomatch │ └─ licenseFile: node_modules/picomatch/LICENSE ├─ pify@2.3.0 │ ├─ licenses: MIT @@ -2052,12 +2113,12 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/pify +│ ├─ path: /home/zah/git/dcfrontend/node_modules/pify │ └─ licenseFile: node_modules/pify/license ├─ pikaday@1.8.0 │ ├─ licenses: (0BSD OR MIT) │ ├─ repository: https://github.com/Pikaday/Pikaday -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/pikaday +│ ├─ path: /home/zah/git/dcfrontend/node_modules/pikaday │ └─ licenseFile: node_modules/pikaday/LICENSE ├─ pinkie-promise@2.0.1 │ ├─ licenses: MIT @@ -2065,7 +2126,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Vsevolod Strukchinsky │ ├─ email: floatdrop@gmail.com │ ├─ url: github.com/floatdrop -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/pinkie-promise +│ ├─ path: /home/zah/git/dcfrontend/node_modules/pinkie-promise │ └─ licenseFile: node_modules/pinkie-promise/license ├─ pinkie@2.0.4 │ ├─ licenses: MIT @@ -2073,7 +2134,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Vsevolod Strukchinsky │ ├─ email: floatdrop@gmail.com │ ├─ url: github.com/floatdrop -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/pinkie +│ ├─ path: /home/zah/git/dcfrontend/node_modules/pinkie │ └─ licenseFile: node_modules/pinkie/license ├─ pkg-dir@3.0.0 │ ├─ licenses: MIT @@ -2081,32 +2142,32 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/pkg-dir +│ ├─ path: /home/zah/git/dcfrontend/node_modules/pkg-dir │ └─ licenseFile: node_modules/pkg-dir/license -├─ prismjs@1.21.0 +├─ prismjs@1.22.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/PrismJS/prism │ ├─ publisher: Lea Verou -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/prismjs +│ ├─ path: /home/zah/git/dcfrontend/node_modules/prismjs │ └─ licenseFile: node_modules/prismjs/LICENSE ├─ process-nextick-args@2.0.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/calvinmetcalf/process-nextick-args -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/process-nextick-args +│ ├─ path: /home/zah/git/dcfrontend/node_modules/process-nextick-args │ └─ licenseFile: node_modules/process-nextick-args/license.md ├─ process@0.11.10 │ ├─ licenses: MIT │ ├─ repository: https://github.com/shtylman/node-process │ ├─ publisher: Roman Shtylman │ ├─ email: shtylman@gmail.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/process +│ ├─ path: /home/zah/git/dcfrontend/node_modules/process │ └─ licenseFile: node_modules/process/LICENSE ├─ progress@2.0.3 │ ├─ licenses: MIT │ ├─ repository: https://github.com/visionmedia/node-progress │ ├─ publisher: TJ Holowaychuk │ ├─ email: tj@vision-media.ca -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/progress +│ ├─ path: /home/zah/git/dcfrontend/node_modules/progress │ └─ licenseFile: node_modules/progress/LICENSE ├─ promise-inflight@1.0.1 │ ├─ licenses: ISC @@ -2114,7 +2175,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Rebecca Turner │ ├─ email: me@re-becca.org │ ├─ url: http://re-becca.org/ -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/promise-inflight +│ ├─ path: /home/zah/git/dcfrontend/node_modules/promise-inflight │ └─ licenseFile: node_modules/promise-inflight/LICENSE ├─ prr@1.0.1 │ ├─ licenses: MIT @@ -2122,7 +2183,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Rod Vagg │ ├─ email: rod@vagg.org │ ├─ url: https://github.com/rvagg -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/prr +│ ├─ path: /home/zah/git/dcfrontend/node_modules/prr │ └─ licenseFile: node_modules/prr/LICENSE.md ├─ pseudomap@1.0.2 │ ├─ licenses: ISC @@ -2130,7 +2191,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Isaac Z. Schlueter │ ├─ email: i@izs.me │ ├─ url: http://blog.izs.me/ -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/pseudomap +│ ├─ path: /home/zah/git/dcfrontend/node_modules/pseudomap │ └─ licenseFile: node_modules/pseudomap/LICENSE ├─ psl@1.8.0 │ ├─ licenses: MIT @@ -2138,49 +2199,49 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Lupo Montero │ ├─ email: lupomontero@gmail.com │ ├─ url: https://lupomontero.com/ -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/psl +│ ├─ path: /home/zah/git/dcfrontend/node_modules/psl │ └─ licenseFile: node_modules/psl/LICENSE ├─ public-encrypt@4.0.3 │ ├─ licenses: MIT │ ├─ repository: https://github.com/crypto-browserify/publicEncrypt │ ├─ publisher: Calvin Metcalf -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/public-encrypt +│ ├─ path: /home/zah/git/dcfrontend/node_modules/public-encrypt │ └─ licenseFile: node_modules/public-encrypt/LICENSE -├─ punycode@1.3.2 +├─ punycode@2.1.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/bestiejs/punycode.js │ ├─ publisher: Mathias Bynens │ ├─ url: https://mathiasbynens.be/ -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/punycode +│ ├─ path: /home/zah/git/dcfrontend/node_modules/punycode │ └─ licenseFile: node_modules/punycode/LICENSE-MIT.txt ├─ qs@6.5.2 │ ├─ licenses: BSD-3-Clause │ ├─ repository: https://github.com/ljharb/qs -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/qs +│ ├─ path: /home/zah/git/dcfrontend/node_modules/qs │ └─ licenseFile: node_modules/qs/LICENSE ├─ querystring-es3@0.2.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/mike-spainhower/querystring │ ├─ publisher: Irakli Gozalishvili │ ├─ email: rfobic@gmail.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/querystring-es3 +│ ├─ path: /home/zah/git/dcfrontend/node_modules/querystring-es3 │ └─ licenseFile: node_modules/querystring-es3/License.md ├─ querystring@0.2.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/Gozala/querystring │ ├─ publisher: Irakli Gozalishvili │ ├─ email: rfobic@gmail.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/querystring +│ ├─ path: /home/zah/git/dcfrontend/node_modules/querystring │ └─ licenseFile: node_modules/querystring/License.md ├─ randombytes@2.1.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/crypto-browserify/randombytes -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/randombytes +│ ├─ path: /home/zah/git/dcfrontend/node_modules/randombytes │ └─ licenseFile: node_modules/randombytes/LICENSE ├─ randomfill@1.0.4 │ ├─ licenses: MIT │ ├─ repository: https://github.com/crypto-browserify/randomfill -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/randomfill +│ ├─ path: /home/zah/git/dcfrontend/node_modules/randomfill │ └─ licenseFile: node_modules/randomfill/LICENSE ├─ read-pkg-up@1.0.1 │ ├─ licenses: MIT @@ -2188,7 +2249,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/read-pkg-up +│ ├─ path: /home/zah/git/dcfrontend/node_modules/read-pkg-up │ └─ licenseFile: node_modules/read-pkg-up/license ├─ read-pkg@1.1.0 │ ├─ licenses: MIT @@ -2196,27 +2257,27 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/read-pkg +│ ├─ path: /home/zah/git/dcfrontend/node_modules/read-pkg │ └─ licenseFile: node_modules/read-pkg/license ├─ readable-stream@2.3.7 │ ├─ licenses: MIT │ ├─ repository: https://github.com/nodejs/readable-stream -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/readable-stream +│ ├─ path: /home/zah/git/dcfrontend/node_modules/readable-stream │ └─ licenseFile: node_modules/readable-stream/LICENSE -├─ readdirp@3.4.0 +├─ readdirp@3.5.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/paulmillr/readdirp │ ├─ publisher: Thorsten Lorenz │ ├─ email: thlorenz@gmx.de │ ├─ url: thlorenz.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/readdirp +│ ├─ path: /home/zah/git/dcfrontend/node_modules/readdirp │ └─ licenseFile: node_modules/readdirp/LICENSE ├─ rechoir@0.6.2 │ ├─ licenses: MIT │ ├─ repository: https://github.com/tkellen/node-rechoir │ ├─ publisher: Tyler Kellen │ ├─ url: http://goingslowly.com/ -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/rechoir +│ ├─ path: /home/zah/git/dcfrontend/node_modules/rechoir │ └─ licenseFile: node_modules/rechoir/LICENSE ├─ redent@1.0.0 │ ├─ licenses: MIT @@ -2224,7 +2285,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/redent +│ ├─ path: /home/zah/git/dcfrontend/node_modules/redent │ └─ licenseFile: node_modules/redent/license ├─ repeating@2.0.1 │ ├─ licenses: MIT @@ -2232,14 +2293,14 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/repeating +│ ├─ path: /home/zah/git/dcfrontend/node_modules/repeating │ └─ licenseFile: node_modules/repeating/license ├─ request@2.88.2 │ ├─ licenses: Apache-2.0 │ ├─ repository: https://github.com/request/request │ ├─ publisher: Mikeal Rogers │ ├─ email: mikeal.rogers@gmail.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/request +│ ├─ path: /home/zah/git/dcfrontend/node_modules/request │ └─ licenseFile: node_modules/request/LICENSE ├─ require-directory@2.1.1 │ ├─ licenses: MIT @@ -2247,22 +2308,22 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Troy Goode │ ├─ email: troygoode@gmail.com │ ├─ url: http://github.com/troygoode/ -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/require-directory +│ ├─ path: /home/zah/git/dcfrontend/node_modules/require-directory │ └─ licenseFile: node_modules/require-directory/LICENSE ├─ require-main-filename@2.0.0 │ ├─ licenses: ISC │ ├─ repository: https://github.com/yargs/require-main-filename │ ├─ publisher: Ben Coe │ ├─ email: ben@npmjs.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/require-main-filename +│ ├─ path: /home/zah/git/dcfrontend/node_modules/require-main-filename │ └─ licenseFile: node_modules/require-main-filename/LICENSE.txt -├─ resolve@1.17.0 +├─ resolve@1.18.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/browserify/resolve │ ├─ publisher: James Halliday │ ├─ email: mail@substack.net │ ├─ url: http://substack.net -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/resolve +│ ├─ path: /home/zah/git/dcfrontend/node_modules/resolve │ └─ licenseFile: node_modules/resolve/LICENSE ├─ rimraf@2.7.1 │ ├─ licenses: ISC @@ -2270,23 +2331,23 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Isaac Z. Schlueter │ ├─ email: i@izs.me │ ├─ url: http://blog.izs.me/ -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/rimraf +│ ├─ path: /home/zah/git/dcfrontend/node_modules/rimraf │ └─ licenseFile: node_modules/rimraf/LICENSE ├─ ripemd160@2.0.2 │ ├─ licenses: MIT │ ├─ repository: https://github.com/crypto-browserify/ripemd160 -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/ripemd160 +│ ├─ path: /home/zah/git/dcfrontend/node_modules/ripemd160 │ └─ licenseFile: node_modules/ripemd160/LICENSE ├─ rxjs-compat@6.6.3 │ ├─ licenses: Apache-2.0 -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/rxjs-compat +│ ├─ path: /home/zah/git/dcfrontend/node_modules/rxjs-compat │ └─ licenseFile: node_modules/rxjs-compat/LICENSE.txt ├─ rxjs@6.6.3 │ ├─ licenses: Apache-2.0 │ ├─ repository: https://github.com/reactivex/rxjs │ ├─ publisher: Ben Lesh │ ├─ email: ben@benlesh.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/rxjs +│ ├─ path: /home/zah/git/dcfrontend/node_modules/rxjs │ └─ licenseFile: node_modules/rxjs/LICENSE.txt ├─ safe-buffer@5.1.2 │ ├─ licenses: MIT @@ -2294,7 +2355,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Feross Aboukhadijeh │ ├─ email: feross@feross.org │ ├─ url: http://feross.org -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/safe-buffer +│ ├─ path: /home/zah/git/dcfrontend/node_modules/safe-buffer │ └─ licenseFile: node_modules/safe-buffer/LICENSE ├─ safer-buffer@2.1.2 │ ├─ licenses: MIT @@ -2302,68 +2363,68 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Nikita Skovoroda │ ├─ email: chalkerx@gmail.com │ ├─ url: https://github.com/ChALkeR -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/safer-buffer +│ ├─ path: /home/zah/git/dcfrontend/node_modules/safer-buffer │ └─ licenseFile: node_modules/safer-buffer/LICENSE ├─ sass-graph@2.2.5 │ ├─ licenses: MIT │ ├─ repository: https://github.com/xzyfer/sass-graph │ ├─ publisher: xzyfer -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/sass-graph +│ ├─ path: /home/zah/git/dcfrontend/node_modules/sass-graph │ └─ licenseFile: node_modules/sass-graph/readme.md ├─ sass-loader@7.3.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/webpack-contrib/sass-loader │ ├─ publisher: J. Tangelder -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/sass-loader +│ ├─ path: /home/zah/git/dcfrontend/node_modules/sass-loader │ └─ licenseFile: node_modules/sass-loader/LICENSE ├─ save-svg-as-png@1.4.17 │ ├─ licenses: MIT │ ├─ repository: https://github.com/exupero/saveSvgAsPng │ ├─ publisher: Eric Shull -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/save-svg-as-png +│ ├─ path: /home/zah/git/dcfrontend/node_modules/save-svg-as-png │ └─ licenseFile: node_modules/save-svg-as-png/LICENSE ├─ schema-utils@2.7.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/webpack/schema-utils │ ├─ publisher: webpack Contrib │ ├─ url: https://github.com/webpack-contrib -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/schema-utils +│ ├─ path: /home/zah/git/dcfrontend/node_modules/schema-utils │ └─ licenseFile: node_modules/schema-utils/LICENSE ├─ scss-tokenizer@0.2.3 │ ├─ licenses: MIT │ ├─ repository: https://github.com/sasstools/scss-tokenizer │ ├─ publisher: xzyfer -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/scss-tokenizer +│ ├─ path: /home/zah/git/dcfrontend/node_modules/scss-tokenizer │ └─ licenseFile: node_modules/scss-tokenizer/LICENSE ├─ select@1.1.2 │ ├─ licenses: MIT │ ├─ repository: https://github.com/zenorocha/select -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/select +│ ├─ path: /home/zah/git/dcfrontend/node_modules/select │ └─ licenseFile: node_modules/select/readme.md ├─ semver@5.7.1 │ ├─ licenses: ISC │ ├─ repository: https://github.com/npm/node-semver -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/semver +│ ├─ path: /home/zah/git/dcfrontend/node_modules/semver │ └─ licenseFile: node_modules/semver/LICENSE ├─ serialize-javascript@4.0.0 │ ├─ licenses: BSD-3-Clause │ ├─ repository: https://github.com/yahoo/serialize-javascript │ ├─ publisher: Eric Ferraiuolo │ ├─ email: edf@ericf.me -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/serialize-javascript +│ ├─ path: /home/zah/git/dcfrontend/node_modules/serialize-javascript │ └─ licenseFile: node_modules/serialize-javascript/LICENSE ├─ set-blocking@2.0.0 │ ├─ licenses: ISC │ ├─ repository: https://github.com/yargs/set-blocking │ ├─ publisher: Ben Coe │ ├─ email: ben@npmjs.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/set-blocking +│ ├─ path: /home/zah/git/dcfrontend/node_modules/set-blocking │ └─ licenseFile: node_modules/set-blocking/LICENSE.txt ├─ setimmediate@1.0.5 │ ├─ licenses: MIT │ ├─ repository: https://github.com/YuzuJS/setImmediate │ ├─ publisher: YuzuJS -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/setimmediate +│ ├─ path: /home/zah/git/dcfrontend/node_modules/setimmediate │ └─ licenseFile: node_modules/setimmediate/LICENSE.txt ├─ sha.js@2.4.11 │ ├─ licenses: (MIT AND BSD-3-Clause) @@ -2371,48 +2432,48 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Dominic Tarr │ ├─ email: dominic.tarr@gmail.com │ ├─ url: dominictarr.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/sha.js +│ ├─ path: /home/zah/git/dcfrontend/node_modules/sha.js │ └─ licenseFile: node_modules/sha.js/LICENSE ├─ shallow-clone@3.0.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/jonschlinkert/shallow-clone │ ├─ publisher: Jon Schlinkert │ ├─ url: https://github.com/jonschlinkert -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/shallow-clone +│ ├─ path: /home/zah/git/dcfrontend/node_modules/shallow-clone │ └─ licenseFile: node_modules/shallow-clone/LICENSE ├─ shelljs@0.8.4 │ ├─ licenses: BSD-3-Clause │ ├─ repository: https://github.com/shelljs/shelljs -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/shelljs +│ ├─ path: /home/zah/git/dcfrontend/node_modules/shelljs │ └─ licenseFile: node_modules/shelljs/LICENSE ├─ signal-exit@3.0.3 │ ├─ licenses: ISC │ ├─ repository: https://github.com/tapjs/signal-exit │ ├─ publisher: Ben Coe │ ├─ email: ben@npmjs.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/signal-exit +│ ├─ path: /home/zah/git/dcfrontend/node_modules/signal-exit │ └─ licenseFile: node_modules/signal-exit/LICENSE.txt ├─ sl-blip@1.0.0 │ ├─ licenses: UNKNOWN │ ├─ repository: none -│ └─ path: /home/vrh/git/dcfrontend/node_modules/sl-blip +│ └─ path: /home/zah/git/dcfrontend/node_modules/sl-blip ├─ source-list-map@2.0.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/webpack/source-list-map │ ├─ publisher: Tobias Koppers @sokra -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/source-list-map +│ ├─ path: /home/zah/git/dcfrontend/node_modules/source-list-map │ └─ licenseFile: node_modules/source-list-map/LICENSE ├─ source-map-support@0.5.19 │ ├─ licenses: MIT │ ├─ repository: https://github.com/evanw/node-source-map-support -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/source-map-support +│ ├─ path: /home/zah/git/dcfrontend/node_modules/source-map-support │ └─ licenseFile: node_modules/source-map-support/LICENSE.md ├─ source-map@0.4.4 │ ├─ licenses: BSD-3-Clause │ ├─ repository: https://github.com/mozilla/source-map │ ├─ publisher: Nick Fitzgerald │ ├─ email: nfitzgerald@mozilla.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/source-map +│ ├─ path: /home/zah/git/dcfrontend/node_modules/source-map │ └─ licenseFile: node_modules/source-map/README.md ├─ spdx-correct@3.1.1 │ ├─ licenses: Apache-2.0 @@ -2420,13 +2481,13 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Kyle E. Mitchell │ ├─ email: kyle@kemitchell.com │ ├─ url: https://kemitchell.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/spdx-correct +│ ├─ path: /home/zah/git/dcfrontend/node_modules/spdx-correct │ └─ licenseFile: node_modules/spdx-correct/LICENSE ├─ spdx-exceptions@2.3.0 │ ├─ licenses: CC-BY-3.0 │ ├─ repository: https://github.com/kemitchell/spdx-exceptions.json │ ├─ publisher: The Linux Foundation -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/spdx-exceptions +│ ├─ path: /home/zah/git/dcfrontend/node_modules/spdx-exceptions │ └─ licenseFile: node_modules/spdx-exceptions/README.md ├─ spdx-expression-parse@3.0.1 │ ├─ licenses: MIT @@ -2434,32 +2495,32 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Kyle E. Mitchell │ ├─ email: kyle@kemitchell.com │ ├─ url: https://kemitchell.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/spdx-expression-parse +│ ├─ path: /home/zah/git/dcfrontend/node_modules/spdx-expression-parse │ └─ licenseFile: node_modules/spdx-expression-parse/LICENSE -├─ spdx-license-ids@3.0.5 +├─ spdx-license-ids@3.0.6 │ ├─ licenses: CC0-1.0 -│ ├─ repository: https://github.com/shinnn/spdx-license-ids +│ ├─ repository: https://github.com/jslicense/spdx-license-ids │ ├─ publisher: Shinnosuke Watanabe │ ├─ url: https://github.com/shinnn -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/spdx-license-ids +│ ├─ path: /home/zah/git/dcfrontend/node_modules/spdx-license-ids │ └─ licenseFile: node_modules/spdx-license-ids/README.md ├─ sshpk@1.16.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/joyent/node-sshpk │ ├─ publisher: Joyent, Inc -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/sshpk +│ ├─ path: /home/zah/git/dcfrontend/node_modules/sshpk │ └─ licenseFile: node_modules/sshpk/LICENSE ├─ ssri@8.0.0 │ ├─ licenses: ISC │ ├─ repository: https://github.com/npm/ssri │ ├─ publisher: Kat Marchán │ ├─ email: kzm@sykosomatic.org -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/ssri +│ ├─ path: /home/zah/git/dcfrontend/node_modules/ssri │ └─ licenseFile: node_modules/ssri/LICENSE.md ├─ stdout-stream@1.4.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/mafintosh/stdout-stream -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/stdout-stream +│ ├─ path: /home/zah/git/dcfrontend/node_modules/stdout-stream │ └─ licenseFile: node_modules/stdout-stream/LICENSE ├─ stream-browserify@2.0.2 │ ├─ licenses: MIT @@ -2467,13 +2528,13 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: James Halliday │ ├─ email: mail@substack.net │ ├─ url: http://substack.net -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/stream-browserify +│ ├─ path: /home/zah/git/dcfrontend/node_modules/stream-browserify │ └─ licenseFile: node_modules/stream-browserify/LICENSE ├─ stream-http@2.8.3 │ ├─ licenses: MIT │ ├─ repository: https://github.com/jhiesey/stream-http │ ├─ publisher: John Hiesey -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/stream-http +│ ├─ path: /home/zah/git/dcfrontend/node_modules/stream-http │ └─ licenseFile: node_modules/stream-http/LICENSE ├─ string-width@1.0.2 │ ├─ licenses: MIT @@ -2481,12 +2542,12 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/string-width +│ ├─ path: /home/zah/git/dcfrontend/node_modules/string-width │ └─ licenseFile: node_modules/string-width/license ├─ string_decoder@1.1.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/nodejs/string_decoder -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/string_decoder +│ ├─ path: /home/zah/git/dcfrontend/node_modules/string_decoder │ └─ licenseFile: node_modules/string_decoder/LICENSE ├─ strip-ansi@3.0.1 │ ├─ licenses: MIT @@ -2494,7 +2555,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/strip-ansi +│ ├─ path: /home/zah/git/dcfrontend/node_modules/strip-ansi │ └─ licenseFile: node_modules/strip-ansi/license ├─ strip-bom@2.0.0 │ ├─ licenses: MIT @@ -2502,7 +2563,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/strip-bom +│ ├─ path: /home/zah/git/dcfrontend/node_modules/strip-bom │ └─ licenseFile: node_modules/strip-bom/license ├─ strip-indent@1.0.1 │ ├─ licenses: MIT @@ -2510,7 +2571,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: http://sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/strip-indent +│ ├─ path: /home/zah/git/dcfrontend/node_modules/strip-indent │ └─ licenseFile: node_modules/strip-indent/license ├─ supports-color@2.0.0 │ ├─ licenses: MIT @@ -2518,13 +2579,13 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/supports-color +│ ├─ path: /home/zah/git/dcfrontend/node_modules/supports-color │ └─ licenseFile: node_modules/supports-color/license ├─ tapable@1.1.3 │ ├─ licenses: MIT │ ├─ repository: https://github.com/webpack/tapable │ ├─ publisher: Tobias Koppers @sokra -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/tapable +│ ├─ path: /home/zah/git/dcfrontend/node_modules/tapable │ └─ licenseFile: node_modules/tapable/LICENSE ├─ tar@2.2.2 │ ├─ licenses: ISC @@ -2532,55 +2593,55 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Isaac Z. Schlueter │ ├─ email: i@izs.me │ ├─ url: http://blog.izs.me/ -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/tar +│ ├─ path: /home/zah/git/dcfrontend/node_modules/tar │ └─ licenseFile: node_modules/tar/LICENSE -├─ terser-webpack-plugin@3.0.1 +├─ terser-webpack-plugin@4.1.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/webpack-contrib/terser-webpack-plugin │ ├─ publisher: webpack Contrib Team -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/terser-webpack-plugin +│ ├─ path: /home/zah/git/dcfrontend/node_modules/terser-webpack-plugin │ └─ licenseFile: node_modules/terser-webpack-plugin/LICENSE -├─ terser@4.7.0 +├─ terser@5.3.0 │ ├─ licenses: BSD-2-Clause │ ├─ repository: https://github.com/terser/terser │ ├─ publisher: Mihai Bazon │ ├─ email: mihai.bazon@gmail.com │ ├─ url: http://lisperator.net/ -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/terser +│ ├─ path: /home/zah/git/dcfrontend/node_modules/terser │ └─ licenseFile: node_modules/terser/LICENSE -├─ timers-browserify@2.0.11 +├─ timers-browserify@2.0.12 │ ├─ licenses: MIT │ ├─ repository: https://github.com/jryans/timers-browserify │ ├─ publisher: J. Ryan Stinnett │ ├─ email: jryans@gmail.com -│ ├─ url: http://convolv.es/ -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/timers-browserify +│ ├─ url: https://convolv.es/ +│ ├─ path: /home/zah/git/dcfrontend/node_modules/timers-browserify │ └─ licenseFile: node_modules/timers-browserify/LICENSE.md ├─ tiny-emitter@2.1.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/scottcorgan/tiny-emitter │ ├─ publisher: Scott Corgan -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/tiny-emitter +│ ├─ path: /home/zah/git/dcfrontend/node_modules/tiny-emitter │ └─ licenseFile: node_modules/tiny-emitter/LICENSE ├─ to-arraybuffer@1.0.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/jhiesey/to-arraybuffer │ ├─ publisher: John Hiesey -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/to-arraybuffer +│ ├─ path: /home/zah/git/dcfrontend/node_modules/to-arraybuffer │ └─ licenseFile: node_modules/to-arraybuffer/LICENSE ├─ to-regex-range@5.0.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/micromatch/to-regex-range │ ├─ publisher: Jon Schlinkert │ ├─ url: https://github.com/jonschlinkert -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/to-regex-range +│ ├─ path: /home/zah/git/dcfrontend/node_modules/to-regex-range │ └─ licenseFile: node_modules/to-regex-range/LICENSE ├─ tough-cookie@2.5.0 │ ├─ licenses: BSD-3-Clause │ ├─ repository: https://github.com/salesforce/tough-cookie │ ├─ publisher: Jeremy Stashewsky │ ├─ email: jstash@gmail.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/tough-cookie +│ ├─ path: /home/zah/git/dcfrontend/node_modules/tough-cookie │ └─ licenseFile: node_modules/tough-cookie/LICENSE ├─ trim-newlines@1.0.0 │ ├─ licenses: MIT @@ -2588,26 +2649,26 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/trim-newlines +│ ├─ path: /home/zah/git/dcfrontend/node_modules/trim-newlines │ └─ licenseFile: node_modules/trim-newlines/license ├─ true-case-path@1.0.3 │ ├─ licenses: Apache-2.0 │ ├─ repository: https://github.com/barsh/true-case-path │ ├─ publisher: barsh -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/true-case-path +│ ├─ path: /home/zah/git/dcfrontend/node_modules/true-case-path │ └─ licenseFile: node_modules/true-case-path/LICENSE ├─ ts-helpers@1.1.2 │ ├─ licenses: MIT │ ├─ repository: https://github.com/ngParty/ts-helpers │ ├─ publisher: Martin Hochel │ ├─ email: hochelmartin@gmail.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/ts-helpers +│ ├─ path: /home/zah/git/dcfrontend/node_modules/ts-helpers │ └─ licenseFile: node_modules/ts-helpers/LICENSE -├─ tslib@2.0.1 +├─ tslib@2.0.3 │ ├─ licenses: 0BSD │ ├─ repository: https://github.com/Microsoft/tslib │ ├─ publisher: Microsoft Corp. -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/tslib +│ ├─ path: /home/zah/git/dcfrontend/node_modules/tslib │ └─ licenseFile: node_modules/tslib/LICENSE.txt ├─ tty-browserify@0.0.0 │ ├─ licenses: MIT @@ -2615,7 +2676,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: James Halliday │ ├─ email: mail@substack.net │ ├─ url: http://substack.net -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/tty-browserify +│ ├─ path: /home/zah/git/dcfrontend/node_modules/tty-browserify │ └─ licenseFile: node_modules/tty-browserify/LICENSE ├─ tunnel-agent@0.6.0 │ ├─ licenses: Apache-2.0 @@ -2623,43 +2684,43 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Mikeal Rogers │ ├─ email: mikeal.rogers@gmail.com │ ├─ url: http://www.futurealoof.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/tunnel-agent +│ ├─ path: /home/zah/git/dcfrontend/node_modules/tunnel-agent │ └─ licenseFile: node_modules/tunnel-agent/LICENSE ├─ tweetnacl@0.14.5 │ ├─ licenses: Unlicense │ ├─ repository: https://github.com/dchest/tweetnacl-js │ ├─ publisher: TweetNaCl-js contributors -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/tweetnacl +│ ├─ path: /home/zah/git/dcfrontend/node_modules/tweetnacl │ └─ licenseFile: node_modules/tweetnacl/LICENSE ├─ typedoc-default-themes@0.10.2 │ ├─ licenses: Apache-2.0 │ ├─ repository: https://github.com/TypeStrong/typedoc-default-themes -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/typedoc-default-themes +│ ├─ path: /home/zah/git/dcfrontend/node_modules/typedoc-default-themes │ └─ licenseFile: node_modules/typedoc-default-themes/LICENSE ├─ typedoc-neo-theme@1.0.10 │ ├─ licenses: Apache-2.0 │ ├─ repository: https://github.com/google/typedoc-neo-theme │ ├─ publisher: Nick Felker, based on work by Sebastian Lenz -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/typedoc-neo-theme +│ ├─ path: /home/zah/git/dcfrontend/node_modules/typedoc-neo-theme │ └─ licenseFile: node_modules/typedoc-neo-theme/LICENSE ├─ typedoc@0.16.11 │ ├─ licenses: Apache-2.0 │ ├─ repository: https://github.com/TypeStrong/TypeDoc -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/typedoc +│ ├─ path: /home/zah/git/dcfrontend/node_modules/typedoc │ └─ licenseFile: node_modules/typedoc/LICENSE ├─ typescript@3.9.7 │ ├─ licenses: Apache-2.0 │ ├─ repository: https://github.com/Microsoft/TypeScript │ ├─ publisher: Microsoft Corp. -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/typescript +│ ├─ path: /home/zah/git/dcfrontend/node_modules/typescript │ └─ licenseFile: node_modules/typescript/LICENSE.txt -├─ uglify-js@3.10.4 +├─ uglify-js@3.11.4 │ ├─ licenses: BSD-2-Clause │ ├─ repository: https://github.com/mishoo/UglifyJS │ ├─ publisher: Mihai Bazon │ ├─ email: mihai.bazon@gmail.com │ ├─ url: http://lisperator.net/ -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/uglify-js +│ ├─ path: /home/zah/git/dcfrontend/node_modules/uglify-js │ └─ licenseFile: node_modules/uglify-js/LICENSE ├─ unique-filename@1.1.1 │ ├─ licenses: ISC @@ -2667,7 +2728,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Rebecca Turner │ ├─ email: me@re-becca.org │ ├─ url: http://re-becca.org/ -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/unique-filename +│ ├─ path: /home/zah/git/dcfrontend/node_modules/unique-filename │ └─ licenseFile: node_modules/unique-filename/LICENSE ├─ unique-slug@2.0.2 │ ├─ licenses: ISC @@ -2675,26 +2736,26 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Rebecca Turner │ ├─ email: me@re-becca.org │ ├─ url: http://re-becca.org -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/unique-slug +│ ├─ path: /home/zah/git/dcfrontend/node_modules/unique-slug │ └─ licenseFile: node_modules/unique-slug/LICENSE ├─ universalify@0.1.2 │ ├─ licenses: MIT │ ├─ repository: https://github.com/RyanZim/universalify │ ├─ publisher: Ryan Zimmerman │ ├─ email: opensrc@ryanzim.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/universalify +│ ├─ path: /home/zah/git/dcfrontend/node_modules/universalify │ └─ licenseFile: node_modules/universalify/LICENSE ├─ uri-js@4.4.0 │ ├─ licenses: BSD-2-Clause │ ├─ repository: https://github.com/garycourt/uri-js │ ├─ publisher: Gary Court │ ├─ email: gary.court@gmail.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/uri-js +│ ├─ path: /home/zah/git/dcfrontend/node_modules/uri-js │ └─ licenseFile: node_modules/uri-js/LICENSE ├─ url@0.11.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/defunctzombie/node-url -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/url +│ ├─ path: /home/zah/git/dcfrontend/node_modules/url │ └─ licenseFile: node_modules/url/LICENSE ├─ util-deprecate@1.0.2 │ ├─ licenses: MIT @@ -2702,19 +2763,19 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Nathan Rajlich │ ├─ email: nathan@tootallnate.net │ ├─ url: http://n8.io/ -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/util-deprecate +│ ├─ path: /home/zah/git/dcfrontend/node_modules/util-deprecate │ └─ licenseFile: node_modules/util-deprecate/LICENSE ├─ util@0.10.3 │ ├─ licenses: MIT │ ├─ repository: https://github.com/defunctzombie/node-util │ ├─ publisher: Joyent │ ├─ url: http://www.joyent.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/util +│ ├─ path: /home/zah/git/dcfrontend/node_modules/util │ └─ licenseFile: node_modules/util/LICENSE ├─ uuid@3.4.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/uuidjs/uuid -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/uuid +│ ├─ path: /home/zah/git/dcfrontend/node_modules/uuid │ └─ licenseFile: node_modules/uuid/LICENSE.md ├─ validate-npm-package-license@3.0.4 │ ├─ licenses: Apache-2.0 @@ -2722,19 +2783,19 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Kyle E. Mitchell │ ├─ email: kyle@kemitchell.com │ ├─ url: https://kemitchell.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/validate-npm-package-license +│ ├─ path: /home/zah/git/dcfrontend/node_modules/validate-npm-package-license │ └─ licenseFile: node_modules/validate-npm-package-license/LICENSE ├─ verror@1.10.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/davepacheco/node-verror -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/verror +│ ├─ path: /home/zah/git/dcfrontend/node_modules/verror │ └─ licenseFile: node_modules/verror/LICENSE ├─ viz.js@1.8.2 │ ├─ licenses: MIT │ ├─ repository: https://github.com/mdaines/viz.js │ ├─ publisher: Mike Daines │ ├─ email: mdaines@fastmail.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/viz.js +│ ├─ path: /home/zah/git/dcfrontend/node_modules/viz.js │ └─ licenseFile: node_modules/viz.js/LICENSE ├─ vm-browserify@1.1.2 │ ├─ licenses: MIT @@ -2742,46 +2803,46 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: James Halliday │ ├─ email: mail@substack.net │ ├─ url: http://substack.net -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/vm-browserify +│ ├─ path: /home/zah/git/dcfrontend/node_modules/vm-browserify │ └─ licenseFile: node_modules/vm-browserify/LICENSE ├─ watchpack-chokidar2@2.0.0 │ ├─ licenses: MIT │ ├─ repository: https://github.com/webpack/watchpack │ ├─ publisher: Tobias Koppers @sokra -│ └─ path: /home/vrh/git/dcfrontend/node_modules/watchpack-chokidar2 +│ └─ path: /home/zah/git/dcfrontend/node_modules/watchpack-chokidar2 ├─ watchpack@1.7.4 │ ├─ licenses: MIT │ ├─ repository: https://github.com/webpack/watchpack │ ├─ publisher: Tobias Koppers @sokra -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/watchpack +│ ├─ path: /home/zah/git/dcfrontend/node_modules/watchpack │ └─ licenseFile: node_modules/watchpack/LICENSE ├─ web-animations-js@2.3.2 │ ├─ licenses: Apache-2.0 │ ├─ repository: https://github.com/web-animations/web-animations-js -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/web-animations-js +│ ├─ path: /home/zah/git/dcfrontend/node_modules/web-animations-js │ └─ licenseFile: node_modules/web-animations-js/README.md ├─ webpack-sources@1.4.3 │ ├─ licenses: MIT │ ├─ repository: https://github.com/webpack/webpack-sources │ ├─ publisher: Tobias Koppers @sokra -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/webpack-sources +│ ├─ path: /home/zah/git/dcfrontend/node_modules/webpack-sources │ └─ licenseFile: node_modules/webpack-sources/LICENSE -├─ webpack@4.43.0 +├─ webpack@4.44.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/webpack/webpack │ ├─ publisher: Tobias Koppers @sokra -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/webpack +│ ├─ path: /home/zah/git/dcfrontend/node_modules/webpack │ └─ licenseFile: node_modules/webpack/LICENSE -├─ whatwg-fetch@3.4.0 +├─ whatwg-fetch@3.4.1 │ ├─ licenses: MIT │ ├─ repository: https://github.com/github/fetch -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/whatwg-fetch +│ ├─ path: /home/zah/git/dcfrontend/node_modules/whatwg-fetch │ └─ licenseFile: node_modules/whatwg-fetch/LICENSE ├─ which-module@2.0.0 │ ├─ licenses: ISC │ ├─ repository: https://github.com/nexdrew/which-module │ ├─ publisher: nexdrew -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/which-module +│ ├─ path: /home/zah/git/dcfrontend/node_modules/which-module │ └─ licenseFile: node_modules/which-module/LICENSE ├─ which@1.3.1 │ ├─ licenses: ISC @@ -2789,7 +2850,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Isaac Z. Schlueter │ ├─ email: i@izs.me │ ├─ url: http://blog.izs.me -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/which +│ ├─ path: /home/zah/git/dcfrontend/node_modules/which │ └─ licenseFile: node_modules/which/LICENSE ├─ wide-align@1.1.3 │ ├─ licenses: ISC @@ -2797,7 +2858,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Rebecca Turner │ ├─ email: me@re-becca.org │ ├─ url: http://re-becca.org/ -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/wide-align +│ ├─ path: /home/zah/git/dcfrontend/node_modules/wide-align │ └─ licenseFile: node_modules/wide-align/LICENSE ├─ wordwrap@1.0.0 │ ├─ licenses: MIT @@ -2805,7 +2866,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: James Halliday │ ├─ email: mail@substack.net │ ├─ url: http://substack.net -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/wordwrap +│ ├─ path: /home/zah/git/dcfrontend/node_modules/wordwrap │ └─ licenseFile: node_modules/wordwrap/LICENSE ├─ wrap-ansi@5.1.0 │ ├─ licenses: MIT @@ -2813,7 +2874,7 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Sindre Sorhus │ ├─ email: sindresorhus@gmail.com │ ├─ url: sindresorhus.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/wrap-ansi +│ ├─ path: /home/zah/git/dcfrontend/node_modules/wrap-ansi │ └─ licenseFile: node_modules/wrap-ansi/license ├─ wrappy@1.0.2 │ ├─ licenses: ISC @@ -2821,21 +2882,21 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Isaac Z. Schlueter │ ├─ email: i@izs.me │ ├─ url: http://blog.izs.me/ -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/wrappy +│ ├─ path: /home/zah/git/dcfrontend/node_modules/wrappy │ └─ licenseFile: node_modules/wrappy/LICENSE ├─ xtend@4.0.2 │ ├─ licenses: MIT │ ├─ repository: https://github.com/Raynos/xtend │ ├─ publisher: Raynos │ ├─ email: raynos2@gmail.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/xtend +│ ├─ path: /home/zah/git/dcfrontend/node_modules/xtend │ └─ licenseFile: node_modules/xtend/LICENSE ├─ y18n@4.0.0 │ ├─ licenses: ISC │ ├─ repository: https://github.com/yargs/y18n │ ├─ publisher: Ben Coe │ ├─ email: ben@npmjs.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/y18n +│ ├─ path: /home/zah/git/dcfrontend/node_modules/y18n │ └─ licenseFile: node_modules/y18n/LICENSE ├─ yallist@2.1.2 │ ├─ licenses: ISC @@ -2843,30 +2904,30 @@ Data Controller source licences are extracted automatically from our repo using │ ├─ publisher: Isaac Z. Schlueter │ ├─ email: i@izs.me │ ├─ url: http://blog.izs.me/ -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/yallist +│ ├─ path: /home/zah/git/dcfrontend/node_modules/yallist │ └─ licenseFile: node_modules/yallist/LICENSE ├─ yargs-parser@13.1.2 │ ├─ licenses: ISC │ ├─ repository: https://github.com/yargs/yargs-parser │ ├─ publisher: Ben Coe │ ├─ email: ben@npmjs.com -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/yargs-parser +│ ├─ path: /home/zah/git/dcfrontend/node_modules/yargs-parser │ └─ licenseFile: node_modules/yargs-parser/LICENSE.txt ├─ yargs@13.3.2 │ ├─ licenses: MIT │ ├─ repository: https://github.com/yargs/yargs -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/yargs +│ ├─ path: /home/zah/git/dcfrontend/node_modules/yargs │ └─ licenseFile: node_modules/yargs/LICENSE ├─ zone.js@0.10.3 │ ├─ licenses: MIT │ ├─ repository: https://github.com/angular/angular │ ├─ publisher: Brian Ford -│ ├─ path: /home/vrh/git/dcfrontend/node_modules/zone.js +│ ├─ path: /home/zah/git/dcfrontend/node_modules/zone.js │ └─ licenseFile: node_modules/zone.js/LICENSE └─ zone@0.3.4 ├─ licenses: Custom: https://api.dartlang.org/apidocs/channels/stable/dartdoc-viewer/dart-async.Zone ├─ repository: https://github.com/strongloop/zone - ├─ path: /home/vrh/git/dcfrontend/node_modules/zone + ├─ path: /home/zah/git/dcfrontend/node_modules/zone └─ licenseFile: node_modules/zone/LICENSE.md ``` diff --git a/mkdocs.yml b/mkdocs.yml index bce2545..b19d1f4 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -21,6 +21,7 @@ nav: - Installation: - System Requirements: dci-requirements.md - SAS 9 Deploy: dci-deploysas9.md + - SAS Viya Deploy: dci-deploysasviya.md - Troubleshooting: dci-troubleshooting.md - Dedicated STP: dci-stpinstance.md - Evaluation (Demo) Version: @@ -39,7 +40,7 @@ markdown_extensions: - meta - toc: permalink: true - + extra: manifest: manifest.webmanifest diff --git a/slides.md b/slides.md new file mode 100644 index 0000000..6e1e732 --- /dev/null +++ b/slides.md @@ -0,0 +1,266 @@ +--- +marp: true +paginate: true +theme: default +description: "npx @marp-team/marp-cli slides.md -o ./theme/slides.html" + +--- + + +# Data Controller for SAS +## Allan Bowe + +![bg right:33% height:250 ](https://datacontroller.io/wp-content/uploads/2018/04/logo-1-2.png) + + + +--- +# Why Build Web Apps on SAS? + +- Self-Contained Environment +- Data Management & Analytics +- Enterprise Security & Scalability +![bg right:50% height:700](https://algorithmia.com/blog/wp-content/uploads/2019/10/Jira_workflow_animation.gif) + + + + +--- +# Problems with Desktop Apps + +* Security +* Scalability +* Governance + +![bg right:50% vertical height:200](https://i.imgur.com/n3BKKPb.gif) +![bg right:50% height:200](https://media2.giphy.com/media/KAq5w47R9rmTuvWOWa/giphy.gif) +![bg right:50% height:200](https://www.r-project.org/Rlogo.png) + + + + + +--- + + +# HTML5 App Architecture + +![bg right:65% height:370 ](https://sasjs.io/img/architecture.png) + +--- +# Deployment Strategies + +- Free for all +- Centralised Deployment +- Automated Deployment + + + + +--- +# Benefits of Automated Deployment + +- Stable Operating Environment +- Faster Feature Delivery +- Happier, More Productive Teams + + + + +--- +# Release Management + +- Jenkins / MS Release Manager +- Bitbucket / Gitlab Pipelines +- Github Actions + + + +--- +# Making it Happen + +- DIY with [REST API](https://developer.sas.com/guides/restapis/viya-rest.html) +- [PyViyaTools](https://github.com/sassoftware/pyviyatools) +- [SASjs CLI](cli.sasjs.io) + + +--- +# SASjs Framework + +- @sasjs/core - Macro library +- @sasjs/adapter - Connectivity +- @sasjs/cli - CI/CD and Automated Deployment + + + + +--- +# Sonic the Hedgehog + +https://github.com/allanbowe/sonic + +![bg right:50%](https://j.gifs.com/q7vkm2.gif) + +--- +# Rock Roller + +http://bit.ly/sasrockroller + +![bg right:50%](https://j.gifs.com/1W8vNj.gif) + +--- +# Viya Token Generator + +https://github.com/sasjs/viyatoken + +![bg right:50%](https://j.gifs.com/p80jDr.gif) + + +--- +# SASjs Core + +- Make Services, Folders, Groups & more +- Base SAS, Metadata, Viya +- `npm install @sasjs/core` + + + +--- +# SASjs Adapter + +- Authentication +- Bidirectional communication with SAS +- `npm install @sasjs/adapter` + + + +--- +# SASjs CLI + +- Project Setup +- Automated Deployments +- `npm install --global @sasjs/cli` + + + +--- +# `sasjs add` + +- Define a Target +- Client / Secret +- App Location (`appLoc`) + +--- +# `sasjs folder` + +- `sasjs folder create /some/folder -t target` +- `sasjs folder move /some/folder /new/folder` +- `sasjs folder delete /new/folder` + + +--- + +# `sasjs run` + +- `sasjs run code.sas` + +![bg right:60% height:450](docs/img/sasjsrun1.png) + +--- + + + +| Command |Description| +|:-------:|:----:| +| [add](https://cli.sasjs.io/add) | Provides a series of prompts used to define a SAS [target](https://sasjs.io/glossary#target ) along with the relevant connection details (if SAS Viya) | +|[build](https://cli.sasjs.io/build) |takes all of the input jobs and services and creates a build pack| +|[compile](https://cli.sasjs.io/compile)|Extracts all the dependencies and input programs for each service / job and includes them in a single file ready for deployment| +|[context](https://cli.sasjs.io/context)|List, export, create, edit, and delete SAS Compute contexts| +|[create](https://cli.sasjs.io/create)| Initialise a SASjs repository, either in plain form or using a range of templates| +|[deploy](https://cli.sasjs.io/deploy)|Perform the actual deployment of a SASjs project into SAS 9 or Viya| +|[folder](https://cli.sasjs.io/folder)|Management of logical Viya folders| +|[job](https://cli.sasjs.io/job)|Manage & Execute SAS Jobs| +|[run](https://cli.sasjs.io/run)|Run arbitrary SAS code in a Viya Compute Session, directly from the terminal (or commandline session)| +|[servicepack](/servicepack)|The SASjs Service Pack is a collection of services and folder objects. The servicepack command lets you deploy them easily| + + + +--- + + +# Allan Bowe, Head of SAS Apps + +- allan.bowe@analytium.co.uk +- https://www.linkedin.com/in/allanbowe/ +- https://github.com/sasjs + + \ No newline at end of file diff --git a/theme/dc.png b/theme/dc.png new file mode 100644 index 0000000..32658cf Binary files /dev/null and b/theme/dc.png differ