From 55bada63b7a5f09c149b0de11ae6d41682473945 Mon Sep 17 00:00:00 2001 From: Dima Kuzmin Date: Mon, 16 Dec 2019 21:52:56 +0200 Subject: [PATCH 1/4] Add the `EnumValue` support and a convenience wrapper method --- .../main/client/actor-request-factory.js | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/client-js/main/client/actor-request-factory.js b/client-js/main/client/actor-request-factory.js index 9f955c95d..ee0148529 100644 --- a/client-js/main/client/actor-request-factory.js +++ b/client-js/main/client/actor-request-factory.js @@ -41,6 +41,25 @@ import {FieldMask} from '../proto/google/protobuf/field_mask_pb'; import {isProtobufMessage, Type, TypedMessage} from './typed-message'; import {AnyPacker} from './any-packer'; import {FieldPaths} from './field-paths'; +import {EnumValue} from 'google-protobuf/google/protobuf/type_pb'; + +/** + * Wraps the passed enum value as Protobuf `EnumValue` so it can be correctly processed by the + * server. + * + * As enums in Protobuf JS are declared as plain numbers, their values can be passed to their + * method as-is, for example: `enumValueOf(Task.Severity.HIGH)`. + * + * @param {!number} value the enum value + * @returns {EnumValue} the `EnumValue` instance + */ +export function enumValueOf(value) { + const result = new EnumValue(); + result.setNumber(value); + return result; +} + +const ENUM_VALUE_TYPE_URL = 'type.googleapis.com/google.protobuf.EnumValue'; // TODO:2019-06-07:yegor.udovchenko: Cover `Filters` class with the unit tests // https://github.com/SpineEventEngine/web/issues/100 @@ -166,6 +185,9 @@ export class Filters { typedValue = TypedMessage.bool(value); } else if (value instanceof Date) { typedValue = TypedMessage.timestamp(value); + } else if (value instanceof EnumValue) { + const type = Type.of(EnumValue, ENUM_VALUE_TYPE_URL); + typedValue = new TypedMessage(value, type); } else if (value instanceof TypedMessage) { typedValue = value; } else if(isProtobufMessage(value)) { From 71c0ff5711c59c2e6b02577716398d4b90b07130 Mon Sep 17 00:00:00 2001 From: Dima Kuzmin Date: Mon, 16 Dec 2019 21:55:16 +0200 Subject: [PATCH 2/4] Add an integration test for querying by enum columns The Spine version updates to `1.2.10`, `base` dependency updates to `1.2.4`. --- client-js/package.json | 2 +- integration-tests/js-tests/package.json | 2 +- .../test/firebase-client/query-test.js | 9 +- .../web/test/given/UserTasksProjection.java | 15 + .../spine/web/test/given/user_tasks.proto | 8 + license-report.md | 329 +++++++++++------- pom.xml | 14 +- version.gradle | 6 +- 8 files changed, 239 insertions(+), 146 deletions(-) diff --git a/client-js/package.json b/client-js/package.json index 6315be937..970221472 100644 --- a/client-js/package.json +++ b/client-js/package.json @@ -1,6 +1,6 @@ { "name": "spine-web", - "version": "1.2.9", + "version": "1.2.10", "license": "Apache-2.0", "description": "A JS client for interacting with Spine applications.", "homepage": "https://spine.io", diff --git a/integration-tests/js-tests/package.json b/integration-tests/js-tests/package.json index 7ba3e694d..065978f86 100644 --- a/integration-tests/js-tests/package.json +++ b/integration-tests/js-tests/package.json @@ -1,6 +1,6 @@ { "name": "client-js-tests", - "version": "1.2.9", + "version": "1.2.10", "license": "Apache-2.0", "description": "Tests of a `spine-web` JS library against the Spine-based application.", "scripts": { diff --git a/integration-tests/js-tests/test/firebase-client/query-test.js b/integration-tests/js-tests/test/firebase-client/query-test.js index 8d9b5513f..6bba84cb6 100644 --- a/integration-tests/js-tests/test/firebase-client/query-test.js +++ b/integration-tests/js-tests/test/firebase-client/query-test.js @@ -22,7 +22,7 @@ import assert from 'assert'; import {ensureUserTasks, fail} from '../test-helpers'; import {UserTasksTestEnvironment as TestEnvironment} from '../given/users-test-environment'; import {client} from './given/firebase-client'; -import {Filters} from '@lib/client/actor-request-factory'; +import {enumValueOf, Filters} from '@lib/client/actor-request-factory'; import {TypedMessage} from '@lib/client/typed-message'; import {BoolValue} from '@testProto/google/protobuf/wrappers_pb'; import {UserTasks} from '@testProto/spine/web/test/given/user_tasks_pb'; @@ -101,6 +101,13 @@ describe('FirebaseClient executes query built', function () { ], expectedUsers: () => users.filter(user => user.tasks.length === 3) }, + { + message: 'with `eq` filter targeting a enum column', + filters: [ + Filters.eq('load', enumValueOf(UserTasks.Load.VERY_HIGH)) + ], + expectedUsers: () => users.filter(user => user.tasks.length > 1) + }, { message: 'with `lt` filter', filters: [ diff --git a/integration-tests/test-app/src/main/java/io/spine/web/test/given/UserTasksProjection.java b/integration-tests/test-app/src/main/java/io/spine/web/test/given/UserTasksProjection.java index c530f5f33..706a8c695 100644 --- a/integration-tests/test-app/src/main/java/io/spine/web/test/given/UserTasksProjection.java +++ b/integration-tests/test-app/src/main/java/io/spine/web/test/given/UserTasksProjection.java @@ -28,6 +28,10 @@ import java.util.List; +import static io.spine.web.test.given.UserTasks.Load.HIGH; +import static io.spine.web.test.given.UserTasks.Load.LOW; +import static io.spine.web.test.given.UserTasks.Load.VERY_HIGH; + /** * A projection representing a user and a list of {@link TaskId tasks} assigned to him. * @@ -81,6 +85,17 @@ public boolean getIsOverloaded() { return state().getTasksCount() > 1; } + @Override + public UserTasks.Load getLoad() { + if (getTaskCount() == 0) { + return LOW; + } else if (getTaskCount() == 1) { + return HIGH; + } else { + return VERY_HIGH; + } + } + private boolean reassignedFromThisUser(TaskReassigned event) { return event.hasFrom() && event.getFrom().equals(id()); } diff --git a/integration-tests/test-app/src/main/proto/spine/web/test/given/user_tasks.proto b/integration-tests/test-app/src/main/proto/spine/web/test/given/user_tasks.proto index f08d43925..3690e3ad0 100644 --- a/integration-tests/test-app/src/main/proto/spine/web/test/given/user_tasks.proto +++ b/integration-tests/test-app/src/main/proto/spine/web/test/given/user_tasks.proto @@ -26,4 +26,12 @@ message UserTasks { int32 task_count = 4 [(column) = true]; bool is_overloaded = 5 [(column) = true]; + + Load load = 6 [(column) = true]; + + enum Load { + LOW = 0; + HIGH = 1; + VERY_HIGH = 2; + } } diff --git a/license-report.md b/license-report.md index 449fa9245..632d5358a 100644 --- a/license-report.md +++ b/license-report.md @@ -1,6 +1,6 @@ -# Dependencies of `io.spine:spine-client-js:1.2.9` +# Dependencies of `io.spine:spine-client-js:1.2.10` ## Runtime 1. **Group:** com.google.code.findbugs **Name:** jsr305 **Version:** 3.0.2 @@ -376,14 +376,14 @@ The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). +This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). -#NPM dependencies of `spine-web@1.2.9` +#NPM dependencies of `spine-web@1.2.10` ## `Production` dependencies: -1. **base64-js@1.3.1** +1. **base64-js@1.3.0** * Licenses: MIT * Repository: [https://github.com/beatgammit/base64-js](https://github.com/beatgammit/base64-js) 1. **encoding@0.1.12** @@ -410,10 +410,10 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **safer-buffer@2.1.2** * Licenses: MIT * Repository: [https://github.com/ChALkeR/safer-buffer](https://github.com/ChALkeR/safer-buffer) -1. **spine-web@1.2.9** +1. **spine-web@1.2.10** * Licenses: Apache-2.0 * Repository: [https://github.com/SpineEventEngine/web](https://github.com/SpineEventEngine/web) -1. **tslib@1.10.0** +1. **tslib@1.9.0** * Licenses: Apache-2.0 * Repository: [https://github.com/Microsoft/tslib](https://github.com/Microsoft/tslib) 1. **uuid@3.3.2** @@ -661,13 +661,13 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **@firebase/database-types@0.4.2** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) -1. **@firebase/database@0.4.12** +1. **@firebase/database@0.5.0** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) 1. **@firebase/firestore-types@1.4.4** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) -1. **@firebase/firestore@1.4.9** +1. **@firebase/firestore@1.4.10** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) 1. **@firebase/functions-types@0.3.8** @@ -745,105 +745,108 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **@protobufjs/utf8@1.1.0** * Licenses: BSD-3-Clause * Repository: [https://github.com/dcodeIO/protobuf.js](https://github.com/dcodeIO/protobuf.js) -1. **@sinonjs/commons@1.4.0** +1. **@sinonjs/commons@1.3.0** * Licenses: BSD-3-Clause * Repository: [https://github.com/sinonjs/commons](https://github.com/sinonjs/commons) -1. **@sinonjs/formatio@3.2.1** +1. **@sinonjs/formatio@3.1.0** * Licenses: BSD-3-Clause * Repository: [https://github.com/sinonjs/formatio](https://github.com/sinonjs/formatio) -1. **@sinonjs/samsam@3.3.2** +1. **@sinonjs/samsam@3.1.1** * Licenses: BSD-3-Clause * Repository: [https://github.com/sinonjs/samsam](https://github.com/sinonjs/samsam) -1. **@sinonjs/text-encoding@0.7.1** - * Licenses: (Unlicense OR Apache-2.0) - * Repository: [https://github.com/inexorabletash/text-encoding](https://github.com/inexorabletash/text-encoding) 1. **@types/long@4.0.0** * Licenses: MIT * Repository: [https://github.com/DefinitelyTyped/DefinitelyTyped](https://github.com/DefinitelyTyped/DefinitelyTyped) 1. **@types/node@10.14.15** * Licenses: MIT * Repository: [https://github.com/DefinitelyTyped/DefinitelyTyped](https://github.com/DefinitelyTyped/DefinitelyTyped) -1. **@webassemblyjs/ast@1.8.5** +1. **@webassemblyjs/ast@1.7.11** * Licenses: MIT * Repository: [https://github.com/xtuc/webassemblyjs](https://github.com/xtuc/webassemblyjs) -1. **@webassemblyjs/floating-point-hex-parser@1.8.5** +1. **@webassemblyjs/floating-point-hex-parser@1.7.11** * Licenses: MIT * Repository: [https://github.com/xtuc/webassemblyjs](https://github.com/xtuc/webassemblyjs) -1. **@webassemblyjs/helper-api-error@1.8.5** +1. **@webassemblyjs/helper-api-error@1.7.11** * Licenses: MIT * Repository: unknown -1. **@webassemblyjs/helper-buffer@1.8.5** +1. **@webassemblyjs/helper-buffer@1.7.11** * Licenses: MIT * Repository: [https://github.com/xtuc/webassemblyjs](https://github.com/xtuc/webassemblyjs) -1. **@webassemblyjs/helper-code-frame@1.8.5** +1. **@webassemblyjs/helper-code-frame@1.7.11** * Licenses: MIT * Repository: [https://github.com/xtuc/webassemblyjs](https://github.com/xtuc/webassemblyjs) -1. **@webassemblyjs/helper-fsm@1.8.5** +1. **@webassemblyjs/helper-fsm@1.7.11** * Licenses: ISC * Repository: unknown -1. **@webassemblyjs/helper-module-context@1.8.5** +1. **@webassemblyjs/helper-module-context@1.7.11** * Licenses: MIT * Repository: [https://github.com/xtuc/webassemblyjs](https://github.com/xtuc/webassemblyjs) -1. **@webassemblyjs/helper-wasm-bytecode@1.8.5** +1. **@webassemblyjs/helper-wasm-bytecode@1.7.11** * Licenses: MIT * Repository: [https://github.com/xtuc/webassemblyjs](https://github.com/xtuc/webassemblyjs) -1. **@webassemblyjs/helper-wasm-section@1.8.5** +1. **@webassemblyjs/helper-wasm-section@1.7.11** * Licenses: MIT * Repository: [https://github.com/xtuc/webassemblyjs](https://github.com/xtuc/webassemblyjs) -1. **@webassemblyjs/ieee754@1.8.5** +1. **@webassemblyjs/ieee754@1.7.11** * Licenses: MIT * Repository: unknown -1. **@webassemblyjs/leb128@1.8.5** +1. **@webassemblyjs/leb128@1.7.11** * Licenses: MIT * Repository: unknown -1. **@webassemblyjs/utf8@1.8.5** +1. **@webassemblyjs/utf8@1.7.11** * Licenses: MIT * Repository: [https://github.com/xtuc/webassemblyjs](https://github.com/xtuc/webassemblyjs) -1. **@webassemblyjs/wasm-edit@1.8.5** +1. **@webassemblyjs/wasm-edit@1.7.11** * Licenses: MIT * Repository: [https://github.com/xtuc/webassemblyjs](https://github.com/xtuc/webassemblyjs) -1. **@webassemblyjs/wasm-gen@1.8.5** +1. **@webassemblyjs/wasm-gen@1.7.11** * Licenses: MIT * Repository: [https://github.com/xtuc/webassemblyjs](https://github.com/xtuc/webassemblyjs) -1. **@webassemblyjs/wasm-opt@1.8.5** +1. **@webassemblyjs/wasm-opt@1.7.11** * Licenses: MIT * Repository: [https://github.com/xtuc/webassemblyjs](https://github.com/xtuc/webassemblyjs) -1. **@webassemblyjs/wasm-parser@1.8.5** +1. **@webassemblyjs/wasm-parser@1.7.11** * Licenses: MIT * Repository: [https://github.com/xtuc/webassemblyjs](https://github.com/xtuc/webassemblyjs) -1. **@webassemblyjs/wast-parser@1.8.5** +1. **@webassemblyjs/wast-parser@1.7.11** * Licenses: MIT * Repository: [https://github.com/xtuc/webassemblyjs](https://github.com/xtuc/webassemblyjs) -1. **@webassemblyjs/wast-printer@1.8.5** +1. **@webassemblyjs/wast-printer@1.7.11** * Licenses: MIT * Repository: [https://github.com/xtuc/webassemblyjs](https://github.com/xtuc/webassemblyjs) 1. **@xtuc/ieee754@1.2.0** * Licenses: BSD-3-Clause * Repository: [https://github.com/feross/ieee754](https://github.com/feross/ieee754) -1. **@xtuc/long@4.2.2** +1. **@xtuc/long@4.2.1** * Licenses: Apache-2.0 * Repository: [https://github.com/dcodeIO/long.js](https://github.com/dcodeIO/long.js) 1. **abbrev@1.1.1** * Licenses: ISC * Repository: [https://github.com/isaacs/abbrev-js](https://github.com/isaacs/abbrev-js) -1. **acorn@6.3.0** +1. **acorn-dynamic-import@4.0.0** + * Licenses: MIT + * Repository: [https://github.com/kesne/acorn-dynamic-import](https://github.com/kesne/acorn-dynamic-import) +1. **acorn@6.1.0** * Licenses: MIT * Repository: [https://github.com/acornjs/acorn](https://github.com/acornjs/acorn) -1. **agent-base@4.3.0** +1. **agent-base@4.2.1** * Licenses: MIT * Repository: [https://github.com/TooTallNate/node-agent-base](https://github.com/TooTallNate/node-agent-base) 1. **ajv-errors@1.0.1** * Licenses: MIT * Repository: [https://github.com/epoberezkin/ajv-errors](https://github.com/epoberezkin/ajv-errors) -1. **ajv-keywords@3.4.1** +1. **ajv-keywords@3.4.0** * Licenses: MIT * Repository: [https://github.com/epoberezkin/ajv-keywords](https://github.com/epoberezkin/ajv-keywords) -1. **ajv@6.10.2** +1. **ajv@6.9.1** * Licenses: MIT * Repository: [https://github.com/epoberezkin/ajv](https://github.com/epoberezkin/ajv) 1. **ansi-regex@2.1.1** * Licenses: MIT * Repository: [https://github.com/chalk/ansi-regex](https://github.com/chalk/ansi-regex) +1. **ansi-regex@3.0.0** + * Licenses: MIT + * Repository: [https://github.com/chalk/ansi-regex](https://github.com/chalk/ansi-regex) 1. **ansi-regex@4.1.0** * Licenses: MIT * Repository: [https://github.com/chalk/ansi-regex](https://github.com/chalk/ansi-regex) @@ -901,13 +904,13 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **asn1.js@4.10.1** * Licenses: MIT * Repository: [https://github.com/indutny/asn1.js](https://github.com/indutny/asn1.js) -1. **assert@1.5.0** +1. **assert@1.4.1** * Licenses: MIT - * Repository: [https://github.com/browserify/commonjs-assert](https://github.com/browserify/commonjs-assert) + * Repository: [https://github.com/defunctzombie/commonjs-assert](https://github.com/defunctzombie/commonjs-assert) 1. **assign-symbols@1.0.0** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/assign-symbols](https://github.com/jonschlinkert/assign-symbols) -1. **async-each@1.0.3** +1. **async-each@1.0.1** * Licenses: MIT * Repository: [https://github.com/paulmillr/async-each](https://github.com/paulmillr/async-each) 1. **atob@2.1.2** @@ -955,10 +958,10 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **big.js@5.2.2** * Licenses: MIT * Repository: [https://github.com/MikeMcl/big.js](https://github.com/MikeMcl/big.js) -1. **binary-extensions@1.13.1** +1. **binary-extensions@1.13.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/binary-extensions](https://github.com/sindresorhus/binary-extensions) -1. **bluebird@3.5.5** +1. **bluebird@3.5.3** * Licenses: MIT * Repository: [https://github.com/petkaantonov/bluebird](https://github.com/petkaantonov/bluebird) 1. **bn.js@4.11.8** @@ -1012,9 +1015,9 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **bytebuffer@5.0.1** * Licenses: Apache-2.0 * Repository: [https://github.com/dcodeIO/bytebuffer.js](https://github.com/dcodeIO/bytebuffer.js) -1. **cacache@12.0.2** +1. **cacache@11.3.2** * Licenses: ISC - * Repository: [https://github.com/npm/cacache](https://github.com/npm/cacache) + * Repository: [https://github.com/zkat/cacache](https://github.com/zkat/cacache) 1. **cache-base@1.0.1** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/cache-base](https://github.com/jonschlinkert/cache-base) @@ -1024,6 +1027,9 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **camelcase@2.1.1** * Licenses: MIT * Repository: [https://github.com/sindresorhus/camelcase](https://github.com/sindresorhus/camelcase) +1. **camelcase@5.0.0** + * Licenses: MIT + * Repository: [https://github.com/sindresorhus/camelcase](https://github.com/sindresorhus/camelcase) 1. **camelcase@5.3.1** * Licenses: MIT * Repository: [https://github.com/sindresorhus/camelcase](https://github.com/sindresorhus/camelcase) @@ -1036,16 +1042,16 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **chalk@2.4.2** * Licenses: MIT * Repository: [https://github.com/chalk/chalk](https://github.com/chalk/chalk) +1. **chokidar@2.1.1** + * Licenses: MIT + * Repository: [https://github.com/paulmillr/chokidar](https://github.com/paulmillr/chokidar) 1. **chokidar@2.1.6** * Licenses: MIT * Repository: [https://github.com/paulmillr/chokidar](https://github.com/paulmillr/chokidar) 1. **chownr@1.1.1** * Licenses: ISC * Repository: [https://github.com/isaacs/chownr](https://github.com/isaacs/chownr) -1. **chownr@1.1.2** - * Licenses: ISC - * Repository: [https://github.com/isaacs/chownr](https://github.com/isaacs/chownr) -1. **chrome-trace-event@1.0.2** +1. **chrome-trace-event@1.0.0** * Licenses: MIT * Repository: [github.com:samccone/chrome-trace-event](github.com:samccone/chrome-trace-event) 1. **cipher-base@1.0.4** @@ -1057,13 +1063,16 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **cliui@3.2.0** * Licenses: ISC * Repository: [https://github.com/yargs/cliui](https://github.com/yargs/cliui) +1. **cliui@4.1.0** + * Licenses: ISC + * Repository: [https://github.com/yargs/cliui](https://github.com/yargs/cliui) 1. **cliui@5.0.0** * Licenses: ISC * Repository: [https://github.com/yargs/cliui](https://github.com/yargs/cliui) 1. **code-point-at@1.1.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/code-point-at](https://github.com/sindresorhus/code-point-at) -1. **codecov@3.5.0** +1. **codecov@3.2.0** * Licenses: MIT * Repository: [https://github.com/codecov/codecov-node](https://github.com/codecov/codecov-node) 1. **collection-visit@1.0.0** @@ -1081,13 +1090,19 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **commander@2.15.1** * Licenses: MIT * Repository: [https://github.com/tj/commander.js](https://github.com/tj/commander.js) +1. **commander@2.17.1** + * Licenses: MIT + * Repository: [https://github.com/tj/commander.js](https://github.com/tj/commander.js) +1. **commander@2.19.0** + * Licenses: MIT + * Repository: [https://github.com/tj/commander.js](https://github.com/tj/commander.js) 1. **commander@2.20.0** * Licenses: MIT * Repository: [https://github.com/tj/commander.js](https://github.com/tj/commander.js) 1. **commondir@1.0.1** * Licenses: MIT * Repository: [https://github.com/substack/node-commondir](https://github.com/substack/node-commondir) -1. **component-emitter@1.3.0** +1. **component-emitter@1.2.1** * Licenses: MIT * Repository: [https://github.com/component/emitter](https://github.com/component/emitter) 1. **concat-map@0.0.1** @@ -1114,16 +1129,16 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **copy-descriptor@0.1.1** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/copy-descriptor](https://github.com/jonschlinkert/copy-descriptor) -1. **core-js-compat@3.2.0** +1. **core-js-compat@3.2.1** * Licenses: MIT * Repository: [https://github.com/zloirock/core-js](https://github.com/zloirock/core-js) -1. **core-js@2.6.9** +1. **core-js@2.5.5** * Licenses: MIT * Repository: [https://github.com/zloirock/core-js](https://github.com/zloirock/core-js) 1. **core-js@3.1.4** * Licenses: MIT * Repository: [https://github.com/zloirock/core-js](https://github.com/zloirock/core-js) -1. **core-js@3.2.0** +1. **core-js@3.2.1** * Licenses: MIT * Repository: [https://github.com/zloirock/core-js](https://github.com/zloirock/core-js) 1. **core-util-is@1.0.2** @@ -1225,10 +1240,10 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **duplexify@3.7.1** * Licenses: MIT * Repository: [https://github.com/mafintosh/duplexify](https://github.com/mafintosh/duplexify) -1. **electron-to-chromium@1.3.224** +1. **electron-to-chromium@1.3.233** * Licenses: ISC * Repository: [https://github.com/kilian/electron-to-chromium](https://github.com/kilian/electron-to-chromium) -1. **elliptic@6.5.0** +1. **elliptic@6.4.1** * Licenses: MIT * Repository: [https://github.com/indutny/elliptic](https://github.com/indutny/elliptic) 1. **emoji-regex@7.0.3** @@ -1252,7 +1267,7 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **es6-error@4.1.1** * Licenses: MIT * Repository: [https://github.com/bjyoungblood/es6-error](https://github.com/bjyoungblood/es6-error) -1. **es6-promise@4.2.8** +1. **es6-promise@4.2.5** * Licenses: MIT * Repository: [https://github.com/stefanpenner/es6-promise](https://github.com/stefanpenner/es6-promise) 1. **es6-promisify@5.0.0** @@ -1261,7 +1276,7 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **escape-string-regexp@1.0.5** * Licenses: MIT * Repository: [https://github.com/sindresorhus/escape-string-regexp](https://github.com/sindresorhus/escape-string-regexp) -1. **eslint-scope@4.0.3** +1. **eslint-scope@4.0.0** * Licenses: BSD-2-Clause * Repository: [https://github.com/eslint/eslint-scope](https://github.com/eslint/eslint-scope) 1. **esprima@4.0.1** @@ -1273,8 +1288,8 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **estraverse@4.2.0** * Licenses: BSD-2-Clause * Repository: [https://github.com/estools/estraverse](https://github.com/estools/estraverse) -1. **esutils@2.0.3** - * Licenses: BSD-2-Clause +1. **esutils@2.0.2** + * Licenses: BSD * Repository: [https://github.com/estools/esutils](https://github.com/estools/esutils) 1. **events@3.0.0** * Licenses: MIT @@ -1315,9 +1330,12 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **fill-range@4.0.0** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/fill-range](https://github.com/jonschlinkert/fill-range) -1. **find-babel-config@1.2.0** +1. **find-babel-config@1.1.0** * Licenses: MIT * Repository: [https://github.com/tleunen/find-babel-config](https://github.com/tleunen/find-babel-config) +1. **find-cache-dir@2.0.0** + * Licenses: MIT + * Repository: [https://github.com/avajs/find-cache-dir](https://github.com/avajs/find-cache-dir) 1. **find-cache-dir@2.1.0** * Licenses: MIT * Repository: [https://github.com/avajs/find-cache-dir](https://github.com/avajs/find-cache-dir) @@ -1327,10 +1345,10 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **find-up@3.0.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/find-up](https://github.com/sindresorhus/find-up) -1. **findup-sync@3.0.0** +1. **findup-sync@2.0.0** * Licenses: MIT - * Repository: [https://github.com/gulpjs/findup-sync](https://github.com/gulpjs/findup-sync) -1. **firebase@6.3.5** + * Repository: [https://github.com/js-cli/node-findup-sync](https://github.com/js-cli/node-findup-sync) +1. **firebase@6.4.0** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) 1. **flush-write-stream@1.1.1** @@ -1366,6 +1384,9 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **gauge@2.7.4** * Licenses: ISC * Repository: [https://github.com/iarna/gauge](https://github.com/iarna/gauge) +1. **get-caller-file@1.0.3** + * Licenses: ISC + * Repository: [https://github.com/stefanpenner/get-caller-file](https://github.com/stefanpenner/get-caller-file) 1. **get-caller-file@2.0.5** * Licenses: ISC * Repository: [https://github.com/stefanpenner/get-caller-file](https://github.com/stefanpenner/get-caller-file) @@ -1381,28 +1402,22 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **glob@7.1.2** * Licenses: ISC * Repository: [https://github.com/isaacs/node-glob](https://github.com/isaacs/node-glob) -1. **glob@7.1.4** +1. **glob@7.1.3** * Licenses: ISC * Repository: [https://github.com/isaacs/node-glob](https://github.com/isaacs/node-glob) 1. **global-modules@1.0.0** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/global-modules](https://github.com/jonschlinkert/global-modules) -1. **global-modules@2.0.0** - * Licenses: MIT - * Repository: [https://github.com/jonschlinkert/global-modules](https://github.com/jonschlinkert/global-modules) 1. **global-prefix@1.0.2** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/global-prefix](https://github.com/jonschlinkert/global-prefix) -1. **global-prefix@3.0.0** - * Licenses: MIT - * Repository: [https://github.com/jonschlinkert/global-prefix](https://github.com/jonschlinkert/global-prefix) 1. **globals@11.12.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/globals](https://github.com/sindresorhus/globals) 1. **globals@9.18.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/globals](https://github.com/sindresorhus/globals) -1. **graceful-fs@4.2.1** +1. **graceful-fs@4.1.15** * Licenses: ISC * Repository: [https://github.com/isaacs/node-graceful-fs](https://github.com/isaacs/node-graceful-fs) 1. **growl@1.10.5** @@ -1411,7 +1426,7 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **grpc@1.22.2** * Licenses: Apache-2.0 * Repository: [https://github.com/grpc/grpc-node](https://github.com/grpc/grpc-node) -1. **handlebars@4.3.1** +1. **handlebars@4.1.2** * Licenses: MIT * Repository: [https://github.com/wycats/handlebars.js](https://github.com/wycats/handlebars.js) 1. **has-ansi@2.0.0** @@ -1453,10 +1468,10 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **hmac-drbg@1.0.1** * Licenses: MIT * Repository: [https://github.com/indutny/hmac-drbg](https://github.com/indutny/hmac-drbg) -1. **homedir-polyfill@1.0.3** +1. **homedir-polyfill@1.0.1** * Licenses: MIT * Repository: [https://github.com/doowb/homedir-polyfill](https://github.com/doowb/homedir-polyfill) -1. **hosted-git-info@2.8.2** +1. **hosted-git-info@2.8.4** * Licenses: ISC * Repository: [https://github.com/npm/hosted-git-info](https://github.com/npm/hosted-git-info) 1. **http-parser-js@0.4.10** @@ -1465,7 +1480,7 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **https-browserify@1.0.0** * Licenses: MIT * Repository: [https://github.com/substack/https-browserify](https://github.com/substack/https-browserify) -1. **https-proxy-agent@2.2.2** +1. **https-proxy-agent@2.2.1** * Licenses: MIT * Repository: [https://github.com/TooTallNate/node-https-proxy-agent](https://github.com/TooTallNate/node-https-proxy-agent) 1. **iconv-lite@0.4.23** @@ -1474,7 +1489,7 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **idb@3.0.2** * Licenses: ISC * Repository: [https://github.com/jakearchibald/indexeddb-promised](https://github.com/jakearchibald/indexeddb-promised) -1. **ieee754@1.1.13** +1. **ieee754@1.1.12** * Licenses: BSD-3-Clause * Repository: [https://github.com/feross/ieee754](https://github.com/feross/ieee754) 1. **iferr@0.1.5** @@ -1489,9 +1504,9 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **imurmurhash@0.1.4** * Licenses: MIT * Repository: [https://github.com/jensyt/imurmurhash-js](https://github.com/jensyt/imurmurhash-js) -1. **infer-owner@1.0.4** - * Licenses: ISC - * Repository: [https://github.com/npm/infer-owner](https://github.com/npm/infer-owner) +1. **indexof@0.0.1** + * Licenses: MIT* + * Repository: unknown 1. **inflight@1.0.6** * Licenses: ISC * Repository: [https://github.com/npm/inflight](https://github.com/npm/inflight) @@ -1501,9 +1516,6 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **inherits@2.0.3** * Licenses: ISC * Repository: [https://github.com/isaacs/inherits](https://github.com/isaacs/inherits) -1. **inherits@2.0.4** - * Licenses: ISC - * Repository: [https://github.com/isaacs/inherits](https://github.com/isaacs/inherits) 1. **ini@1.3.5** * Licenses: ISC * Repository: [https://github.com/isaacs/ini](https://github.com/isaacs/ini) @@ -1564,6 +1576,9 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **is-glob@3.1.0** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/is-glob](https://github.com/jonschlinkert/is-glob) +1. **is-glob@4.0.0** + * Licenses: MIT + * Repository: [https://github.com/jonschlinkert/is-glob](https://github.com/jonschlinkert/is-glob) 1. **is-glob@4.0.1** * Licenses: MIT * Repository: [https://github.com/micromatch/is-glob](https://github.com/micromatch/is-glob) @@ -1579,9 +1594,6 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **is-windows@1.0.2** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/is-windows](https://github.com/jonschlinkert/is-windows) -1. **is-wsl@1.1.0** - * Licenses: MIT - * Repository: [https://github.com/sindresorhus/is-wsl](https://github.com/sindresorhus/is-wsl) 1. **isarray@0.0.1** * Licenses: MIT * Repository: [https://github.com/juliangruber/isarray](https://github.com/juliangruber/isarray) @@ -1624,6 +1636,9 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **js-tokens@4.0.0** * Licenses: MIT * Repository: [https://github.com/lydell/js-tokens](https://github.com/lydell/js-tokens) +1. **js-yaml@3.12.1** + * Licenses: MIT + * Repository: [https://github.com/nodeca/js-yaml](https://github.com/nodeca/js-yaml) 1. **js-yaml@3.13.1** * Licenses: MIT * Repository: [https://github.com/nodeca/js-yaml](https://github.com/nodeca/js-yaml) @@ -1696,10 +1711,16 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **lodash.flattendeep@4.4.0** * Licenses: MIT * Repository: [https://github.com/lodash/lodash](https://github.com/lodash/lodash) +1. **lodash@4.17.11** + * Licenses: MIT + * Repository: [https://github.com/lodash/lodash](https://github.com/lodash/lodash) 1. **lodash@4.17.15** * Licenses: MIT * Repository: [https://github.com/lodash/lodash](https://github.com/lodash/lodash) -1. **lolex@4.2.0** +1. **lolex@2.7.5** + * Licenses: BSD-3-Clause + * Repository: [https://github.com/sinonjs/lolex](https://github.com/sinonjs/lolex) +1. **lolex@3.1.0** * Licenses: BSD-3-Clause * Repository: [https://github.com/sinonjs/lolex](https://github.com/sinonjs/lolex) 1. **long@3.2.0** @@ -1717,12 +1738,12 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **lru-cache@5.1.1** * Licenses: ISC * Repository: [https://github.com/isaacs/node-lru-cache](https://github.com/isaacs/node-lru-cache) -1. **make-dir@2.1.0** +1. **make-dir@1.3.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/make-dir](https://github.com/sindresorhus/make-dir) -1. **mamacro@0.0.3** +1. **make-dir@2.1.0** * Licenses: MIT - * Repository: unknown + * Repository: [https://github.com/sindresorhus/make-dir](https://github.com/sindresorhus/make-dir) 1. **map-age-cleaner@0.1.3** * Licenses: MIT * Repository: [https://github.com/SamVerschueren/map-age-cleaner](https://github.com/SamVerschueren/map-age-cleaner) @@ -1735,7 +1756,7 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **md5.js@1.3.5** * Licenses: MIT * Repository: [https://github.com/crypto-browserify/md5.js](https://github.com/crypto-browserify/md5.js) -1. **mem@4.3.0** +1. **mem@4.1.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/mem](https://github.com/sindresorhus/mem) 1. **memory-fs@0.4.1** @@ -1750,7 +1771,7 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **miller-rabin@4.0.1** * Licenses: MIT * Repository: [https://github.com/indutny/miller-rabin](https://github.com/indutny/miller-rabin) -1. **mimic-fn@2.1.0** +1. **mimic-fn@1.2.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/mimic-fn](https://github.com/sindresorhus/mimic-fn) 1. **minimalistic-assert@1.0.1** @@ -1777,7 +1798,7 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **mississippi@3.0.0** * Licenses: BSD-2-Clause * Repository: [https://github.com/maxogden/mississippi](https://github.com/maxogden/mississippi) -1. **mixin-deep@1.3.2** +1. **mixin-deep@1.3.1** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/mixin-deep](https://github.com/jonschlinkert/mixin-deep) 1. **mkdirp@0.5.1** @@ -1792,6 +1813,9 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **ms@2.0.0** * Licenses: MIT * Repository: [https://github.com/zeit/ms](https://github.com/zeit/ms) +1. **ms@2.1.1** + * Licenses: MIT + * Repository: [https://github.com/zeit/ms](https://github.com/zeit/ms) 1. **ms@2.1.2** * Licenses: MIT * Repository: [https://github.com/zeit/ms](https://github.com/zeit/ms) @@ -1804,7 +1828,7 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **needle@2.4.0** * Licenses: MIT * Repository: [https://github.com/tomas/needle](https://github.com/tomas/needle) -1. **neo-async@2.6.1** +1. **neo-async@2.6.0** * Licenses: MIT * Repository: [https://github.com/suguru03/neo-async](https://github.com/suguru03/neo-async) 1. **nested-error-stacks@2.1.0** @@ -1813,13 +1837,13 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **nice-try@1.0.5** * Licenses: MIT * Repository: [https://github.com/electerious/nice-try](https://github.com/electerious/nice-try) -1. **nise@1.5.1** +1. **nise@1.4.8** * Licenses: BSD-3-Clause * Repository: [https://github.com/sinonjs/nise](https://github.com/sinonjs/nise) -1. **node-fetch@2.6.0** +1. **node-fetch@2.3.0** * Licenses: MIT * Repository: [https://github.com/bitinn/node-fetch](https://github.com/bitinn/node-fetch) -1. **node-libs-browser@2.2.1** +1. **node-libs-browser@2.2.0** * Licenses: MIT * Repository: [https://github.com/webpack/node-libs-browser](https://github.com/webpack/node-libs-browser) 1. **node-modules-regexp@1.0.0** @@ -1915,12 +1939,15 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **p-finally@1.0.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/p-finally](https://github.com/sindresorhus/p-finally) -1. **p-is-promise@2.1.0** +1. **p-is-promise@2.0.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/p-is-promise](https://github.com/sindresorhus/p-is-promise) 1. **p-limit@1.3.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/p-limit](https://github.com/sindresorhus/p-limit) +1. **p-limit@2.1.0** + * Licenses: MIT + * Repository: [https://github.com/sindresorhus/p-limit](https://github.com/sindresorhus/p-limit) 1. **p-limit@2.2.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/p-limit](https://github.com/sindresorhus/p-limit) @@ -1933,13 +1960,16 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **p-try@1.0.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/p-try](https://github.com/sindresorhus/p-try) +1. **p-try@2.0.0** + * Licenses: MIT + * Repository: [https://github.com/sindresorhus/p-try](https://github.com/sindresorhus/p-try) 1. **p-try@2.2.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/p-try](https://github.com/sindresorhus/p-try) 1. **package-hash@3.0.0** * Licenses: ISC * Repository: [https://github.com/novemberborn/package-hash](https://github.com/novemberborn/package-hash) -1. **pako@1.0.10** +1. **pako@1.0.8** * Licenses: (MIT AND Zlib) * Repository: [https://github.com/nodeca/pako](https://github.com/nodeca/pako) 1. **parallel-transform@1.1.0** @@ -1957,7 +1987,7 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **pascalcase@0.1.1** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/pascalcase](https://github.com/jonschlinkert/pascalcase) -1. **path-browserify@0.0.1** +1. **path-browserify@0.0.0** * Licenses: MIT * Repository: [https://github.com/substack/path-browserify](https://github.com/substack/path-browserify) 1. **path-dirname@1.0.2** @@ -2005,6 +2035,9 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **private@0.1.8** * Licenses: MIT * Repository: [https://github.com/benjamn/private](https://github.com/benjamn/private) +1. **process-nextick-args@2.0.0** + * Licenses: MIT + * Repository: [https://github.com/calvinmetcalf/process-nextick-args](https://github.com/calvinmetcalf/process-nextick-args) 1. **process-nextick-args@2.0.1** * Licenses: MIT * Repository: [https://github.com/calvinmetcalf/process-nextick-args](https://github.com/calvinmetcalf/process-nextick-args) @@ -2056,7 +2089,7 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **querystring@0.2.0** * Licenses: MIT * Repository: [https://github.com/Gozala/querystring](https://github.com/Gozala/querystring) -1. **randombytes@2.1.0** +1. **randombytes@2.0.6** * Licenses: MIT * Repository: [https://github.com/crypto-browserify/randombytes](https://github.com/crypto-browserify/randombytes) 1. **randomfill@1.0.4** @@ -2068,7 +2101,7 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **read-installed@4.0.3** * Licenses: ISC * Repository: [https://github.com/isaacs/read-installed](https://github.com/isaacs/read-installed) -1. **read-package-json@2.0.13** +1. **read-package-json@2.1.0** * Licenses: ISC * Repository: [https://github.com/npm/read-package-json](https://github.com/npm/read-package-json) 1. **read-pkg-up@4.0.0** @@ -2128,6 +2161,9 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **require-directory@2.1.1** * Licenses: MIT * Repository: [https://github.com/troygoode/node-require-directory](https://github.com/troygoode/node-require-directory) +1. **require-main-filename@1.0.1** + * Licenses: ISC + * Repository: [https://github.com/yargs/require-main-filename](https://github.com/yargs/require-main-filename) 1. **require-main-filename@2.0.0** * Licenses: ISC * Repository: [https://github.com/yargs/require-main-filename](https://github.com/yargs/require-main-filename) @@ -2149,7 +2185,7 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **resolve-url@0.2.1** * Licenses: MIT * Repository: [https://github.com/lydell/resolve-url](https://github.com/lydell/resolve-url) -1. **resolve@1.12.0** +1. **resolve@1.10.0** * Licenses: MIT * Repository: [https://github.com/browserify/resolve](https://github.com/browserify/resolve) 1. **ret@0.1.15** @@ -2179,19 +2215,25 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **schema-utils@1.0.0** * Licenses: MIT * Repository: [https://github.com/webpack-contrib/schema-utils](https://github.com/webpack-contrib/schema-utils) +1. **semver@5.6.0** + * Licenses: ISC + * Repository: [https://github.com/npm/node-semver](https://github.com/npm/node-semver) 1. **semver@5.7.0** * Licenses: ISC * Repository: [https://github.com/npm/node-semver](https://github.com/npm/node-semver) 1. **semver@6.3.0** * Licenses: ISC * Repository: [https://github.com/npm/node-semver](https://github.com/npm/node-semver) -1. **serialize-javascript@1.7.0** +1. **serialize-javascript@1.6.1** * Licenses: BSD-3-Clause * Repository: [https://github.com/yahoo/serialize-javascript](https://github.com/yahoo/serialize-javascript) 1. **set-blocking@2.0.0** * Licenses: ISC * Repository: [https://github.com/yargs/set-blocking](https://github.com/yargs/set-blocking) -1. **set-value@2.0.1** +1. **set-value@0.4.3** + * Licenses: MIT + * Repository: [https://github.com/jonschlinkert/set-value](https://github.com/jonschlinkert/set-value) +1. **set-value@2.0.0** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/set-value](https://github.com/jonschlinkert/set-value) 1. **setimmediate@1.0.5** @@ -2212,7 +2254,7 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **signal-exit@3.0.2** * Licenses: ISC * Repository: [https://github.com/tapjs/signal-exit](https://github.com/tapjs/signal-exit) -1. **sinon@7.4.1** +1. **sinon@7.2.3** * Licenses: BSD-3-Clause * Repository: [https://github.com/sinonjs/sinon](https://github.com/sinonjs/sinon) 1. **slash@1.0.0** @@ -2239,6 +2281,9 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **source-map-resolve@0.5.2** * Licenses: MIT * Repository: [https://github.com/lydell/source-map-resolve](https://github.com/lydell/source-map-resolve) +1. **source-map-support@0.5.10** + * Licenses: MIT + * Repository: [https://github.com/evanw/node-source-map-support](https://github.com/evanw/node-source-map-support) 1. **source-map-support@0.5.13** * Licenses: MIT * Repository: [https://github.com/evanw/node-source-map-support](https://github.com/evanw/node-source-map-support) @@ -2251,7 +2296,7 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **source-map@0.6.1** * Licenses: BSD-3-Clause * Repository: [https://github.com/mozilla/source-map](https://github.com/mozilla/source-map) -1. **spawn-wrap@1.4.3** +1. **spawn-wrap@1.4.2** * Licenses: ISC * Repository: [https://github.com/isaacs/spawn-wrap](https://github.com/isaacs/spawn-wrap) 1. **spdx-compare@1.0.0** @@ -2275,7 +2320,7 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **spdx-satisfies@4.0.1** * Licenses: MIT * Repository: [https://github.com/kemitchell/spdx-satisfies.js](https://github.com/kemitchell/spdx-satisfies.js) -1. **spine-web@1.2.9** +1. **spine-web@1.2.10** * Licenses: Apache-2.0 * Repository: [https://github.com/SpineEventEngine/web](https://github.com/SpineEventEngine/web) 1. **split-string@3.1.0** @@ -2305,6 +2350,9 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **string-width@1.0.2** * Licenses: MIT * Repository: [https://github.com/sindresorhus/string-width](https://github.com/sindresorhus/string-width) +1. **string-width@2.1.1** + * Licenses: MIT + * Repository: [https://github.com/sindresorhus/string-width](https://github.com/sindresorhus/string-width) 1. **string-width@3.1.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/string-width](https://github.com/sindresorhus/string-width) @@ -2314,6 +2362,9 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **strip-ansi@3.0.1** * Licenses: MIT * Repository: [https://github.com/chalk/strip-ansi](https://github.com/chalk/strip-ansi) +1. **strip-ansi@4.0.0** + * Licenses: MIT + * Repository: [https://github.com/chalk/strip-ansi](https://github.com/chalk/strip-ansi) 1. **strip-ansi@5.2.0** * Licenses: MIT * Repository: [https://github.com/chalk/strip-ansi](https://github.com/chalk/strip-ansi) @@ -2338,7 +2389,7 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **supports-color@6.1.0** * Licenses: MIT * Repository: [https://github.com/chalk/supports-color](https://github.com/chalk/supports-color) -1. **tapable@1.1.3** +1. **tapable@1.1.1** * Licenses: MIT * Repository: [https://github.com/webpack/tapable](https://github.com/webpack/tapable) 1. **tar@4.4.10** @@ -2347,19 +2398,22 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **teeny-request@3.11.3** * Licenses: Apache-2.0 * Repository: [https://github.com/fhinkel/teeny-request](https://github.com/fhinkel/teeny-request) -1. **terser-webpack-plugin@1.4.1** +1. **terser-webpack-plugin@1.2.2** * Licenses: MIT * Repository: [https://github.com/webpack-contrib/terser-webpack-plugin](https://github.com/webpack-contrib/terser-webpack-plugin) -1. **terser@4.1.4** +1. **terser@3.16.1** * Licenses: BSD-2-Clause * Repository: [https://github.com/fabiosantoscode/terser](https://github.com/fabiosantoscode/terser) 1. **test-exclude@5.2.3** * Licenses: ISC * Repository: [https://github.com/istanbuljs/istanbuljs](https://github.com/istanbuljs/istanbuljs) +1. **text-encoding@0.6.4** + * Licenses: Unlicense + * Repository: [https://github.com/inexorabletash/text-encoding](https://github.com/inexorabletash/text-encoding) 1. **through2@2.0.5** * Licenses: MIT * Repository: [https://github.com/rvagg/through2](https://github.com/rvagg/through2) -1. **timers-browserify@2.0.11** +1. **timers-browserify@2.0.10** * Licenses: MIT * Repository: [https://github.com/jryans/timers-browserify](https://github.com/jryans/timers-browserify) 1. **to-arraybuffer@1.0.1** @@ -2386,6 +2440,9 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **trim-right@1.0.1** * Licenses: MIT * Repository: [https://github.com/sindresorhus/trim-right](https://github.com/sindresorhus/trim-right) +1. **tslib@1.10.0** + * Licenses: Apache-2.0 + * Repository: [https://github.com/Microsoft/tslib](https://github.com/Microsoft/tslib) 1. **tty-browserify@0.0.0** * Licenses: MIT * Repository: [https://github.com/substack/tty-browserify](https://github.com/substack/tty-browserify) @@ -2410,18 +2467,21 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **unicode-property-aliases-ecmascript@1.0.5** * Licenses: MIT * Repository: [https://github.com/mathiasbynens/unicode-property-aliases-ecmascript](https://github.com/mathiasbynens/unicode-property-aliases-ecmascript) -1. **union-value@1.0.1** +1. **union-value@1.0.0** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/union-value](https://github.com/jonschlinkert/union-value) 1. **unique-filename@1.1.1** * Licenses: ISC * Repository: [https://github.com/iarna/unique-filename](https://github.com/iarna/unique-filename) -1. **unique-slug@2.0.2** +1. **unique-slug@2.0.1** * Licenses: ISC * Repository: [https://github.com/iarna/unique-slug](https://github.com/iarna/unique-slug) 1. **unset-value@1.0.0** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/unset-value](https://github.com/jonschlinkert/unset-value) +1. **upath@1.1.0** + * Licenses: MIT + * Repository: [https://github.com/anodynos/upath](https://github.com/anodynos/upath) 1. **upath@1.1.2** * Licenses: MIT * Repository: [https://github.com/anodynos/upath](https://github.com/anodynos/upath) @@ -2452,28 +2512,28 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **util@0.11.1** * Licenses: MIT * Repository: [https://github.com/defunctzombie/node-util](https://github.com/defunctzombie/node-util) -1. **v8-compile-cache@2.0.3** +1. **v8-compile-cache@2.0.2** * Licenses: MIT - * Repository: [https://github.com/zertosh/v8-compile-cache](https://github.com/zertosh/v8-compile-cache) + * Repository: unknown 1. **validate-npm-package-license@3.0.4** * Licenses: Apache-2.0 * Repository: [https://github.com/kemitchell/validate-npm-package-license.js](https://github.com/kemitchell/validate-npm-package-license.js) -1. **vm-browserify@1.1.0** +1. **vm-browserify@0.0.4** * Licenses: MIT * Repository: [https://github.com/substack/vm-browserify](https://github.com/substack/vm-browserify) 1. **watchpack@1.6.0** * Licenses: MIT * Repository: [https://github.com/webpack/watchpack](https://github.com/webpack/watchpack) -1. **webpack-cli@3.3.6** +1. **webpack-cli@3.2.3** * Licenses: MIT * Repository: [https://github.com/webpack/webpack-cli](https://github.com/webpack/webpack-cli) 1. **webpack-merge@4.2.1** * Licenses: MIT * Repository: [https://github.com/survivejs/webpack-merge](https://github.com/survivejs/webpack-merge) -1. **webpack-sources@1.4.3** +1. **webpack-sources@1.3.0** * Licenses: MIT * Repository: [https://github.com/webpack/webpack-sources](https://github.com/webpack/webpack-sources) -1. **webpack@4.39.1** +1. **webpack@4.29.3** * Licenses: MIT * Repository: [https://github.com/webpack/webpack](https://github.com/webpack/webpack) 1. **websocket-driver@0.7.3** @@ -2500,7 +2560,7 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **wordwrap@0.0.3** * Licenses: MIT * Repository: [https://github.com/substack/node-wordwrap](https://github.com/substack/node-wordwrap) -1. **worker-farm@1.7.0** +1. **worker-farm@1.6.0** * Licenses: MIT * Repository: [https://github.com/rvagg/node-worker-farm](https://github.com/rvagg/node-worker-farm) 1. **wrap-ansi@2.1.0** @@ -2518,7 +2578,7 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **xmlhttprequest@1.8.0** * Licenses: MIT * Repository: [https://github.com/driverdan/node-XMLHttpRequest](https://github.com/driverdan/node-XMLHttpRequest) -1. **xtend@4.0.2** +1. **xtend@4.0.1** * Licenses: MIT * Repository: [https://github.com/Raynos/xtend](https://github.com/Raynos/xtend) 1. **y18n@3.2.1** @@ -2533,10 +2593,13 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice 1. **yallist@3.0.3** * Licenses: ISC * Repository: [https://github.com/isaacs/yallist](https://github.com/isaacs/yallist) +1. **yargs-parser@11.1.1** + * Licenses: ISC + * Repository: [https://github.com/yargs/yargs-parser](https://github.com/yargs/yargs-parser) 1. **yargs-parser@13.1.1** * Licenses: ISC * Repository: [https://github.com/yargs/yargs-parser](https://github.com/yargs/yargs-parser) -1. **yargs@13.2.4** +1. **yargs@12.0.5** * Licenses: MIT * Repository: [https://github.com/yargs/yargs](https://github.com/yargs/yargs) 1. **yargs@13.3.0** @@ -2547,12 +2610,12 @@ This report was generated on **Thu Dec 05 13:15:44 EET 2019** using [Gradle-Lice * Repository: [https://github.com/bcoe/yargs](https://github.com/bcoe/yargs) -This report was generated on **Thu Dec 05 2019 13:15:47 GMT+0200 (Eastern European Standard Time)** using [NPM License Checker](https://github.com/davglass/license-checker) library. +This report was generated on **Mon Dec 16 2019 23:16:10 GMT+0200 (FLE Standard Time)** using [NPM License Checker](https://github.com/davglass/license-checker) library. -# Dependencies of `io.spine.gcloud:spine-firebase-web:1.2.9` +# Dependencies of `io.spine.gcloud:spine-firebase-web:1.2.10` ## Runtime 1. **Group:** com.fasterxml.jackson.core **Name:** jackson-annotations **Version:** 2.9.10 @@ -3395,12 +3458,12 @@ This report was generated on **Thu Dec 05 2019 13:15:47 GMT+0200 (Eastern Europe The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Thu Dec 05 13:16:39 EET 2019** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). +This report was generated on **Mon Dec 16 23:16:28 EET 2019** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). -# Dependencies of `io.spine:spine-js-tests:1.2.9` +# Dependencies of `io.spine:spine-js-tests:1.2.10` ## Runtime 1. **Group:** com.google.code.findbugs **Name:** jsr305 **Version:** 3.0.2 @@ -3806,12 +3869,12 @@ This report was generated on **Thu Dec 05 13:16:39 EET 2019** using [Gradle-Lice The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Thu Dec 05 13:17:11 EET 2019** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). +This report was generated on **Mon Dec 16 23:16:37 EET 2019** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). -# Dependencies of `io.spine:spine-test-app:1.2.9` +# Dependencies of `io.spine:spine-test-app:1.2.10` ## Runtime 1. **Group:** com.fasterxml.jackson.core **Name:** jackson-annotations **Version:** 2.9.10 @@ -5409,12 +5472,12 @@ This report was generated on **Thu Dec 05 13:17:11 EET 2019** using [Gradle-Lice The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Thu Dec 05 13:18:19 EET 2019** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). +This report was generated on **Mon Dec 16 23:17:16 EET 2019** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). -# Dependencies of `io.spine:spine-testutil-web:1.2.9` +# Dependencies of `io.spine:spine-testutil-web:1.2.10` ## Runtime 1. **Group:** com.google.android **Name:** annotations **Version:** 4.1.1.4 @@ -5881,12 +5944,12 @@ This report was generated on **Thu Dec 05 13:18:19 EET 2019** using [Gradle-Lice The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Thu Dec 05 13:18:28 EET 2019** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). +This report was generated on **Mon Dec 16 23:17:26 EET 2019** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). -# Dependencies of `io.spine:spine-web:1.2.9` +# Dependencies of `io.spine:spine-web:1.2.10` ## Runtime 1. **Group:** com.google.android **Name:** annotations **Version:** 4.1.1.4 @@ -6429,4 +6492,4 @@ This report was generated on **Thu Dec 05 13:18:28 EET 2019** using [Gradle-Lice The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Thu Dec 05 13:18:39 EET 2019** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). \ No newline at end of file +This report was generated on **Mon Dec 16 23:17:37 EET 2019** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). \ No newline at end of file diff --git a/pom.xml b/pom.xml index e11a8c23a..48191f501 100644 --- a/pom.xml +++ b/pom.xml @@ -12,7 +12,7 @@ all modules and does not describe the project structure per-subproject. io.spine spine-web -1.2.9 +1.2.10 2015 @@ -76,7 +76,7 @@ all modules and does not describe the project structure per-subproject. io.spine spine-server - 1.2.9 + 1.2.10 compile @@ -100,13 +100,13 @@ all modules and does not describe the project structure per-subproject. io.spine spine-testutil-client - 1.2.9 + 1.2.10 test io.spine.tools spine-mute-logging - 1.2.3 + 1.2.4 test @@ -168,17 +168,17 @@ all modules and does not describe the project structure per-subproject. io.spine spine-client - 1.2.9 + 1.2.10 io.spine.tools spine-errorprone-checks - 1.2.3 + 1.2.4 io.spine.tools spine-protoc-plugin - 1.2.3 + 1.2.4 javax.servlet diff --git a/version.gradle b/version.gradle index ba0c60158..94e6f23b4 100644 --- a/version.gradle +++ b/version.gradle @@ -19,10 +19,10 @@ */ ext { - spineVersion = '1.2.9' - spineBaseVersion = '1.2.3' + spineVersion = '1.2.10' + spineBaseVersion = '1.2.4' - versionToPublish = '1.2.9' + versionToPublish = '1.2.10' versionToPublishJs = versionToPublish servletApiVersion = '3.1.0' From 9a348d5d3b9fe5a2fc4c73bef3ff18d9f01a728a Mon Sep 17 00:00:00 2001 From: Dima Kuzmin Date: Mon, 16 Dec 2019 23:59:41 +0200 Subject: [PATCH 3/4] Reword doc --- client-js/main/client/actor-request-factory.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client-js/main/client/actor-request-factory.js b/client-js/main/client/actor-request-factory.js index ee0148529..67ea37f60 100644 --- a/client-js/main/client/actor-request-factory.js +++ b/client-js/main/client/actor-request-factory.js @@ -47,7 +47,7 @@ import {EnumValue} from 'google-protobuf/google/protobuf/type_pb'; * Wraps the passed enum value as Protobuf `EnumValue` so it can be correctly processed by the * server. * - * As enums in Protobuf JS are declared as plain numbers, their values can be passed to their + * As enums in Protobuf JS are declared as plain `number`s, their values can be passed to this * method as-is, for example: `enumValueOf(Task.Severity.HIGH)`. * * @param {!number} value the enum value From 208a10ecc28b5483e919632ef8dadcc9abac7e9e Mon Sep 17 00:00:00 2001 From: dmitrykuzmin Date: Tue, 17 Dec 2019 15:51:13 +0200 Subject: [PATCH 4/4] Update the license report --- license-report.md | 606 +++++++++++++++++++++------------------------- 1 file changed, 276 insertions(+), 330 deletions(-) diff --git a/license-report.md b/license-report.md index 632d5358a..240440df4 100644 --- a/license-report.md +++ b/license-report.md @@ -376,20 +376,20 @@ The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). +This report was generated on **Tue Dec 17 15:47:22 EET 2019** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). #NPM dependencies of `spine-web@1.2.10` ## `Production` dependencies: -1. **base64-js@1.3.0** +1. **base64-js@1.3.1** * Licenses: MIT * Repository: [https://github.com/beatgammit/base64-js](https://github.com/beatgammit/base64-js) 1. **encoding@0.1.12** * Licenses: MIT * Repository: [https://github.com/andris9/encoding](https://github.com/andris9/encoding) -1. **google-protobuf@3.9.1** +1. **google-protobuf@3.11.1** * Licenses: BSD-3-Clause * Repository: [https://github.com/protocolbuffers/protobuf/tree/master/js](https://github.com/protocolbuffers/protobuf/tree/master/js) 1. **iconv-lite@0.4.24** @@ -404,7 +404,7 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **node-fetch@1.7.3** * Licenses: MIT * Repository: [https://github.com/bitinn/node-fetch](https://github.com/bitinn/node-fetch) -1. **rxjs@6.5.2** +1. **rxjs@6.5.3** * Licenses: Apache-2.0 * Repository: [https://github.com/reactivex/rxjs](https://github.com/reactivex/rxjs) 1. **safer-buffer@2.1.2** @@ -413,10 +413,10 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **spine-web@1.2.10** * Licenses: Apache-2.0 * Repository: [https://github.com/SpineEventEngine/web](https://github.com/SpineEventEngine/web) -1. **tslib@1.9.0** +1. **tslib@1.10.0** * Licenses: Apache-2.0 * Repository: [https://github.com/Microsoft/tslib](https://github.com/Microsoft/tslib) -1. **uuid@3.3.2** +1. **uuid@3.3.3** * Licenses: MIT * Repository: [https://github.com/kelektiv/node-uuid](https://github.com/kelektiv/node-uuid) 1. **whatwg-fetch@3.0.0** @@ -427,52 +427,55 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice ## `Development` dependencies: -1. **@babel/cli@7.5.5** +1. **@babel/cli@7.7.5** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-cli](https://github.com/babel/babel/tree/master/packages/babel-cli) 1. **@babel/code-frame@7.5.5** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-code-frame](https://github.com/babel/babel/tree/master/packages/babel-code-frame) -1. **@babel/core@7.5.5** +1. **@babel/core@7.7.5** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-core](https://github.com/babel/babel/tree/master/packages/babel-core) -1. **@babel/generator@7.5.5** +1. **@babel/generator@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-generator](https://github.com/babel/babel/tree/master/packages/babel-generator) -1. **@babel/helper-annotate-as-pure@7.0.0** +1. **@babel/helper-annotate-as-pure@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-annotate-as-pure](https://github.com/babel/babel/tree/master/packages/babel-helper-annotate-as-pure) -1. **@babel/helper-builder-binary-assignment-operator-visitor@7.1.0** +1. **@babel/helper-builder-binary-assignment-operator-visitor@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-builder-binary-assignment-operator-visitor](https://github.com/babel/babel/tree/master/packages/babel-helper-builder-binary-assignment-operator-visitor) -1. **@babel/helper-call-delegate@7.4.4** +1. **@babel/helper-call-delegate@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-call-delegate](https://github.com/babel/babel/tree/master/packages/babel-helper-call-delegate) -1. **@babel/helper-define-map@7.5.5** +1. **@babel/helper-create-regexp-features-plugin@7.7.4** + * Licenses: MIT + * Repository: [https://github.com/babel/babel](https://github.com/babel/babel) +1. **@babel/helper-define-map@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-define-map](https://github.com/babel/babel/tree/master/packages/babel-helper-define-map) -1. **@babel/helper-explode-assignable-expression@7.1.0** +1. **@babel/helper-explode-assignable-expression@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-explode-assignable-expression](https://github.com/babel/babel/tree/master/packages/babel-helper-explode-assignable-expression) -1. **@babel/helper-function-name@7.1.0** +1. **@babel/helper-function-name@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-function-name](https://github.com/babel/babel/tree/master/packages/babel-helper-function-name) -1. **@babel/helper-get-function-arity@7.0.0** +1. **@babel/helper-get-function-arity@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-get-function-arity](https://github.com/babel/babel/tree/master/packages/babel-helper-get-function-arity) -1. **@babel/helper-hoist-variables@7.4.4** +1. **@babel/helper-hoist-variables@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-hoist-variables](https://github.com/babel/babel/tree/master/packages/babel-helper-hoist-variables) -1. **@babel/helper-member-expression-to-functions@7.5.5** +1. **@babel/helper-member-expression-to-functions@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-member-expression-to-functions](https://github.com/babel/babel/tree/master/packages/babel-helper-member-expression-to-functions) -1. **@babel/helper-module-imports@7.0.0** +1. **@babel/helper-module-imports@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-module-imports](https://github.com/babel/babel/tree/master/packages/babel-helper-module-imports) -1. **@babel/helper-module-transforms@7.5.5** +1. **@babel/helper-module-transforms@7.7.5** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-module-transforms](https://github.com/babel/babel/tree/master/packages/babel-helper-module-transforms) -1. **@babel/helper-optimise-call-expression@7.0.0** +1. **@babel/helper-optimise-call-expression@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-optimise-call-expression](https://github.com/babel/babel/tree/master/packages/babel-helper-optimise-call-expression) 1. **@babel/helper-plugin-utils@7.0.0** @@ -481,238 +484,241 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **@babel/helper-regex@7.5.5** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-regex](https://github.com/babel/babel/tree/master/packages/babel-helper-regex) -1. **@babel/helper-remap-async-to-generator@7.1.0** +1. **@babel/helper-remap-async-to-generator@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-remap-async-to-generator](https://github.com/babel/babel/tree/master/packages/babel-helper-remap-async-to-generator) -1. **@babel/helper-replace-supers@7.5.5** +1. **@babel/helper-replace-supers@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-replace-supers](https://github.com/babel/babel/tree/master/packages/babel-helper-replace-supers) -1. **@babel/helper-simple-access@7.1.0** +1. **@babel/helper-simple-access@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-simple-access](https://github.com/babel/babel/tree/master/packages/babel-helper-simple-access) -1. **@babel/helper-split-export-declaration@7.4.4** +1. **@babel/helper-split-export-declaration@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-split-export-declaration](https://github.com/babel/babel/tree/master/packages/babel-helper-split-export-declaration) -1. **@babel/helper-wrap-function@7.2.0** +1. **@babel/helper-wrap-function@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-wrap-function](https://github.com/babel/babel/tree/master/packages/babel-helper-wrap-function) -1. **@babel/helpers@7.5.5** +1. **@babel/helpers@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-helpers](https://github.com/babel/babel/tree/master/packages/babel-helpers) 1. **@babel/highlight@7.5.0** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-highlight](https://github.com/babel/babel/tree/master/packages/babel-highlight) -1. **@babel/parser@7.5.5** +1. **@babel/parser@7.7.5** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-parser](https://github.com/babel/babel/tree/master/packages/babel-parser) -1. **@babel/plugin-proposal-async-generator-functions@7.2.0** +1. **@babel/plugin-proposal-async-generator-functions@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-async-generator-functions](https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-async-generator-functions) -1. **@babel/plugin-proposal-dynamic-import@7.5.0** +1. **@babel/plugin-proposal-dynamic-import@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-dynamic-import](https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-dynamic-import) -1. **@babel/plugin-proposal-json-strings@7.2.0** +1. **@babel/plugin-proposal-json-strings@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-json-strings](https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-json-strings) -1. **@babel/plugin-proposal-object-rest-spread@7.5.5** +1. **@babel/plugin-proposal-object-rest-spread@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-object-rest-spread](https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-object-rest-spread) -1. **@babel/plugin-proposal-optional-catch-binding@7.2.0** +1. **@babel/plugin-proposal-optional-catch-binding@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-optional-catch-binding](https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-optional-catch-binding) -1. **@babel/plugin-proposal-unicode-property-regex@7.4.4** +1. **@babel/plugin-proposal-unicode-property-regex@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-unicode-property-regex](https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-unicode-property-regex) -1. **@babel/plugin-syntax-async-generators@7.2.0** +1. **@babel/plugin-syntax-async-generators@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-async-generators](https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-async-generators) -1. **@babel/plugin-syntax-dynamic-import@7.2.0** +1. **@babel/plugin-syntax-dynamic-import@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-dynamic-import](https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-dynamic-import) -1. **@babel/plugin-syntax-json-strings@7.2.0** +1. **@babel/plugin-syntax-json-strings@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-json-strings](https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-json-strings) -1. **@babel/plugin-syntax-object-rest-spread@7.2.0** +1. **@babel/plugin-syntax-object-rest-spread@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-object-rest-spread](https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-object-rest-spread) -1. **@babel/plugin-syntax-optional-catch-binding@7.2.0** +1. **@babel/plugin-syntax-optional-catch-binding@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-optional-catch-binding](https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-optional-catch-binding) -1. **@babel/plugin-transform-arrow-functions@7.2.0** +1. **@babel/plugin-syntax-top-level-await@7.7.4** + * Licenses: MIT + * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-top-level-await](https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-top-level-await) +1. **@babel/plugin-transform-arrow-functions@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-arrow-functions](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-arrow-functions) -1. **@babel/plugin-transform-async-to-generator@7.5.0** +1. **@babel/plugin-transform-async-to-generator@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-async-to-generator](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-async-to-generator) -1. **@babel/plugin-transform-block-scoped-functions@7.2.0** +1. **@babel/plugin-transform-block-scoped-functions@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-block-scoped-functions](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-block-scoped-functions) -1. **@babel/plugin-transform-block-scoping@7.5.5** +1. **@babel/plugin-transform-block-scoping@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-block-scoping](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-block-scoping) -1. **@babel/plugin-transform-classes@7.5.5** +1. **@babel/plugin-transform-classes@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-classes](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-classes) -1. **@babel/plugin-transform-computed-properties@7.2.0** +1. **@babel/plugin-transform-computed-properties@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-computed-properties](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-computed-properties) -1. **@babel/plugin-transform-destructuring@7.5.0** +1. **@babel/plugin-transform-destructuring@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-destructuring](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-destructuring) -1. **@babel/plugin-transform-dotall-regex@7.4.4** +1. **@babel/plugin-transform-dotall-regex@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-dotall-regex](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-dotall-regex) -1. **@babel/plugin-transform-duplicate-keys@7.5.0** +1. **@babel/plugin-transform-duplicate-keys@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-duplicate-keys](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-duplicate-keys) -1. **@babel/plugin-transform-exponentiation-operator@7.2.0** +1. **@babel/plugin-transform-exponentiation-operator@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-exponentiation-operator](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-exponentiation-operator) -1. **@babel/plugin-transform-for-of@7.4.4** +1. **@babel/plugin-transform-for-of@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-for-of](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-for-of) -1. **@babel/plugin-transform-function-name@7.4.4** +1. **@babel/plugin-transform-function-name@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-function-name](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-function-name) -1. **@babel/plugin-transform-literals@7.2.0** +1. **@babel/plugin-transform-literals@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-literals](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-literals) -1. **@babel/plugin-transform-member-expression-literals@7.2.0** +1. **@babel/plugin-transform-member-expression-literals@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-member-expression-literals](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-member-expression-literals) -1. **@babel/plugin-transform-modules-amd@7.5.0** +1. **@babel/plugin-transform-modules-amd@7.7.5** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-amd](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-amd) -1. **@babel/plugin-transform-modules-commonjs@7.5.0** +1. **@babel/plugin-transform-modules-commonjs@7.7.5** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-commonjs](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-commonjs) -1. **@babel/plugin-transform-modules-systemjs@7.5.0** +1. **@babel/plugin-transform-modules-systemjs@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-systemjs](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-systemjs) -1. **@babel/plugin-transform-modules-umd@7.2.0** +1. **@babel/plugin-transform-modules-umd@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-umd](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-umd) -1. **@babel/plugin-transform-named-capturing-groups-regex@7.4.5** +1. **@babel/plugin-transform-named-capturing-groups-regex@7.7.4** * Licenses: MIT - * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-named-capturing-groups-regex](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-named-capturing-groups-regex) -1. **@babel/plugin-transform-new-target@7.4.4** + * Repository: [https://github.com/babel/babel](https://github.com/babel/babel) +1. **@babel/plugin-transform-new-target@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-new-target](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-new-target) -1. **@babel/plugin-transform-object-super@7.5.5** +1. **@babel/plugin-transform-object-super@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-super](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-super) -1. **@babel/plugin-transform-parameters@7.4.4** +1. **@babel/plugin-transform-parameters@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-parameters](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-parameters) -1. **@babel/plugin-transform-property-literals@7.2.0** +1. **@babel/plugin-transform-property-literals@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-property-literals](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-property-literals) -1. **@babel/plugin-transform-regenerator@7.4.5** +1. **@babel/plugin-transform-regenerator@7.7.5** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-regenerator](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-regenerator) -1. **@babel/plugin-transform-reserved-words@7.2.0** +1. **@babel/plugin-transform-reserved-words@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-reserved-words](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-reserved-words) -1. **@babel/plugin-transform-shorthand-properties@7.2.0** +1. **@babel/plugin-transform-shorthand-properties@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-shorthand-properties](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-shorthand-properties) -1. **@babel/plugin-transform-spread@7.2.2** +1. **@babel/plugin-transform-spread@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-spread](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-spread) -1. **@babel/plugin-transform-sticky-regex@7.2.0** +1. **@babel/plugin-transform-sticky-regex@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-sticky-regex](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-sticky-regex) -1. **@babel/plugin-transform-template-literals@7.4.4** +1. **@babel/plugin-transform-template-literals@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-template-literals](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-template-literals) -1. **@babel/plugin-transform-typeof-symbol@7.2.0** +1. **@babel/plugin-transform-typeof-symbol@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-typeof-symbol](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-typeof-symbol) -1. **@babel/plugin-transform-unicode-regex@7.4.4** +1. **@babel/plugin-transform-unicode-regex@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-unicode-regex](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-unicode-regex) -1. **@babel/preset-env@7.5.5** +1. **@babel/preset-env@7.7.6** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-preset-env](https://github.com/babel/babel/tree/master/packages/babel-preset-env) -1. **@babel/register@7.5.5** +1. **@babel/register@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-register](https://github.com/babel/babel/tree/master/packages/babel-register) -1. **@babel/template@7.4.4** +1. **@babel/template@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-template](https://github.com/babel/babel/tree/master/packages/babel-template) -1. **@babel/traverse@7.5.5** +1. **@babel/traverse@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-traverse](https://github.com/babel/babel/tree/master/packages/babel-traverse) -1. **@babel/types@7.5.5** +1. **@babel/types@7.7.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-types](https://github.com/babel/babel/tree/master/packages/babel-types) 1. **@firebase/app-types@0.4.3** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) -1. **@firebase/app@0.4.14** +1. **@firebase/app@0.4.17** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) -1. **@firebase/auth-types@0.7.2** +1. **@firebase/auth-types@0.8.0** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) -1. **@firebase/auth@0.11.8** +1. **@firebase/auth@0.12.0** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) -1. **@firebase/database-types@0.4.2** +1. **@firebase/database-types@0.4.3** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) -1. **@firebase/database@0.5.0** +1. **@firebase/database@0.5.4** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) -1. **@firebase/firestore-types@1.4.4** +1. **@firebase/firestore-types@1.5.0** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) -1. **@firebase/firestore@1.4.10** +1. **@firebase/firestore@1.5.3** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) 1. **@firebase/functions-types@0.3.8** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) -1. **@firebase/functions@0.4.15** +1. **@firebase/functions@0.4.18** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) 1. **@firebase/installations-types@0.1.2** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) -1. **@firebase/installations@0.2.4** +1. **@firebase/installations@0.2.7** * Licenses: Apache-2.0 * Repository: unknown -1. **@firebase/logger@0.1.22** +1. **@firebase/logger@0.1.25** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) 1. **@firebase/messaging-types@0.3.2** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) -1. **@firebase/messaging@0.4.8** +1. **@firebase/messaging@0.4.11** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) 1. **@firebase/performance-types@0.0.3** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk/tree/master/packages/performance-types](https://github.com/firebase/firebase-js-sdk/tree/master/packages/performance-types) -1. **@firebase/performance@0.2.15** +1. **@firebase/performance@0.2.19** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk/tree/master/packages/performance](https://github.com/firebase/firebase-js-sdk/tree/master/packages/performance) -1. **@firebase/polyfill@0.3.19** +1. **@firebase/polyfill@0.3.22** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) 1. **@firebase/storage-types@0.3.3** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) -1. **@firebase/storage@0.3.9** +1. **@firebase/storage@0.3.12** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) -1. **@firebase/util@0.2.25** +1. **@firebase/util@0.2.28** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) -1. **@firebase/webchannel-wrapper@0.2.24** +1. **@firebase/webchannel-wrapper@0.2.26** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) -1. **@grpc/proto-loader@0.5.1** +1. **@grpc/proto-loader@0.5.3** * Licenses: Apache-2.0 * Repository: [https://github.com/grpc/grpc-node](https://github.com/grpc/grpc-node) 1. **@protobufjs/aspromise@1.1.2** @@ -745,108 +751,108 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **@protobufjs/utf8@1.1.0** * Licenses: BSD-3-Clause * Repository: [https://github.com/dcodeIO/protobuf.js](https://github.com/dcodeIO/protobuf.js) -1. **@sinonjs/commons@1.3.0** +1. **@sinonjs/commons@1.6.0** * Licenses: BSD-3-Clause * Repository: [https://github.com/sinonjs/commons](https://github.com/sinonjs/commons) -1. **@sinonjs/formatio@3.1.0** +1. **@sinonjs/formatio@3.2.2** * Licenses: BSD-3-Clause * Repository: [https://github.com/sinonjs/formatio](https://github.com/sinonjs/formatio) -1. **@sinonjs/samsam@3.1.1** +1. **@sinonjs/samsam@3.3.3** * Licenses: BSD-3-Clause * Repository: [https://github.com/sinonjs/samsam](https://github.com/sinonjs/samsam) +1. **@sinonjs/text-encoding@0.7.1** + * Licenses: (Unlicense OR Apache-2.0) + * Repository: [https://github.com/inexorabletash/text-encoding](https://github.com/inexorabletash/text-encoding) +1. **@types/bytebuffer@5.0.40** + * Licenses: MIT + * Repository: [https://github.com/DefinitelyTyped/DefinitelyTyped](https://github.com/DefinitelyTyped/DefinitelyTyped) 1. **@types/long@4.0.0** * Licenses: MIT * Repository: [https://github.com/DefinitelyTyped/DefinitelyTyped](https://github.com/DefinitelyTyped/DefinitelyTyped) -1. **@types/node@10.14.15** +1. **@types/node@10.17.9** * Licenses: MIT * Repository: [https://github.com/DefinitelyTyped/DefinitelyTyped](https://github.com/DefinitelyTyped/DefinitelyTyped) -1. **@webassemblyjs/ast@1.7.11** +1. **@webassemblyjs/ast@1.8.5** * Licenses: MIT * Repository: [https://github.com/xtuc/webassemblyjs](https://github.com/xtuc/webassemblyjs) -1. **@webassemblyjs/floating-point-hex-parser@1.7.11** +1. **@webassemblyjs/floating-point-hex-parser@1.8.5** * Licenses: MIT * Repository: [https://github.com/xtuc/webassemblyjs](https://github.com/xtuc/webassemblyjs) -1. **@webassemblyjs/helper-api-error@1.7.11** +1. **@webassemblyjs/helper-api-error@1.8.5** * Licenses: MIT * Repository: unknown -1. **@webassemblyjs/helper-buffer@1.7.11** +1. **@webassemblyjs/helper-buffer@1.8.5** * Licenses: MIT * Repository: [https://github.com/xtuc/webassemblyjs](https://github.com/xtuc/webassemblyjs) -1. **@webassemblyjs/helper-code-frame@1.7.11** +1. **@webassemblyjs/helper-code-frame@1.8.5** * Licenses: MIT * Repository: [https://github.com/xtuc/webassemblyjs](https://github.com/xtuc/webassemblyjs) -1. **@webassemblyjs/helper-fsm@1.7.11** +1. **@webassemblyjs/helper-fsm@1.8.5** * Licenses: ISC * Repository: unknown -1. **@webassemblyjs/helper-module-context@1.7.11** +1. **@webassemblyjs/helper-module-context@1.8.5** * Licenses: MIT * Repository: [https://github.com/xtuc/webassemblyjs](https://github.com/xtuc/webassemblyjs) -1. **@webassemblyjs/helper-wasm-bytecode@1.7.11** +1. **@webassemblyjs/helper-wasm-bytecode@1.8.5** * Licenses: MIT * Repository: [https://github.com/xtuc/webassemblyjs](https://github.com/xtuc/webassemblyjs) -1. **@webassemblyjs/helper-wasm-section@1.7.11** +1. **@webassemblyjs/helper-wasm-section@1.8.5** * Licenses: MIT * Repository: [https://github.com/xtuc/webassemblyjs](https://github.com/xtuc/webassemblyjs) -1. **@webassemblyjs/ieee754@1.7.11** +1. **@webassemblyjs/ieee754@1.8.5** * Licenses: MIT * Repository: unknown -1. **@webassemblyjs/leb128@1.7.11** +1. **@webassemblyjs/leb128@1.8.5** * Licenses: MIT * Repository: unknown -1. **@webassemblyjs/utf8@1.7.11** +1. **@webassemblyjs/utf8@1.8.5** * Licenses: MIT * Repository: [https://github.com/xtuc/webassemblyjs](https://github.com/xtuc/webassemblyjs) -1. **@webassemblyjs/wasm-edit@1.7.11** +1. **@webassemblyjs/wasm-edit@1.8.5** * Licenses: MIT * Repository: [https://github.com/xtuc/webassemblyjs](https://github.com/xtuc/webassemblyjs) -1. **@webassemblyjs/wasm-gen@1.7.11** +1. **@webassemblyjs/wasm-gen@1.8.5** * Licenses: MIT * Repository: [https://github.com/xtuc/webassemblyjs](https://github.com/xtuc/webassemblyjs) -1. **@webassemblyjs/wasm-opt@1.7.11** +1. **@webassemblyjs/wasm-opt@1.8.5** * Licenses: MIT * Repository: [https://github.com/xtuc/webassemblyjs](https://github.com/xtuc/webassemblyjs) -1. **@webassemblyjs/wasm-parser@1.7.11** +1. **@webassemblyjs/wasm-parser@1.8.5** * Licenses: MIT * Repository: [https://github.com/xtuc/webassemblyjs](https://github.com/xtuc/webassemblyjs) -1. **@webassemblyjs/wast-parser@1.7.11** +1. **@webassemblyjs/wast-parser@1.8.5** * Licenses: MIT * Repository: [https://github.com/xtuc/webassemblyjs](https://github.com/xtuc/webassemblyjs) -1. **@webassemblyjs/wast-printer@1.7.11** +1. **@webassemblyjs/wast-printer@1.8.5** * Licenses: MIT * Repository: [https://github.com/xtuc/webassemblyjs](https://github.com/xtuc/webassemblyjs) 1. **@xtuc/ieee754@1.2.0** * Licenses: BSD-3-Clause * Repository: [https://github.com/feross/ieee754](https://github.com/feross/ieee754) -1. **@xtuc/long@4.2.1** +1. **@xtuc/long@4.2.2** * Licenses: Apache-2.0 * Repository: [https://github.com/dcodeIO/long.js](https://github.com/dcodeIO/long.js) 1. **abbrev@1.1.1** * Licenses: ISC * Repository: [https://github.com/isaacs/abbrev-js](https://github.com/isaacs/abbrev-js) -1. **acorn-dynamic-import@4.0.0** - * Licenses: MIT - * Repository: [https://github.com/kesne/acorn-dynamic-import](https://github.com/kesne/acorn-dynamic-import) -1. **acorn@6.1.0** +1. **acorn@6.4.0** * Licenses: MIT * Repository: [https://github.com/acornjs/acorn](https://github.com/acornjs/acorn) -1. **agent-base@4.2.1** +1. **agent-base@4.3.0** * Licenses: MIT * Repository: [https://github.com/TooTallNate/node-agent-base](https://github.com/TooTallNate/node-agent-base) 1. **ajv-errors@1.0.1** * Licenses: MIT * Repository: [https://github.com/epoberezkin/ajv-errors](https://github.com/epoberezkin/ajv-errors) -1. **ajv-keywords@3.4.0** +1. **ajv-keywords@3.4.1** * Licenses: MIT * Repository: [https://github.com/epoberezkin/ajv-keywords](https://github.com/epoberezkin/ajv-keywords) -1. **ajv@6.9.1** +1. **ajv@6.10.2** * Licenses: MIT * Repository: [https://github.com/epoberezkin/ajv](https://github.com/epoberezkin/ajv) 1. **ansi-regex@2.1.1** * Licenses: MIT * Repository: [https://github.com/chalk/ansi-regex](https://github.com/chalk/ansi-regex) -1. **ansi-regex@3.0.0** - * Licenses: MIT - * Repository: [https://github.com/chalk/ansi-regex](https://github.com/chalk/ansi-regex) 1. **ansi-regex@4.1.0** * Licenses: MIT * Repository: [https://github.com/chalk/ansi-regex](https://github.com/chalk/ansi-regex) @@ -904,13 +910,13 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **asn1.js@4.10.1** * Licenses: MIT * Repository: [https://github.com/indutny/asn1.js](https://github.com/indutny/asn1.js) -1. **assert@1.4.1** +1. **assert@1.5.0** * Licenses: MIT - * Repository: [https://github.com/defunctzombie/commonjs-assert](https://github.com/defunctzombie/commonjs-assert) + * Repository: [https://github.com/browserify/commonjs-assert](https://github.com/browserify/commonjs-assert) 1. **assign-symbols@1.0.0** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/assign-symbols](https://github.com/jonschlinkert/assign-symbols) -1. **async-each@1.0.1** +1. **async-each@1.0.3** * Licenses: MIT * Repository: [https://github.com/paulmillr/async-each](https://github.com/paulmillr/async-each) 1. **atob@2.1.2** @@ -958,10 +964,10 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **big.js@5.2.2** * Licenses: MIT * Repository: [https://github.com/MikeMcl/big.js](https://github.com/MikeMcl/big.js) -1. **binary-extensions@1.13.0** +1. **binary-extensions@1.13.1** * Licenses: MIT * Repository: [https://github.com/sindresorhus/binary-extensions](https://github.com/sindresorhus/binary-extensions) -1. **bluebird@3.5.3** +1. **bluebird@3.7.2** * Licenses: MIT * Repository: [https://github.com/petkaantonov/bluebird](https://github.com/petkaantonov/bluebird) 1. **bn.js@4.11.8** @@ -997,7 +1003,7 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **browserify-zlib@0.2.0** * Licenses: MIT * Repository: [https://github.com/devongovett/browserify-zlib](https://github.com/devongovett/browserify-zlib) -1. **browserslist@4.6.6** +1. **browserslist@4.8.2** * Licenses: MIT * Repository: [https://github.com/browserslist/browserslist](https://github.com/browserslist/browserslist) 1. **buffer-from@1.1.1** @@ -1006,7 +1012,7 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **buffer-xor@1.0.3** * Licenses: MIT * Repository: [https://github.com/crypto-browserify/buffer-xor](https://github.com/crypto-browserify/buffer-xor) -1. **buffer@4.9.1** +1. **buffer@4.9.2** * Licenses: MIT * Repository: [https://github.com/feross/buffer](https://github.com/feross/buffer) 1. **builtin-status-codes@3.0.0** @@ -1015,9 +1021,9 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **bytebuffer@5.0.1** * Licenses: Apache-2.0 * Repository: [https://github.com/dcodeIO/bytebuffer.js](https://github.com/dcodeIO/bytebuffer.js) -1. **cacache@11.3.2** +1. **cacache@12.0.3** * Licenses: ISC - * Repository: [https://github.com/zkat/cacache](https://github.com/zkat/cacache) + * Repository: [https://github.com/npm/cacache](https://github.com/npm/cacache) 1. **cache-base@1.0.1** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/cache-base](https://github.com/jonschlinkert/cache-base) @@ -1027,13 +1033,10 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **camelcase@2.1.1** * Licenses: MIT * Repository: [https://github.com/sindresorhus/camelcase](https://github.com/sindresorhus/camelcase) -1. **camelcase@5.0.0** - * Licenses: MIT - * Repository: [https://github.com/sindresorhus/camelcase](https://github.com/sindresorhus/camelcase) 1. **camelcase@5.3.1** * Licenses: MIT * Repository: [https://github.com/sindresorhus/camelcase](https://github.com/sindresorhus/camelcase) -1. **caniuse-lite@1.0.30000989** +1. **caniuse-lite@1.0.30001015** * Licenses: CC-BY-4.0 * Repository: [https://github.com/ben-eb/caniuse-lite](https://github.com/ben-eb/caniuse-lite) 1. **chalk@1.1.3** @@ -1042,16 +1045,16 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **chalk@2.4.2** * Licenses: MIT * Repository: [https://github.com/chalk/chalk](https://github.com/chalk/chalk) -1. **chokidar@2.1.1** - * Licenses: MIT - * Repository: [https://github.com/paulmillr/chokidar](https://github.com/paulmillr/chokidar) -1. **chokidar@2.1.6** +1. **chokidar@2.1.8** * Licenses: MIT * Repository: [https://github.com/paulmillr/chokidar](https://github.com/paulmillr/chokidar) -1. **chownr@1.1.1** +1. **chownr@1.1.2** * Licenses: ISC * Repository: [https://github.com/isaacs/chownr](https://github.com/isaacs/chownr) -1. **chrome-trace-event@1.0.0** +1. **chownr@1.1.3** + * Licenses: ISC + * Repository: [https://github.com/isaacs/chownr](https://github.com/isaacs/chownr) +1. **chrome-trace-event@1.0.2** * Licenses: MIT * Repository: [github.com:samccone/chrome-trace-event](github.com:samccone/chrome-trace-event) 1. **cipher-base@1.0.4** @@ -1063,16 +1066,13 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **cliui@3.2.0** * Licenses: ISC * Repository: [https://github.com/yargs/cliui](https://github.com/yargs/cliui) -1. **cliui@4.1.0** - * Licenses: ISC - * Repository: [https://github.com/yargs/cliui](https://github.com/yargs/cliui) 1. **cliui@5.0.0** * Licenses: ISC * Repository: [https://github.com/yargs/cliui](https://github.com/yargs/cliui) 1. **code-point-at@1.1.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/code-point-at](https://github.com/sindresorhus/code-point-at) -1. **codecov@3.2.0** +1. **codecov@3.6.1** * Licenses: MIT * Repository: [https://github.com/codecov/codecov-node](https://github.com/codecov/codecov-node) 1. **collection-visit@1.0.0** @@ -1090,19 +1090,16 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **commander@2.15.1** * Licenses: MIT * Repository: [https://github.com/tj/commander.js](https://github.com/tj/commander.js) -1. **commander@2.17.1** - * Licenses: MIT - * Repository: [https://github.com/tj/commander.js](https://github.com/tj/commander.js) -1. **commander@2.19.0** +1. **commander@2.20.3** * Licenses: MIT * Repository: [https://github.com/tj/commander.js](https://github.com/tj/commander.js) -1. **commander@2.20.0** +1. **commander@4.0.1** * Licenses: MIT * Repository: [https://github.com/tj/commander.js](https://github.com/tj/commander.js) 1. **commondir@1.0.1** * Licenses: MIT * Repository: [https://github.com/substack/node-commondir](https://github.com/substack/node-commondir) -1. **component-emitter@1.2.1** +1. **component-emitter@1.3.0** * Licenses: MIT * Repository: [https://github.com/component/emitter](https://github.com/component/emitter) 1. **concat-map@0.0.1** @@ -1111,16 +1108,16 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **concat-stream@1.6.2** * Licenses: MIT * Repository: [https://github.com/maxogden/concat-stream](https://github.com/maxogden/concat-stream) -1. **console-browserify@1.1.0** +1. **console-browserify@1.2.0** * Licenses: MIT - * Repository: [https://github.com/Raynos/console-browserify](https://github.com/Raynos/console-browserify) + * Repository: [https://github.com/browserify/console-browserify](https://github.com/browserify/console-browserify) 1. **console-control-strings@1.1.0** * Licenses: ISC * Repository: [https://github.com/iarna/console-control-strings](https://github.com/iarna/console-control-strings) 1. **constants-browserify@1.0.0** * Licenses: MIT * Repository: [https://github.com/juliangruber/constants-browserify](https://github.com/juliangruber/constants-browserify) -1. **convert-source-map@1.6.0** +1. **convert-source-map@1.7.0** * Licenses: MIT * Repository: [https://github.com/thlorenz/convert-source-map](https://github.com/thlorenz/convert-source-map) 1. **copy-concurrently@1.0.5** @@ -1129,13 +1126,10 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **copy-descriptor@0.1.1** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/copy-descriptor](https://github.com/jonschlinkert/copy-descriptor) -1. **core-js-compat@3.2.1** +1. **core-js-compat@3.5.0** * Licenses: MIT * Repository: [https://github.com/zloirock/core-js](https://github.com/zloirock/core-js) -1. **core-js@2.5.5** - * Licenses: MIT - * Repository: [https://github.com/zloirock/core-js](https://github.com/zloirock/core-js) -1. **core-js@3.1.4** +1. **core-js@2.6.11** * Licenses: MIT * Repository: [https://github.com/zloirock/core-js](https://github.com/zloirock/core-js) 1. **core-js@3.2.1** @@ -1165,12 +1159,9 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **crypto-browserify@3.12.0** * Licenses: MIT * Repository: [https://github.com/crypto-browserify/crypto-browserify](https://github.com/crypto-browserify/crypto-browserify) -1. **cyclist@0.2.2** - * Licenses: MIT* - * Repository: [https://github.com/mafintosh/cyclist](https://github.com/mafintosh/cyclist) -1. **date-now@0.1.4** +1. **cyclist@1.0.1** * Licenses: MIT - * Repository: [https://github.com/Colingo/date-now](https://github.com/Colingo/date-now) + * Repository: [https://github.com/mafintosh/cyclist](https://github.com/mafintosh/cyclist) 1. **debug@2.6.9** * Licenses: MIT * Repository: [https://github.com/visionmedia/debug](https://github.com/visionmedia/debug) @@ -1213,7 +1204,7 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **delegates@1.0.0** * Licenses: MIT * Repository: [https://github.com/visionmedia/node-delegates](https://github.com/visionmedia/node-delegates) -1. **des.js@1.0.0** +1. **des.js@1.0.1** * Licenses: MIT * Repository: [https://github.com/indutny/des.js](https://github.com/indutny/des.js) 1. **detect-file@1.0.0** @@ -1240,10 +1231,10 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **duplexify@3.7.1** * Licenses: MIT * Repository: [https://github.com/mafintosh/duplexify](https://github.com/mafintosh/duplexify) -1. **electron-to-chromium@1.3.233** +1. **electron-to-chromium@1.3.322** * Licenses: ISC * Repository: [https://github.com/kilian/electron-to-chromium](https://github.com/kilian/electron-to-chromium) -1. **elliptic@6.4.1** +1. **elliptic@6.5.2** * Licenses: MIT * Repository: [https://github.com/indutny/elliptic](https://github.com/indutny/elliptic) 1. **emoji-regex@7.0.3** @@ -1252,12 +1243,15 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **emojis-list@2.1.0** * Licenses: MIT * Repository: [https://github.com/kikobeats/emojis-list](https://github.com/kikobeats/emojis-list) -1. **end-of-stream@1.4.1** +1. **end-of-stream@1.4.4** * Licenses: MIT * Repository: [https://github.com/mafintosh/end-of-stream](https://github.com/mafintosh/end-of-stream) 1. **enhanced-resolve@4.1.0** * Licenses: MIT * Repository: [https://github.com/webpack/enhanced-resolve](https://github.com/webpack/enhanced-resolve) +1. **enhanced-resolve@4.1.1** + * Licenses: MIT + * Repository: [https://github.com/webpack/enhanced-resolve](https://github.com/webpack/enhanced-resolve) 1. **errno@0.1.7** * Licenses: MIT * Repository: [https://github.com/rvagg/node-errno](https://github.com/rvagg/node-errno) @@ -1267,7 +1261,7 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **es6-error@4.1.1** * Licenses: MIT * Repository: [https://github.com/bjyoungblood/es6-error](https://github.com/bjyoungblood/es6-error) -1. **es6-promise@4.2.5** +1. **es6-promise@4.2.8** * Licenses: MIT * Repository: [https://github.com/stefanpenner/es6-promise](https://github.com/stefanpenner/es6-promise) 1. **es6-promisify@5.0.0** @@ -1276,7 +1270,7 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **escape-string-regexp@1.0.5** * Licenses: MIT * Repository: [https://github.com/sindresorhus/escape-string-regexp](https://github.com/sindresorhus/escape-string-regexp) -1. **eslint-scope@4.0.0** +1. **eslint-scope@4.0.3** * Licenses: BSD-2-Clause * Repository: [https://github.com/eslint/eslint-scope](https://github.com/eslint/eslint-scope) 1. **esprima@4.0.1** @@ -1285,11 +1279,11 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **esrecurse@4.2.1** * Licenses: BSD-2-Clause * Repository: [https://github.com/estools/esrecurse](https://github.com/estools/esrecurse) -1. **estraverse@4.2.0** +1. **estraverse@4.3.0** * Licenses: BSD-2-Clause * Repository: [https://github.com/estools/estraverse](https://github.com/estools/estraverse) -1. **esutils@2.0.2** - * Licenses: BSD +1. **esutils@2.0.3** + * Licenses: BSD-2-Clause * Repository: [https://github.com/estools/esutils](https://github.com/estools/esutils) 1. **events@3.0.0** * Licenses: MIT @@ -1330,12 +1324,9 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **fill-range@4.0.0** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/fill-range](https://github.com/jonschlinkert/fill-range) -1. **find-babel-config@1.1.0** +1. **find-babel-config@1.2.0** * Licenses: MIT * Repository: [https://github.com/tleunen/find-babel-config](https://github.com/tleunen/find-babel-config) -1. **find-cache-dir@2.0.0** - * Licenses: MIT - * Repository: [https://github.com/avajs/find-cache-dir](https://github.com/avajs/find-cache-dir) 1. **find-cache-dir@2.1.0** * Licenses: MIT * Repository: [https://github.com/avajs/find-cache-dir](https://github.com/avajs/find-cache-dir) @@ -1345,10 +1336,10 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **find-up@3.0.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/find-up](https://github.com/sindresorhus/find-up) -1. **findup-sync@2.0.0** +1. **findup-sync@3.0.0** * Licenses: MIT - * Repository: [https://github.com/js-cli/node-findup-sync](https://github.com/js-cli/node-findup-sync) -1. **firebase@6.4.0** + * Repository: [https://github.com/gulpjs/findup-sync](https://github.com/gulpjs/findup-sync) +1. **firebase@6.6.2** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) 1. **flush-write-stream@1.1.1** @@ -1384,9 +1375,6 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **gauge@2.7.4** * Licenses: ISC * Repository: [https://github.com/iarna/gauge](https://github.com/iarna/gauge) -1. **get-caller-file@1.0.3** - * Licenses: ISC - * Repository: [https://github.com/stefanpenner/get-caller-file](https://github.com/stefanpenner/get-caller-file) 1. **get-caller-file@2.0.5** * Licenses: ISC * Repository: [https://github.com/stefanpenner/get-caller-file](https://github.com/stefanpenner/get-caller-file) @@ -1402,31 +1390,40 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **glob@7.1.2** * Licenses: ISC * Repository: [https://github.com/isaacs/node-glob](https://github.com/isaacs/node-glob) -1. **glob@7.1.3** +1. **glob@7.1.4** + * Licenses: ISC + * Repository: [https://github.com/isaacs/node-glob](https://github.com/isaacs/node-glob) +1. **glob@7.1.6** * Licenses: ISC * Repository: [https://github.com/isaacs/node-glob](https://github.com/isaacs/node-glob) 1. **global-modules@1.0.0** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/global-modules](https://github.com/jonschlinkert/global-modules) +1. **global-modules@2.0.0** + * Licenses: MIT + * Repository: [https://github.com/jonschlinkert/global-modules](https://github.com/jonschlinkert/global-modules) 1. **global-prefix@1.0.2** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/global-prefix](https://github.com/jonschlinkert/global-prefix) +1. **global-prefix@3.0.0** + * Licenses: MIT + * Repository: [https://github.com/jonschlinkert/global-prefix](https://github.com/jonschlinkert/global-prefix) 1. **globals@11.12.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/globals](https://github.com/sindresorhus/globals) 1. **globals@9.18.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/globals](https://github.com/sindresorhus/globals) -1. **graceful-fs@4.1.15** +1. **graceful-fs@4.2.3** * Licenses: ISC * Repository: [https://github.com/isaacs/node-graceful-fs](https://github.com/isaacs/node-graceful-fs) 1. **growl@1.10.5** * Licenses: MIT * Repository: [https://github.com/tj/node-growl](https://github.com/tj/node-growl) -1. **grpc@1.22.2** +1. **grpc@1.23.3** * Licenses: Apache-2.0 * Repository: [https://github.com/grpc/grpc-node](https://github.com/grpc/grpc-node) -1. **handlebars@4.1.2** +1. **handlebars@4.5.3** * Licenses: MIT * Repository: [https://github.com/wycats/handlebars.js](https://github.com/wycats/handlebars.js) 1. **has-ansi@2.0.0** @@ -1435,7 +1432,7 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **has-flag@3.0.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/has-flag](https://github.com/sindresorhus/has-flag) -1. **has-symbols@1.0.0** +1. **has-symbols@1.0.1** * Licenses: MIT * Repository: [https://github.com/ljharb/has-symbols](https://github.com/ljharb/has-symbols) 1. **has-unicode@2.0.1** @@ -1468,10 +1465,10 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **hmac-drbg@1.0.1** * Licenses: MIT * Repository: [https://github.com/indutny/hmac-drbg](https://github.com/indutny/hmac-drbg) -1. **homedir-polyfill@1.0.1** +1. **homedir-polyfill@1.0.3** * Licenses: MIT * Repository: [https://github.com/doowb/homedir-polyfill](https://github.com/doowb/homedir-polyfill) -1. **hosted-git-info@2.8.4** +1. **hosted-git-info@2.8.5** * Licenses: ISC * Repository: [https://github.com/npm/hosted-git-info](https://github.com/npm/hosted-git-info) 1. **http-parser-js@0.4.10** @@ -1480,16 +1477,16 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **https-browserify@1.0.0** * Licenses: MIT * Repository: [https://github.com/substack/https-browserify](https://github.com/substack/https-browserify) -1. **https-proxy-agent@2.2.1** +1. **https-proxy-agent@2.2.4** * Licenses: MIT * Repository: [https://github.com/TooTallNate/node-https-proxy-agent](https://github.com/TooTallNate/node-https-proxy-agent) -1. **iconv-lite@0.4.23** +1. **iconv-lite@0.4.24** * Licenses: MIT * Repository: [https://github.com/ashtuchkin/iconv-lite](https://github.com/ashtuchkin/iconv-lite) 1. **idb@3.0.2** * Licenses: ISC * Repository: [https://github.com/jakearchibald/indexeddb-promised](https://github.com/jakearchibald/indexeddb-promised) -1. **ieee754@1.1.12** +1. **ieee754@1.1.13** * Licenses: BSD-3-Clause * Repository: [https://github.com/feross/ieee754](https://github.com/feross/ieee754) 1. **iferr@0.1.5** @@ -1498,15 +1495,18 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **ignore-walk@3.0.1** * Licenses: ISC * Repository: [https://github.com/isaacs/ignore-walk](https://github.com/isaacs/ignore-walk) +1. **ignore-walk@3.0.3** + * Licenses: ISC + * Repository: [https://github.com/isaacs/ignore-walk](https://github.com/isaacs/ignore-walk) 1. **import-local@2.0.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/import-local](https://github.com/sindresorhus/import-local) 1. **imurmurhash@0.1.4** * Licenses: MIT * Repository: [https://github.com/jensyt/imurmurhash-js](https://github.com/jensyt/imurmurhash-js) -1. **indexof@0.0.1** - * Licenses: MIT* - * Repository: unknown +1. **infer-owner@1.0.4** + * Licenses: ISC + * Repository: [https://github.com/npm/infer-owner](https://github.com/npm/infer-owner) 1. **inflight@1.0.6** * Licenses: ISC * Repository: [https://github.com/npm/inflight](https://github.com/npm/inflight) @@ -1516,6 +1516,9 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **inherits@2.0.3** * Licenses: ISC * Repository: [https://github.com/isaacs/inherits](https://github.com/isaacs/inherits) +1. **inherits@2.0.4** + * Licenses: ISC + * Repository: [https://github.com/isaacs/inherits](https://github.com/isaacs/inherits) 1. **ini@1.3.5** * Licenses: ISC * Repository: [https://github.com/isaacs/ini](https://github.com/isaacs/ini) @@ -1576,24 +1579,21 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **is-glob@3.1.0** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/is-glob](https://github.com/jonschlinkert/is-glob) -1. **is-glob@4.0.0** - * Licenses: MIT - * Repository: [https://github.com/jonschlinkert/is-glob](https://github.com/jonschlinkert/is-glob) 1. **is-glob@4.0.1** * Licenses: MIT * Repository: [https://github.com/micromatch/is-glob](https://github.com/micromatch/is-glob) 1. **is-number@3.0.0** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/is-number](https://github.com/jonschlinkert/is-number) -1. **is-plain-obj@1.1.0** - * Licenses: MIT - * Repository: [https://github.com/sindresorhus/is-plain-obj](https://github.com/sindresorhus/is-plain-obj) 1. **is-plain-object@2.0.4** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/is-plain-object](https://github.com/jonschlinkert/is-plain-object) 1. **is-windows@1.0.2** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/is-windows](https://github.com/jonschlinkert/is-windows) +1. **is-wsl@1.1.0** + * Licenses: MIT + * Repository: [https://github.com/sindresorhus/is-wsl](https://github.com/sindresorhus/is-wsl) 1. **isarray@0.0.1** * Licenses: MIT * Repository: [https://github.com/juliangruber/isarray](https://github.com/juliangruber/isarray) @@ -1636,9 +1636,6 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **js-tokens@4.0.0** * Licenses: MIT * Repository: [https://github.com/lydell/js-tokens](https://github.com/lydell/js-tokens) -1. **js-yaml@3.12.1** - * Licenses: MIT - * Repository: [https://github.com/nodeca/js-yaml](https://github.com/nodeca/js-yaml) 1. **js-yaml@3.13.1** * Licenses: MIT * Repository: [https://github.com/nodeca/js-yaml](https://github.com/nodeca/js-yaml) @@ -1660,7 +1657,7 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **json5@1.0.1** * Licenses: MIT * Repository: [https://github.com/json5/json5](https://github.com/json5/json5) -1. **json5@2.1.0** +1. **json5@2.1.1** * Licenses: MIT * Repository: [https://github.com/json5/json5](https://github.com/json5/json5) 1. **just-extend@4.0.2** @@ -1711,16 +1708,10 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **lodash.flattendeep@4.4.0** * Licenses: MIT * Repository: [https://github.com/lodash/lodash](https://github.com/lodash/lodash) -1. **lodash@4.17.11** - * Licenses: MIT - * Repository: [https://github.com/lodash/lodash](https://github.com/lodash/lodash) 1. **lodash@4.17.15** * Licenses: MIT * Repository: [https://github.com/lodash/lodash](https://github.com/lodash/lodash) -1. **lolex@2.7.5** - * Licenses: BSD-3-Clause - * Repository: [https://github.com/sinonjs/lolex](https://github.com/sinonjs/lolex) -1. **lolex@3.1.0** +1. **lolex@4.2.0** * Licenses: BSD-3-Clause * Repository: [https://github.com/sinonjs/lolex](https://github.com/sinonjs/lolex) 1. **long@3.2.0** @@ -1738,12 +1729,12 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **lru-cache@5.1.1** * Licenses: ISC * Repository: [https://github.com/isaacs/node-lru-cache](https://github.com/isaacs/node-lru-cache) -1. **make-dir@1.3.0** - * Licenses: MIT - * Repository: [https://github.com/sindresorhus/make-dir](https://github.com/sindresorhus/make-dir) 1. **make-dir@2.1.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/make-dir](https://github.com/sindresorhus/make-dir) +1. **mamacro@0.0.3** + * Licenses: MIT + * Repository: unknown 1. **map-age-cleaner@0.1.3** * Licenses: MIT * Repository: [https://github.com/SamVerschueren/map-age-cleaner](https://github.com/SamVerschueren/map-age-cleaner) @@ -1756,12 +1747,15 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **md5.js@1.3.5** * Licenses: MIT * Repository: [https://github.com/crypto-browserify/md5.js](https://github.com/crypto-browserify/md5.js) -1. **mem@4.1.0** +1. **mem@4.3.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/mem](https://github.com/sindresorhus/mem) 1. **memory-fs@0.4.1** * Licenses: MIT * Repository: [https://github.com/webpack/memory-fs](https://github.com/webpack/memory-fs) +1. **memory-fs@0.5.0** + * Licenses: MIT + * Repository: [https://github.com/webpack/memory-fs](https://github.com/webpack/memory-fs) 1. **merge-source-map@1.1.0** * Licenses: MIT * Repository: [https://github.com/keik/merge-source-map](https://github.com/keik/merge-source-map) @@ -1771,7 +1765,7 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **miller-rabin@4.0.1** * Licenses: MIT * Repository: [https://github.com/indutny/miller-rabin](https://github.com/indutny/miller-rabin) -1. **mimic-fn@1.2.0** +1. **mimic-fn@2.1.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/mimic-fn](https://github.com/sindresorhus/mimic-fn) 1. **minimalistic-assert@1.0.1** @@ -1783,6 +1777,9 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **minimatch@3.0.4** * Licenses: ISC * Repository: [https://github.com/isaacs/minimatch](https://github.com/isaacs/minimatch) +1. **minimist@0.0.10** + * Licenses: MIT + * Repository: [https://github.com/substack/minimist](https://github.com/substack/minimist) 1. **minimist@0.0.8** * Licenses: MIT * Repository: [https://github.com/substack/minimist](https://github.com/substack/minimist) @@ -1798,7 +1795,7 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **mississippi@3.0.0** * Licenses: BSD-2-Clause * Repository: [https://github.com/maxogden/mississippi](https://github.com/maxogden/mississippi) -1. **mixin-deep@1.3.1** +1. **mixin-deep@1.3.2** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/mixin-deep](https://github.com/jonschlinkert/mixin-deep) 1. **mkdirp@0.5.1** @@ -1813,9 +1810,6 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **ms@2.0.0** * Licenses: MIT * Repository: [https://github.com/zeit/ms](https://github.com/zeit/ms) -1. **ms@2.1.1** - * Licenses: MIT - * Repository: [https://github.com/zeit/ms](https://github.com/zeit/ms) 1. **ms@2.1.2** * Licenses: MIT * Repository: [https://github.com/zeit/ms](https://github.com/zeit/ms) @@ -1828,7 +1822,7 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **needle@2.4.0** * Licenses: MIT * Repository: [https://github.com/tomas/needle](https://github.com/tomas/needle) -1. **neo-async@2.6.0** +1. **neo-async@2.6.1** * Licenses: MIT * Repository: [https://github.com/suguru03/neo-async](https://github.com/suguru03/neo-async) 1. **nested-error-stacks@2.1.0** @@ -1837,13 +1831,13 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **nice-try@1.0.5** * Licenses: MIT * Repository: [https://github.com/electerious/nice-try](https://github.com/electerious/nice-try) -1. **nise@1.4.8** +1. **nise@1.5.2** * Licenses: BSD-3-Clause * Repository: [https://github.com/sinonjs/nise](https://github.com/sinonjs/nise) -1. **node-fetch@2.3.0** +1. **node-fetch@2.6.0** * Licenses: MIT * Repository: [https://github.com/bitinn/node-fetch](https://github.com/bitinn/node-fetch) -1. **node-libs-browser@2.2.0** +1. **node-libs-browser@2.2.1** * Licenses: MIT * Repository: [https://github.com/webpack/node-libs-browser](https://github.com/webpack/node-libs-browser) 1. **node-modules-regexp@1.0.0** @@ -1852,7 +1846,7 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **node-pre-gyp@0.13.0** * Licenses: BSD-3-Clause * Repository: [https://github.com/mapbox/node-pre-gyp](https://github.com/mapbox/node-pre-gyp) -1. **node-releases@1.1.27** +1. **node-releases@1.1.42** * Licenses: MIT * Repository: [https://github.com/chicoxyzzy/node-releases](https://github.com/chicoxyzzy/node-releases) 1. **nopt@4.0.1** @@ -1870,7 +1864,10 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **npm-bundled@1.0.6** * Licenses: ISC * Repository: [https://github.com/npm/npm-bundled](https://github.com/npm/npm-bundled) -1. **npm-packlist@1.4.1** +1. **npm-normalize-package-bin@1.0.1** + * Licenses: ISC + * Repository: [https://github.com/npm/npm-normalize-package-bin](https://github.com/npm/npm-normalize-package-bin) +1. **npm-packlist@1.4.4** * Licenses: ISC * Repository: [https://github.com/npm/npm-packlist](https://github.com/npm/npm-packlist) 1. **npm-run-path@2.0.2** @@ -1930,25 +1927,19 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **osenv@0.1.5** * Licenses: ISC * Repository: [https://github.com/npm/osenv](https://github.com/npm/osenv) -1. **output-file-sync@2.0.1** - * Licenses: ISC - * Repository: [https://github.com/shinnn/output-file-sync](https://github.com/shinnn/output-file-sync) 1. **p-defer@1.0.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/p-defer](https://github.com/sindresorhus/p-defer) 1. **p-finally@1.0.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/p-finally](https://github.com/sindresorhus/p-finally) -1. **p-is-promise@2.0.0** +1. **p-is-promise@2.1.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/p-is-promise](https://github.com/sindresorhus/p-is-promise) 1. **p-limit@1.3.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/p-limit](https://github.com/sindresorhus/p-limit) -1. **p-limit@2.1.0** - * Licenses: MIT - * Repository: [https://github.com/sindresorhus/p-limit](https://github.com/sindresorhus/p-limit) -1. **p-limit@2.2.0** +1. **p-limit@2.2.1** * Licenses: MIT * Repository: [https://github.com/sindresorhus/p-limit](https://github.com/sindresorhus/p-limit) 1. **p-locate@2.0.0** @@ -1960,22 +1951,19 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **p-try@1.0.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/p-try](https://github.com/sindresorhus/p-try) -1. **p-try@2.0.0** - * Licenses: MIT - * Repository: [https://github.com/sindresorhus/p-try](https://github.com/sindresorhus/p-try) 1. **p-try@2.2.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/p-try](https://github.com/sindresorhus/p-try) 1. **package-hash@3.0.0** * Licenses: ISC * Repository: [https://github.com/novemberborn/package-hash](https://github.com/novemberborn/package-hash) -1. **pako@1.0.8** +1. **pako@1.0.10** * Licenses: (MIT AND Zlib) * Repository: [https://github.com/nodeca/pako](https://github.com/nodeca/pako) -1. **parallel-transform@1.1.0** +1. **parallel-transform@1.2.0** * Licenses: MIT * Repository: [https://github.com/mafintosh/parallel-transform](https://github.com/mafintosh/parallel-transform) -1. **parse-asn1@5.1.4** +1. **parse-asn1@5.1.5** * Licenses: ISC * Repository: [https://github.com/crypto-browserify/parse-asn1](https://github.com/crypto-browserify/parse-asn1) 1. **parse-json@4.0.0** @@ -1987,7 +1975,7 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **pascalcase@0.1.1** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/pascalcase](https://github.com/jonschlinkert/pascalcase) -1. **path-browserify@0.0.0** +1. **path-browserify@0.0.1** * Licenses: MIT * Repository: [https://github.com/substack/path-browserify](https://github.com/substack/path-browserify) 1. **path-dirname@1.0.2** @@ -2005,7 +1993,7 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **path-parse@1.0.6** * Licenses: MIT * Repository: [https://github.com/jbgutierrez/path-parse](https://github.com/jbgutierrez/path-parse) -1. **path-to-regexp@1.7.0** +1. **path-to-regexp@1.8.0** * Licenses: MIT * Repository: [https://github.com/pillarjs/path-to-regexp](https://github.com/pillarjs/path-to-regexp) 1. **path-type@3.0.0** @@ -2035,9 +2023,6 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **private@0.1.8** * Licenses: MIT * Repository: [https://github.com/benjamn/private](https://github.com/benjamn/private) -1. **process-nextick-args@2.0.0** - * Licenses: MIT - * Repository: [https://github.com/calvinmetcalf/process-nextick-args](https://github.com/calvinmetcalf/process-nextick-args) 1. **process-nextick-args@2.0.1** * Licenses: MIT * Repository: [https://github.com/calvinmetcalf/process-nextick-args](https://github.com/calvinmetcalf/process-nextick-args) @@ -2089,7 +2074,7 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **querystring@0.2.0** * Licenses: MIT * Repository: [https://github.com/Gozala/querystring](https://github.com/Gozala/querystring) -1. **randombytes@2.0.6** +1. **randombytes@2.1.0** * Licenses: MIT * Repository: [https://github.com/crypto-browserify/randombytes](https://github.com/crypto-browserify/randombytes) 1. **randomfill@1.0.4** @@ -2101,7 +2086,7 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **read-installed@4.0.3** * Licenses: ISC * Repository: [https://github.com/isaacs/read-installed](https://github.com/isaacs/read-installed) -1. **read-package-json@2.1.0** +1. **read-package-json@2.1.1** * Licenses: ISC * Repository: [https://github.com/npm/read-package-json](https://github.com/npm/read-package-json) 1. **read-pkg-up@4.0.0** @@ -2134,13 +2119,10 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **regex-not@1.0.2** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/regex-not](https://github.com/jonschlinkert/regex-not) -1. **regexp-tree@0.1.11** - * Licenses: MIT - * Repository: [https://github.com/DmitrySoshnikov/regexp-tree](https://github.com/DmitrySoshnikov/regexp-tree) -1. **regexpu-core@4.5.5** +1. **regexpu-core@4.6.0** * Licenses: MIT * Repository: [https://github.com/mathiasbynens/regexpu-core](https://github.com/mathiasbynens/regexpu-core) -1. **regjsgen@0.5.0** +1. **regjsgen@0.5.1** * Licenses: MIT * Repository: [https://github.com/bnjmnt4n/regjsgen](https://github.com/bnjmnt4n/regjsgen) 1. **regjsparser@0.6.0** @@ -2161,9 +2143,6 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **require-directory@2.1.1** * Licenses: MIT * Repository: [https://github.com/troygoode/node-require-directory](https://github.com/troygoode/node-require-directory) -1. **require-main-filename@1.0.1** - * Licenses: ISC - * Repository: [https://github.com/yargs/require-main-filename](https://github.com/yargs/require-main-filename) 1. **require-main-filename@2.0.0** * Licenses: ISC * Repository: [https://github.com/yargs/require-main-filename](https://github.com/yargs/require-main-filename) @@ -2185,13 +2164,13 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **resolve-url@0.2.1** * Licenses: MIT * Repository: [https://github.com/lydell/resolve-url](https://github.com/lydell/resolve-url) -1. **resolve@1.10.0** +1. **resolve@1.13.1** * Licenses: MIT * Repository: [https://github.com/browserify/resolve](https://github.com/browserify/resolve) 1. **ret@0.1.15** * Licenses: MIT * Repository: [https://github.com/fent/ret.js](https://github.com/fent/ret.js) -1. **rimraf@2.6.3** +1. **rimraf@2.7.1** * Licenses: ISC * Repository: [https://github.com/isaacs/rimraf](https://github.com/isaacs/rimraf) 1. **ripemd160@2.0.2** @@ -2215,25 +2194,19 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **schema-utils@1.0.0** * Licenses: MIT * Repository: [https://github.com/webpack-contrib/schema-utils](https://github.com/webpack-contrib/schema-utils) -1. **semver@5.6.0** - * Licenses: ISC - * Repository: [https://github.com/npm/node-semver](https://github.com/npm/node-semver) -1. **semver@5.7.0** +1. **semver@5.7.1** * Licenses: ISC * Repository: [https://github.com/npm/node-semver](https://github.com/npm/node-semver) 1. **semver@6.3.0** * Licenses: ISC * Repository: [https://github.com/npm/node-semver](https://github.com/npm/node-semver) -1. **serialize-javascript@1.6.1** +1. **serialize-javascript@2.1.2** * Licenses: BSD-3-Clause * Repository: [https://github.com/yahoo/serialize-javascript](https://github.com/yahoo/serialize-javascript) 1. **set-blocking@2.0.0** * Licenses: ISC * Repository: [https://github.com/yargs/set-blocking](https://github.com/yargs/set-blocking) -1. **set-value@0.4.3** - * Licenses: MIT - * Repository: [https://github.com/jonschlinkert/set-value](https://github.com/jonschlinkert/set-value) -1. **set-value@2.0.0** +1. **set-value@2.0.1** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/set-value](https://github.com/jonschlinkert/set-value) 1. **setimmediate@1.0.5** @@ -2248,18 +2221,12 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **shebang-regex@1.0.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/shebang-regex](https://github.com/sindresorhus/shebang-regex) -1. **signal-exit@3.0.1** - * Licenses: ISC - * Repository: [https://github.com/tapjs/signal-exit](https://github.com/tapjs/signal-exit) 1. **signal-exit@3.0.2** * Licenses: ISC * Repository: [https://github.com/tapjs/signal-exit](https://github.com/tapjs/signal-exit) -1. **sinon@7.2.3** +1. **sinon@7.5.0** * Licenses: BSD-3-Clause * Repository: [https://github.com/sinonjs/sinon](https://github.com/sinonjs/sinon) -1. **slash@1.0.0** - * Licenses: MIT - * Repository: [https://github.com/sindresorhus/slash](https://github.com/sindresorhus/slash) 1. **slash@2.0.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/slash](https://github.com/sindresorhus/slash) @@ -2281,10 +2248,7 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **source-map-resolve@0.5.2** * Licenses: MIT * Repository: [https://github.com/lydell/source-map-resolve](https://github.com/lydell/source-map-resolve) -1. **source-map-support@0.5.10** - * Licenses: MIT - * Repository: [https://github.com/evanw/node-source-map-support](https://github.com/evanw/node-source-map-support) -1. **source-map-support@0.5.13** +1. **source-map-support@0.5.16** * Licenses: MIT * Repository: [https://github.com/evanw/node-source-map-support](https://github.com/evanw/node-source-map-support) 1. **source-map-url@0.4.0** @@ -2296,7 +2260,7 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **source-map@0.6.1** * Licenses: BSD-3-Clause * Repository: [https://github.com/mozilla/source-map](https://github.com/mozilla/source-map) -1. **spawn-wrap@1.4.2** +1. **spawn-wrap@1.4.3** * Licenses: ISC * Repository: [https://github.com/isaacs/spawn-wrap](https://github.com/isaacs/spawn-wrap) 1. **spdx-compare@1.0.0** @@ -2344,15 +2308,12 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **stream-http@2.8.3** * Licenses: MIT * Repository: [https://github.com/jhiesey/stream-http](https://github.com/jhiesey/stream-http) -1. **stream-shift@1.0.0** +1. **stream-shift@1.0.1** * Licenses: MIT * Repository: [https://github.com/mafintosh/stream-shift](https://github.com/mafintosh/stream-shift) 1. **string-width@1.0.2** * Licenses: MIT * Repository: [https://github.com/sindresorhus/string-width](https://github.com/sindresorhus/string-width) -1. **string-width@2.1.1** - * Licenses: MIT - * Repository: [https://github.com/sindresorhus/string-width](https://github.com/sindresorhus/string-width) 1. **string-width@3.1.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/string-width](https://github.com/sindresorhus/string-width) @@ -2362,9 +2323,6 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **strip-ansi@3.0.1** * Licenses: MIT * Repository: [https://github.com/chalk/strip-ansi](https://github.com/chalk/strip-ansi) -1. **strip-ansi@4.0.0** - * Licenses: MIT - * Repository: [https://github.com/chalk/strip-ansi](https://github.com/chalk/strip-ansi) 1. **strip-ansi@5.2.0** * Licenses: MIT * Repository: [https://github.com/chalk/strip-ansi](https://github.com/chalk/strip-ansi) @@ -2389,7 +2347,7 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **supports-color@6.1.0** * Licenses: MIT * Repository: [https://github.com/chalk/supports-color](https://github.com/chalk/supports-color) -1. **tapable@1.1.1** +1. **tapable@1.1.3** * Licenses: MIT * Repository: [https://github.com/webpack/tapable](https://github.com/webpack/tapable) 1. **tar@4.4.10** @@ -2398,22 +2356,19 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **teeny-request@3.11.3** * Licenses: Apache-2.0 * Repository: [https://github.com/fhinkel/teeny-request](https://github.com/fhinkel/teeny-request) -1. **terser-webpack-plugin@1.2.2** +1. **terser-webpack-plugin@1.4.3** * Licenses: MIT * Repository: [https://github.com/webpack-contrib/terser-webpack-plugin](https://github.com/webpack-contrib/terser-webpack-plugin) -1. **terser@3.16.1** +1. **terser@4.4.2** * Licenses: BSD-2-Clause - * Repository: [https://github.com/fabiosantoscode/terser](https://github.com/fabiosantoscode/terser) + * Repository: [https://github.com/terser/terser](https://github.com/terser/terser) 1. **test-exclude@5.2.3** * Licenses: ISC * Repository: [https://github.com/istanbuljs/istanbuljs](https://github.com/istanbuljs/istanbuljs) -1. **text-encoding@0.6.4** - * Licenses: Unlicense - * Repository: [https://github.com/inexorabletash/text-encoding](https://github.com/inexorabletash/text-encoding) 1. **through2@2.0.5** * Licenses: MIT * Repository: [https://github.com/rvagg/through2](https://github.com/rvagg/through2) -1. **timers-browserify@2.0.10** +1. **timers-browserify@2.0.11** * Licenses: MIT * Repository: [https://github.com/jryans/timers-browserify](https://github.com/jryans/timers-browserify) 1. **to-arraybuffer@1.0.1** @@ -2437,12 +2392,6 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **treeify@1.1.0** * Licenses: MIT * Repository: [https://github.com/notatestuser/treeify](https://github.com/notatestuser/treeify) -1. **trim-right@1.0.1** - * Licenses: MIT - * Repository: [https://github.com/sindresorhus/trim-right](https://github.com/sindresorhus/trim-right) -1. **tslib@1.10.0** - * Licenses: Apache-2.0 - * Repository: [https://github.com/Microsoft/tslib](https://github.com/Microsoft/tslib) 1. **tty-browserify@0.0.0** * Licenses: MIT * Repository: [https://github.com/substack/tty-browserify](https://github.com/substack/tty-browserify) @@ -2452,7 +2401,7 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **typedarray@0.0.6** * Licenses: MIT * Repository: [https://github.com/substack/typedarray](https://github.com/substack/typedarray) -1. **uglify-js@3.6.0** +1. **uglify-js@3.7.2** * Licenses: BSD-2-Clause * Repository: [https://github.com/mishoo/UglifyJS2](https://github.com/mishoo/UglifyJS2) 1. **unicode-canonical-property-names-ecmascript@1.0.4** @@ -2467,22 +2416,19 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **unicode-property-aliases-ecmascript@1.0.5** * Licenses: MIT * Repository: [https://github.com/mathiasbynens/unicode-property-aliases-ecmascript](https://github.com/mathiasbynens/unicode-property-aliases-ecmascript) -1. **union-value@1.0.0** +1. **union-value@1.0.1** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/union-value](https://github.com/jonschlinkert/union-value) 1. **unique-filename@1.1.1** * Licenses: ISC * Repository: [https://github.com/iarna/unique-filename](https://github.com/iarna/unique-filename) -1. **unique-slug@2.0.1** +1. **unique-slug@2.0.2** * Licenses: ISC * Repository: [https://github.com/iarna/unique-slug](https://github.com/iarna/unique-slug) 1. **unset-value@1.0.0** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/unset-value](https://github.com/jonschlinkert/unset-value) -1. **upath@1.1.0** - * Licenses: MIT - * Repository: [https://github.com/anodynos/upath](https://github.com/anodynos/upath) -1. **upath@1.1.2** +1. **upath@1.2.0** * Licenses: MIT * Repository: [https://github.com/anodynos/upath](https://github.com/anodynos/upath) 1. **uri-js@4.2.2** @@ -2512,28 +2458,28 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **util@0.11.1** * Licenses: MIT * Repository: [https://github.com/defunctzombie/node-util](https://github.com/defunctzombie/node-util) -1. **v8-compile-cache@2.0.2** +1. **v8-compile-cache@2.0.3** * Licenses: MIT - * Repository: unknown + * Repository: [https://github.com/zertosh/v8-compile-cache](https://github.com/zertosh/v8-compile-cache) 1. **validate-npm-package-license@3.0.4** * Licenses: Apache-2.0 * Repository: [https://github.com/kemitchell/validate-npm-package-license.js](https://github.com/kemitchell/validate-npm-package-license.js) -1. **vm-browserify@0.0.4** +1. **vm-browserify@1.1.2** * Licenses: MIT * Repository: [https://github.com/substack/vm-browserify](https://github.com/substack/vm-browserify) 1. **watchpack@1.6.0** * Licenses: MIT * Repository: [https://github.com/webpack/watchpack](https://github.com/webpack/watchpack) -1. **webpack-cli@3.2.3** +1. **webpack-cli@3.3.10** * Licenses: MIT * Repository: [https://github.com/webpack/webpack-cli](https://github.com/webpack/webpack-cli) -1. **webpack-merge@4.2.1** +1. **webpack-merge@4.2.2** * Licenses: MIT * Repository: [https://github.com/survivejs/webpack-merge](https://github.com/survivejs/webpack-merge) -1. **webpack-sources@1.3.0** +1. **webpack-sources@1.4.3** * Licenses: MIT * Repository: [https://github.com/webpack/webpack-sources](https://github.com/webpack/webpack-sources) -1. **webpack@4.29.3** +1. **webpack@4.41.2** * Licenses: MIT * Repository: [https://github.com/webpack/webpack](https://github.com/webpack/webpack) 1. **websocket-driver@0.7.3** @@ -2560,7 +2506,7 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **wordwrap@0.0.3** * Licenses: MIT * Repository: [https://github.com/substack/node-wordwrap](https://github.com/substack/node-wordwrap) -1. **worker-farm@1.6.0** +1. **worker-farm@1.7.0** * Licenses: MIT * Repository: [https://github.com/rvagg/node-worker-farm](https://github.com/rvagg/node-worker-farm) 1. **wrap-ansi@2.1.0** @@ -2578,7 +2524,7 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **xmlhttprequest@1.8.0** * Licenses: MIT * Repository: [https://github.com/driverdan/node-XMLHttpRequest](https://github.com/driverdan/node-XMLHttpRequest) -1. **xtend@4.0.1** +1. **xtend@4.0.2** * Licenses: MIT * Repository: [https://github.com/Raynos/xtend](https://github.com/Raynos/xtend) 1. **y18n@3.2.1** @@ -2593,13 +2539,13 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice 1. **yallist@3.0.3** * Licenses: ISC * Repository: [https://github.com/isaacs/yallist](https://github.com/isaacs/yallist) -1. **yargs-parser@11.1.1** +1. **yallist@3.1.1** * Licenses: ISC - * Repository: [https://github.com/yargs/yargs-parser](https://github.com/yargs/yargs-parser) + * Repository: [https://github.com/isaacs/yallist](https://github.com/isaacs/yallist) 1. **yargs-parser@13.1.1** * Licenses: ISC * Repository: [https://github.com/yargs/yargs-parser](https://github.com/yargs/yargs-parser) -1. **yargs@12.0.5** +1. **yargs@13.2.4** * Licenses: MIT * Repository: [https://github.com/yargs/yargs](https://github.com/yargs/yargs) 1. **yargs@13.3.0** @@ -2610,7 +2556,7 @@ This report was generated on **Mon Dec 16 23:16:04 EET 2019** using [Gradle-Lice * Repository: [https://github.com/bcoe/yargs](https://github.com/bcoe/yargs) -This report was generated on **Mon Dec 16 2019 23:16:10 GMT+0200 (FLE Standard Time)** using [NPM License Checker](https://github.com/davglass/license-checker) library. +This report was generated on **Tue Dec 17 2019 15:47:24 GMT+0200 (Eastern European Standard Time)** using [NPM License Checker](https://github.com/davglass/license-checker) library. @@ -3458,7 +3404,7 @@ This report was generated on **Mon Dec 16 2019 23:16:10 GMT+0200 (FLE Standard T The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Mon Dec 16 23:16:28 EET 2019** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). +This report was generated on **Tue Dec 17 15:47:37 EET 2019** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). @@ -3869,7 +3815,7 @@ This report was generated on **Mon Dec 16 23:16:28 EET 2019** using [Gradle-Lice The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Mon Dec 16 23:16:37 EET 2019** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). +This report was generated on **Tue Dec 17 15:47:43 EET 2019** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). @@ -5472,7 +5418,7 @@ This report was generated on **Mon Dec 16 23:16:37 EET 2019** using [Gradle-Lice The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Mon Dec 16 23:17:16 EET 2019** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). +This report was generated on **Tue Dec 17 15:48:06 EET 2019** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). @@ -5944,7 +5890,7 @@ This report was generated on **Mon Dec 16 23:17:16 EET 2019** using [Gradle-Lice The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Mon Dec 16 23:17:26 EET 2019** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). +This report was generated on **Tue Dec 17 15:48:15 EET 2019** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). @@ -6492,4 +6438,4 @@ This report was generated on **Mon Dec 16 23:17:26 EET 2019** using [Gradle-Lice The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Mon Dec 16 23:17:37 EET 2019** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). \ No newline at end of file +This report was generated on **Tue Dec 17 15:48:23 EET 2019** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). \ No newline at end of file