diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..9979489 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,13 @@ +Copyright 2020 Dmitri Farkov + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. diff --git a/README.md b/README.md new file mode 100644 index 0000000..f43d637 --- /dev/null +++ b/README.md @@ -0,0 +1,162 @@ +# ONVIF2MQTT + +## Purpose + +This package aims to implement a transformation layer between the ONVIF event stream (sourced from IP cameras / camera doorbells) and MQTT (a messaging protocol largely used in home automation). + +Any number of ONVIF devices is supported. + +## Background + +After acquiring an EzViz DB1 camera doorbell, I was happy to find a PIR sensor on it. I was then dismayed to find out that there is no open API to consume the triggered status of it. This project was written to itch that scratch, but it should work for any other ONVIF compliant devices with built-in sensors. + +## Requirements +- Docker (unless running Baremetal) +- MQTT Broker +- At least one ONVIF compatible device implementing events. + +## Hardware Compatibility. +- EZViz DB1 Doorbell (flashed with LaView firmware) - **TESTED** +- Nelly's Security Doorbell (NSC-DB2) +- Laview Halo One Doorbell +- RCA HSDB2A Doorbell (flashed with LaView firmware) +- Any other ONVIF compliant IP Camera - if it works for you please let me know so that this list can be updated. + +## Supported Events +- Motion Sensor +- That's it for now, but it's easy to implement new events, just submit a PR or a ticket. + +## Installation + +### Docker +This is the recommended method of consumption for everyday users. +1. [Pull the image from docker registry.](https://hub.docker.com/r/dfarkov/onvif2mqtt) +``` +docker pull dfarkov/onvif2mqtt:latest +``` +2. Run the image, mounting a config volume containing your configuration (`config.yml`) +``` +docker run -v PATH_TO_CONFIGURATION_FOLDER:/config dfarkov/onvif2mqtt +``` + +### Baremetal +This method requires an installation of NodeJS / NPM. This is the recommended installation method for development purposes. + +1. Clone this repo +``` +git clone https://github.com/dmitrif/onvif2mqtt +``` +2. Navigate to the repo folder. +``` +cd ./onvif2mqtt +``` +3. Install dependencies +``` +npm install +``` +4. Create and fill out a configuration file: +``` +touch config.dev.yml +``` +5. Run the app: +``` +# For development +npm run dev + +# For production build +npm run build +CONFIG_FILE=./config.dev.yml npm run start +``` + +## Configuration + +### Notes + +Configuration can be placed into a `config.yml` file, containing valid YAML. This file should be placed into the host-mounted config volume; if another location is preferred then the file path can be provided as an environment variable `CONFIG_PATH`. + +### MQTT Notes + +By default this package publishes events to an topic `onvif2mqtt/$ONVIF_DEVICE/$EVENT_TYPE/` with a value of `on | off` for each captured event type. + +### Templating / Custom Topics + +However, by using the `api.templates` option in configuration, one can define a custom `subtopic` and specify a custom template. The following tokens will be interpolated in both the `subtopic` and the `template` values: + +- `${onvifDeviceId}` - name of the ONVIF device (e.g. `doorbell`) +- `${eventType}` - type of event captured (e.g. `motion`) +- `${eventState}` - boolean state of the event (if applicable) + +The messages will be sent to a topic of the following format: `onvif2mqtt/$ONVIF_DEVICE/$SUBTOPIC`. + +### Schema + +```yaml +api: + templates: + #Subtopics can be nested with `/` and are interpolated + - subtopic: ${eventType}/json + # Should this message be retained by MQTT + # Defaults to true + retain: false + # Template that should be published to the topic, + # values are interpolated + template: >- + { + "device": "${onvifDeviceId}", + "eventType": "${eventType}", + "state": "${eventState}" + } + # You can specify any number of custom subtopics. + - subtopic: hello_world + template: hello from ${onvifDeviceId} +# MQTT Broker configuration, +# required due to nature of project. +mqtt: + host: 192.168.0.57 + port: 1883 + username: user + password: password +# All of your ONVIF devices +onvif: + # Name for the device (used in MQTT topic) + - name: doorbell + hostname: localhost + port: 80 + username: admin + password: admin +``` + +### Examples / Guides + +### Using with Shinobi + +1. [Configure Shinobi.video to use `mqtt`](https://hub.shinobi.video/articles/view/xEMps3O4y4VEaYk) +2. Configure a shinobi monitor to trigger motion detector on API events. +3. Add custom subtopic for shinobi: +```yaml +... +api: + templates: + - subtopic: shinobi + retain: false + template: >- + { + "plug": "${onvifDeviceId}", + "reason": "${eventType}", + "name": "${onvifDeviceId}" + } +... +``` + +### Using with HomeAssistant +1. Install the MQTT HomeAssistant integration. +2. Define custom `binary_sensor` in HomeAssistant's `configuration.yaml`: +```yaml +binary_sensor doorbell_motion: + - platform: mqtt + name: doorbell_motion + state_topic: "onvif2mqtt/doorbell/motion" +``` + +### Getting Started +Simplest way forward is to base your configuration off [`config.sample.yml`](https://github.com/dmitrif/onvif2mqtt/blob/master/config.sample.yml). \ No newline at end of file diff --git a/config.sample.yml b/config.sample.yml new file mode 100644 index 0000000..3c42a77 --- /dev/null +++ b/config.sample.yml @@ -0,0 +1,9 @@ +mqtt: + host: 127.0.0.1 + port: 1883 +onvif: + - name: device_name + hostname: 127.0.0.1 + port: 80 + username: username + password: password \ No newline at end of file diff --git a/default-config.yml b/default-config.yml index 6b8bf41..4c46939 100644 --- a/default-config.yml +++ b/default-config.yml @@ -1,3 +1,5 @@ log: debug +api: + templates: mqtt: onvif: \ No newline at end of file diff --git a/licenses.txt b/licenses.txt new file mode 100644 index 0000000..e5a9ae9 --- /dev/null +++ b/licenses.txt @@ -0,0 +1,6171 @@ +├─ @babel/cli@7.8.4 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-cli +│ ├─ publisher: Sebastian McKenzie +│ ├─ email: sebmck@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/cli +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/cli/LICENSE +├─ @babel/code-frame@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-code-frame +│ ├─ publisher: Sebastian McKenzie +│ ├─ email: sebmck@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/code-frame +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/code-frame/LICENSE +├─ @babel/compat-data@7.9.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-compat-data +│ ├─ publisher: The Babel Team +│ ├─ url: https://babeljs.io/team +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/compat-data +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/compat-data/LICENSE +├─ @babel/core@7.9.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-core +│ ├─ publisher: Sebastian McKenzie +│ ├─ email: sebmck@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/core +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/core/LICENSE +├─ @babel/generator@7.9.4 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-generator +│ ├─ publisher: Sebastian McKenzie +│ ├─ email: sebmck@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/generator +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/generator/LICENSE +├─ @babel/helper-annotate-as-pure@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-annotate-as-pure +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helper-annotate-as-pure +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helper-annotate-as-pure/LICENSE +├─ @babel/helper-builder-binary-assignment-operator-visitor@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-builder-binary-assignment-operator-visitor +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helper-builder-binary-assignment-operator-visitor +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helper-builder-binary-assignment-operator-visitor/LICENSE +├─ @babel/helper-compilation-targets@7.8.7 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-compilation-targets +│ ├─ publisher: The Babel Team +│ ├─ url: https://babeljs.io/team +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helper-compilation-targets +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helper-compilation-targets/LICENSE +├─ @babel/helper-create-class-features-plugin@7.8.6 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-create-class-features-plugin +│ ├─ publisher: The Babel Team +│ ├─ url: https://babeljs.io/team +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helper-create-class-features-plugin +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helper-create-class-features-plugin/LICENSE +├─ @babel/helper-create-regexp-features-plugin@7.8.8 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel +│ ├─ publisher: The Babel Team +│ ├─ url: https://babeljs.io/team +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helper-create-regexp-features-plugin +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helper-create-regexp-features-plugin/LICENSE +├─ @babel/helper-define-map@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-define-map +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helper-define-map +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helper-define-map/LICENSE +├─ @babel/helper-explode-assignable-expression@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-explode-assignable-expression +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helper-explode-assignable-expression +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helper-explode-assignable-expression/LICENSE +├─ @babel/helper-function-name@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-function-name +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helper-function-name +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helper-function-name/LICENSE +├─ @babel/helper-get-function-arity@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-get-function-arity +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helper-get-function-arity +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helper-get-function-arity/LICENSE +├─ @babel/helper-hoist-variables@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-hoist-variables +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helper-hoist-variables +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helper-hoist-variables/LICENSE +├─ @babel/helper-member-expression-to-functions@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-member-expression-to-functions +│ ├─ publisher: Justin Ridgewell +│ ├─ email: justin@ridgewell.name +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helper-member-expression-to-functions +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helper-member-expression-to-functions/LICENSE +├─ @babel/helper-module-imports@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-module-imports +│ ├─ publisher: Logan Smyth +│ ├─ email: loganfsmyth@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helper-module-imports +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helper-module-imports/LICENSE +├─ @babel/helper-module-transforms@7.9.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-module-transforms +│ ├─ publisher: Logan Smyth +│ ├─ email: loganfsmyth@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helper-module-transforms +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helper-module-transforms/LICENSE +├─ @babel/helper-optimise-call-expression@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-optimise-call-expression +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helper-optimise-call-expression +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helper-optimise-call-expression/LICENSE +├─ @babel/helper-plugin-utils@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-plugin-utils +│ ├─ publisher: Logan Smyth +│ ├─ email: loganfsmyth@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helper-plugin-utils +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helper-plugin-utils/LICENSE +├─ @babel/helper-regex@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-regex +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helper-regex +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helper-regex/LICENSE +├─ @babel/helper-remap-async-to-generator@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-remap-async-to-generator +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helper-remap-async-to-generator +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helper-remap-async-to-generator/LICENSE +├─ @babel/helper-replace-supers@7.8.6 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-replace-supers +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helper-replace-supers +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helper-replace-supers/LICENSE +├─ @babel/helper-simple-access@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-simple-access +│ ├─ publisher: Logan Smyth +│ ├─ email: loganfsmyth@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helper-simple-access +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helper-simple-access/LICENSE +├─ @babel/helper-split-export-declaration@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-split-export-declaration +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helper-split-export-declaration +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helper-split-export-declaration/LICENSE +├─ @babel/helper-validator-identifier@7.9.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-validator-identifier +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helper-validator-identifier +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helper-validator-identifier/LICENSE +├─ @babel/helper-wrap-function@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-wrap-function +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helper-wrap-function +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helper-wrap-function/LICENSE +├─ @babel/helpers@7.9.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-helpers +│ ├─ publisher: Sebastian McKenzie +│ ├─ email: sebmck@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helpers +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/helpers/LICENSE +├─ @babel/highlight@7.9.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-highlight +│ ├─ publisher: suchipi +│ ├─ email: me@suchipi.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/highlight +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/highlight/LICENSE +├─ @babel/node@7.8.7 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-node +│ ├─ publisher: Sebastian McKenzie +│ ├─ email: sebmck@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/node +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/node/LICENSE +├─ @babel/parser@7.9.4 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-parser +│ ├─ publisher: Sebastian McKenzie +│ ├─ email: sebmck@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/parser +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/parser/LICENSE +├─ @babel/plugin-proposal-async-generator-functions@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-async-generator-functions +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-proposal-async-generator-functions +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-proposal-async-generator-functions/LICENSE +├─ @babel/plugin-proposal-class-properties@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-class-properties +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-proposal-class-properties +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-proposal-class-properties/LICENSE +├─ @babel/plugin-proposal-dynamic-import@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-dynamic-import +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-proposal-dynamic-import +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-proposal-dynamic-import/LICENSE +├─ @babel/plugin-proposal-json-strings@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-json-strings +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-proposal-json-strings +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-proposal-json-strings/LICENSE +├─ @babel/plugin-proposal-nullish-coalescing-operator@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-nullish-coalescing-operator +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-proposal-nullish-coalescing-operator +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-proposal-nullish-coalescing-operator/LICENSE +├─ @babel/plugin-proposal-numeric-separator@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-numeric-separator +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-proposal-numeric-separator +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-proposal-numeric-separator/LICENSE +├─ @babel/plugin-proposal-object-rest-spread@7.9.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-object-rest-spread +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-proposal-object-rest-spread +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-proposal-object-rest-spread/LICENSE +├─ @babel/plugin-proposal-optional-catch-binding@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-optional-catch-binding +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-proposal-optional-catch-binding +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-proposal-optional-catch-binding/LICENSE +├─ @babel/plugin-proposal-optional-chaining@7.9.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-optional-chaining +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-proposal-optional-chaining +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-proposal-optional-chaining/LICENSE +├─ @babel/plugin-proposal-unicode-property-regex@7.8.8 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-unicode-property-regex +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-proposal-unicode-property-regex +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-proposal-unicode-property-regex/LICENSE +├─ @babel/plugin-syntax-async-generators@7.8.4 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-async-generators +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-syntax-async-generators +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-syntax-async-generators/LICENSE +├─ @babel/plugin-syntax-dynamic-import@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-dynamic-import +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-syntax-dynamic-import +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-syntax-dynamic-import/LICENSE +├─ @babel/plugin-syntax-json-strings@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-json-strings +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-syntax-json-strings +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-syntax-json-strings/LICENSE +├─ @babel/plugin-syntax-nullish-coalescing-operator@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-nullish-coalescing-operator +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-syntax-nullish-coalescing-operator +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-syntax-nullish-coalescing-operator/LICENSE +├─ @babel/plugin-syntax-numeric-separator@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-numeric-separator +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-syntax-numeric-separator +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-syntax-numeric-separator/LICENSE +├─ @babel/plugin-syntax-object-rest-spread@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-object-rest-spread +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-syntax-object-rest-spread +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-syntax-object-rest-spread/LICENSE +├─ @babel/plugin-syntax-optional-catch-binding@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-optional-catch-binding +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-syntax-optional-catch-binding +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-syntax-optional-catch-binding/LICENSE +├─ @babel/plugin-syntax-optional-chaining@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-optional-chaining +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-syntax-optional-chaining +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-syntax-optional-chaining/LICENSE +├─ @babel/plugin-syntax-top-level-await@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-top-level-await +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-syntax-top-level-await +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-syntax-top-level-await/LICENSE +├─ @babel/plugin-transform-arrow-functions@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-arrow-functions +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-arrow-functions +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-arrow-functions/LICENSE +├─ @babel/plugin-transform-async-to-generator@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-async-to-generator +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-async-to-generator +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-async-to-generator/LICENSE +├─ @babel/plugin-transform-block-scoped-functions@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-block-scoped-functions +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-block-scoped-functions +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-block-scoped-functions/LICENSE +├─ @babel/plugin-transform-block-scoping@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-block-scoping +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-block-scoping +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-block-scoping/LICENSE +├─ @babel/plugin-transform-classes@7.9.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-classes +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-classes +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-classes/LICENSE +├─ @babel/plugin-transform-computed-properties@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-computed-properties +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-computed-properties +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-computed-properties/LICENSE +├─ @babel/plugin-transform-destructuring@7.8.8 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-destructuring +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-destructuring +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-destructuring/LICENSE +├─ @babel/plugin-transform-dotall-regex@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-dotall-regex +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-dotall-regex +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-dotall-regex/LICENSE +├─ @babel/plugin-transform-duplicate-keys@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-duplicate-keys +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-duplicate-keys +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-duplicate-keys/LICENSE +├─ @babel/plugin-transform-exponentiation-operator@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-exponentiation-operator +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-exponentiation-operator +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-exponentiation-operator/LICENSE +├─ @babel/plugin-transform-for-of@7.9.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-for-of +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-for-of +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-for-of/LICENSE +├─ @babel/plugin-transform-function-name@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-function-name +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-function-name +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-function-name/LICENSE +├─ @babel/plugin-transform-literals@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-literals +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-literals +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-literals/LICENSE +├─ @babel/plugin-transform-member-expression-literals@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-member-expression-literals +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-member-expression-literals +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-member-expression-literals/LICENSE +├─ @babel/plugin-transform-modules-amd@7.9.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-amd +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-modules-amd +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-modules-amd/LICENSE +├─ @babel/plugin-transform-modules-commonjs@7.9.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-commonjs +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-modules-commonjs +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-modules-commonjs/LICENSE +├─ @babel/plugin-transform-modules-systemjs@7.9.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-systemjs +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-modules-systemjs +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-modules-systemjs/LICENSE +├─ @babel/plugin-transform-modules-umd@7.9.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-umd +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-modules-umd +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-modules-umd/LICENSE +├─ @babel/plugin-transform-named-capturing-groups-regex@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-named-capturing-groups-regex +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-named-capturing-groups-regex/LICENSE +├─ @babel/plugin-transform-new-target@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-new-target +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-new-target +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-new-target/LICENSE +├─ @babel/plugin-transform-object-super@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-super +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-object-super +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-object-super/LICENSE +├─ @babel/plugin-transform-parameters@7.9.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-parameters +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-parameters +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-parameters/LICENSE +├─ @babel/plugin-transform-property-literals@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-property-literals +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-property-literals +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-property-literals/LICENSE +├─ @babel/plugin-transform-regenerator@7.8.7 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-regenerator +│ ├─ publisher: Ben Newman +│ ├─ email: bn@cs.stanford.edu +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-regenerator +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-regenerator/LICENSE +├─ @babel/plugin-transform-reserved-words@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-reserved-words +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-reserved-words +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-reserved-words/LICENSE +├─ @babel/plugin-transform-runtime@7.9.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-runtime +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-runtime +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-runtime/LICENSE +├─ @babel/plugin-transform-shorthand-properties@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-shorthand-properties +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-shorthand-properties +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-shorthand-properties/LICENSE +├─ @babel/plugin-transform-spread@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-spread +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-spread +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-spread/LICENSE +├─ @babel/plugin-transform-sticky-regex@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-sticky-regex +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-sticky-regex +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-sticky-regex/LICENSE +├─ @babel/plugin-transform-template-literals@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-template-literals +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-template-literals +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-template-literals/LICENSE +├─ @babel/plugin-transform-typeof-symbol@7.8.4 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-typeof-symbol +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-typeof-symbol +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-typeof-symbol/LICENSE +├─ @babel/plugin-transform-unicode-regex@7.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-unicode-regex +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-unicode-regex +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/plugin-transform-unicode-regex/LICENSE +├─ @babel/preset-env@7.9.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-preset-env +│ ├─ publisher: Henry Zhu +│ ├─ email: hi@henryzoo.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/preset-env +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/preset-env/LICENSE +├─ @babel/preset-modules@0.1.3 +│ ├─ licenses: MIT +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/preset-modules +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/preset-modules/README.md +├─ @babel/register@7.9.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-register +│ ├─ publisher: Sebastian McKenzie +│ ├─ email: sebmck@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/register +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/register/LICENSE +├─ @babel/runtime@7.9.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel +│ ├─ publisher: Sebastian McKenzie +│ ├─ email: sebmck@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/runtime +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/runtime/LICENSE +├─ @babel/template@7.8.6 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-template +│ ├─ publisher: Sebastian McKenzie +│ ├─ email: sebmck@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/template +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/template/LICENSE +├─ @babel/traverse@7.9.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-traverse +│ ├─ publisher: Sebastian McKenzie +│ ├─ email: sebmck@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/traverse +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/traverse/LICENSE +├─ @babel/types@7.9.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-types +│ ├─ publisher: Sebastian McKenzie +│ ├─ email: sebmck@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/types +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/types/LICENSE +├─ @hapi/bourne@1.3.2 +│ ├─ licenses: BSD-3-Clause +│ ├─ repository: https://github.com/hapijs/bourne +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@hapi/bourne +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@hapi/bourne/LICENSE.md +├─ @types/color-name@1.1.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/DefinitelyTyped/DefinitelyTyped +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@types/color-name +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@types/color-name/LICENSE +├─ JSONStream@1.3.5 +│ ├─ licenses: (MIT OR Apache-2.0) +│ ├─ repository: https://github.com/dominictarr/JSONStream +│ ├─ publisher: Dominic Tarr +│ ├─ email: dominic.tarr@gmail.com +│ ├─ url: http://bit.ly/dominictarr +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/JSONStream +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/JSONStream/LICENSE.APACHE2 +├─ abbrev@1.1.1 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/isaacs/abbrev-js +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/abbrev +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/abbrev/LICENSE +├─ acorn-jsx@5.2.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/acornjs/acorn-jsx +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/acorn-jsx +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/acorn-jsx/LICENSE +├─ acorn@7.1.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/acornjs/acorn +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/acorn +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/acorn/LICENSE +├─ agent-base@4.2.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/TooTallNate/node-agent-base +│ ├─ publisher: Nathan Rajlich +│ ├─ email: nathan@tootallnate.net +│ ├─ url: http://n8.io/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/socks-proxy-agent/node_modules/agent-base +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/socks-proxy-agent/node_modules/agent-base/README.md +├─ agent-base@4.3.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/TooTallNate/node-agent-base +│ ├─ publisher: Nathan Rajlich +│ ├─ email: nathan@tootallnate.net +│ ├─ url: http://n8.io/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/agent-base +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/agent-base/README.md +├─ agentkeepalive@3.5.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/node-modules/agentkeepalive +│ ├─ publisher: fengmk2 +│ ├─ email: fengmk2@gmail.com +│ ├─ url: https://fengmk2.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/agentkeepalive +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/agentkeepalive/README.md +├─ ajv-keywords@3.4.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/epoberezkin/ajv-keywords +│ ├─ publisher: Evgeny Poberezkin +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/ajv-keywords +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/ajv-keywords/LICENSE +├─ ajv@5.5.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/epoberezkin/ajv +│ ├─ publisher: Evgeny Poberezkin +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/ajv +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/ajv/LICENSE +├─ ajv@6.12.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/epoberezkin/ajv +│ ├─ publisher: Evgeny Poberezkin +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/ajv +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/ajv/LICENSE +├─ ansi-align@2.0.0 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/nexdrew/ansi-align +│ ├─ publisher: nexdrew +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/ansi-align +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/ansi-align/LICENSE +├─ ansi-escapes@4.3.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/ansi-escapes +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: https://sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/ansi-escapes +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/ansi-escapes/license +├─ ansi-regex@2.1.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/chalk/ansi-regex +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/ansi-regex +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/ansi-regex/license +├─ ansi-regex@3.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/chalk/ansi-regex +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/ansi-align/node_modules/ansi-regex +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/ansi-align/node_modules/ansi-regex/license +├─ ansi-regex@4.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/chalk/ansi-regex +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/strip-ansi/node_modules/ansi-regex +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/strip-ansi/node_modules/ansi-regex/license +├─ ansi-regex@5.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/chalk/ansi-regex +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/ansi-regex +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/ansi-regex/license +├─ ansi-styles@3.2.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/chalk/ansi-styles +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/ansi-styles +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/ansi-styles/license +├─ ansi-styles@4.2.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/chalk/ansi-styles +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/inquirer/node_modules/ansi-styles +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/inquirer/node_modules/ansi-styles/license +├─ ansicolors@0.3.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/thlorenz/ansicolors +│ ├─ publisher: Thorsten Lorenz +│ ├─ email: thlorenz@gmx.de +│ ├─ url: thlorenz.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/ansicolors +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/ansicolors/LICENSE +├─ ansistyles@0.1.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/thlorenz/ansistyles +│ ├─ publisher: Thorsten Lorenz +│ ├─ email: thlorenz@gmx.de +│ ├─ url: thlorenz.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/ansistyles +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/ansistyles/LICENSE +├─ anymatch@2.0.0 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/micromatch/anymatch +│ ├─ publisher: Elan Shanker +│ ├─ url: http://github.com/es128 +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/anymatch +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/anymatch/LICENSE +├─ anymatch@3.1.1 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/micromatch/anymatch +│ ├─ publisher: Elan Shanker +│ ├─ url: https://github.com/es128 +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/nodemon/node_modules/anymatch +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/nodemon/node_modules/anymatch/LICENSE +├─ aproba@1.2.0 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/iarna/aproba +│ ├─ publisher: Rebecca Turner +│ ├─ email: me@re-becca.org +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/gentle-fs/node_modules/aproba +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/gentle-fs/node_modules/aproba/LICENSE +├─ aproba@2.0.0 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/iarna/aproba +│ ├─ publisher: Rebecca Turner +│ ├─ email: me@re-becca.org +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/aproba +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/aproba/LICENSE +├─ archy@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/substack/node-archy +│ ├─ publisher: James Halliday +│ ├─ email: mail@substack.net +│ ├─ url: http://substack.net +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/archy +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/archy/LICENSE +├─ are-we-there-yet@1.1.4 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/iarna/are-we-there-yet +│ ├─ publisher: Rebecca Turner +│ ├─ url: http://re-becca.org +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/are-we-there-yet +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/are-we-there-yet/LICENSE +├─ are-we-there-yet@1.1.5 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/iarna/are-we-there-yet +│ ├─ publisher: Rebecca Turner +│ ├─ url: http://re-becca.org +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/fsevents/node_modules/are-we-there-yet +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/fsevents/node_modules/are-we-there-yet/LICENSE +├─ argparse@1.0.10 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/nodeca/argparse +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/argparse +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/argparse/LICENSE +├─ args@5.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/leo/args +│ ├─ publisher: leo +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/args +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/args/license.md +├─ arr-diff@4.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/arr-diff +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/arr-diff +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/arr-diff/LICENSE +├─ arr-flatten@1.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/arr-flatten +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/arr-flatten +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/arr-flatten/LICENSE +├─ arr-union@3.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/arr-union +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/arr-union +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/arr-union/LICENSE +├─ array-includes@3.1.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/es-shims/array-includes +│ ├─ publisher: Jordan Harband +│ ├─ email: ljharb@gmail.com +│ ├─ url: http://ljharb.codes +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/array-includes +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/array-includes/LICENSE +├─ array-unique@0.3.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/array-unique +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/array-unique +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/array-unique/LICENSE +├─ array.prototype.flat@1.2.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/es-shims/Array.prototype.flat +│ ├─ publisher: Jordan Harband +│ ├─ email: ljharb@gmail.com +│ ├─ url: http://ljharb.codes +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/array.prototype.flat +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/array.prototype.flat/LICENSE +├─ asap@2.0.6 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/kriskowal/asap +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/asap +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/asap/LICENSE.md +├─ asn1@0.2.4 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/joyent/node-asn1 +│ ├─ publisher: Joyent +│ ├─ url: joyent.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/asn1 +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/asn1/LICENSE +├─ assert-plus@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/mcavage/node-assert-plus +│ ├─ publisher: Mark Cavage +│ ├─ email: mcavage@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/assert-plus +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/assert-plus/README.md +├─ assign-symbols@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/assign-symbols +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/assign-symbols +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/assign-symbols/LICENSE +├─ astral-regex@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/kevva/astral-regex +│ ├─ publisher: Kevin Mårtensson +│ ├─ email: kevinmartensson@gmail.com +│ ├─ url: github.com/kevva +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/astral-regex +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/astral-regex/license +├─ async-each@1.0.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/paulmillr/async-each +│ ├─ publisher: Paul Miller +│ ├─ url: https://paulmillr.com/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/async-each +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/async-each/README.md +├─ async-limiter@1.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/strml/async-limiter +│ ├─ publisher: Samuel Reed +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/async-limiter +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/async-limiter/LICENSE +├─ async-mqtt@2.5.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/mqttjs/async-mqtt +│ ├─ publisher: rangermauve +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/async-mqtt +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/async-mqtt/LICENSE +├─ asynckit@0.4.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/alexindigo/asynckit +│ ├─ publisher: Alex Indigo +│ ├─ email: iam@alexindigo.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/asynckit +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/asynckit/LICENSE +├─ atob@2.1.2 +│ ├─ licenses: (MIT OR Apache-2.0) +│ ├─ repository: git://git.coolaj86.com/coolaj86/atob.js +│ ├─ publisher: AJ ONeal +│ ├─ email: coolaj86@gmail.com +│ ├─ url: https://coolaj86.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/atob +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/atob/LICENSE +├─ atomic-sleep@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/davidmarkclements/atomic-sleep +│ ├─ publisher: David Mark Clements +│ ├─ url: @davidmarkclem +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/atomic-sleep +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/atomic-sleep/LICENSE +├─ aws-sign2@0.7.0 +│ ├─ licenses: Apache-2.0 +│ ├─ repository: https://github.com/mikeal/aws-sign +│ ├─ publisher: Mikeal Rogers +│ ├─ email: mikeal.rogers@gmail.com +│ ├─ url: http://www.futurealoof.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/aws-sign2 +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/aws-sign2/LICENSE +├─ aws4@1.8.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/mhart/aws4 +│ ├─ publisher: Michael Hart +│ ├─ email: michael.hart.au@gmail.com +│ ├─ url: http://github.com/mhart +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/aws4 +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/aws4/LICENSE +├─ babel-eslint@10.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel-eslint +│ ├─ publisher: Sebastian McKenzie +│ ├─ email: sebmck@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/babel-eslint +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/babel-eslint/LICENSE +├─ babel-loader@8.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/babel-loader +│ ├─ publisher: Luis Couto +│ ├─ email: hello@luiscouto.pt +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/babel-loader +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/babel-loader/LICENSE +├─ babel-plugin-dynamic-import-node@2.3.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/airbnb/babel-plugin-dynamic-import-node +│ ├─ publisher: Jordan Gensler +│ ├─ email: jordan.gensler@airbnb.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/babel-plugin-dynamic-import-node +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/babel-plugin-dynamic-import-node/LICENSE +├─ balanced-match@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/juliangruber/balanced-match +│ ├─ publisher: Julian Gruber +│ ├─ email: mail@juliangruber.com +│ ├─ url: http://juliangruber.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/balanced-match +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/balanced-match/LICENSE.md +├─ base@0.11.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/node-base/base +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/base +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/base/LICENSE +├─ bcrypt-pbkdf@1.0.2 +│ ├─ licenses: BSD-3-Clause +│ ├─ repository: https://github.com/joyent/node-bcrypt-pbkdf +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/bcrypt-pbkdf +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/bcrypt-pbkdf/LICENSE +├─ big.js@5.2.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/MikeMcl/big.js +│ ├─ publisher: Michael Mclaughlin +│ ├─ email: M8ch88l@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/big.js +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/big.js/LICENCE +├─ bin-links@1.1.7 +│ ├─ licenses: Artistic-2.0 +│ ├─ repository: https://github.com/npm/bin-links +│ ├─ publisher: Mike Sherov +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/bin-links +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/bin-links/LICENSE +├─ binary-extensions@1.13.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/binary-extensions +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/binary-extensions +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/binary-extensions/license +├─ binary-extensions@2.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/binary-extensions +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/nodemon/node_modules/binary-extensions +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/nodemon/node_modules/binary-extensions/license +├─ bindings@1.5.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/TooTallNate/node-bindings +│ ├─ publisher: Nathan Rajlich +│ ├─ email: nathan@tootallnate.net +│ ├─ url: http://tootallnate.net +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/bindings +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/bindings/LICENSE.md +├─ bl@1.2.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/rvagg/bl +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/bl +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/bl/LICENSE.md +├─ bluebird@3.5.5 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/petkaantonov/bluebird +│ ├─ publisher: Petka Antonov +│ ├─ email: petka_antonov@hotmail.com +│ ├─ url: http://github.com/petkaantonov/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/bluebird +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/bluebird/LICENSE +├─ boxen@1.3.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/boxen +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/boxen +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/boxen/license +├─ brace-expansion@1.1.11 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/juliangruber/brace-expansion +│ ├─ publisher: Julian Gruber +│ ├─ email: mail@juliangruber.com +│ ├─ url: http://juliangruber.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/brace-expansion +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/brace-expansion/LICENSE +├─ braces@2.3.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/micromatch/braces +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/braces +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/braces/LICENSE +├─ braces@3.0.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/micromatch/braces +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/nodemon/node_modules/braces +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/nodemon/node_modules/braces/LICENSE +├─ browserslist@4.11.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/browserslist/browserslist +│ ├─ publisher: Andrey Sitnik +│ ├─ email: andrey@sitnik.ru +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/browserslist +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/browserslist/LICENSE +├─ buffer-from@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/LinusU/buffer-from +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/buffer-from +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/buffer-from/readme.md +├─ buffer-from@1.1.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/LinusU/buffer-from +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/buffer-from +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/buffer-from/LICENSE +├─ builtins@1.0.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/juliangruber/builtins +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/builtins +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/builtins/License +├─ byline@5.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jahewson/node-byline +│ ├─ publisher: John Hewson +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/byline +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/byline/LICENSE +├─ byte-size@5.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/75lb/byte-size +│ ├─ publisher: Lloyd Brookes +│ ├─ email: 75pound@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/byte-size +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/byte-size/LICENSE +├─ cacache@12.0.3 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/cacache +│ ├─ publisher: Kat Marchán +│ ├─ email: kzm@sykosomatic.org +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/cacache +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/cacache/LICENSE.md +├─ cache-base@1.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/cache-base +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/cache-base +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/cache-base/LICENSE +├─ call-limit@1.1.1 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/iarna/call-limit +│ ├─ publisher: Rebecca Turner +│ ├─ email: me@re-becca.org +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/call-limit +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/call-limit/LICENSE +├─ callback-stream@1.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/mcollina/callback-stream +│ ├─ publisher: Matteo Collina +│ ├─ email: hello@matteocollina.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/callback-stream +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/callback-stream/README.md +├─ callsites@3.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/callsites +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/callsites +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/callsites/license +├─ camelcase@4.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/camelcase +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/boxen/node_modules/camelcase +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/boxen/node_modules/camelcase/license +├─ camelcase@5.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/camelcase +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/camelcase +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/camelcase/license +├─ caniuse-lite@1.0.30001036 +│ ├─ licenses: CC-BY-4.0 +│ ├─ repository: https://github.com/ben-eb/caniuse-lite +│ ├─ publisher: Ben Briggs +│ ├─ email: beneb.info@gmail.com +│ ├─ url: http://beneb.info +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/caniuse-lite +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/caniuse-lite/LICENSE +├─ capture-stack-trace@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/floatdrop/capture-stack-trace +│ ├─ publisher: Vsevolod Strukchinsky +│ ├─ email: floatdrop@gmail.com +│ ├─ url: github.com/floatdrop +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/capture-stack-trace +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/capture-stack-trace/readme.md +├─ capture-stack-trace@1.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/floatdrop/capture-stack-trace +│ ├─ publisher: Vsevolod Strukchinsky +│ ├─ email: floatdrop@gmail.com +│ ├─ url: github.com/floatdrop +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/capture-stack-trace +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/capture-stack-trace/license +├─ caseless@0.12.0 +│ ├─ licenses: Apache-2.0 +│ ├─ repository: https://github.com/mikeal/caseless +│ ├─ publisher: Mikeal Rogers +│ ├─ email: mikeal.rogers@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/caseless +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/caseless/LICENSE +├─ chalk@2.4.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/chalk/chalk +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/chalk +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/chalk/license +├─ chalk@2.4.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/chalk/chalk +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/chalk +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/chalk/license +├─ chalk@3.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/chalk/chalk +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/inquirer/node_modules/chalk +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/inquirer/node_modules/chalk/license +├─ chardet@0.7.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/runk/node-chardet +│ ├─ publisher: Dmitry Shirokov +│ ├─ email: deadrunk@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/chardet +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/chardet/LICENSE +├─ chokidar@2.1.8 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/paulmillr/chokidar +│ ├─ publisher: Paul Miller +│ ├─ url: https://paulmillr.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/chokidar +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/chokidar/README.md +├─ chokidar@3.3.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/paulmillr/chokidar +│ ├─ publisher: Paul Miller +│ ├─ url: https://paulmillr.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/nodemon/node_modules/chokidar +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/nodemon/node_modules/chokidar/LICENSE +├─ chownr@1.1.4 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/isaacs/chownr +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/chownr +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/chownr/LICENSE +├─ ci-info@1.6.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/watson/ci-info +│ ├─ publisher: Thomas Watson Steen +│ ├─ email: w@tson.dk +│ ├─ url: https://twitter.com/wa7son +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/ci-info +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/ci-info/LICENSE +├─ ci-info@2.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/watson/ci-info +│ ├─ publisher: Thomas Watson Steen +│ ├─ email: w@tson.dk +│ ├─ url: https://twitter.com/wa7son +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/ci-info +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/ci-info/LICENSE +├─ cidr-regex@2.0.10 +│ ├─ licenses: BSD-2-Clause +│ ├─ repository: https://github.com/silverwind/cidr-regex +│ ├─ publisher: silverwind +│ ├─ email: me@silverwind.io +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/cidr-regex +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/cidr-regex/LICENSE +├─ class-utils@0.3.6 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/class-utils +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/class-utils +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/class-utils/LICENSE +├─ cli-boxes@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/cli-boxes +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/cli-boxes +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/cli-boxes/license +├─ cli-columns@3.1.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/shannonmoeller/cli-columns +│ ├─ publisher: Shannon Moeller +│ ├─ email: me@shannonmoeller +│ ├─ url: http://shannonmoeller.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/cli-columns +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/cli-columns/LICENSE +├─ cli-cursor@3.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/cli-cursor +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/cli-cursor +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/cli-cursor/license +├─ cli-table3@0.5.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/cli-table/cli-table3 +│ ├─ publisher: James Talmage +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/cli-table3 +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/cli-table3/LICENSE +├─ cli-width@2.2.0 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/knownasilya/cli-width +│ ├─ publisher: Ilya Radchenko +│ ├─ email: ilya@burstcreations.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/cli-width +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/cli-width/LICENSE +├─ cliui@4.1.0 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/yargs/cliui +│ ├─ publisher: Ben Coe +│ ├─ email: ben@npmjs.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/cliui +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/cliui/LICENSE.txt +├─ clone@1.0.4 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/pvorb/node-clone +│ ├─ publisher: Paul Vorbach +│ ├─ email: paul@vorba.ch +│ ├─ url: http://paul.vorba.ch/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/clone +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/clone/LICENSE +├─ cmd-shim@3.0.3 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/cmd-shim +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/cmd-shim +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/cmd-shim/LICENSE +├─ co@4.6.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/tj/co +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/co +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/co/LICENSE +├─ code-point-at@1.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/code-point-at +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/code-point-at +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/code-point-at/license +├─ collection-visit@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/collection-visit +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/collection-visit +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/collection-visit/LICENSE +├─ color-convert@1.9.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/Qix-/color-convert +│ ├─ publisher: Heather Arthur +│ ├─ email: fayearthur@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/color-convert +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/color-convert/LICENSE +├─ color-convert@1.9.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/Qix-/color-convert +│ ├─ publisher: Heather Arthur +│ ├─ email: fayearthur@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/color-convert +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/color-convert/LICENSE +├─ color-convert@2.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/Qix-/color-convert +│ ├─ publisher: Heather Arthur +│ ├─ email: fayearthur@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/inquirer/node_modules/color-convert +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/inquirer/node_modules/color-convert/LICENSE +├─ color-name@1.1.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/dfcreative/color-name +│ ├─ publisher: DY +│ ├─ email: dfcreative@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/color-name +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/color-name/LICENSE +├─ color-name@1.1.4 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/colorjs/color-name +│ ├─ publisher: DY +│ ├─ email: dfcreative@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/inquirer/node_modules/color-name +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/inquirer/node_modules/color-name/LICENSE +├─ colors@1.3.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/Marak/colors.js +│ ├─ publisher: Marak Squires +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/colors +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/colors/LICENSE +├─ columnify@1.5.4 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/timoxley/columnify +│ ├─ publisher: Tim Oxley +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/columnify +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/columnify/LICENSE +├─ combined-stream@1.0.6 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/felixge/node-combined-stream +│ ├─ publisher: Felix Geisendörfer +│ ├─ email: felix@debuggable.com +│ ├─ url: http://debuggable.com/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/combined-stream +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/combined-stream/License +├─ commander@4.1.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/tj/commander.js +│ ├─ publisher: TJ Holowaychuk +│ ├─ email: tj@vision-media.ca +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/commander +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/commander/LICENSE +├─ commist@1.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/mcollina/commist +│ ├─ publisher: Matteo Collina +│ ├─ email: hello@matteocollina.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/commist +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/commist/LICENSE +├─ commondir@1.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/substack/node-commondir +│ ├─ publisher: James Halliday +│ ├─ email: mail@substack.net +│ ├─ url: http://substack.net +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/commondir +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/commondir/LICENSE +├─ component-emitter@1.3.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/component/emitter +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/component-emitter +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/component-emitter/LICENSE +├─ component-type@1.2.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/component/type +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/component-type +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/component-type/Readme.md +├─ concat-map@0.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/substack/node-concat-map +│ ├─ publisher: James Halliday +│ ├─ email: mail@substack.net +│ ├─ url: http://substack.net +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/concat-map +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/concat-map/LICENSE +├─ concat-stream@1.6.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/maxogden/concat-stream +│ ├─ publisher: Max Ogden +│ ├─ email: max@maxogden.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/concat-stream +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/concat-stream/LICENSE +├─ config-chain@1.1.12 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/dominictarr/config-chain +│ ├─ publisher: Dominic Tarr +│ ├─ email: dominic.tarr@gmail.com +│ ├─ url: http://dominictarr.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/config-chain +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/config-chain/LICENCE +├─ configstore@3.1.2 +│ ├─ licenses: BSD-2-Clause +│ ├─ repository: https://github.com/yeoman/configstore +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/configstore +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/configstore/license +├─ confusing-browser-globals@1.0.9 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/facebook/create-react-app +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/confusing-browser-globals +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/confusing-browser-globals/LICENSE +├─ console-control-strings@1.1.0 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/iarna/console-control-strings +│ ├─ publisher: Rebecca Turner +│ ├─ email: me@re-becca.org +│ ├─ url: http://re-becca.org/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/console-control-strings +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/console-control-strings/LICENSE +├─ contains-path@0.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/contains-path +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/contains-path +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/contains-path/LICENSE +├─ convert-source-map@1.7.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/thlorenz/convert-source-map +│ ├─ publisher: Thorsten Lorenz +│ ├─ email: thlorenz@gmx.de +│ ├─ url: http://thlorenz.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/convert-source-map +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/convert-source-map/LICENSE +├─ copy-concurrently@1.0.5 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/copy-concurrently +│ ├─ publisher: Rebecca Turner +│ ├─ email: me@re-becca.org +│ ├─ url: http://re-becca.org/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/copy-concurrently +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/copy-concurrently/LICENSE +├─ copy-descriptor@0.1.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/copy-descriptor +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/copy-descriptor +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/copy-descriptor/LICENSE +├─ core-js-compat@3.6.4 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/zloirock/core-js +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/core-js-compat +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/core-js-compat/LICENSE +├─ core-js@3.6.4 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/zloirock/core-js +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/core-js +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/core-js/LICENSE +├─ core-util-is@1.0.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/isaacs/core-util-is +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/core-util-is +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/core-util-is/LICENSE +├─ create-error-class@3.0.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/floatdrop/create-error-class +│ ├─ publisher: Vsevolod Strukchinsky +│ ├─ email: floatdrop@gmail.com +│ ├─ url: github.com/floatdrop +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/create-error-class +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/create-error-class/license +├─ cross-spawn@5.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/IndigoUnited/node-cross-spawn +│ ├─ publisher: IndigoUnited +│ ├─ email: hello@indigounited.com +│ ├─ url: http://indigounited.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/term-size/node_modules/cross-spawn +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/term-size/node_modules/cross-spawn/LICENSE +├─ cross-spawn@6.0.5 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/moxystudio/node-cross-spawn +│ ├─ publisher: André Cruz +│ ├─ email: andre@moxy.studio +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/cross-spawn +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/cross-spawn/LICENSE +├─ crypto-random-string@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/crypto-random-string +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/crypto-random-string +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/crypto-random-string/license +├─ cyclist@0.2.2 +│ ├─ licenses: MIT* +│ ├─ repository: https://github.com/mafintosh/cyclist +│ ├─ publisher: Mathias Buus Madsen +│ ├─ email: mathiasbuus@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/cyclist +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/cyclist/README.md +├─ d@1.0.1 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/medikoo/d +│ ├─ publisher: Mariusz Nowak +│ ├─ email: medyk@medikoo.com +│ ├─ url: http://www.medikoo.com/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/d +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/d/LICENSE +├─ dashdash@1.14.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/trentm/node-dashdash +│ ├─ publisher: Trent Mick +│ ├─ email: trentm@gmail.com +│ ├─ url: http://trentm.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/dashdash +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/dashdash/LICENSE.txt +├─ dateformat@3.0.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/felixge/node-dateformat +│ ├─ publisher: Steven Levithan +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/dateformat +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/dateformat/LICENSE +├─ debug@2.6.9 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/visionmedia/debug +│ ├─ publisher: TJ Holowaychuk +│ ├─ email: tj@vision-media.ca +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/eslint-plugin-import/node_modules/debug +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/eslint-plugin-import/node_modules/debug/LICENSE +├─ debug@3.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/visionmedia/debug +│ ├─ publisher: TJ Holowaychuk +│ ├─ email: tj@vision-media.ca +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/debug +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/debug/LICENSE +├─ debug@3.2.6 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/visionmedia/debug +│ ├─ publisher: TJ Holowaychuk +│ ├─ email: tj@vision-media.ca +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/nodemon/node_modules/debug +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/nodemon/node_modules/debug/LICENSE +├─ debug@4.1.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/visionmedia/debug +│ ├─ publisher: TJ Holowaychuk +│ ├─ email: tj@vision-media.ca +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/debug +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/debug/LICENSE +├─ debuglog@1.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sam-github/node-debuglog +│ ├─ publisher: Sam Roberts +│ ├─ email: sam@strongloop.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/debuglog +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/debuglog/LICENSE +├─ decamelize@1.2.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/decamelize +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/decamelize +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/decamelize/license +├─ decode-uri-component@0.2.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/SamVerschueren/decode-uri-component +│ ├─ publisher: Sam Verschueren +│ ├─ email: sam.verschueren@gmail.com +│ ├─ url: github.com/SamVerschueren +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/decode-uri-component +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/decode-uri-component/license +├─ deep-extend@0.6.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/unclechu/node-deep-extend +│ ├─ publisher: Viacheslav Lotsmanov +│ ├─ email: lotsmanov89@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/deep-extend +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/deep-extend/LICENSE +├─ deep-is@0.1.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/thlorenz/deep-is +│ ├─ publisher: Thorsten Lorenz +│ ├─ email: thlorenz@gmx.de +│ ├─ url: http://thlorenz.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/deep-is +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/deep-is/LICENSE +├─ defaults@1.0.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/tmpvar/defaults +│ ├─ publisher: Elijah Insua +│ ├─ email: tmpvar@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/defaults +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/defaults/LICENSE +├─ define-properties@1.1.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/ljharb/define-properties +│ ├─ publisher: Jordan Harband +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/define-properties +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/define-properties/LICENSE +├─ define-property@0.2.5 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/define-property +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/class-utils/node_modules/define-property +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/class-utils/node_modules/define-property/LICENSE +├─ define-property@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/define-property +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/base/node_modules/define-property +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/base/node_modules/define-property/LICENSE +├─ define-property@2.0.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/define-property +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/define-property +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/define-property/LICENSE +├─ delayed-stream@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/felixge/node-delayed-stream +│ ├─ publisher: Felix Geisendörfer +│ ├─ email: felix@debuggable.com +│ ├─ url: http://debuggable.com/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/delayed-stream +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/delayed-stream/License +├─ delegates@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/visionmedia/node-delegates +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/delegates +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/delegates/License +├─ detect-indent@5.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/detect-indent +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/detect-indent +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/detect-indent/license +├─ detect-libc@1.0.3 +│ ├─ licenses: Apache-2.0 +│ ├─ repository: https://github.com/lovell/detect-libc +│ ├─ publisher: Lovell Fuller +│ ├─ email: npm@lovell.info +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/fsevents/node_modules/detect-libc +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/fsevents/node_modules/detect-libc/LICENSE +├─ detect-newline@2.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/detect-newline +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/detect-newline +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/detect-newline/license +├─ dezalgo@1.0.3 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/dezalgo +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/dezalgo +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/dezalgo/LICENSE +├─ doctrine@1.5.0 +│ ├─ licenses: BSD +│ ├─ repository: https://github.com/eslint/doctrine +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/eslint-plugin-import/node_modules/doctrine +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/eslint-plugin-import/node_modules/doctrine/LICENSE.BSD +├─ doctrine@3.0.0 +│ ├─ licenses: Apache-2.0 +│ ├─ repository: https://github.com/eslint/doctrine +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/doctrine +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/doctrine/LICENSE +├─ dot-prop@4.2.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/dot-prop +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/dot-prop +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/dot-prop/license +├─ dotenv@5.0.1 +│ ├─ licenses: BSD-2-Clause +│ ├─ repository: https://github.com/motdotla/dotenv +│ ├─ publisher: scottmotte +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/dotenv +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/dotenv/LICENSE +├─ duplexer3@0.1.4 +│ ├─ licenses: BSD-3-Clause +│ ├─ repository: https://github.com/floatdrop/duplexer3 +│ ├─ publisher: Conrad Pankoff +│ ├─ email: deoxxa@fknsrs.biz +│ ├─ url: http://www.fknsrs.biz/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/duplexer3 +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/duplexer3/LICENSE.md +├─ duplexify@3.6.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/mafintosh/duplexify +│ ├─ publisher: Mathias Buus +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/duplexify +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/duplexify/LICENSE +├─ duplexify@3.7.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/mafintosh/duplexify +│ ├─ publisher: Mathias Buus +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/duplexify +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/duplexify/LICENSE +├─ ecc-jsbn@0.1.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/quartzjer/ecc-jsbn +│ ├─ publisher: Jeremie Miller +│ ├─ email: jeremie@jabber.org +│ ├─ url: http://jeremie.com/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/ecc-jsbn +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/ecc-jsbn/LICENSE +├─ editor@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/substack/node-editor +│ ├─ publisher: James Halliday +│ ├─ email: mail@substack.net +│ ├─ url: http://substack.net +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/editor +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/editor/LICENSE +├─ eivindfjeldstad-dot@0.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/eivindfjeldstad/dot +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/eivindfjeldstad-dot +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/eivindfjeldstad-dot/Readme.md +├─ electron-to-chromium@1.3.382 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/kilian/electron-to-chromium +│ ├─ publisher: Kilian Valkhof +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/electron-to-chromium +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/electron-to-chromium/LICENSE +├─ emoji-regex@7.0.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/mathiasbynens/emoji-regex +│ ├─ publisher: Mathias Bynens +│ ├─ url: https://mathiasbynens.be/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/table/node_modules/emoji-regex +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/table/node_modules/emoji-regex/LICENSE-MIT.txt +├─ emoji-regex@8.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/mathiasbynens/emoji-regex +│ ├─ publisher: Mathias Bynens +│ ├─ url: https://mathiasbynens.be/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/emoji-regex +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/emoji-regex/LICENSE-MIT.txt +├─ emojis-list@3.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/kikobeats/emojis-list +│ ├─ publisher: Kiko Beats +│ ├─ email: josefrancisco.verdu@gmail.com +│ ├─ url: https://github.com/Kikobeats +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/emojis-list +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/emojis-list/LICENSE.md +├─ encoding@0.1.12 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/andris9/encoding +│ ├─ publisher: Andris Reinman +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/encoding +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/encoding/LICENSE +├─ end-of-stream@1.4.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/mafintosh/end-of-stream +│ ├─ publisher: Mathias Buus +│ ├─ email: mathiasbuus@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/end-of-stream +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/end-of-stream/LICENSE +├─ end-of-stream@1.4.4 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/mafintosh/end-of-stream +│ ├─ publisher: Mathias Buus +│ ├─ email: mathiasbuus@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/end-of-stream +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/end-of-stream/LICENSE +├─ env-paths@2.2.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/env-paths +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/env-paths +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/env-paths/license +├─ err-code@1.1.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/IndigoUnited/js-err-code +│ ├─ publisher: IndigoUnited +│ ├─ email: hello@indigounited.com +│ ├─ url: http://indigounited.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/err-code +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/err-code/README.md +├─ errno@0.1.7 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/rvagg/node-errno +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/errno +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/errno/README.md +├─ error-ex@1.3.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/qix-/node-error-ex +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/error-ex +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/error-ex/LICENSE +├─ es-abstract@1.12.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/ljharb/es-abstract +│ ├─ publisher: Jordan Harband +│ ├─ email: ljharb@gmail.com +│ ├─ url: http://ljharb.codes +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/es-abstract +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/es-abstract/LICENSE +├─ es-abstract@1.17.5 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/ljharb/es-abstract +│ ├─ publisher: Jordan Harband +│ ├─ email: ljharb@gmail.com +│ ├─ url: http://ljharb.codes +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/es-abstract +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/es-abstract/LICENSE +├─ es-to-primitive@1.2.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/ljharb/es-to-primitive +│ ├─ publisher: Jordan Harband +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/es-to-primitive +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/es-to-primitive/LICENSE +├─ es-to-primitive@1.2.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/ljharb/es-to-primitive +│ ├─ publisher: Jordan Harband +│ ├─ email: ljharb@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/es-to-primitive +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/es-to-primitive/LICENSE +├─ es5-ext@0.10.53 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/medikoo/es5-ext +│ ├─ publisher: Mariusz Nowak +│ ├─ email: medyk@medikoo.com +│ ├─ url: http://www.medikoo.com/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/es5-ext +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/es5-ext/LICENSE +├─ es6-iterator@2.0.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/medikoo/es6-iterator +│ ├─ publisher: Mariusz Nowak +│ ├─ email: medyk@medikoo.com +│ ├─ url: http://www.medikoo.com/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/es6-iterator +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/es6-iterator/LICENSE +├─ es6-map@0.1.5 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/medikoo/es6-map +│ ├─ publisher: Mariusz Nowak +│ ├─ email: medyk@medikoo.com +│ ├─ url: http://www.medikoo.com/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/es6-map +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/es6-map/LICENSE +├─ es6-promise@4.2.8 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/stefanpenner/es6-promise +│ ├─ publisher: Yehuda Katz, Tom Dale, Stefan Penner and contributors +│ ├─ url: Conversion to ES6 API by Jake Archibald +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/es6-promise +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/es6-promise/LICENSE +├─ es6-promisify@5.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/digitaldesignlabs/es6-promisify +│ ├─ publisher: Mike Hall +│ ├─ email: mikehall314@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/es6-promisify +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/es6-promisify/README.md +├─ es6-set@0.1.5 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/medikoo/es6-set +│ ├─ publisher: Mariusz Nowak +│ ├─ email: medyk@medikoo.com +│ ├─ url: http://www.medikoo.com/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/es6-set +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/es6-set/LICENSE +├─ es6-symbol@3.1.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/medikoo/es6-symbol +│ ├─ publisher: Mariusz Nowak +│ ├─ email: medyk@medikoo.com +│ ├─ url: http://www.medikoo.com/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/es6-set/node_modules/es6-symbol +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/es6-set/node_modules/es6-symbol/LICENSE +├─ es6-symbol@3.1.3 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/medikoo/es6-symbol +│ ├─ publisher: Mariusz Nowak +│ ├─ email: medyk@medikoo.com +│ ├─ url: http://www.medikoo.com/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/es6-symbol +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/es6-symbol/LICENSE +├─ escape-string-regexp@1.0.5 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/escape-string-regexp +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/escape-string-regexp +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/escape-string-regexp/license +├─ eslint-config-airbnb-base@14.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/airbnb/javascript +│ ├─ publisher: Jake Teton-Landis +│ ├─ url: https://twitter.com/@jitl +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/eslint-config-airbnb-base +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/eslint-config-airbnb-base/LICENSE.md +├─ eslint-config-airbnb@18.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/airbnb/javascript +│ ├─ publisher: Jake Teton-Landis +│ ├─ url: https://twitter.com/@jitl +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/eslint-config-airbnb +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/eslint-config-airbnb/LICENSE.md +├─ eslint-import-resolver-node@0.3.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/benmosher/eslint-plugin-import +│ ├─ publisher: Ben Mosher +│ ├─ url: me@benmosher.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/eslint-import-resolver-node +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/eslint-import-resolver-node/LICENSE +├─ eslint-module-utils@2.5.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/benmosher/eslint-plugin-import +│ ├─ publisher: Ben Mosher +│ ├─ email: me@benmosher.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/eslint-module-utils +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/eslint-module-utils/LICENSE +├─ eslint-plugin-babel@5.3.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/babel/eslint-plugin-babel +│ ├─ publisher: Jason Quense @monasticpanic +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/eslint-plugin-babel +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/eslint-plugin-babel/LICENSE +├─ eslint-plugin-import@2.20.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/benmosher/eslint-plugin-import +│ ├─ publisher: Ben Mosher +│ ├─ email: me@benmosher.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/eslint-plugin-import +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/eslint-plugin-import/LICENSE +├─ eslint-rule-composer@0.3.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/not-an-aardvark/eslint-rule-composer +│ ├─ publisher: Teddy Katz +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/eslint-rule-composer +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/eslint-rule-composer/LICENSE.md +├─ eslint-scope@5.0.0 +│ ├─ licenses: BSD-2-Clause +│ ├─ repository: https://github.com/eslint/eslint-scope +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/eslint-scope +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/eslint-scope/LICENSE +├─ eslint-utils@1.4.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/mysticatea/eslint-utils +│ ├─ publisher: Toru Nagashima +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/eslint-utils +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/eslint-utils/LICENSE +├─ eslint-visitor-keys@1.1.0 +│ ├─ licenses: Apache-2.0 +│ ├─ repository: https://github.com/eslint/eslint-visitor-keys +│ ├─ publisher: Toru Nagashima +│ ├─ url: https://github.com/mysticatea +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/eslint-visitor-keys +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/eslint-visitor-keys/LICENSE +├─ eslint@6.8.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/eslint/eslint +│ ├─ publisher: Nicholas C. Zakas +│ ├─ email: nicholas+npm@nczconsulting.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/eslint +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/eslint/LICENSE +├─ espree@6.2.1 +│ ├─ licenses: BSD-2-Clause +│ ├─ repository: https://github.com/eslint/espree +│ ├─ publisher: Nicholas C. Zakas +│ ├─ email: nicholas+npm@nczconsulting.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/espree +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/espree/LICENSE +├─ esprima@4.0.1 +│ ├─ licenses: BSD-2-Clause +│ ├─ repository: https://github.com/jquery/esprima +│ ├─ publisher: Ariya Hidayat +│ ├─ email: ariya.hidayat@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/esprima +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/esprima/LICENSE.BSD +├─ esquery@1.2.0 +│ ├─ licenses: BSD-3-Clause +│ ├─ repository: https://github.com/estools/esquery +│ ├─ publisher: Joel Feenstra +│ ├─ email: jrfeenst+esquery@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/esquery +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/esquery/license.txt +├─ esrecurse@4.2.1 +│ ├─ licenses: BSD-2-Clause +│ ├─ repository: https://github.com/estools/esrecurse +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/esrecurse +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/esrecurse/README.md +├─ estraverse@4.3.0 +│ ├─ licenses: BSD-2-Clause +│ ├─ repository: https://github.com/estools/estraverse +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/estraverse +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/estraverse/LICENSE.BSD +├─ estraverse@5.0.0 +│ ├─ licenses: BSD-2-Clause +│ ├─ repository: https://github.com/estools/estraverse +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/esquery/node_modules/estraverse +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/esquery/node_modules/estraverse/LICENSE.BSD +├─ esutils@2.0.3 +│ ├─ licenses: BSD-2-Clause +│ ├─ repository: https://github.com/estools/esutils +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/esutils +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/esutils/LICENSE.BSD +├─ event-emitter@0.3.5 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/medikoo/event-emitter +│ ├─ publisher: Mariusz Nowak +│ ├─ email: medyk@medikoo.com +│ ├─ url: http://www.medikoo.com/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/event-emitter +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/event-emitter/LICENSE +├─ execa@0.7.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/execa +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/term-size/node_modules/execa +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/term-size/node_modules/execa/license +├─ execa@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/execa +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/os-locale/node_modules/execa +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/os-locale/node_modules/execa/license +├─ expand-brackets@2.1.4 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/expand-brackets +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/expand-brackets +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/expand-brackets/LICENSE +├─ ext@1.4.0 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/medikoo/es5-ext/tree/ext +│ ├─ publisher: Mariusz Nowak +│ ├─ email: medyk@medikoo.com +│ ├─ url: http://www.medikoo.com/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/ext +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/ext/LICENSE +├─ extend-shallow@2.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/extend-shallow +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/set-value/node_modules/extend-shallow +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/set-value/node_modules/extend-shallow/LICENSE +├─ extend-shallow@3.0.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/extend-shallow +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/extend-shallow +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/extend-shallow/LICENSE +├─ extend@3.0.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/justmoon/node-extend +│ ├─ publisher: Stefan Thomas +│ ├─ email: justmoon@members.fsf.org +│ ├─ url: http://www.justmoon.net +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/extend +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/extend/LICENSE +├─ external-editor@3.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/mrkmg/node-external-editor +│ ├─ publisher: Kevin Gravier +│ ├─ email: kevin@mrkmg.com +│ ├─ url: https://mrkmg.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/external-editor +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/external-editor/LICENSE +├─ extglob@2.0.4 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/micromatch/extglob +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/extglob +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/extglob/LICENSE +├─ extsprintf@1.3.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/davepacheco/node-extsprintf +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/extsprintf +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/extsprintf/LICENSE +├─ fast-deep-equal@1.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/epoberezkin/fast-deep-equal +│ ├─ publisher: Evgeny Poberezkin +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/fast-deep-equal +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/fast-deep-equal/LICENSE +├─ fast-deep-equal@3.1.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/epoberezkin/fast-deep-equal +│ ├─ publisher: Evgeny Poberezkin +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/fast-deep-equal +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/fast-deep-equal/LICENSE +├─ fast-json-stable-stringify@2.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/epoberezkin/fast-json-stable-stringify +│ ├─ publisher: James Halliday +│ ├─ email: mail@substack.net +│ ├─ url: http://substack.net +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/fast-json-stable-stringify +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/fast-json-stable-stringify/LICENSE +├─ fast-json-stable-stringify@2.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/epoberezkin/fast-json-stable-stringify +│ ├─ publisher: James Halliday +│ ├─ email: mail@substack.net +│ ├─ url: http://substack.net +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/fast-json-stable-stringify +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/fast-json-stable-stringify/LICENSE +├─ fast-levenshtein@2.0.6 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/hiddentao/fast-levenshtein +│ ├─ publisher: Ramesh Nair +│ ├─ email: ram@hiddentao.com +│ ├─ url: http://www.hiddentao.com/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/fast-levenshtein +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/fast-levenshtein/LICENSE.md +├─ fast-redact@2.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/davidmarkclements/fast-redact +│ ├─ publisher: David Mark Clements +│ ├─ email: david.clements@nearform.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/fast-redact +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/fast-redact/LICENSE +├─ fast-safe-stringify@2.0.7 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/davidmarkclements/fast-safe-stringify +│ ├─ publisher: David Mark Clements +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/fast-safe-stringify +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/fast-safe-stringify/LICENSE +├─ figgy-pudding@3.5.1 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/zkat/figgy-pudding +│ ├─ publisher: Kat Marchán +│ ├─ email: kzm@sykosomatic.org +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/figgy-pudding +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/figgy-pudding/LICENSE.md +├─ figures@3.2.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/figures +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: https://sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/figures +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/figures/license +├─ file-entry-cache@5.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/royriojas/file-entry-cache +│ ├─ publisher: Roy Riojas +│ ├─ url: http://royriojas.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/file-entry-cache +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/file-entry-cache/LICENSE +├─ file-uri-to-path@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/TooTallNate/file-uri-to-path +│ ├─ publisher: Nathan Rajlich +│ ├─ email: nathan@tootallnate.net +│ ├─ url: http://n8.io/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/file-uri-to-path +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/file-uri-to-path/LICENSE +├─ fill-range@4.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/fill-range +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/fill-range +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/fill-range/LICENSE +├─ fill-range@7.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/fill-range +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/nodemon/node_modules/fill-range +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/nodemon/node_modules/fill-range/LICENSE +├─ find-cache-dir@2.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/avajs/find-cache-dir +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/find-cache-dir +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/find-cache-dir/license +├─ find-npm-prefix@1.0.2 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/find-npm-prefix +│ ├─ publisher: Rebecca Turner +│ ├─ email: me@re-becca.org +│ ├─ url: http://re-becca.org/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/find-npm-prefix +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/find-npm-prefix/LICENSE +├─ find-up@2.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/find-up +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/find-up +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/find-up/license +├─ find-up@3.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/find-up +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/libnpmconfig/node_modules/find-up +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/libnpmconfig/node_modules/find-up/license +├─ flat-cache@2.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/royriojas/flat-cache +│ ├─ publisher: Roy Riojas +│ ├─ url: http://royriojas.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/flat-cache +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/flat-cache/LICENSE +├─ flatstr@1.0.12 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/davidmarkclements/flatstr +│ ├─ publisher: David Mark Clements +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/flatstr +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/flatstr/LICENSE +├─ flatted@2.0.1 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/WebReflection/flatted +│ ├─ publisher: Andrea Giammarchi +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/flatted +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/flatted/LICENSE +├─ flush-write-stream@1.0.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/mafintosh/flush-write-stream +│ ├─ publisher: Mathias Buus +│ ├─ url: @mafintosh +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/flush-write-stream +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/flush-write-stream/LICENSE +├─ for-in@1.0.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/for-in +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/for-in +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/for-in/LICENSE +├─ forever-agent@0.6.1 +│ ├─ licenses: Apache-2.0 +│ ├─ repository: https://github.com/mikeal/forever-agent +│ ├─ publisher: Mikeal Rogers +│ ├─ email: mikeal.rogers@gmail.com +│ ├─ url: http://www.futurealoof.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/forever-agent +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/forever-agent/LICENSE +├─ form-data@2.3.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/form-data/form-data +│ ├─ publisher: Felix Geisendörfer +│ ├─ email: felix@debuggable.com +│ ├─ url: http://debuggable.com/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/form-data +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/form-data/License +├─ fragment-cache@0.2.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/fragment-cache +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/fragment-cache +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/fragment-cache/LICENSE +├─ from2@1.3.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/hughsk/from2 +│ ├─ publisher: Hugh Kennedy +│ ├─ email: hughskennedy@gmail.com +│ ├─ url: http://hughsk.io/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/sorted-union-stream/node_modules/from2 +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/sorted-union-stream/node_modules/from2/LICENSE.md +├─ from2@2.3.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/hughsk/from2 +│ ├─ publisher: Hugh Kennedy +│ ├─ email: hughskennedy@gmail.com +│ ├─ url: http://hughsk.io/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/from2 +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/from2/LICENSE.md +├─ fs-minipass@1.2.7 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/fs-minipass +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/fs-minipass +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/fs-minipass/LICENSE +├─ fs-readdir-recursive@1.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/fs-utils/fs-readdir-recursive +│ ├─ publisher: Jonathan Ong +│ ├─ email: me@jongleberry.com +│ ├─ url: http://jongleberry.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/fs-readdir-recursive +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/fs-readdir-recursive/LICENSE +├─ fs-vacuum@1.2.10 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/fs-vacuum +│ ├─ publisher: Forrest L Norvell +│ ├─ email: ogd@aoaioxxysz.net +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/fs-vacuum +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/fs-vacuum/LICENSE +├─ fs-write-stream-atomic@1.0.10 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/fs-write-stream-atomic +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/fs-write-stream-atomic +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/fs-write-stream-atomic/LICENSE +├─ fs.realpath@1.0.0 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/isaacs/fs.realpath +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/fs.realpath +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/fs.realpath/LICENSE +├─ fsevents@1.2.12 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/strongloop/fsevents +│ ├─ publisher: Philipp Dunkel +│ ├─ email: pip@pipobscure.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/fsevents +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/fsevents/LICENSE +├─ fsevents@2.1.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/fsevents/fsevents +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/nodemon/node_modules/fsevents +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/nodemon/node_modules/fsevents/LICENSE +├─ function-bind@1.1.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/Raynos/function-bind +│ ├─ publisher: Raynos +│ ├─ email: raynos2@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/function-bind +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/function-bind/LICENSE +├─ functional-red-black-tree@1.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/mikolalysenko/functional-red-black-tree +│ ├─ publisher: Mikola Lysenko +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/functional-red-black-tree +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/functional-red-black-tree/LICENSE +├─ gauge@2.7.4 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/iarna/gauge +│ ├─ publisher: Rebecca Turner +│ ├─ email: me@re-becca.org +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/gauge +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/gauge/LICENSE +├─ genfun@5.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/zkat/genfun +│ ├─ publisher: Kat Marchán +│ ├─ email: kzm@sykosomatic.org +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/genfun +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/genfun/LICENSE +├─ gensync@1.0.0-beta.1 +│ ├─ licenses: MIT +│ ├─ publisher: Logan Smyth +│ ├─ email: loganfsmyth@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/gensync +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/gensync/LICENSE +├─ gentle-fs@2.3.0 +│ ├─ licenses: Artistic-2.0 +│ ├─ repository: https://github.com/npm/gentle-fs +│ ├─ publisher: Mike Sherov +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/gentle-fs +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/gentle-fs/LICENSE +├─ get-caller-file@1.0.3 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/stefanpenner/get-caller-file +│ ├─ publisher: Stefan Penner +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/get-caller-file +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/get-caller-file/LICENSE.md +├─ get-stream@3.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/get-stream +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/term-size/node_modules/get-stream +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/term-size/node_modules/get-stream/license +├─ get-stream@4.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/get-stream +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/get-stream +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/get-stream/license +├─ get-value@2.0.6 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/get-value +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/get-value +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/get-value/LICENSE +├─ getpass@0.1.7 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/arekinath/node-getpass +│ ├─ publisher: Alex Wilson +│ ├─ email: alex.wilson@joyent.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/getpass +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/getpass/LICENSE +├─ glob-parent@3.1.0 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/es128/glob-parent +│ ├─ publisher: Elan Shanker +│ ├─ url: https://github.com/es128 +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/glob-stream/node_modules/glob-parent +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/glob-stream/node_modules/glob-parent/LICENSE +├─ glob-parent@5.1.1 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/gulpjs/glob-parent +│ ├─ publisher: Gulp Team +│ ├─ email: team@gulpjs.com +│ ├─ url: https://gulpjs.com/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/glob-parent +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/glob-parent/LICENSE +├─ glob-stream@6.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/gulpjs/glob-stream +│ ├─ publisher: Gulp Team +│ ├─ email: team@gulpjs.com +│ ├─ url: http://gulpjs.com/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/glob-stream +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/glob-stream/LICENSE +├─ glob@7.1.6 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/isaacs/node-glob +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/glob +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/glob/LICENSE +├─ global-dirs@0.1.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/global-dirs +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/global-dirs +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/global-dirs/license +├─ globals@11.12.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/globals +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/globals +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/globals/license +├─ globals@12.4.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/globals +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: https://sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/eslint/node_modules/globals +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/eslint/node_modules/globals/license +├─ got@6.7.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/got +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/got +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/got/license +├─ graceful-fs@4.2.3 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/isaacs/node-graceful-fs +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/graceful-fs +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/graceful-fs/LICENSE +├─ har-schema@2.0.0 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/ahmadnassri/har-schema +│ ├─ publisher: Ahmad Nassri +│ ├─ email: ahmad@ahmadnassri.com +│ ├─ url: https://www.ahmadnassri.com/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/har-schema +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/har-schema/LICENSE +├─ har-validator@5.1.0 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/ahmadnassri/har-validator +│ ├─ publisher: Ahmad Nassri +│ ├─ email: ahmad@ahmadnassri.com +│ ├─ url: https://www.ahmadnassri.com/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/har-validator +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/har-validator/LICENSE +├─ has-flag@3.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/has-flag +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/has-flag +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/has-flag/license +├─ has-flag@4.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/has-flag +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/inquirer/node_modules/has-flag +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/inquirer/node_modules/has-flag/license +├─ has-symbols@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/ljharb/has-symbols +│ ├─ publisher: Jordan Harband +│ ├─ email: ljharb@gmail.com +│ ├─ url: http://ljharb.codes +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/has-symbols +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/has-symbols/LICENSE +├─ has-symbols@1.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/ljharb/has-symbols +│ ├─ publisher: Jordan Harband +│ ├─ email: ljharb@gmail.com +│ ├─ url: http://ljharb.codes +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/has-symbols +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/has-symbols/LICENSE +├─ has-unicode@2.0.1 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/iarna/has-unicode +│ ├─ publisher: Rebecca Turner +│ ├─ email: me@re-becca.org +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/has-unicode +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/has-unicode/LICENSE +├─ has-value@0.3.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/has-value +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/unset-value/node_modules/has-value +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/unset-value/node_modules/has-value/LICENSE +├─ has-value@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/has-value +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/has-value +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/has-value/LICENSE +├─ has-values@0.1.4 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/has-values +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/unset-value/node_modules/has-values +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/unset-value/node_modules/has-values/LICENSE +├─ has-values@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/has-values +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/has-values +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/has-values/LICENSE +├─ has@1.0.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/tarruda/has +│ ├─ publisher: Thiago de Arruda +│ ├─ email: tpadilha84@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/has +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/has/LICENSE-MIT +├─ help-me@1.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/mcollina/help-me +│ ├─ publisher: Matteo Collina +│ ├─ email: hello@matteocollina.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/help-me +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/help-me/LICENSE +├─ homedir-polyfill@1.0.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/doowb/homedir-polyfill +│ ├─ publisher: Brian Woodward +│ ├─ url: https://github.com/doowb +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/homedir-polyfill +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/homedir-polyfill/LICENSE +├─ hosted-git-info@2.8.8 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/hosted-git-info +│ ├─ publisher: Rebecca Turner +│ ├─ email: me@re-becca.org +│ ├─ url: http://re-becca.org +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/hosted-git-info +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/hosted-git-info/LICENSE +├─ http-cache-semantics@3.8.1 +│ ├─ licenses: BSD-2-Clause +│ ├─ repository: https://github.com/pornel/http-cache-semantics +│ ├─ publisher: Kornel Lesiński +│ ├─ email: kornel@geekhood.net +│ ├─ url: https://kornel.ski/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/http-cache-semantics +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/http-cache-semantics/README.md +├─ http-proxy-agent@2.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/TooTallNate/node-http-proxy-agent +│ ├─ publisher: Nathan Rajlich +│ ├─ email: nathan@tootallnate.net +│ ├─ url: http://n8.io/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/http-proxy-agent +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/http-proxy-agent/README.md +├─ http-signature@1.2.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/joyent/node-http-signature +│ ├─ publisher: Joyent, Inc +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/http-signature +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/http-signature/LICENSE +├─ https-proxy-agent@2.2.4 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/TooTallNate/node-https-proxy-agent +│ ├─ publisher: Nathan Rajlich +│ ├─ email: nathan@tootallnate.net +│ ├─ url: http://n8.io/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/https-proxy-agent +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/https-proxy-agent/README.md +├─ humanize-ms@1.2.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/node-modules/humanize-ms +│ ├─ publisher: dead-horse +│ ├─ email: dead_horse@qq.com +│ ├─ url: http://deadhorse.me +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/humanize-ms +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/humanize-ms/LICENSE +├─ i@0.3.6 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/pksunkara/inflect +│ ├─ publisher: Pavan Kumar Sunkara +│ ├─ email: pavan.sss1991@gmail.com +│ ├─ url: pksunkara.github.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/i +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/i/LICENSE +├─ iconv-lite@0.4.23 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/ashtuchkin/iconv-lite +│ ├─ publisher: Alexander Shtuchkin +│ ├─ email: ashtuchkin@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/iconv-lite +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/iconv-lite/LICENSE +├─ iconv-lite@0.4.24 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/ashtuchkin/iconv-lite +│ ├─ publisher: Alexander Shtuchkin +│ ├─ email: ashtuchkin@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/iconv-lite +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/iconv-lite/LICENSE +├─ iferr@0.1.5 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/shesek/iferr +│ ├─ publisher: Nadav Ivgi +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/gentle-fs/node_modules/iferr +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/gentle-fs/node_modules/iferr/LICENSE +├─ iferr@1.0.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/shesek/iferr +│ ├─ publisher: Nadav Ivgi +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/iferr +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/iferr/LICENSE +├─ ignore-by-default@1.0.1 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/novemberborn/ignore-by-default +│ ├─ publisher: Mark Wubben +│ ├─ url: https://novemberborn.net/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/ignore-by-default +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/ignore-by-default/LICENSE +├─ ignore-walk@3.0.3 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/isaacs/ignore-walk +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/ignore-walk +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/ignore-walk/LICENSE +├─ ignore@4.0.6 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/kaelzhang/node-ignore +│ ├─ publisher: kael +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/ignore +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/ignore/LICENSE-MIT +├─ import-fresh@3.2.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/import-fresh +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/import-fresh +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/import-fresh/license +├─ import-lazy@2.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/import-lazy +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/import-lazy +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/import-lazy/license +├─ imurmurhash@0.1.4 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jensyt/imurmurhash-js +│ ├─ publisher: Jens Taylor +│ ├─ email: jensyt@gmail.com +│ ├─ url: https://github.com/homebrewing +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/imurmurhash +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/imurmurhash/README.md +├─ infer-owner@1.0.4 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/infer-owner +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: https://izs.me +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/infer-owner +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/infer-owner/LICENSE +├─ inflight@1.0.6 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/inflight +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/inflight +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/inflight/LICENSE +├─ inherits@2.0.4 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/isaacs/inherits +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/inherits +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/inherits/LICENSE +├─ ini@1.3.5 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/isaacs/ini +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/ini +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/ini/LICENSE +├─ init-package-json@1.10.3 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/init-package-json +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/init-package-json +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/init-package-json/LICENSE +├─ inquirer@7.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/SBoudrias/Inquirer.js +│ ├─ publisher: Simon Boudrias +│ ├─ email: admin@simonboudrias.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/inquirer +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/inquirer/LICENSE +├─ invariant@2.2.4 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/zertosh/invariant +│ ├─ publisher: Andres Suarez +│ ├─ email: zertosh@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/invariant +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/invariant/LICENSE +├─ invert-kv@2.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/invert-kv +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/invert-kv +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/invert-kv/license +├─ ip-regex@2.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/ip-regex +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/ip-regex +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/ip-regex/license +├─ ip@1.1.5 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/indutny/node-ip +│ ├─ publisher: Fedor Indutny +│ ├─ email: fedor@indutny.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/ip +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/ip/README.md +├─ is-absolute@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/is-absolute +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/is-absolute +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/is-absolute/LICENSE +├─ is-accessor-descriptor@0.1.6 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/is-accessor-descriptor +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/is-accessor-descriptor +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/is-accessor-descriptor/LICENSE +├─ is-accessor-descriptor@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/is-accessor-descriptor +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/base/node_modules/is-accessor-descriptor +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/base/node_modules/is-accessor-descriptor/LICENSE +├─ is-arrayish@0.2.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/qix-/node-is-arrayish +│ ├─ publisher: Qix +│ ├─ url: http://github.com/qix- +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/is-arrayish +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/is-arrayish/LICENSE +├─ is-binary-path@1.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/is-binary-path +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/is-binary-path +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/is-binary-path/license +├─ is-binary-path@2.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/is-binary-path +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/nodemon/node_modules/is-binary-path +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/nodemon/node_modules/is-binary-path/license +├─ is-buffer@1.1.6 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/feross/is-buffer +│ ├─ publisher: Feross Aboukhadijeh +│ ├─ email: feross@feross.org +│ ├─ url: http://feross.org/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/is-buffer +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/is-buffer/LICENSE +├─ is-callable@1.1.4 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/ljharb/is-callable +│ ├─ publisher: Jordan Harband +│ ├─ email: ljharb@gmail.com +│ ├─ url: http://ljharb.codes +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/is-callable +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/is-callable/LICENSE +├─ is-callable@1.1.5 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/ljharb/is-callable +│ ├─ publisher: Jordan Harband +│ ├─ email: ljharb@gmail.com +│ ├─ url: http://ljharb.codes +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/is-callable +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/is-callable/LICENSE +├─ is-ci@1.2.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/watson/is-ci +│ ├─ publisher: Thomas Watson Steen +│ ├─ email: w@tson.dk +│ ├─ url: https://twitter.com/wa7son +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/is-ci +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/is-ci/LICENSE +├─ is-cidr@3.0.0 +│ ├─ licenses: BSD-2-Clause +│ ├─ repository: https://github.com/silverwind/is-cidr +│ ├─ publisher: silverwind +│ ├─ email: me@silverwind.io +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/is-cidr +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/is-cidr/LICENSE +├─ is-data-descriptor@0.1.4 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/is-data-descriptor +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/is-data-descriptor +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/is-data-descriptor/LICENSE +├─ is-data-descriptor@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/is-data-descriptor +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/base/node_modules/is-data-descriptor +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/base/node_modules/is-data-descriptor/LICENSE +├─ is-date-object@1.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/ljharb/is-date-object +│ ├─ publisher: Jordan Harband +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/is-date-object +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/is-date-object/LICENSE +├─ is-date-object@1.0.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/ljharb/is-date-object +│ ├─ publisher: Jordan Harband +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/is-date-object +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/is-date-object/LICENSE +├─ is-descriptor@0.1.6 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/is-descriptor +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/is-descriptor +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/is-descriptor/LICENSE +├─ is-descriptor@1.0.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/is-descriptor +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/base/node_modules/is-descriptor +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/base/node_modules/is-descriptor/LICENSE +├─ is-extendable@0.1.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/is-extendable +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/is-extendable +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/is-extendable/LICENSE +├─ is-extendable@1.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/is-extendable +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/extend-shallow/node_modules/is-extendable +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/extend-shallow/node_modules/is-extendable/LICENSE +├─ is-extglob@2.1.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/is-extglob +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/is-extglob +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/is-extglob/LICENSE +├─ is-fullwidth-code-point@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/is-fullwidth-code-point +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/is-fullwidth-code-point +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/is-fullwidth-code-point/license +├─ is-fullwidth-code-point@2.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/is-fullwidth-code-point +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/slice-ansi/node_modules/is-fullwidth-code-point +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/slice-ansi/node_modules/is-fullwidth-code-point/license +├─ is-fullwidth-code-point@3.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/is-fullwidth-code-point +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/is-fullwidth-code-point +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/is-fullwidth-code-point/license +├─ is-glob@3.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/is-glob +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/glob-stream/node_modules/is-glob +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/glob-stream/node_modules/is-glob/LICENSE +├─ is-glob@4.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/micromatch/is-glob +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/is-glob +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/is-glob/LICENSE +├─ is-installed-globally@0.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/is-installed-globally +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/is-installed-globally +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/is-installed-globally/license +├─ is-negated-glob@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/is-negated-glob +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/is-negated-glob +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/is-negated-glob/LICENSE +├─ is-npm@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/is-npm +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: http://sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/is-npm +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/is-npm/readme.md +├─ is-number@3.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/is-number +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/is-number +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/is-number/LICENSE +├─ is-number@7.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/is-number +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/nodemon/node_modules/is-number +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/nodemon/node_modules/is-number/LICENSE +├─ is-obj@1.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/is-obj +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/is-obj +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/is-obj/license +├─ is-path-inside@1.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/is-path-inside +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/is-installed-globally/node_modules/is-path-inside +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/is-installed-globally/node_modules/is-path-inside/license +├─ is-plain-object@2.0.4 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/is-plain-object +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/is-plain-object +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/is-plain-object/LICENSE +├─ is-promise@2.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/then/is-promise +│ ├─ publisher: ForbesLindesay +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/is-promise +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/is-promise/LICENSE +├─ is-redirect@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/is-redirect +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/is-redirect +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/is-redirect/license +├─ is-regex@1.0.4 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/ljharb/is-regex +│ ├─ publisher: Jordan Harband +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/is-regex +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/is-regex/LICENSE +├─ is-regex@1.0.5 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/ljharb/is-regex +│ ├─ publisher: Jordan Harband +│ ├─ email: ljharb@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/is-regex +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/is-regex/LICENSE +├─ is-relative@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/is-relative +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/is-relative +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/is-relative/LICENSE +├─ is-retry-allowed@1.2.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/floatdrop/is-retry-allowed +│ ├─ publisher: Vsevolod Strukchinsky +│ ├─ email: floatdrop@gmail.com +│ ├─ url: github.com/floatdrop +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/is-retry-allowed +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/is-retry-allowed/license +├─ is-stream@1.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/is-stream +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/is-stream +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/is-stream/license +├─ is-string@1.0.5 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/ljharb/is-string +│ ├─ publisher: Jordan Harband +│ ├─ email: ljharb@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/is-string +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/is-string/LICENSE +├─ is-symbol@1.0.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/ljharb/is-symbol +│ ├─ publisher: Jordan Harband +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/is-symbol +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/is-symbol/LICENSE +├─ is-symbol@1.0.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/inspect-js/is-symbol +│ ├─ publisher: Jordan Harband +│ ├─ email: ljharb@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/is-symbol +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/is-symbol/LICENSE +├─ is-typedarray@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/hughsk/is-typedarray +│ ├─ publisher: Hugh Kennedy +│ ├─ email: hughskennedy@gmail.com +│ ├─ url: http://hughsk.io/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/is-typedarray +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/is-typedarray/LICENSE.md +├─ is-unc-path@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/is-unc-path +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/is-unc-path +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/is-unc-path/LICENSE +├─ is-windows@1.0.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/is-windows +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/is-windows +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/is-windows/LICENSE +├─ isarray@0.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/juliangruber/isarray +│ ├─ publisher: Julian Gruber +│ ├─ email: mail@juliangruber.com +│ ├─ url: http://juliangruber.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/sorted-union-stream/node_modules/isarray +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/sorted-union-stream/node_modules/isarray/README.md +├─ isarray@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/juliangruber/isarray +│ ├─ publisher: Julian Gruber +│ ├─ email: mail@juliangruber.com +│ ├─ url: http://juliangruber.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/isarray +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/isarray/README.md +├─ isexe@2.0.0 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/isaacs/isexe +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/isexe +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/isexe/LICENSE +├─ isobject@2.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/isobject +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/unset-value/node_modules/has-value/node_modules/isobject +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/unset-value/node_modules/has-value/node_modules/isobject/LICENSE +├─ isobject@3.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/isobject +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/isobject +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/isobject/LICENSE +├─ isstream@0.1.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/rvagg/isstream +│ ├─ publisher: Rod Vagg +│ ├─ email: rod@vagg.org +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/isstream +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/isstream/LICENSE.md +├─ jmespath@0.15.0 +│ ├─ licenses: Apache 2.0 +│ ├─ repository: https://github.com/jmespath/jmespath.js +│ ├─ publisher: James Saryerwinnie +│ ├─ email: js@jamesls.com +│ ├─ url: http://jamesls.com/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/jmespath +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/jmespath/LICENSE +├─ joycon@2.2.5 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/egoist/joycon +│ ├─ publisher: egoist +│ ├─ email: 0x142857@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/joycon +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/joycon/LICENSE +├─ js-tokens@4.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/lydell/js-tokens +│ ├─ publisher: Simon Lydell +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/js-tokens +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/js-tokens/LICENSE +├─ js-yaml@3.13.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/nodeca/js-yaml +│ ├─ publisher: Vladimir Zapparov +│ ├─ email: dervus.grim@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/js-yaml +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/js-yaml/LICENSE +├─ jsbn@0.1.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/andyperlitch/jsbn +│ ├─ publisher: Tom Wu +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/jsbn +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/jsbn/LICENSE +├─ jsesc@0.5.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/mathiasbynens/jsesc +│ ├─ publisher: Mathias Bynens +│ ├─ url: http://mathiasbynens.be/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/regjsparser/node_modules/jsesc +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/regjsparser/node_modules/jsesc/LICENSE-MIT.txt +├─ jsesc@2.5.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/mathiasbynens/jsesc +│ ├─ publisher: Mathias Bynens +│ ├─ url: https://mathiasbynens.be/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/jsesc +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/jsesc/LICENSE-MIT.txt +├─ json-parse-better-errors@1.0.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/zkat/json-parse-better-errors +│ ├─ publisher: Kat Marchán +│ ├─ email: kzm@zkat.tech +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/json-parse-better-errors +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/json-parse-better-errors/LICENSE.md +├─ json-schema-traverse@0.3.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/epoberezkin/json-schema-traverse +│ ├─ publisher: Evgeny Poberezkin +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/json-schema-traverse +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/json-schema-traverse/LICENSE +├─ json-schema-traverse@0.4.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/epoberezkin/json-schema-traverse +│ ├─ publisher: Evgeny Poberezkin +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/json-schema-traverse +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/json-schema-traverse/LICENSE +├─ json-schema@0.2.3 +│ ├─ licenses +│ │ ├─ 0: AFLv2.1 +│ │ └─ 1: BSD +│ ├─ repository: https://github.com/kriszyp/json-schema +│ ├─ publisher: Kris Zyp +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/json-schema +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/json-schema/README.md +├─ json-stable-stringify-without-jsonify@1.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/samn/json-stable-stringify +│ ├─ publisher: James Halliday +│ ├─ email: mail@substack.net +│ ├─ url: http://substack.net +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/json-stable-stringify-without-jsonify +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/json-stable-stringify-without-jsonify/LICENSE +├─ json-stringify-safe@5.0.1 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/isaacs/json-stringify-safe +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/json-stringify-safe +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/json-stringify-safe/LICENSE +├─ json5@1.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/json5/json5 +│ ├─ publisher: Aseem Kishore +│ ├─ email: aseem.kishore@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/json5 +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/json5/LICENSE.md +├─ json5@2.1.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/json5/json5 +│ ├─ publisher: Aseem Kishore +│ ├─ email: aseem.kishore@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/core/node_modules/json5 +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/@babel/core/node_modules/json5/LICENSE.md +├─ jsonparse@1.3.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/creationix/jsonparse +│ ├─ publisher: Tim Caswell +│ ├─ email: tim@creationix.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/jsonparse +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/jsonparse/LICENSE +├─ jsprim@1.4.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/joyent/node-jsprim +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/jsprim +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/jsprim/LICENSE +├─ kind-of@3.2.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/kind-of +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/is-number/node_modules/kind-of +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/is-number/node_modules/kind-of/LICENSE +├─ kind-of@4.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/kind-of +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/has-values/node_modules/kind-of +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/has-values/node_modules/kind-of/LICENSE +├─ kind-of@5.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/kind-of +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/is-descriptor/node_modules/kind-of +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/is-descriptor/node_modules/kind-of/LICENSE +├─ kind-of@6.0.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/kind-of +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/kind-of +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/kind-of/LICENSE +├─ latest-version@3.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/latest-version +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/latest-version +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/latest-version/license +├─ lazy-property@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/mikolalysenko/lazy-property +│ ├─ publisher: Mikola Lysenko +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/lazy-property +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/lazy-property/LICENSE +├─ lcid@2.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/lcid +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/lcid +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/lcid/license +├─ leven@2.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/leven +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/commist/node_modules/leven +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/commist/node_modules/leven/license +├─ leven@3.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/leven +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/leven +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/leven/license +├─ levenary@1.1.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/tanhauhau/levenary +│ ├─ publisher: Tan Li Hau +│ ├─ email: lhtan93@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/levenary +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/levenary/LICENSE +├─ levn@0.3.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/gkz/levn +│ ├─ publisher: George Zahariev +│ ├─ email: z@georgezahariev.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/levn +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/levn/LICENSE +├─ libcipm@4.0.7 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/npm/libcipm +│ ├─ publisher: Kat Marchán +│ ├─ email: kzm@sykosomatic.org +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/libcipm +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/libcipm/LICENSE.md +├─ libnpm@3.0.1 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/libnpm +│ ├─ publisher: Kat Marchán +│ ├─ email: kzm@zkat.tech +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/libnpm +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/libnpm/LICENSE.md +├─ libnpmaccess@3.0.2 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/libnpmaccess +│ ├─ publisher: Kat Marchán +│ ├─ email: kzm@zkat.tech +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/libnpmaccess +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/libnpmaccess/LICENSE +├─ libnpmconfig@1.2.1 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/libnpmconfig +│ ├─ publisher: Kat Marchán +│ ├─ email: kzm@zkat.tech +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/libnpmconfig +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/libnpmconfig/LICENSE +├─ libnpmhook@5.0.3 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/libnpmhook +│ ├─ publisher: Kat Marchán +│ ├─ email: kzm@sykosomatic.org +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/libnpmhook +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/libnpmhook/LICENSE.md +├─ libnpmorg@1.0.1 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/libnpmorg +│ ├─ publisher: Kat Marchán +│ ├─ email: kzm@zkat.tech +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/libnpmorg +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/libnpmorg/LICENSE +├─ libnpmpublish@1.1.2 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/libnpmpublish +│ ├─ publisher: Kat Marchán +│ ├─ email: kzm@zkat.tech +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/libnpmpublish +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/libnpmpublish/LICENSE +├─ libnpmsearch@2.0.2 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/libnpmsearch +│ ├─ publisher: Kat Marchán +│ ├─ email: kzm@zkat.tech +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/libnpmsearch +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/libnpmsearch/LICENSE +├─ libnpmteam@1.0.2 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/libnpmteam +│ ├─ publisher: Kat Marchán +│ ├─ email: kzm@zkat.tech +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/libnpmteam +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/libnpmteam/LICENSE +├─ libnpx@10.2.2 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/npx +│ ├─ publisher: Kat Marchán +│ ├─ email: kzm@sykosomatic.org +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/libnpx +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/libnpx/LICENSE.md +├─ load-json-file@2.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/load-json-file +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/load-json-file +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/load-json-file/license +├─ loader-utils@1.4.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/webpack/loader-utils +│ ├─ publisher: Tobias Koppers @sokra +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/loader-utils +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/loader-utils/LICENSE +├─ locate-path@2.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/locate-path +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/locate-path +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/locate-path/license +├─ locate-path@3.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/locate-path +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/libnpmconfig/node_modules/locate-path +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/libnpmconfig/node_modules/locate-path/license +├─ lock-verify@2.1.0 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/iarna/lock-verify +│ ├─ publisher: Rebecca Turner +│ ├─ email: me@re-becca.org +│ ├─ url: http://re-becca.org/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/lock-verify +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/lock-verify/LICENSE +├─ lockfile@1.0.4 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/lockfile +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/lockfile +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/lockfile/LICENSE +├─ lodash._baseindexof@3.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/lodash/lodash +│ ├─ publisher: John-David Dalton +│ ├─ email: john.david.dalton@gmail.com +│ ├─ url: http://allyoucanleet.com/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/lodash._baseindexof +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/lodash._baseindexof/LICENSE.txt +├─ lodash._baseuniq@4.6.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/lodash/lodash +│ ├─ publisher: John-David Dalton +│ ├─ email: john.david.dalton@gmail.com +│ ├─ url: http://allyoucanleet.com/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/lodash._baseuniq +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/lodash._baseuniq/LICENSE +├─ lodash._bindcallback@3.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/lodash/lodash +│ ├─ publisher: John-David Dalton +│ ├─ email: john.david.dalton@gmail.com +│ ├─ url: http://allyoucanleet.com/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/lodash._bindcallback +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/lodash._bindcallback/LICENSE.txt +├─ lodash._cacheindexof@3.0.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/lodash/lodash +│ ├─ publisher: John-David Dalton +│ ├─ email: john.david.dalton@gmail.com +│ ├─ url: http://allyoucanleet.com/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/lodash._cacheindexof +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/lodash._cacheindexof/LICENSE.txt +├─ lodash._createcache@3.1.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/lodash/lodash +│ ├─ publisher: John-David Dalton +│ ├─ email: john.david.dalton@gmail.com +│ ├─ url: http://allyoucanleet.com/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/lodash._createcache +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/lodash._createcache/LICENSE +├─ lodash._createset@4.0.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/lodash/lodash +│ ├─ publisher: John-David Dalton +│ ├─ email: john.david.dalton@gmail.com +│ ├─ url: http://allyoucanleet.com/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/lodash._createset +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/lodash._createset/LICENSE +├─ lodash._getnative@3.9.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/lodash/lodash +│ ├─ publisher: John-David Dalton +│ ├─ email: john.david.dalton@gmail.com +│ ├─ url: http://allyoucanleet.com/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/lodash._getnative +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/lodash._getnative/LICENSE +├─ lodash._root@3.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/lodash/lodash +│ ├─ publisher: John-David Dalton +│ ├─ email: john.david.dalton@gmail.com +│ ├─ url: http://allyoucanleet.com/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/lodash._root +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/lodash._root/LICENSE +├─ lodash.at@4.6.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/lodash/lodash +│ ├─ publisher: John-David Dalton +│ ├─ email: john.david.dalton@gmail.com +│ ├─ url: http://allyoucanleet.com/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/lodash.at +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/lodash.at/LICENSE +├─ lodash.clonedeep@4.5.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/lodash/lodash +│ ├─ publisher: John-David Dalton +│ ├─ email: john.david.dalton@gmail.com +│ ├─ url: http://allyoucanleet.com/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/lodash.clonedeep +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/lodash.clonedeep/LICENSE +├─ lodash.get@4.4.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/lodash/lodash +│ ├─ publisher: John-David Dalton +│ ├─ email: john.david.dalton@gmail.com +│ ├─ url: http://allyoucanleet.com/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/lodash.get +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/lodash.get/LICENSE +├─ lodash.restparam@3.6.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/lodash/lodash +│ ├─ publisher: John-David Dalton +│ ├─ email: john.david.dalton@gmail.com +│ ├─ url: http://allyoucanleet.com/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/lodash.restparam +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/lodash.restparam/LICENSE.txt +├─ lodash.union@4.6.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/lodash/lodash +│ ├─ publisher: John-David Dalton +│ ├─ email: john.david.dalton@gmail.com +│ ├─ url: http://allyoucanleet.com/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/lodash.union +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/lodash.union/LICENSE +├─ lodash.uniq@4.5.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/lodash/lodash +│ ├─ publisher: John-David Dalton +│ ├─ email: john.david.dalton@gmail.com +│ ├─ url: http://allyoucanleet.com/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/lodash.uniq +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/lodash.uniq/LICENSE +├─ lodash.without@4.4.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/lodash/lodash +│ ├─ publisher: John-David Dalton +│ ├─ email: john.david.dalton@gmail.com +│ ├─ url: http://allyoucanleet.com/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/lodash.without +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/lodash.without/LICENSE +├─ lodash@4.17.15 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/lodash/lodash +│ ├─ publisher: John-David Dalton +│ ├─ email: john.david.dalton@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/lodash +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/lodash/LICENSE +├─ loose-envify@1.4.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/zertosh/loose-envify +│ ├─ publisher: Andres Suarez +│ ├─ email: zertosh@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/loose-envify +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/loose-envify/LICENSE +├─ lowercase-keys@1.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/lowercase-keys +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/lowercase-keys +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/lowercase-keys/license +├─ lru-cache@4.1.5 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/isaacs/node-lru-cache +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/term-size/node_modules/lru-cache +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/term-size/node_modules/lru-cache/LICENSE +├─ lru-cache@5.1.1 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/isaacs/node-lru-cache +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/lru-cache +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/lru-cache/LICENSE +├─ make-dir@1.3.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/make-dir +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/configstore/node_modules/make-dir +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/configstore/node_modules/make-dir/license +├─ make-dir@2.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/make-dir +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/make-dir +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/make-dir/license +├─ make-fetch-happen@5.0.2 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/zkat/make-fetch-happen +│ ├─ publisher: Kat Marchán +│ ├─ email: kzm@zkat.tech +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/make-fetch-happen +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/make-fetch-happen/LICENSE +├─ map-age-cleaner@0.1.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/SamVerschueren/map-age-cleaner +│ ├─ publisher: Sam Verschueren +│ ├─ email: sam.verschueren@gmail.com +│ ├─ url: github.com/SamVerschueren +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/map-age-cleaner +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/map-age-cleaner/license +├─ map-cache@0.2.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/map-cache +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/map-cache +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/map-cache/LICENSE +├─ map-visit@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/map-visit +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/map-visit +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/map-visit/LICENSE +├─ meant@1.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/watilde/meant +│ ├─ publisher: Daijiro Wachi +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/meant +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/meant/LICENSE +├─ mem@4.3.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/mem +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/mem +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/mem/license +├─ micromatch@3.1.10 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/micromatch/micromatch +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/micromatch +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/micromatch/LICENSE +├─ mime-db@1.35.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jshttp/mime-db +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/mime-db +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/mime-db/LICENSE +├─ mime-types@2.1.19 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jshttp/mime-types +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/mime-types +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/mime-types/LICENSE +├─ mimic-fn@2.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/mimic-fn +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/mimic-fn +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/mimic-fn/license +├─ minimatch@3.0.4 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/isaacs/minimatch +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/minimatch +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/minimatch/LICENSE +├─ minimist@1.2.5 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/substack/minimist +│ ├─ publisher: James Halliday +│ ├─ email: mail@substack.net +│ ├─ url: http://substack.net +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/minimist +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/minimist/LICENSE +├─ minipass@2.9.0 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/isaacs/minipass +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/fs-minipass/node_modules/minipass +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/fs-minipass/node_modules/minipass/LICENSE +├─ minizlib@1.3.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/isaacs/minizlib +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/minizlib +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/minizlib/LICENSE +├─ mississippi@3.0.0 +│ ├─ licenses: BSD-2-Clause +│ ├─ repository: https://github.com/maxogden/mississippi +│ ├─ publisher: max ogden +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/mississippi +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/mississippi/license +├─ mixin-deep@1.3.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/mixin-deep +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/mixin-deep +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/mixin-deep/LICENSE +├─ mkdirp@0.5.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/substack/node-mkdirp +│ ├─ publisher: James Halliday +│ ├─ email: mail@substack.net +│ ├─ url: http://substack.net +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/fsevents/node_modules/mkdirp +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/fsevents/node_modules/mkdirp/LICENSE +├─ mkdirp@0.5.4 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/substack/node-mkdirp +│ ├─ publisher: James Halliday +│ ├─ email: mail@substack.net +│ ├─ url: http://substack.net +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/mkdirp +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/mkdirp/LICENSE +├─ move-concurrently@1.0.1 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/move-concurrently +│ ├─ publisher: Rebecca Turner +│ ├─ email: me@re-becca.org +│ ├─ url: http://re-becca.org/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/move-concurrently +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/move-concurrently/LICENSE +├─ mqtt-packet@5.6.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/mqttjs/mqtt-packet +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/mqtt-packet +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/mqtt-packet/LICENSE.md +├─ mqtt@2.18.8 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/mqttjs/MQTT.js +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/mqtt +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/mqtt/LICENSE.md +├─ mri@1.1.4 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/lukeed/mri +│ ├─ publisher: Luke Edwards +│ ├─ email: luke.edwards05@gmail.com +│ ├─ url: lukeed.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/mri +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/mri/license.md +├─ ms@2.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/zeit/ms +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/eslint-plugin-import/node_modules/ms +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/eslint-plugin-import/node_modules/ms/license.md +├─ ms@2.1.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/zeit/ms +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/ms +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/ms/license.md +├─ ms@2.1.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/zeit/ms +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/ms +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/ms/license.md +├─ mute-stream@0.0.7 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/isaacs/mute-stream +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/mute-stream +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/mute-stream/LICENSE +├─ mute-stream@0.0.8 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/isaacs/mute-stream +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/mute-stream +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/mute-stream/LICENSE +├─ nan@2.14.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/nodejs/nan +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/nan +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/nan/LICENSE.md +├─ nanomatch@1.2.13 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/micromatch/nanomatch +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/nanomatch +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/nanomatch/LICENSE +├─ natural-compare@1.4.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/litejs/natural-compare-lite +│ ├─ publisher: Lauri Rooden +│ ├─ url: https://github.com/litejs/natural-compare-lite +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/natural-compare +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/natural-compare/README.md +├─ needle@2.3.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/tomas/needle +│ ├─ publisher: Tomás Pollak +│ ├─ email: tomas@forkhq.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/fsevents/node_modules/needle +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/fsevents/node_modules/needle/license.txt +├─ next-tick@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/medikoo/next-tick +│ ├─ publisher: Mariusz Nowak +│ ├─ email: medyk@medikoo.com +│ ├─ url: http://www.medikoo.com/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/next-tick +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/next-tick/LICENSE +├─ nice-try@1.0.5 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/electerious/nice-try +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/nice-try +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/nice-try/LICENSE +├─ node-environment-flags@1.0.6 +│ ├─ licenses: Apache-2.0 +│ ├─ repository: https://github.com/boneskull/node-environment-flags +│ ├─ publisher: Christopher Hiller +│ ├─ email: boneskull@boneskull.com +│ ├─ url: https://boneskull.com/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/node-environment-flags +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/node-environment-flags/LICENSE +├─ node-fetch-npm@2.0.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/npm/node-fetch-npm +│ ├─ publisher: David Frank +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/node-fetch-npm +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/node-fetch-npm/LICENSE.md +├─ node-gyp@5.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/nodejs/node-gyp +│ ├─ publisher: Nathan Rajlich +│ ├─ email: nathan@tootallnate.net +│ ├─ url: http://tootallnate.net +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/node-gyp +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/node-gyp/LICENSE +├─ node-modules-regexp@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jamestalmage/node-modules-regexp +│ ├─ publisher: James Talmage +│ ├─ email: james@talmage.io +│ ├─ url: github.com/jamestalmage +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/node-modules-regexp +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/node-modules-regexp/license +├─ node-pre-gyp@0.14.0 +│ ├─ licenses: BSD-3-Clause +│ ├─ repository: https://github.com/mapbox/node-pre-gyp +│ ├─ publisher: Dane Springmeyer +│ ├─ email: dane@mapbox.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/fsevents/node_modules/node-pre-gyp +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/fsevents/node_modules/node-pre-gyp/LICENSE +├─ node-releases@1.1.52 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/chicoxyzzy/node-releases +│ ├─ publisher: Sergey Rubanov +│ ├─ email: chi187@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/node-releases +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/node-releases/LICENSE +├─ nodemon@2.0.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/remy/nodemon +│ ├─ publisher: Remy Sharp +│ ├─ url: http://github.com/remy +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/nodemon +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/nodemon/LICENSE +├─ nopt@1.0.10 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/isaacs/nopt +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/nopt +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/nopt/LICENSE +├─ nopt@4.0.1 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/nopt +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/nopt +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/nopt/LICENSE +├─ nopt@4.0.3 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/nopt +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/fsevents/node_modules/nopt +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/fsevents/node_modules/nopt/LICENSE +├─ normalize-package-data@2.5.0 +│ ├─ licenses: BSD-2-Clause +│ ├─ repository: https://github.com/npm/normalize-package-data +│ ├─ publisher: Meryn Stol +│ ├─ email: merynstol@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/normalize-package-data +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/normalize-package-data/LICENSE +├─ normalize-path@2.1.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/normalize-path +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/anymatch/node_modules/normalize-path +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/anymatch/node_modules/normalize-path/LICENSE +├─ normalize-path@3.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/normalize-path +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/normalize-path +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/normalize-path/LICENSE +├─ npm-audit-report@1.3.2 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/npm-audit-report +│ ├─ publisher: Adam Baldwin +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/npm-audit-report +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/npm-audit-report/LICENSE +├─ npm-bundled@1.1.1 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/npm-bundled +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/npm-bundled +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/npm-bundled/LICENSE +├─ npm-cache-filename@1.0.2 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/npm-cache-filename +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/npm-cache-filename +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/npm-cache-filename/LICENSE +├─ npm-install-checks@3.0.2 +│ ├─ licenses: BSD-2-Clause +│ ├─ repository: https://github.com/npm/npm-install-checks +│ ├─ publisher: Robert Kowalski +│ ├─ email: rok@kowalski.gd +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/npm-install-checks +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/npm-install-checks/LICENSE +├─ npm-lifecycle@3.1.4 +│ ├─ licenses: Artistic-2.0 +│ ├─ repository: https://github.com/npm/lifecycle +│ ├─ publisher: Mike Sherov +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/npm-lifecycle +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/npm-lifecycle/LICENSE +├─ npm-logical-tree@1.2.1 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/logical-tree +│ ├─ publisher: Kat Marchán +│ ├─ email: kzm@sykosomatic.org +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/npm-logical-tree +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/npm-logical-tree/LICENSE.md +├─ npm-normalize-package-bin@1.0.1 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/npm-normalize-package-bin +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: https://izs.me +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/npm-normalize-package-bin +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/npm-normalize-package-bin/LICENSE +├─ npm-package-arg@6.1.1 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/npm-package-arg +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/npm-package-arg +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/npm-package-arg/LICENSE +├─ npm-packlist@1.4.8 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/npm-packlist +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/npm-packlist +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/npm-packlist/LICENSE +├─ npm-pick-manifest@3.0.2 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/npm-pick-manifest +│ ├─ publisher: Kat Marchán +│ ├─ email: kzm@sykosomatic.org +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/npm-pick-manifest +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/npm-pick-manifest/LICENSE.md +├─ npm-profile@4.0.4 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/npm-profile +│ ├─ publisher: Rebecca Turner +│ ├─ email: me@re-becca.org +│ ├─ url: http://re-becca.org/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/npm-profile +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/npm-profile/LICENSE +├─ npm-registry-fetch@4.0.3 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/registry-fetch +│ ├─ publisher: Kat Marchán +│ ├─ email: kzm@sykosomatic.org +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/npm-registry-fetch +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/npm-registry-fetch/LICENSE.md +├─ npm-run-path@2.0.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/npm-run-path +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm-run-path +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm-run-path/license +├─ npm-user-validate@1.0.0 +│ ├─ licenses: BSD-2-Clause +│ ├─ repository: https://github.com/npm/npm-user-validate +│ ├─ publisher: Robert Kowalski +│ ├─ email: rok@kowalski.gd +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/npm-user-validate +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/npm-user-validate/LICENSE +├─ npm@6.14.4 +│ ├─ licenses: Artistic-2.0 +│ ├─ repository: https://github.com/npm/cli +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/LICENSE +├─ npmlog@4.1.2 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/npmlog +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/npmlog +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/npmlog/LICENSE +├─ number-is-nan@1.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/number-is-nan +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/number-is-nan +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/number-is-nan/license +├─ oauth-sign@0.9.0 +│ ├─ licenses: Apache-2.0 +│ ├─ repository: https://github.com/mikeal/oauth-sign +│ ├─ publisher: Mikeal Rogers +│ ├─ email: mikeal.rogers@gmail.com +│ ├─ url: http://www.futurealoof.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/oauth-sign +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/oauth-sign/LICENSE +├─ object-assign@4.1.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/object-assign +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/object-assign +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/object-assign/license +├─ object-copy@0.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/object-copy +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/object-copy +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/object-copy/LICENSE +├─ object-inspect@1.7.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/substack/object-inspect +│ ├─ publisher: James Halliday +│ ├─ email: mail@substack.net +│ ├─ url: http://substack.net +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/object-inspect +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/object-inspect/LICENSE +├─ object-keys@1.0.12 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/ljharb/object-keys +│ ├─ publisher: Jordan Harband +│ ├─ email: ljharb@gmail.com +│ ├─ url: http://ljharb.codes +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/object-keys +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/object-keys/LICENSE +├─ object-keys@1.1.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/ljharb/object-keys +│ ├─ publisher: Jordan Harband +│ ├─ email: ljharb@gmail.com +│ ├─ url: http://ljharb.codes +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/object-keys +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/object-keys/LICENSE +├─ object-visit@1.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/object-visit +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/object-visit +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/object-visit/LICENSE +├─ object.assign@4.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/ljharb/object.assign +│ ├─ publisher: Jordan Harband +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/object.assign +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/object.assign/LICENSE +├─ object.entries@1.1.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/es-shims/Object.entries +│ ├─ publisher: Jordan Harband +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/object.entries +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/object.entries/LICENSE +├─ object.getownpropertydescriptors@2.0.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/ljharb/object.getownpropertydescriptors +│ ├─ publisher: Jordan Harband +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/object.getownpropertydescriptors +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/object.getownpropertydescriptors/LICENSE +├─ object.getownpropertydescriptors@2.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/es-shims/object.getownpropertydescriptors +│ ├─ publisher: Jordan Harband +│ ├─ email: ljharb@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/object.getownpropertydescriptors +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/object.getownpropertydescriptors/LICENSE +├─ object.pick@1.3.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/object.pick +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/object.pick +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/object.pick/LICENSE +├─ object.values@1.1.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/es-shims/Object.values +│ ├─ publisher: Jordan Harband +│ ├─ email: ljharb@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/object.values +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/object.values/LICENSE +├─ once@1.4.0 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/isaacs/once +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/once +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/once/LICENSE +├─ onetime@5.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/onetime +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/onetime +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/onetime/license +├─ onvif-cam@0.0.1-alpha-3 +│ ├─ licenses: ISC +│ ├─ path: /Users/dfarkov/Projects/onvif-cam +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/README.md +├─ onvif@0.6.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/agsh/onvif +│ ├─ publisher: Andrew D.Laptev +│ ├─ email: a.d.laptev@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/onvif +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/onvif/LICENSE +├─ opener@1.5.1 +│ ├─ licenses: (WTFPL OR MIT) +│ ├─ repository: https://github.com/domenic/opener +│ ├─ publisher: Domenic Denicola +│ ├─ email: d@domenic.me +│ ├─ url: https://domenic.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/opener +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/opener/LICENSE.txt +├─ optionator@0.8.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/gkz/optionator +│ ├─ publisher: George Zahariev +│ ├─ email: z@georgezahariev.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/optionator +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/optionator/LICENSE +├─ ordered-read-streams@1.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/armed/ordered-read-streams +│ ├─ publisher: Artem Medeusheyev +│ ├─ email: artem.medeusheyev@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/ordered-read-streams +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/ordered-read-streams/LICENSE +├─ os-homedir@1.0.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/os-homedir +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/os-homedir +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/os-homedir/license +├─ os-locale@3.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/os-locale +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/os-locale +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/os-locale/license +├─ os-tmpdir@1.0.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/os-tmpdir +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/os-tmpdir +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/os-tmpdir/license +├─ osenv@0.1.5 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/osenv +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/osenv +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/osenv/LICENSE +├─ p-defer@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/p-defer +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/p-defer +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/p-defer/license +├─ p-finally@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/p-finally +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/p-finally +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/p-finally/license +├─ p-is-promise@2.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/p-is-promise +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/p-is-promise +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/p-is-promise/license +├─ p-limit@1.2.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/p-limit +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/p-limit +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/p-limit/license +├─ p-limit@1.3.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/p-limit +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/p-limit +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/p-limit/license +├─ p-limit@2.2.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/p-limit +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/libnpmconfig/node_modules/p-limit +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/libnpmconfig/node_modules/p-limit/license +├─ p-limit@2.2.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/p-limit +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/find-cache-dir/node_modules/p-limit +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/find-cache-dir/node_modules/p-limit/license +├─ p-locate@2.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/p-locate +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/p-locate +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/p-locate/license +├─ p-locate@3.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/p-locate +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/libnpmconfig/node_modules/p-locate +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/libnpmconfig/node_modules/p-locate/license +├─ p-try@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/p-try +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/p-try +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/p-try/license +├─ p-try@2.2.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/p-try +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/libnpmconfig/node_modules/p-try +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/libnpmconfig/node_modules/p-try/license +├─ package-json@4.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/package-json +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/package-json +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/package-json/license +├─ pacote@9.5.12 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/npm/pacote +│ ├─ publisher: Kat Marchán +│ ├─ email: kzm@sykosomatic.org +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/pacote +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/pacote/LICENSE +├─ parallel-transform@1.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/mafintosh/parallel-transform +│ ├─ publisher: Mathias Buus Madsen +│ ├─ email: mathiasbuus@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/parallel-transform +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/parallel-transform/LICENSE +├─ parent-module@1.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/parent-module +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/parent-module +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/parent-module/license +├─ parse-json@2.2.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/parse-json +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/parse-json +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/parse-json/license +├─ parse-passwd@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/doowb/parse-passwd +│ ├─ publisher: Brian Woodward +│ ├─ url: https://github.com/doowb +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/parse-passwd +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/parse-passwd/LICENSE +├─ pascalcase@0.1.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/pascalcase +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/pascalcase +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/pascalcase/LICENSE +├─ path-dirname@1.0.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/es128/path-dirname +│ ├─ publisher: Elan Shanker +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/path-dirname +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/path-dirname/license +├─ path-exists@3.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/path-exists +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/path-exists +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/path-exists/license +├─ path-is-absolute@1.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/path-is-absolute +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/path-is-absolute +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/path-is-absolute/license +├─ path-is-inside@1.0.2 +│ ├─ licenses: (WTFPL OR MIT) +│ ├─ repository: https://github.com/domenic/path-is-inside +│ ├─ publisher: Domenic Denicola +│ ├─ email: d@domenic.me +│ ├─ url: https://domenic.me +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/path-is-inside +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/path-is-inside/LICENSE.txt +├─ path-key@2.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/path-key +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/path-key +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/path-key/license +├─ path-parse@1.0.6 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jbgutierrez/path-parse +│ ├─ publisher: Javier Blanco +│ ├─ email: http://jbgutierrez.info +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/path-parse +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/path-parse/LICENSE +├─ path-type@2.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/path-type +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/path-type +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/path-type/license +├─ performance-now@2.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/braveg1rl/performance-now +│ ├─ publisher: Braveg1rl +│ ├─ email: braveg1rl@outlook.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/performance-now +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/performance-now/license.txt +├─ picomatch@2.2.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/micromatch/picomatch +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/picomatch +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/picomatch/LICENSE +├─ pify@2.3.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/pify +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/pify +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/pify/license +├─ pify@3.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/pify +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/configstore/node_modules/pify +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/configstore/node_modules/pify/license +├─ pify@4.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/pify +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/make-dir/node_modules/pify +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/make-dir/node_modules/pify/license +├─ pino-pretty@3.6.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/pinojs/pino-pretty +│ ├─ publisher: James Sumners +│ ├─ email: james.sumners@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/pino-pretty +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/pino-pretty/LICENSE +├─ pino-std-serializers@2.4.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/pinojs/pino-std-serializers +│ ├─ publisher: James Sumners +│ ├─ email: james.sumners@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/pino-std-serializers +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/pino-std-serializers/LICENSE +├─ pino@5.17.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/pinojs/pino +│ ├─ publisher: Matteo Collina +│ ├─ email: hello@matteocollina.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/pino +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/pino/LICENSE +├─ pirates@4.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/ariporad/pirates +│ ├─ publisher: Ari Porad +│ ├─ email: ari@ariporad.com +│ ├─ url: http://ariporad.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/pirates +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/pirates/LICENSE +├─ pkg-dir@2.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/pkg-dir +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/pkg-dir +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/pkg-dir/license +├─ pkg-dir@3.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/pkg-dir +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/find-cache-dir/node_modules/pkg-dir +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/find-cache-dir/node_modules/pkg-dir/license +├─ pkg-up@3.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/pkg-up +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/pkg-up +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/pkg-up/license +├─ posix-character-classes@0.1.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/posix-character-classes +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/posix-character-classes +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/posix-character-classes/LICENSE +├─ prelude-ls@1.1.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/gkz/prelude-ls +│ ├─ publisher: George Zahariev +│ ├─ email: z@georgezahariev.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/prelude-ls +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/prelude-ls/LICENSE +├─ prepend-http@1.0.4 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/prepend-http +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/prepend-http +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/prepend-http/license +├─ private@0.1.8 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/benjamn/private +│ ├─ publisher: Ben Newman +│ ├─ email: bn@cs.stanford.edu +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/private +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/private/LICENSE +├─ process-nextick-args@2.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/calvinmetcalf/process-nextick-args +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/process-nextick-args +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/process-nextick-args/license.md +├─ process-nextick-args@2.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/calvinmetcalf/process-nextick-args +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/process-nextick-args +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/process-nextick-args/license.md +├─ progress@2.0.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/visionmedia/node-progress +│ ├─ publisher: TJ Holowaychuk +│ ├─ email: tj@vision-media.ca +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/progress +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/progress/LICENSE +├─ promise-inflight@1.0.1 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/iarna/promise-inflight +│ ├─ publisher: Rebecca Turner +│ ├─ email: me@re-becca.org +│ ├─ url: http://re-becca.org/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/promise-inflight +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/promise-inflight/LICENSE +├─ promise-retry@1.1.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/IndigoUnited/node-promise-retry +│ ├─ publisher: IndigoUnited +│ ├─ email: hello@indigounited.com +│ ├─ url: http://indigounited.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/promise-retry +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/promise-retry/LICENSE +├─ promzard@0.3.0 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/isaacs/promzard +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/promzard +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/promzard/LICENSE +├─ proto-list@1.2.4 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/isaacs/proto-list +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/proto-list +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/proto-list/LICENSE +├─ protoduck@5.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/zkat/protoduck +│ ├─ publisher: Kat Marchán +│ ├─ email: kzm@sykosomatic.org +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/protoduck +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/protoduck/LICENSE +├─ prr@1.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/rvagg/prr +│ ├─ publisher: Rod Vagg +│ ├─ email: rod@vagg.org +│ ├─ url: https://github.com/rvagg +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/prr +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/prr/LICENSE.md +├─ pseudomap@1.0.2 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/isaacs/pseudomap +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/pseudomap +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/pseudomap/LICENSE +├─ psl@1.1.29 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/wrangr/psl +│ ├─ publisher: Lupo Montero +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/psl +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/psl/README.md +├─ pstree.remy@1.1.7 +│ ├─ licenses: MIT +│ ├─ publisher: Remy Sharp +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/pstree.remy +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/pstree.remy/LICENSE +├─ pump@2.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/mafintosh/pump +│ ├─ publisher: Mathias Buus Madsen +│ ├─ email: mathiasbuus@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/pumpify/node_modules/pump +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/pumpify/node_modules/pump/LICENSE +├─ pump@3.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/mafintosh/pump +│ ├─ publisher: Mathias Buus Madsen +│ ├─ email: mathiasbuus@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/pump +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/pump/LICENSE +├─ pumpify@1.5.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/mafintosh/pumpify +│ ├─ publisher: Mathias Buus +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/pumpify +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/pumpify/LICENSE +├─ punycode@1.4.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/bestiejs/punycode.js +│ ├─ publisher: Mathias Bynens +│ ├─ url: https://mathiasbynens.be/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/punycode +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/punycode/LICENSE-MIT.txt +├─ punycode@2.1.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/bestiejs/punycode.js +│ ├─ publisher: Mathias Bynens +│ ├─ url: https://mathiasbynens.be/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/punycode +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/punycode/LICENSE-MIT.txt +├─ qrcode-terminal@0.12.0 +│ ├─ licenses: Apache 2.0 +│ ├─ repository: https://github.com/gtanner/qrcode-terminal +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/qrcode-terminal +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/qrcode-terminal/LICENSE +├─ qs@6.5.2 +│ ├─ licenses: BSD-3-Clause +│ ├─ repository: https://github.com/ljharb/qs +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/qs +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/qs/LICENSE +├─ query-string@6.8.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/query-string +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/query-string +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/query-string/license +├─ quick-format-unescaped@3.0.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/davidmarkclements/quick-format +│ ├─ publisher: David Mark Clements +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/quick-format-unescaped +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/quick-format-unescaped/LICENSE +├─ qw@1.0.1 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/iarna/node-qw +│ ├─ publisher: Rebecca Turner +│ ├─ email: me@re-becca.org +│ ├─ url: http://re-becca.org/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/qw +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/qw/LICENSE +├─ rc@1.2.8 +│ ├─ licenses: (BSD-2-Clause OR MIT OR Apache-2.0) +│ ├─ repository: https://github.com/dominictarr/rc +│ ├─ publisher: Dominic Tarr +│ ├─ email: dominic.tarr@gmail.com +│ ├─ url: dominictarr.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/rc +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/rc/LICENSE.APACHE2 +├─ read-cmd-shim@1.0.5 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/read-cmd-shim +│ ├─ publisher: Rebecca Turner +│ ├─ email: me@re-becca.org +│ ├─ url: http://re-becca.org/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/read-cmd-shim +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/read-cmd-shim/LICENSE +├─ read-installed@4.0.3 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/isaacs/read-installed +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/read-installed +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/read-installed/LICENSE +├─ read-package-json@2.1.1 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/read-package-json +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/read-package-json +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/read-package-json/LICENSE +├─ read-package-tree@5.3.1 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/read-package-tree +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/read-package-tree +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/read-package-tree/LICENSE +├─ read-pkg-up@2.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/read-pkg-up +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/read-pkg-up +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/read-pkg-up/license +├─ read-pkg@2.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/read-pkg +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/read-pkg +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/read-pkg/license +├─ read@1.0.7 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/isaacs/read +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/read +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/read/LICENSE +├─ readable-stream@1.1.14 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/isaacs/readable-stream +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/sorted-union-stream/node_modules/readable-stream +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/sorted-union-stream/node_modules/readable-stream/LICENSE +├─ readable-stream@2.3.6 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/nodejs/readable-stream +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/duplexify/node_modules/readable-stream +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/LICENSE +├─ readable-stream@2.3.7 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/nodejs/readable-stream +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/readable-stream +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/readable-stream/LICENSE +├─ readable-stream@3.6.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/nodejs/readable-stream +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/readable-stream +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/readable-stream/LICENSE +├─ readdir-scoped-modules@1.1.0 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/readdir-scoped-modules +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/readdir-scoped-modules +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/readdir-scoped-modules/LICENSE +├─ readdirp@2.2.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/paulmillr/readdirp +│ ├─ publisher: Thorsten Lorenz +│ ├─ email: thlorenz@gmx.de +│ ├─ url: thlorenz.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/readdirp +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/readdirp/LICENSE +├─ readdirp@3.3.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/paulmillr/readdirp +│ ├─ publisher: Thorsten Lorenz +│ ├─ email: thlorenz@gmx.de +│ ├─ url: thlorenz.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/nodemon/node_modules/readdirp +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/nodemon/node_modules/readdirp/LICENSE +├─ regenerate-unicode-properties@8.2.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/mathiasbynens/regenerate-unicode-properties +│ ├─ publisher: Mathias Bynens +│ ├─ url: https://mathiasbynens.be/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/regenerate-unicode-properties +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/regenerate-unicode-properties/LICENSE-MIT.txt +├─ regenerate@1.4.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/mathiasbynens/regenerate +│ ├─ publisher: Mathias Bynens +│ ├─ url: https://mathiasbynens.be/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/regenerate +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/regenerate/LICENSE-MIT.txt +├─ regenerator-runtime@0.13.5 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/facebook/regenerator/tree/master/packages/regenerator-runtime +│ ├─ publisher: Ben Newman +│ ├─ email: bn@cs.stanford.edu +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/regenerator-runtime +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/regenerator-runtime/LICENSE +├─ regenerator-transform@0.14.4 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/facebook/regenerator/tree/master/packages/regenerator-transform +│ ├─ publisher: Ben Newman +│ ├─ email: bn@cs.stanford.edu +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/regenerator-transform +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/regenerator-transform/LICENSE +├─ regex-not@1.0.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/regex-not +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/regex-not +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/regex-not/LICENSE +├─ regexpp@2.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/mysticatea/regexpp +│ ├─ publisher: Toru Nagashima +│ ├─ url: https://github.com/mysticatea +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/regexpp +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/regexpp/LICENSE +├─ regexpu-core@4.7.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/mathiasbynens/regexpu-core +│ ├─ publisher: Mathias Bynens +│ ├─ url: https://mathiasbynens.be/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/regexpu-core +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/regexpu-core/LICENSE-MIT.txt +├─ registry-auth-token@3.4.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/rexxars/registry-auth-token +│ ├─ publisher: Espen Hovlandsdal +│ ├─ email: espen@hovlandsdal.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/registry-auth-token +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/registry-auth-token/LICENSE +├─ registry-url@3.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/registry-url +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/registry-url +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/registry-url/license +├─ regjsgen@0.5.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/bnjmnt4n/regjsgen +│ ├─ publisher: Benjamin Tan +│ ├─ url: https://bnjmnt4n.now.sh/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/regjsgen +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/regjsgen/LICENSE +├─ regjsparser@0.6.4 +│ ├─ licenses: BSD-2-Clause +│ ├─ repository: https://github.com/jviereck/regjsparser +│ ├─ publisher: 'Julian Viereck' +│ ├─ email: julian.viereck@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/regjsparser +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/regjsparser/LICENSE.BSD +├─ reinterval@1.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/4rzael/reInterval +│ ├─ publisher: 4rzael +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/reinterval +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/reinterval/LICENSE +├─ remove-trailing-separator@1.1.0 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/darsain/remove-trailing-separator +│ ├─ publisher: darsain +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/remove-trailing-separator +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/remove-trailing-separator/license +├─ repeat-element@1.1.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/repeat-element +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/repeat-element +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/repeat-element/LICENSE +├─ repeat-string@1.6.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/repeat-string +│ ├─ publisher: Jon Schlinkert +│ ├─ url: http://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/repeat-string +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/repeat-string/LICENSE +├─ request@2.88.0 +│ ├─ licenses: Apache-2.0 +│ ├─ repository: https://github.com/request/request +│ ├─ publisher: Mikeal Rogers +│ ├─ email: mikeal.rogers@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/request +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/request/LICENSE +├─ require-directory@2.1.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/troygoode/node-require-directory +│ ├─ publisher: Troy Goode +│ ├─ email: troygoode@gmail.com +│ ├─ url: http://github.com/troygoode/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/require-directory +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/require-directory/LICENSE +├─ require-main-filename@1.0.1 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/yargs/require-main-filename +│ ├─ publisher: Ben Coe +│ ├─ email: ben@npmjs.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/require-main-filename +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/require-main-filename/LICENSE.txt +├─ resolve-from@4.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/resolve-from +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/resolve-from +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/resolve-from/license +├─ resolve-url@0.2.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/lydell/resolve-url +│ ├─ publisher: Simon Lydell +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/resolve-url +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/resolve-url/LICENSE +├─ resolve@1.15.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/browserify/resolve +│ ├─ publisher: James Halliday +│ ├─ email: mail@substack.net +│ ├─ url: http://substack.net +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/resolve +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/resolve/LICENSE +├─ restore-cursor@3.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/restore-cursor +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/restore-cursor +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/restore-cursor/license +├─ ret@0.1.15 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/fent/ret.js +│ ├─ publisher: Roly Fentanes +│ ├─ url: https://github.com/fent +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/ret +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/ret/LICENSE +├─ retry@0.10.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/tim-kos/node-retry +│ ├─ publisher: Tim Koschützki +│ ├─ email: tim@debuggable.com +│ ├─ url: http://debuggable.com/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/promise-retry/node_modules/retry +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/promise-retry/node_modules/retry/License +├─ retry@0.12.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/tim-kos/node-retry +│ ├─ publisher: Tim Koschützki +│ ├─ email: tim@debuggable.com +│ ├─ url: http://debuggable.com/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/retry +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/retry/License +├─ rimraf@2.6.3 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/isaacs/rimraf +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/rimraf +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/rimraf/LICENSE +├─ rimraf@2.7.1 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/isaacs/rimraf +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/rimraf +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/rimraf/LICENSE +├─ run-async@2.4.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/SBoudrias/run-async +│ ├─ publisher: Simon Boudrias +│ ├─ email: admin@simonboudrias.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/run-async +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/run-async/LICENSE +├─ run-queue@1.0.3 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/iarna/run-queue +│ ├─ publisher: Rebecca Turner +│ ├─ email: me@re-becca.org +│ ├─ url: http://re-becca.org/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/run-queue +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/run-queue/README.md +├─ rxjs@6.5.4 +│ ├─ licenses: Apache-2.0 +│ ├─ repository: https://github.com/reactivex/rxjs +│ ├─ publisher: Ben Lesh +│ ├─ email: ben@benlesh.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/rxjs +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/rxjs/LICENSE.txt +├─ safe-buffer@5.1.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/feross/safe-buffer +│ ├─ publisher: Feross Aboukhadijeh +│ ├─ email: feross@feross.org +│ ├─ url: http://feross.org +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/safe-buffer +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/safe-buffer/LICENSE +├─ safe-buffer@5.2.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/feross/safe-buffer +│ ├─ publisher: Feross Aboukhadijeh +│ ├─ email: feross@feross.org +│ ├─ url: http://feross.org +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/npm-registry-fetch/node_modules/safe-buffer +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/npm-registry-fetch/node_modules/safe-buffer/LICENSE +├─ safe-regex@1.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/substack/safe-regex +│ ├─ publisher: James Halliday +│ ├─ email: mail@substack.net +│ ├─ url: http://substack.net +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/safe-regex +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/safe-regex/LICENSE +├─ safer-buffer@2.1.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/ChALkeR/safer-buffer +│ ├─ publisher: Nikita Skovoroda +│ ├─ email: chalkerx@gmail.com +│ ├─ url: https://github.com/ChALkeR +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/safer-buffer +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/safer-buffer/LICENSE +├─ sax@1.2.4 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/isaacs/sax-js +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/sax +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/sax/LICENSE +├─ schema-utils@2.6.5 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/webpack/schema-utils +│ ├─ publisher: webpack Contrib +│ ├─ url: https://github.com/webpack-contrib +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/babel-loader/node_modules/schema-utils +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/babel-loader/node_modules/schema-utils/LICENSE +├─ semver-diff@2.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/semver-diff +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: http://sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/semver-diff +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/semver-diff/license +├─ semver@5.7.1 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/node-semver +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/cross-spawn/node_modules/semver +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/cross-spawn/node_modules/semver/LICENSE +├─ semver@6.3.0 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/node-semver +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/semver +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/semver/LICENSE +├─ semver@7.0.0 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/node-semver +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/core-js-compat/node_modules/semver +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/core-js-compat/node_modules/semver/LICENSE +├─ set-blocking@2.0.0 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/yargs/set-blocking +│ ├─ publisher: Ben Coe +│ ├─ email: ben@npmjs.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/set-blocking +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/set-blocking/LICENSE.txt +├─ set-value@2.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/set-value +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/set-value +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/set-value/LICENSE +├─ sha@3.0.0 +│ ├─ licenses: (BSD-2-Clause OR MIT) +│ ├─ repository: https://github.com/ForbesLindesay/sha +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/sha +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/sha/LICENSE +├─ shebang-command@1.2.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/kevva/shebang-command +│ ├─ publisher: Kevin Martensson +│ ├─ email: kevinmartensson@gmail.com +│ ├─ url: github.com/kevva +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/shebang-command +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/shebang-command/license +├─ shebang-regex@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/shebang-regex +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/shebang-regex +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/shebang-regex/license +├─ signal-exit@3.0.2 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/tapjs/signal-exit +│ ├─ publisher: Ben Coe +│ ├─ email: ben@npmjs.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/signal-exit +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/signal-exit/LICENSE.txt +├─ slash@2.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/slash +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/slash +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/slash/license +├─ slice-ansi@2.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/chalk/slice-ansi +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/slice-ansi +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/slice-ansi/license +├─ slide@1.1.6 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/isaacs/slide-flow-control +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/slide +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/slide/LICENSE +├─ smart-buffer@4.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/JoshGlazebrook/smart-buffer +│ ├─ publisher: Josh Glazebrook +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/smart-buffer +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/smart-buffer/LICENSE +├─ snapdragon-node@2.1.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/snapdragon-node +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/snapdragon-node +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/snapdragon-node/LICENSE +├─ snapdragon-util@3.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/snapdragon-util +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/snapdragon-util +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/snapdragon-util/LICENSE +├─ snapdragon@0.8.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/snapdragon +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/snapdragon +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/snapdragon/LICENSE +├─ socks-proxy-agent@4.0.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/TooTallNate/node-socks-proxy-agent +│ ├─ publisher: Nathan Rajlich +│ ├─ email: nathan@tootallnate.net +│ ├─ url: http://n8.io/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/socks-proxy-agent +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/socks-proxy-agent/README.md +├─ socks@2.3.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/JoshGlazebrook/socks +│ ├─ publisher: Josh Glazebrook +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/socks +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/socks/LICENSE +├─ sonic-boom@0.7.7 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/mcollina/sonic-boom +│ ├─ publisher: Matteo Collina +│ ├─ email: hello@matteocollina.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/sonic-boom +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/sonic-boom/LICENSE +├─ sorted-object@2.0.1 +│ ├─ licenses: (WTFPL OR MIT) +│ ├─ repository: https://github.com/domenic/sorted-object +│ ├─ publisher: Domenic Denicola +│ ├─ email: d@domenic.me +│ ├─ url: https://domenic.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/sorted-object +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/sorted-object/LICENSE.txt +├─ sorted-union-stream@2.1.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/mafintosh/sorted-union-stream +│ ├─ publisher: Mathias Buus Madsen +│ ├─ email: mathiasbuus@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/sorted-union-stream +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/sorted-union-stream/LICENSE +├─ source-map-resolve@0.5.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/lydell/source-map-resolve +│ ├─ publisher: Simon Lydell +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/source-map-resolve +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/source-map-resolve/LICENSE +├─ source-map-support@0.5.16 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/evanw/node-source-map-support +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/source-map-support +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/source-map-support/LICENSE.md +├─ source-map-url@0.4.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/lydell/source-map-url +│ ├─ publisher: Simon Lydell +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/source-map-url +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/source-map-url/LICENSE +├─ source-map@0.5.7 +│ ├─ licenses: BSD-3-Clause +│ ├─ repository: https://github.com/mozilla/source-map +│ ├─ publisher: Nick Fitzgerald +│ ├─ email: nfitzgerald@mozilla.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/source-map +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/source-map/LICENSE +├─ source-map@0.6.1 +│ ├─ licenses: BSD-3-Clause +│ ├─ repository: https://github.com/mozilla/source-map +│ ├─ publisher: Nick Fitzgerald +│ ├─ email: nfitzgerald@mozilla.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/source-map-support/node_modules/source-map +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/source-map-support/node_modules/source-map/LICENSE +├─ spdx-correct@3.0.0 +│ ├─ licenses: Apache-2.0 +│ ├─ repository: https://github.com/jslicense/spdx-correct.js +│ ├─ publisher: Kyle E. Mitchell +│ ├─ email: kyle@kemitchell.com +│ ├─ url: https://kemitchell.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/spdx-correct +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/spdx-correct/LICENSE +├─ spdx-correct@3.1.0 +│ ├─ licenses: Apache-2.0 +│ ├─ repository: https://github.com/jslicense/spdx-correct.js +│ ├─ publisher: Kyle E. Mitchell +│ ├─ email: kyle@kemitchell.com +│ ├─ url: https://kemitchell.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/spdx-correct +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/spdx-correct/LICENSE +├─ spdx-exceptions@2.1.0 +│ ├─ licenses: CC-BY-3.0 +│ ├─ repository: https://github.com/kemitchell/spdx-exceptions.json +│ ├─ publisher: The Linux Foundation +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/spdx-exceptions +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/spdx-exceptions/README.md +├─ spdx-exceptions@2.2.0 +│ ├─ licenses: CC-BY-3.0 +│ ├─ repository: https://github.com/kemitchell/spdx-exceptions.json +│ ├─ publisher: The Linux Foundation +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/spdx-exceptions +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/spdx-exceptions/README.md +├─ spdx-expression-parse@3.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jslicense/spdx-expression-parse.js +│ ├─ publisher: Kyle E. Mitchell +│ ├─ email: kyle@kemitchell.com +│ ├─ url: http://kemitchell.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/spdx-expression-parse +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/spdx-expression-parse/LICENSE +├─ spdx-license-ids@3.0.3 +│ ├─ licenses: CC0-1.0 +│ ├─ repository: https://github.com/shinnn/spdx-license-ids +│ ├─ publisher: Shinnosuke Watanabe +│ ├─ url: https://github.com/shinnn +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/spdx-license-ids +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/spdx-license-ids/README.md +├─ spdx-license-ids@3.0.5 +│ ├─ licenses: CC0-1.0 +│ ├─ repository: https://github.com/shinnn/spdx-license-ids +│ ├─ publisher: Shinnosuke Watanabe +│ ├─ url: https://github.com/shinnn +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/spdx-license-ids +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/spdx-license-ids/README.md +├─ split-on-first@1.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/split-on-first +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/split-on-first +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/split-on-first/license +├─ split-string@3.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/split-string +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/split-string +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/split-string/LICENSE +├─ split2@2.2.0 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/mcollina/split2 +│ ├─ publisher: Matteo Collina +│ ├─ email: hello@matteocollina.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/split2 +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/split2/LICENSE +├─ split2@3.1.1 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/mcollina/split2 +│ ├─ publisher: Matteo Collina +│ ├─ email: hello@matteocollina.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/pino-pretty/node_modules/split2 +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/pino-pretty/node_modules/split2/LICENSE +├─ sprintf-js@1.0.3 +│ ├─ licenses: BSD-3-Clause +│ ├─ repository: https://github.com/alexei/sprintf.js +│ ├─ publisher: Alexandru Marasteanu +│ ├─ email: hello@alexei.ro +│ ├─ url: http://alexei.ro/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/sprintf-js +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/sprintf-js/LICENSE +├─ sshpk@1.14.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/arekinath/node-sshpk +│ ├─ publisher: Joyent, Inc +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/sshpk +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/sshpk/LICENSE +├─ ssri@6.0.1 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/zkat/ssri +│ ├─ publisher: Kat Marchán +│ ├─ email: kzm@sykosomatic.org +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/ssri +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/ssri/LICENSE.md +├─ static-extend@0.1.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/static-extend +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/static-extend +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/static-extend/LICENSE +├─ stream-each@1.2.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/mafintosh/stream-each +│ ├─ publisher: Mathias Buus +│ ├─ url: @mafintosh +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/stream-each +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/stream-each/LICENSE +├─ stream-iterate@1.2.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/mafintosh/stream-iterate +│ ├─ publisher: Mathias Buus +│ ├─ url: @mafintosh +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/stream-iterate +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/stream-iterate/LICENSE +├─ stream-shift@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/mafintosh/stream-shift +│ ├─ publisher: Mathias Buus +│ ├─ url: @mafintosh +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/stream-shift +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/stream-shift/LICENSE +├─ stream-shift@1.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/mafintosh/stream-shift +│ ├─ publisher: Mathias Buus +│ ├─ url: @mafintosh +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/stream-shift +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/stream-shift/LICENSE +├─ strict-uri-encode@2.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/kevva/strict-uri-encode +│ ├─ publisher: Kevin Mårtensson +│ ├─ email: kevinmartensson@gmail.com +│ ├─ url: github.com/kevva +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/strict-uri-encode +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/strict-uri-encode/license +├─ string-width@1.0.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/string-width +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/gauge/node_modules/string-width +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/gauge/node_modules/string-width/license +├─ string-width@2.1.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/string-width +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/ansi-align/node_modules/string-width +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/ansi-align/node_modules/string-width/license +├─ string-width@3.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/string-width +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/table/node_modules/string-width +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/table/node_modules/string-width/license +├─ string-width@4.2.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/string-width +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/string-width +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/string-width/license +├─ string.prototype.trimleft@2.1.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/es-shims/String.prototype.trimLeft +│ ├─ publisher: Jordan Harband +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/string.prototype.trimleft +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/string.prototype.trimleft/LICENSE +├─ string.prototype.trimright@2.1.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/es-shims/String.prototype.trimRight +│ ├─ publisher: Jordan Harband +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/string.prototype.trimright +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/string.prototype.trimright/LICENSE +├─ string_decoder@0.10.31 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/rvagg/string_decoder +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/sorted-union-stream/node_modules/string_decoder +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/sorted-union-stream/node_modules/string_decoder/LICENSE +├─ string_decoder@1.1.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/nodejs/string_decoder +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/string_decoder +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/string_decoder/LICENSE +├─ string_decoder@1.3.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/nodejs/string_decoder +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/string_decoder +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/string_decoder/LICENSE +├─ stringify-package@1.0.1 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/stringify-package +│ ├─ publisher: Kat Marchán +│ ├─ email: kzm@zkat.tech +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/stringify-package +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/stringify-package/LICENSE +├─ strip-ansi@3.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/chalk/strip-ansi +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/strip-ansi +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/strip-ansi/license +├─ strip-ansi@4.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/chalk/strip-ansi +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/ansi-align/node_modules/strip-ansi +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/ansi-align/node_modules/strip-ansi/license +├─ strip-ansi@5.2.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/chalk/strip-ansi +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/strip-ansi +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/strip-ansi/license +├─ strip-ansi@6.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/chalk/strip-ansi +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/string-width/node_modules/strip-ansi +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/string-width/node_modules/strip-ansi/license +├─ strip-bom@3.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/strip-bom +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/strip-bom +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/strip-bom/license +├─ strip-eof@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/strip-eof +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/strip-eof +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/strip-eof/license +├─ strip-json-comments@2.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/strip-json-comments +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/rc/node_modules/strip-json-comments +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/rc/node_modules/strip-json-comments/license +├─ strip-json-comments@3.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/strip-json-comments +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/strip-json-comments +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/strip-json-comments/license +├─ supports-color@5.4.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/chalk/supports-color +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/supports-color +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/supports-color/license +├─ supports-color@5.5.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/chalk/supports-color +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/supports-color +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/supports-color/license +├─ supports-color@7.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/chalk/supports-color +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/inquirer/node_modules/supports-color +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/inquirer/node_modules/supports-color/license +├─ table@5.4.6 +│ ├─ licenses: BSD-3-Clause +│ ├─ repository: https://github.com/gajus/table +│ ├─ publisher: Gajus Kuizinas +│ ├─ email: gajus@gajus.com +│ ├─ url: http://gajus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/table +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/table/LICENSE +├─ tar@4.4.13 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/node-tar +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/tar +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/tar/LICENSE +├─ term-size@1.2.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/term-size +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/term-size +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/term-size/license +├─ text-table@0.2.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/substack/text-table +│ ├─ publisher: James Halliday +│ ├─ email: mail@substack.net +│ ├─ url: http://substack.net +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/text-table +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/text-table/LICENSE +├─ through2-filter@3.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/brycebaril/through2-filter +│ ├─ publisher: Bryce B. Baril +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/through2-filter +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/through2-filter/LICENSE +├─ through2@2.0.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/rvagg/through2 +│ ├─ publisher: Rod Vagg +│ ├─ email: r@va.gg +│ ├─ url: https://github.com/rvagg +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/through2 +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/through2/LICENSE.html +├─ through2@2.0.5 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/rvagg/through2 +│ ├─ publisher: Rod Vagg +│ ├─ email: r@va.gg +│ ├─ url: https://github.com/rvagg +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/through2 +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/through2/LICENSE.md +├─ through@2.3.8 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/dominictarr/through +│ ├─ publisher: Dominic Tarr +│ ├─ email: dominic.tarr@gmail.com +│ ├─ url: dominictarr.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/through +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/through/LICENSE.APACHE2 +├─ timed-out@4.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/floatdrop/timed-out +│ ├─ publisher: Vsevolod Strukchinsky +│ ├─ email: floatdrop@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/timed-out +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/timed-out/license +├─ tiny-relative-date@1.3.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/wildlyinaccurate/relative-date +│ ├─ publisher: Joseph Wynn +│ ├─ email: joseph@wildlyinaccurate.com +│ ├─ url: https://wildlyinaccurate.com/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/tiny-relative-date +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/tiny-relative-date/LICENSE.md +├─ tmp@0.0.33 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/raszi/node-tmp +│ ├─ publisher: KARASZI István +│ ├─ email: github@spam.raszi.hu +│ ├─ url: http://raszi.hu/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/tmp +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/tmp/LICENSE +├─ to-absolute-glob@2.0.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/to-absolute-glob +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/to-absolute-glob +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/to-absolute-glob/LICENSE +├─ to-fast-properties@2.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/to-fast-properties +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/to-fast-properties +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/to-fast-properties/license +├─ to-object-path@0.3.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/to-object-path +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/to-object-path +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/to-object-path/LICENSE +├─ to-regex-range@2.1.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/micromatch/to-regex-range +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/to-regex-range +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/to-regex-range/LICENSE +├─ to-regex-range@5.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/micromatch/to-regex-range +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/nodemon/node_modules/to-regex-range +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/nodemon/node_modules/to-regex-range/LICENSE +├─ to-regex@3.0.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/to-regex +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/to-regex +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/to-regex/LICENSE +├─ touch@3.1.0 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/isaacs/node-touch +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/touch +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/touch/LICENSE +├─ tough-cookie@2.4.3 +│ ├─ licenses: BSD-3-Clause +│ ├─ repository: https://github.com/salesforce/tough-cookie +│ ├─ publisher: Jeremy Stashewsky +│ ├─ email: jstash@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/tough-cookie +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/tough-cookie/LICENSE +├─ tslib@1.11.1 +│ ├─ licenses: Apache-2.0 +│ ├─ repository: https://github.com/Microsoft/tslib +│ ├─ publisher: Microsoft Corp. +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/tslib +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/tslib/LICENSE.txt +├─ tunnel-agent@0.6.0 +│ ├─ licenses: Apache-2.0 +│ ├─ repository: https://github.com/mikeal/tunnel-agent +│ ├─ publisher: Mikeal Rogers +│ ├─ email: mikeal.rogers@gmail.com +│ ├─ url: http://www.futurealoof.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/tunnel-agent +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/tunnel-agent/LICENSE +├─ tweetnacl@0.14.5 +│ ├─ licenses: Unlicense +│ ├─ repository: https://github.com/dchest/tweetnacl-js +│ ├─ publisher: TweetNaCl-js contributors +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/tweetnacl +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/tweetnacl/LICENSE +├─ type-check@0.3.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/gkz/type-check +│ ├─ publisher: George Zahariev +│ ├─ email: z@georgezahariev.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/type-check +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/type-check/LICENSE +├─ type-fest@0.11.0 +│ ├─ licenses: (MIT OR CC0-1.0) +│ ├─ repository: https://github.com/sindresorhus/type-fest +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/ansi-escapes/node_modules/type-fest +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/ansi-escapes/node_modules/type-fest/license +├─ type-fest@0.8.1 +│ ├─ licenses: (MIT OR CC0-1.0) +│ ├─ repository: https://github.com/sindresorhus/type-fest +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/type-fest +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/type-fest/license +├─ type@1.2.0 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/medikoo/type +│ ├─ publisher: Mariusz Nowak +│ ├─ email: medyk@medikoo.com +│ ├─ url: https://www.medikoo.com/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/type +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/type/LICENSE +├─ type@2.0.0 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/medikoo/type +│ ├─ publisher: Mariusz Nowak +│ ├─ email: medyk@medikoo.com +│ ├─ url: https://www.medikoo.com/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/ext/node_modules/type +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/ext/node_modules/type/LICENSE +├─ typecast@0.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/eivindfjeldstad/typecast +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/typecast +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/typecast/readme.md +├─ typedarray@0.0.6 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/substack/typedarray +│ ├─ publisher: James Halliday +│ ├─ email: mail@substack.net +│ ├─ url: http://substack.net +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/typedarray +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/typedarray/LICENSE +├─ uid-number@0.0.6 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/isaacs/uid-number +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/uid-number +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/uid-number/LICENSE +├─ ultron@1.1.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/unshiftio/ultron +│ ├─ publisher: Arnout Kazemier +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/ultron +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/ultron/LICENSE +├─ umask@1.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/smikes/umask +│ ├─ publisher: Sam Mikes +│ ├─ email: smikes@cubane.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/umask +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/umask/LICENSE +├─ unc-path-regex@0.1.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/regexhq/unc-path-regex +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/unc-path-regex +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/unc-path-regex/LICENSE +├─ undefsafe@2.0.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/remy/undefsafe +│ ├─ publisher: Remy Sharp +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/undefsafe +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/undefsafe/LICENSE +├─ unicode-canonical-property-names-ecmascript@1.0.4 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/mathiasbynens/unicode-canonical-property-names-ecmascript +│ ├─ publisher: Mathias Bynens +│ ├─ url: https://mathiasbynens.be/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/unicode-canonical-property-names-ecmascript +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/unicode-canonical-property-names-ecmascript/LICENSE-MIT.txt +├─ unicode-match-property-ecmascript@1.0.4 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/mathiasbynens/unicode-match-property-ecmascript +│ ├─ publisher: Mathias Bynens +│ ├─ url: https://mathiasbynens.be/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/unicode-match-property-ecmascript +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/unicode-match-property-ecmascript/LICENSE-MIT.txt +├─ unicode-match-property-value-ecmascript@1.2.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/mathiasbynens/unicode-match-property-value-ecmascript +│ ├─ publisher: Mathias Bynens +│ ├─ url: https://mathiasbynens.be/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/unicode-match-property-value-ecmascript +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/unicode-match-property-value-ecmascript/LICENSE-MIT.txt +├─ unicode-property-aliases-ecmascript@1.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/mathiasbynens/unicode-property-aliases-ecmascript +│ ├─ publisher: Mathias Bynens +│ ├─ url: https://mathiasbynens.be/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/unicode-property-aliases-ecmascript +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/unicode-property-aliases-ecmascript/LICENSE-MIT.txt +├─ union-value@1.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/union-value +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/union-value +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/union-value/LICENSE +├─ unique-filename@1.1.1 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/iarna/unique-filename +│ ├─ publisher: Rebecca Turner +│ ├─ email: me@re-becca.org +│ ├─ url: http://re-becca.org/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/unique-filename +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/unique-filename/LICENSE +├─ unique-slug@2.0.0 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/iarna/unique-slug +│ ├─ publisher: Rebecca Turner +│ ├─ email: me@re-becca.org +│ ├─ url: http://re-becca.org +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/unique-slug +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/unique-slug/README.md +├─ unique-stream@2.3.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/eugeneware/unique-stream +│ ├─ publisher: Eugene Ware +│ ├─ email: eugene@noblesamurai.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/unique-stream +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/unique-stream/LICENSE +├─ unique-string@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/unique-string +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/unique-string +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/unique-string/license +├─ unpipe@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/stream-utils/unpipe +│ ├─ publisher: Douglas Christopher Wilson +│ ├─ email: doug@somethingdoug.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/unpipe +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/unpipe/LICENSE +├─ unset-value@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/unset-value +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/unset-value +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/unset-value/LICENSE +├─ unzip-response@2.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/unzip-response +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/unzip-response +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/unzip-response/license +├─ upath@1.2.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/anodynos/upath +│ ├─ publisher: Angelos Pikoulas +│ ├─ email: agelos.pikoulas@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/upath +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/upath/LICENSE +├─ update-notifier@2.5.0 +│ ├─ licenses: BSD-2-Clause +│ ├─ repository: https://github.com/yeoman/update-notifier +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: https://sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/update-notifier +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/update-notifier/license +├─ uri-js@4.2.2 +│ ├─ licenses: BSD-2-Clause +│ ├─ repository: https://github.com/garycourt/uri-js +│ ├─ publisher: Gary Court +│ ├─ email: gary.court@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/uri-js +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/uri-js/README.md +├─ urix@0.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/lydell/urix +│ ├─ publisher: Simon Lydell +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/urix +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/urix/LICENSE +├─ url-parse-lax@1.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/url-parse-lax +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/url-parse-lax +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/url-parse-lax/license +├─ use@3.1.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/use +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/use +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/use/LICENSE +├─ util-deprecate@1.0.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/TooTallNate/util-deprecate +│ ├─ publisher: Nathan Rajlich +│ ├─ email: nathan@tootallnate.net +│ ├─ url: http://n8.io/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/util-deprecate +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/util-deprecate/LICENSE +├─ util-extend@1.0.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/isaacs/util-extend +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/util-extend +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/util-extend/LICENSE +├─ util-promisify@2.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/juliangruber/util-promisify +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/util-promisify +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/util-promisify/LICENSE +├─ uuid@3.3.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/kelektiv/node-uuid +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/uuid +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/uuid/LICENSE.md +├─ v8-compile-cache@2.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/zertosh/v8-compile-cache +│ ├─ publisher: Andres Suarez +│ ├─ email: zertosh@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/v8-compile-cache +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/v8-compile-cache/LICENSE +├─ v8flags@3.1.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/gulpjs/v8flags +│ ├─ publisher: Gulp Team +│ ├─ email: team@gulpjs.com +│ ├─ url: http://gulpjs.com/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/v8flags +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/v8flags/LICENSE +├─ validate-npm-package-license@3.0.4 +│ ├─ licenses: Apache-2.0 +│ ├─ repository: https://github.com/kemitchell/validate-npm-package-license.js +│ ├─ publisher: Kyle E. Mitchell +│ ├─ email: kyle@kemitchell.com +│ ├─ url: https://kemitchell.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/validate-npm-package-license +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/validate-npm-package-license/LICENSE +├─ validate-npm-package-name@3.0.0 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/validate-npm-package-name +│ ├─ publisher: zeke +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/validate-npm-package-name +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/validate-npm-package-name/LICENSE +├─ validate@5.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/eivindfjeldstad/validate +│ ├─ publisher: Eivind Fjeldstad +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/validate +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/validate/LICENSE +├─ verror@1.10.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/davepacheco/node-verror +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/verror +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/verror/LICENSE +├─ wcwidth@1.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/timoxley/wcwidth +│ ├─ publisher: Tim Oxley +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/wcwidth +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/wcwidth/LICENSE +├─ websocket-stream@5.5.2 +│ ├─ licenses: BSD-2-Clause +│ ├─ repository: https://github.com/maxogden/websocket-stream +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/websocket-stream +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/websocket-stream/LICENSE +├─ which-module@2.0.0 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/nexdrew/which-module +│ ├─ publisher: nexdrew +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/which-module +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/which-module/LICENSE +├─ which@1.3.1 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/isaacs/node-which +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/which +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/which/LICENSE +├─ wide-align@1.1.2 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/iarna/wide-align +│ ├─ publisher: Rebecca Turner +│ ├─ email: me@re-becca.org +│ ├─ url: http://re-becca.org/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/wide-align +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/wide-align/LICENSE +├─ wide-align@1.1.3 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/iarna/wide-align +│ ├─ publisher: Rebecca Turner +│ ├─ email: me@re-becca.org +│ ├─ url: http://re-becca.org/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/fsevents/node_modules/wide-align +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/fsevents/node_modules/wide-align/LICENSE +├─ widest-line@2.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/widest-line +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/widest-line +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/widest-line/license +├─ word-wrap@1.2.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/word-wrap +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/word-wrap +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/word-wrap/LICENSE +├─ worker-farm@1.7.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/rvagg/node-worker-farm +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/worker-farm +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/worker-farm/LICENSE.md +├─ wrap-ansi@2.1.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/chalk/wrap-ansi +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/wrap-ansi +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/wrap-ansi/license +├─ wrappy@1.0.2 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/npm/wrappy +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/wrappy +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/wrappy/LICENSE +├─ write-file-atomic@2.4.3 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/iarna/write-file-atomic +│ ├─ publisher: Rebecca Turner +│ ├─ email: me@re-becca.org +│ ├─ url: http://re-becca.org +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/write-file-atomic +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/write-file-atomic/LICENSE +├─ write@1.0.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/jonschlinkert/write +│ ├─ publisher: Jon Schlinkert +│ ├─ url: https://github.com/jonschlinkert +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/write +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/write/LICENSE +├─ ws@3.3.3 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/websockets/ws +│ ├─ publisher: Einar Otto Stangvik +│ ├─ email: einaros@gmail.com +│ ├─ url: http://2x.io +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/ws +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/ws/LICENSE +├─ xdg-basedir@3.0.0 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/sindresorhus/xdg-basedir +│ ├─ publisher: Sindre Sorhus +│ ├─ email: sindresorhus@gmail.com +│ ├─ url: sindresorhus.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/xdg-basedir +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/xdg-basedir/license +├─ xml2js@0.4.23 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/Leonidas-from-XIV/node-xml2js +│ ├─ publisher: Marek Kubica +│ ├─ email: marek@xivilization.net +│ ├─ url: https://xivilization.net +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/xml2js +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/xml2js/LICENSE +├─ xmlbuilder@11.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/oozcitak/xmlbuilder-js +│ ├─ publisher: Ozgur Ozcitak +│ ├─ email: oozcitak@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/xmlbuilder +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/xmlbuilder/LICENSE +├─ xtend@4.0.1 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/Raynos/xtend +│ ├─ publisher: Raynos +│ ├─ email: raynos2@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/xtend +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/xtend/LICENCE +├─ xtend@4.0.2 +│ ├─ licenses: MIT +│ ├─ repository: https://github.com/Raynos/xtend +│ ├─ publisher: Raynos +│ ├─ email: raynos2@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/xtend +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/xtend/LICENSE +├─ y18n@3.2.1 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/yargs/y18n +│ ├─ publisher: Ben Coe +│ ├─ email: ben@npmjs.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/yargs/node_modules/y18n +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/yargs/node_modules/y18n/LICENSE +├─ y18n@4.0.0 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/yargs/y18n +│ ├─ publisher: Ben Coe +│ ├─ email: ben@npmjs.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/y18n +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/y18n/LICENSE +├─ yallist@2.1.2 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/isaacs/yallist +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/term-size/node_modules/yallist +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/term-size/node_modules/yallist/LICENSE +├─ yallist@3.0.3 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/isaacs/yallist +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/yallist +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/yallist/LICENSE +├─ yallist@3.1.1 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/isaacs/yallist +│ ├─ publisher: Isaac Z. Schlueter +│ ├─ email: i@izs.me +│ ├─ url: http://blog.izs.me/ +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/fsevents/node_modules/yallist +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/fsevents/node_modules/yallist/LICENSE +├─ yaml@1.8.3 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/eemeli/yaml +│ ├─ publisher: Eemeli Aro +│ ├─ email: eemeli@gmail.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/yaml +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/yaml/LICENSE +├─ yargs-parser@9.0.2 +│ ├─ licenses: ISC +│ ├─ repository: https://github.com/yargs/yargs-parser +│ ├─ publisher: Ben Coe +│ ├─ email: ben@npmjs.com +│ ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/yargs-parser +│ └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/yargs-parser/LICENSE.txt +└─ yargs@11.1.1 + ├─ licenses: MIT + ├─ repository: https://github.com/yargs/yargs + ├─ path: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/yargs + └─ licenseFile: /Users/dfarkov/Projects/onvif-cam/node_modules/npm/node_modules/yargs/LICENSE + diff --git a/package-lock.json b/package-lock.json index 4abfde7..c701ccc 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "onvif-cam", - "version": "1.0.0", + "version": "0.0.1-alpha-3", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -1744,6 +1744,11 @@ "dev": true, "optional": true }, + "component-type": { + "version": "1.2.1", + "resolved": "https://pagerduty.jfrog.io/pagerduty/api/npm/npm/component-type/-/component-type-1.2.1.tgz", + "integrity": "sha1-ikeQFwAjjk/DIml3EjAibyS0Fak=" + }, "concat-map": { "version": "0.0.1", "resolved": "https://pagerduty.jfrog.io/pagerduty/api/npm/npm/concat-map/-/concat-map-0.0.1.tgz", @@ -1999,6 +2004,11 @@ "stream-shift": "^1.0.0" } }, + "eivindfjeldstad-dot": { + "version": "0.0.1", + "resolved": "https://pagerduty.jfrog.io/pagerduty/api/npm/npm/eivindfjeldstad-dot/-/eivindfjeldstad-dot-0.0.1.tgz", + "integrity": "sha1-IvyXa/rzBuCDmjHbjoITSA+vuJM=" + }, "electron-to-chromium": { "version": "1.3.382", "resolved": "https://pagerduty.jfrog.io/pagerduty/api/npm/npm/electron-to-chromium/-/electron-to-chromium-1.3.382.tgz", @@ -3514,6 +3524,11 @@ "resolved": "https://pagerduty.jfrog.io/pagerduty/api/npm/npm/hosted-git-info/-/hosted-git-info-2.8.8.tgz", "integrity": "sha1-dTm9S8Hg4KiVgVouAmJCCxKFhIg=" }, + "i": { + "version": "0.3.6", + "resolved": "https://pagerduty.jfrog.io/pagerduty/api/npm/npm/i/-/i-0.3.6.tgz", + "integrity": "sha1-2WyScyB28HJxG2sQ/X1PZa2O4j0=" + }, "iconv-lite": { "version": "0.4.24", "resolved": "https://pagerduty.jfrog.io/pagerduty/api/npm/npm/iconv-lite/-/iconv-lite-0.4.24.tgz", @@ -4461,6 +4476,3112 @@ "resolved": "https://pagerduty.jfrog.io/pagerduty/api/npm/npm/normalize-path/-/normalize-path-3.0.0.tgz", "integrity": "sha1-Dc1p/yOhybEf0JeDFmRKA4ghamU=" }, + "npm": { + "version": "6.14.4", + "resolved": "https://pagerduty.jfrog.io/pagerduty/api/npm/npm/npm/-/npm-6.14.4.tgz", + "integrity": "sha1-UKHGJ0+0UcoY9v9HLSpz8AatvWY=", + "requires": { + "JSONStream": "^1.3.5", + "abbrev": "~1.1.1", + "ansicolors": "~0.3.2", + "ansistyles": "~0.1.3", + "aproba": "^2.0.0", + "archy": "~1.0.0", + "bin-links": "^1.1.7", + "bluebird": "^3.5.5", + "byte-size": "^5.0.1", + "cacache": "^12.0.3", + "call-limit": "^1.1.1", + "chownr": "^1.1.4", + "ci-info": "^2.0.0", + "cli-columns": "^3.1.2", + "cli-table3": "^0.5.1", + "cmd-shim": "^3.0.3", + "columnify": "~1.5.4", + "config-chain": "^1.1.12", + "debuglog": "*", + "detect-indent": "~5.0.0", + "detect-newline": "^2.1.0", + "dezalgo": "~1.0.3", + "editor": "~1.0.0", + "figgy-pudding": "^3.5.1", + "find-npm-prefix": "^1.0.2", + "fs-vacuum": "~1.2.10", + "fs-write-stream-atomic": "~1.0.10", + "gentle-fs": "^2.3.0", + "glob": "^7.1.6", + "graceful-fs": "^4.2.3", + "has-unicode": "~2.0.1", + "hosted-git-info": "^2.8.8", + "iferr": "^1.0.2", + "imurmurhash": "*", + "infer-owner": "^1.0.4", + "inflight": "~1.0.6", + "inherits": "^2.0.4", + "ini": "^1.3.5", + "init-package-json": "^1.10.3", + "is-cidr": "^3.0.0", + "json-parse-better-errors": "^1.0.2", + "lazy-property": "~1.0.0", + "libcipm": "^4.0.7", + "libnpm": "^3.0.1", + "libnpmaccess": "^3.0.2", + "libnpmhook": "^5.0.3", + "libnpmorg": "^1.0.1", + "libnpmsearch": "^2.0.2", + "libnpmteam": "^1.0.2", + "libnpx": "^10.2.2", + "lock-verify": "^2.1.0", + "lockfile": "^1.0.4", + "lodash._baseindexof": "*", + "lodash._baseuniq": "~4.6.0", + "lodash._bindcallback": "*", + "lodash._cacheindexof": "*", + "lodash._createcache": "*", + "lodash._getnative": "*", + "lodash.clonedeep": "~4.5.0", + "lodash.restparam": "*", + "lodash.union": "~4.6.0", + "lodash.uniq": "~4.5.0", + "lodash.without": "~4.4.0", + "lru-cache": "^5.1.1", + "meant": "~1.0.1", + "mississippi": "^3.0.0", + "mkdirp": "^0.5.4", + "move-concurrently": "^1.0.1", + "node-gyp": "^5.1.0", + "nopt": "~4.0.1", + "normalize-package-data": "^2.5.0", + "npm-audit-report": "^1.3.2", + "npm-cache-filename": "~1.0.2", + "npm-install-checks": "^3.0.2", + "npm-lifecycle": "^3.1.4", + "npm-package-arg": "^6.1.1", + "npm-packlist": "^1.4.8", + "npm-pick-manifest": "^3.0.2", + "npm-profile": "^4.0.4", + "npm-registry-fetch": "^4.0.3", + "npm-user-validate": "~1.0.0", + "npmlog": "~4.1.2", + "once": "~1.4.0", + "opener": "^1.5.1", + "osenv": "^0.1.5", + "pacote": "^9.5.12", + "path-is-inside": "~1.0.2", + "promise-inflight": "~1.0.1", + "qrcode-terminal": "^0.12.0", + "query-string": "^6.8.2", + "qw": "~1.0.1", + "read": "~1.0.7", + "read-cmd-shim": "^1.0.5", + "read-installed": "~4.0.3", + "read-package-json": "^2.1.1", + "read-package-tree": "^5.3.1", + "readable-stream": "^3.6.0", + "readdir-scoped-modules": "^1.1.0", + "request": "^2.88.0", + "retry": "^0.12.0", + "rimraf": "^2.7.1", + "safe-buffer": "^5.1.2", + "semver": "^5.7.1", + "sha": "^3.0.0", + "slide": "~1.1.6", + "sorted-object": "~2.0.1", + "sorted-union-stream": "~2.1.3", + "ssri": "^6.0.1", + "stringify-package": "^1.0.1", + "tar": "^4.4.13", + "text-table": "~0.2.0", + "tiny-relative-date": "^1.3.0", + "uid-number": "0.0.6", + "umask": "~1.1.0", + "unique-filename": "^1.1.1", + "unpipe": "~1.0.0", + "update-notifier": "^2.5.0", + "uuid": "^3.3.3", + "validate-npm-package-license": "^3.0.4", + "validate-npm-package-name": "~3.0.0", + "which": "^1.3.1", + "worker-farm": "^1.7.0", + "write-file-atomic": "^2.4.3" + }, + "dependencies": { + "JSONStream": { + "version": "1.3.5", + "bundled": true, + "requires": { + "jsonparse": "^1.2.0", + "through": ">=2.2.7 <3" + } + }, + "abbrev": { + "version": "1.1.1", + "bundled": true + }, + "agent-base": { + "version": "4.3.0", + "bundled": true, + "requires": { + "es6-promisify": "^5.0.0" + } + }, + "agentkeepalive": { + "version": "3.5.2", + "bundled": true, + "requires": { + "humanize-ms": "^1.2.1" + } + }, + "ajv": { + "version": "5.5.2", + "bundled": true, + "requires": { + "co": "^4.6.0", + "fast-deep-equal": "^1.0.0", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.3.0" + } + }, + "ansi-align": { + "version": "2.0.0", + "bundled": true, + "requires": { + "string-width": "^2.0.0" + } + }, + "ansi-regex": { + "version": "2.1.1", + "bundled": true + }, + "ansi-styles": { + "version": "3.2.1", + "bundled": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "ansicolors": { + "version": "0.3.2", + "bundled": true + }, + "ansistyles": { + "version": "0.1.3", + "bundled": true + }, + "aproba": { + "version": "2.0.0", + "bundled": true + }, + "archy": { + "version": "1.0.0", + "bundled": true + }, + "are-we-there-yet": { + "version": "1.1.4", + "bundled": true, + "requires": { + "delegates": "^1.0.0", + "readable-stream": "^2.0.6" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.6", + "bundled": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "bundled": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "asap": { + "version": "2.0.6", + "bundled": true + }, + "asn1": { + "version": "0.2.4", + "bundled": true, + "requires": { + "safer-buffer": "~2.1.0" + } + }, + "assert-plus": { + "version": "1.0.0", + "bundled": true + }, + "asynckit": { + "version": "0.4.0", + "bundled": true + }, + "aws-sign2": { + "version": "0.7.0", + "bundled": true + }, + "aws4": { + "version": "1.8.0", + "bundled": true + }, + "balanced-match": { + "version": "1.0.0", + "bundled": true + }, + "bcrypt-pbkdf": { + "version": "1.0.2", + "bundled": true, + "optional": true, + "requires": { + "tweetnacl": "^0.14.3" + } + }, + "bin-links": { + "version": "1.1.7", + "bundled": true, + "requires": { + "bluebird": "^3.5.3", + "cmd-shim": "^3.0.0", + "gentle-fs": "^2.3.0", + "graceful-fs": "^4.1.15", + "npm-normalize-package-bin": "^1.0.0", + "write-file-atomic": "^2.3.0" + } + }, + "bluebird": { + "version": "3.5.5", + "bundled": true + }, + "boxen": { + "version": "1.3.0", + "bundled": true, + "requires": { + "ansi-align": "^2.0.0", + "camelcase": "^4.0.0", + "chalk": "^2.0.1", + "cli-boxes": "^1.0.0", + "string-width": "^2.0.0", + "term-size": "^1.2.0", + "widest-line": "^2.0.0" + } + }, + "brace-expansion": { + "version": "1.1.11", + "bundled": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "buffer-from": { + "version": "1.0.0", + "bundled": true + }, + "builtins": { + "version": "1.0.3", + "bundled": true + }, + "byline": { + "version": "5.0.0", + "bundled": true + }, + "byte-size": { + "version": "5.0.1", + "bundled": true + }, + "cacache": { + "version": "12.0.3", + "bundled": true, + "requires": { + "bluebird": "^3.5.5", + "chownr": "^1.1.1", + "figgy-pudding": "^3.5.1", + "glob": "^7.1.4", + "graceful-fs": "^4.1.15", + "infer-owner": "^1.0.3", + "lru-cache": "^5.1.1", + "mississippi": "^3.0.0", + "mkdirp": "^0.5.1", + "move-concurrently": "^1.0.1", + "promise-inflight": "^1.0.1", + "rimraf": "^2.6.3", + "ssri": "^6.0.1", + "unique-filename": "^1.1.1", + "y18n": "^4.0.0" + } + }, + "call-limit": { + "version": "1.1.1", + "bundled": true + }, + "camelcase": { + "version": "4.1.0", + "bundled": true + }, + "capture-stack-trace": { + "version": "1.0.0", + "bundled": true + }, + "caseless": { + "version": "0.12.0", + "bundled": true + }, + "chalk": { + "version": "2.4.1", + "bundled": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "chownr": { + "version": "1.1.4", + "bundled": true + }, + "ci-info": { + "version": "2.0.0", + "bundled": true + }, + "cidr-regex": { + "version": "2.0.10", + "bundled": true, + "requires": { + "ip-regex": "^2.1.0" + } + }, + "cli-boxes": { + "version": "1.0.0", + "bundled": true + }, + "cli-columns": { + "version": "3.1.2", + "bundled": true, + "requires": { + "string-width": "^2.0.0", + "strip-ansi": "^3.0.1" + } + }, + "cli-table3": { + "version": "0.5.1", + "bundled": true, + "requires": { + "colors": "^1.1.2", + "object-assign": "^4.1.0", + "string-width": "^2.1.1" + } + }, + "cliui": { + "version": "4.1.0", + "bundled": true, + "requires": { + "string-width": "^2.1.1", + "strip-ansi": "^4.0.0", + "wrap-ansi": "^2.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "3.0.0", + "bundled": true + }, + "strip-ansi": { + "version": "4.0.0", + "bundled": true, + "requires": { + "ansi-regex": "^3.0.0" + } + } + } + }, + "clone": { + "version": "1.0.4", + "bundled": true + }, + "cmd-shim": { + "version": "3.0.3", + "bundled": true, + "requires": { + "graceful-fs": "^4.1.2", + "mkdirp": "~0.5.0" + } + }, + "co": { + "version": "4.6.0", + "bundled": true + }, + "code-point-at": { + "version": "1.1.0", + "bundled": true + }, + "color-convert": { + "version": "1.9.1", + "bundled": true, + "requires": { + "color-name": "^1.1.1" + } + }, + "color-name": { + "version": "1.1.3", + "bundled": true + }, + "colors": { + "version": "1.3.3", + "bundled": true, + "optional": true + }, + "columnify": { + "version": "1.5.4", + "bundled": true, + "requires": { + "strip-ansi": "^3.0.0", + "wcwidth": "^1.0.0" + } + }, + "combined-stream": { + "version": "1.0.6", + "bundled": true, + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "concat-map": { + "version": "0.0.1", + "bundled": true + }, + "concat-stream": { + "version": "1.6.2", + "bundled": true, + "requires": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.6", + "bundled": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "bundled": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "config-chain": { + "version": "1.1.12", + "bundled": true, + "requires": { + "ini": "^1.3.4", + "proto-list": "~1.2.1" + } + }, + "configstore": { + "version": "3.1.2", + "bundled": true, + "requires": { + "dot-prop": "^4.1.0", + "graceful-fs": "^4.1.2", + "make-dir": "^1.0.0", + "unique-string": "^1.0.0", + "write-file-atomic": "^2.0.0", + "xdg-basedir": "^3.0.0" + } + }, + "console-control-strings": { + "version": "1.1.0", + "bundled": true + }, + "copy-concurrently": { + "version": "1.0.5", + "bundled": true, + "requires": { + "aproba": "^1.1.1", + "fs-write-stream-atomic": "^1.0.8", + "iferr": "^0.1.5", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.0" + }, + "dependencies": { + "aproba": { + "version": "1.2.0", + "bundled": true + }, + "iferr": { + "version": "0.1.5", + "bundled": true + } + } + }, + "core-util-is": { + "version": "1.0.2", + "bundled": true + }, + "create-error-class": { + "version": "3.0.2", + "bundled": true, + "requires": { + "capture-stack-trace": "^1.0.0" + } + }, + "cross-spawn": { + "version": "5.1.0", + "bundled": true, + "requires": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "dependencies": { + "lru-cache": { + "version": "4.1.5", + "bundled": true, + "requires": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "yallist": { + "version": "2.1.2", + "bundled": true + } + } + }, + "crypto-random-string": { + "version": "1.0.0", + "bundled": true + }, + "cyclist": { + "version": "0.2.2", + "bundled": true + }, + "dashdash": { + "version": "1.14.1", + "bundled": true, + "requires": { + "assert-plus": "^1.0.0" + } + }, + "debug": { + "version": "3.1.0", + "bundled": true, + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "bundled": true + } + } + }, + "debuglog": { + "version": "1.0.1", + "bundled": true + }, + "decamelize": { + "version": "1.2.0", + "bundled": true + }, + "decode-uri-component": { + "version": "0.2.0", + "bundled": true + }, + "deep-extend": { + "version": "0.6.0", + "bundled": true + }, + "defaults": { + "version": "1.0.3", + "bundled": true, + "requires": { + "clone": "^1.0.2" + } + }, + "define-properties": { + "version": "1.1.3", + "bundled": true, + "requires": { + "object-keys": "^1.0.12" + } + }, + "delayed-stream": { + "version": "1.0.0", + "bundled": true + }, + "delegates": { + "version": "1.0.0", + "bundled": true + }, + "detect-indent": { + "version": "5.0.0", + "bundled": true + }, + "detect-newline": { + "version": "2.1.0", + "bundled": true + }, + "dezalgo": { + "version": "1.0.3", + "bundled": true, + "requires": { + "asap": "^2.0.0", + "wrappy": "1" + } + }, + "dot-prop": { + "version": "4.2.0", + "bundled": true, + "requires": { + "is-obj": "^1.0.0" + } + }, + "dotenv": { + "version": "5.0.1", + "bundled": true + }, + "duplexer3": { + "version": "0.1.4", + "bundled": true + }, + "duplexify": { + "version": "3.6.0", + "bundled": true, + "requires": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.6", + "bundled": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "bundled": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "ecc-jsbn": { + "version": "0.1.2", + "bundled": true, + "optional": true, + "requires": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "editor": { + "version": "1.0.0", + "bundled": true + }, + "encoding": { + "version": "0.1.12", + "bundled": true, + "requires": { + "iconv-lite": "~0.4.13" + } + }, + "end-of-stream": { + "version": "1.4.1", + "bundled": true, + "requires": { + "once": "^1.4.0" + } + }, + "env-paths": { + "version": "2.2.0", + "bundled": true + }, + "err-code": { + "version": "1.1.2", + "bundled": true + }, + "errno": { + "version": "0.1.7", + "bundled": true, + "requires": { + "prr": "~1.0.1" + } + }, + "es-abstract": { + "version": "1.12.0", + "bundled": true, + "requires": { + "es-to-primitive": "^1.1.1", + "function-bind": "^1.1.1", + "has": "^1.0.1", + "is-callable": "^1.1.3", + "is-regex": "^1.0.4" + } + }, + "es-to-primitive": { + "version": "1.2.0", + "bundled": true, + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + } + }, + "es6-promise": { + "version": "4.2.8", + "bundled": true + }, + "es6-promisify": { + "version": "5.0.0", + "bundled": true, + "requires": { + "es6-promise": "^4.0.3" + } + }, + "escape-string-regexp": { + "version": "1.0.5", + "bundled": true + }, + "execa": { + "version": "0.7.0", + "bundled": true, + "requires": { + "cross-spawn": "^5.0.1", + "get-stream": "^3.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "dependencies": { + "get-stream": { + "version": "3.0.0", + "bundled": true + } + } + }, + "extend": { + "version": "3.0.2", + "bundled": true + }, + "extsprintf": { + "version": "1.3.0", + "bundled": true + }, + "fast-deep-equal": { + "version": "1.1.0", + "bundled": true + }, + "fast-json-stable-stringify": { + "version": "2.0.0", + "bundled": true + }, + "figgy-pudding": { + "version": "3.5.1", + "bundled": true + }, + "find-npm-prefix": { + "version": "1.0.2", + "bundled": true + }, + "find-up": { + "version": "2.1.0", + "bundled": true, + "requires": { + "locate-path": "^2.0.0" + } + }, + "flush-write-stream": { + "version": "1.0.3", + "bundled": true, + "requires": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.4" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.6", + "bundled": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "bundled": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "forever-agent": { + "version": "0.6.1", + "bundled": true + }, + "form-data": { + "version": "2.3.2", + "bundled": true, + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "1.0.6", + "mime-types": "^2.1.12" + } + }, + "from2": { + "version": "2.3.0", + "bundled": true, + "requires": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.6", + "bundled": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "bundled": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "fs-minipass": { + "version": "1.2.7", + "bundled": true, + "requires": { + "minipass": "^2.6.0" + }, + "dependencies": { + "minipass": { + "version": "2.9.0", + "bundled": true, + "requires": { + "safe-buffer": "^5.1.2", + "yallist": "^3.0.0" + } + } + } + }, + "fs-vacuum": { + "version": "1.2.10", + "bundled": true, + "requires": { + "graceful-fs": "^4.1.2", + "path-is-inside": "^1.0.1", + "rimraf": "^2.5.2" + } + }, + "fs-write-stream-atomic": { + "version": "1.0.10", + "bundled": true, + "requires": { + "graceful-fs": "^4.1.2", + "iferr": "^0.1.5", + "imurmurhash": "^0.1.4", + "readable-stream": "1 || 2" + }, + "dependencies": { + "iferr": { + "version": "0.1.5", + "bundled": true + }, + "readable-stream": { + "version": "2.3.6", + "bundled": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "bundled": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "fs.realpath": { + "version": "1.0.0", + "bundled": true + }, + "function-bind": { + "version": "1.1.1", + "bundled": true + }, + "gauge": { + "version": "2.7.4", + "bundled": true, + "requires": { + "aproba": "^1.0.3", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.0", + "object-assign": "^4.1.0", + "signal-exit": "^3.0.0", + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wide-align": "^1.1.0" + }, + "dependencies": { + "aproba": { + "version": "1.2.0", + "bundled": true + }, + "string-width": { + "version": "1.0.2", + "bundled": true, + "requires": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + } + } + } + }, + "genfun": { + "version": "5.0.0", + "bundled": true + }, + "gentle-fs": { + "version": "2.3.0", + "bundled": true, + "requires": { + "aproba": "^1.1.2", + "chownr": "^1.1.2", + "cmd-shim": "^3.0.3", + "fs-vacuum": "^1.2.10", + "graceful-fs": "^4.1.11", + "iferr": "^0.1.5", + "infer-owner": "^1.0.4", + "mkdirp": "^0.5.1", + "path-is-inside": "^1.0.2", + "read-cmd-shim": "^1.0.1", + "slide": "^1.1.6" + }, + "dependencies": { + "aproba": { + "version": "1.2.0", + "bundled": true + }, + "iferr": { + "version": "0.1.5", + "bundled": true + } + } + }, + "get-caller-file": { + "version": "1.0.3", + "bundled": true + }, + "get-stream": { + "version": "4.1.0", + "bundled": true, + "requires": { + "pump": "^3.0.0" + } + }, + "getpass": { + "version": "0.1.7", + "bundled": true, + "requires": { + "assert-plus": "^1.0.0" + } + }, + "glob": { + "version": "7.1.6", + "bundled": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "global-dirs": { + "version": "0.1.1", + "bundled": true, + "requires": { + "ini": "^1.3.4" + } + }, + "got": { + "version": "6.7.1", + "bundled": true, + "requires": { + "create-error-class": "^3.0.0", + "duplexer3": "^0.1.4", + "get-stream": "^3.0.0", + "is-redirect": "^1.0.0", + "is-retry-allowed": "^1.0.0", + "is-stream": "^1.0.0", + "lowercase-keys": "^1.0.0", + "safe-buffer": "^5.0.1", + "timed-out": "^4.0.0", + "unzip-response": "^2.0.1", + "url-parse-lax": "^1.0.0" + }, + "dependencies": { + "get-stream": { + "version": "3.0.0", + "bundled": true + } + } + }, + "graceful-fs": { + "version": "4.2.3", + "bundled": true + }, + "har-schema": { + "version": "2.0.0", + "bundled": true + }, + "har-validator": { + "version": "5.1.0", + "bundled": true, + "requires": { + "ajv": "^5.3.0", + "har-schema": "^2.0.0" + } + }, + "has": { + "version": "1.0.3", + "bundled": true, + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-flag": { + "version": "3.0.0", + "bundled": true + }, + "has-symbols": { + "version": "1.0.0", + "bundled": true + }, + "has-unicode": { + "version": "2.0.1", + "bundled": true + }, + "hosted-git-info": { + "version": "2.8.8", + "bundled": true + }, + "http-cache-semantics": { + "version": "3.8.1", + "bundled": true + }, + "http-proxy-agent": { + "version": "2.1.0", + "bundled": true, + "requires": { + "agent-base": "4", + "debug": "3.1.0" + } + }, + "http-signature": { + "version": "1.2.0", + "bundled": true, + "requires": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + } + }, + "https-proxy-agent": { + "version": "2.2.4", + "bundled": true, + "requires": { + "agent-base": "^4.3.0", + "debug": "^3.1.0" + } + }, + "humanize-ms": { + "version": "1.2.1", + "bundled": true, + "requires": { + "ms": "^2.0.0" + } + }, + "iconv-lite": { + "version": "0.4.23", + "bundled": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "iferr": { + "version": "1.0.2", + "bundled": true + }, + "ignore-walk": { + "version": "3.0.3", + "bundled": true, + "requires": { + "minimatch": "^3.0.4" + } + }, + "import-lazy": { + "version": "2.1.0", + "bundled": true + }, + "imurmurhash": { + "version": "0.1.4", + "bundled": true + }, + "infer-owner": { + "version": "1.0.4", + "bundled": true + }, + "inflight": { + "version": "1.0.6", + "bundled": true, + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "bundled": true + }, + "ini": { + "version": "1.3.5", + "bundled": true + }, + "init-package-json": { + "version": "1.10.3", + "bundled": true, + "requires": { + "glob": "^7.1.1", + "npm-package-arg": "^4.0.0 || ^5.0.0 || ^6.0.0", + "promzard": "^0.3.0", + "read": "~1.0.1", + "read-package-json": "1 || 2", + "semver": "2.x || 3.x || 4 || 5", + "validate-npm-package-license": "^3.0.1", + "validate-npm-package-name": "^3.0.0" + } + }, + "invert-kv": { + "version": "2.0.0", + "bundled": true + }, + "ip": { + "version": "1.1.5", + "bundled": true + }, + "ip-regex": { + "version": "2.1.0", + "bundled": true + }, + "is-callable": { + "version": "1.1.4", + "bundled": true + }, + "is-ci": { + "version": "1.2.1", + "bundled": true, + "requires": { + "ci-info": "^1.5.0" + }, + "dependencies": { + "ci-info": { + "version": "1.6.0", + "bundled": true + } + } + }, + "is-cidr": { + "version": "3.0.0", + "bundled": true, + "requires": { + "cidr-regex": "^2.0.10" + } + }, + "is-date-object": { + "version": "1.0.1", + "bundled": true + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "bundled": true, + "requires": { + "number-is-nan": "^1.0.0" + } + }, + "is-installed-globally": { + "version": "0.1.0", + "bundled": true, + "requires": { + "global-dirs": "^0.1.0", + "is-path-inside": "^1.0.0" + } + }, + "is-npm": { + "version": "1.0.0", + "bundled": true + }, + "is-obj": { + "version": "1.0.1", + "bundled": true + }, + "is-path-inside": { + "version": "1.0.1", + "bundled": true, + "requires": { + "path-is-inside": "^1.0.1" + } + }, + "is-redirect": { + "version": "1.0.0", + "bundled": true + }, + "is-regex": { + "version": "1.0.4", + "bundled": true, + "requires": { + "has": "^1.0.1" + } + }, + "is-retry-allowed": { + "version": "1.2.0", + "bundled": true + }, + "is-stream": { + "version": "1.1.0", + "bundled": true + }, + "is-symbol": { + "version": "1.0.2", + "bundled": true, + "requires": { + "has-symbols": "^1.0.0" + } + }, + "is-typedarray": { + "version": "1.0.0", + "bundled": true + }, + "isarray": { + "version": "1.0.0", + "bundled": true + }, + "isexe": { + "version": "2.0.0", + "bundled": true + }, + "isstream": { + "version": "0.1.2", + "bundled": true + }, + "jsbn": { + "version": "0.1.1", + "bundled": true, + "optional": true + }, + "json-parse-better-errors": { + "version": "1.0.2", + "bundled": true + }, + "json-schema": { + "version": "0.2.3", + "bundled": true + }, + "json-schema-traverse": { + "version": "0.3.1", + "bundled": true + }, + "json-stringify-safe": { + "version": "5.0.1", + "bundled": true + }, + "jsonparse": { + "version": "1.3.1", + "bundled": true + }, + "jsprim": { + "version": "1.4.1", + "bundled": true, + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + } + }, + "latest-version": { + "version": "3.1.0", + "bundled": true, + "requires": { + "package-json": "^4.0.0" + } + }, + "lazy-property": { + "version": "1.0.0", + "bundled": true + }, + "lcid": { + "version": "2.0.0", + "bundled": true, + "requires": { + "invert-kv": "^2.0.0" + } + }, + "libcipm": { + "version": "4.0.7", + "bundled": true, + "requires": { + "bin-links": "^1.1.2", + "bluebird": "^3.5.1", + "figgy-pudding": "^3.5.1", + "find-npm-prefix": "^1.0.2", + "graceful-fs": "^4.1.11", + "ini": "^1.3.5", + "lock-verify": "^2.0.2", + "mkdirp": "^0.5.1", + "npm-lifecycle": "^3.0.0", + "npm-logical-tree": "^1.2.1", + "npm-package-arg": "^6.1.0", + "pacote": "^9.1.0", + "read-package-json": "^2.0.13", + "rimraf": "^2.6.2", + "worker-farm": "^1.6.0" + } + }, + "libnpm": { + "version": "3.0.1", + "bundled": true, + "requires": { + "bin-links": "^1.1.2", + "bluebird": "^3.5.3", + "find-npm-prefix": "^1.0.2", + "libnpmaccess": "^3.0.2", + "libnpmconfig": "^1.2.1", + "libnpmhook": "^5.0.3", + "libnpmorg": "^1.0.1", + "libnpmpublish": "^1.1.2", + "libnpmsearch": "^2.0.2", + "libnpmteam": "^1.0.2", + "lock-verify": "^2.0.2", + "npm-lifecycle": "^3.0.0", + "npm-logical-tree": "^1.2.1", + "npm-package-arg": "^6.1.0", + "npm-profile": "^4.0.2", + "npm-registry-fetch": "^4.0.0", + "npmlog": "^4.1.2", + "pacote": "^9.5.3", + "read-package-json": "^2.0.13", + "stringify-package": "^1.0.0" + } + }, + "libnpmaccess": { + "version": "3.0.2", + "bundled": true, + "requires": { + "aproba": "^2.0.0", + "get-stream": "^4.0.0", + "npm-package-arg": "^6.1.0", + "npm-registry-fetch": "^4.0.0" + } + }, + "libnpmconfig": { + "version": "1.2.1", + "bundled": true, + "requires": { + "figgy-pudding": "^3.5.1", + "find-up": "^3.0.0", + "ini": "^1.3.5" + }, + "dependencies": { + "find-up": { + "version": "3.0.0", + "bundled": true, + "requires": { + "locate-path": "^3.0.0" + } + }, + "locate-path": { + "version": "3.0.0", + "bundled": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "2.2.0", + "bundled": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "bundled": true, + "requires": { + "p-limit": "^2.0.0" + } + }, + "p-try": { + "version": "2.2.0", + "bundled": true + } + } + }, + "libnpmhook": { + "version": "5.0.3", + "bundled": true, + "requires": { + "aproba": "^2.0.0", + "figgy-pudding": "^3.4.1", + "get-stream": "^4.0.0", + "npm-registry-fetch": "^4.0.0" + } + }, + "libnpmorg": { + "version": "1.0.1", + "bundled": true, + "requires": { + "aproba": "^2.0.0", + "figgy-pudding": "^3.4.1", + "get-stream": "^4.0.0", + "npm-registry-fetch": "^4.0.0" + } + }, + "libnpmpublish": { + "version": "1.1.2", + "bundled": true, + "requires": { + "aproba": "^2.0.0", + "figgy-pudding": "^3.5.1", + "get-stream": "^4.0.0", + "lodash.clonedeep": "^4.5.0", + "normalize-package-data": "^2.4.0", + "npm-package-arg": "^6.1.0", + "npm-registry-fetch": "^4.0.0", + "semver": "^5.5.1", + "ssri": "^6.0.1" + } + }, + "libnpmsearch": { + "version": "2.0.2", + "bundled": true, + "requires": { + "figgy-pudding": "^3.5.1", + "get-stream": "^4.0.0", + "npm-registry-fetch": "^4.0.0" + } + }, + "libnpmteam": { + "version": "1.0.2", + "bundled": true, + "requires": { + "aproba": "^2.0.0", + "figgy-pudding": "^3.4.1", + "get-stream": "^4.0.0", + "npm-registry-fetch": "^4.0.0" + } + }, + "libnpx": { + "version": "10.2.2", + "bundled": true, + "requires": { + "dotenv": "^5.0.1", + "npm-package-arg": "^6.0.0", + "rimraf": "^2.6.2", + "safe-buffer": "^5.1.0", + "update-notifier": "^2.3.0", + "which": "^1.3.0", + "y18n": "^4.0.0", + "yargs": "^11.0.0" + } + }, + "locate-path": { + "version": "2.0.0", + "bundled": true, + "requires": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + } + }, + "lock-verify": { + "version": "2.1.0", + "bundled": true, + "requires": { + "npm-package-arg": "^6.1.0", + "semver": "^5.4.1" + } + }, + "lockfile": { + "version": "1.0.4", + "bundled": true, + "requires": { + "signal-exit": "^3.0.2" + } + }, + "lodash._baseindexof": { + "version": "3.1.0", + "bundled": true + }, + "lodash._baseuniq": { + "version": "4.6.0", + "bundled": true, + "requires": { + "lodash._createset": "~4.0.0", + "lodash._root": "~3.0.0" + } + }, + "lodash._bindcallback": { + "version": "3.0.1", + "bundled": true + }, + "lodash._cacheindexof": { + "version": "3.0.2", + "bundled": true + }, + "lodash._createcache": { + "version": "3.1.2", + "bundled": true, + "requires": { + "lodash._getnative": "^3.0.0" + } + }, + "lodash._createset": { + "version": "4.0.3", + "bundled": true + }, + "lodash._getnative": { + "version": "3.9.1", + "bundled": true + }, + "lodash._root": { + "version": "3.0.1", + "bundled": true + }, + "lodash.clonedeep": { + "version": "4.5.0", + "bundled": true + }, + "lodash.restparam": { + "version": "3.6.1", + "bundled": true + }, + "lodash.union": { + "version": "4.6.0", + "bundled": true + }, + "lodash.uniq": { + "version": "4.5.0", + "bundled": true + }, + "lodash.without": { + "version": "4.4.0", + "bundled": true + }, + "lowercase-keys": { + "version": "1.0.1", + "bundled": true + }, + "lru-cache": { + "version": "5.1.1", + "bundled": true, + "requires": { + "yallist": "^3.0.2" + } + }, + "make-dir": { + "version": "1.3.0", + "bundled": true, + "requires": { + "pify": "^3.0.0" + } + }, + "make-fetch-happen": { + "version": "5.0.2", + "bundled": true, + "requires": { + "agentkeepalive": "^3.4.1", + "cacache": "^12.0.0", + "http-cache-semantics": "^3.8.1", + "http-proxy-agent": "^2.1.0", + "https-proxy-agent": "^2.2.3", + "lru-cache": "^5.1.1", + "mississippi": "^3.0.0", + "node-fetch-npm": "^2.0.2", + "promise-retry": "^1.1.1", + "socks-proxy-agent": "^4.0.0", + "ssri": "^6.0.0" + } + }, + "map-age-cleaner": { + "version": "0.1.3", + "bundled": true, + "requires": { + "p-defer": "^1.0.0" + } + }, + "meant": { + "version": "1.0.1", + "bundled": true + }, + "mem": { + "version": "4.3.0", + "bundled": true, + "requires": { + "map-age-cleaner": "^0.1.1", + "mimic-fn": "^2.0.0", + "p-is-promise": "^2.0.0" + }, + "dependencies": { + "mimic-fn": { + "version": "2.1.0", + "bundled": true + } + } + }, + "mime-db": { + "version": "1.35.0", + "bundled": true + }, + "mime-types": { + "version": "2.1.19", + "bundled": true, + "requires": { + "mime-db": "~1.35.0" + } + }, + "minimatch": { + "version": "3.0.4", + "bundled": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minizlib": { + "version": "1.3.3", + "bundled": true, + "requires": { + "minipass": "^2.9.0" + }, + "dependencies": { + "minipass": { + "version": "2.9.0", + "bundled": true, + "requires": { + "safe-buffer": "^5.1.2", + "yallist": "^3.0.0" + } + } + } + }, + "mississippi": { + "version": "3.0.0", + "bundled": true, + "requires": { + "concat-stream": "^1.5.0", + "duplexify": "^3.4.2", + "end-of-stream": "^1.1.0", + "flush-write-stream": "^1.0.0", + "from2": "^2.1.0", + "parallel-transform": "^1.1.0", + "pump": "^3.0.0", + "pumpify": "^1.3.3", + "stream-each": "^1.1.0", + "through2": "^2.0.0" + } + }, + "mkdirp": { + "version": "0.5.4", + "bundled": true, + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": { + "minimist": { + "version": "1.2.5", + "bundled": true + } + } + }, + "move-concurrently": { + "version": "1.0.1", + "bundled": true, + "requires": { + "aproba": "^1.1.1", + "copy-concurrently": "^1.0.0", + "fs-write-stream-atomic": "^1.0.8", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.3" + }, + "dependencies": { + "aproba": { + "version": "1.2.0", + "bundled": true + } + } + }, + "ms": { + "version": "2.1.1", + "bundled": true + }, + "mute-stream": { + "version": "0.0.7", + "bundled": true + }, + "nice-try": { + "version": "1.0.5", + "bundled": true + }, + "node-fetch-npm": { + "version": "2.0.2", + "bundled": true, + "requires": { + "encoding": "^0.1.11", + "json-parse-better-errors": "^1.0.0", + "safe-buffer": "^5.1.1" + } + }, + "node-gyp": { + "version": "5.1.0", + "bundled": true, + "requires": { + "env-paths": "^2.2.0", + "glob": "^7.1.4", + "graceful-fs": "^4.2.2", + "mkdirp": "^0.5.1", + "nopt": "^4.0.1", + "npmlog": "^4.1.2", + "request": "^2.88.0", + "rimraf": "^2.6.3", + "semver": "^5.7.1", + "tar": "^4.4.12", + "which": "^1.3.1" + } + }, + "nopt": { + "version": "4.0.1", + "bundled": true, + "requires": { + "abbrev": "1", + "osenv": "^0.1.4" + } + }, + "normalize-package-data": { + "version": "2.5.0", + "bundled": true, + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + }, + "dependencies": { + "resolve": { + "version": "1.10.0", + "bundled": true, + "requires": { + "path-parse": "^1.0.6" + } + } + } + }, + "npm-audit-report": { + "version": "1.3.2", + "bundled": true, + "requires": { + "cli-table3": "^0.5.0", + "console-control-strings": "^1.1.0" + } + }, + "npm-bundled": { + "version": "1.1.1", + "bundled": true, + "requires": { + "npm-normalize-package-bin": "^1.0.1" + } + }, + "npm-cache-filename": { + "version": "1.0.2", + "bundled": true + }, + "npm-install-checks": { + "version": "3.0.2", + "bundled": true, + "requires": { + "semver": "^2.3.0 || 3.x || 4 || 5" + } + }, + "npm-lifecycle": { + "version": "3.1.4", + "bundled": true, + "requires": { + "byline": "^5.0.0", + "graceful-fs": "^4.1.15", + "node-gyp": "^5.0.2", + "resolve-from": "^4.0.0", + "slide": "^1.1.6", + "uid-number": "0.0.6", + "umask": "^1.1.0", + "which": "^1.3.1" + } + }, + "npm-logical-tree": { + "version": "1.2.1", + "bundled": true + }, + "npm-normalize-package-bin": { + "version": "1.0.1", + "bundled": true + }, + "npm-package-arg": { + "version": "6.1.1", + "bundled": true, + "requires": { + "hosted-git-info": "^2.7.1", + "osenv": "^0.1.5", + "semver": "^5.6.0", + "validate-npm-package-name": "^3.0.0" + } + }, + "npm-packlist": { + "version": "1.4.8", + "bundled": true, + "requires": { + "ignore-walk": "^3.0.1", + "npm-bundled": "^1.0.1", + "npm-normalize-package-bin": "^1.0.1" + } + }, + "npm-pick-manifest": { + "version": "3.0.2", + "bundled": true, + "requires": { + "figgy-pudding": "^3.5.1", + "npm-package-arg": "^6.0.0", + "semver": "^5.4.1" + } + }, + "npm-profile": { + "version": "4.0.4", + "bundled": true, + "requires": { + "aproba": "^1.1.2 || 2", + "figgy-pudding": "^3.4.1", + "npm-registry-fetch": "^4.0.0" + } + }, + "npm-registry-fetch": { + "version": "4.0.3", + "bundled": true, + "requires": { + "JSONStream": "^1.3.4", + "bluebird": "^3.5.1", + "figgy-pudding": "^3.4.1", + "lru-cache": "^5.1.1", + "make-fetch-happen": "^5.0.0", + "npm-package-arg": "^6.1.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": { + "safe-buffer": { + "version": "5.2.0", + "bundled": true + } + } + }, + "npm-run-path": { + "version": "2.0.2", + "bundled": true, + "requires": { + "path-key": "^2.0.0" + } + }, + "npm-user-validate": { + "version": "1.0.0", + "bundled": true + }, + "npmlog": { + "version": "4.1.2", + "bundled": true, + "requires": { + "are-we-there-yet": "~1.1.2", + "console-control-strings": "~1.1.0", + "gauge": "~2.7.3", + "set-blocking": "~2.0.0" + } + }, + "number-is-nan": { + "version": "1.0.1", + "bundled": true + }, + "oauth-sign": { + "version": "0.9.0", + "bundled": true + }, + "object-assign": { + "version": "4.1.1", + "bundled": true + }, + "object-keys": { + "version": "1.0.12", + "bundled": true + }, + "object.getownpropertydescriptors": { + "version": "2.0.3", + "bundled": true, + "requires": { + "define-properties": "^1.1.2", + "es-abstract": "^1.5.1" + } + }, + "once": { + "version": "1.4.0", + "bundled": true, + "requires": { + "wrappy": "1" + } + }, + "opener": { + "version": "1.5.1", + "bundled": true + }, + "os-homedir": { + "version": "1.0.2", + "bundled": true + }, + "os-locale": { + "version": "3.1.0", + "bundled": true, + "requires": { + "execa": "^1.0.0", + "lcid": "^2.0.0", + "mem": "^4.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "6.0.5", + "bundled": true, + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "execa": { + "version": "1.0.0", + "bundled": true, + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + } + } + } + }, + "os-tmpdir": { + "version": "1.0.2", + "bundled": true + }, + "osenv": { + "version": "0.1.5", + "bundled": true, + "requires": { + "os-homedir": "^1.0.0", + "os-tmpdir": "^1.0.0" + } + }, + "p-defer": { + "version": "1.0.0", + "bundled": true + }, + "p-finally": { + "version": "1.0.0", + "bundled": true + }, + "p-is-promise": { + "version": "2.1.0", + "bundled": true + }, + "p-limit": { + "version": "1.2.0", + "bundled": true, + "requires": { + "p-try": "^1.0.0" + } + }, + "p-locate": { + "version": "2.0.0", + "bundled": true, + "requires": { + "p-limit": "^1.1.0" + } + }, + "p-try": { + "version": "1.0.0", + "bundled": true + }, + "package-json": { + "version": "4.0.1", + "bundled": true, + "requires": { + "got": "^6.7.1", + "registry-auth-token": "^3.0.1", + "registry-url": "^3.0.3", + "semver": "^5.1.0" + } + }, + "pacote": { + "version": "9.5.12", + "bundled": true, + "requires": { + "bluebird": "^3.5.3", + "cacache": "^12.0.2", + "chownr": "^1.1.2", + "figgy-pudding": "^3.5.1", + "get-stream": "^4.1.0", + "glob": "^7.1.3", + "infer-owner": "^1.0.4", + "lru-cache": "^5.1.1", + "make-fetch-happen": "^5.0.0", + "minimatch": "^3.0.4", + "minipass": "^2.3.5", + "mississippi": "^3.0.0", + "mkdirp": "^0.5.1", + "normalize-package-data": "^2.4.0", + "npm-normalize-package-bin": "^1.0.0", + "npm-package-arg": "^6.1.0", + "npm-packlist": "^1.1.12", + "npm-pick-manifest": "^3.0.0", + "npm-registry-fetch": "^4.0.0", + "osenv": "^0.1.5", + "promise-inflight": "^1.0.1", + "promise-retry": "^1.1.1", + "protoduck": "^5.0.1", + "rimraf": "^2.6.2", + "safe-buffer": "^5.1.2", + "semver": "^5.6.0", + "ssri": "^6.0.1", + "tar": "^4.4.10", + "unique-filename": "^1.1.1", + "which": "^1.3.1" + }, + "dependencies": { + "minipass": { + "version": "2.9.0", + "bundled": true, + "requires": { + "safe-buffer": "^5.1.2", + "yallist": "^3.0.0" + } + } + } + }, + "parallel-transform": { + "version": "1.1.0", + "bundled": true, + "requires": { + "cyclist": "~0.2.2", + "inherits": "^2.0.3", + "readable-stream": "^2.1.5" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.6", + "bundled": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "bundled": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "path-exists": { + "version": "3.0.0", + "bundled": true + }, + "path-is-absolute": { + "version": "1.0.1", + "bundled": true + }, + "path-is-inside": { + "version": "1.0.2", + "bundled": true + }, + "path-key": { + "version": "2.0.1", + "bundled": true + }, + "path-parse": { + "version": "1.0.6", + "bundled": true + }, + "performance-now": { + "version": "2.1.0", + "bundled": true + }, + "pify": { + "version": "3.0.0", + "bundled": true + }, + "prepend-http": { + "version": "1.0.4", + "bundled": true + }, + "process-nextick-args": { + "version": "2.0.0", + "bundled": true + }, + "promise-inflight": { + "version": "1.0.1", + "bundled": true + }, + "promise-retry": { + "version": "1.1.1", + "bundled": true, + "requires": { + "err-code": "^1.0.0", + "retry": "^0.10.0" + }, + "dependencies": { + "retry": { + "version": "0.10.1", + "bundled": true + } + } + }, + "promzard": { + "version": "0.3.0", + "bundled": true, + "requires": { + "read": "1" + } + }, + "proto-list": { + "version": "1.2.4", + "bundled": true + }, + "protoduck": { + "version": "5.0.1", + "bundled": true, + "requires": { + "genfun": "^5.0.0" + } + }, + "prr": { + "version": "1.0.1", + "bundled": true + }, + "pseudomap": { + "version": "1.0.2", + "bundled": true + }, + "psl": { + "version": "1.1.29", + "bundled": true + }, + "pump": { + "version": "3.0.0", + "bundled": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "pumpify": { + "version": "1.5.1", + "bundled": true, + "requires": { + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" + }, + "dependencies": { + "pump": { + "version": "2.0.1", + "bundled": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + } + } + }, + "punycode": { + "version": "1.4.1", + "bundled": true + }, + "qrcode-terminal": { + "version": "0.12.0", + "bundled": true + }, + "qs": { + "version": "6.5.2", + "bundled": true + }, + "query-string": { + "version": "6.8.2", + "bundled": true, + "requires": { + "decode-uri-component": "^0.2.0", + "split-on-first": "^1.0.0", + "strict-uri-encode": "^2.0.0" + } + }, + "qw": { + "version": "1.0.1", + "bundled": true + }, + "rc": { + "version": "1.2.8", + "bundled": true, + "requires": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "dependencies": { + "minimist": { + "version": "1.2.5", + "bundled": true + } + } + }, + "read": { + "version": "1.0.7", + "bundled": true, + "requires": { + "mute-stream": "~0.0.4" + } + }, + "read-cmd-shim": { + "version": "1.0.5", + "bundled": true, + "requires": { + "graceful-fs": "^4.1.2" + } + }, + "read-installed": { + "version": "4.0.3", + "bundled": true, + "requires": { + "debuglog": "^1.0.1", + "graceful-fs": "^4.1.2", + "read-package-json": "^2.0.0", + "readdir-scoped-modules": "^1.0.0", + "semver": "2 || 3 || 4 || 5", + "slide": "~1.1.3", + "util-extend": "^1.0.1" + } + }, + "read-package-json": { + "version": "2.1.1", + "bundled": true, + "requires": { + "glob": "^7.1.1", + "graceful-fs": "^4.1.2", + "json-parse-better-errors": "^1.0.1", + "normalize-package-data": "^2.0.0", + "npm-normalize-package-bin": "^1.0.0" + } + }, + "read-package-tree": { + "version": "5.3.1", + "bundled": true, + "requires": { + "read-package-json": "^2.0.0", + "readdir-scoped-modules": "^1.0.0", + "util-promisify": "^2.1.0" + } + }, + "readable-stream": { + "version": "3.6.0", + "bundled": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "readdir-scoped-modules": { + "version": "1.1.0", + "bundled": true, + "requires": { + "debuglog": "^1.0.1", + "dezalgo": "^1.0.0", + "graceful-fs": "^4.1.2", + "once": "^1.3.0" + } + }, + "registry-auth-token": { + "version": "3.4.0", + "bundled": true, + "requires": { + "rc": "^1.1.6", + "safe-buffer": "^5.0.1" + } + }, + "registry-url": { + "version": "3.1.0", + "bundled": true, + "requires": { + "rc": "^1.0.1" + } + }, + "request": { + "version": "2.88.0", + "bundled": true, + "requires": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.0", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.4.3", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + } + }, + "require-directory": { + "version": "2.1.1", + "bundled": true + }, + "require-main-filename": { + "version": "1.0.1", + "bundled": true + }, + "resolve-from": { + "version": "4.0.0", + "bundled": true + }, + "retry": { + "version": "0.12.0", + "bundled": true + }, + "rimraf": { + "version": "2.7.1", + "bundled": true, + "requires": { + "glob": "^7.1.3" + } + }, + "run-queue": { + "version": "1.0.3", + "bundled": true, + "requires": { + "aproba": "^1.1.1" + }, + "dependencies": { + "aproba": { + "version": "1.2.0", + "bundled": true + } + } + }, + "safe-buffer": { + "version": "5.1.2", + "bundled": true + }, + "safer-buffer": { + "version": "2.1.2", + "bundled": true + }, + "semver": { + "version": "5.7.1", + "bundled": true + }, + "semver-diff": { + "version": "2.1.0", + "bundled": true, + "requires": { + "semver": "^5.0.3" + } + }, + "set-blocking": { + "version": "2.0.0", + "bundled": true + }, + "sha": { + "version": "3.0.0", + "bundled": true, + "requires": { + "graceful-fs": "^4.1.2" + } + }, + "shebang-command": { + "version": "1.2.0", + "bundled": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "bundled": true + }, + "signal-exit": { + "version": "3.0.2", + "bundled": true + }, + "slide": { + "version": "1.1.6", + "bundled": true + }, + "smart-buffer": { + "version": "4.1.0", + "bundled": true + }, + "socks": { + "version": "2.3.3", + "bundled": true, + "requires": { + "ip": "1.1.5", + "smart-buffer": "^4.1.0" + } + }, + "socks-proxy-agent": { + "version": "4.0.2", + "bundled": true, + "requires": { + "agent-base": "~4.2.1", + "socks": "~2.3.2" + }, + "dependencies": { + "agent-base": { + "version": "4.2.1", + "bundled": true, + "requires": { + "es6-promisify": "^5.0.0" + } + } + } + }, + "sorted-object": { + "version": "2.0.1", + "bundled": true + }, + "sorted-union-stream": { + "version": "2.1.3", + "bundled": true, + "requires": { + "from2": "^1.3.0", + "stream-iterate": "^1.1.0" + }, + "dependencies": { + "from2": { + "version": "1.3.0", + "bundled": true, + "requires": { + "inherits": "~2.0.1", + "readable-stream": "~1.1.10" + } + }, + "isarray": { + "version": "0.0.1", + "bundled": true + }, + "readable-stream": { + "version": "1.1.14", + "bundled": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "string_decoder": { + "version": "0.10.31", + "bundled": true + } + } + }, + "spdx-correct": { + "version": "3.0.0", + "bundled": true, + "requires": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-exceptions": { + "version": "2.1.0", + "bundled": true + }, + "spdx-expression-parse": { + "version": "3.0.0", + "bundled": true, + "requires": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-license-ids": { + "version": "3.0.3", + "bundled": true + }, + "split-on-first": { + "version": "1.1.0", + "bundled": true + }, + "sshpk": { + "version": "1.14.2", + "bundled": true, + "requires": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + } + }, + "ssri": { + "version": "6.0.1", + "bundled": true, + "requires": { + "figgy-pudding": "^3.5.1" + } + }, + "stream-each": { + "version": "1.2.2", + "bundled": true, + "requires": { + "end-of-stream": "^1.1.0", + "stream-shift": "^1.0.0" + } + }, + "stream-iterate": { + "version": "1.2.0", + "bundled": true, + "requires": { + "readable-stream": "^2.1.5", + "stream-shift": "^1.0.0" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.6", + "bundled": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "bundled": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "stream-shift": { + "version": "1.0.0", + "bundled": true + }, + "strict-uri-encode": { + "version": "2.0.0", + "bundled": true + }, + "string-width": { + "version": "2.1.1", + "bundled": true, + "requires": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "3.0.0", + "bundled": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "bundled": true + }, + "strip-ansi": { + "version": "4.0.0", + "bundled": true, + "requires": { + "ansi-regex": "^3.0.0" + } + } + } + }, + "string_decoder": { + "version": "1.3.0", + "bundled": true, + "requires": { + "safe-buffer": "~5.2.0" + }, + "dependencies": { + "safe-buffer": { + "version": "5.2.0", + "bundled": true + } + } + }, + "stringify-package": { + "version": "1.0.1", + "bundled": true + }, + "strip-ansi": { + "version": "3.0.1", + "bundled": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "strip-eof": { + "version": "1.0.0", + "bundled": true + }, + "strip-json-comments": { + "version": "2.0.1", + "bundled": true + }, + "supports-color": { + "version": "5.4.0", + "bundled": true, + "requires": { + "has-flag": "^3.0.0" + } + }, + "tar": { + "version": "4.4.13", + "bundled": true, + "requires": { + "chownr": "^1.1.1", + "fs-minipass": "^1.2.5", + "minipass": "^2.8.6", + "minizlib": "^1.2.1", + "mkdirp": "^0.5.0", + "safe-buffer": "^5.1.2", + "yallist": "^3.0.3" + }, + "dependencies": { + "minipass": { + "version": "2.9.0", + "bundled": true, + "requires": { + "safe-buffer": "^5.1.2", + "yallist": "^3.0.0" + } + } + } + }, + "term-size": { + "version": "1.2.0", + "bundled": true, + "requires": { + "execa": "^0.7.0" + } + }, + "text-table": { + "version": "0.2.0", + "bundled": true + }, + "through": { + "version": "2.3.8", + "bundled": true + }, + "through2": { + "version": "2.0.3", + "bundled": true, + "requires": { + "readable-stream": "^2.1.5", + "xtend": "~4.0.1" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.6", + "bundled": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "bundled": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "timed-out": { + "version": "4.0.1", + "bundled": true + }, + "tiny-relative-date": { + "version": "1.3.0", + "bundled": true + }, + "tough-cookie": { + "version": "2.4.3", + "bundled": true, + "requires": { + "psl": "^1.1.24", + "punycode": "^1.4.1" + } + }, + "tunnel-agent": { + "version": "0.6.0", + "bundled": true, + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "tweetnacl": { + "version": "0.14.5", + "bundled": true, + "optional": true + }, + "typedarray": { + "version": "0.0.6", + "bundled": true + }, + "uid-number": { + "version": "0.0.6", + "bundled": true + }, + "umask": { + "version": "1.1.0", + "bundled": true + }, + "unique-filename": { + "version": "1.1.1", + "bundled": true, + "requires": { + "unique-slug": "^2.0.0" + } + }, + "unique-slug": { + "version": "2.0.0", + "bundled": true, + "requires": { + "imurmurhash": "^0.1.4" + } + }, + "unique-string": { + "version": "1.0.0", + "bundled": true, + "requires": { + "crypto-random-string": "^1.0.0" + } + }, + "unpipe": { + "version": "1.0.0", + "bundled": true + }, + "unzip-response": { + "version": "2.0.1", + "bundled": true + }, + "update-notifier": { + "version": "2.5.0", + "bundled": true, + "requires": { + "boxen": "^1.2.1", + "chalk": "^2.0.1", + "configstore": "^3.0.0", + "import-lazy": "^2.1.0", + "is-ci": "^1.0.10", + "is-installed-globally": "^0.1.0", + "is-npm": "^1.0.0", + "latest-version": "^3.0.0", + "semver-diff": "^2.0.0", + "xdg-basedir": "^3.0.0" + } + }, + "url-parse-lax": { + "version": "1.0.0", + "bundled": true, + "requires": { + "prepend-http": "^1.0.1" + } + }, + "util-deprecate": { + "version": "1.0.2", + "bundled": true + }, + "util-extend": { + "version": "1.0.3", + "bundled": true + }, + "util-promisify": { + "version": "2.1.0", + "bundled": true, + "requires": { + "object.getownpropertydescriptors": "^2.0.3" + } + }, + "uuid": { + "version": "3.3.3", + "bundled": true + }, + "validate-npm-package-license": { + "version": "3.0.4", + "bundled": true, + "requires": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "validate-npm-package-name": { + "version": "3.0.0", + "bundled": true, + "requires": { + "builtins": "^1.0.3" + } + }, + "verror": { + "version": "1.10.0", + "bundled": true, + "requires": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "wcwidth": { + "version": "1.0.1", + "bundled": true, + "requires": { + "defaults": "^1.0.3" + } + }, + "which": { + "version": "1.3.1", + "bundled": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "which-module": { + "version": "2.0.0", + "bundled": true + }, + "wide-align": { + "version": "1.1.2", + "bundled": true, + "requires": { + "string-width": "^1.0.2" + }, + "dependencies": { + "string-width": { + "version": "1.0.2", + "bundled": true, + "requires": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + } + } + } + }, + "widest-line": { + "version": "2.0.1", + "bundled": true, + "requires": { + "string-width": "^2.1.1" + } + }, + "worker-farm": { + "version": "1.7.0", + "bundled": true, + "requires": { + "errno": "~0.1.7" + } + }, + "wrap-ansi": { + "version": "2.1.0", + "bundled": true, + "requires": { + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1" + }, + "dependencies": { + "string-width": { + "version": "1.0.2", + "bundled": true, + "requires": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + } + } + } + }, + "wrappy": { + "version": "1.0.2", + "bundled": true + }, + "write-file-atomic": { + "version": "2.4.3", + "bundled": true, + "requires": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" + } + }, + "xdg-basedir": { + "version": "3.0.0", + "bundled": true + }, + "xtend": { + "version": "4.0.1", + "bundled": true + }, + "y18n": { + "version": "4.0.0", + "bundled": true + }, + "yallist": { + "version": "3.0.3", + "bundled": true + }, + "yargs": { + "version": "11.1.1", + "bundled": true, + "requires": { + "cliui": "^4.0.0", + "decamelize": "^1.1.1", + "find-up": "^2.1.0", + "get-caller-file": "^1.0.1", + "os-locale": "^3.1.0", + "require-directory": "^2.1.1", + "require-main-filename": "^1.0.1", + "set-blocking": "^2.0.0", + "string-width": "^2.0.0", + "which-module": "^2.0.0", + "y18n": "^3.2.1", + "yargs-parser": "^9.0.2" + }, + "dependencies": { + "y18n": { + "version": "3.2.1", + "bundled": true + } + } + }, + "yargs-parser": { + "version": "9.0.2", + "bundled": true, + "requires": { + "camelcase": "^4.1.0" + } + } + } + }, "npm-run-path": { "version": "2.0.2", "resolved": "https://pagerduty.jfrog.io/pagerduty/api/npm/npm/npm-run-path/-/npm-run-path-2.0.2.tgz", @@ -5884,6 +9005,11 @@ "resolved": "https://pagerduty.jfrog.io/pagerduty/api/npm/npm/type-fest/-/type-fest-0.8.1.tgz", "integrity": "sha1-CeJJ696FHTseSNJ8EFREZn8XuD0=" }, + "typecast": { + "version": "0.0.1", + "resolved": "https://pagerduty.jfrog.io/pagerduty/api/npm/npm/typecast/-/typecast-0.0.1.tgz", + "integrity": "sha1-//t13La98d744pO2tuiT1sHtGd4=" + }, "typedarray": { "version": "0.0.6", "resolved": "https://pagerduty.jfrog.io/pagerduty/api/npm/npm/typedarray/-/typedarray-0.0.6.tgz", @@ -6102,6 +9228,16 @@ "homedir-polyfill": "^1.0.1" } }, + "validate": { + "version": "5.1.0", + "resolved": "https://pagerduty.jfrog.io/pagerduty/api/npm/npm/validate/-/validate-5.1.0.tgz", + "integrity": "sha1-EtaF40YGdkbLpJGyeZStmLYxn84=", + "requires": { + "component-type": "1.2.1", + "eivindfjeldstad-dot": "0.0.1", + "typecast": "0.0.1" + } + }, "validate-npm-package-license": { "version": "3.0.4", "resolved": "https://pagerduty.jfrog.io/pagerduty/api/npm/npm/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", diff --git a/package.json b/package.json index 601aa6a..b9ae8d0 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", - "dev": "CONFIG_PATH=./config.dev.yml nodemon --exec babel-node src/index.js | pino-pretty", + "dev": "CONFIG_PATH=./config.dev.yml nodemon -e js,yml --exec babel-node src/index.js | pino-pretty", "build": "babel src --out-dir dist/", "start": "node dist/index.js", "lint": "eslint ./src/**/*.js" @@ -18,11 +18,14 @@ "eslint": "6.8.0", "eslint-config-airbnb": "18.1.0", "eslint-plugin-import": "2.20.1", + "i": "0.3.6", "lodash.at": "4.6.0", "nodemon": "2.0.2", + "npm": "6.14.4", "onvif": "0.6.2", "pino": "5.17.0", "pino-pretty": "3.6.1", + "validate": "5.1.0", "yaml": "1.8.3" }, "devDependencies": { diff --git a/src/Config.js b/src/Config.js index 5b54265..34a126c 100644 --- a/src/Config.js +++ b/src/Config.js @@ -1,10 +1,12 @@ import at from 'lodash.at'; import path from 'path'; -import fs from 'fs'; +import fs, { exists } from 'fs'; import yaml from 'yaml'; import process from 'process'; +import validator from './ConfigValidator'; import logger, { setLoggingLevel } from './Logger'; +const DEFAULT_CONFIG_PATH = path.resolve(__dirname, '../default-config.yml'); const CONFIG_PATH = process.env.CONFIG_PATH || '/config/config.yml'; class Config { @@ -24,21 +26,55 @@ class Config { return Config.instance; } - _loadConfig = () => { - logger.info('Loading configuration.', { configPath: CONFIG_PATH }); + _loadDefaultConfig = () => { + const defaultConfigFileRef = fs.readFileSync(DEFAULT_CONFIG_PATH, 'utf8'); + return yaml.parse(defaultConfigFileRef); + }; - const defaultConfigPath = path.resolve(__dirname, '../default-config.yml'); - const defaultConfigFileRef = fs.readFileSync(defaultConfigPath, 'utf8'); + _loadUserConfig = () => { + logger.info('Loading configuration.', { configPath: CONFIG_PATH }); const configFileRef = fs.readFileSync(CONFIG_PATH, 'utf8'); - const parsedDefaultConfig = yaml.parse(defaultConfigFileRef); - const parsedConfig = yaml.parse(configFileRef); + let parsedConfig = {}; - return { - ...parsedDefaultConfig, - ...parsedConfig + try { + parsedConfig = yaml.parse(configFileRef); + } catch(e) { + logger.error('Invalid YAML found in configuration', { source: e.source }); + logger.error(e); + logger.error(); + process.exit(1); + } + + return parsedConfig; + }; + + _validate = (config) => { + logger.info('Validating configuration file.'); + const validationErrors = validator.validate(config); + + if (validationErrors.length > 0) { + logger.error('Config validation failed...'); + validationErrors.forEach(({ path, message }) => { + logger.error(message, { path }); + }); + process.exit(1); + } + }; + + _loadConfig = () => { + const defaultConfig = this._loadDefaultConfig(); + const userConfig = this._loadUserConfig(); + + const mergedConfig = { + ...defaultConfig, + ...userConfig }; + + this._validate(mergedConfig); + + return mergedConfig; }; get = path => at(this._config, path)[0]; diff --git a/src/ConfigValidator.js b/src/ConfigValidator.js new file mode 100644 index 0000000..7e6d7c7 --- /dev/null +++ b/src/ConfigValidator.js @@ -0,0 +1,88 @@ +import Schema from 'validate'; +import pino from 'pino'; + +const pinoLogLevels = Object.keys(pino.levels.values); + +console.log(pino.levels); + +/* +log: debug +api: + templates: + - subtopic: shinobi + retain: false + template: >- + { + "plug": "${onvifDeviceId}", + "reason": "${eventType}", + "name": "${onvifDeviceId}" + } +mqtt: + host: localhost + port: 1883 +onvif: + - name: doorbell + hostname: localhost + port: 80 + username: admin + password: SHAGCB +*/ + +const configSchema = new Schema({ + log: { + type: String, + use: { + mustMatchLogLevels: val => pinoLogLevels.includes(val), + }, + }, + api: { + templates: [{ + subtopic: { + required: true, + }, + retain: { + type: Boolean + }, + template: { + type: String, + } + }] + }, + mqtt: { + required: true, + host: { + required: true, + }, + }, + onvif: { + type: Array, + required: true, + each: { + name: { + required: true, + }, + hostname: { + required: true, + }, + port: { + required: true, + }, + username: String, + password: String, + } + } +}); + +configSchema.message({ + mustMatchLogLevels: path => `${path} must be one of [${pinoLogLevels.join(',')}]` +}); + +class Validator { + validate = (config) => { + return configSchema.validate( + config + ); + }; +} + +export default new Validator(); \ No newline at end of file diff --git a/src/Manager.js b/src/Manager.js index e3db453..4ace490 100644 --- a/src/Manager.js +++ b/src/Manager.js @@ -40,14 +40,23 @@ export default class Manager { publishTemplates = (onvifDeviceId, eventType, eventState) => { const templates = config.get('api.templates'); + if (!templates) { + return; + } + templates.forEach(({ subtopic, template, retain }) => { - this.publisher.publish(onvifDeviceId, subtopic, interpolateTemplateValues(template, { + const interpolationValues = { onvifDeviceId, eventType, eventState - }), retain); + }; + + const interpolatedSubtopic = interpolateTemplateValues(subtopic, interpolationValues); + const interpolatedTemplate = interpolateTemplateValues(template, interpolationValues); + + this.publisher.publish(onvifDeviceId, interpolatedSubtopic, interpolatedTemplate, retain); }); };