From 9d53ffa8415abf2d1804fbc6c8fdf2a22ffb7f0d Mon Sep 17 00:00:00 2001 From: Oskar Hane Date: Fri, 8 Jun 2018 13:55:05 +0200 Subject: [PATCH 01/40] =?UTF-8?q?It=E2=80=99s=20rendering=20the=20main=20v?= =?UTF-8?q?iew?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Problems with this.base --- .babelrc | 11 +- LICENSES.txt | 6 +- NOTICE.txt | 34 ++--- package.json | 17 +-- .../components/DesktopIntegration/index.jsx | 2 +- src/browser/components/Directives.jsx | 6 +- src/browser/components/Display.jsx | 2 +- .../components/FileImporter/FileDrop.jsx | 2 +- .../FileImporter/dndGlobalContext.js | 2 +- src/browser/components/Form.jsx | 3 +- src/browser/components/Render/index.jsx | 2 +- .../components/TabNavigation/Navigation.jsx | 5 +- .../components/buttons/ConfirmationButton.jsx | 2 +- src/browser/components/buttons/index.jsx | 2 +- src/browser/components/icons/Icons.jsx | 4 +- src/browser/index.jsx | 50 +++---- src/browser/init.js | 6 +- src/browser/modules/App/App.jsx | 9 +- src/browser/modules/ClickToCode/index.jsx | 3 +- src/browser/modules/ClickToCode/index.test.js | 2 +- .../ConnectionsDropdown.jsx | 4 +- .../D3Visualization/components/Explorer.jsx | 2 +- .../D3Visualization/components/Graph.jsx | 2 +- .../components/GrassEditor.jsx | 4 +- .../D3Visualization/components/Inspector.jsx | 2 +- .../D3Visualization/components/Legend.jsx | 2 +- .../components/RowExpandToggle.jsx | 2 +- .../modules/DatabaseInfo/DatabaseInfo.jsx | 6 +- .../DatabaseInfo/DatabaseKernelInfo.jsx | 6 +- .../modules/DatabaseInfo/MetaItems.jsx | 2 +- .../modules/DatabaseInfo/UserDetails.jsx | 6 +- src/browser/modules/DatabaseInfo/styled.jsx | 2 +- src/browser/modules/Editor/Codemirror.jsx | 2 +- src/browser/modules/Editor/Editor.jsx | 6 +- src/browser/modules/Guides/Carousel.jsx | 2 +- src/browser/modules/Guides/Guides.jsx | 3 +- src/browser/modules/Guides/Slide.jsx | 2 +- src/browser/modules/Intercom/index.jsx | 4 +- src/browser/modules/Main/Main.jsx | 2 +- .../modules/Main/SyncConsentBanner.jsx | 4 +- .../modules/Main/SyncReminderBanner.jsx | 4 +- src/browser/modules/Sidebar/About.jsx | 4 +- src/browser/modules/Sidebar/DocumentItems.jsx | 10 +- src/browser/modules/Sidebar/Documents.jsx | 4 +- src/browser/modules/Sidebar/Favorite.jsx | 6 +- src/browser/modules/Sidebar/Favorites.jsx | 6 +- src/browser/modules/Sidebar/FileDrop.jsx | 4 +- src/browser/modules/Sidebar/Folder.jsx | 2 +- src/browser/modules/Sidebar/Settings.jsx | 4 +- src/browser/modules/Sidebar/Sidebar.jsx | 4 +- src/browser/modules/Sidebar/Sidebar.test.jsx | 2 +- src/browser/modules/Sidebar/styled.jsx | 2 +- .../Stream/Auth/ChangePasswordForm.jsx | 2 +- .../Stream/Auth/ChangePasswordFrame.jsx | 2 +- .../modules/Stream/Auth/ConnectForm.jsx | 2 +- .../modules/Stream/Auth/ConnectedView.jsx | 2 +- .../modules/Stream/Auth/ConnectionForm.jsx | 6 +- .../modules/Stream/Auth/ConnectionFrame.jsx | 2 +- .../modules/Stream/Auth/ServerStatusFrame.jsx | 4 +- .../modules/Stream/Auth/ServerSwitchFrame.jsx | 2 +- .../modules/Stream/CypherFrame/AsciiView.jsx | 2 +- .../modules/Stream/CypherFrame/CodeView.jsx | 2 +- .../modules/Stream/CypherFrame/ErrorsView.jsx | 4 +- .../modules/Stream/CypherFrame/PlanView.jsx | 2 +- .../modules/Stream/CypherFrame/TableView.jsx | 2 +- .../Stream/CypherFrame/VisualizationView.jsx | 6 +- .../Stream/CypherFrame/WarningsView.jsx | 2 +- .../modules/Stream/CypherFrame/index.jsx | 4 +- .../modules/Stream/CypherFrame/index.test.js | 4 +- .../Stream/Errors/IESecurityErrors.jsx | 1 + src/browser/modules/Stream/Frame.jsx | 2 +- src/browser/modules/Stream/FrameSidebar.jsx | 2 +- src/browser/modules/Stream/FrameTemplate.jsx | 2 +- src/browser/modules/Stream/FrameTitlebar.jsx | 6 +- src/browser/modules/Stream/HistoryFrame.jsx | 2 +- src/browser/modules/Stream/InfoView.jsx | 2 +- src/browser/modules/Stream/PlayFrame.jsx | 4 +- .../modules/Stream/Queries/QueriesFrame.jsx | 6 +- src/browser/modules/Stream/SchemaFrame.jsx | 4 +- src/browser/modules/Stream/Stream.jsx | 6 +- src/browser/modules/Stream/StyleFrame.jsx | 2 +- .../modules/Stream/SysInfoFrame/index.jsx | 6 +- .../Stream/errorMessageFormater.test.js | 2 +- src/browser/modules/Sync/BrowserSync.jsx | 4 +- src/browser/modules/Sync/BrowserSyncInit.jsx | 4 +- src/browser/modules/Sync/styled.jsx | 2 +- src/browser/modules/User/UserAdd.jsx | 6 +- src/browser/modules/User/UserInfo.jsx | 6 +- src/browser/modules/User/UserInformation.jsx | 4 +- src/browser/modules/User/UserList.jsx | 4 +- src/browser/modules/UserInteraction/index.jsx | 7 +- webpack.config.js | 19 +-- yarn.lock | 127 +++++------------- 93 files changed, 240 insertions(+), 327 deletions(-) diff --git a/.babelrc b/.babelrc index 05faf33e478..e68d2fea113 100644 --- a/.babelrc +++ b/.babelrc @@ -1,12 +1,3 @@ { - "presets": ["es2015", "stage-2", "react"], - "plugins": [ - "preact-require", - [ - "transform-react-jsx", - { - "pragma": "h" - } - ] - ] + "presets": ["es2015", "stage-2", "react"] } diff --git a/LICENSES.txt b/LICENSES.txt index 141a6b4e81d..78ffc696991 100644 --- a/LICENSES.txt +++ b/LICENSES.txt @@ -3116,7 +3116,7 @@ OTHER DEALINGS IN THE SOFTWARE. ----- -The following software may be included in this product: preact. A copy of the source code may be downloaded from https://github.com/developit/preact.git. This software contains the following license and notice below: +The following software may be included in this product: react. A copy of the source code may be downloaded from https://github.com/developit/react.git. This software contains the following license and notice below: The MIT License (MIT) @@ -3142,7 +3142,7 @@ SOFTWARE. ----- -The following software may be included in this product: preact-compat, preact-redux. A copy of the source code may be downloaded from https://github.com/developit/preact-compat.git (preact-compat), git+https://github.com/developit/preact-redux.git (preact-redux). This software contains the following license and notice below: +The following software may be included in this product: react-compat, react-redux. A copy of the source code may be downloaded from https://github.com/developit/react-compat.git (react-compat), git+https://github.com/developit/react-redux.git (react-redux). This software contains the following license and notice below: The MIT License (MIT) @@ -3168,7 +3168,7 @@ SOFTWARE. ----- -The following software may be included in this product: preact-render-to-string. A copy of the source code may be downloaded from https://github.com/developit/preact-render-to-string.git. This software contains the following license and notice below: +The following software may be included in this product: react-render-to-string. A copy of the source code may be downloaded from https://github.com/developit/react-render-to-string.git. This software contains the following license and notice below: The MIT License (MIT) diff --git a/NOTICE.txt b/NOTICE.txt index 6031bff7bb3..27b085d8bf9 100644 --- a/NOTICE.txt +++ b/NOTICE.txt @@ -408,29 +408,29 @@ Third-party licenses │ ├─ URL: https://github.com/TrySound/postcss-value-parser.git │ ├─ VendorName: Bogdan Chadkin │ └─ VendorUrl: https://github.com/TrySound/postcss-value-parser - ├─ preact-compat@3.18.0 - │ ├─ URL: https://github.com/developit/preact-compat.git + ├─ react-compat@3.18.0 + │ ├─ URL: https://github.com/developit/react-compat.git │ ├─ VendorName: Jason Miller - │ └─ VendorUrl: https://github.com/developit/preact-compat - ├─ preact-redux@2.0.3 - │ ├─ URL: git+https://github.com/developit/preact-redux.git + │ └─ VendorUrl: https://github.com/developit/react-compat + ├─ react-redux@2.0.3 + │ ├─ URL: git+https://github.com/developit/react-redux.git │ ├─ VendorName: Jason Miller - │ └─ VendorUrl: https://github.com/developit/preact-redux - ├─ preact-render-to-string@3.7.0 - │ ├─ URL: https://github.com/developit/preact-render-to-string.git + │ └─ VendorUrl: https://github.com/developit/react-redux + ├─ react-render-to-string@3.7.0 + │ ├─ URL: https://github.com/developit/react-render-to-string.git │ ├─ VendorName: Jason Miller - │ └─ VendorUrl: https://github.com/developit/preact-render-to-string - ├─ preact-suber@1.0.3 - │ ├─ URL: https://github.com/oskarhane/react-suber.git#preact + │ └─ VendorUrl: https://github.com/developit/react-render-to-string + ├─ react-suber@1.0.3 + │ ├─ URL: https://github.com/oskarhane/react-suber.git#react │ ├─ VendorName: Oskar Hane │ └─ VendorUrl: http://oskarhane.com/ - ├─ preact-transition-group@1.1.1 - │ ├─ URL: https://github.com/developit/preact-transition-group.git - │ └─ VendorUrl: http://github.com/developit/preact-transition-group - ├─ preact@8.2.7 - │ ├─ URL: https://github.com/developit/preact.git + ├─ react-transition-group@1.1.1 + │ ├─ URL: https://github.com/developit/react-transition-group.git + │ └─ VendorUrl: http://github.com/developit/react-transition-group + ├─ react@8.2.7 + │ ├─ URL: https://github.com/developit/react.git │ ├─ VendorName: Jason Miller - │ └─ VendorUrl: https://github.com/developit/preact + │ └─ VendorUrl: https://github.com/developit/react ├─ pretty-format@3.8.0 │ ├─ URL: https://github.com/thejameskyle/pretty-format.git │ ├─ VendorName: James Kyle diff --git a/package.json b/package.json index f943915cf2f..f93b5a77dae 100644 --- a/package.json +++ b/package.json @@ -50,11 +50,6 @@ "\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga|html)$": "/__mocks__/fileMock.js", "\\.(css|less)$": "/__mocks__/styleMock.js", "^neo4j-driver-alias$": "neo4j-driver", - "^react-dom/server$": "preact-render-to-string", - "^react-addons-test-utils$": "preact-test-utils", - "^react-addons-transition-group$": "preact-transition-group", - "^react$": "preact-compat-enzyme", - "^react-dom$": "preact-compat-enzyme", "^browser-styles(.*)$": "/src/browser/styles$1", "^browser-components(.*)$": "/src/browser/components$1", "worker-loader": "/__mocks__/workerLoaderMock.js" @@ -71,7 +66,6 @@ "babel-jest": "^21.0.0", "babel-loader": "^7.1.2", "babel-plugin-module-resolver": "^2.4.0", - "babel-plugin-preact-require": "^1.0.0", "babel-plugin-styled-components": "^1.2.0", "babel-plugin-transform-react-jsx": "^6.23.0", "babel-polyfill": "^6.26.0", @@ -109,9 +103,6 @@ "postcss": "^6.0.11", "postcss-cssnext": "^3.0.2", "postcss-loader": "^2.0.5", - "preact-compat-enzyme": "^0.2.5", - "preact-render-to-string": "^3.6.3", - "preact-test-utils": "^0.1.3", "precss": "^2.0.0", "prettier-eslint": "^7.1.0", "prettier-eslint-cli": "^4.3.0", @@ -143,15 +134,15 @@ "lodash.debounce": "^4.0.8", "neo4j-driver": "^1.6.1", "node-noop": "^1.0.0", - "preact": "^8.2.5", - "preact-compat": "^3.17.0", - "preact-redux": "^2.0.2", - "preact-suber": "^1.0.3", + "react": "^16.4.0", "react-addons-pure-render-mixin": "^15.0.2", "react-dnd": "^2.5.1", "react-dnd-html5-backend": "^2.5.1", + "react-dom": "^16.4.0", "react-dropzone": "^4.1.2", "react-icons": "^2.2.1", + "react-redux": "^5.0.7", + "react-suber": "1.0.4", "react-timeago": "^3.4.3", "redux": "^3.7.2", "redux-observable": "^0.16.0", diff --git a/src/browser/components/DesktopIntegration/index.jsx b/src/browser/components/DesktopIntegration/index.jsx index 9b91ce0566b..bb057f8e6c3 100644 --- a/src/browser/components/DesktopIntegration/index.jsx +++ b/src/browser/components/DesktopIntegration/index.jsx @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -import { Component } from 'preact' +import React, { Component } from 'react' import { getActiveGraph, getCredentials, eventToHandler } from './helpers' export default class DesktopIntegration extends Component { diff --git a/src/browser/components/Directives.jsx b/src/browser/components/Directives.jsx index bcb7e1a9a44..4e98d385bcc 100644 --- a/src/browser/components/Directives.jsx +++ b/src/browser/components/Directives.jsx @@ -17,9 +17,9 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - -import { connect } from 'preact-redux' -import { withBus } from 'preact-suber' +import React from 'react' +import { connect } from 'react-redux' +import { withBus } from 'react-suber' import { executeCommand } from 'shared/modules/commands/commandsDuck' import * as editor from 'shared/modules/editor/editorDuck' import { addClass, prependIcon } from 'shared/services/dom-helpers' diff --git a/src/browser/components/Display.jsx b/src/browser/components/Display.jsx index db7ac47984d..a52dd70f7d9 100644 --- a/src/browser/components/Display.jsx +++ b/src/browser/components/Display.jsx @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -import { Component } from 'preact' +import React, { Component } from 'react' import { shallowEquals } from 'services/utils' export default class Display extends Component { diff --git a/src/browser/components/FileImporter/FileDrop.jsx b/src/browser/components/FileImporter/FileDrop.jsx index c795872c1da..2a1ef0603a3 100644 --- a/src/browser/components/FileImporter/FileDrop.jsx +++ b/src/browser/components/FileImporter/FileDrop.jsx @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -import { Component } from 'preact' +import React, { Component } from 'react' import { NativeTypes } from 'react-dnd-html5-backend' import { DropTarget } from 'react-dnd' import { wrapWithDndContext } from './dndGlobalContext' diff --git a/src/browser/components/FileImporter/dndGlobalContext.js b/src/browser/components/FileImporter/dndGlobalContext.js index adb291c270e..792f4c413ac 100644 --- a/src/browser/components/FileImporter/dndGlobalContext.js +++ b/src/browser/components/FileImporter/dndGlobalContext.js @@ -20,7 +20,7 @@ import { DragDropManager } from 'dnd-core' import HTML5Backend from 'react-dnd-html5-backend' -import { Component } from 'preact' +import React, { Component } from 'react' let defaultManager diff --git a/src/browser/components/Form.jsx b/src/browser/components/Form.jsx index 63142503673..a52e8307b7a 100644 --- a/src/browser/components/Form.jsx +++ b/src/browser/components/Form.jsx @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -import { Component } from 'preact' +import React, { Component } from 'react' import styled from 'styled-components' const StyledSettingTextInput = styled.input` @@ -56,6 +56,7 @@ export const CheckboxSelector = props => { } export class RadioSelector extends Component { + state = {} constructor (props) { super(props) this.state.selectedValue = this.props.selectedValue || null diff --git a/src/browser/components/Render/index.jsx b/src/browser/components/Render/index.jsx index 77472ea5ea4..f6c9df66e06 100644 --- a/src/browser/components/Render/index.jsx +++ b/src/browser/components/Render/index.jsx @@ -19,6 +19,6 @@ */ const Render = ({ if: cond, children }) => { - return cond ? children[0] : null + return cond ? children : null } export default Render diff --git a/src/browser/components/TabNavigation/Navigation.jsx b/src/browser/components/TabNavigation/Navigation.jsx index 2780aced8dc..5578cd50bff 100644 --- a/src/browser/components/TabNavigation/Navigation.jsx +++ b/src/browser/components/TabNavigation/Navigation.jsx @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -import { Component } from 'preact' +import React, { Component } from 'react' import { StyledNavigationButton, NavigationButtonContainer @@ -37,9 +37,12 @@ const Open = 'OPEN' const Opening = 'OPENING' class Navigation extends Component { + state = {} constructor (props) { super(props) this._onTransitionEnd = this.onTransitionEnd.bind(this) + } + componentDidMount () { this.setState({ transitionState: Closed }) diff --git a/src/browser/components/buttons/ConfirmationButton.jsx b/src/browser/components/buttons/ConfirmationButton.jsx index 2ad52255e71..6313f05d8c7 100644 --- a/src/browser/components/buttons/ConfirmationButton.jsx +++ b/src/browser/components/buttons/ConfirmationButton.jsx @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -import { Component } from 'preact' +import React, { Component } from 'react' import styled from 'styled-components' import { MinusIcon, diff --git a/src/browser/components/buttons/index.jsx b/src/browser/components/buttons/index.jsx index bc24d1df181..985618ad824 100644 --- a/src/browser/components/buttons/index.jsx +++ b/src/browser/components/buttons/index.jsx @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -import { Component } from 'preact' +import React, { Component } from 'react' import styled from 'styled-components' import { dim } from 'browser-styles/constants' diff --git a/src/browser/components/icons/Icons.jsx b/src/browser/components/icons/Icons.jsx index 54fd0847905..36d71fdeb0e 100644 --- a/src/browser/components/icons/Icons.jsx +++ b/src/browser/components/icons/Icons.jsx @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -import { Component } from 'preact' +import React, { Component } from 'react' import styled from 'styled-components' import styles from './style.css' @@ -51,7 +51,7 @@ class IconContainer extends Component { ? this.props.className : state + ' ' + this.props.className const regulateSizeStyle = regulateSize - ? { 'font-size': regulateSize + 'em' } + ? { fontSize: regulateSize + 'em' } : null const icon = ( . */ -import './init.js' +import React from 'react' +import ReactDOM from 'react-dom' import { createEpicMiddleware } from 'redux-observable' -import { render } from 'preact' import { createStore, combineReducers, applyMiddleware, compose } from 'redux' -import { Provider } from 'preact-redux' +import { Provider } from 'react-redux' import { createBus, createReduxMiddleware as createSuberReduxMiddleware } from 'suber' -import { BusProvider } from 'preact-suber' - +import { BusProvider } from 'react-suber' +import './init.js' +import App, { App as Capp } from './modules/App/App' import reducers from 'shared/rootReducer' import epics from 'shared/rootEpic' @@ -83,28 +84,17 @@ const env = window && window.neo4jDesktopApi ? DESKTOP : WEB // Signal app upstart (for epics) store.dispatch({ type: APP_START, url: window.location.href, env }) -const mountElement = document.getElementById('mount') -let elem -const renderApp = () => { - const App = require('./modules/App/App').default - elem = render( - - - - - , - mountElement, - elem - ) -} -renderApp() - -if (process.env.NODE_ENV !== 'production') { - if (module.hot) { - module.hot.accept('./modules/App/App', renderApp) - } -} +console.log('App: ', App) +console.log('Capp: ', Capp) +ReactDOM.render( + + + + + , + document.getElementById('mount') +) diff --git a/src/browser/init.js b/src/browser/init.js index 2521c50774a..e104d2eaee5 100644 --- a/src/browser/init.js +++ b/src/browser/init.js @@ -28,6 +28,6 @@ import './styles/font-awesome.min.css' import './styles/inconsolata.css' import './styles/open-sans.css' -if (process.env.NODE_ENV !== 'production') { - require('preact/devtools') -} +// if (process.env.NODE_ENV !== 'production') { +// require('react/devtools') +// } diff --git a/src/browser/modules/App/App.jsx b/src/browser/modules/App/App.jsx index 2047ddffdcd..079bb4221a3 100644 --- a/src/browser/modules/App/App.jsx +++ b/src/browser/modules/App/App.jsx @@ -17,10 +17,9 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - -import { Component } from 'preact' -import { connect } from 'preact-redux' -import { withBus } from 'preact-suber' +import React, { Component } from 'react' +import { connect } from 'react-redux' +import { withBus } from 'react-suber' import { ThemeProvider } from 'styled-components' import * as themes from 'browser/styles/themes' import { @@ -70,7 +69,7 @@ import { } from 'browser-components/DesktopIntegration/helpers' import { getMetadata, getUserAuthStatus } from 'shared/modules/sync/syncDuck' -class App extends Component { +export class App extends Component { componentDidMount () { document.addEventListener('keyup', this.focusEditorOnSlash) document.addEventListener('keyup', this.expandEditorOnEsc) diff --git a/src/browser/modules/ClickToCode/index.jsx b/src/browser/modules/ClickToCode/index.jsx index 691da5abe60..96fb151c716 100644 --- a/src/browser/modules/ClickToCode/index.jsx +++ b/src/browser/modules/ClickToCode/index.jsx @@ -17,7 +17,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -import { withBus } from 'preact-suber' +import React from 'react' +import { withBus } from 'react-suber' import { SET_CONTENT, setContent } from 'shared/modules/editor/editorDuck' import { StyledCodeBlock } from './styled' import { executeCommand } from 'shared/modules/commands/commandsDuck' diff --git a/src/browser/modules/ClickToCode/index.test.js b/src/browser/modules/ClickToCode/index.test.js index 9c38156c8e5..9c098857189 100644 --- a/src/browser/modules/ClickToCode/index.test.js +++ b/src/browser/modules/ClickToCode/index.test.js @@ -19,7 +19,7 @@ */ /* global describe, beforeEach, afterEach, test, expect, jest */ -import render from 'preact-render-to-string' +import render from 'react-render-to-string' import { createBus } from 'suber' import { ClickToCode } from './index' diff --git a/src/browser/modules/ConnectionsDropdown/ConnectionsDropdown.jsx b/src/browser/modules/ConnectionsDropdown/ConnectionsDropdown.jsx index c5eaa37cf0f..ca6decf29c0 100644 --- a/src/browser/modules/ConnectionsDropdown/ConnectionsDropdown.jsx +++ b/src/browser/modules/ConnectionsDropdown/ConnectionsDropdown.jsx @@ -18,8 +18,8 @@ * along with this program. If not, see . */ -import { Component } from 'preact' -import { connect } from 'preact-redux' +import React, { Component } from 'react' +import { connect } from 'react-redux' import { selectBookmark } from '../actions' import { getBookmarks, getActiveBookmark } from '../reducer' diff --git a/src/browser/modules/D3Visualization/components/Explorer.jsx b/src/browser/modules/D3Visualization/components/Explorer.jsx index a3370753ba2..98987da9320 100644 --- a/src/browser/modules/D3Visualization/components/Explorer.jsx +++ b/src/browser/modules/D3Visualization/components/Explorer.jsx @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -import { Component } from 'preact' +import React, { Component } from 'react' import { deepEquals } from 'services/utils' import { GraphComponent } from './Graph' import neoGraphStyle from '../graphStyle' diff --git a/src/browser/modules/D3Visualization/components/Graph.jsx b/src/browser/modules/D3Visualization/components/Graph.jsx index 29e041a4a40..0c915638e72 100644 --- a/src/browser/modules/D3Visualization/components/Graph.jsx +++ b/src/browser/modules/D3Visualization/components/Graph.jsx @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -import { Component } from 'preact' +import React, { Component } from 'react' import { deepEquals } from 'services/utils' import { createGraph, diff --git a/src/browser/modules/D3Visualization/components/GrassEditor.jsx b/src/browser/modules/D3Visualization/components/GrassEditor.jsx index ee460910beb..779839480ec 100644 --- a/src/browser/modules/D3Visualization/components/GrassEditor.jsx +++ b/src/browser/modules/D3Visualization/components/GrassEditor.jsx @@ -18,8 +18,8 @@ * along with this program. If not, see . */ -import { Component } from 'preact' -import { connect } from 'preact-redux' +import React, { Component } from 'react' +import { connect } from 'react-redux' import neoGraphStyle from '../graphStyle' import { StyledPickerSelector, diff --git a/src/browser/modules/D3Visualization/components/Inspector.jsx b/src/browser/modules/D3Visualization/components/Inspector.jsx index e181693e878..36ef2cc721f 100644 --- a/src/browser/modules/D3Visualization/components/Inspector.jsx +++ b/src/browser/modules/D3Visualization/components/Inspector.jsx @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -import { Component } from 'preact' +import React, { Component } from 'react' import { deepEquals, optionalToString } from 'services/utils' import { inspectorFooterContractedHeight, diff --git a/src/browser/modules/D3Visualization/components/Legend.jsx b/src/browser/modules/D3Visualization/components/Legend.jsx index bf0a6a6338f..d31b1a22bf0 100644 --- a/src/browser/modules/D3Visualization/components/Legend.jsx +++ b/src/browser/modules/D3Visualization/components/Legend.jsx @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -import { Component } from 'preact' +import React, { Component } from 'react' import { legendRowHeight, StyledLegendRow, diff --git a/src/browser/modules/D3Visualization/components/RowExpandToggle.jsx b/src/browser/modules/D3Visualization/components/RowExpandToggle.jsx index 5b7ea1963d5..d5478ed98dc 100644 --- a/src/browser/modules/D3Visualization/components/RowExpandToggle.jsx +++ b/src/browser/modules/D3Visualization/components/RowExpandToggle.jsx @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -import { Component } from 'preact' +import React, { Component } from 'react' import { StyledRowToggle, StyledCaret } from './styled' const getHeightFromElem = rowElem => diff --git a/src/browser/modules/DatabaseInfo/DatabaseInfo.jsx b/src/browser/modules/DatabaseInfo/DatabaseInfo.jsx index f1c1f454d6c..130d5449aa0 100644 --- a/src/browser/modules/DatabaseInfo/DatabaseInfo.jsx +++ b/src/browser/modules/DatabaseInfo/DatabaseInfo.jsx @@ -18,9 +18,9 @@ * along with this program. If not, see . */ -import { Component } from 'preact' -import { connect } from 'preact-redux' -import { withBus } from 'preact-suber' +import React, { Component } from 'react' +import { connect } from 'react-redux' +import { withBus } from 'react-suber' import { executeCommand } from 'shared/modules/commands/commandsDuck' import { LabelItems, RelationshipItems, PropertyItems } from './MetaItems' import UserDetails from './UserDetails' diff --git a/src/browser/modules/DatabaseInfo/DatabaseKernelInfo.jsx b/src/browser/modules/DatabaseInfo/DatabaseKernelInfo.jsx index 2974a3e2553..c41fe40a67e 100644 --- a/src/browser/modules/DatabaseInfo/DatabaseKernelInfo.jsx +++ b/src/browser/modules/DatabaseInfo/DatabaseKernelInfo.jsx @@ -17,9 +17,9 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - -import { connect } from 'preact-redux' -import { withBus } from 'preact-suber' +import React from 'react' +import { connect } from 'react-redux' +import { withBus } from 'react-suber' import { getVersion, getEdition, diff --git a/src/browser/modules/DatabaseInfo/MetaItems.jsx b/src/browser/modules/DatabaseInfo/MetaItems.jsx index 867e6e3cd68..179bc1289a1 100644 --- a/src/browser/modules/DatabaseInfo/MetaItems.jsx +++ b/src/browser/modules/DatabaseInfo/MetaItems.jsx @@ -17,7 +17,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - +import React from 'react' import { ecsapeCypherMetaItem } from 'services/utils' import classNames from 'classnames' import styles from './style_meta.css' diff --git a/src/browser/modules/DatabaseInfo/UserDetails.jsx b/src/browser/modules/DatabaseInfo/UserDetails.jsx index 8558c48e33b..a195f0526dd 100644 --- a/src/browser/modules/DatabaseInfo/UserDetails.jsx +++ b/src/browser/modules/DatabaseInfo/UserDetails.jsx @@ -18,9 +18,9 @@ * along with this program. If not, see . */ -import { Component } from 'preact' -import { connect } from 'preact-redux' -import { withBus } from 'preact-suber' +import React, { Component } from 'react' +import { connect } from 'react-redux' +import { withBus } from 'react-suber' import { CYPHER_REQUEST } from 'shared/modules/cypher/cypherDuck' import { executeCommand } from 'shared/modules/commands/commandsDuck' diff --git a/src/browser/modules/DatabaseInfo/styled.jsx b/src/browser/modules/DatabaseInfo/styled.jsx index f47b957536b..c6dacd418b2 100644 --- a/src/browser/modules/DatabaseInfo/styled.jsx +++ b/src/browser/modules/DatabaseInfo/styled.jsx @@ -17,7 +17,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - +import React from 'react' import styled from 'styled-components' import { PlainPlayIcon } from 'browser-components/icons/Icons' diff --git a/src/browser/modules/Editor/Codemirror.jsx b/src/browser/modules/Editor/Codemirror.jsx index 8694097a9d5..2336a11f6cc 100644 --- a/src/browser/modules/Editor/Codemirror.jsx +++ b/src/browser/modules/Editor/Codemirror.jsx @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -import { Component } from 'preact' +import React, { Component } from 'react' import classNames from 'classnames' import debounce from 'lodash.debounce' import codemirror from 'codemirror' diff --git a/src/browser/modules/Editor/Editor.jsx b/src/browser/modules/Editor/Editor.jsx index 836296f4a2c..67f863ca8a2 100644 --- a/src/browser/modules/Editor/Editor.jsx +++ b/src/browser/modules/Editor/Editor.jsx @@ -19,9 +19,9 @@ */ /* eslint-disable no-octal-escape */ -import { Component } from 'preact' -import { connect } from 'preact-redux' -import { withBus } from 'preact-suber' +import React, { Component } from 'react' +import { connect } from 'react-redux' +import { withBus } from 'react-suber' import uuid from 'uuid' import { executeCommand, diff --git a/src/browser/modules/Guides/Carousel.jsx b/src/browser/modules/Guides/Carousel.jsx index ccc85cc7ac6..090c19a7316 100644 --- a/src/browser/modules/Guides/Carousel.jsx +++ b/src/browser/modules/Guides/Carousel.jsx @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -import { Component } from 'preact' +import React, { Component } from 'react' import { CarouselButton } from 'browser-components/buttons' import Render from 'browser-components/Render' import CarouselSlidePicker from './CarouselSlidePicker' diff --git a/src/browser/modules/Guides/Guides.jsx b/src/browser/modules/Guides/Guides.jsx index 4b8aa72c837..d32a73ed540 100644 --- a/src/browser/modules/Guides/Guides.jsx +++ b/src/browser/modules/Guides/Guides.jsx @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -import { Component } from 'preact' +import React, { Component } from 'react' import uuid from 'uuid' import Slide from './Slide' import Directives from 'browser-components/Directives' @@ -30,6 +30,7 @@ export default class Guides extends Component { this.state = { slides: null, firstRender: true } } componentDidMount () { + if (!this.base) return const slides = this.base.getElementsByTagName('slide') let reactSlides = this if (slides.length > 0) { diff --git a/src/browser/modules/Guides/Slide.jsx b/src/browser/modules/Guides/Slide.jsx index d6bde2c35fe..ac243ba1bfb 100644 --- a/src/browser/modules/Guides/Slide.jsx +++ b/src/browser/modules/Guides/Slide.jsx @@ -17,7 +17,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - +import React from 'react' import styles from './style.css' import { StyledSlide } from './styled.jsx' diff --git a/src/browser/modules/Intercom/index.jsx b/src/browser/modules/Intercom/index.jsx index e0904e6f3d4..b7787e486e7 100644 --- a/src/browser/modules/Intercom/index.jsx +++ b/src/browser/modules/Intercom/index.jsx @@ -18,8 +18,8 @@ * along with this program. If not, see . */ -import { Component } from 'preact' -import { connect } from 'preact-redux' +import React, { Component } from 'react' +import { connect } from 'react-redux' import { canUseDOM } from 'services/utils' import { updateData } from 'shared/modules/udc/udcDuck' diff --git a/src/browser/modules/Main/Main.jsx b/src/browser/modules/Main/Main.jsx index 3eb34f0d60e..2fdedaaee65 100644 --- a/src/browser/modules/Main/Main.jsx +++ b/src/browser/modules/Main/Main.jsx @@ -17,7 +17,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - +import React from 'react' import { DISCONNECTED_STATE, PENDING_STATE diff --git a/src/browser/modules/Main/SyncConsentBanner.jsx b/src/browser/modules/Main/SyncConsentBanner.jsx index 5071b04308c..72fcc61da33 100644 --- a/src/browser/modules/Main/SyncConsentBanner.jsx +++ b/src/browser/modules/Main/SyncConsentBanner.jsx @@ -18,8 +18,8 @@ * along with this program. If not, see . */ -import { Component } from 'preact' -import { connect } from 'preact-redux' +import React, { Component } from 'react' +import { connect } from 'react-redux' import { SyncDisconnectedBanner, StyledCancelLink, diff --git a/src/browser/modules/Main/SyncReminderBanner.jsx b/src/browser/modules/Main/SyncReminderBanner.jsx index 0b2ac43024f..b60658dfa57 100644 --- a/src/browser/modules/Main/SyncReminderBanner.jsx +++ b/src/browser/modules/Main/SyncReminderBanner.jsx @@ -18,8 +18,8 @@ * along with this program. If not, see . */ -import { Component } from 'preact' -import { connect } from 'preact-redux' +import React, { Component } from 'react' +import { connect } from 'react-redux' import { SyncDisconnectedBanner, SyncSignInBarButton, diff --git a/src/browser/modules/Sidebar/About.jsx b/src/browser/modules/Sidebar/About.jsx index 6ac32b0aa1c..2eab14661d2 100644 --- a/src/browser/modules/Sidebar/About.jsx +++ b/src/browser/modules/Sidebar/About.jsx @@ -17,8 +17,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - -import { connect } from 'preact-redux' +import React from 'react' +import { connect } from 'react-redux' import { version } from 'project-root/package.json' import Render from 'browser-components/Render' import { diff --git a/src/browser/modules/Sidebar/DocumentItems.jsx b/src/browser/modules/Sidebar/DocumentItems.jsx index 102704ca98f..08835182d29 100644 --- a/src/browser/modules/Sidebar/DocumentItems.jsx +++ b/src/browser/modules/Sidebar/DocumentItems.jsx @@ -17,9 +17,9 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - -import { connect } from 'preact-redux' -import { withBus } from 'preact-suber' +import React from 'react' +import { connect } from 'react-redux' +import { withBus } from 'react-suber' import { SET_CONTENT, setContent } from 'shared/modules/editor/editorDuck' import { DrawerSubHeader, @@ -37,7 +37,7 @@ export const DocumentItems = ({ header, items, onItemClick = null }) => { switch (item.type) { case 'link': return ( - + {item.name} @@ -45,7 +45,7 @@ export const DocumentItems = ({ header, items, onItemClick = null }) => { ) default: return ( - + onItemClick(item.command)} name={item.name} diff --git a/src/browser/modules/Sidebar/Documents.jsx b/src/browser/modules/Sidebar/Documents.jsx index 53aeb7ee243..c470e1d806d 100644 --- a/src/browser/modules/Sidebar/Documents.jsx +++ b/src/browser/modules/Sidebar/Documents.jsx @@ -17,8 +17,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - -import { connect } from 'preact-redux' +import React from 'react' +import { connect } from 'react-redux' import semver from 'semver' import { getVersion } from 'shared/modules/dbMeta/dbMetaDuck' import DocumentItems from './DocumentItems' diff --git a/src/browser/modules/Sidebar/Favorite.jsx b/src/browser/modules/Sidebar/Favorite.jsx index 91900933103..f561bdb14c4 100644 --- a/src/browser/modules/Sidebar/Favorite.jsx +++ b/src/browser/modules/Sidebar/Favorite.jsx @@ -18,9 +18,9 @@ * along with this program. If not, see . */ -import { connect } from 'preact-redux' -import { withBus } from 'preact-suber' -import { Component } from 'preact' +import { connect } from 'react-redux' +import { withBus } from 'react-suber' +import React, { Component } from 'react' import { DragSource, DropTarget } from 'react-dnd' import * as favorite from 'shared/modules/favorites/favoritesDuck' import { ConfirmationButton } from 'browser-components/buttons/ConfirmationButton' diff --git a/src/browser/modules/Sidebar/Favorites.jsx b/src/browser/modules/Sidebar/Favorites.jsx index 0548b3ba35b..07629631e86 100644 --- a/src/browser/modules/Sidebar/Favorites.jsx +++ b/src/browser/modules/Sidebar/Favorites.jsx @@ -18,9 +18,9 @@ * along with this program. If not, see . */ -import { Component } from 'preact' -import { connect } from 'preact-redux' -import { withBus } from 'preact-suber' +import React, { Component } from 'react' +import { connect } from 'react-redux' +import { withBus } from 'react-suber' import * as editor from 'shared/modules/editor/editorDuck' import * as favorite from 'shared/modules/favorites/favoritesDuck' import * as folder from 'shared/modules/favorites/foldersDuck' diff --git a/src/browser/modules/Sidebar/FileDrop.jsx b/src/browser/modules/Sidebar/FileDrop.jsx index 89bca7442a5..8eda7338ddd 100644 --- a/src/browser/modules/Sidebar/FileDrop.jsx +++ b/src/browser/modules/Sidebar/FileDrop.jsx @@ -19,8 +19,8 @@ */ /* global FileReader */ -import { Component } from 'preact' -import { connect } from 'preact-redux' +import React, { Component } from 'react' +import { connect } from 'react-redux' import Dropzone from 'react-dropzone' import { addFavorite } from 'shared/modules/favorites/favoritesDuck' diff --git a/src/browser/modules/Sidebar/Folder.jsx b/src/browser/modules/Sidebar/Folder.jsx index 99fbda554a7..ed5fd5de34d 100644 --- a/src/browser/modules/Sidebar/Folder.jsx +++ b/src/browser/modules/Sidebar/Folder.jsx @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -import { Component } from 'preact' +import React, { Component } from 'react' import { DropTarget } from 'react-dnd' import Render from 'browser-components/Render' import { ConfirmationButton } from 'browser-components/buttons/ConfirmationButton' diff --git a/src/browser/modules/Sidebar/Settings.jsx b/src/browser/modules/Sidebar/Settings.jsx index 28e0bbbdf8f..82082e87b96 100644 --- a/src/browser/modules/Sidebar/Settings.jsx +++ b/src/browser/modules/Sidebar/Settings.jsx @@ -17,8 +17,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - -import { connect } from 'preact-redux' +import React from 'react' +import { connect } from 'react-redux' import * as actions from 'shared/modules/settings/settingsDuck' import { Drawer, diff --git a/src/browser/modules/Sidebar/Sidebar.jsx b/src/browser/modules/Sidebar/Sidebar.jsx index 8921402b13e..4df4f445459 100644 --- a/src/browser/modules/Sidebar/Sidebar.jsx +++ b/src/browser/modules/Sidebar/Sidebar.jsx @@ -18,8 +18,8 @@ * along with this program. If not, see . */ -import { Component } from 'preact' -import { connect } from 'preact-redux' +import React, { Component } from 'react' +import { connect } from 'react-redux' import DatabaseInfo from '../DatabaseInfo/DatabaseInfo' import Favorites from './Favorites' import Documents from './Documents' diff --git a/src/browser/modules/Sidebar/Sidebar.test.jsx b/src/browser/modules/Sidebar/Sidebar.test.jsx index a59d42c17e5..c4f25573ced 100644 --- a/src/browser/modules/Sidebar/Sidebar.test.jsx +++ b/src/browser/modules/Sidebar/Sidebar.test.jsx @@ -22,7 +22,7 @@ import React from 'react' import { mount } from 'enzyme' import { createStore, combineReducers } from 'redux' -import { Provider } from 'preact-redux' +import { Provider } from 'react-redux' import Sidebar from './Sidebar' import DatabaseInfo from '../DatabaseInfo/DatabaseInfo' import Favorites from './Favorites' diff --git a/src/browser/modules/Sidebar/styled.jsx b/src/browser/modules/Sidebar/styled.jsx index ea29b64a7ee..f7f44a3a400 100644 --- a/src/browser/modules/Sidebar/styled.jsx +++ b/src/browser/modules/Sidebar/styled.jsx @@ -17,7 +17,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - +import React from 'react' import styled from 'styled-components' import { QuestionIcon, diff --git a/src/browser/modules/Stream/Auth/ChangePasswordForm.jsx b/src/browser/modules/Stream/Auth/ChangePasswordForm.jsx index 1141d2d24cb..7d0a12ded7a 100644 --- a/src/browser/modules/Stream/Auth/ChangePasswordForm.jsx +++ b/src/browser/modules/Stream/Auth/ChangePasswordForm.jsx @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -import { Component } from 'preact' +import React, { Component } from 'react' import { FormButton } from 'browser-components/buttons' import { diff --git a/src/browser/modules/Stream/Auth/ChangePasswordFrame.jsx b/src/browser/modules/Stream/Auth/ChangePasswordFrame.jsx index ac61a2bc284..95059c42f8b 100644 --- a/src/browser/modules/Stream/Auth/ChangePasswordFrame.jsx +++ b/src/browser/modules/Stream/Auth/ChangePasswordFrame.jsx @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -import { Component } from 'preact' +import React, { Component } from 'react' import ConnectionForm from './ConnectionForm' import FrameTemplate from '../FrameTemplate' diff --git a/src/browser/modules/Stream/Auth/ConnectForm.jsx b/src/browser/modules/Stream/Auth/ConnectForm.jsx index 3fdeccd1f51..88af43b8b2b 100644 --- a/src/browser/modules/Stream/Auth/ConnectForm.jsx +++ b/src/browser/modules/Stream/Auth/ConnectForm.jsx @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -import { Component } from 'preact' +import React, { Component } from 'react' import Render from 'browser-components/Render' import { FormButton } from 'browser-components/buttons' import { diff --git a/src/browser/modules/Stream/Auth/ConnectedView.jsx b/src/browser/modules/Stream/Auth/ConnectedView.jsx index bde8c6ef1d7..34dde2c4ef8 100644 --- a/src/browser/modules/Stream/Auth/ConnectedView.jsx +++ b/src/browser/modules/Stream/Auth/ConnectedView.jsx @@ -17,7 +17,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - +import React from 'react' import { StyledConnectionBody, StyledCode, diff --git a/src/browser/modules/Stream/Auth/ConnectionForm.jsx b/src/browser/modules/Stream/Auth/ConnectionForm.jsx index 84725a38f56..6979786cfa9 100644 --- a/src/browser/modules/Stream/Auth/ConnectionForm.jsx +++ b/src/browser/modules/Stream/Auth/ConnectionForm.jsx @@ -18,9 +18,9 @@ * along with this program. If not, see . */ -import { Component } from 'preact' -import { connect } from 'preact-redux' -import { withBus } from 'preact-suber' +import React, { Component } from 'react' +import { connect } from 'react-redux' +import { withBus } from 'react-suber' import { getActiveConnectionData, getActiveConnection, diff --git a/src/browser/modules/Stream/Auth/ConnectionFrame.jsx b/src/browser/modules/Stream/Auth/ConnectionFrame.jsx index cf3e4454431..2e862b8f261 100644 --- a/src/browser/modules/Stream/Auth/ConnectionFrame.jsx +++ b/src/browser/modules/Stream/Auth/ConnectionFrame.jsx @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -import { Component } from 'preact' +import React, { Component } from 'react' import FrameTemplate from '../FrameTemplate' import ConnectionForm from './ConnectionForm' diff --git a/src/browser/modules/Stream/Auth/ServerStatusFrame.jsx b/src/browser/modules/Stream/Auth/ServerStatusFrame.jsx index 4caf20c2cb7..578ab533d33 100644 --- a/src/browser/modules/Stream/Auth/ServerStatusFrame.jsx +++ b/src/browser/modules/Stream/Auth/ServerStatusFrame.jsx @@ -18,8 +18,8 @@ * along with this program. If not, see . */ -import { Component } from 'preact' -import { connect } from 'preact-redux' +import React, { Component } from 'react' +import { connect } from 'react-redux' import FrameTemplate from '../FrameTemplate' import { StyledConnectionFrame, diff --git a/src/browser/modules/Stream/Auth/ServerSwitchFrame.jsx b/src/browser/modules/Stream/Auth/ServerSwitchFrame.jsx index 54d11e20b0e..10f98d470a0 100644 --- a/src/browser/modules/Stream/Auth/ServerSwitchFrame.jsx +++ b/src/browser/modules/Stream/Auth/ServerSwitchFrame.jsx @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -import { Component } from 'preact' +import React, { Component } from 'react' import FrameTemplate from '../FrameTemplate' import { StyledConnectionFrame, diff --git a/src/browser/modules/Stream/CypherFrame/AsciiView.jsx b/src/browser/modules/Stream/CypherFrame/AsciiView.jsx index 46df6b64320..5674708a606 100644 --- a/src/browser/modules/Stream/CypherFrame/AsciiView.jsx +++ b/src/browser/modules/Stream/CypherFrame/AsciiView.jsx @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -import { Component } from 'preact' +import React, { Component } from 'react' import asciitable from 'ascii-data-table' import Render from 'browser-components/Render' import Ellipsis from 'browser-components/Ellipsis' diff --git a/src/browser/modules/Stream/CypherFrame/CodeView.jsx b/src/browser/modules/Stream/CypherFrame/CodeView.jsx index f193800dcec..470ae377e87 100644 --- a/src/browser/modules/Stream/CypherFrame/CodeView.jsx +++ b/src/browser/modules/Stream/CypherFrame/CodeView.jsx @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -import { Component } from 'preact' +import React, { Component } from 'react' import { deepEquals } from 'services/utils' import { PaddedDiv, diff --git a/src/browser/modules/Stream/CypherFrame/ErrorsView.jsx b/src/browser/modules/Stream/CypherFrame/ErrorsView.jsx index 93b72bf061e..152575b2ad1 100644 --- a/src/browser/modules/Stream/CypherFrame/ErrorsView.jsx +++ b/src/browser/modules/Stream/CypherFrame/ErrorsView.jsx @@ -18,8 +18,8 @@ * along with this program. If not, see . */ -import { Component } from 'preact' -import { withBus } from 'preact-suber' +import React, { Component } from 'react' +import { withBus } from 'react-suber' import Ellipsis from 'browser-components/Ellipsis' import { ExclamationTriangleIcon, diff --git a/src/browser/modules/Stream/CypherFrame/PlanView.jsx b/src/browser/modules/Stream/CypherFrame/PlanView.jsx index 3554157ecff..fdcee25e669 100644 --- a/src/browser/modules/Stream/CypherFrame/PlanView.jsx +++ b/src/browser/modules/Stream/CypherFrame/PlanView.jsx @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -import { Component } from 'preact' +import React, { Component } from 'react' import { PlanSVG } from './PlanView.styled' import { dim } from 'browser-styles/constants' import { deepEquals, shallowEquals } from 'services/utils' diff --git a/src/browser/modules/Stream/CypherFrame/TableView.jsx b/src/browser/modules/Stream/CypherFrame/TableView.jsx index 1ad509e06bb..de290788549 100644 --- a/src/browser/modules/Stream/CypherFrame/TableView.jsx +++ b/src/browser/modules/Stream/CypherFrame/TableView.jsx @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -import { Component } from 'preact' +import React, { Component } from 'react' import { v4 } from 'uuid' import { v1 as neo4j } from 'neo4j-driver-alias' import { diff --git a/src/browser/modules/Stream/CypherFrame/VisualizationView.jsx b/src/browser/modules/Stream/CypherFrame/VisualizationView.jsx index bef094200f2..c1613919309 100644 --- a/src/browser/modules/Stream/CypherFrame/VisualizationView.jsx +++ b/src/browser/modules/Stream/CypherFrame/VisualizationView.jsx @@ -18,12 +18,12 @@ * along with this program. If not, see . */ -import { Component } from 'preact' -import { connect } from 'preact-redux' +import React, { Component } from 'react' +import { connect } from 'react-redux' import { deepEquals } from 'services/utils' import * as grassActions from 'shared/modules/grass/grassDuck' import bolt from 'services/bolt/bolt' -import { withBus } from 'preact-suber' +import { withBus } from 'react-suber' import { ExplorerComponent } from '../../D3Visualization/components/Explorer' import { StyledVisContainer } from './VisualizationView.styled' diff --git a/src/browser/modules/Stream/CypherFrame/WarningsView.jsx b/src/browser/modules/Stream/CypherFrame/WarningsView.jsx index 6f0b00fec98..f17fb71e243 100644 --- a/src/browser/modules/Stream/CypherFrame/WarningsView.jsx +++ b/src/browser/modules/Stream/CypherFrame/WarningsView.jsx @@ -17,7 +17,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -import { Component } from 'preact' +import React, { Component } from 'react' import { deepEquals } from 'services/utils' import { StyledCypherMessage, diff --git a/src/browser/modules/Stream/CypherFrame/index.jsx b/src/browser/modules/Stream/CypherFrame/index.jsx index a05f5ca7d49..8b7bcaf1a30 100644 --- a/src/browser/modules/Stream/CypherFrame/index.jsx +++ b/src/browser/modules/Stream/CypherFrame/index.jsx @@ -18,8 +18,8 @@ * along with this program. If not, see . */ -import { connect } from 'preact-redux' -import { Component } from 'preact' +import { connect } from 'react-redux' +import React, { Component } from 'react' import FrameTemplate from '../FrameTemplate' import { CypherFrameButton } from 'browser-components/buttons' import Centered from 'browser-components/Centered' diff --git a/src/browser/modules/Stream/CypherFrame/index.test.js b/src/browser/modules/Stream/CypherFrame/index.test.js index 441f49cc39c..3675f78c86b 100644 --- a/src/browser/modules/Stream/CypherFrame/index.test.js +++ b/src/browser/modules/Stream/CypherFrame/index.test.js @@ -46,12 +46,12 @@ jest.mock('./VisualizationView', () => { } } }) -jest.mock('preact-suber', () => { +jest.mock('react-suber', () => { return { withBus: a => a } }) -jest.mock('preact-redux', () => { +jest.mock('react-redux', () => { return { connect: (msp, mdp) => a => a } diff --git a/src/browser/modules/Stream/Errors/IESecurityErrors.jsx b/src/browser/modules/Stream/Errors/IESecurityErrors.jsx index aaab5a67183..91f92c51158 100644 --- a/src/browser/modules/Stream/Errors/IESecurityErrors.jsx +++ b/src/browser/modules/Stream/Errors/IESecurityErrors.jsx @@ -1,3 +1,4 @@ +import React from 'react' export const IESecurityError18 = ( Unable to connect to local intranet. This is a known error when using diff --git a/src/browser/modules/Stream/Frame.jsx b/src/browser/modules/Stream/Frame.jsx index 2db7b3f29fa..9dc152aeaf2 100644 --- a/src/browser/modules/Stream/Frame.jsx +++ b/src/browser/modules/Stream/Frame.jsx @@ -17,7 +17,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - +import React from 'react' import FrameTemplate from './FrameTemplate' const Frame = ({ frame }) => { diff --git a/src/browser/modules/Stream/FrameSidebar.jsx b/src/browser/modules/Stream/FrameSidebar.jsx index 8726c7bd32b..a0f84b28faf 100644 --- a/src/browser/modules/Stream/FrameSidebar.jsx +++ b/src/browser/modules/Stream/FrameSidebar.jsx @@ -17,7 +17,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - +import React from 'react' import { StyledFrameSidebar } from './styled' const FrameSidebar = props => { diff --git a/src/browser/modules/Stream/FrameTemplate.jsx b/src/browser/modules/Stream/FrameTemplate.jsx index b7054e64b1b..17de635c45a 100644 --- a/src/browser/modules/Stream/FrameTemplate.jsx +++ b/src/browser/modules/Stream/FrameTemplate.jsx @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -import { Component } from 'preact' +import React, { Component } from 'react' import FrameTitlebar from './FrameTitlebar' import Render from 'browser-components/Render' import { diff --git a/src/browser/modules/Stream/FrameTitlebar.jsx b/src/browser/modules/Stream/FrameTitlebar.jsx index 2879823abbf..85f8bc18e1f 100644 --- a/src/browser/modules/Stream/FrameTitlebar.jsx +++ b/src/browser/modules/Stream/FrameTitlebar.jsx @@ -18,9 +18,9 @@ * along with this program. If not, see . */ -import { connect } from 'preact-redux' -import { Component } from 'preact' -import { withBus } from 'preact-suber' +import { connect } from 'react-redux' +import React, { Component } from 'react' +import { withBus } from 'react-suber' import { saveAs } from 'file-saver' import * as editor from 'shared/modules/editor/editorDuck' import * as commands from 'shared/modules/commands/commandsDuck' diff --git a/src/browser/modules/Stream/HistoryFrame.jsx b/src/browser/modules/Stream/HistoryFrame.jsx index 21c0ad74ac7..75b7f44cc6a 100644 --- a/src/browser/modules/Stream/HistoryFrame.jsx +++ b/src/browser/modules/Stream/HistoryFrame.jsx @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -import { withBus } from 'preact-suber' +import { withBus } from 'react-suber' import * as editor from 'shared/modules/editor/editorDuck' import FrameTemplate from './FrameTemplate' import { StyledHistoryList } from './styled' diff --git a/src/browser/modules/Stream/InfoView.jsx b/src/browser/modules/Stream/InfoView.jsx index 10a5e140c53..ec160c32a91 100644 --- a/src/browser/modules/Stream/InfoView.jsx +++ b/src/browser/modules/Stream/InfoView.jsx @@ -17,7 +17,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -import { Component } from 'preact' +import React, { Component } from 'react' import { StyledInfoMessage, StyledHelpContent, diff --git a/src/browser/modules/Stream/PlayFrame.jsx b/src/browser/modules/Stream/PlayFrame.jsx index 394d4216796..f5d16ab993a 100644 --- a/src/browser/modules/Stream/PlayFrame.jsx +++ b/src/browser/modules/Stream/PlayFrame.jsx @@ -18,8 +18,8 @@ * along with this program. If not, see . */ -import { Component } from 'preact' -import { withBus } from 'preact-suber' +import React, { Component } from 'react' +import { withBus } from 'react-suber' import { fetchGuideFromWhitelistAction } from 'shared/modules/commands/commandsDuck' import Guides from '../Guides/Guides' diff --git a/src/browser/modules/Stream/Queries/QueriesFrame.jsx b/src/browser/modules/Stream/Queries/QueriesFrame.jsx index 467bf358c58..49ed2736adb 100644 --- a/src/browser/modules/Stream/Queries/QueriesFrame.jsx +++ b/src/browser/modules/Stream/Queries/QueriesFrame.jsx @@ -18,9 +18,9 @@ * along with this program. If not, see . */ -import { Component } from 'preact' -import { connect } from 'preact-redux' -import { withBus } from 'preact-suber' +import React, { Component } from 'react' +import { connect } from 'react-redux' +import { withBus } from 'react-suber' import FrameTemplate from '../FrameTemplate' import bolt from 'services/bolt/bolt' import { diff --git a/src/browser/modules/Stream/SchemaFrame.jsx b/src/browser/modules/Stream/SchemaFrame.jsx index aa5579c07dd..a20012058be 100644 --- a/src/browser/modules/Stream/SchemaFrame.jsx +++ b/src/browser/modules/Stream/SchemaFrame.jsx @@ -18,8 +18,8 @@ * along with this program. If not, see . */ -import { Component } from 'preact' -import { withBus } from 'preact-suber' +import React, { Component } from 'react' +import { withBus } from 'react-suber' import { CYPHER_REQUEST } from 'shared/modules/cypher/cypherDuck' import FrameTemplate from '../Stream/FrameTemplate' import { StyledSchemaBody } from './styled' diff --git a/src/browser/modules/Stream/Stream.jsx b/src/browser/modules/Stream/Stream.jsx index 42236ceac29..122ff77f6c7 100644 --- a/src/browser/modules/Stream/Stream.jsx +++ b/src/browser/modules/Stream/Stream.jsx @@ -18,8 +18,8 @@ * along with this program. If not, see . */ -import { connect } from 'preact-redux' -import { Component } from 'preact' +import { connect } from 'react-redux' +import React, { Component } from 'react' import { StyledStream } from './styled' import CypherFrame from './CypherFrame/index' @@ -77,7 +77,7 @@ const getFrame = type => { class Stream extends Component { shouldComponentUpdate (props) { const frameHasBeenAdded = this.props.frames.length < props.frames.length - if (frameHasBeenAdded && this.props.scrollToTop) { + if (frameHasBeenAdded && this.props.scrollToTop && this.base) { this.base.scrollTop = 0 return true } diff --git a/src/browser/modules/Stream/StyleFrame.jsx b/src/browser/modules/Stream/StyleFrame.jsx index 4018f6cc672..d5a8b6757e3 100644 --- a/src/browser/modules/Stream/StyleFrame.jsx +++ b/src/browser/modules/Stream/StyleFrame.jsx @@ -17,7 +17,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -import { connect } from 'preact-redux' +import { connect } from 'react-redux' import FrameTemplate from './FrameTemplate' import { PaddedDiv, diff --git a/src/browser/modules/Stream/SysInfoFrame/index.jsx b/src/browser/modules/Stream/SysInfoFrame/index.jsx index 0e36fc2c238..48b72f68321 100644 --- a/src/browser/modules/Stream/SysInfoFrame/index.jsx +++ b/src/browser/modules/Stream/SysInfoFrame/index.jsx @@ -18,9 +18,9 @@ * along with this program. If not, see . */ -import { Component } from 'preact' -import { connect } from 'preact-redux' -import { withBus } from 'preact-suber' +import React, { Component } from 'react' +import { connect } from 'react-redux' +import { withBus } from 'react-suber' import { CYPHER_REQUEST } from 'shared/modules/cypher/cypherDuck' import { isACausalCluster } from 'shared/modules/features/featuresDuck' import { isConnected } from 'shared/modules/connections/connectionsDuck' diff --git a/src/browser/modules/Stream/errorMessageFormater.test.js b/src/browser/modules/Stream/errorMessageFormater.test.js index ec7afa0e2aa..f4fccb2da6d 100644 --- a/src/browser/modules/Stream/errorMessageFormater.test.js +++ b/src/browser/modules/Stream/errorMessageFormater.test.js @@ -20,7 +20,7 @@ /* global describe, test, expect */ -import render from 'preact-render-to-string' +import render from 'react-render-to-string' import { errorMessageFormater } from './errorMessageFormater' describe('errorsHelper', () => { diff --git a/src/browser/modules/Sync/BrowserSync.jsx b/src/browser/modules/Sync/BrowserSync.jsx index 5cca41d7c34..e8de57e3a1b 100644 --- a/src/browser/modules/Sync/BrowserSync.jsx +++ b/src/browser/modules/Sync/BrowserSync.jsx @@ -18,8 +18,8 @@ * along with this program. If not, see . */ -import { Component } from 'preact' -import { connect } from 'preact-redux' +import React, { Component } from 'react' +import { connect } from 'react-redux' import TimeAgo from 'react-timeago' import { allowOutgoingConnections } from 'shared/modules/dbMeta/dbMetaDuck' import { diff --git a/src/browser/modules/Sync/BrowserSyncInit.jsx b/src/browser/modules/Sync/BrowserSyncInit.jsx index 23e6c155a8d..96f07969371 100644 --- a/src/browser/modules/Sync/BrowserSyncInit.jsx +++ b/src/browser/modules/Sync/BrowserSyncInit.jsx @@ -18,8 +18,8 @@ * along with this program. If not, see . */ -import { Component } from 'preact' -import { connect } from 'preact-redux' +import React, { Component } from 'react' +import { connect } from 'react-redux' import { setSyncData, diff --git a/src/browser/modules/Sync/styled.jsx b/src/browser/modules/Sync/styled.jsx index 1f2267e1aea..4731f931c55 100644 --- a/src/browser/modules/Sync/styled.jsx +++ b/src/browser/modules/Sync/styled.jsx @@ -17,7 +17,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - +import React from 'react' import styled from 'styled-components' export const ConsentCheckBox = props => { diff --git a/src/browser/modules/User/UserAdd.jsx b/src/browser/modules/User/UserAdd.jsx index 91cfbc4b772..0e9b6c1d8d6 100644 --- a/src/browser/modules/User/UserAdd.jsx +++ b/src/browser/modules/User/UserAdd.jsx @@ -17,9 +17,9 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -import { Component } from 'preact' -import { connect } from 'preact-redux' -import { withBus } from 'preact-suber' +import React, { Component } from 'react' +import { connect } from 'react-redux' +import { withBus } from 'react-suber' import { executeCommand } from 'shared/modules/commands/commandsDuck' import { canAssignRolesToUser } from 'shared/modules/features/featuresDuck' diff --git a/src/browser/modules/User/UserInfo.jsx b/src/browser/modules/User/UserInfo.jsx index b795d1de189..87e64629534 100644 --- a/src/browser/modules/User/UserInfo.jsx +++ b/src/browser/modules/User/UserInfo.jsx @@ -18,9 +18,9 @@ * along with this program. If not, see . */ -import { Component } from 'preact' -import { connect } from 'preact-redux' -import { withBus } from 'preact-suber' +import React, { Component } from 'react' +import { connect } from 'react-redux' +import { withBus } from 'react-suber' import { CYPHER_REQUEST } from 'shared/modules/cypher/cypherDuck' import { getCurrentUser, diff --git a/src/browser/modules/User/UserInformation.jsx b/src/browser/modules/User/UserInformation.jsx index 84aab6830f1..142ef3da9c4 100644 --- a/src/browser/modules/User/UserInformation.jsx +++ b/src/browser/modules/User/UserInformation.jsx @@ -18,11 +18,11 @@ * along with this program. If not, see . */ -import { Component } from 'preact' +import React, { Component } from 'react' import { v4 } from 'uuid' import { CYPHER_REQUEST } from 'shared/modules/cypher/cypherDuck' -import { withBus } from 'preact-suber' +import { withBus } from 'react-suber' import { deleteUser, addRoleToUser, diff --git a/src/browser/modules/User/UserList.jsx b/src/browser/modules/User/UserList.jsx index e679a2d2e54..1660bf50981 100644 --- a/src/browser/modules/User/UserList.jsx +++ b/src/browser/modules/User/UserList.jsx @@ -19,9 +19,9 @@ */ import { executeCommand } from 'shared/modules/commands/commandsDuck' -import { Component } from 'preact' +import React, { Component } from 'react' import uuid from 'uuid' -import { withBus } from 'preact-suber' +import { withBus } from 'react-suber' import { listUsersQuery, listRolesQuery diff --git a/src/browser/modules/UserInteraction/index.jsx b/src/browser/modules/UserInteraction/index.jsx index 9f15f8be85b..b5060c63c95 100644 --- a/src/browser/modules/UserInteraction/index.jsx +++ b/src/browser/modules/UserInteraction/index.jsx @@ -18,8 +18,8 @@ * along with this program. If not, see . */ -import { Component } from 'preact' -import { withBus } from 'preact-suber' +import React, { Component } from 'react' +import { withBus } from 'react-suber' import { throttle } from 'services/utils' import { USER_INTERACTION } from 'shared/modules/userInteraction/userInteractionDuck' @@ -46,6 +46,9 @@ export class UserInteraction extends Component { throttledReportInteraction(this.props.bus) ) } + render () { + return null + } } export default withBus(UserInteraction) diff --git a/webpack.config.js b/webpack.config.js index 730bb827951..97c02e2aa46 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -88,16 +88,7 @@ const rules = [ loader: 'babel-loader', options: { presets: [['es2015', { modules: false }], 'stage-2', 'react'], - plugins: [ - 'styled-components', - 'preact-require', - [ - 'transform-react-jsx', - { - pragma: 'h' - } - ] - ] + plugins: ['styled-components'] } } ] @@ -245,16 +236,14 @@ module.exports = { 'rxjs', 'babel-polyfill', 'isomorphic-fetch', - 'preact/dist/preact', - 'preact-compat/dist/preact-compat', 'redux-observable', 'suber', - 'preact-suber', + 'react-suber', 'redux', 'styled-components', 'iconv-lite', 'pako', - 'preact-redux' + 'react-redux' ] }, output: { @@ -284,8 +273,6 @@ module.exports = { services: path.resolve(__dirname, 'src/shared/services'), 'browser-services': path.resolve(__dirname, 'src/browser/services'), shared: path.resolve(__dirname, 'src/shared'), - react: 'preact-compat/dist/preact-compat', - 'react-dom': 'preact-compat/dist/preact-compat', 'browser-components': path.resolve(__dirname, 'src/browser/components'), browser: path.resolve(__dirname, 'src/browser'), 'browser-styles': path.resolve(__dirname, 'src/browser/styles') diff --git a/yarn.lock b/yarn.lock index 8c68ebf7603..e0d7a7a4dc1 100644 --- a/yarn.lock +++ b/yarn.lock @@ -867,10 +867,6 @@ babel-plugin-module-resolver@^2.4.0: glob "^7.1.1" resolve "^1.2.0" -babel-plugin-preact-require@^1.0.0: - version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/babel-plugin-preact-require/-/babel-plugin-preact-require-1.0.0.tgz#951d1b3753a4ff3ebf6ab53503aacacf5f85326b" - babel-plugin-styled-components@^1.2.0: version "1.5.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/babel-plugin-styled-components/-/babel-plugin-styled-components-1.5.1.tgz#31dbeb696d1354d1585e60d66c7905f5e474afcd" @@ -4437,12 +4433,6 @@ ignore@^3.3.3: version "3.3.8" resolved "https://neo.jfrog.io/neo/api/npm/npm/ignore/-/ignore-3.3.8.tgz?dl=https://registry.npmjs.org/ignore/-/ignore-3.3.8.tgz#3f8e9c35d38708a3a7e0e9abb6c73e7ee7707b2b" -immutability-helper@^2.1.2: - version "2.6.6" - resolved "https://neo.jfrog.io/neo/api/npm/npm/immutability-helper/-/immutability-helper-2.6.6.tgz#9b384c240d65257133c155086e16f678ca563b05" - dependencies: - invariant "^2.2.0" - import-local@^1.0.0: version "1.0.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/import-local/-/import-local-1.0.0.tgz#5e4ffdc03f4fe6c009c6729beb29631c2f8227bc" @@ -4536,12 +4526,6 @@ invariant@^2.0.0, invariant@^2.1.0, invariant@^2.2.2: dependencies: loose-envify "^1.0.0" -invariant@^2.2.0: - version "2.2.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/invariant/-/invariant-2.2.3.tgz#1a827dfde7dcbd7c323f0ca826be8fa7c5e9d688" - dependencies: - loose-envify "^1.0.0" - invert-kv@^1.0.0: version "1.0.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/invert-kv/-/invert-kv-1.0.0.tgz?dl=https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" @@ -5460,7 +5444,7 @@ locate-path@^2.0.0: p-locate "^2.0.0" path-exists "^3.0.0" -lodash-es@^4.2.1: +lodash-es@^4.17.5, lodash-es@^4.2.1: version "4.17.10" resolved "https://neo.jfrog.io/neo/api/npm/npm/lodash-es/-/lodash-es-4.17.10.tgz?dl=https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.10.tgz#62cd7104cdf5dd87f235a837f0ede0e8e5117e05" @@ -7267,66 +7251,6 @@ postcss@^6.0.12, postcss@^6.0.9: source-map "^0.5.7" supports-color "^4.4.0" -preact-compat-enzyme@^0.2.5: - version "0.2.5" - resolved "https://neo.jfrog.io/neo/api/npm/npm/preact-compat-enzyme/-/preact-compat-enzyme-0.2.5.tgz#1cad6c5c99f749d079fcdccf695470d88331d76f" - dependencies: - preact "8.x" - preact-compat "3.x" - -preact-compat@3.x: - version "3.17.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/preact-compat/-/preact-compat-3.17.0.tgz#528cfdfc301190c1a0f47567336be1f4be0266b3" - dependencies: - immutability-helper "^2.1.2" - preact-render-to-string "^3.6.0" - preact-transition-group "^1.1.0" - prop-types "^15.5.8" - standalone-react-addons-pure-render-mixin "^0.1.1" - -preact-compat@^3.11.0, preact-compat@^3.17.0: - version "3.18.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/preact-compat/-/preact-compat-3.18.0.tgz#ca430cc1f67193fb9feaf7c510832957b2ebe701" - dependencies: - immutability-helper "^2.1.2" - preact-render-to-string "^3.6.0" - preact-transition-group "^1.1.0" - prop-types "^15.5.8" - standalone-react-addons-pure-render-mixin "^0.1.1" - -preact-redux@^2.0.2: - version "2.0.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/preact-redux/-/preact-redux-2.0.3.tgz#960a535c322643cd35998f33f0c2e67bc1e7eaab" - -preact-render-to-string@^3.6.0, preact-render-to-string@^3.6.3: - version "3.7.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/preact-render-to-string/-/preact-render-to-string-3.7.0.tgz#7db4177454bc01395e0d01d6ac07bc5e838e31ee" - dependencies: - pretty-format "^3.5.1" - -preact-suber@^1.0.3: - version "1.0.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/preact-suber/-/preact-suber-1.0.3.tgz#e27f8add175c908f7c483e7930fe5a685866c009" - -preact-test-utils@^0.1.3: - version "0.1.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/preact-test-utils/-/preact-test-utils-0.1.3.tgz#26893e5a8ad7f4d8901bca02086b014f10b250e7" - dependencies: - preact-compat "^3.11.0" - simulate-event "^1.4.0" - -preact-transition-group@^1.1.0: - version "1.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/preact-transition-group/-/preact-transition-group-1.1.1.tgz#f0a49327ea515ece34ea2be864c4a7d29e5d6e10" - -preact@8.x: - version "8.2.5" - resolved "https://neo.jfrog.io/neo/api/npm/npm/preact/-/preact-8.2.5.tgz#cbfa3962a8012768159f6d01d46f9c1eb3213c0a" - -preact@^8.2.5: - version "8.2.9" - resolved "https://neo.jfrog.io/neo/api/npm/npm/preact/-/preact-8.2.9.tgz?dl=https://registry.npmjs.org/preact/-/preact-8.2.9.tgz#813ba9dd45e5d97c5ea0d6c86d375b3be711cc40" - precss@^2.0.0: version "2.0.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/precss/-/precss-2.0.0.tgz#7f567e3318e06d44c8fdbf9e58452e8358bf4b71" @@ -7452,10 +7376,6 @@ pretty-format@^22.0.3: ansi-regex "^3.0.0" ansi-styles "^3.2.0" -pretty-format@^3.5.1: - version "3.8.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/pretty-format/-/pretty-format-3.8.0.tgz#bfbed56d5e9a776645f4b1ff7aa1a3ac4fa3c385" - private@^0.1.6: version "0.1.7" resolved "https://neo.jfrog.io/neo/api/npm/npm/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" @@ -7713,6 +7633,15 @@ react-dock@^0.2.4: lodash.debounce "^3.1.1" prop-types "^15.5.8" +react-dom@^16.4.0: + version "16.4.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/react-dom/-/react-dom-16.4.0.tgz?dl=https://registry.npmjs.org/react-dom/-/react-dom-16.4.0.tgz#099f067dd5827ce36a29eaf9a6cdc7cbf6216b1e" + dependencies: + fbjs "^0.8.16" + loose-envify "^1.1.0" + object-assign "^4.1.1" + prop-types "^15.6.0" + react-dropzone@^4.1.2: version "4.2.10" resolved "https://neo.jfrog.io/neo/api/npm/npm/react-dropzone/-/react-dropzone-4.2.10.tgz?dl=https://registry.npmjs.org/react-dropzone/-/react-dropzone-4.2.10.tgz#49de76346f5f56bc3e76aeab5604f4cddd0e87fb" @@ -7757,10 +7686,36 @@ react-pure-render@^1.0.2: version "1.0.2" resolved "https://neo.jfrog.io/neo/api/npm/npm/react-pure-render/-/react-pure-render-1.0.2.tgz#9d8a928c7f2c37513c2d064e57b3e3c356e9fabb" +react-redux@^5.0.7: + version "5.0.7" + resolved "https://neo.jfrog.io/neo/api/npm/npm/react-redux/-/react-redux-5.0.7.tgz?dl=https://registry.npmjs.org/react-redux/-/react-redux-5.0.7.tgz#0dc1076d9afb4670f993ffaef44b8f8c1155a4c8" + dependencies: + hoist-non-react-statics "^2.5.0" + invariant "^2.0.0" + lodash "^4.17.5" + lodash-es "^4.17.5" + loose-envify "^1.1.0" + prop-types "^15.6.0" + +react-suber@1.0.4: + version "1.0.4" + resolved "https://neo.jfrog.io/neo/api/npm/npm/react-suber/-/react-suber-1.0.4.tgz?dl=https://registry.npmjs.org/react-suber/-/react-suber-1.0.4.tgz#99e86d0d13304584ba142025d38688124a92ea7c" + dependencies: + hoist-non-react-statics "^2.5.0" + react-timeago@^3.4.3: version "3.4.3" resolved "https://neo.jfrog.io/neo/api/npm/npm/react-timeago/-/react-timeago-3.4.3.tgz#eb9061eefb044e4a2b09ce8c99d34645b2dbfa25" +react@^16.4.0: + version "16.4.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/react/-/react-16.4.0.tgz?dl=https://registry.npmjs.org/react/-/react-16.4.0.tgz#402c2db83335336fba1962c08b98c6272617d585" + dependencies: + fbjs "^0.8.16" + loose-envify "^1.1.0" + object-assign "^4.1.1" + prop-types "^15.6.0" + read-cache@^1.0.0: version "1.0.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/read-cache/-/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774" @@ -8430,12 +8385,6 @@ simple-swizzle@^0.2.2: dependencies: is-arrayish "^0.3.1" -simulate-event@^1.4.0: - version "1.4.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/simulate-event/-/simulate-event-1.4.0.tgz#7f8a404116280bcbfe26347ddbcbffe5bd2be00e" - dependencies: - xtend "^4.0.1" - slash@^1.0.0: version "1.0.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/slash/-/slash-1.0.0.tgz?dl=https://registry.npmjs.org/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" @@ -8672,10 +8621,6 @@ staged-git-files@0.0.4: version "0.0.4" resolved "https://neo.jfrog.io/neo/api/npm/npm/staged-git-files/-/staged-git-files-0.0.4.tgz#d797e1b551ca7a639dec0237dc6eb4bb9be17d35" -standalone-react-addons-pure-render-mixin@^0.1.1: - version "0.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/standalone-react-addons-pure-render-mixin/-/standalone-react-addons-pure-render-mixin-0.1.1.tgz#3c7409f4c79c40de9ac72c616cf679a994f37551" - static-extend@^0.1.1: version "0.1.2" resolved "https://neo.jfrog.io/neo/api/npm/npm/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" From 607ded81ad3e6933c1468fc3cbcce80b98f84466 Mon Sep 17 00:00:00 2001 From: Oskar Hane Date: Fri, 8 Jun 2018 19:38:49 +0200 Subject: [PATCH 02/40] Fix some frames --- src/browser/components/Tables.jsx | 2 +- .../modules/DatabaseInfo/UserDetails.jsx | 13 +++++--- .../modules/Stream/AutoRefresh/styled.jsx | 2 +- .../modules/Stream/CypherFrame/CodeView.jsx | 1 + .../modules/Stream/Queries/QueriesFrame.jsx | 32 ++++++++++++------- src/browser/modules/Stream/Queries/styled.jsx | 4 +-- .../modules/Stream/SysInfoFrame/index.jsx | 19 ++++++----- src/browser/modules/User/RolesSelector.jsx | 2 +- 8 files changed, 46 insertions(+), 29 deletions(-) diff --git a/src/browser/components/Tables.jsx b/src/browser/components/Tables.jsx index c1e9d343b29..52a8d15a121 100644 --- a/src/browser/components/Tables.jsx +++ b/src/browser/components/Tables.jsx @@ -17,7 +17,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - +import React from 'react' import styled from 'styled-components' const StyledTable = styled.table` diff --git a/src/browser/modules/DatabaseInfo/UserDetails.jsx b/src/browser/modules/DatabaseInfo/UserDetails.jsx index a195f0526dd..d1a9dd6da90 100644 --- a/src/browser/modules/DatabaseInfo/UserDetails.jsx +++ b/src/browser/modules/DatabaseInfo/UserDetails.jsx @@ -91,11 +91,14 @@ export class UserDetails extends Component { Admin: - this.props.onItemClick(':server user add')} - > - :server user add - + + + this.props.onItemClick(':server user add')} + > + :server user add + + diff --git a/src/browser/modules/Stream/AutoRefresh/styled.jsx b/src/browser/modules/Stream/AutoRefresh/styled.jsx index 7d81f9f98e5..36b58ea97eb 100644 --- a/src/browser/modules/Stream/AutoRefresh/styled.jsx +++ b/src/browser/modules/Stream/AutoRefresh/styled.jsx @@ -17,7 +17,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - +import React from 'react' import styled from 'styled-components' import { FrameButton } from 'browser-components/buttons' import styles from './toggleStyles.css' diff --git a/src/browser/modules/Stream/CypherFrame/CodeView.jsx b/src/browser/modules/Stream/CypherFrame/CodeView.jsx index 470ae377e87..d9b7659d606 100644 --- a/src/browser/modules/Stream/CypherFrame/CodeView.jsx +++ b/src/browser/modules/Stream/CypherFrame/CodeView.jsx @@ -32,6 +32,7 @@ import { import { TableStatusbar } from './TableView' class ExpandableContent extends Component { + state = {} render () { return ( diff --git a/src/browser/modules/Stream/Queries/QueriesFrame.jsx b/src/browser/modules/Stream/Queries/QueriesFrame.jsx index 49ed2736adb..a2630aa2f75 100644 --- a/src/browser/modules/Stream/Queries/QueriesFrame.jsx +++ b/src/browser/modules/Stream/Queries/QueriesFrame.jsx @@ -207,24 +207,34 @@ export class QueriesFrame extends Component { ] const tableRows = queries.map(query => { return ( - - + + {query.host} - {query.username} - + + {query.username} + + {query.query} - - {query.parameters} + + {JSON.stringify(query.parameters, null, 2)} - - {query.metaData} + + {JSON.stringify(query.metaData, null, 2)} - + {query.elapsedTimeMillis} ms - + { return ( - + {heading[0]} ) diff --git a/src/browser/modules/Stream/Queries/styled.jsx b/src/browser/modules/Stream/Queries/styled.jsx index a39326e193a..db3be571c81 100644 --- a/src/browser/modules/Stream/Queries/styled.jsx +++ b/src/browser/modules/Stream/Queries/styled.jsx @@ -37,11 +37,11 @@ export const StyledTh = styled.th` height: 30px; vertical-align: top; padding: 5px; - width: {props => props.width || 'auto'}; + width: ${props => props.width || 'auto'}; ` export const StyledTd = styled.td` padding: 5px; - width: {props => props.width || 'auto'}; + width: ${props => props.width || 'auto'}; text-overflow: ellipsis; overflow: hidden; ` diff --git a/src/browser/modules/Stream/SysInfoFrame/index.jsx b/src/browser/modules/Stream/SysInfoFrame/index.jsx index 48b72f68321..b87c0be6dfc 100644 --- a/src/browser/modules/Stream/SysInfoFrame/index.jsx +++ b/src/browser/modules/Stream/SysInfoFrame/index.jsx @@ -261,28 +261,31 @@ export class SysInfoFrame extends Component { return data.map(props => { const { value } = props if (value instanceof Array) { - return value.map(v => ) + return value.map(v => ( + + )) } - return + return }) } render () { const content = this.props.isConnected ? ( - + {this.buildTableData(this.state.storeSizes)} - + {this.buildTableData(this.state.idAllocation)} - + {this.buildTableData(this.state.pageCache)} - + {this.buildTableData(this.state.transactions)} Causal Cluster Members{' '} @@ -296,12 +299,12 @@ export class SysInfoFrame extends Component { - + {this.buildTableData(this.state.ha)} - + diff --git a/src/browser/modules/User/RolesSelector.jsx b/src/browser/modules/User/RolesSelector.jsx index 71c8af72034..901bf070c0d 100644 --- a/src/browser/modules/User/RolesSelector.jsx +++ b/src/browser/modules/User/RolesSelector.jsx @@ -17,7 +17,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - +import React from 'react' import { StyledSelect } from './styled' const RolesSelector = ({ From b7dd90ce6bd5b964ef8090004631b87cfb5edd9c Mon Sep 17 00:00:00 2001 From: Oskar Hane Date: Tue, 12 Jun 2018 20:46:17 +0200 Subject: [PATCH 03/40] Fix guides --- src/browser/components/TabNavigation/Navigation.jsx | 2 +- src/browser/modules/Guides/Carousel.jsx | 7 ++++--- src/browser/modules/Guides/CarouselSlidePicker.jsx | 6 +++--- src/browser/modules/Guides/Guides.jsx | 13 +++++++++---- src/browser/modules/Guides/Slide.jsx | 5 +++-- 5 files changed, 20 insertions(+), 13 deletions(-) diff --git a/src/browser/components/TabNavigation/Navigation.jsx b/src/browser/components/TabNavigation/Navigation.jsx index 5578cd50bff..21ad147d3ff 100644 --- a/src/browser/components/TabNavigation/Navigation.jsx +++ b/src/browser/components/TabNavigation/Navigation.jsx @@ -96,7 +96,7 @@ class Navigation extends Component { onNavClick(item.name.toLowerCase())} isOpen={isOpen} > diff --git a/src/browser/modules/Guides/Carousel.jsx b/src/browser/modules/Guides/Carousel.jsx index 090c19a7316..1cba8cc770f 100644 --- a/src/browser/modules/Guides/Carousel.jsx +++ b/src/browser/modules/Guides/Carousel.jsx @@ -31,12 +31,13 @@ import { } from './styled' export default class Carousel extends Component { + state = { + visibleSlide: 0, + firstRender: true + } constructor (props) { super(props) this.slides = this.props.slides || [] - this.state = { - visibleSlide: 0 - } } shouldComponentUpdate () { return this.state.firstRender diff --git a/src/browser/modules/Guides/CarouselSlidePicker.jsx b/src/browser/modules/Guides/CarouselSlidePicker.jsx index 6967f6704b2..f6c21e1f24a 100644 --- a/src/browser/modules/Guides/CarouselSlidePicker.jsx +++ b/src/browser/modules/Guides/CarouselSlidePicker.jsx @@ -17,7 +17,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - +import React from 'react' import { CarouselIndicatorInactive, CarouselIndicatorActive, @@ -29,9 +29,9 @@ const CarouselSlidePicker = ({ slides, visibleSlide, onClickEvent }) => { const Indicators = slides.map( (_, i) => i !== visibleSlide ? ( - onClickEvent(i)} /> + onClickEvent(i)} /> ) : ( - onClickEvent(i)} /> + onClickEvent(i)} /> ) ) return {Indicators} diff --git a/src/browser/modules/Guides/Guides.jsx b/src/browser/modules/Guides/Guides.jsx index d32a73ed540..8707a40e667 100644 --- a/src/browser/modules/Guides/Guides.jsx +++ b/src/browser/modules/Guides/Guides.jsx @@ -27,11 +27,14 @@ import Carousel from './Carousel' export default class Guides extends Component { constructor (props) { super(props) + this.ref = React.createRef() this.state = { slides: null, firstRender: true } } componentDidMount () { - if (!this.base) return - const slides = this.base.getElementsByTagName('slide') + if (!this.ref) return + if (!this.ref.current) return + console.log('this.ref.current: ', this.ref.current) + const slides = this.ref.current.getElementsByTagName('slide') let reactSlides = this if (slides.length > 0) { reactSlides = Array.from(slides).map(slide => { @@ -66,9 +69,11 @@ export default class Guides extends Component { ) } if (this.props.withDirectives) { - return } /> + return ( + } /> + ) } else { - return + return } } } diff --git a/src/browser/modules/Guides/Slide.jsx b/src/browser/modules/Guides/Slide.jsx index ac243ba1bfb..1f8b83daca1 100644 --- a/src/browser/modules/Guides/Slide.jsx +++ b/src/browser/modules/Guides/Slide.jsx @@ -21,13 +21,14 @@ import React from 'react' import styles from './style.css' import { StyledSlide } from './styled.jsx' -const Slide = ({ html }) => { +const Slide = React.forwardRef(({ html }, ref) => { return ( ) -} +}) export default Slide From 809c260f4443ed5f6c6983d369acff0e199dbb06 Mon Sep 17 00:00:00 2001 From: Oskar Hane Date: Tue, 12 Jun 2018 20:59:31 +0200 Subject: [PATCH 04/40] Fix ascii slider --- .../modules/Stream/CypherFrame/AsciiView.jsx | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/src/browser/modules/Stream/CypherFrame/AsciiView.jsx b/src/browser/modules/Stream/CypherFrame/AsciiView.jsx index 5674708a606..ca3a3c42a7f 100644 --- a/src/browser/modules/Stream/CypherFrame/AsciiView.jsx +++ b/src/browser/modules/Stream/CypherFrame/AsciiView.jsx @@ -138,23 +138,17 @@ export class AsciiStatusbar extends Component { componentDidMount () { this.makeState(this.props) } - componentWillMount () { - this.debouncedMaxColWidthChanged = debounce( - this.maxColWidthChanged, - 25, - this - ) - } - maxColWidthChanged (w) { - this.setState({ maxColWidth: w.target.value }) - this.props.setParentState({ _asciiMaxColWidth: w.target.value }) + maxColWidthChanged = w => { + const value = w.target.value + this.setState({ maxColWidth: value }) + this.props.setParentState({ _asciiMaxColWidth: value }) } setMaxSliderWidth (w) { this.setState({ maxSliderWidth: w }) } render () { const { maxColWidth, maxSliderWidth } = this.state - const onInput = this.debouncedMaxColWidthChanged + const onInput = this.maxColWidthChanged return ( From 2aa7ccee65f8b27a07fdcc476418ce24117a4dc1 Mon Sep 17 00:00:00 2001 From: Oskar Hane Date: Tue, 12 Jun 2018 21:10:24 +0200 Subject: [PATCH 05/40] Fix viz --- .../modules/D3Visualization/components/RowExpandToggle.jsx | 7 +++++-- src/browser/modules/D3Visualization/components/styled.jsx | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/src/browser/modules/D3Visualization/components/RowExpandToggle.jsx b/src/browser/modules/D3Visualization/components/RowExpandToggle.jsx index d5478ed98dc..689c3ca99b3 100644 --- a/src/browser/modules/D3Visualization/components/RowExpandToggle.jsx +++ b/src/browser/modules/D3Visualization/components/RowExpandToggle.jsx @@ -21,10 +21,13 @@ import React, { Component } from 'react' import { StyledRowToggle, StyledCaret } from './styled' -const getHeightFromElem = rowElem => - rowElem && rowElem.base ? rowElem.base.clientHeight : 0 +const getHeightFromElem = rowElem => { + console.log('rowElem: ', rowElem) + return rowElem && rowElem.base ? rowElem.base.clientHeight : 0 +} export class RowExpandToggleComponent extends Component { + state = {} updateDimensions () { this.setState({ rowHeight: getHeightFromElem(this.props.rowElem) }) } diff --git a/src/browser/modules/D3Visualization/components/styled.jsx b/src/browser/modules/D3Visualization/components/styled.jsx index 4fce0554eb3..055b815d3ca 100644 --- a/src/browser/modules/D3Visualization/components/styled.jsx +++ b/src/browser/modules/D3Visualization/components/styled.jsx @@ -254,7 +254,7 @@ export const StyledTokenContextMenuKey = styled(StyledLabelToken)` ` export const StyledTokenCount = styled.span`font-weight: normal;` -export const StyledLegendContents = styled.div` +export const StyledLegendContents = styled.ul` float: left; line-height: 1em; position: relative; From 27d3b337d420994e80b9e801606176f3c2ca6c7d Mon Sep 17 00:00:00 2001 From: Oskar Hane Date: Tue, 12 Jun 2018 21:19:52 +0200 Subject: [PATCH 06/40] Fix RowExpandToggleComponent refs --- .../modules/D3Visualization/components/Inspector.jsx | 4 ++-- .../modules/D3Visualization/components/Legend.jsx | 4 ++-- .../D3Visualization/components/RowExpandToggle.jsx | 12 +++++------- src/browser/modules/Guides/Guides.jsx | 1 - 4 files changed, 9 insertions(+), 12 deletions(-) diff --git a/src/browser/modules/D3Visualization/components/Inspector.jsx b/src/browser/modules/D3Visualization/components/Inspector.jsx index 36ef2cc721f..b17be4e721a 100644 --- a/src/browser/modules/D3Visualization/components/Inspector.jsx +++ b/src/browser/modules/D3Visualization/components/Inspector.jsx @@ -213,7 +213,7 @@ export class InspectorComponent extends Component { {type === 'canvas' ? null : ( { - const inspectorHeight = this.footerRowElem.base.clientHeight + const inspectorHeight = this.footerRowElem.clientHeight this.props.onExpandToggled && this.props.onExpandToggled( this.state.contracted, diff --git a/src/browser/modules/D3Visualization/components/Legend.jsx b/src/browser/modules/D3Visualization/components/Legend.jsx index d31b1a22bf0..2b25e3921ab 100644 --- a/src/browser/modules/D3Visualization/components/Legend.jsx +++ b/src/browser/modules/D3Visualization/components/Legend.jsx @@ -88,7 +88,7 @@ export class LegendComponent extends Component { > { - console.log('rowElem: ', rowElem) - return rowElem && rowElem.base ? rowElem.base.clientHeight : 0 -} +const getHeightFromElem = rowElem => + rowElem && rowElem ? rowElem.clientHeight : 0 export class RowExpandToggleComponent extends Component { state = {} - updateDimensions () { + updateDimensions = () => { this.setState({ rowHeight: getHeightFromElem(this.props.rowElem) }) } componentDidMount () { this.updateDimensions() - window.addEventListener('resize', this.updateDimensions.bind(this)) + window.addEventListener('resize', this.updateDimensions) } componentWillUnmount () { - window.removeEventListener('resize', this.updateDimensions.bind(this)) + window.removeEventListener('resize', this.updateDimensions) } componentDidUpdate (prevProps, prevState) { diff --git a/src/browser/modules/Guides/Guides.jsx b/src/browser/modules/Guides/Guides.jsx index 8707a40e667..c7e6d0110b6 100644 --- a/src/browser/modules/Guides/Guides.jsx +++ b/src/browser/modules/Guides/Guides.jsx @@ -33,7 +33,6 @@ export default class Guides extends Component { componentDidMount () { if (!this.ref) return if (!this.ref.current) return - console.log('this.ref.current: ', this.ref.current) const slides = this.ref.current.getElementsByTagName('slide') let reactSlides = this if (slides.length > 0) { From 9f0d387daa7610dae468255c406a0ff476e669cf Mon Sep 17 00:00:00 2001 From: Oskar Hane Date: Tue, 12 Jun 2018 21:26:55 +0200 Subject: [PATCH 07/40] Fix help frame --- src/browser/modules/Stream/HelpFrame.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/browser/modules/Stream/HelpFrame.jsx b/src/browser/modules/Stream/HelpFrame.jsx index 93b39267756..53282ce0735 100644 --- a/src/browser/modules/Stream/HelpFrame.jsx +++ b/src/browser/modules/Stream/HelpFrame.jsx @@ -17,7 +17,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - +import React from 'react' import Slide from '../Guides/Slide' import * as html from '../Help/html' import Directives from 'browser-components/Directives' From d697f0d27436b366585b57614f8c54bc3565bba3 Mon Sep 17 00:00:00 2001 From: Oskar Hane Date: Tue, 12 Jun 2018 21:27:05 +0200 Subject: [PATCH 08/40] Fix editor --- src/browser/modules/Editor/Editor.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/browser/modules/Editor/Editor.jsx b/src/browser/modules/Editor/Editor.jsx index 67f863ca8a2..8caa6f219dc 100644 --- a/src/browser/modules/Editor/Editor.jsx +++ b/src/browser/modules/Editor/Editor.jsx @@ -305,7 +305,7 @@ export class Editor extends Component { updateHeight = () => { if (this.editor) { - const editorHeight = this.editor.base.clientHeight + const editorHeight = this.editor.editorReference.clientHeight if (editorHeight !== this.state.editorHeight) { this.setState({ editorHeight }) } From bc3b2fa6858730d91d7f9604b1aecc7f98a38a75 Mon Sep 17 00:00:00 2001 From: Oskar Hane Date: Tue, 12 Jun 2018 21:27:12 +0200 Subject: [PATCH 09/40] Remove logging --- src/browser/index.jsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/browser/index.jsx b/src/browser/index.jsx index cbc407dd9c0..831d2237f3d 100644 --- a/src/browser/index.jsx +++ b/src/browser/index.jsx @@ -84,8 +84,6 @@ const env = window && window.neo4jDesktopApi ? DESKTOP : WEB // Signal app upstart (for epics) store.dispatch({ type: APP_START, url: window.location.href, env }) -console.log('App: ', App) -console.log('Capp: ', Capp) ReactDOM.render( From 97a3435e70c9913d4a30c9a5ea7963dcce9aecb3 Mon Sep 17 00:00:00 2001 From: Oskar Hane Date: Thu, 14 Jun 2018 14:02:59 +0200 Subject: [PATCH 10/40] Fix favorites dragging anf key warning --- src/browser/init.js | 7 +++++++ src/browser/modules/Sidebar/Favorite.jsx | 18 +++++++++++++++--- src/browser/modules/Sidebar/Favorites.jsx | 10 ++++++++-- 3 files changed, 30 insertions(+), 5 deletions(-) diff --git a/src/browser/init.js b/src/browser/init.js index e104d2eaee5..b22eb61555c 100644 --- a/src/browser/init.js +++ b/src/browser/init.js @@ -28,6 +28,13 @@ import './styles/font-awesome.min.css' import './styles/inconsolata.css' import './styles/open-sans.css' +// non web env (just for tests) +if (typeof btoa === 'undefined') { + global.btoa = function (str) { + return Buffer.from(str, 'binary').toString('base64') + } +} + // if (process.env.NODE_ENV !== 'production') { // require('react/devtools') // } diff --git a/src/browser/modules/Sidebar/Favorite.jsx b/src/browser/modules/Sidebar/Favorite.jsx index f561bdb14c4..12beb384ed3 100644 --- a/src/browser/modules/Sidebar/Favorite.jsx +++ b/src/browser/modules/Sidebar/Favorite.jsx @@ -114,11 +114,23 @@ const favoriteTarget = { } } +const StyledListItemRef = React.forwardRef((props, ref) => { + return +}) class FavoriteDp extends Component { + constructor () { + super() + this.itemRef = React.createRef() + } + componentDidMount () { + this.props.onItemRef && this.props.onItemRef(this.itemRef.current) + } + render () { const name = extractNameFromCommand(this.props.content) let favoriteContent = ( - @@ -140,7 +152,7 @@ class FavoriteDp extends Component { onConfirmed={() => this.props.removeClick(this.props.id)} /> - + ) if (this.props.isStatic) { @@ -158,7 +170,7 @@ class FavoriteDg extends Component { } else { return this.props.connectDragSource(
- + (this.base = ref)} {...this.props} />
) } diff --git a/src/browser/modules/Sidebar/Favorites.jsx b/src/browser/modules/Sidebar/Favorites.jsx index 07629631e86..e0394095a0f 100644 --- a/src/browser/modules/Sidebar/Favorites.jsx +++ b/src/browser/modules/Sidebar/Favorites.jsx @@ -18,6 +18,7 @@ * along with this program. If not, see . */ +/* global btoa */ import React, { Component } from 'react' import { connect } from 'react-redux' import { withBus } from 'react-suber' @@ -47,7 +48,7 @@ const mapFavorites = (favorites, props, isChild, moveAction) => { return ( {Favorites} + return ( + + {Favorites} + + ) }) return ( From 2578c697413832ab2c3e5778bc257d9db0f4ea10 Mon Sep 17 00:00:00 2001 From: Oskar Hane Date: Thu, 14 Jun 2018 14:05:47 +0200 Subject: [PATCH 11/40] Fix html validation error --- src/browser/modules/Sidebar/DocumentItems.jsx | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/src/browser/modules/Sidebar/DocumentItems.jsx b/src/browser/modules/Sidebar/DocumentItems.jsx index 08835182d29..caae04549c3 100644 --- a/src/browser/modules/Sidebar/DocumentItems.jsx +++ b/src/browser/modules/Sidebar/DocumentItems.jsx @@ -45,13 +45,12 @@ export const DocumentItems = ({ header, items, onItemClick = null }) => { ) default: return ( - - onItemClick(item.command)} - name={item.name} - type={item.type} - /> - + onItemClick(item.command)} + name={item.name} + type={item.type} + /> ) } }) From 42cda5f0a018675d401d50c409cb15ecc6b43405 Mon Sep 17 00:00:00 2001 From: Oskar Hane Date: Thu, 14 Jun 2018 14:28:18 +0200 Subject: [PATCH 12/40] Fix more key and html errors --- src/browser/components/Form.jsx | 4 ++-- src/browser/components/icons/Icons.jsx | 3 ++- src/browser/modules/Main/SyncReminderBanner.jsx | 1 + src/browser/modules/Sidebar/Settings.jsx | 13 +++++++------ 4 files changed, 12 insertions(+), 9 deletions(-) diff --git a/src/browser/components/Form.jsx b/src/browser/components/Form.jsx index a52e8307b7a..7ea2a4a40fe 100644 --- a/src/browser/components/Form.jsx +++ b/src/browser/components/Form.jsx @@ -69,12 +69,12 @@ export class RadioSelector extends Component {
{this.props.options.map(option => { return ( - + { + onChange={event => { this.state.selectedValue = option this.props.onChange(event) }} diff --git a/src/browser/components/icons/Icons.jsx b/src/browser/components/icons/Icons.jsx index 36d71fdeb0e..530fd0a6b26 100644 --- a/src/browser/components/icons/Icons.jsx +++ b/src/browser/components/icons/Icons.jsx @@ -42,12 +42,13 @@ class IconContainer extends Component { isOpen, text, regulateSize, + suppressIconStyles, ...rest } = this.props const state = this.state.mouseover || isOpen ? activeStyle || '' : inactiveStyle || '' - const newClass = this.props.suppressIconStyles + const newClass = suppressIconStyles ? this.props.className : state + ' ' + this.props.className const regulateSizeStyle = regulateSize diff --git a/src/browser/modules/Main/SyncReminderBanner.jsx b/src/browser/modules/Main/SyncReminderBanner.jsx index b60658dfa57..aa93d913139 100644 --- a/src/browser/modules/Main/SyncReminderBanner.jsx +++ b/src/browser/modules/Main/SyncReminderBanner.jsx @@ -42,6 +42,7 @@ import { } from 'shared/modules/sync/syncDuck' class SyncReminderBanner extends Component { + state = {} importSyncManager = () => { if (this.syncManager) return Promise.resolve(this.syncManager) return import(/* webpackChunkName: "sync-manager" */ 'shared/modules/sync/SyncSignInManager').then( diff --git a/src/browser/modules/Sidebar/Settings.jsx b/src/browser/modules/Sidebar/Settings.jsx index 82082e87b96..d1e81c802b8 100644 --- a/src/browser/modules/Sidebar/Settings.jsx +++ b/src/browser/modules/Sidebar/Settings.jsx @@ -17,6 +17,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ +/* global btoa */ import React from 'react' import { connect } from 'react-redux' import * as actions from 'shared/modules/settings/settingsDuck' @@ -141,7 +142,7 @@ const visualSettings = [ export const Settings = ({ settings, onSettingsSave = () => {} }) => { if (!settings) return null - const mappedSettings = visualSettings.map((visualSetting, i) => { + const mappedSettings = visualSettings.map((visualSetting, oi) => { const title = {visualSetting.title} const mapSettings = visualSetting.settings .map((settingObj, i) => { @@ -152,7 +153,7 @@ export const Settings = ({ settings, onSettingsSave = () => {} }) => { if (!settingObj[setting].type || settingObj[setting].type === 'input') { return ( - + {visual} { @@ -167,7 +168,7 @@ export const Settings = ({ settings, onSettingsSave = () => {} }) => { ) } else if (settingObj[setting].type === 'radio') { return ( - + {visual} {} }) => { ) } else if (settingObj[setting].type === 'checkbox') { return ( - + { settings[setting] = event.target.checked @@ -196,10 +197,10 @@ export const Settings = ({ settings, onSettingsSave = () => {} }) => { }) .filter(setting => setting !== false) return ( -
+ {title} {mapSettings} -
+ ) }) From 532d0eb21114de958afbcdc5693decf975b9d2c7 Mon Sep 17 00:00:00 2001 From: Oskar Hane Date: Thu, 14 Jun 2018 14:41:19 +0200 Subject: [PATCH 13/40] Fix visualization height measure timing --- src/browser/modules/Stream/FrameTemplate.jsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/browser/modules/Stream/FrameTemplate.jsx b/src/browser/modules/Stream/FrameTemplate.jsx index 17de635c45a..6d45f762d01 100644 --- a/src/browser/modules/Stream/FrameTemplate.jsx +++ b/src/browser/modules/Stream/FrameTemplate.jsx @@ -47,7 +47,7 @@ class FrameTemplate extends Component { this.props.onResize( this.state.fullscreen, this.state.collapse, - this.state.lastHeight + this.frameContentElement.clientHeight ) ) } @@ -90,7 +90,7 @@ class FrameTemplate extends Component { this.setState({ lastHeight: this.frameContentElement.clientHeight }) } } - setFrameContentElement (el) { + setFrameContentElement = el => { this.frameContentElement = el } render () { @@ -116,7 +116,7 @@ class FrameTemplate extends Component { {this.props.contents} From 7d16eac7a580d40d4c2c34a23c1a28caa0f8c6b1 Mon Sep 17 00:00:00 2001 From: Oskar Hane Date: Thu, 14 Jun 2018 14:54:05 +0200 Subject: [PATCH 14/40] Load intercom when component mounted rather than in constructor --- src/browser/modules/Intercom/index.jsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/browser/modules/Intercom/index.jsx b/src/browser/modules/Intercom/index.jsx index b7787e486e7..cafd2d57d07 100644 --- a/src/browser/modules/Intercom/index.jsx +++ b/src/browser/modules/Intercom/index.jsx @@ -24,14 +24,13 @@ import { canUseDOM } from 'services/utils' import { updateData } from 'shared/modules/udc/udcDuck' export class Intercom extends Component { - constructor (props) { - super(props) + componentDidMount () { const { appID, updateData, children, // eslint-disable-line ...otherProps - } = props + } = this.props if (!appID || !canUseDOM()) { return } From 77ac5470ff7efcf3b6362d974a349df5c9500b62 Mon Sep 17 00:00:00 2001 From: Oskar Hane Date: Fri, 15 Jun 2018 09:13:38 +0200 Subject: [PATCH 15/40] Add tests for all (?) commands --- e2e_tests/integration/commands.spec.js | 67 ++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 e2e_tests/integration/commands.spec.js diff --git a/e2e_tests/integration/commands.spec.js b/e2e_tests/integration/commands.spec.js new file mode 100644 index 00000000000..6543568af46 --- /dev/null +++ b/e2e_tests/integration/commands.spec.js @@ -0,0 +1,67 @@ +/* + * Copyright (c) 2002-2018 "Neo4j, Inc" + * Network Engine for Objects in Lund AB [http://neotechnology.com] + * + * This file is part of Neo4j. + * + * Neo4j is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +/* global Cypress, cy, test, expect */ + +const commands = [ + ':style', + ':server user add', + ':server user list', + ':server change-password', + ':server status', + ':server connect', + ':help', + ':play cypher', + ':play https://guides.neo4j.com/reco', + ':sysinfo', + ':schema', + ':history', + ':config', + ':params', + ':param x => 1', + ':param y: 2', + ':queries', + ':get /', + ':unknown', + 'RETURN rand()' +] + +describe('Commands', () => { + it('can run all simple commands not connected without blowing up', () => { + commands.forEach(cmd => { + cy.executeCommand(cmd) + cy.executeCommand(':clear') + }) + }) + it('can show connection error', () => { + const password = 'unlikely password' + cy.connect('neo4j', password, undefined, false) + }) + it('can connect', () => { + const password = Cypress.env('browser-password') || 'newpassword' + cy.connect('neo4j', password) + }) + it('can run all simple commands while connected without blowing up', () => { + commands.forEach(cmd => { + cy.executeCommand(cmd) + cy.executeCommand(':clear') + }) + }) +}) From 140bbcc3c5de84d81014f16782ac3bec254cd672 Mon Sep 17 00:00:00 2001 From: Oskar Hane Date: Fri, 15 Jun 2018 09:14:19 +0200 Subject: [PATCH 16/40] Fix errors found in tests --- src/browser/components/EditionView.jsx | 2 +- src/browser/modules/Stream/Auth/ConnectForm.jsx | 6 +++--- src/browser/modules/Stream/Auth/DisconnectFrame.jsx | 2 +- src/browser/modules/Stream/ErrorFrame.jsx | 2 +- src/browser/modules/Stream/FrameError.jsx | 2 +- src/browser/modules/Stream/FrameSuccess.jsx | 2 +- src/browser/modules/Stream/HistoryFrame.jsx | 2 +- src/browser/modules/Stream/HistoryRow.jsx | 2 +- src/browser/modules/Stream/ParamsFrame.jsx | 2 +- src/browser/modules/Stream/PreFrame.jsx | 2 +- src/browser/modules/Stream/StyleFrame.jsx | 1 + 11 files changed, 13 insertions(+), 12 deletions(-) diff --git a/src/browser/components/EditionView.jsx b/src/browser/components/EditionView.jsx index 332229541c5..b4dca5fee3f 100644 --- a/src/browser/components/EditionView.jsx +++ b/src/browser/components/EditionView.jsx @@ -17,7 +17,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - +import React from 'react' import styled from 'styled-components' import { H3 } from 'browser-components/headers' diff --git a/src/browser/modules/Stream/Auth/ConnectForm.jsx b/src/browser/modules/Stream/Auth/ConnectForm.jsx index 88af43b8b2b..2d2043d8575 100644 --- a/src/browser/modules/Stream/Auth/ConnectForm.jsx +++ b/src/browser/modules/Stream/Auth/ConnectForm.jsx @@ -56,7 +56,7 @@ export default class ConnectForm extends Component { data-test-id='boltaddress' innerRef={el => this.formKeyHandler.registerInput(el, 1)} onChange={this.props.onHostChange} - value={this.props.host} + defaultValue={this.props.host} /> @@ -65,7 +65,7 @@ export default class ConnectForm extends Component { data-test-id='username' innerRef={el => this.formKeyHandler.registerInput(el, 2)} onChange={this.props.onUsernameChange} - value={this.props.username} + defaultValue={this.props.username} /> @@ -74,7 +74,7 @@ export default class ConnectForm extends Component { data-test-id='password' innerRef={el => this.formKeyHandler.registerInput(el, 3)} onChange={this.props.onPasswordChange} - value={this.props.password} + defaultValue={this.props.password} type='password' /> diff --git a/src/browser/modules/Stream/Auth/DisconnectFrame.jsx b/src/browser/modules/Stream/Auth/DisconnectFrame.jsx index 10ba0f56736..1320b6e6727 100644 --- a/src/browser/modules/Stream/Auth/DisconnectFrame.jsx +++ b/src/browser/modules/Stream/Auth/DisconnectFrame.jsx @@ -17,7 +17,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - +import React from 'react' import FrameTemplate from '../FrameTemplate' import { StyledConnectionFrame, StyledConnectionAside } from './styled' import { H3 } from 'browser-components/headers' diff --git a/src/browser/modules/Stream/ErrorFrame.jsx b/src/browser/modules/Stream/ErrorFrame.jsx index ba805fc17ca..f9cd2108082 100644 --- a/src/browser/modules/Stream/ErrorFrame.jsx +++ b/src/browser/modules/Stream/ErrorFrame.jsx @@ -17,7 +17,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - +import React from 'react' import FrameTemplate from './FrameTemplate' import * as e from 'services/exceptionMessages' import { getErrorMessage } from 'services/exceptions' diff --git a/src/browser/modules/Stream/FrameError.jsx b/src/browser/modules/Stream/FrameError.jsx index 41284b81983..99f5f8ac517 100644 --- a/src/browser/modules/Stream/FrameError.jsx +++ b/src/browser/modules/Stream/FrameError.jsx @@ -17,7 +17,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - +import React from 'react' import { ExclamationTriangleIcon } from 'browser-components/icons/Icons' import Ellipsis from 'browser-components/Ellipsis' import { errorMessageFormater } from './errorMessageFormater' diff --git a/src/browser/modules/Stream/FrameSuccess.jsx b/src/browser/modules/Stream/FrameSuccess.jsx index 71bdca9bf88..74574af6fa1 100644 --- a/src/browser/modules/Stream/FrameSuccess.jsx +++ b/src/browser/modules/Stream/FrameSuccess.jsx @@ -17,7 +17,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - +import React from 'react' const FrameSuccess = props => { if (!props || !props.message) return null return {props.message} diff --git a/src/browser/modules/Stream/HistoryFrame.jsx b/src/browser/modules/Stream/HistoryFrame.jsx index 75b7f44cc6a..28658ebb7a9 100644 --- a/src/browser/modules/Stream/HistoryFrame.jsx +++ b/src/browser/modules/Stream/HistoryFrame.jsx @@ -17,7 +17,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - +import React from 'react' import { withBus } from 'react-suber' import * as editor from 'shared/modules/editor/editorDuck' import FrameTemplate from './FrameTemplate' diff --git a/src/browser/modules/Stream/HistoryRow.jsx b/src/browser/modules/Stream/HistoryRow.jsx index 8df309d1d09..019cf5d4e19 100644 --- a/src/browser/modules/Stream/HistoryRow.jsx +++ b/src/browser/modules/Stream/HistoryRow.jsx @@ -17,7 +17,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - +import React from 'react' import { StyledHistoryRow } from './styled' const HistoryRow = ({ entry, handleEntryClick }) => { diff --git a/src/browser/modules/Stream/ParamsFrame.jsx b/src/browser/modules/Stream/ParamsFrame.jsx index c8223239914..d21a1eddfaf 100644 --- a/src/browser/modules/Stream/ParamsFrame.jsx +++ b/src/browser/modules/Stream/ParamsFrame.jsx @@ -17,7 +17,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - +import React from 'react' import Render from 'browser-components/Render' import { ExclamationTriangleIcon } from 'browser-components/icons/Icons' import Ellipsis from 'browser-components/Ellipsis' diff --git a/src/browser/modules/Stream/PreFrame.jsx b/src/browser/modules/Stream/PreFrame.jsx index d89e46f4ddf..a6355f5a412 100644 --- a/src/browser/modules/Stream/PreFrame.jsx +++ b/src/browser/modules/Stream/PreFrame.jsx @@ -17,7 +17,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - +import React from 'react' import FrameTemplate from './FrameTemplate' import { PaddedDiv } from './styled' diff --git a/src/browser/modules/Stream/StyleFrame.jsx b/src/browser/modules/Stream/StyleFrame.jsx index d5a8b6757e3..f6106d04887 100644 --- a/src/browser/modules/Stream/StyleFrame.jsx +++ b/src/browser/modules/Stream/StyleFrame.jsx @@ -17,6 +17,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ +import React from 'react' import { connect } from 'react-redux' import FrameTemplate from './FrameTemplate' import { From bc7175455c46883c07ca512b9b8fc340417fdc5e Mon Sep 17 00:00:00 2001 From: Oskar Hane Date: Fri, 15 Jun 2018 10:53:06 +0200 Subject: [PATCH 17/40] Fix linter errors --- src/browser/components/DesktopIntegration/index.jsx | 2 +- src/browser/index.jsx | 2 +- src/browser/modules/Intercom/index.jsx | 2 +- src/browser/modules/Stream/CypherFrame/AsciiView.jsx | 2 +- src/browser/modules/Sync/BrowserSyncInit.jsx | 2 +- src/browser/modules/UserInteraction/index.jsx | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/browser/components/DesktopIntegration/index.jsx b/src/browser/components/DesktopIntegration/index.jsx index bb057f8e6c3..7b879fc0563 100644 --- a/src/browser/components/DesktopIntegration/index.jsx +++ b/src/browser/components/DesktopIntegration/index.jsx @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -import React, { Component } from 'react' +import { Component } from 'react' import { getActiveGraph, getCredentials, eventToHandler } from './helpers' export default class DesktopIntegration extends Component { diff --git a/src/browser/index.jsx b/src/browser/index.jsx index 831d2237f3d..a0d8101dc13 100644 --- a/src/browser/index.jsx +++ b/src/browser/index.jsx @@ -29,7 +29,7 @@ import { } from 'suber' import { BusProvider } from 'react-suber' import './init.js' -import App, { App as Capp } from './modules/App/App' +import App from './modules/App/App' import reducers from 'shared/rootReducer' import epics from 'shared/rootEpic' diff --git a/src/browser/modules/Intercom/index.jsx b/src/browser/modules/Intercom/index.jsx index cafd2d57d07..3cdefca1b71 100644 --- a/src/browser/modules/Intercom/index.jsx +++ b/src/browser/modules/Intercom/index.jsx @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -import React, { Component } from 'react' +import { Component } from 'react' import { connect } from 'react-redux' import { canUseDOM } from 'services/utils' import { updateData } from 'shared/modules/udc/udcDuck' diff --git a/src/browser/modules/Stream/CypherFrame/AsciiView.jsx b/src/browser/modules/Stream/CypherFrame/AsciiView.jsx index ca3a3c42a7f..096b20cf946 100644 --- a/src/browser/modules/Stream/CypherFrame/AsciiView.jsx +++ b/src/browser/modules/Stream/CypherFrame/AsciiView.jsx @@ -22,7 +22,7 @@ import React, { Component } from 'react' import asciitable from 'ascii-data-table' import Render from 'browser-components/Render' import Ellipsis from 'browser-components/Ellipsis' -import { debounce, shallowEquals, deepEquals } from 'services/utils' +import { shallowEquals, deepEquals } from 'services/utils' import { StyledStatsBar, PaddedDiv, diff --git a/src/browser/modules/Sync/BrowserSyncInit.jsx b/src/browser/modules/Sync/BrowserSyncInit.jsx index 96f07969371..77cacb22b39 100644 --- a/src/browser/modules/Sync/BrowserSyncInit.jsx +++ b/src/browser/modules/Sync/BrowserSyncInit.jsx @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -import React, { Component } from 'react' +import { Component } from 'react' import { connect } from 'react-redux' import { diff --git a/src/browser/modules/UserInteraction/index.jsx b/src/browser/modules/UserInteraction/index.jsx index b5060c63c95..b2330f4774e 100644 --- a/src/browser/modules/UserInteraction/index.jsx +++ b/src/browser/modules/UserInteraction/index.jsx @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -import React, { Component } from 'react' +import { Component } from 'react' import { withBus } from 'react-suber' import { throttle } from 'services/utils' import { USER_INTERACTION } from 'shared/modules/userInteraction/userInteractionDuck' From 1ece5fa5b4aa74c85e8eeca6ab57a9a17703f6a3 Mon Sep 17 00:00:00 2001 From: Oskar Hane Date: Fri, 15 Jun 2018 11:06:08 +0200 Subject: [PATCH 18/40] =?UTF-8?q?Remove=20test=20utils=20we=E2=80=99re=20n?= =?UTF-8?q?ot=20going=20to=20use?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 2 - yarn.lock | 176 ++------------------------------------------------- 2 files changed, 6 insertions(+), 172 deletions(-) diff --git a/package.json b/package.json index f93b5a77dae..ad4328eb75c 100644 --- a/package.json +++ b/package.json @@ -78,7 +78,6 @@ "copy-webpack-plugin": "^4.0.1", "css-loader": "^0.28.7", "cypress": "^3.0.1", - "enzyme": "^2.9.1", "eslint": "^4.6.1", "eslint-config-standard": "^10.2.1", "eslint-config-standard-jsx": "^4.0.1", @@ -106,7 +105,6 @@ "precss": "^2.0.0", "prettier-eslint": "^7.1.0", "prettier-eslint-cli": "^4.3.0", - "react-addons-test-utils": "^15.0.2", "react-hot-loader": "^1.3.0", "redux-devtools": "^3.2.0", "redux-devtools-dock-monitor": "^1.1.1", diff --git a/yarn.lock b/yarn.lock index e0d7a7a4dc1..75ed74824f7 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1830,27 +1830,6 @@ check-types@^7.3.0: version "7.3.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/check-types/-/check-types-7.3.0.tgz?dl=https://registry.npmjs.org/check-types/-/check-types-7.3.0.tgz#468f571a4435c24248f5fd0cb0e8d87c3c341e7d" -cheerio@^0.22.0: - version "0.22.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/cheerio/-/cheerio-0.22.0.tgz#a9baa860a3f9b595a6b81b1a86873121ed3a269e" - dependencies: - css-select "~1.2.0" - dom-serializer "~0.1.0" - entities "~1.1.1" - htmlparser2 "^3.9.1" - lodash.assignin "^4.0.9" - lodash.bind "^4.1.4" - lodash.defaults "^4.0.1" - lodash.filter "^4.4.0" - lodash.flatten "^4.2.0" - lodash.foreach "^4.3.0" - lodash.map "^4.4.0" - lodash.merge "^4.4.0" - lodash.pick "^4.2.1" - lodash.reduce "^4.4.0" - lodash.reject "^4.4.0" - lodash.some "^4.4.0" - chokidar@^2.0.0: version "2.0.2" resolved "https://neo.jfrog.io/neo/api/npm/npm/chokidar/-/chokidar-2.0.2.tgz#4dc65139eeb2714977735b6a35d06e97b494dfd7" @@ -2412,7 +2391,7 @@ css-loader@^0.28.7: postcss-value-parser "^3.3.0" source-list-map "^2.0.0" -css-select@^1.1.0, css-select@~1.2.0: +css-select@^1.1.0: version "1.2.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" dependencies: @@ -2801,7 +2780,7 @@ dom-converter@~0.1: dependencies: utila "~0.3" -dom-serializer@0, dom-serializer@~0.1.0: +dom-serializer@0: version "0.1.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82" dependencies: @@ -2816,7 +2795,7 @@ domain-browser@^1.1.1: version "1.2.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/domain-browser/-/domain-browser-1.2.0.tgz?dl=https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" -domelementtype@1, domelementtype@^1.3.0: +domelementtype@1: version "1.3.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/domelementtype/-/domelementtype-1.3.0.tgz#b17aed82e8ab59e52dd9c19b1756e0fc187204c2" @@ -2830,12 +2809,6 @@ domhandler@2.1: dependencies: domelementtype "1" -domhandler@^2.3.0: - version "2.4.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/domhandler/-/domhandler-2.4.1.tgz#892e47000a99be55bbf3774ffea0561d8879c259" - dependencies: - domelementtype "1" - domutils@1.1: version "1.1.6" resolved "https://neo.jfrog.io/neo/api/npm/npm/domutils/-/domutils-1.1.6.tgz#bddc3de099b9a2efacc51c623f28f416ecc57485" @@ -2849,13 +2822,6 @@ domutils@1.5.1: dom-serializer "0" domelementtype "1" -domutils@^1.5.1: - version "1.6.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/domutils/-/domutils-1.6.2.tgz#1958cc0b4c9426e9ed367fb1c8e854891b0fa3ff" - dependencies: - dom-serializer "0" - domelementtype "1" - duplexer@^0.1.1: version "0.1.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/duplexer/-/duplexer-0.1.1.tgz?dl=https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" @@ -2973,25 +2939,10 @@ enhanced-resolve@^3.4.0: object-assign "^4.0.1" tapable "^0.2.7" -entities@^1.1.1, entities@~1.1.1: +entities@~1.1.1: version "1.1.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0" -enzyme@^2.9.1: - version "2.9.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/enzyme/-/enzyme-2.9.1.tgz#07d5ce691241240fb817bf2c4b18d6e530240df6" - dependencies: - cheerio "^0.22.0" - function.prototype.name "^1.0.0" - is-subset "^0.1.1" - lodash "^4.17.4" - object-is "^1.0.1" - object.assign "^4.0.4" - object.entries "^1.0.4" - object.values "^1.0.4" - prop-types "^15.5.10" - uuid "^3.0.1" - errno@^0.1.3: version "0.1.7" resolved "https://neo.jfrog.io/neo/api/npm/npm/errno/-/errno-0.1.7.tgz?dl=https://registry.npmjs.org/errno/-/errno-0.1.7.tgz#4684d71779ad39af177e3f007996f7c67c852618" @@ -3010,16 +2961,6 @@ error-ex@^1.2.0: dependencies: is-arrayish "^0.2.1" -es-abstract@^1.6.1: - version "1.8.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/es-abstract/-/es-abstract-1.8.2.tgz#25103263dc4decbda60e0c737ca32313518027ee" - dependencies: - 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-abstract@^1.7.0: version "1.11.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/es-abstract/-/es-abstract-1.11.0.tgz?dl=https://registry.npmjs.org/es-abstract/-/es-abstract-1.11.0.tgz#cce87d518f0496893b1a30cd8461835535480681" @@ -3860,18 +3801,10 @@ fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: mkdirp ">=0.5 0" rimraf "2" -function-bind@^1.0.2, function-bind@^1.1.0, function-bind@^1.1.1: +function-bind@^1.0.2, function-bind@^1.1.1: version "1.1.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" -function.prototype.name@^1.0.0: - version "1.0.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/function.prototype.name/-/function.prototype.name-1.0.3.tgz#0099ae5572e9dd6f03c97d023fd92bcc5e639eac" - dependencies: - define-properties "^1.1.2" - function-bind "^1.1.0" - is-callable "^1.1.3" - functional-red-black-tree@^1.0.1: version "1.0.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz?dl=https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" @@ -4297,17 +4230,6 @@ html-webpack-plugin@^2.30.1: pretty-error "^2.0.2" toposort "^1.0.0" -htmlparser2@^3.9.1: - version "3.9.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/htmlparser2/-/htmlparser2-3.9.2.tgz#1bdf87acca0f3f9e53fa4fcceb0f4b4cbb00b338" - dependencies: - domelementtype "^1.3.0" - domhandler "^2.3.0" - domutils "^1.5.1" - entities "^1.1.1" - inherits "^2.0.1" - readable-stream "^2.0.2" - htmlparser2@~3.3.0: version "3.3.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/htmlparser2/-/htmlparser2-3.3.0.tgz#cc70d05a59f6542e43f0e685c982e14c924a9efe" @@ -4788,10 +4710,6 @@ is-stream@^1.0.1, is-stream@^1.1.0: version "1.1.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/is-stream/-/is-stream-1.1.0.tgz?dl=https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" -is-subset@^0.1.1: - version "0.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/is-subset/-/is-subset-0.1.1.tgz#8a59117d932de1de00f245fcdd39ce43f1e939a6" - is-svg@^2.0.0: version "2.1.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/is-svg/-/is-svg-2.1.0.tgz?dl=https://registry.npmjs.org/is-svg/-/is-svg-2.1.0.tgz#cf61090da0d9efbcab8722deba6f032208dbb0e9" @@ -5456,14 +5374,6 @@ lodash._reinterpolate@~3.0.0: version "3.0.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" -lodash.assignin@^4.0.9: - version "4.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/lodash.assignin/-/lodash.assignin-4.2.0.tgz#ba8df5fb841eb0a3e8044232b0e263a8dc6a28a2" - -lodash.bind@^4.1.4: - version "4.2.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/lodash.bind/-/lodash.bind-4.2.1.tgz#7ae3017e939622ac31b7d7d7dcb1b34db1690d35" - lodash.camelcase@^4.3.0: version "4.3.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz?dl=https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" @@ -5482,42 +5392,18 @@ lodash.debounce@^4.0.4, lodash.debounce@^4.0.8: version "4.0.8" resolved "https://neo.jfrog.io/neo/api/npm/npm/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" -lodash.defaults@^4.0.1: - version "4.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/lodash.defaults/-/lodash.defaults-4.2.0.tgz#d09178716ffea4dde9e5fb7b37f6f0802274580c" - -lodash.filter@^4.4.0: - version "4.6.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/lodash.filter/-/lodash.filter-4.6.0.tgz#668b1d4981603ae1cc5a6fa760143e480b4c4ace" - -lodash.flatten@^4.2.0: - version "4.4.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f" - lodash.flow@^3.3.0: version "3.5.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/lodash.flow/-/lodash.flow-3.5.0.tgz#87bf40292b8cf83e4e8ce1a3ae4209e20071675a" -lodash.foreach@^4.3.0: - version "4.5.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/lodash.foreach/-/lodash.foreach-4.5.0.tgz#1a6a35eace401280c7f06dddec35165ab27e3e53" - lodash.isplainobject@^4.0.6: version "4.0.6" resolved "https://neo.jfrog.io/neo/api/npm/npm/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb" -lodash.map@^4.4.0: - version "4.6.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/lodash.map/-/lodash.map-4.6.0.tgz#771ec7839e3473d9c4cde28b19394c3562f4f6d3" - lodash.memoize@^4.1.2: version "4.1.2" resolved "https://neo.jfrog.io/neo/api/npm/npm/lodash.memoize/-/lodash.memoize-4.1.2.tgz?dl=https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" -lodash.merge@^4.4.0: - version "4.6.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/lodash.merge/-/lodash.merge-4.6.0.tgz#69884ba144ac33fe699737a6086deffadd0f89c5" - lodash.merge@^4.6.0: version "4.6.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/lodash.merge/-/lodash.merge-4.6.1.tgz#adc25d9cb99b9391c59624f379fbba60d7111d54" @@ -5526,22 +5412,6 @@ lodash.once@^4.1.1: version "4.1.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/lodash.once/-/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac" -lodash.pick@^4.2.1: - version "4.4.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/lodash.pick/-/lodash.pick-4.4.0.tgz#52f05610fff9ded422611441ed1fc123a03001b3" - -lodash.reduce@^4.4.0: - version "4.6.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/lodash.reduce/-/lodash.reduce-4.6.0.tgz#f1ab6b839299ad48f784abbf476596f03b914d3b" - -lodash.reject@^4.4.0: - version "4.6.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/lodash.reject/-/lodash.reject-4.6.0.tgz#80d6492dc1470864bbf583533b651f42a9f52415" - -lodash.some@^4.4.0: - version "4.6.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/lodash.some/-/lodash.some-4.6.0.tgz#1bb9f314ef6b8baded13b549169b2a945eb68e4d" - lodash.template@^4.2.4: version "4.4.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/lodash.template/-/lodash.template-4.4.0.tgz#e73a0385c8355591746e020b99679c690e68fba0" @@ -6254,11 +6124,7 @@ object-copy@^0.1.0: define-property "^0.2.5" kind-of "^3.0.3" -object-is@^1.0.1: - version "1.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/object-is/-/object-is-1.0.1.tgz#0aa60ec9989a0b3ed795cf4d06f62cf1ad6539b6" - -object-keys@^1.0.10, object-keys@^1.0.8: +object-keys@^1.0.8: version "1.0.11" resolved "https://neo.jfrog.io/neo/api/npm/npm/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" @@ -6268,23 +6134,6 @@ object-visit@^1.0.0: dependencies: isobject "^3.0.0" -object.assign@^4.0.4: - version "4.0.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/object.assign/-/object.assign-4.0.4.tgz#b1c9cc044ef1b9fe63606fc141abbb32e14730cc" - dependencies: - define-properties "^1.1.2" - function-bind "^1.1.0" - object-keys "^1.0.10" - -object.entries@^1.0.4: - version "1.0.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/object.entries/-/object.entries-1.0.4.tgz#1bf9a4dd2288f5b33f3a993d257661f05d161a5f" - dependencies: - define-properties "^1.1.2" - es-abstract "^1.6.1" - function-bind "^1.1.0" - has "^1.0.1" - object.omit@^2.0.0: version "2.0.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/object.omit/-/object.omit-2.0.1.tgz?dl=https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" @@ -6298,15 +6147,6 @@ object.pick@^1.3.0: dependencies: isobject "^3.0.1" -object.values@^1.0.4: - version "1.0.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/object.values/-/object.values-1.0.4.tgz#e524da09b4f66ff05df457546ec72ac99f13069a" - dependencies: - define-properties "^1.1.2" - es-abstract "^1.6.1" - function-bind "^1.1.0" - has "^1.0.1" - obuf@^1.0.0, obuf@^1.1.1: version "1.1.2" resolved "https://neo.jfrog.io/neo/api/npm/npm/obuf/-/obuf-1.1.2.tgz#09bea3343d41859ebd446292d11c9d4db619084e" @@ -7596,10 +7436,6 @@ react-addons-pure-render-mixin@^15.0.2: fbjs "^0.8.4" object-assign "^4.1.0" -react-addons-test-utils@^15.0.2: - version "15.6.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/react-addons-test-utils/-/react-addons-test-utils-15.6.2.tgz#c12b6efdc2247c10da7b8770d185080a7b047156" - react-base16-styling@^0.5.1: version "0.5.3" resolved "https://neo.jfrog.io/neo/api/npm/npm/react-base16-styling/-/react-base16-styling-0.5.3.tgz#3858f24e9c4dd8cbd3f702f3f74d581ca2917269" From ef51906d3d1da958dc5d9c8e46804e2b86144e05 Mon Sep 17 00:00:00 2001 From: Oskar Hane Date: Fri, 15 Jun 2018 11:08:10 +0200 Subject: [PATCH 19/40] Delete unused test files --- .../components/FileImporter/FileDrop.test.jsx | 36 --- .../TabNavigation/Navigation.test.jsx | 85 -------- .../DatabaseInfo/DatabaseInfo.test.jsx | 158 -------------- .../DatabaseInfo/DatabaseKernelInfo.test.jsx | 46 ---- .../modules/DatabaseInfo/UserDetails.test.jsx | 68 ------ src/browser/modules/Editor/Editor.test.jsx | 206 ------------------ src/browser/modules/Guides/Guides.test.jsx | 49 ----- src/browser/modules/Guides/Slide.test.jsx | 33 --- .../modules/Sidebar/DocumentItems.test.jsx | 52 ----- .../modules/Sidebar/Documents.test.jsx | 37 ---- src/browser/modules/Sidebar/Favorite.test.jsx | 84 ------- .../modules/Sidebar/Favorites.test.jsx | 39 ---- src/browser/modules/Sidebar/FileDrop.test.jsx | 61 ------ src/browser/modules/Sidebar/Sidebar.test.jsx | 81 ------- src/browser/modules/Stream/PlayFrame.test.jsx | 52 ----- src/browser/modules/Stream/Stream.test.jsx | 35 --- .../modules/User/RolesSelector.test.jsx | 47 ---- src/browser/modules/User/UserAdd.test.jsx | 56 ----- src/browser/modules/User/UserInfo.test.jsx | 35 --- .../modules/User/UserInformation.test.jsx | 48 ---- src/browser/modules/User/UserList.test.jsx | 48 ---- 21 files changed, 1356 deletions(-) delete mode 100644 src/browser/components/FileImporter/FileDrop.test.jsx delete mode 100644 src/browser/components/TabNavigation/Navigation.test.jsx delete mode 100644 src/browser/modules/DatabaseInfo/DatabaseInfo.test.jsx delete mode 100644 src/browser/modules/DatabaseInfo/DatabaseKernelInfo.test.jsx delete mode 100644 src/browser/modules/DatabaseInfo/UserDetails.test.jsx delete mode 100644 src/browser/modules/Editor/Editor.test.jsx delete mode 100644 src/browser/modules/Guides/Guides.test.jsx delete mode 100644 src/browser/modules/Guides/Slide.test.jsx delete mode 100644 src/browser/modules/Sidebar/DocumentItems.test.jsx delete mode 100644 src/browser/modules/Sidebar/Documents.test.jsx delete mode 100644 src/browser/modules/Sidebar/Favorite.test.jsx delete mode 100644 src/browser/modules/Sidebar/Favorites.test.jsx delete mode 100644 src/browser/modules/Sidebar/FileDrop.test.jsx delete mode 100644 src/browser/modules/Sidebar/Sidebar.test.jsx delete mode 100644 src/browser/modules/Stream/PlayFrame.test.jsx delete mode 100644 src/browser/modules/Stream/Stream.test.jsx delete mode 100644 src/browser/modules/User/RolesSelector.test.jsx delete mode 100644 src/browser/modules/User/UserAdd.test.jsx delete mode 100644 src/browser/modules/User/UserInfo.test.jsx delete mode 100644 src/browser/modules/User/UserInformation.test.jsx delete mode 100644 src/browser/modules/User/UserList.test.jsx diff --git a/src/browser/components/FileImporter/FileDrop.test.jsx b/src/browser/components/FileImporter/FileDrop.test.jsx deleted file mode 100644 index 751bafa72ee..00000000000 --- a/src/browser/components/FileImporter/FileDrop.test.jsx +++ /dev/null @@ -1,36 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/* global test, expect */ -import React from 'react' -import { mount } from 'enzyme' -import { FileDrop } from './FileDrop' - -describe('FileDrop', () => { - test('should render child component', () => { - const ChildComponent = props => { - return
- } - const FileDropComp = FileDrop(ChildComponent, true) - const wrapper = mount() - expect(wrapper.find('.child').length).toBe(1) - wrapper.find('.child').simulate('drop') - }) -}) diff --git a/src/browser/components/TabNavigation/Navigation.test.jsx b/src/browser/components/TabNavigation/Navigation.test.jsx deleted file mode 100644 index 9879d53100f..00000000000 --- a/src/browser/components/TabNavigation/Navigation.test.jsx +++ /dev/null @@ -1,85 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/* global test, expect */ -import React from 'react' -import Navigation from './Navigation' -import { mount } from 'enzyme' - -describe('Navigation', () => { - const Tab1Content = () => { - return
- } - const Tab2Content = () => { - return
- } - const navItem1 = 'item1' + Math.random() - const navItem2 = 'item2' + Math.random() - const navItems = [ - { name: navItem1, icon: null, content: Tab1Content }, - { name: navItem2, icon: null, content: Tab2Content } - ] - - test('renders a list of navigation links', () => { - const wrapper = mount() - expect(wrapper.find('div').length).toBeGreaterThan(0) - }) - - test('hides drawer when no drawer should be open', () => { - const drawer = null - const wrapper = mount( - - ) - expect( - wrapper - .find('.tab') - .at(0) - .hasClass('hidden') - ).toEqual(true) - }) - - test('shows drawer when drawer should be open', () => { - const drawer = navItem1 - const wrapper = mount( - - ) - expect( - wrapper - .find('.tab') - .at(0) - .hasClass('hidden') - ).toEqual(false) - }) - - test('should render the selected tab', () => { - const drawer = navItem1 - const wrapper = mount( - - ) - expect( - wrapper - .find('.tab') - .at(0) - .hasClass('hidden') - ).toEqual(false) - expect(wrapper.find('#thing').length).toBe(1) - expect(wrapper.find('#thing2').length).toBe(0) - }) -}) diff --git a/src/browser/modules/DatabaseInfo/DatabaseInfo.test.jsx b/src/browser/modules/DatabaseInfo/DatabaseInfo.test.jsx deleted file mode 100644 index 0fa1e95b45f..00000000000 --- a/src/browser/modules/DatabaseInfo/DatabaseInfo.test.jsx +++ /dev/null @@ -1,158 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/* global test, expect, jest */ -import React from 'react' -import ReactDOM from 'react-dom' -import ReactTestUtils from 'react-addons-test-utils' -import { DatabaseInfo as DatabaseInfoComponent } from './DatabaseInfo' -import { mount } from 'enzyme' - -function simulateEvent (wrappedTarget, eventType) { - if (wrappedTarget.node) { - // wrappedTarget was obtained using enzyme's mount() - const domNode = ReactDOM.findDOMNode(wrappedTarget.node) - ReactTestUtils.Simulate[eventType](domNode) - } else { - // wrappedTarget was obtained using enzyme's shallow() - wrappedTarget.simulate(eventType) - } -} - -describe('DatabaseInfo', () => { - const onItemClick = jest.fn() - describe('labels', () => { - test('should not show labels when there are no labels', () => { - const labels = [] - const wrapper = mount() - expect(wrapper.find('.token-label').length).toBe(0) - }) - test('should show labels when there are labels', () => { - const labels = [{ val: 'Person' }, { val: 'Movie' }] - const wrapper = mount() - expect(wrapper.find('.token-label').length).toBe(3) - expect( - wrapper - .find('.token-label') - .first() - .text() - ).toEqual('*') - }) - test('should call on click callback with correct cypher * label is clicked', () => { - const labels = [{ val: 'Person' }] - const wrapper = mount( - - ) - simulateEvent(wrapper.find('.token-label').first(), 'click') - expect(onItemClick).toHaveBeenCalledWith('MATCH (n) RETURN n LIMIT 25') - }) - test('should call on click callback with correct cypher when a non * label is clicked', () => { - const labels = [{ val: 'Person' }] - const wrapper = mount( - - ) - simulateEvent(wrapper.find('.token-label').last(), 'click') - expect(onItemClick).toHaveBeenCalledWith( - 'MATCH (n:Person) RETURN n LIMIT 25' - ) - }) - }) - - describe('relationshipTypes', () => { - test('should not show relationshipTypes when there are no relationshipTypes', () => { - const relationshipTypes = [] - const wrapper = mount( - - ) - expect(wrapper.find('.token-relationship').length).toBe(0) - }) - test('should show relationshipTypes when there are relationshipTypes', () => { - const relationshipTypes = [{ val: 'lives' }, { val: 'knows' }] - const wrapper = mount( - - ) - expect(wrapper.find('.token-relationship').length).toBe(3) - expect( - wrapper - .find('.token-relationship') - .first() - .text() - ).toEqual('*') - }) - test('should call on click callback with correct cypher when * relationship is clicked', () => { - const relationshipTypes = [{ val: 'DIRECTED' }] - const wrapper = mount( - - ) - simulateEvent(wrapper.find('.token-relationship').first(), 'click') - expect(onItemClick).toHaveBeenCalledWith( - 'MATCH p=()-->() RETURN p LIMIT 25' - ) - }) - test('should call on click callback with correct cypher when a non * relationship is clicked', () => { - const relationshipTypes = [{ val: 'DIRECTED' }] - const wrapper = mount( - - ) - simulateEvent(wrapper.find('.token-relationship').last(), 'click') - expect(onItemClick).toHaveBeenCalledWith( - 'MATCH p=()-[r:DIRECTED]->() RETURN p LIMIT 25' - ) - }) - }) - - describe('properties', () => { - test('should not show properties when there are no properties', () => { - const properties = [] - const wrapper = mount() - expect(wrapper.find('.token-property').length).toBe(0) - }) - test('should show properties when there are properties', () => { - const properties = [{ val: 'born' }, { val: 'name' }] - const wrapper = mount() - expect(wrapper.find('.token-property').length).toBe(2) - expect( - wrapper - .find('.token-property') - .first() - .text() - ).toEqual('born') - }) - test('should call on click callback with correct cypher when property is clicked', () => { - const properties = [{ val: 'born' }] - const wrapper = mount( - - ) - simulateEvent(wrapper.find('.token-property').first(), 'click') - expect(onItemClick).toHaveBeenCalledWith( - 'MATCH (n) WHERE EXISTS(n.born) RETURN DISTINCT "node" as element, n.born AS born LIMIT 25 UNION ALL MATCH ()-[r]-() WHERE EXISTS(r.born) RETURN DISTINCT "relationship" AS element, r.born AS born LIMIT 25' - ) - }) - }) -}) diff --git a/src/browser/modules/DatabaseInfo/DatabaseKernelInfo.test.jsx b/src/browser/modules/DatabaseInfo/DatabaseKernelInfo.test.jsx deleted file mode 100644 index 2f4447e722e..00000000000 --- a/src/browser/modules/DatabaseInfo/DatabaseKernelInfo.test.jsx +++ /dev/null @@ -1,46 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/* global test, expect */ -import React from 'react' -import { DatabaseKernelInfo } from './DatabaseKernelInfo' -import { shallow } from 'enzyme' - -describe('connected as', () => { - test('should not show database kernel info if not connected', () => { - const databaseKernelInfo = null - const wrapper = shallow( - - ) - expect(wrapper.find('.database-kernel-info').length).toBe(0) - }) - test('should show version and edition when connected', () => { - const databaseKernelInfo = { - version: 'test', - edition: ['3.1.0'] - } - const wrapper = shallow( - - ) - expect(wrapper.find('.database-kernel-info').length).toBeGreaterThan(0) - expect(wrapper.find('.version').text()).toEqual('test') - expect(wrapper.find('.edition').text()).toEqual('3.1.0') - }) -}) diff --git a/src/browser/modules/DatabaseInfo/UserDetails.test.jsx b/src/browser/modules/DatabaseInfo/UserDetails.test.jsx deleted file mode 100644 index 9314935529c..00000000000 --- a/src/browser/modules/DatabaseInfo/UserDetails.test.jsx +++ /dev/null @@ -1,68 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/* global test, expect */ -import React from 'react' -import { UserDetails } from './UserDetails' -import { shallow } from 'enzyme' - -describe('connected as', () => { - test('should not show user details if not connected', () => { - const userDetails = null - const wrapper = shallow() - expect(wrapper.find('.user-details').length).toBe(0) - }) - test('should show username when connected', () => { - const userDetails = { - username: 'test', - roles: [] - } - const wrapper = shallow() - expect(wrapper.find('.user-details').length).toBeGreaterThan(0) - expect(wrapper.find('.username').text()).toEqual('test') - expect(wrapper.find('.roles').text()).toEqual('-') - }) - test('should show user role when connected', () => { - const userDetails = { - username: 'any', - roles: ['ADMIN', 'READER'] - } - const wrapper = shallow() - expect(wrapper.find('.roles').text()).toEqual('ADMIN, READER') - }) - test('not should display admin functions when user is not assigned the "admin" role', () => { - const userDetails = { - username: 'any', - roles: ['READER'] - } - const wrapper = shallow() - expect(wrapper.find('.roles').text()).toEqual('READER') - expect(wrapper.find('.user-list-button').length).toBe(0) - }) - test('should display admin functions when user is assigned the "admin" role', () => { - const userDetails = { - username: 'any', - roles: ['ADMIN'] - } - const wrapper = shallow() - expect(wrapper.find('.roles').text()).toEqual('ADMIN') - expect(wrapper.find('.user-list-button').length).toBe(1) - }) -}) diff --git a/src/browser/modules/Editor/Editor.test.jsx b/src/browser/modules/Editor/Editor.test.jsx deleted file mode 100644 index a9aabf961ac..00000000000 --- a/src/browser/modules/Editor/Editor.test.jsx +++ /dev/null @@ -1,206 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/* global describe, test, beforeEach, expect, jest */ -import { Editor as EditorComponent } from './Editor' -import { createBus } from 'suber' -import { mount } from 'enzyme' -import React from 'react' -import Codemirror from 'react-codemirror' - -describe('Editor', () => { - let onExecute - - beforeEach(() => { - onExecute = jest.fn() - }) - - test.skip('should render Codemirror component with correct properties', () => { - const content = 'content-' + Math.random() - const wrapper = mount( - - ) - const codeMirror = wrapper.find(Codemirror) - expect(codeMirror.props().value).toEqual(content) - codeMirror - .get(0) - .getCodeMirrorInstance() - .keyMap['default']['Cmd-Enter'](codeMirror.get(0).getCodeMirror()) - expect(onExecute).toHaveBeenCalled() - }) - - test.skip('should execute current command on Cmd-Enter', () => { - const content = 'content-' + Math.random() - const wrapper = mount( - - ) - const codeMirror = wrapper.find(Codemirror) - codeMirror - .get(0) - .getCodeMirrorInstance() - .keyMap['default']['Cmd-Enter'](codeMirror.get(0).getCodeMirror()) - expect(onExecute).toHaveBeenCalledWith(content) - expect( - codeMirror - .get(0) - .getCodeMirror() - .getValue() - ).toEqual('') - }) - - test.skip('should execute current command on Ctrl-Enter', () => { - const content = 'content-' + Math.random() - const wrapper = mount( - - ) - const codeMirror = wrapper.find(Codemirror) - codeMirror - .get(0) - .getCodeMirrorInstance() - .keyMap['default']['Ctrl-Enter'](codeMirror.get(0).getCodeMirror()) - expect(onExecute).toHaveBeenCalledWith(content) - expect( - codeMirror - .get(0) - .getCodeMirror() - .getValue() - ).toEqual('') - }) - - test.skip('should replace content as with history as user arrows up and down', () => { - const content = 'content-' + Math.random() - const history = [{ cmd: 'latest' }, { cmd: 'middle' }, { cmd: 'oldest' }] - const wrapper = mount( - - ) - const codeMirror = wrapper.find(Codemirror) - codeMirror - .get(0) - .getCodeMirrorInstance() - .keyMap['default']['Cmd-Up'](codeMirror.get(0).getCodeMirror()) - expect( - codeMirror - .get(0) - .getCodeMirror() - .getValue() - ).toEqual('latest') - codeMirror - .get(0) - .getCodeMirrorInstance() - .keyMap['default']['Ctrl-Up'](codeMirror.get(0).getCodeMirror()) - expect( - codeMirror - .get(0) - .getCodeMirror() - .getValue() - ).toEqual('middle') - codeMirror - .get(0) - .getCodeMirrorInstance() - .keyMap['default']['Ctrl-Up'](codeMirror.get(0).getCodeMirror()) - expect( - codeMirror - .get(0) - .getCodeMirror() - .getValue() - ).toEqual('oldest') - codeMirror - .get(0) - .getCodeMirrorInstance() - .keyMap['default']['Cmd-Down'](codeMirror.get(0).getCodeMirror()) - expect( - codeMirror - .get(0) - .getCodeMirror() - .getValue() - ).toEqual('middle') - codeMirror - .get(0) - .getCodeMirrorInstance() - .keyMap['default']['Ctrl-Down'](codeMirror.get(0).getCodeMirror()) - expect( - codeMirror - .get(0) - .getCodeMirror() - .getValue() - ).toEqual('latest') - }) - - test.skip('should reset history after execution', () => { - const history = [{ cmd: 'latest' }, { cmd: 'middle' }, { cmd: 'oldest' }] - const wrapper = mount( - - ) - const codeMirror = wrapper.find(Codemirror) - codeMirror - .get(0) - .getCodeMirrorInstance() - .keyMap['default']['Cmd-Up'](codeMirror.get(0).getCodeMirror()) - codeMirror - .get(0) - .getCodeMirrorInstance() - .keyMap['default']['Cmd-Up'](codeMirror.get(0).getCodeMirror()) - expect( - codeMirror - .get(0) - .getCodeMirror() - .getValue() - ).toEqual('middle') - codeMirror - .get(0) - .getCodeMirrorInstance() - .keyMap['default']['Cmd-Enter'](codeMirror.get(0).getCodeMirror()) - codeMirror - .get(0) - .getCodeMirrorInstance() - .keyMap['default']['Cmd-Up'](codeMirror.get(0).getCodeMirror()) - expect( - codeMirror - .get(0) - .getCodeMirror() - .getValue() - ).toEqual('latest') - }) -}) diff --git a/src/browser/modules/Guides/Guides.test.jsx b/src/browser/modules/Guides/Guides.test.jsx deleted file mode 100644 index de7748c15a1..00000000000 --- a/src/browser/modules/Guides/Guides.test.jsx +++ /dev/null @@ -1,49 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/* global test, expect */ -import React from 'react' - -import Guides from './Guides' -import Slide from './Slide' - -import { mount } from 'enzyme' - -describe('Guides', () => { - test('should render Guides when html has `slide` tag', () => { - const html = 'foobar' - const wrapper = mount() - expect(wrapper.find(Guides).length).toBe(1) - expect(wrapper.find(Slide).length).toBe(1) - }) - test('should render Guides with multiple slides when html has `slide` tag more than once', () => { - const html = 'foobar' - const wrapper = mount() - expect(wrapper.find(Guides).length).toBe(1) - expect(wrapper.find(Slide).length).toBe(2) - }) - test('should render raw html when html has no `slide` tag', () => { - const html = '
Hello
' - const wrapper = mount() - expect(wrapper.find(Guides).length).toBe(1) - expect(wrapper.find(Slide).length).toBe(1) - expect(wrapper.find(Slide).html()).toMatch(html) - }) -}) diff --git a/src/browser/modules/Guides/Slide.test.jsx b/src/browser/modules/Guides/Slide.test.jsx deleted file mode 100644 index 0b13d829955..00000000000 --- a/src/browser/modules/Guides/Slide.test.jsx +++ /dev/null @@ -1,33 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/* global test, expect */ -import React from 'react' -import Slide from './Slide' - -import { mount } from 'enzyme' - -describe('Slide', () => { - test('should render html', () => { - const html = '

foobar

' - const wrapper = mount() - expect(wrapper.find(Slide).html()).toMatch(html) - }) -}) diff --git a/src/browser/modules/Sidebar/DocumentItems.test.jsx b/src/browser/modules/Sidebar/DocumentItems.test.jsx deleted file mode 100644 index 6fc87e04041..00000000000 --- a/src/browser/modules/Sidebar/DocumentItems.test.jsx +++ /dev/null @@ -1,52 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/* global test, expect */ -import React from 'react' -import { shallow } from 'enzyme' -import { DocumentItems as DocumentItemsComponent } from './DocumentItems' - -describe('DocumentItemsComponent', () => { - const link = { name: 'Link', command: 'url.com', type: 'link' } - const command = { name: 'Command', command: 'TEST' } - - test('should render href when link is provided', () => { - const wrapper = shallow() - expect(wrapper.find('.command').length).toBe(0) - expect(wrapper.find('.link').length).toBe(1) - }) - test('should open href in new tab/window', () => { - const wrapper = shallow() - const renderedLink = wrapper.find('.link') - expect(renderedLink.find('a').html()).toMatch('target="_blank"') - }) - - test('should render command when no type is provided', () => { - const wrapper = shallow() - expect(wrapper.find('.command').length).toBe(1) - expect(wrapper.find('.link').length).toBe(0) - }) - - test('should render both link and commands', () => { - const wrapper = shallow() - expect(wrapper.find('.command').length).toBe(1) - expect(wrapper.find('.link').length).toBe(1) - }) -}) diff --git a/src/browser/modules/Sidebar/Documents.test.jsx b/src/browser/modules/Sidebar/Documents.test.jsx deleted file mode 100644 index 1bcc301e96d..00000000000 --- a/src/browser/modules/Sidebar/Documents.test.jsx +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/* global test, expect */ -import React from 'react' -import DocumentsComponent from './Documents' -import DocumentItems from './DocumentItems' -import { shallow } from 'enzyme' - -describe('DocumentsComponent', () => { - test('should show list of documents', () => { - const documents = { - intro: [], - help: [], - reference: [{ name: 'hello', command: 'test commands' }] - } - const wrapper = shallow() - expect(wrapper.find(DocumentItems).length).toBe(3) - }) -}) diff --git a/src/browser/modules/Sidebar/Favorite.test.jsx b/src/browser/modules/Sidebar/Favorite.test.jsx deleted file mode 100644 index be8262edb40..00000000000 --- a/src/browser/modules/Sidebar/Favorite.test.jsx +++ /dev/null @@ -1,84 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/* global test, expect, jest */ -import React from 'react' -import { shallow, mount } from 'enzyme' -import { Favorite as FavoriteComponent } from './Favorite' - -describe('FavoriteComponent', () => { - describe('should show name of script', () => { - const testCases = [ - { - command: '//Test script \nABC', - expected: 'Test script' - }, - { - command: '//Test script ABC', - expected: 'Test script ABC' - }, - { - command: '// Test script ABC ', - expected: 'Test script ABC' - }, - { - command: '// Test \n\n\nscript ABC ', - expected: 'Test' - }, - { - command: '// //Test//', - expected: '//Test//' - } - ] - testCases.forEach((testCase, i) => { - test(`should extract name of script from case ${i}`, () => { - const wrapper = shallow( - - ) - const item = wrapper.find('.favorite') - expect(item.length).toBe(1) - expect(item.props().primaryText).toEqual(testCase.expected) - }) - }) - }) - - test('should show tigger event with content of script', () => { - const onItemClick = jest.fn() - const wrapper = shallow( - - ) - const favoriteElement = wrapper.find('.favorite') - expect(favoriteElement.length).toBe(1) - favoriteElement.first().simulate('click') - expect(onItemClick).toHaveBeenCalledWith('Cypher') - }) - - test('should remove favorite that has been clicked', () => { - const id = 'SomeId' - const onRemoveClick = jest.fn() - const wrapper = mount( - - ) - const favoriteElement = wrapper.find('.favorite') - expect(favoriteElement.length).toBe(1) - wrapper.find('.remove').simulate('click') - expect(onRemoveClick).toHaveBeenCalledWith('SomeId') - }) -}) diff --git a/src/browser/modules/Sidebar/Favorites.test.jsx b/src/browser/modules/Sidebar/Favorites.test.jsx deleted file mode 100644 index 66d12377b3a..00000000000 --- a/src/browser/modules/Sidebar/Favorites.test.jsx +++ /dev/null @@ -1,39 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/* global test, expect */ -import React from 'react' -import { Favorites as FavoritesComponent } from './Favorites' - -import { shallow } from 'enzyme' -import Favorite from './Favorite' - -describe('FavoritesComponent', () => { - test('should show list of favorites', () => { - const favorites = [ - { id: '1', content: '//Test1 Hello' }, - { id: '2', content: '//Test2 Again' } - ] - const wrapper = shallow( - null} /> - ) - expect(wrapper.find(Favorite).length).toBe(2) - }) -}) diff --git a/src/browser/modules/Sidebar/FileDrop.test.jsx b/src/browser/modules/Sidebar/FileDrop.test.jsx deleted file mode 100644 index 15a9c016b40..00000000000 --- a/src/browser/modules/Sidebar/FileDrop.test.jsx +++ /dev/null @@ -1,61 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/* global describe, test, expect, jest */ -import React from 'react' -import { FileDrop } from './FileDrop' -import { shallow } from 'enzyme' - -describe('FileDrop', () => { - const expectedFileContent = 'some content' - const file = new window.File([expectedFileContent], 'valid.cypher') - const unknownFile = new window.File([expectedFileContent], 'invalid.file') - const readAsText = jest.fn() - const stubFileReader = { readAsText, result: expectedFileContent } - - test('should read file', done => { - const onFileDropped = jest.fn() - const wrapper = shallow( - - ) - wrapper.instance().onDrop([file]) - - try { - expect(readAsText).toBeCalledWith(file) - done() - } catch (error) { - done.fail(error) - } - }) - test('should not read file', done => { - const onFileDropped = jest.fn() - const wrapper = shallow( - - ) - wrapper.instance().onDrop([unknownFile]) - - try { - expect(wrapper.state().error).toContain('.file') - done() - } catch (error) { - done.fail(error) - } - }) -}) diff --git a/src/browser/modules/Sidebar/Sidebar.test.jsx b/src/browser/modules/Sidebar/Sidebar.test.jsx deleted file mode 100644 index c4f25573ced..00000000000 --- a/src/browser/modules/Sidebar/Sidebar.test.jsx +++ /dev/null @@ -1,81 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/* global test, expect */ -import React from 'react' -import { mount } from 'enzyme' -import { createStore, combineReducers } from 'redux' -import { Provider } from 'react-redux' -import Sidebar from './Sidebar' -import DatabaseInfo from '../DatabaseInfo/DatabaseInfo' -import Favorites from './Favorites' -import Documents from './Documents' -import Settings from './Settings' -import favorites from '../../../shared/modules/favorites/favoritesDuck' -import settings from '../../../shared/modules/settings/settingsDuck' - -describe('Sidebar', () => { - const reducer = combineReducers({ - favorites, - documents: a => a || null, - settings - }) - const store = createStore(reducer) - - test('should show db drawer when it is open', () => { - const drawer = 'db' - const wrapper = mount( - - - - ) - expect(wrapper.find(DatabaseInfo).length).toBe(1) - }) - - test('should show favorites drawer when it is open', () => { - const drawer = 'favorites' - const wrapper = mount( - - - - ) - expect(wrapper.find(Favorites).length).toBe(1) - }) - - test('should show documents drawer when it is open', () => { - const drawer = 'documents' - const wrapper = mount( - - - - ) - expect(wrapper.find(Documents).length).toBe(1) - }) - - test('should show settings drawer when it is open', () => { - const drawer = 'settings' - const wrapper = mount( - - - - ) - expect(wrapper.find(Settings).length).toBe(1) - }) -}) diff --git a/src/browser/modules/Stream/PlayFrame.test.jsx b/src/browser/modules/Stream/PlayFrame.test.jsx deleted file mode 100644 index f856934918b..00000000000 --- a/src/browser/modules/Stream/PlayFrame.test.jsx +++ /dev/null @@ -1,52 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/* global test, expect */ -import React from 'react' -import { shallow } from 'enzyme' -import PlayFrame from './PlayFrame' -import Guides from '../Guides/Guides' - -describe('PlayFrame', () => { - test.skip('should render PlayFrame', () => { - const wrapper = shallow() - expect(wrapper.find('.playFrame').length).toBe(1) - }) - test.skip('should render play guide when not guide name is provided', () => { - const wrapper = shallow() - expect(wrapper.find('.playFrame').length).toBe(1) - const card = shallow(wrapper.find('.playFrame').node) - expect(card.find('.frame-contents').text()).to.match(/not\sspecified/) - }) - test.skip('should render play guide not found', () => { - const wrapper = shallow( - - ) - expect(wrapper.find('.playFrame').length).toBe(1) - const card = shallow(wrapper.find('.playFrame').node) - expect(card.find('.frame-contents').text()).to.match(/not\sfound/) - }) - test.skip('should render contents when contents is passed to PlayFrame', () => { - const wrapper = shallow() - expect(wrapper.find('.playFrame').length).toBe(1) - const card = shallow(wrapper.find('.playFrame').node) - expect(card.find(Guides).props().html).to.eql('Hello') - }) -}) diff --git a/src/browser/modules/Stream/Stream.test.jsx b/src/browser/modules/Stream/Stream.test.jsx deleted file mode 100644 index eba37663400..00000000000 --- a/src/browser/modules/Stream/Stream.test.jsx +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/* global test, expect */ -import React from 'react' -import { shallow } from 'enzyme' -import { Stream as StreamComponent } from './Stream' - -describe('Stream', () => { - test('should render a stream of frames', () => { - const frames = [ - { id: 1, cmd: ':first', type: 'x' }, - { id: 2, cmd: ':second', type: 'x' } - ] - const wrapper = shallow() - expect(wrapper.find('Frame').length).toBe(frames.length) - }) -}) diff --git a/src/browser/modules/User/RolesSelector.test.jsx b/src/browser/modules/User/RolesSelector.test.jsx deleted file mode 100644 index 49622d360e0..00000000000 --- a/src/browser/modules/User/RolesSelector.test.jsx +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/* global test, expect */ -import React from 'react' -import RolesSelector from './RolesSelector' -import { shallow } from 'enzyme' - -describe('RolesSelector', () => { - test('should return component when roles are available', () => { - const wrapper = shallow() - expect(wrapper.find('option').length).toBe(2) - expect( - wrapper - .find('option') - .first() - .text() - ).toBe('1') - expect( - wrapper - .find('option') - .at(1) - .text() - ).toBe('2') - }) - test('should not return component when roles are unavailable', () => { - const wrapper = shallow() - expect(wrapper.type()).toBe(null) - }) -}) diff --git a/src/browser/modules/User/UserAdd.test.jsx b/src/browser/modules/User/UserAdd.test.jsx deleted file mode 100644 index a376461c622..00000000000 --- a/src/browser/modules/User/UserAdd.test.jsx +++ /dev/null @@ -1,56 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/* global test, expect */ -import React from 'react' -import { UserAdd } from './UserAdd' -import { shallow } from 'enzyme' - -const mockBus = { self: () => {} } - -describe('UserAdd', () => { - test('should show filtered list of roles', () => { - const user = { username: 'user', roles: ['a', 'b'], status: [] } - const wrapper = shallow( - - ) - expect(wrapper.instance().availableRoles()).toEqual(['c']) - expect(wrapper.state().roles).toEqual(['a', 'b']) - }) - test('should remove role from the users assigned roles', () => { - const user = { username: 'user', roles: ['a', 'b', 'c'], status: [] } - const wrapper = shallow( - - ) - expect(wrapper.instance().removeRole('a')).toEqual(['b', 'c']) - }) -}) diff --git a/src/browser/modules/User/UserInfo.test.jsx b/src/browser/modules/User/UserInfo.test.jsx deleted file mode 100644 index a2534f8fe76..00000000000 --- a/src/browser/modules/User/UserInfo.test.jsx +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/* global test, expect */ -import React from 'react' -import { UserInfoComponent } from './UserInfo' -import { shallow } from 'enzyme' - -describe('UserInfo', () => { - const mockBus = { self: () => {} } - test('should show username and role of logged in user', () => { - const info = { username: 'Admin', roles: ['admin'] } - const wrapper = shallow() - expect(wrapper.find('#db-user').length).toBe(1) - expect(wrapper.find('#db-user').text()).toMatch(info.username) - expect(wrapper.find('#db-user').text()).toMatch(info.roles[0]) - }) -}) diff --git a/src/browser/modules/User/UserInformation.test.jsx b/src/browser/modules/User/UserInformation.test.jsx deleted file mode 100644 index 5e7f66bbe14..00000000000 --- a/src/browser/modules/User/UserInformation.test.jsx +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/* global test, expect */ -import React from 'react' -import { UserInformation } from './UserInformation' -import { shallow } from 'enzyme' - -const mockBus = { self: () => {} } - -describe('UserInformation', () => { - test('should show username and role of a user', () => { - const user = { username: 'user', roles: ['roles'], status: [] } - const wrapper = shallow( - - ) - expect(wrapper.find('.user-info').length).toBe(1) - expect(wrapper.find('.user-info .username').text()).toMatch(user.username) - expect( - wrapper - .find('.roles') - .first() - .html() - ).toMatch(user.roles[0]) - }) -}) diff --git a/src/browser/modules/User/UserList.test.jsx b/src/browser/modules/User/UserList.test.jsx deleted file mode 100644 index c95fdffe09a..00000000000 --- a/src/browser/modules/User/UserList.test.jsx +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/* global test, expect */ -import React from 'react' -import { shallow } from 'enzyme' - -import { UserList } from './UserList' - -const mockBus = { self: () => {} } - -describe('UserList', () => { - test('should show list of database users by username', () => { - const props = { - users: [['Admin', ['admin'], []], ['Thing', ['thing'], []]] - } - const wrapper = shallow( - shallow().props().contents - ) - expect(wrapper.find('.user-information').length).toBe(2) - }) - - test.skip('should show list of database users by role', () => { - const roles = ['user1', 'user2'] - const props = { roles: roles } - const wrapper = shallow( - shallow().contents - ) - expect(wrapper.find('.roles').text()).toEqual('user1, user2') - }) -}) From 9774f1727712f8482910516a93bae725a0ba03b3 Mon Sep 17 00:00:00 2001 From: Oskar Hane Date: Fri, 15 Jun 2018 11:33:13 +0200 Subject: [PATCH 20/40] Remove component test files And unmute muted tests and remove failing ones --- .../DesktopIntegration/index.test.js | 142 ----------------- src/browser/components/Directives.test.js | 121 -------------- src/browser/components/Display.test.js | 137 ---------------- .../components/form/formKeyHandler.test.js | 48 ------ .../__snapshots__/index.test.js.snap | 11 -- src/browser/modules/ClickToCode/index.test.js | 124 --------------- .../modules/DatabaseInfo/MetaItems.test.js | 79 ---------- src/browser/modules/DocTitle/index.test.js | 37 ----- .../Guides/CarouselSlidePicker.test.js | 60 ------- src/browser/modules/Sidebar/Settings.test.js | 38 ----- .../Stream/Auth/ChangePasswordForm.test.js | 47 ------ .../Stream/CypherFrame/AsciiView.test.js | 104 ------------ .../Stream/CypherFrame/CodeView.test.js | 90 ----------- .../Stream/CypherFrame/ErrorsView.test.js | 117 -------------- .../Stream/CypherFrame/PlanView.test.js | 104 ------------ .../Stream/CypherFrame/TableView.test.js | 92 ----------- .../Stream/CypherFrame/WarningsView.test.js | 140 ---------------- .../__snapshots__/TableView.test.js.snap | 15 -- .../modules/Stream/CypherFrame/index.test.js | 149 ------------------ src/browser/modules/Stream/FrameError.test.js | 70 -------- .../modules/Stream/FrameSuccess.test.js | 47 ------ src/browser/modules/Stream/HistoryRow.test.js | 41 ----- .../modules/Stream/SysInfoFrame/index.test.js | 75 --------- .../Stream/errorMessageFormater.test.js | 58 ------- src/shared/services/bolt/boltMappings.test.js | 127 +++------------ src/shared/services/duckUtils.test.js | 14 +- src/shared/services/testUtils.js | 36 ----- 27 files changed, 27 insertions(+), 2096 deletions(-) delete mode 100644 src/browser/components/DesktopIntegration/index.test.js delete mode 100644 src/browser/components/Directives.test.js delete mode 100644 src/browser/components/Display.test.js delete mode 100644 src/browser/components/form/formKeyHandler.test.js delete mode 100644 src/browser/modules/ClickToCode/__snapshots__/index.test.js.snap delete mode 100644 src/browser/modules/ClickToCode/index.test.js delete mode 100644 src/browser/modules/DatabaseInfo/MetaItems.test.js delete mode 100644 src/browser/modules/DocTitle/index.test.js delete mode 100644 src/browser/modules/Guides/CarouselSlidePicker.test.js delete mode 100644 src/browser/modules/Sidebar/Settings.test.js delete mode 100644 src/browser/modules/Stream/Auth/ChangePasswordForm.test.js delete mode 100644 src/browser/modules/Stream/CypherFrame/AsciiView.test.js delete mode 100644 src/browser/modules/Stream/CypherFrame/CodeView.test.js delete mode 100644 src/browser/modules/Stream/CypherFrame/ErrorsView.test.js delete mode 100644 src/browser/modules/Stream/CypherFrame/PlanView.test.js delete mode 100644 src/browser/modules/Stream/CypherFrame/TableView.test.js delete mode 100644 src/browser/modules/Stream/CypherFrame/WarningsView.test.js delete mode 100644 src/browser/modules/Stream/CypherFrame/__snapshots__/TableView.test.js.snap delete mode 100644 src/browser/modules/Stream/CypherFrame/index.test.js delete mode 100644 src/browser/modules/Stream/FrameError.test.js delete mode 100644 src/browser/modules/Stream/FrameSuccess.test.js delete mode 100644 src/browser/modules/Stream/HistoryRow.test.js delete mode 100644 src/browser/modules/Stream/SysInfoFrame/index.test.js delete mode 100644 src/browser/modules/Stream/errorMessageFormater.test.js delete mode 100644 src/shared/services/testUtils.js diff --git a/src/browser/components/DesktopIntegration/index.test.js b/src/browser/components/DesktopIntegration/index.test.js deleted file mode 100644 index b5b5569ff21..00000000000 --- a/src/browser/components/DesktopIntegration/index.test.js +++ /dev/null @@ -1,142 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/* global test, expect, jest */ - -import { mount } from 'services/testUtils' -import DesktopIntegration from './index' - -describe('', () => { - test('does not render anything if no integration point', () => { - // Given - const integrationPoint = null - - // When - const result = mount(DesktopIntegration) - .withProps({ integrationPoint }) - // Then - .then(wrapper => { - expect(wrapper.text()).toEqual('') - }) - - // Return test result (promise) - return result - }) - test('does not render anything if there is an integration point', () => { - // Given - const integrationPoint = { x: true } - - // When - const result = mount(DesktopIntegration) - .withProps({ integrationPoint }) - // Then - .then(wrapper => { - expect(wrapper.text()).toEqual('') - }) - - // Return test result (promise) - return result - }) - test('calls onMount with data on mounting', () => { - // Given - const mFn = jest.fn() - const context = { - projects: [ - { - graphs: [ - { - status: 'ACTIVE', - configuration: { - protocols: { - bolt: { - username: 'neo4j' - } - } - } - } - ] - } - ] - } - const integrationPoint = { getContext: () => Promise.resolve(context) } - const props = { integrationPoint, onMount: mFn } - // When - const result = mount(DesktopIntegration, props) - // Then - .withProps() - .then(wrapper => { - expect(wrapper.text()).toEqual('') - expect(mFn).toHaveBeenCalledTimes(1) - return wrapper - }) - .then(wrapper => { - wrapper.setProps({ ...props, x: 1 }) // Update props for a rerender - wrapper.update() - expect(mFn).toHaveBeenCalledTimes(1) - }) - - // Return test result (promise) - return result - }) - test('calls onXxx with data on event XXX', () => { - // Given - let componentOnContextUpdate - const fn = jest.fn() - const oldContext = { projects: [] } - const newContext = { projects: [{ project: {} }] } - const event = { type: 'XXX' } - const nonListenEvent = { type: 'YYY' } - const integrationPoint = { - onContextUpdate: fn => (componentOnContextUpdate = fn) - } - // We want to get called onXxx for XXX type events - const props = { integrationPoint, onXxx: fn } - - // When - const result = mount(DesktopIntegration, props) - // Then - .withProps() - .then(wrapper => { - expect(fn).toHaveBeenCalledTimes(0) - return wrapper - }) - .then(wrapper => { - componentOnContextUpdate(event, newContext, oldContext) - expect(fn).toHaveBeenCalledTimes(1) - expect(fn).toHaveBeenLastCalledWith(event, newContext, oldContext) - return wrapper - }) - .then(wrapper => { - componentOnContextUpdate(nonListenEvent, newContext, oldContext) // We don't listen for this - expect(fn).toHaveBeenCalledTimes(1) - expect(fn).toHaveBeenLastCalledWith(event, newContext, oldContext) - return wrapper - }) - .then(wrapper => { - componentOnContextUpdate(event, newContext, oldContext) // Another one we're listening on - expect(fn).toHaveBeenCalledTimes(2) - expect(fn).toHaveBeenLastCalledWith(event, newContext, oldContext) - return wrapper - }) - - // Return test result (promise) - return result - }) -}) diff --git a/src/browser/components/Directives.test.js b/src/browser/components/Directives.test.js deleted file mode 100644 index 8fcc4851d6b..00000000000 --- a/src/browser/components/Directives.test.js +++ /dev/null @@ -1,121 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/* global test, expect, jest */ -import { Directives as DirectivesComponent } from './Directives' -import React from 'react' -import { mount } from 'services/testUtils' - -describe('Directives', () => { - test('should attach play topic directive when contents has a play-topic attribute', () => { - const clickEvent = jest.fn() - const html = foobar - const result = mount(DirectivesComponent) - .withProps({ content: html, onItemClick: clickEvent }) - .then(wrapper => { - const actual = wrapper.find('a').get(0) - actual.click() - expect(clickEvent).toHaveBeenCalled() - expect(clickEvent).toHaveBeenCalledWith(':play hello', true) - }) - return result - }) - test('should attach help topic directive when contents has a help-topic attribute', () => { - const clickEvent = jest.fn() - const html = foobar - const result = mount(DirectivesComponent) - .withProps({ content: html, onItemClick: clickEvent }) - .then(wrapper => { - const actual = wrapper.find('a').get(0) - actual.click() - expect(clickEvent).toHaveBeenCalled() - expect(clickEvent).toHaveBeenCalledWith(':help hello', true) - }) - return result - }) - test('should attach runnable directive when element has a tag of `pre.runnable`', () => { - const clickEvent = jest.fn() - const html =
foobar
- const result = mount(DirectivesComponent) - .withProps({ content: html, onItemClick: clickEvent }) - .then(wrapper => { - const actual = wrapper.find('pre.runnable').get(0) - actual.click() - expect(clickEvent).toHaveBeenCalled() - expect(clickEvent).toHaveBeenCalledWith('foobar', false) - }) - return result - }) - test('should attach runnable directive when element has a class name of `.runnable pre`', () => { - const clickEvent = jest.fn() - const html = ( - -
foobar
-
- ) - const result = mount(DirectivesComponent) - .withProps({ content: html, onItemClick: clickEvent }) - .then(wrapper => { - const actual = wrapper.find('.runnable pre').get(0) - actual.click() - expect(clickEvent).toHaveBeenCalled() - expect(clickEvent).toHaveBeenCalledWith('foobar', false) - }) - return result - }) - - test('should not attach any directives when contents does not have any directive attributes', () => { - const clickEvent = jest.fn() - const html = foobar - const result = mount(DirectivesComponent) - .withProps({ content: html, onItemClick: clickEvent }) - .then(wrapper => { - const actual = wrapper.find('a').get(0) - actual.click() - expect(clickEvent).not.toHaveBeenCalled() - }) - return result - }) - - test('should attach all directives when contents has both attributes in different elements', () => { - const clickEvent = jest.fn() - const html = ( - - ) - const result = mount(DirectivesComponent) - .withProps({ content: html, onItemClick: clickEvent }) - .then(wrapper => { - const actualHelp = wrapper.find('a.help').get(0) - const actualPlay = wrapper.find('a.play').get(0) - actualPlay.click() - expect(clickEvent).toHaveBeenCalledWith(':play play', true) - actualHelp.click() - expect(clickEvent).toHaveBeenCalledWith(':help help', true) - }) - return result - }) -}) diff --git a/src/browser/components/Display.test.js b/src/browser/components/Display.test.js deleted file mode 100644 index b2225eb22df..00000000000 --- a/src/browser/components/Display.test.js +++ /dev/null @@ -1,137 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/* global describe, test, expect */ - -import React from 'react' -import { mount } from 'services/testUtils' - -import Display from './Display' - -describe('', () => { - test('does not render if condition is false and lazy is set', () => { - // Given - const val = false - const children = [Hello] - const result = mount(Display) - .withProps({ if: val, lazy: 1, children }) - // Then - .then(wrapper => { - expect(wrapper.text()).toEqual('') - }) - - // Return test result (promise - return result - }) - test('does render if condition is false but lazy isnt set', () => { - // Given - const val = false - const children = [Hello] - const result = mount(Display) - .withProps({ if: val, children }) - // Then - .then(wrapper => { - expect(wrapper.text()).toEqual('Hello') - expect(wrapper.html()).toContain('display: none') - }) - - // Return test result (promise) - return result - }) - test('does render and display if condition is true', () => { - // Given - const val = true - const children = [Hello] - const result = mount(Display) - .withProps({ if: val, children }) - // Then - .then(wrapper => { - expect(wrapper.text()).toEqual('Hello') - expect(wrapper.html()).toContain('display: block') - }) - - // Return test result (promise) - return result - }) - test('can render as inline', () => { - // Given - const val = true - const children = [Hello] - const result = mount(Display) - .withProps({ if: val, inline: 1, children }) - // Then - .then(wrapper => { - expect(wrapper.text()).toEqual('Hello') - expect(wrapper.html()).toContain('display: inline') - }) - - // Return test result (promise) - return result - }) - test('lazy loads', () => { - // Given - const firstVal = false - const secondVal = true - const children = [Hello] - const result = mount(Display) - .withProps({ if: firstVal, lazy: 1, children }) - // Then - .then(wrapper => { - expect(wrapper.text()).toEqual('') - return wrapper - }) - .then(wrapper => { - wrapper.setProps({ if: secondVal, lazy: 1, children }) - wrapper.update() - expect(wrapper.text()).toEqual('Hello') - expect(wrapper.html()).toContain('display: block') - }) - - // Return test result (promise) - return result - }) - test('hides when condition becomes false', () => { - // Given - const children = [Hello] - const result = mount(Display) - .withProps({ if: false, lazy: 1, children }) - // Then - .then(wrapper => { - expect(wrapper.text()).toEqual('') - return wrapper - }) - .then(wrapper => { - wrapper.setProps({ if: true, lazy: 1, children }) - wrapper.update() - expect(wrapper.text()).toEqual('Hello') - expect(wrapper.html()).toContain('display: block') - return wrapper - }) - .then(wrapper => { - wrapper.setProps({ if: false, lazy: 1, children }) - wrapper.update() - expect(wrapper.text()).toEqual('Hello') - expect(wrapper.html()).toContain('display: none') - }) - - // Return test result (promise) - return result - }) -}) diff --git a/src/browser/components/form/formKeyHandler.test.js b/src/browser/components/form/formKeyHandler.test.js deleted file mode 100644 index ea90dd1503a..00000000000 --- a/src/browser/components/form/formKeyHandler.test.js +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -import FormKeyHandler from './formKeyHandler' - -describe('formKeyHandler', () => { - test('should register submit action when specified in constructor', () => { - const submitAction = 'foobar' - const formKeyHandler = new FormKeyHandler(submitAction) - expect(formKeyHandler.submitAction).toEqual(submitAction) - }) - test('should re-register submit action when specified in registerSubmit function', () => { - const submitAction = 'foo' - const otherSubmitAction = 'bar' - const formKeyHandler = new FormKeyHandler(submitAction) - - expect(formKeyHandler.submitAction).toEqual(submitAction) - - formKeyHandler.registerSubmit(otherSubmitAction) - expect(formKeyHandler.submitAction).toEqual(otherSubmitAction) - }) - test('should register input element with submit action', () => { - const submitAction = 'foo' - const input = bar - const position = 0 - const formKeyHandler = new FormKeyHandler(submitAction) - - formKeyHandler.registerInput(input, position) - expect(formKeyHandler.elements[0]).toEqual(input) - }) -}) diff --git a/src/browser/modules/ClickToCode/__snapshots__/index.test.js.snap b/src/browser/modules/ClickToCode/__snapshots__/index.test.js.snap deleted file mode 100644 index 00f4c7fb9d8..00000000000 --- a/src/browser/modules/ClickToCode/__snapshots__/index.test.js.snap +++ /dev/null @@ -1,11 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`ClickToCode does not render if no children 1`] = `""`; - -exports[`ClickToCode renders all children 1`] = `"
hellohi!
"`; - -exports[`ClickToCode renders children as code if no code is provided 1`] = `"hellohi!"`; - -exports[`ClickToCode renders code as the code when code is available 1`] = `"yo"`; - -exports[`ClickToCode renders if no CodeComponent is provided 1`] = `"my code"`; diff --git a/src/browser/modules/ClickToCode/index.test.js b/src/browser/modules/ClickToCode/index.test.js deleted file mode 100644 index 9c098857189..00000000000 --- a/src/browser/modules/ClickToCode/index.test.js +++ /dev/null @@ -1,124 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/* global describe, beforeEach, afterEach, test, expect, jest */ -import render from 'react-render-to-string' -import { createBus } from 'suber' - -import { ClickToCode } from './index' -import { SET_CONTENT } from 'shared/modules/editor/editorDuck' - -describe('ClickToCode', () => { - let MyComp - let bus - beforeEach(() => { - MyComp = ({ onClick, children }) => { - onClick() - return {children} - } - bus = createBus() - }) - afterEach(() => { - bus.reset() - }) - test('does not render if no children', () => { - // Given - const myFn = jest.fn() - - // When - bus.take(SET_CONTENT, myFn) - const component = render() - - // Then - expect(component).toMatchSnapshot() - expect(myFn).toHaveBeenCalledTimes(0) - }) - test('renders if no CodeComponent is provided', () => { - // Given - // When - const component = render(my code) - - // Then - expect(component).toMatchSnapshot() - }) - test('renders code as the code when code is available', () => { - // Given - const myFn = jest.fn() - const code = 'my code' - - // When - bus.take(SET_CONTENT, myFn) - const component = render( - - yo - - ) - - // Then - expect(component).toMatchSnapshot() - expect(myFn).toHaveBeenCalledTimes(1) - expect(myFn).toHaveBeenCalledWith({ message: code, type: SET_CONTENT }) - }) - test('renders children as code if no code is provided', () => { - // Given - const myFn = jest.fn() - const hello = 'hello' - const childrenString = 'hellohi!' - - // When - bus.take(SET_CONTENT, myFn) - const component = render( - - {hello}hi! - - ) - - // Then - expect(component).toMatchSnapshot() - expect(myFn).toHaveBeenCalledTimes(1) - expect(myFn).toHaveBeenCalledWith({ - message: childrenString, - type: SET_CONTENT - }) - }) - test('renders all children', () => { - // Given - const myFn = jest.fn() - const code = 'my code' - const children = ( -
- hellohi! -
- ) - - // When - bus.take(SET_CONTENT, myFn) - const component = render( - - {children} - - ) - - // Then - expect(component).toMatchSnapshot() - expect(myFn).toHaveBeenCalledTimes(1) - expect(myFn).toHaveBeenCalledWith({ message: code, type: SET_CONTENT }) - }) -}) diff --git a/src/browser/modules/DatabaseInfo/MetaItems.test.js b/src/browser/modules/DatabaseInfo/MetaItems.test.js deleted file mode 100644 index 02a80dd9f79..00000000000 --- a/src/browser/modules/DatabaseInfo/MetaItems.test.js +++ /dev/null @@ -1,79 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/* global jest, test, expect */ - -import { mount } from 'services/testUtils' -import { ecsapeCypherMetaItem } from 'services/utils' -import { LabelItems, RelationshipItems } from './MetaItems.jsx' - -test('LabelItems detects user defined label named * and creates query correctly', () => { - // Given - const onItemClick = jest.fn() - const labels = ['*', 'Label1'] - - // When - return mount(LabelItems) - .withProps({ - labels, - totalNumItems: labels.length, - onItemClick - }) - .then(wrapper => { - const items = wrapper.find(`[data-test-id='sidebarMetaItem']`) - items.forEach((item, i) => { - const element = item.get(0) - element.click() - const expectedCall = - i === 0 - ? 'MATCH (n) RETURN n LIMIT 25' - : `MATCH (n:${ecsapeCypherMetaItem(item.text())}) RETURN n LIMIT 25` - expect(onItemClick).toHaveBeenLastCalledWith(expectedCall) - }) - }) -}) - -test('RelationshipItems detects user defined relType named * and creates query correctly', () => { - // Given - const onItemClick = jest.fn() - const relationshipTypes = ['*', 'TYPE1'] - - // When - return mount(RelationshipItems) - .withProps({ - relationshipTypes, - totalNumItems: relationshipTypes.length, - onItemClick - }) - .then(wrapper => { - const items = wrapper.find(`[data-test-id='sidebarMetaItem']`) - items.forEach((item, i) => { - const element = item.get(0) - element.click() - const expectedCall = - i === 0 - ? 'MATCH p=()-->() RETURN p LIMIT 25' - : `MATCH p=()-[r:${ecsapeCypherMetaItem( - item.text() - )}]->() RETURN p LIMIT 25` - expect(onItemClick).toHaveBeenLastCalledWith(expectedCall) - }) - }) -}) diff --git a/src/browser/modules/DocTitle/index.test.js b/src/browser/modules/DocTitle/index.test.js deleted file mode 100644 index a3aa7c064e7..00000000000 --- a/src/browser/modules/DocTitle/index.test.js +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/* global describe, beforeEach, afterEach, test, expect */ -import { mount } from 'services/testUtils' -import DocTitle from './index' - -describe('DocTitle', () => { - test('should set document title', () => { - // Given - const titleString = 'foo' - const result = mount(DocTitle) - // When - .withProps({ titleString }) - .then(wrapper => { - expect(document.title).toBe(titleString) - }) - return result - }) -}) diff --git a/src/browser/modules/Guides/CarouselSlidePicker.test.js b/src/browser/modules/Guides/CarouselSlidePicker.test.js deleted file mode 100644 index 545d95afd00..00000000000 --- a/src/browser/modules/Guides/CarouselSlidePicker.test.js +++ /dev/null @@ -1,60 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/* global describe, beforeEach, afterEach, test, expect */ -import { mount } from 'services/testUtils' -import CarouselSlidePicker from './CarouselSlidePicker' - -describe('CarouselSlidePicker', () => { - test('should not render is slides prop is missing', () => { - // Given - const result = mount(CarouselSlidePicker) - // When - .withProps({}) - .then(wrapper => { - expect(wrapper.text()).toBe('') - }) - return result - }) - test('should render indicators if there are slides', () => { - // Given - const slides = ['foo', 'bar'] - const result = mount(CarouselSlidePicker) - // When - .withProps({ slides }) - .then(wrapper => { - expect(wrapper.find('li').length).toBe(2) - }) - return result - }) - test('should render active indicators if the slide index matches the visibleSlide prop', () => { - // Given - const slides = ['foo', 'bar'] - const visibleSlide = 0 - const result = mount(CarouselSlidePicker) - // When - .withProps({ slides, visibleSlide }) - .then(wrapper => { - expect(wrapper.find('li').length).toBe(2) - expect(wrapper.find('li').get(0)).not.toEqual(wrapper.find('li').get(1)) - }) - return result - }) -}) diff --git a/src/browser/modules/Sidebar/Settings.test.js b/src/browser/modules/Sidebar/Settings.test.js deleted file mode 100644 index 816fcf9b219..00000000000 --- a/src/browser/modules/Sidebar/Settings.test.js +++ /dev/null @@ -1,38 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/* global describe, test, expect */ -import { mount } from 'services/testUtils' -import { Settings as SettingsComponent } from './Settings' - -describe('Settings', () => { - test('should show known setting values', () => { - // Given - const result = mount(SettingsComponent) - .withProps({ settings: { maxRows: 100 } }) - // Then - .then(wrapper => { - expect(wrapper.find('.maxRows').prop('value')).toBe(100) - }) - - // Return test result (promise) - return result - }) -}) diff --git a/src/browser/modules/Stream/Auth/ChangePasswordForm.test.js b/src/browser/modules/Stream/Auth/ChangePasswordForm.test.js deleted file mode 100644 index 1f5b68626a9..00000000000 --- a/src/browser/modules/Stream/Auth/ChangePasswordForm.test.js +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/* global describe, beforeEach, afterEach, test, expect */ -import { mount } from 'services/testUtils' -import ChangePasswordForm from './ChangePasswordForm' - -describe('ChangePasswordForm', () => { - test('should render when no props are passed', () => { - // Given - const result = mount(ChangePasswordForm) - // When - .withProps({}) - .then(wrapper => { - expect(wrapper.length).toBe(1) - }) - return result - }) - test('should render children when passed as props', () => { - // Given - const children = foo - const result = mount(ChangePasswordForm) - // When - .withProps({ children }) - .then(wrapper => { - expect(wrapper.html()).toContain('foo') - }) - return result - }) -}) diff --git a/src/browser/modules/Stream/CypherFrame/AsciiView.test.js b/src/browser/modules/Stream/CypherFrame/AsciiView.test.js deleted file mode 100644 index 8d2cffa92a0..00000000000 --- a/src/browser/modules/Stream/CypherFrame/AsciiView.test.js +++ /dev/null @@ -1,104 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/* global jest, describe, test, expect */ - -import { mount } from 'services/testUtils' - -import { AsciiView, AsciiStatusbar } from './AsciiView' - -describe('AsciiViews', () => { - describe('AsciiView', () => { - test('displays bodyMessage if no rows', () => { - // Given - const sps = jest.fn() - const bodyMessage = 'My message' - const result = mount(AsciiView) - .withProps({ setParentState: sps, result: {} }) - // Then - .then(wrapper => { - wrapper.setState({ bodyMessage }) - wrapper.update() - expect(wrapper.text()).toContain('My message') - }) - - // Return test result (promise) - return result - }) - test('does not display bodyMessage if rows', () => { - // Given - const sps = jest.fn() - const bodyMessage = 'My message' - const serializedRows = [['x'], ['y']] - const result = mount(AsciiView) - .withProps({ setParentState: sps, result: {} }) - // Then - .then(wrapper => { - wrapper.setState({ bodyMessage, serializedRows }) - wrapper.update() - expect(wrapper.text()).not.toContain('My message') - expect(wrapper.text()).toContain('x') - }) - - // Return test result (promise) - return result - }) - }) - describe('AsciiStatusbar', () => { - test('displays statusBarMessage if no rows', () => { - // Given - const sps = jest.fn() - const statusBarMessage = 'My message' - const result = mount(AsciiStatusbar) - .withProps({ setParentState: sps, _asciiSerializedRows: undefined }) - // Then - .then(wrapper => { - wrapper.setState({ statusBarMessage }) - wrapper.update() - expect(wrapper.text()).toContain('My message') - expect(wrapper.text()).not.toContain('Max column width') - }) - - // Return test result (promise) - return result - }) - test('does not display statusBarMessage if rows', () => { - // Given - const sps = jest.fn() - const statusBarMessage = 'My message' - const serializedRows = [['x'], ['y']] - const result = mount(AsciiStatusbar) - .withProps({ - setParentState: sps, - _asciiSerializedRows: serializedRows - }) - // Then - .then(wrapper => { - wrapper.setState({ statusBarMessage }) - wrapper.update() - expect(wrapper.text()).not.toContain('My message') - expect(wrapper.text()).toContain('Max column width') - }) - - // Return test result (promise) - return result - }) - }) -}) diff --git a/src/browser/modules/Stream/CypherFrame/CodeView.test.js b/src/browser/modules/Stream/CypherFrame/CodeView.test.js deleted file mode 100644 index d986fb0bfa5..00000000000 --- a/src/browser/modules/Stream/CypherFrame/CodeView.test.js +++ /dev/null @@ -1,90 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/* global describe, test, expect */ -import { mount } from 'services/testUtils' - -import { CodeView, CodeStatusbar } from './CodeView' - -describe('CodeViews', () => { - describe('CodeView', () => { - test('displays nothing if not successful query', () => { - // we get no info from driver - // Given - const result = mount(CodeView) - .withProps({ request: { status: 'error' } }) - // Then - .then(wrapper => { - expect(wrapper.text()).toEqual('') - }) - - // Return test result (promise) - return result - }) - test('displays request and response info if successful query', () => { - // Given - const data = { - query: 'MATCH xx0', - request: { - status: 'success', - result: { - summary: { - server: { - version: 'xx1', - address: 'xx2' - } - }, - records: [{ res: 'xx3' }] - } - } - } - const result = mount(CodeView) - .withProps(data) - // Then - .then(wrapper => { - const text = wrapper.text() - expect(text).toContain('xx0') - expect(text).toContain('xx1') - expect(text).toContain('xx2') - expect(text).toContain('xx3') - }) - - // Return test result (promise) - return result - }) - }) - describe('CodeStatusbar', () => { - test('displays statusBarMessage', () => { - // Given - const statusBarMessage = 'My message' - const result = mount(CodeStatusbar) - .withProps({ result: {}, maxRows: 0 }) - // Then - .then(wrapper => { - wrapper.setState({ statusBarMessage }) - wrapper.update() - expect(wrapper.text()).toContain('My message') - }) - - // Return test result (promise) - return result - }) - }) -}) diff --git a/src/browser/modules/Stream/CypherFrame/ErrorsView.test.js b/src/browser/modules/Stream/CypherFrame/ErrorsView.test.js deleted file mode 100644 index 1b74577d4bb..00000000000 --- a/src/browser/modules/Stream/CypherFrame/ErrorsView.test.js +++ /dev/null @@ -1,117 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/* global describe, test, expect */ - -import { mount } from 'services/testUtils' - -import { ErrorsView, ErrorsStatusbar } from './ErrorsView' - -describe('ErrorsViews', () => { - describe('ErrorsView', () => { - test('displays nothing if no errors', () => { - // Given - const result = mount(ErrorsView) - .withProps({ result: {} }) - // Then - .then(wrapper => { - expect(wrapper.text()).toEqual('') - }) - - // Return test result (promise) - return result - }) - test('does displays an error', () => { - // Given - const result = mount(ErrorsView) - .withProps({ - result: { - code: 'Test.Error', - message: 'Test error description' - } - }) - // Then - .then(wrapper => { - const text = wrapper.text() - expect(text).toContain('ERROR') - expect(text).toContain('Test.Error') - expect(text).toContain('Test error description') - }) - - // Return test result (promise) - return result - }) - test('displays procedure link if unknown procedure', () => { - // Given - const procErrorCode = 'Neo.ClientError.Procedure.ProcedureNotFound' - const result = mount(ErrorsView) - .withProps({ - result: { - code: procErrorCode, - message: 'not found' - } - }) - // Then - .then(wrapper => { - const text = wrapper.text() - expect(text).toContain('ERROR') - expect(text).toContain(procErrorCode) - expect(text).toContain('not found') - expect(text).toContain('List available procedures') - }) - - // Return test result (promise) - return result - }) - }) - describe('ErrorsStatusbar', () => { - test('displays nothing if no error', () => { - // Given - const result = mount(ErrorsStatusbar) - .withProps({ result: {} }) - // Then - .then(wrapper => { - expect(wrapper.text()).toEqual('') - }) - - // Return test result (promise) - return result - }) - test('displays error', () => { - // Given - const result = mount(ErrorsStatusbar) - .withProps({ - result: { - code: 'Test.Error', - message: 'Test error description' - } - }) - // Then - .then(wrapper => { - expect(wrapper.text()).toContain('Test.Error') - expect(wrapper.text()).toContain('Test error description') - expect(wrapper.html()).toContain('exclamation-triangle') - }) - - // Return test result (promise) - return result - }) - }) -}) diff --git a/src/browser/modules/Stream/CypherFrame/PlanView.test.js b/src/browser/modules/Stream/CypherFrame/PlanView.test.js deleted file mode 100644 index 49c3117c558..00000000000 --- a/src/browser/modules/Stream/CypherFrame/PlanView.test.js +++ /dev/null @@ -1,104 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/* global jest, describe, test, expect */ -import { mount } from 'services/testUtils' -import { PlanView, PlanStatusbar } from './PlanView' - -describe('PlanViews', () => { - describe('PlanView', () => { - test('displays plan view if it exists', () => { - // Given - const display = jest.fn() - global.neo = { - queryPlan: el => { - return { - display - } - } - } - const data = { - query: 'MATCH xx0', - result: { - summary: { - plan: { - dbHits: 'xx0', - arguments: {}, - children: [] - } - } - } - } - const result = mount(PlanView) - .withProps(data) - // Then - .then(wrapper => { - const calls = display.mock.calls - const callObj = calls[0][0] - expect(callObj.root).toBeDefined() - expect(callObj.root.DbHits).toEqual('xx0') - }) - - // Return test result (promise) - return result - }) - }) - describe('PlanStatusbar', () => { - test('displays statusBarMessage', () => { - // Given - const intMock = num => { - return { - toNumber: () => num, - add: intMockInput => intMock(num + intMockInput.toNumber()) - } - } - const results = { - summary: { - resultAvailableAfter: intMock(100), - resultConsumedAfter: intMock(20) - } - } - const extractedPlan = { - root: { - version: 'xx0', - planner: 'xx1', - runtime: 'xx2', - totalDbHits: 'xx3' - } - } - const result = mount(PlanStatusbar) - .withProps({ result: results }) - // Then - .then(wrapper => { - wrapper.setState({ extractedPlan }) - wrapper.update() - const text = wrapper.text() - expect(text).toContain('xx0') - expect(text).toContain('xx1') - expect(text).toContain('xx2') - expect(text).toContain('xx3') - expect(text).toContain('120 ms') - }) - - // Return test result (promise) - return result - }) - }) -}) diff --git a/src/browser/modules/Stream/CypherFrame/TableView.test.js b/src/browser/modules/Stream/CypherFrame/TableView.test.js deleted file mode 100644 index 33b33ec5e2a..00000000000 --- a/src/browser/modules/Stream/CypherFrame/TableView.test.js +++ /dev/null @@ -1,92 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/* global jest, describe, test, expect */ - -import { mount } from 'services/testUtils' - -import { TableView, TableStatusbar, renderObject } from './TableView' - -describe('TableViews', () => { - describe('TableView', () => { - test('displays bodyMessage if no rows', () => { - // Given - const sps = jest.fn() - const bodyMessage = 'My message' - const result = mount(TableView) - .withProps({ setParentState: sps, result: {} }) - // Then - .then(wrapper => { - wrapper.setState({ bodyMessage }) - wrapper.update() - expect(wrapper.text()).toContain('My message') - }) - - // Return test result (promise) - return result - }) - test('does not display bodyMessage if rows', () => { - // Given - const sps = jest.fn() - const bodyMessage = 'My message' - const columns = [['x'], ['y']] - const data = [['z'], ['å']] - const result = mount(TableView) - .withProps({ setParentState: sps, result: {} }) - // Then - .then(wrapper => { - wrapper.setState({ bodyMessage, columns, data }) - wrapper.update() - expect(wrapper.text()).not.toContain('My message') - expect(wrapper.text()).toContain('x') - }) - - // Return test result (promise) - return result - }) - test('renderObject handles null values', () => { - // Given - const datas = [{ x: 1 }, null] - - // When - const results = datas.map(data => renderObject(data)) - - // Then - results.forEach((res, i) => expect(res).toMatchSnapshot()) - }) - }) - describe('TableStatusbar', () => { - test('displays statusBarMessage', () => { - // Given - const statusBarMessage = 'My message' - const result = mount(TableStatusbar) - .withProps({ result: {}, maxRows: 0 }) - // Then - .then(wrapper => { - wrapper.setState({ statusBarMessage }) - wrapper.update() - expect(wrapper.text()).toContain('My message') - }) - - // Return test result (promise) - return result - }) - }) -}) diff --git a/src/browser/modules/Stream/CypherFrame/WarningsView.test.js b/src/browser/modules/Stream/CypherFrame/WarningsView.test.js deleted file mode 100644 index 397108eabc6..00000000000 --- a/src/browser/modules/Stream/CypherFrame/WarningsView.test.js +++ /dev/null @@ -1,140 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/* global describe, test, expect */ - -import { mount } from 'services/testUtils' - -import { WarningsView, WarningsStatusbar } from './WarningsView' - -describe('WarningsViews', () => { - describe('WarningsView', () => { - test('displays nothing if no notifications', () => { - // Given - const result = mount(WarningsView) - .withProps({ result: {} }) - // Then - .then(wrapper => { - expect(wrapper.text()).toEqual('') - }) - - // Return test result (promise) - return result - }) - test('does displays a warning', () => { - // Given - const result = mount(WarningsView) - .withProps({ - result: { - summary: { - notifications: [ - { - severity: 'WARNING xx0', - title: 'My xx1 warning', - description: 'This is xx2 warning', - position: { - offset: 7, - line: 1 - } - } - ], - statement: { - text: 'EXPLAIN MATCH xx3' - } - } - } - }) - // Then - .then(wrapper => { - const text = wrapper.text() - expect(text).toContain('xx0') - expect(text).toContain('xx1') - expect(text).toContain('xx2') - expect(text).toContain('xx3') - expect(text).toContain('^') - expect(text).toContain('EXPLAIN') - }) - - // Return test result (promise) - return result - }) - test('does displays multiple warnings', () => { - // Given - const result = mount(WarningsView) - .withProps({ - result: { - summary: { - notifications: [ - { - severity: 'WARNING xx0', - title: 'My xx1 warning', - description: 'This is xx2 warning', - position: { - offset: 7, - line: 1 - } - }, - { - severity: 'WARNING yy0', - title: 'My yy1 warning', - description: 'This is yy2 warning', - position: { - offset: 3, - line: 1 - } - } - ], - statement: { - text: 'EXPLAIN MATCH zz3' - } - } - } - }) - // Then - .then(wrapper => { - const text = wrapper.text() - expect(text).toContain('xx0') - expect(text).toContain('xx1') - expect(text).toContain('xx2') - expect(text).toContain('yy0') - expect(text).toContain('yy1') - expect(text).toContain('yy2') - expect(text).toContain('zz3') - }) - - // Return test result (promise) - return result - }) - }) - describe('WarningsStatusbar', () => { - test('displays nothing', () => { - // Given - const result = mount(WarningsStatusbar) - .withProps({}) - // Then - .then(wrapper => { - expect(wrapper.text()).toEqual('') - }) - - // Return test result (promise) - return result - }) - }) -}) diff --git a/src/browser/modules/Stream/CypherFrame/__snapshots__/TableView.test.js.snap b/src/browser/modules/Stream/CypherFrame/__snapshots__/TableView.test.js.snap deleted file mode 100644 index 4c498f72751..00000000000 --- a/src/browser/modules/Stream/CypherFrame/__snapshots__/TableView.test.js.snap +++ /dev/null @@ -1,15 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`TableViews TableView renderObject handles null values 1`] = ` - - { - "x": 1.0 -} - -`; - -exports[`TableViews TableView renderObject handles null values 2`] = ` - - null - -`; diff --git a/src/browser/modules/Stream/CypherFrame/index.test.js b/src/browser/modules/Stream/CypherFrame/index.test.js deleted file mode 100644 index 3675f78c86b..00000000000 --- a/src/browser/modules/Stream/CypherFrame/index.test.js +++ /dev/null @@ -1,149 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/* global jest, describe, test, expect */ - -import { mount } from 'services/testUtils' -import { CypherFrame } from './index' -import * as viewTypes from 'shared/modules/stream/frameViewTypes' - -const toBoltRecord = obj => { - const keys = Object.keys(obj) - const vals = keys.map(key => obj[key]) - return { - get: x => obj[x], - forEach: fn => { - keys.forEach(key => fn(obj[key], key)) - }, - keys, - _fields: vals - } -} - -jest.mock('./VisualizationView', () => { - return { - VisualizationConnectedBus: () => { - return { - render: () => null - } - } - } -}) -jest.mock('react-suber', () => { - return { - withBus: a => a - } -}) -jest.mock('react-redux', () => { - return { - connect: (msp, mdp) => a => a - } -}) -describe('CypherFrame', () => { - test('shows a spinner while pending request and switches to ERRORS view when failing', () => { - // Given - const request = { - status: 'pending' - } - const failedRequest = { - status: 'error' - } - const result = mount(CypherFrame) - .withProps({ request, frame: { cmd: '' } }) - // Then - .then(wrapper => { - expect(wrapper.html()).toContain('fa-spinner') - return wrapper - }) - .then(wrapper => { - wrapper.setProps({ request: failedRequest }) - wrapper.update() - expect(wrapper.html()).not.toContain('fa-spinner') - expect(wrapper.instance().state.openView).toEqual(viewTypes.ERRORS) - }) - - // Return test result (promise) - return result - }) - test.skip('renders table view if no nodes', () => { - // I have no idea why this doesn't work - // Given - const request = { - status: 'success', - result: { - records: [toBoltRecord({ x: 'x' }), toBoltRecord({ y: 'y' })] - } - } - const result = mount(CypherFrame) - .withProps({ request, maxRows: 100, frame: { cmd: '' } }) - // Then - .then(wrapper => { - wrapper.update() - expect(wrapper.html()).toContain('') - expect(wrapper.instance().state.openView).toEqual(viewTypes.TABLE) - }) - // Return test result (promise) - return result - }) - test('renders errors view if error', () => { - // Given - const request = { - status: 'error', - result: { - code: 'Test.Error', - message: 'My error' - } - } - const result = mount(CypherFrame) - .withProps({ request, maxRows: 100, frame: { cmd: '' } }) - // Then - .then(wrapper => { - wrapper.update() - expect(wrapper.text()).toContain('Test.Error') - expect(wrapper.instance().state.openView).toEqual(viewTypes.ERRORS) - }) - // Return test result (promise) - return result - }) - test("renders text view if it's the recent one", () => { - // Given - const request = { - status: 'success', - result: { - records: [toBoltRecord({ x: 'x' }), toBoltRecord({ y: 'y' })] - } - } - const result = mount(CypherFrame) - .withProps({ - request, - maxRows: 100, - recentView: viewTypes.TEXT, - frame: { cmd: '' } - }) - // Then - .then(wrapper => { - wrapper.update() - expect(wrapper.text()).toContain('Max column width') - expect(wrapper.instance().state.openView).toEqual(viewTypes.TEXT) - }) - // Return test result (promise) - return result - }) -}) diff --git a/src/browser/modules/Stream/FrameError.test.js b/src/browser/modules/Stream/FrameError.test.js deleted file mode 100644 index 1bebd535e6f..00000000000 --- a/src/browser/modules/Stream/FrameError.test.js +++ /dev/null @@ -1,70 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/* global describe, beforeEach, afterEach, test, expect */ -import { mount } from 'services/testUtils' -import FrameError from './FrameError' - -describe('FrameError', () => { - test('should not render text when no props are passed', () => { - // Given - const result = mount(FrameError) - // When - .withProps({}) - .then(wrapper => { - expect(wrapper.text()).toBe('') - }) - return result - }) - test('should render code value text when code prop is passed', () => { - // Given - const code = 'foo' - const result = mount(FrameError) - // When - .withProps({ code }) - .then(wrapper => { - expect(wrapper.text().trim()).toBe(code) - }) - return result - }) - test('should render message value text when message prop is passed', () => { - // Given - const message = 'bar' - const result = mount(FrameError) - // When - .withProps({ message }) - .then(wrapper => { - expect(wrapper.text().trim()).toBe(`${message}`) - }) - return result - }) - test('should render both code and message value when code and message props are passed', () => { - // Given - const message = 'bar' - const code = 'for' - const result = mount(FrameError) - // When - .withProps({ message, code }) - .then(wrapper => { - expect(wrapper.text().trim()).toBe(`${code}: ${message}`) - }) - return result - }) -}) diff --git a/src/browser/modules/Stream/FrameSuccess.test.js b/src/browser/modules/Stream/FrameSuccess.test.js deleted file mode 100644 index 970942ab5da..00000000000 --- a/src/browser/modules/Stream/FrameSuccess.test.js +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/* global describe, beforeEach, afterEach, test, expect */ -import { mount } from 'services/testUtils' -import FrameSuccess from './FrameSuccess' - -describe('FrameSuccess', () => { - test('should not render text when no props are passed', () => { - // Given - const result = mount(FrameSuccess) - // When - .withProps({}) - .then(wrapper => { - expect(wrapper.text()).toBe('') - }) - return result - }) - test('should render message value and `undefined` text when message prop is passed', () => { - // Given - const message = 'bar' - const result = mount(FrameSuccess) - // When - .withProps({ message }) - .then(wrapper => { - expect(wrapper.text().trim()).toBe(message) - }) - return result - }) -}) diff --git a/src/browser/modules/Stream/HistoryRow.test.js b/src/browser/modules/Stream/HistoryRow.test.js deleted file mode 100644 index 97ebeba4f03..00000000000 --- a/src/browser/modules/Stream/HistoryRow.test.js +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/* global describe, beforeEach, afterEach, test, expect, jest */ -import { mount } from 'services/testUtils' -import HistoryRow from './HistoryRow' - -describe('HistoryRow', () => { - test('triggers function on click', () => { - // Given - const myFn = jest.fn() - const entry = 'foobar' - - // When - const result = mount(HistoryRow) - .withProps({ handleEntryClick: myFn, entry: entry }) - .then(wrapper => { - wrapper.simulate('click') - expect(wrapper.text()).toBe(entry) - expect(myFn).toHaveBeenCalledWith(entry) - }) - return result - }) -}) diff --git a/src/browser/modules/Stream/SysInfoFrame/index.test.js b/src/browser/modules/Stream/SysInfoFrame/index.test.js deleted file mode 100644 index 0cd6b21d599..00000000000 --- a/src/browser/modules/Stream/SysInfoFrame/index.test.js +++ /dev/null @@ -1,75 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/* global jest, describe, test, expect */ - -import uuid from 'uuid' -import { mount } from 'services/testUtils' -import { SysInfoFrame } from './index' - -jest.mock( - 'browser/modules/Stream/FrameTemplate', - () => ({ contents, children }) => ( -
- {contents} - {children} -
- ) -) - -describe('sysinfo component', () => { - test('should render causal cluster table', () => { - return mount(SysInfoFrame) - .withProps({ isACausalCluster: true, isConnected: true }) - .then(wrapper => { - expect(wrapper.html()).toContain('Causal Cluster Members') - }) - }) - test('should not render causal cluster table', () => { - return mount(SysInfoFrame) - .withProps({ isACausalCluster: false, isConnected: true }) - .then(wrapper => { - expect(wrapper.html()).not.toContain('Causal Cluster Members') - }) - }) - test('should not render ha table', () => { - const value = uuid.v4() - const label = 'InstanceId' - return mount(SysInfoFrame) - .withProps({ isConnected: true }) - .then(wrapper => { - expect(wrapper.html()).not.toContain(label) - expect(wrapper.html()).not.toContain(value) - - wrapper.setState({ ha: [{ label, value }] }) - wrapper.update() - - expect(wrapper.html()).toContain(label) - expect(wrapper.html()).toContain(value) - }) - }) - test('should display error when there is no connection', () => { - return mount(SysInfoFrame) - .withProps({ isConnected: false }) - .then(wrapper => { - expect(wrapper.state('error')).toBe('No connection available') - }) - }) -}) diff --git a/src/browser/modules/Stream/errorMessageFormater.test.js b/src/browser/modules/Stream/errorMessageFormater.test.js deleted file mode 100644 index f4fccb2da6d..00000000000 --- a/src/browser/modules/Stream/errorMessageFormater.test.js +++ /dev/null @@ -1,58 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/* global describe, test, expect */ - -import render from 'react-render-to-string' -import { errorMessageFormater } from './errorMessageFormater' - -describe('errorsHelper', () => { - test('should display custom message when code is 18 (IE + ws://localhost issue)', () => { - const error = errorMessageFormater(18) - - expect(error.title).toContain('18') - expect(error.message).toBeTruthy() - expect(render(error.message)).toContain('Internet Explorer') - }) - test('should return error code as code and message when message is missing', () => { - const errorCode = 0 - const error = errorMessageFormater(errorCode) - - expect(error.title.trim()).toEqual(errorCode.toString()) - expect(error.message.trim()).toEqual(errorCode.toString()) - }) - test('should return error code and message', () => { - const errorCode = 0 - const errorText = 'foobar' - const error = errorMessageFormater(errorCode, errorText) - - expect(error.title.trim()).toContain(errorCode.toString()) - expect(error.title.trim()).toContain(errorText) - expect(error.message.trim()).toContain(errorText) - }) - test('should only return error message when error code is missing', () => { - const errorCode = null - const errorText = 'foobar' - const error = errorMessageFormater(errorCode, errorText) - - expect(error.title).toBe(errorText) - expect(error.message).toBe(errorText) - }) -}) diff --git a/src/shared/services/bolt/boltMappings.test.js b/src/shared/services/bolt/boltMappings.test.js index 797e93e053b..b993108e46f 100644 --- a/src/shared/services/bolt/boltMappings.test.js +++ b/src/shared/services/bolt/boltMappings.test.js @@ -159,26 +159,26 @@ describe('boltMappings', () => { }) describe('extractNodesAndRelationshipsFromRecords', () => { - test.skip('should map bolt records with a path to nodes and relationships', () => { - let startNode = new neo4j.v1.types.Node('1', ['Person'], { + test('should map bolt records with a path to nodes and relationships', () => { + let startNode = new neo4j.types.Node('1', ['Person'], { prop1: 'prop1' }) - let endNode = new neo4j.v1.types.Node('2', ['Movie'], { + let endNode = new neo4j.types.Node('2', ['Movie'], { prop2: 'prop2' }) - let relationship = new neo4j.v1.types.Relationship( + let relationship = new neo4j.types.Relationship( '3', startNode.identity, endNode.identity, 'ACTED_IN', {} ) - let pathSegment = new neo4j.v1.types.PathSegment( + let pathSegment = new neo4j.types.PathSegment( startNode, relationship, endNode ) - let path = new neo4j.v1.types.Path(startNode, endNode, [pathSegment]) + let path = new neo4j.types.Path(startNode, endNode, [pathSegment]) let boltRecord = { keys: ['p'], get: key => path @@ -186,33 +186,33 @@ describe('boltMappings', () => { let { nodes, relationships } = extractNodesAndRelationshipsFromRecords( [boltRecord], - neo4j.v1.types + neo4j.types ) - expect(nodes).to.have.lengthOf(2) - let graphNodeStart = nodes.filter(node => node.id === '1')[0] + expect(nodes.length).toBe(2) + let graphNodeStart = nodes.filter(node => node.identity === '1')[0] expect(graphNodeStart).toBeDefined() expect(graphNodeStart.labels).toEqual(['Person']) expect(graphNodeStart.properties).toEqual({ prop1: 'prop1' }) - let graphNodeEnd = nodes.filter(node => node.id === '2')[0] + let graphNodeEnd = nodes.filter(node => node.identity === '2')[0] expect(graphNodeEnd).toBeDefined() expect(graphNodeEnd.labels).toEqual(['Movie']) expect(graphNodeEnd.properties).toEqual({ prop2: 'prop2' }) - expect(relationships).to.have.lengthOf(1) - expect(relationships[0].id).toEqual('3') - expect(relationships[0].startNodeId).toEqual('1') - expect(relationships[0].endNodeId).toEqual('2') + expect(relationships.length).toBe(1) + expect(relationships[0].identity).toEqual('3') + expect(relationships[0].start).toEqual('1') + expect(relationships[0].end).toEqual('2') expect(relationships[0].type).toEqual('ACTED_IN') expect(relationships[0].properties).toEqual({}) }) - test.skip('should map bolt nodes and relationships to graph nodes and relationships', () => { - let startNode = new neo4j.v1.types.Node('1', ['Person'], { + test('should map bolt nodes and relationships to graph nodes and relationships', () => { + let startNode = new neo4j.types.Node('1', ['Person'], { prop1: 'prop1' }) - let endNode = new neo4j.v1.types.Node('2', ['Movie'], { + let endNode = new neo4j.types.Node('2', ['Movie'], { prop2: 'prop2' }) - let relationship = new neo4j.v1.types.Relationship( + let relationship = new neo4j.types.Relationship( '3', startNode.identity, endNode.identity, @@ -236,99 +236,24 @@ describe('boltMappings', () => { let { nodes, relationships } = extractNodesAndRelationshipsFromRecords( [boltRecord], - neo4j.v1.types + neo4j.types ) - expect(nodes).to.have.lengthOf(2) - let graphNodeStart = nodes.filter(node => node.id === '1')[0] + expect(nodes.length).toBe(2) + let graphNodeStart = nodes.filter(node => node.identity === '1')[0] expect(graphNodeStart).toBeDefined() expect(graphNodeStart.labels).toEqual(['Person']) expect(graphNodeStart.properties).toEqual({ prop1: 'prop1' }) - let graphNodeEnd = nodes.filter(node => node.id === '2')[0] + let graphNodeEnd = nodes.filter(node => node.identity === '2')[0] expect(graphNodeEnd).toBeDefined() expect(graphNodeEnd.labels).toEqual(['Movie']) expect(graphNodeEnd.properties).toEqual({ prop2: 'prop2' }) - expect(relationships).to.have.lengthOf(1) - expect(relationships[0].id).toEqual('3') - expect(relationships[0].startNodeId).toEqual('1') - expect(relationships[0].endNodeId).toEqual('2') + expect(relationships.length).toBe(1) + expect(relationships[0].identity).toEqual('3') + expect(relationships[0].start).toEqual('1') + expect(relationships[0].end).toEqual('2') expect(relationships[0].type).toEqual('ACTED_IN') expect(relationships[0].properties).toEqual({}) }) - - test.skip('should not include relationships where neither start or end node is not in nodes list', () => { - let relationship = new neo4j.v1.types.Relationship( - '3', - 1, - 2, - 'ACTED_IN', - {} - ) - let boltRecord = { - keys: ['r'], - get: key => relationship - } - let relationships = extractNodesAndRelationshipsFromRecords( - [boltRecord], - neo4j.v1.types - ).relationships - expect(relationships.length).toBe(0) - }) - test.skip('should not include relationships where end node is not in nodes list', () => { - let startNode = new neo4j.v1.types.Node('1', ['Person'], { - prop1: 'prop1' - }) - let relationship = new neo4j.v1.types.Relationship( - '3', - startNode.identity, - 2, - 'ACTED_IN', - {} - ) - let boltRecord = { - keys: ['r', 'n1'], - get: key => { - if (key === 'r') { - return relationship - } - if (key === 'n1') { - return startNode - } - } - } - let relationships = extractNodesAndRelationshipsFromRecords( - [boltRecord], - neo4j.v1.types - ).relationships - expect(relationships.length).toBe(0) - }) - test.skip('should not include relationships where start node is not in nodes list', () => { - let endNode = new neo4j.v1.types.Node('2', ['Movie'], { - prop2: 'prop2' - }) - let relationship = new neo4j.v1.types.Relationship( - '3', - '1', - endNode.identity, - 'ACTED_IN', - {} - ) - let boltRecord = { - keys: ['r', 'n1'], - get: key => { - if (key === 'r') { - return relationship - } - if (key === 'n1') { - return endNode - } - } - } - let relationships = extractNodesAndRelationshipsFromRecords( - [boltRecord], - neo4j.v1.types - ).relationships - expect(relationships.length).toBe(0) - }) }) describe('extractPlan', () => { const createPlan = () => { diff --git a/src/shared/services/duckUtils.test.js b/src/shared/services/duckUtils.test.js index b5fd4181607..2e48c025820 100644 --- a/src/shared/services/duckUtils.test.js +++ b/src/shared/services/duckUtils.test.js @@ -47,21 +47,9 @@ describe('hydrate', () => { expect(newState.bar).toEqual(1) expect(newState.hydrated).toEqual(true) }) - test('should not merge initialState with state when state is undefined', () => { - // Given - const initialState = { foo: 0 } - const state = undefined - - // When - const newState = hydrate(initialState, state) - - // Then - expect(newState.foo).toEqual(0) - expect(newState.hydrated).toEqual(true) - }) }) describe('dehydrate', () => { - test.only('should remove hydrated key from state', () => { + test('should remove hydrated key from state', () => { // Given const state = { bar: 1, hydrated: true } diff --git a/src/shared/services/testUtils.js b/src/shared/services/testUtils.js deleted file mode 100644 index 62516f05cce..00000000000 --- a/src/shared/services/testUtils.js +++ /dev/null @@ -1,36 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -import { mount as enyzmeMount } from 'enzyme' - -export const mount = (Component, props = {}) => { - const wrapper = enyzmeMount() - return { - then: () => { - wrapper.update() - return Promise.resolve(wrapper) - }, - withProps: (props = null) => { - if (props) wrapper.setProps(props) - wrapper.update() - return Promise.resolve(wrapper) - } - } -} From 2f71bfa2aed4ba9424a6402743cc0005fa367694 Mon Sep 17 00:00:00 2001 From: Oskar Hane Date: Fri, 15 Jun 2018 11:41:14 +0200 Subject: [PATCH 21/40] Add react-testing-library --- package.json | 1 + src/browser/components/Display.test.js | 57 +++++++++ .../Render/__snapshots__/index.test.js.snap | 11 ++ src/browser/components/Render/index.test.js | 42 +++---- .../__snapshots__/Display.test.js.snap | 25 ++++ yarn.lock | 110 ++++++++++++++++++ 6 files changed, 225 insertions(+), 21 deletions(-) create mode 100644 src/browser/components/Display.test.js create mode 100644 src/browser/components/Render/__snapshots__/index.test.js.snap create mode 100644 src/browser/components/__snapshots__/Display.test.js.snap diff --git a/package.json b/package.json index ad4328eb75c..45bd4d61a92 100644 --- a/package.json +++ b/package.json @@ -106,6 +106,7 @@ "prettier-eslint": "^7.1.0", "prettier-eslint-cli": "^4.3.0", "react-hot-loader": "^1.3.0", + "react-testing-library": "^3.1.7", "redux-devtools": "^3.2.0", "redux-devtools-dock-monitor": "^1.1.1", "redux-devtools-log-monitor": "^1.0.11", diff --git a/src/browser/components/Display.test.js b/src/browser/components/Display.test.js new file mode 100644 index 00000000000..2bf1a65c57c --- /dev/null +++ b/src/browser/components/Display.test.js @@ -0,0 +1,57 @@ +/* + * Copyright (c) 2002-2018 "Neo4j, Inc" + * Network Engine for Objects in Lund AB [http://neotechnology.com] + * + * This file is part of Neo4j. + * + * Neo4j is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +/* global describe, test, expect */ + +import React from 'react' +import { render } from 'react-testing-library' + +import Display from './Display' + +describe('', () => { + test('hides if condition is false', () => { + // Given + const val = false + + // When + const { container } = render( + + Hello + + ) + + // Then + expect(container).toMatchSnapshot() + }) + test('does display if condition is true', () => { + // Given + const val = true + + // When + const { container } = render( + + Hello + + ) + + // Then + expect(container).toMatchSnapshot() + }) +}) diff --git a/src/browser/components/Render/__snapshots__/index.test.js.snap b/src/browser/components/Render/__snapshots__/index.test.js.snap new file mode 100644 index 00000000000..53409ffe51d --- /dev/null +++ b/src/browser/components/Render/__snapshots__/index.test.js.snap @@ -0,0 +1,11 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[` does not render if condition is false 1`] = `
`; + +exports[` does render if condition is true 1`] = ` +
+ + Hello + +
+`; diff --git a/src/browser/components/Render/index.test.js b/src/browser/components/Render/index.test.js index 0b5df2613ce..f46e19833f2 100644 --- a/src/browser/components/Render/index.test.js +++ b/src/browser/components/Render/index.test.js @@ -21,7 +21,7 @@ /* global describe, test, expect */ import React from 'react' -import { mount } from 'services/testUtils' +import { render } from 'react-testing-library' import Render from './index' @@ -29,29 +29,29 @@ describe('', () => { test('does not render if condition is false', () => { // Given const val = false - const children = [Hello] - const result = mount(Render) - .withProps({ if: val, children }) - // Then - .then(wrapper => { - expect(wrapper.text()).toEqual('') - }) - - // Return test result (promise - return result + + // When + const { container } = render( + + Hello + + ) + + // Then + expect(container).toMatchSnapshot() }) test('does render if condition is true', () => { // Given const val = true - const children = [Hello] - const result = mount(Render) - .withProps({ if: val, children }) - // Then - .then(wrapper => { - expect(wrapper.text()).toEqual('Hello') - }) - - // Return test result (promise - return result + + // When + const { container } = render( + + Hello + + ) + + // Then + expect(container).toMatchSnapshot() }) }) diff --git a/src/browser/components/__snapshots__/Display.test.js.snap b/src/browser/components/__snapshots__/Display.test.js.snap new file mode 100644 index 00000000000..13511d18fbe --- /dev/null +++ b/src/browser/components/__snapshots__/Display.test.js.snap @@ -0,0 +1,25 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[` does display if condition is true 1`] = ` +
+
+ + Hello + +
+
+`; + +exports[` hides if condition is false 1`] = ` +
+
+ + Hello + +
+
+`; diff --git a/yarn.lock b/yarn.lock index 75ed74824f7..431b9069213 100644 --- a/yarn.lock +++ b/yarn.lock @@ -559,6 +559,10 @@ atob@^2.0.0: version "2.0.3" resolved "https://neo.jfrog.io/neo/api/npm/npm/atob/-/atob-2.0.3.tgz#19c7a760473774468f20b2d2d03372ad7d4cbf5d" +atob@^2.1.1: + version "2.1.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/atob/-/atob-2.1.1.tgz?dl=https://registry.npmjs.org/atob/-/atob-2.1.1.tgz#ae2d5a729477f289d60dd7f96a6314a22dd6c22a" + attr-accept@^1.0.3: version "1.1.2" resolved "https://neo.jfrog.io/neo/api/npm/npm/attr-accept/-/attr-accept-1.1.2.tgz?dl=https://registry.npmjs.org/attr-accept/-/attr-accept-1.1.2.tgz#6836bfe054e4ef1ee3076fdde56cec9bb3ffead6" @@ -2424,6 +2428,15 @@ css-what@2.1: version "2.1.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/css-what/-/css-what-2.1.0.tgz#9467d032c38cfaefb9f2d79501253062f87fa1bd" +css@^2.2.3: + version "2.2.3" + resolved "https://neo.jfrog.io/neo/api/npm/npm/css/-/css-2.2.3.tgz?dl=https://registry.npmjs.org/css/-/css-2.2.3.tgz#f861f4ba61e79bedc962aa548e5780fd95cbc6be" + dependencies: + inherits "^2.0.1" + source-map "^0.1.38" + source-map-resolve "^0.5.1" + urix "^0.1.0" + cssesc@^0.1.0: version "0.1.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/cssesc/-/cssesc-0.1.0.tgz?dl=https://registry.npmjs.org/cssesc/-/cssesc-0.1.0.tgz#c814903e45623371a0477b40109aaafbeeaddbb4" @@ -2791,6 +2804,15 @@ dom-storage@2.1.0: version "2.1.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/dom-storage/-/dom-storage-2.1.0.tgz?dl=https://registry.npmjs.org/dom-storage/-/dom-storage-2.1.0.tgz#00fb868bc9201357ea243c7bcfd3304c1e34ea39" +dom-testing-library@^2.3.1: + version "2.6.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/dom-testing-library/-/dom-testing-library-2.6.0.tgz?dl=https://registry.npmjs.org/dom-testing-library/-/dom-testing-library-2.6.0.tgz#8bc38c63b41b10830e6a5034f9fc0ed78c8ba484" + dependencies: + jest-dom "^1.0.0" + mutationobserver-shim "^0.3.2" + pretty-format "^22.4.3" + wait-for-expect "^0.4.0" + domain-browser@^1.1.1: version "1.2.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/domain-browser/-/domain-browser-1.2.0.tgz?dl=https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" @@ -4905,10 +4927,30 @@ jest-diff@^21.2.1: jest-get-type "^21.2.0" pretty-format "^21.2.1" +jest-diff@^22.4.3: + version "22.4.3" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-diff/-/jest-diff-22.4.3.tgz?dl=https://registry.npmjs.org/jest-diff/-/jest-diff-22.4.3.tgz#e18cc3feff0aeef159d02310f2686d4065378030" + dependencies: + chalk "^2.0.1" + diff "^3.2.0" + jest-get-type "^22.4.3" + pretty-format "^22.4.3" + jest-docblock@^21.2.0: version "21.2.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-docblock/-/jest-docblock-21.2.0.tgz#51529c3b30d5fd159da60c27ceedc195faf8d414" +jest-dom@^1.0.0: + version "1.3.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-dom/-/jest-dom-1.3.1.tgz?dl=https://registry.npmjs.org/jest-dom/-/jest-dom-1.3.1.tgz#4eba15d54059182ee0d3682a9fff0d957ad874c7" + dependencies: + chalk "^2.4.1" + css "^2.2.3" + jest-diff "^22.4.3" + jest-matcher-utils "^22.4.3" + pretty-format "^23.0.1" + redent "^2.0.0" + jest-environment-jsdom@^21.2.1: version "21.2.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-environment-jsdom/-/jest-environment-jsdom-21.2.1.tgz#38d9980c8259b2a608ec232deee6289a60d9d5b4" @@ -4928,6 +4970,10 @@ jest-get-type@^21.2.0: version "21.2.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-get-type/-/jest-get-type-21.2.0.tgz#f6376ab9db4b60d81e39f30749c6c466f40d4a23" +jest-get-type@^22.4.3: + version "22.4.3" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-get-type/-/jest-get-type-22.4.3.tgz?dl=https://registry.npmjs.org/jest-get-type/-/jest-get-type-22.4.3.tgz#e3a8504d8479342dd4420236b322869f18900ce4" + jest-haste-map@^21.2.0: version "21.2.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-haste-map/-/jest-haste-map-21.2.0.tgz#1363f0a8bb4338f24f001806571eff7a4b2ff3d8" @@ -4960,6 +5006,14 @@ jest-matcher-utils@^21.2.1: jest-get-type "^21.2.0" pretty-format "^21.2.1" +jest-matcher-utils@^22.4.3: + version "22.4.3" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-matcher-utils/-/jest-matcher-utils-22.4.3.tgz?dl=https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-22.4.3.tgz#4632fe428ebc73ebc194d3c7b65d37b161f710ff" + dependencies: + chalk "^2.0.1" + jest-get-type "^22.4.3" + pretty-format "^22.4.3" + jest-message-util@^21.2.1: version "21.2.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-message-util/-/jest-message-util-21.2.1.tgz#bfe5d4692c84c827d1dcf41823795558f0a1acbe" @@ -5809,6 +5863,10 @@ multicast-dns@^6.0.1: dns-packet "^1.3.1" thunky "^1.0.2" +mutationobserver-shim@^0.3.2: + version "0.3.2" + resolved "https://neo.jfrog.io/neo/api/npm/npm/mutationobserver-shim/-/mutationobserver-shim-0.3.2.tgz?dl=https://registry.npmjs.org/mutationobserver-shim/-/mutationobserver-shim-0.3.2.tgz#f4d5dae7a4971a2207914fb5a90ebd514b65acca" + mute-stream@0.0.7: version "0.0.7" resolved "https://neo.jfrog.io/neo/api/npm/npm/mute-stream/-/mute-stream-0.0.7.tgz?dl=https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" @@ -7216,6 +7274,20 @@ pretty-format@^22.0.3: ansi-regex "^3.0.0" ansi-styles "^3.2.0" +pretty-format@^22.4.3: + version "22.4.3" + resolved "https://neo.jfrog.io/neo/api/npm/npm/pretty-format/-/pretty-format-22.4.3.tgz?dl=https://registry.npmjs.org/pretty-format/-/pretty-format-22.4.3.tgz#f873d780839a9c02e9664c8a082e9ee79eaac16f" + dependencies: + ansi-regex "^3.0.0" + ansi-styles "^3.2.0" + +pretty-format@^23.0.1: + version "23.0.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/pretty-format/-/pretty-format-23.0.1.tgz?dl=https://registry.npmjs.org/pretty-format/-/pretty-format-23.0.1.tgz#d61d065268e4c759083bccbca27a01ad7c7601f4" + dependencies: + ansi-regex "^3.0.0" + ansi-styles "^3.2.0" + private@^0.1.6: version "0.1.7" resolved "https://neo.jfrog.io/neo/api/npm/npm/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" @@ -7539,6 +7611,13 @@ react-suber@1.0.4: dependencies: hoist-non-react-statics "^2.5.0" +react-testing-library@^3.1.7: + version "3.1.7" + resolved "https://neo.jfrog.io/neo/api/npm/npm/react-testing-library/-/react-testing-library-3.1.7.tgz?dl=https://registry.npmjs.org/react-testing-library/-/react-testing-library-3.1.7.tgz#c5ce14483ef91c1ad611f074ff646b29952dd1ba" + dependencies: + dom-testing-library "^2.3.1" + wait-for-expect "^0.5.0" + react-timeago@^3.4.3: version "3.4.3" resolved "https://neo.jfrog.io/neo/api/npm/npm/react-timeago/-/react-timeago-3.4.3.tgz#eb9061eefb044e4a2b09ce8c99d34645b2dbfa25" @@ -7646,6 +7725,13 @@ redent@^1.0.0: indent-string "^2.1.0" strip-indent "^1.0.1" +redent@^2.0.0: + version "2.0.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/redent/-/redent-2.0.0.tgz?dl=https://registry.npmjs.org/redent/-/redent-2.0.0.tgz#c1b2007b42d57eb1389079b3c8333639d5e1ccaa" + dependencies: + indent-string "^3.0.0" + strip-indent "^2.0.0" + reduce-css-calc@^1.2.6, reduce-css-calc@^1.2.7: version "1.3.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz#747c914e049614a4c9cfbba629871ad1d2927716" @@ -8354,6 +8440,16 @@ source-map-resolve@^0.5.0: source-map-url "^0.4.0" urix "^0.1.0" +source-map-resolve@^0.5.1: + version "0.5.2" + resolved "https://neo.jfrog.io/neo/api/npm/npm/source-map-resolve/-/source-map-resolve-0.5.2.tgz?dl=https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" + dependencies: + atob "^2.1.1" + decode-uri-component "^0.2.0" + resolve-url "^0.2.1" + source-map-url "^0.4.0" + urix "^0.1.0" + source-map-support@^0.4.15: version "0.4.18" resolved "https://neo.jfrog.io/neo/api/npm/npm/source-map-support/-/source-map-support-0.4.18.tgz?dl=https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" @@ -8368,6 +8464,12 @@ source-map@0.5.x, source-map@^0.5.3, source-map@^0.5.6, source-map@^0.5.7, sourc version "0.5.7" resolved "https://neo.jfrog.io/neo/api/npm/npm/source-map/-/source-map-0.5.7.tgz?dl=https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" +source-map@^0.1.38: + version "0.1.43" + resolved "https://neo.jfrog.io/neo/api/npm/npm/source-map/-/source-map-0.1.43.tgz?dl=https://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz#c24bc146ca517c1471f5dacbe2571b2b7f9e3346" + dependencies: + amdefine ">=0.0.4" + source-map@^0.4.4: version "0.4.4" resolved "https://neo.jfrog.io/neo/api/npm/npm/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" @@ -9170,6 +9272,14 @@ vm-browserify@0.0.4: dependencies: indexof "0.0.1" +wait-for-expect@^0.4.0: + version "0.4.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/wait-for-expect/-/wait-for-expect-0.4.0.tgz?dl=https://registry.npmjs.org/wait-for-expect/-/wait-for-expect-0.4.0.tgz#341c96ab89d6102a0169a9be6cd0de354de92c17" + +wait-for-expect@^0.5.0: + version "0.5.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/wait-for-expect/-/wait-for-expect-0.5.0.tgz?dl=https://registry.npmjs.org/wait-for-expect/-/wait-for-expect-0.5.0.tgz#cc935a94c6039967bd7760c9e9cc557f4674887a" + walker@~1.0.5: version "1.0.7" resolved "https://neo.jfrog.io/neo/api/npm/npm/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" From 06c744a16a8a787d95b46c3dce363d9565d1ed38 Mon Sep 17 00:00:00 2001 From: Oskar Hane Date: Fri, 15 Jun 2018 12:15:54 +0200 Subject: [PATCH 22/40] Add tests fir Directives component --- package.json | 31 +- src/browser/components/Directives.test.js | 175 +++++ .../__snapshots__/Directives.test.js.snap | 110 +++ yarn.lock | 726 +++++++++++++++++- 4 files changed, 1011 insertions(+), 31 deletions(-) create mode 100644 src/browser/components/Directives.test.js create mode 100644 src/browser/components/__snapshots__/Directives.test.js.snap diff --git a/package.json b/package.json index 45bd4d61a92..63a19554710 100644 --- a/package.json +++ b/package.json @@ -15,8 +15,10 @@ "apiVersion": "^1.2.0" }, "scripts": { - "start": "webpack-dashboard -t 'Neo4j Browser' -- webpack-dev-server --colors --no-info", - "starts": "webpack-dashboard -t 'Neo4j Browser' -- webpack-dev-server --https --colors --no-info", + "start": + "webpack-dashboard -t 'Neo4j Browser' -- webpack-dev-server --colors --no-info", + "starts": + "webpack-dashboard -t 'Neo4j Browser' -- webpack-dev-server --https --colors --no-info", "startnodash": "webpack-dev-server --colors --no-info", "precommit": "lint-staged", "format": "prettier-eslint 'src/**/!(*.min).js' 'src/**/*.jsx' --write", @@ -29,35 +31,29 @@ "build": "rm -rf ./dist && NODE_ENV=\"production\" webpack", "prepare-jar": "node ./scripts/prepare-mvn-package.js", "jar": "yarn build && mvn package", - "version-pom": "node ./scripts/set-pom-version.js -f ./pom.xml -v $npm_package_version", + "version-pom": + "node ./scripts/set-pom-version.js -f ./pom.xml -v $npm_package_version", "version": "npm run version-pom && git add ./pom.xml", "update-licenses": "sh ./scripts/generate_licenses.sh" }, "lint-staged": { "linters": { - "*.{js,jsx}": [ - "prettier-eslint --write", - "git add" - ] + "*.{js,jsx}": ["prettier-eslint --write", "git add"] } }, "jest": { - "testPathIgnorePatterns": [ - ".jsx$", - "/e2e_tests/" - ], + "setupFiles": ["raf/polyfill.js"], + "testPathIgnorePatterns": ["/e2e_tests/"], "moduleNameMapper": { - "\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga|html)$": "/__mocks__/fileMock.js", + "\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga|html)$": + "/__mocks__/fileMock.js", "\\.(css|less)$": "/__mocks__/styleMock.js", "^neo4j-driver-alias$": "neo4j-driver", "^browser-styles(.*)$": "/src/browser/styles$1", "^browser-components(.*)$": "/src/browser/components$1", "worker-loader": "/__mocks__/workerLoaderMock.js" }, - "modulePaths": [ - "/src", - "/src/shared" - ] + "modulePaths": ["/src", "/src/shared"] }, "devDependencies": { "autoprefixer": "^7.1.4", @@ -92,7 +88,7 @@ "file-loader": "^0.11.1", "html-loader": "^0.5.1", "html-webpack-plugin": "^2.30.1", - "jest": "^21.0.1", + "jest": "^23.1.0", "jest-cli": "^21.0.1", "js2xmlparser": "^3.0.0", "json-loader": "^0.5.7", @@ -105,6 +101,7 @@ "precss": "^2.0.0", "prettier-eslint": "^7.1.0", "prettier-eslint-cli": "^4.3.0", + "raf": "^3.4.0", "react-hot-loader": "^1.3.0", "react-testing-library": "^3.1.7", "redux-devtools": "^3.2.0", diff --git a/src/browser/components/Directives.test.js b/src/browser/components/Directives.test.js new file mode 100644 index 00000000000..fe89fd68794 --- /dev/null +++ b/src/browser/components/Directives.test.js @@ -0,0 +1,175 @@ +/* + * Copyright (c) 2002-2018 "Neo4j, Inc" + * Network Engine for Objects in Lund AB [http://neotechnology.com] + * + * This file is part of Neo4j. + * + * Neo4j is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +/* global test, expect, jest, MouseEvent */ +import React from 'react' +import { render, fireEvent } from 'react-testing-library' +import { Directives as DirectivesComponent } from './Directives' + +describe('Directives', () => { + test('should attach play topic directive when contents has a play-topic attribute', () => { + // Given + const clickEvent = jest.fn() + const html = button + + // When + const { container, getByText } = render( + + ) + fireEvent( + getByText('button'), + new MouseEvent('click', { + bubbles: true, // click events must bubble for React to see it + cancelable: true + }) + ) + + // Then + expect(clickEvent).toHaveBeenCalled() + expect(clickEvent).toHaveBeenCalledWith(':play hello', true) + expect(container).toMatchSnapshot() + }) + test('should attach help topic directive when contents has a play-topic attribute', () => { + // Given + const clickEvent = jest.fn() + const html = link + + // When + const { container, getByText } = render( + + ) + fireEvent( + getByText('link'), + new MouseEvent('click', { + bubbles: true, // click events must bubble for React to see it + cancelable: true + }) + ) + + // Then + expect(clickEvent).toHaveBeenCalled() + expect(clickEvent).toHaveBeenCalledWith(':help hello', true) + expect(container).toMatchSnapshot() + }) + test('should attach runnable directive when element has a tag of `pre.runnable`', () => { + // Given + const clickEvent = jest.fn() + const html =
my code
+ + // When + const { container, getByText } = render( + + ) + fireEvent( + getByText('my code'), + new MouseEvent('click', { + bubbles: true, // click events must bubble for React to see it + cancelable: true + }) + ) + + // Then + expect(clickEvent).toHaveBeenCalled() + expect(clickEvent).toHaveBeenCalledWith('my code', false) + expect(container).toMatchSnapshot() + }) + test('should attach runnable directive when element has a class name of `.runnable pre`', () => { + // Given + const clickEvent = jest.fn() + const html = ( + +
my code
+
+ ) + + // When + const { container, getByText } = render( + + ) + fireEvent( + getByText('my code'), + new MouseEvent('click', { + bubbles: true, // click events must bubble for React to see it + cancelable: true + }) + ) + + // Then + expect(clickEvent).toHaveBeenCalled() + expect(clickEvent).toHaveBeenCalledWith('my code', false) + expect(container).toMatchSnapshot() + }) + test('should attach all directives when contents has both attributes in different elements', () => { + // Given + const clickEvent = jest.fn() + const html = ( +
+ help + play +
+ ) + + // When + const { container, getByText } = render( + + ) + fireEvent( + getByText('help'), + new MouseEvent('click', { + bubbles: true, // click events must bubble for React to see it + cancelable: true + }) + ) + fireEvent( + getByText('play'), + new MouseEvent('click', { + bubbles: true, // click events must bubble for React to see it + cancelable: true + }) + ) + + // Then + expect(clickEvent).toHaveBeenCalledTimes(2) + expect(clickEvent).toHaveBeenCalledWith(':help help', true) + expect(clickEvent).toHaveBeenCalledWith(':play play', true) + expect(container).toMatchSnapshot() + }) + test('should not attach any directives when contents does not have any directive attributes', () => { + // Given + const clickEvent = jest.fn() + const html = foobar + + // When + const { container, getByText } = render( + + ) + fireEvent( + getByText('foobar'), + new MouseEvent('click', { + bubbles: true, // click events must bubble for React to see it + cancelable: true + }) + ) + + // Then + expect(clickEvent).not.toHaveBeenCalled() + expect(container).toMatchSnapshot() + }) +}) diff --git a/src/browser/components/__snapshots__/Directives.test.js.snap b/src/browser/components/__snapshots__/Directives.test.js.snap new file mode 100644 index 00000000000..626b484f670 --- /dev/null +++ b/src/browser/components/__snapshots__/Directives.test.js.snap @@ -0,0 +1,110 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`Directives should attach all directives when contents has both attributes in different elements 1`] = ` + +`; + +exports[`Directives should attach help topic directive when contents has a play-topic attribute 1`] = ` + +`; + +exports[`Directives should attach play topic directive when contents has a play-topic attribute 1`] = ` + +`; + +exports[`Directives should attach runnable directive when element has a class name of \`.runnable pre\` 1`] = ` +
+
+ +
+        
+        my code
+      
+
+
+
+`; + +exports[`Directives should attach runnable directive when element has a tag of \`pre.runnable\` 1`] = ` +
+
+
+      
+      my code
+    
+
+
+`; + +exports[`Directives should not attach any directives when contents does not have any directive attributes 1`] = ` + +`; diff --git a/yarn.lock b/yarn.lock index 431b9069213..e45ef522ab2 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,12 +2,26 @@ # yarn lockfile v1 +"@babel/code-frame@^7.0.0-beta.35": + version "7.0.0-beta.51" + resolved "https://neo.jfrog.io/neo/api/npm/npm/@babel/code-frame/-/code-frame-7.0.0-beta.51.tgz?dl=https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.0.0-beta.51.tgz#bd71d9b192af978df915829d39d4094456439a0c" + dependencies: + "@babel/highlight" "7.0.0-beta.51" + "@babel/helper-annotate-as-pure@^7.0.0-beta.37": version "7.0.0-beta.40" resolved "https://neo.jfrog.io/neo/api/npm/npm/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0-beta.40.tgz#095dd4c70b231eba17ebf61c3434e6f9d71bd574" dependencies: "@babel/types" "7.0.0-beta.40" +"@babel/highlight@7.0.0-beta.51": + version "7.0.0-beta.51" + resolved "https://neo.jfrog.io/neo/api/npm/npm/@babel/highlight/-/highlight-7.0.0-beta.51.tgz?dl=https://registry.npmjs.org/@babel/highlight/-/highlight-7.0.0-beta.51.tgz#e8844ae25a1595ccfd42b89623b4376ca06d225d" + dependencies: + chalk "^2.0.0" + esutils "^2.0.2" + js-tokens "^3.0.0" + "@babel/types@7.0.0-beta.40": version "7.0.0-beta.40" resolved "https://neo.jfrog.io/neo/api/npm/npm/@babel/types/-/types-7.0.0-beta.40.tgz#25c3d7aae14126abe05fcb098c65a66b6d6b8c14" @@ -207,7 +221,7 @@ version "4.0.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/@types/sinon/-/sinon-4.0.0.tgz?dl=https://registry.npmjs.org/@types/sinon/-/sinon-4.0.0.tgz#9a93ffa4ee1329e85166278a5ed99f81dc4c8362" -abab@^1.0.3: +abab@^1.0.3, abab@^1.0.4: version "1.0.4" resolved "https://neo.jfrog.io/neo/api/npm/npm/abab/-/abab-1.0.4.tgz#5faad9c2c07f60dd76770f71cf025b62a63cfd4e" @@ -234,6 +248,12 @@ acorn-globals@^3.1.0: dependencies: acorn "^4.0.4" +acorn-globals@^4.1.0: + version "4.1.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/acorn-globals/-/acorn-globals-4.1.0.tgz?dl=https://registry.npmjs.org/acorn-globals/-/acorn-globals-4.1.0.tgz#ab716025dbe17c54d3ef81d32ece2b2d99fe2538" + dependencies: + acorn "^5.0.0" + acorn-jsx@^3.0.0: version "3.0.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/acorn-jsx/-/acorn-jsx-3.0.1.tgz?dl=https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" @@ -372,6 +392,12 @@ append-transform@^0.4.0: dependencies: default-require-extensions "^1.0.0" +append-transform@^1.0.0: + version "1.0.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/append-transform/-/append-transform-1.0.0.tgz?dl=https://registry.npmjs.org/append-transform/-/append-transform-1.0.0.tgz#046a52ae582a228bd72f58acfbe2967c678759ab" + dependencies: + default-require-extensions "^2.0.0" + aproba@^1.0.3, aproba@^1.1.1: version "1.2.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/aproba/-/aproba-1.2.0.tgz?dl=https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" @@ -831,6 +857,13 @@ babel-jest@^21.0.0, babel-jest@^21.2.0: babel-plugin-istanbul "^4.0.0" babel-preset-jest "^21.2.0" +babel-jest@^23.0.1: + version "23.0.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/babel-jest/-/babel-jest-23.0.1.tgz?dl=https://registry.npmjs.org/babel-jest/-/babel-jest-23.0.1.tgz#bbad3bf523fb202da05ed0a6540b48c84eed13a6" + dependencies: + babel-plugin-istanbul "^4.1.6" + babel-preset-jest "^23.0.1" + babel-loader@^7.1.2: version "7.1.4" resolved "https://neo.jfrog.io/neo/api/npm/npm/babel-loader/-/babel-loader-7.1.4.tgz#e3463938bd4e6d55d1c174c5485d406a188ed015" @@ -859,10 +892,23 @@ babel-plugin-istanbul@^4.0.0: istanbul-lib-instrument "^1.7.5" test-exclude "^4.1.1" +babel-plugin-istanbul@^4.1.6: + version "4.1.6" + resolved "https://neo.jfrog.io/neo/api/npm/npm/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.6.tgz?dl=https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.6.tgz#36c59b2192efce81c5b378321b74175add1c9a45" + dependencies: + babel-plugin-syntax-object-rest-spread "^6.13.0" + find-up "^2.1.0" + istanbul-lib-instrument "^1.10.1" + test-exclude "^4.2.1" + babel-plugin-jest-hoist@^21.2.0: version "21.2.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-21.2.0.tgz#2cef637259bd4b628a6cace039de5fcd14dbb006" +babel-plugin-jest-hoist@^23.0.1: + version "23.0.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-23.0.1.tgz?dl=https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-23.0.1.tgz#eaa11c964563aea9c21becef2bdf7853f7f3c148" + babel-plugin-module-resolver@^2.4.0: version "2.7.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/babel-plugin-module-resolver/-/babel-plugin-module-resolver-2.7.1.tgz#18be3c42ddf59f7a456c9e0512cd91394f6e4be1" @@ -1235,6 +1281,13 @@ babel-preset-jest@^21.2.0: babel-plugin-jest-hoist "^21.2.0" babel-plugin-syntax-object-rest-spread "^6.13.0" +babel-preset-jest@^23.0.1: + version "23.0.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/babel-preset-jest/-/babel-preset-jest-23.0.1.tgz?dl=https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-23.0.1.tgz#631cc545c6cf021943013bcaf22f45d87fe62198" + dependencies: + babel-plugin-jest-hoist "^23.0.1" + babel-plugin-syntax-object-rest-spread "^6.13.0" + babel-preset-react@^6.5.0: version "6.24.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/babel-preset-react/-/babel-preset-react-6.24.1.tgz#ba69dfaea45fc3ec639b6a4ecea6e17702c91380" @@ -1511,6 +1564,10 @@ brorand@^1.0.1: version "1.1.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/brorand/-/brorand-1.1.0.tgz?dl=https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" +browser-process-hrtime@^0.1.2: + version "0.1.2" + resolved "https://neo.jfrog.io/neo/api/npm/npm/browser-process-hrtime/-/browser-process-hrtime-0.1.2.tgz?dl=https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-0.1.2.tgz#425d68a58d3447f02a04aa894187fce8af8b7b8e" + browser-resolve@^1.11.2: version "1.11.2" resolved "https://neo.jfrog.io/neo/api/npm/npm/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" @@ -2103,6 +2160,10 @@ commondir@^1.0.1: version "1.0.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" +compare-versions@^3.1.0: + version "3.3.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/compare-versions/-/compare-versions-3.3.0.tgz?dl=https://registry.npmjs.org/compare-versions/-/compare-versions-3.3.0.tgz#af93ea705a96943f622ab309578b9b90586f39c3" + component-bind@1.0.0: version "1.0.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/component-bind/-/component-bind-1.0.0.tgz#00c608ab7dcd93897c0009651b1d3a8e1e73bbd1" @@ -2495,6 +2556,12 @@ cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": dependencies: cssom "0.3.x" +"cssstyle@>= 0.3.1 < 0.4.0": + version "0.3.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/cssstyle/-/cssstyle-0.3.1.tgz?dl=https://registry.npmjs.org/cssstyle/-/cssstyle-0.3.1.tgz#6da9b4cff1bc5d716e6e5fe8e04fcb1b50a49adf" + dependencies: + cssom "0.3.x" + currently-unhandled@^0.4.1: version "0.4.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" @@ -2575,6 +2642,14 @@ dashdash@^1.12.0: dependencies: assert-plus "^1.0.0" +data-urls@^1.0.0: + version "1.0.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/data-urls/-/data-urls-1.0.0.tgz?dl=https://registry.npmjs.org/data-urls/-/data-urls-1.0.0.tgz#24802de4e81c298ea8a9388bb0d8e461c774684f" + dependencies: + abab "^1.0.4" + whatwg-mimetype "^2.0.0" + whatwg-url "^6.4.0" + date-fns@^1.27.2: version "1.29.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/date-fns/-/date-fns-1.29.0.tgz#12e609cdcb935127311d04d33334e2960a2a54e6" @@ -2627,6 +2702,12 @@ default-require-extensions@^1.0.0: dependencies: strip-bom "^2.0.0" +default-require-extensions@^2.0.0: + version "2.0.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/default-require-extensions/-/default-require-extensions-2.0.0.tgz?dl=https://registry.npmjs.org/default-require-extensions/-/default-require-extensions-2.0.0.tgz#f5f8fbb18a7d6d50b21f641f649ebb522cfe24f7" + dependencies: + strip-bom "^3.0.0" + define-properties@^1.1.2: version "1.1.2" resolved "https://neo.jfrog.io/neo/api/npm/npm/define-properties/-/define-properties-1.1.2.tgz?dl=https://registry.npmjs.org/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" @@ -2717,6 +2798,10 @@ detect-libc@^1.0.2: version "1.0.3" resolved "https://neo.jfrog.io/neo/api/npm/npm/detect-libc/-/detect-libc-1.0.3.tgz?dl=https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" +detect-newline@^2.1.0: + version "2.1.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/detect-newline/-/detect-newline-2.1.0.tgz?dl=https://registry.npmjs.org/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2" + detect-node@^2.0.3: version "2.0.3" resolved "https://neo.jfrog.io/neo/api/npm/npm/detect-node/-/detect-node-2.0.3.tgz#a2033c09cc8e158d37748fbde7507832bd6ce127" @@ -2825,6 +2910,12 @@ domelementtype@~1.1.1: version "1.1.3" resolved "https://neo.jfrog.io/neo/api/npm/npm/domelementtype/-/domelementtype-1.1.3.tgz#bd28773e2642881aec51544924299c5cd822185b" +domexception@^1.0.0: + version "1.0.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/domexception/-/domexception-1.0.1.tgz?dl=https://registry.npmjs.org/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90" + dependencies: + webidl-conversions "^4.0.2" + domhandler@2.1: version "2.1.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/domhandler/-/domhandler-2.1.0.tgz#d2646f5e57f6c3bab11cf6cb05d3c0acf7412594" @@ -2983,6 +3074,16 @@ error-ex@^1.2.0: dependencies: is-arrayish "^0.2.1" +es-abstract@^1.5.1: + version "1.12.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/es-abstract/-/es-abstract-1.12.0.tgz?dl=https://registry.npmjs.org/es-abstract/-/es-abstract-1.12.0.tgz#9dbbdd27c6856f0001421ca18782d786bf8a6165" + dependencies: + 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-abstract@^1.7.0: version "1.11.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/es-abstract/-/es-abstract-1.11.0.tgz?dl=https://registry.npmjs.org/es-abstract/-/es-abstract-1.11.0.tgz#cce87d518f0496893b1a30cd8461835535480681" @@ -3080,6 +3181,17 @@ escodegen@^1.6.1: optionalDependencies: source-map "~0.5.6" +escodegen@^1.9.0: + version "1.10.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/escodegen/-/escodegen-1.10.0.tgz?dl=https://registry.npmjs.org/escodegen/-/escodegen-1.10.0.tgz#f647395de22519fbd0d928ffcf1d17e0dec2603e" + dependencies: + esprima "^3.1.3" + estraverse "^4.2.0" + esutils "^2.0.2" + optionator "^0.8.1" + optionalDependencies: + source-map "~0.6.1" + escope@^3.6.0: version "3.6.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/escope/-/escope-3.6.0.tgz?dl=https://registry.npmjs.org/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" @@ -3371,6 +3483,10 @@ exit-hook@^1.0.0: version "1.1.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" +exit@^0.1.2: + version "0.1.2" + resolved "https://neo.jfrog.io/neo/api/npm/npm/exit/-/exit-0.1.2.tgz?dl=https://registry.npmjs.org/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" + expand-brackets@^0.1.4: version "0.1.5" resolved "https://neo.jfrog.io/neo/api/npm/npm/expand-brackets/-/expand-brackets-0.1.5.tgz?dl=https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" @@ -3406,6 +3522,17 @@ expect@^21.2.1: jest-message-util "^21.2.1" jest-regex-util "^21.2.0" +expect@^23.1.0: + version "23.1.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/expect/-/expect-23.1.0.tgz?dl=https://registry.npmjs.org/expect/-/expect-23.1.0.tgz#bfdfd57a2a20170d875999ee9787cc71f01c205f" + dependencies: + ansi-styles "^3.2.0" + jest-diff "^23.0.1" + jest-get-type "^22.1.0" + jest-matcher-utils "^23.0.1" + jest-message-util "^23.1.0" + jest-regex-util "^23.0.0" + express@^4.15.4, express@^4.16.2: version "4.16.3" resolved "https://neo.jfrog.io/neo/api/npm/npm/express/-/express-4.16.3.tgz#6af8a502350db3246ecc4becf6b5a34d22f7ed53" @@ -4197,6 +4324,12 @@ html-encoding-sniffer@^1.0.1: dependencies: whatwg-encoding "^1.0.1" +html-encoding-sniffer@^1.0.2: + version "1.0.2" + resolved "https://neo.jfrog.io/neo/api/npm/npm/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz?dl=https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8" + dependencies: + whatwg-encoding "^1.0.1" + html-entities@^1.2.0: version "1.2.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/html-entities/-/html-entities-1.2.1.tgz#0df29351f0721163515dfb9e5543e5f6eed5162f" @@ -4625,6 +4758,10 @@ is-fullwidth-code-point@^2.0.0: version "2.0.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz?dl=https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" +is-generator-fn@^1.0.0: + version "1.0.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/is-generator-fn/-/is-generator-fn-1.0.0.tgz?dl=https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-1.0.0.tgz#969d49e1bb3329f6bb7f09089be26578b2ddd46a" + is-glob@^2.0.0, is-glob@^2.0.1: version "2.0.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/is-glob/-/is-glob-2.0.1.tgz?dl=https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" @@ -4815,16 +4952,55 @@ istanbul-api@^1.1.1: mkdirp "^0.5.1" once "^1.4.0" +istanbul-api@^1.3.1: + version "1.3.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/istanbul-api/-/istanbul-api-1.3.1.tgz?dl=https://registry.npmjs.org/istanbul-api/-/istanbul-api-1.3.1.tgz#4c3b05d18c0016d1022e079b98dc82c40f488954" + dependencies: + async "^2.1.4" + compare-versions "^3.1.0" + fileset "^2.0.2" + istanbul-lib-coverage "^1.2.0" + istanbul-lib-hook "^1.2.0" + istanbul-lib-instrument "^1.10.1" + istanbul-lib-report "^1.1.4" + istanbul-lib-source-maps "^1.2.4" + istanbul-reports "^1.3.0" + js-yaml "^3.7.0" + mkdirp "^0.5.1" + once "^1.4.0" + istanbul-lib-coverage@^1.0.1, istanbul-lib-coverage@^1.1.1: version "1.1.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da" +istanbul-lib-coverage@^1.2.0: + version "1.2.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/istanbul-lib-coverage/-/istanbul-lib-coverage-1.2.0.tgz?dl=https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-1.2.0.tgz#f7d8f2e42b97e37fe796114cb0f9d68b5e3a4341" + istanbul-lib-hook@^1.0.7: version "1.0.7" resolved "https://neo.jfrog.io/neo/api/npm/npm/istanbul-lib-hook/-/istanbul-lib-hook-1.0.7.tgz#dd6607f03076578fe7d6f2a630cf143b49bacddc" dependencies: append-transform "^0.4.0" +istanbul-lib-hook@^1.2.0: + version "1.2.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/istanbul-lib-hook/-/istanbul-lib-hook-1.2.1.tgz?dl=https://registry.npmjs.org/istanbul-lib-hook/-/istanbul-lib-hook-1.2.1.tgz#f614ec45287b2a8fc4f07f5660af787575601805" + dependencies: + append-transform "^1.0.0" + +istanbul-lib-instrument@^1.10.1: + version "1.10.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/istanbul-lib-instrument/-/istanbul-lib-instrument-1.10.1.tgz?dl=https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-1.10.1.tgz#724b4b6caceba8692d3f1f9d0727e279c401af7b" + dependencies: + babel-generator "^6.18.0" + babel-template "^6.16.0" + babel-traverse "^6.18.0" + babel-types "^6.18.0" + babylon "^6.18.0" + istanbul-lib-coverage "^1.2.0" + semver "^5.3.0" + istanbul-lib-instrument@^1.4.2, istanbul-lib-instrument@^1.7.5, istanbul-lib-instrument@^1.8.0: version "1.8.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/istanbul-lib-instrument/-/istanbul-lib-instrument-1.8.0.tgz#66f6c9421cc9ec4704f76f2db084ba9078a2b532" @@ -4846,6 +5022,15 @@ istanbul-lib-report@^1.1.1: path-parse "^1.0.5" supports-color "^3.1.2" +istanbul-lib-report@^1.1.4: + version "1.1.4" + resolved "https://neo.jfrog.io/neo/api/npm/npm/istanbul-lib-report/-/istanbul-lib-report-1.1.4.tgz?dl=https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-1.1.4.tgz#e886cdf505c4ebbd8e099e4396a90d0a28e2acb5" + dependencies: + istanbul-lib-coverage "^1.2.0" + mkdirp "^0.5.1" + path-parse "^1.0.5" + supports-color "^3.1.2" + istanbul-lib-source-maps@^1.1.0, istanbul-lib-source-maps@^1.2.1: version "1.2.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.1.tgz#a6fe1acba8ce08eebc638e572e294d267008aa0c" @@ -4856,19 +5041,41 @@ istanbul-lib-source-maps@^1.1.0, istanbul-lib-source-maps@^1.2.1: rimraf "^2.6.1" source-map "^0.5.3" +istanbul-lib-source-maps@^1.2.4: + version "1.2.5" + resolved "https://neo.jfrog.io/neo/api/npm/npm/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.5.tgz?dl=https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.5.tgz#ffe6be4e7ab86d3603e4290d54990b14506fc9b1" + dependencies: + debug "^3.1.0" + istanbul-lib-coverage "^1.2.0" + mkdirp "^0.5.1" + rimraf "^2.6.1" + source-map "^0.5.3" + istanbul-reports@^1.1.2: version "1.1.2" resolved "https://neo.jfrog.io/neo/api/npm/npm/istanbul-reports/-/istanbul-reports-1.1.2.tgz#0fb2e3f6aa9922bd3ce45d05d8ab4d5e8e07bd4f" dependencies: handlebars "^4.0.3" +istanbul-reports@^1.3.0: + version "1.3.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/istanbul-reports/-/istanbul-reports-1.3.0.tgz?dl=https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-1.3.0.tgz#2f322e81e1d9520767597dca3c20a0cce89a3554" + dependencies: + handlebars "^4.0.3" + jest-changed-files@^21.2.0: version "21.2.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-changed-files/-/jest-changed-files-21.2.0.tgz#5dbeecad42f5d88b482334902ce1cba6d9798d29" dependencies: throat "^4.0.0" -jest-cli@^21.0.1, jest-cli@^21.2.1: +jest-changed-files@^23.0.1: + version "23.0.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-changed-files/-/jest-changed-files-23.0.1.tgz?dl=https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-23.0.1.tgz#f79572d0720844ea5df84c2a448e862c2254f60c" + dependencies: + throat "^4.0.0" + +jest-cli@^21.0.1: version "21.2.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-cli/-/jest-cli-21.2.1.tgz#9c528b6629d651911138d228bdb033c157ec8c00" dependencies: @@ -4902,6 +5109,46 @@ jest-cli@^21.0.1, jest-cli@^21.2.1: worker-farm "^1.3.1" yargs "^9.0.0" +jest-cli@^23.1.0: + version "23.1.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-cli/-/jest-cli-23.1.0.tgz?dl=https://registry.npmjs.org/jest-cli/-/jest-cli-23.1.0.tgz#eb8bdd4ce0d15250892e31ad9b69bc99d2a8f6bf" + dependencies: + ansi-escapes "^3.0.0" + chalk "^2.0.1" + exit "^0.1.2" + glob "^7.1.2" + graceful-fs "^4.1.11" + import-local "^1.0.0" + is-ci "^1.0.10" + istanbul-api "^1.3.1" + istanbul-lib-coverage "^1.2.0" + istanbul-lib-instrument "^1.10.1" + istanbul-lib-source-maps "^1.2.4" + jest-changed-files "^23.0.1" + jest-config "^23.1.0" + jest-environment-jsdom "^23.1.0" + jest-get-type "^22.1.0" + jest-haste-map "^23.1.0" + jest-message-util "^23.1.0" + jest-regex-util "^23.0.0" + jest-resolve-dependencies "^23.0.1" + jest-runner "^23.1.0" + jest-runtime "^23.1.0" + jest-snapshot "^23.0.1" + jest-util "^23.1.0" + jest-validate "^23.0.1" + jest-watcher "^23.1.0" + jest-worker "^23.0.1" + micromatch "^2.3.11" + node-notifier "^5.2.1" + realpath-native "^1.0.0" + rimraf "^2.5.4" + slash "^1.0.0" + string-length "^2.0.0" + strip-ansi "^4.0.0" + which "^1.2.12" + yargs "^11.0.0" + jest-config@^21.2.1: version "21.2.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-config/-/jest-config-21.2.1.tgz#c7586c79ead0bcc1f38c401e55f964f13bf2a480" @@ -4918,6 +5165,24 @@ jest-config@^21.2.1: jest-validate "^21.2.1" pretty-format "^21.2.1" +jest-config@^23.1.0: + version "23.1.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-config/-/jest-config-23.1.0.tgz?dl=https://registry.npmjs.org/jest-config/-/jest-config-23.1.0.tgz#708ca0f431d356ee424fb4895d3308006bdd8241" + dependencies: + babel-core "^6.0.0" + babel-jest "^23.0.1" + chalk "^2.0.1" + glob "^7.1.1" + jest-environment-jsdom "^23.1.0" + jest-environment-node "^23.1.0" + jest-get-type "^22.1.0" + jest-jasmine2 "^23.1.0" + jest-regex-util "^23.0.0" + jest-resolve "^23.1.0" + jest-util "^23.1.0" + jest-validate "^23.0.1" + pretty-format "^23.0.1" + jest-diff@^21.2.1: version "21.2.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-diff/-/jest-diff-21.2.1.tgz#46cccb6cab2d02ce98bc314011764bb95b065b4f" @@ -4936,10 +5201,25 @@ jest-diff@^22.4.3: jest-get-type "^22.4.3" pretty-format "^22.4.3" +jest-diff@^23.0.1: + version "23.0.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-diff/-/jest-diff-23.0.1.tgz?dl=https://registry.npmjs.org/jest-diff/-/jest-diff-23.0.1.tgz#3d49137cee12c320a4b4d2b4a6fa6e82d491a16a" + dependencies: + chalk "^2.0.1" + diff "^3.2.0" + jest-get-type "^22.1.0" + pretty-format "^23.0.1" + jest-docblock@^21.2.0: version "21.2.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-docblock/-/jest-docblock-21.2.0.tgz#51529c3b30d5fd159da60c27ceedc195faf8d414" +jest-docblock@^23.0.1: + version "23.0.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-docblock/-/jest-docblock-23.0.1.tgz?dl=https://registry.npmjs.org/jest-docblock/-/jest-docblock-23.0.1.tgz#deddd18333be5dc2415260a04ef3fce9276b5725" + dependencies: + detect-newline "^2.1.0" + jest-dom@^1.0.0: version "1.3.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-dom/-/jest-dom-1.3.1.tgz?dl=https://registry.npmjs.org/jest-dom/-/jest-dom-1.3.1.tgz#4eba15d54059182ee0d3682a9fff0d957ad874c7" @@ -4951,6 +5231,13 @@ jest-dom@^1.0.0: pretty-format "^23.0.1" redent "^2.0.0" +jest-each@^23.1.0: + version "23.1.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-each/-/jest-each-23.1.0.tgz?dl=https://registry.npmjs.org/jest-each/-/jest-each-23.1.0.tgz#16146b592c354867a5ae5e13cdf15c6c65b696c6" + dependencies: + chalk "^2.0.1" + pretty-format "^23.0.1" + jest-environment-jsdom@^21.2.1: version "21.2.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-environment-jsdom/-/jest-environment-jsdom-21.2.1.tgz#38d9980c8259b2a608ec232deee6289a60d9d5b4" @@ -4959,6 +5246,14 @@ jest-environment-jsdom@^21.2.1: jest-util "^21.2.1" jsdom "^9.12.0" +jest-environment-jsdom@^23.1.0: + version "23.1.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-environment-jsdom/-/jest-environment-jsdom-23.1.0.tgz?dl=https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-23.1.0.tgz#85929914e23bed3577dac9755f4106d0697c479c" + dependencies: + jest-mock "^23.1.0" + jest-util "^23.1.0" + jsdom "^11.5.1" + jest-environment-node@^21.2.1: version "21.2.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-environment-node/-/jest-environment-node-21.2.1.tgz#98c67df5663c7fbe20f6e792ac2272c740d3b8c8" @@ -4966,11 +5261,18 @@ jest-environment-node@^21.2.1: jest-mock "^21.2.0" jest-util "^21.2.1" +jest-environment-node@^23.1.0: + version "23.1.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-environment-node/-/jest-environment-node-23.1.0.tgz?dl=https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-23.1.0.tgz#452c0bf949cfcbbacda1e1762eeed70bc784c7d5" + dependencies: + jest-mock "^23.1.0" + jest-util "^23.1.0" + jest-get-type@^21.2.0: version "21.2.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-get-type/-/jest-get-type-21.2.0.tgz#f6376ab9db4b60d81e39f30749c6c466f40d4a23" -jest-get-type@^22.4.3: +jest-get-type@^22.1.0, jest-get-type@^22.4.3: version "22.4.3" resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-get-type/-/jest-get-type-22.4.3.tgz?dl=https://registry.npmjs.org/jest-get-type/-/jest-get-type-22.4.3.tgz#e3a8504d8479342dd4420236b322869f18900ce4" @@ -4985,6 +5287,18 @@ jest-haste-map@^21.2.0: sane "^2.0.0" worker-farm "^1.3.1" +jest-haste-map@^23.1.0: + version "23.1.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-haste-map/-/jest-haste-map-23.1.0.tgz?dl=https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-23.1.0.tgz#18e6c7d5a8d27136f91b7d9852f85de0c7074c49" + dependencies: + fb-watchman "^2.0.0" + graceful-fs "^4.1.11" + jest-docblock "^23.0.1" + jest-serializer "^23.0.1" + jest-worker "^23.0.1" + micromatch "^2.3.11" + sane "^2.0.0" + jest-jasmine2@^21.2.1: version "21.2.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-jasmine2/-/jest-jasmine2-21.2.1.tgz#9cc6fc108accfa97efebce10c4308548a4ea7592" @@ -4998,6 +5312,28 @@ jest-jasmine2@^21.2.1: jest-snapshot "^21.2.1" p-cancelable "^0.3.0" +jest-jasmine2@^23.1.0: + version "23.1.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-jasmine2/-/jest-jasmine2-23.1.0.tgz?dl=https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-23.1.0.tgz#4afab31729b654ddcd2b074add849396f13b30b8" + dependencies: + chalk "^2.0.1" + co "^4.6.0" + expect "^23.1.0" + is-generator-fn "^1.0.0" + jest-diff "^23.0.1" + jest-each "^23.1.0" + jest-matcher-utils "^23.0.1" + jest-message-util "^23.1.0" + jest-snapshot "^23.0.1" + jest-util "^23.1.0" + pretty-format "^23.0.1" + +jest-leak-detector@^23.0.1: + version "23.0.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-leak-detector/-/jest-leak-detector-23.0.1.tgz?dl=https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-23.0.1.tgz#9dba07505ac3495c39d3ec09ac1e564599e861a0" + dependencies: + pretty-format "^23.0.1" + jest-matcher-utils@^21.2.1: version "21.2.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-matcher-utils/-/jest-matcher-utils-21.2.1.tgz#72c826eaba41a093ac2b4565f865eb8475de0f64" @@ -5014,6 +5350,14 @@ jest-matcher-utils@^22.4.3: jest-get-type "^22.4.3" pretty-format "^22.4.3" +jest-matcher-utils@^23.0.1: + version "23.0.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-matcher-utils/-/jest-matcher-utils-23.0.1.tgz?dl=https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-23.0.1.tgz#0c6c0daedf9833c2a7f36236069efecb4c3f6e5f" + dependencies: + chalk "^2.0.1" + jest-get-type "^22.1.0" + pretty-format "^23.0.1" + jest-message-util@^21.2.1: version "21.2.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-message-util/-/jest-message-util-21.2.1.tgz#bfe5d4692c84c827d1dcf41823795558f0a1acbe" @@ -5022,20 +5366,45 @@ jest-message-util@^21.2.1: micromatch "^2.3.11" slash "^1.0.0" +jest-message-util@^23.1.0: + version "23.1.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-message-util/-/jest-message-util-23.1.0.tgz?dl=https://registry.npmjs.org/jest-message-util/-/jest-message-util-23.1.0.tgz#9a809ba487ecac5ce511d4e698ee3b5ee2461ea9" + dependencies: + "@babel/code-frame" "^7.0.0-beta.35" + chalk "^2.0.1" + micromatch "^2.3.11" + slash "^1.0.0" + stack-utils "^1.0.1" + jest-mock@^21.2.0: version "21.2.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-mock/-/jest-mock-21.2.0.tgz#7eb0770e7317968165f61ea2a7281131534b3c0f" +jest-mock@^23.1.0: + version "23.1.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-mock/-/jest-mock-23.1.0.tgz?dl=https://registry.npmjs.org/jest-mock/-/jest-mock-23.1.0.tgz#a381c31b121ab1f60c462a2dadb7b86dcccac487" + jest-regex-util@^21.2.0: version "21.2.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-regex-util/-/jest-regex-util-21.2.0.tgz#1b1e33e63143babc3e0f2e6c9b5ba1eb34b2d530" +jest-regex-util@^23.0.0: + version "23.0.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-regex-util/-/jest-regex-util-23.0.0.tgz?dl=https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-23.0.0.tgz#dd5c1fde0c46f4371314cf10f7a751a23f4e8f76" + jest-resolve-dependencies@^21.2.0: version "21.2.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-resolve-dependencies/-/jest-resolve-dependencies-21.2.0.tgz#9e231e371e1a736a1ad4e4b9a843bc72bfe03d09" dependencies: jest-regex-util "^21.2.0" +jest-resolve-dependencies@^23.0.1: + version "23.0.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-resolve-dependencies/-/jest-resolve-dependencies-23.0.1.tgz?dl=https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-23.0.1.tgz#d01a10ddad9152c4cecdf5eac2b88571c4b6a64d" + dependencies: + jest-regex-util "^23.0.0" + jest-snapshot "^23.0.1" + jest-resolve@^21.2.0: version "21.2.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-resolve/-/jest-resolve-21.2.0.tgz#068913ad2ba6a20218e5fd32471f3874005de3a6" @@ -5044,6 +5413,14 @@ jest-resolve@^21.2.0: chalk "^2.0.1" is-builtin-module "^1.0.0" +jest-resolve@^23.1.0: + version "23.1.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-resolve/-/jest-resolve-23.1.0.tgz?dl=https://registry.npmjs.org/jest-resolve/-/jest-resolve-23.1.0.tgz#b9e316eecebd6f00bc50a3960d1527bae65792d2" + dependencies: + browser-resolve "^1.11.2" + chalk "^2.0.1" + realpath-native "^1.0.0" + jest-runner@^21.2.1: version "21.2.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-runner/-/jest-runner-21.2.1.tgz#194732e3e518bfb3d7cbfc0fd5871246c7e1a467" @@ -5059,6 +5436,24 @@ jest-runner@^21.2.1: throat "^4.0.0" worker-farm "^1.3.1" +jest-runner@^23.1.0: + version "23.1.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-runner/-/jest-runner-23.1.0.tgz?dl=https://registry.npmjs.org/jest-runner/-/jest-runner-23.1.0.tgz#fa20a933fff731a5432b3561e7f6426594fa29b5" + dependencies: + exit "^0.1.2" + graceful-fs "^4.1.11" + jest-config "^23.1.0" + jest-docblock "^23.0.1" + jest-haste-map "^23.1.0" + jest-jasmine2 "^23.1.0" + jest-leak-detector "^23.0.1" + jest-message-util "^23.1.0" + jest-runtime "^23.1.0" + jest-util "^23.1.0" + jest-worker "^23.0.1" + source-map-support "^0.5.6" + throat "^4.0.0" + jest-runtime@^21.2.1: version "21.2.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-runtime/-/jest-runtime-21.2.1.tgz#99dce15309c670442eee2ebe1ff53a3cbdbbb73e" @@ -5081,6 +5476,36 @@ jest-runtime@^21.2.1: write-file-atomic "^2.1.0" yargs "^9.0.0" +jest-runtime@^23.1.0: + version "23.1.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-runtime/-/jest-runtime-23.1.0.tgz?dl=https://registry.npmjs.org/jest-runtime/-/jest-runtime-23.1.0.tgz#b4ae0e87259ecacfd4a884b639db07cf4dd620af" + dependencies: + babel-core "^6.0.0" + babel-plugin-istanbul "^4.1.6" + chalk "^2.0.1" + convert-source-map "^1.4.0" + exit "^0.1.2" + fast-json-stable-stringify "^2.0.0" + graceful-fs "^4.1.11" + jest-config "^23.1.0" + jest-haste-map "^23.1.0" + jest-message-util "^23.1.0" + jest-regex-util "^23.0.0" + jest-resolve "^23.1.0" + jest-snapshot "^23.0.1" + jest-util "^23.1.0" + jest-validate "^23.0.1" + micromatch "^2.3.11" + realpath-native "^1.0.0" + slash "^1.0.0" + strip-bom "3.0.0" + write-file-atomic "^2.1.0" + yargs "^11.0.0" + +jest-serializer@^23.0.1: + version "23.0.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-serializer/-/jest-serializer-23.0.1.tgz?dl=https://registry.npmjs.org/jest-serializer/-/jest-serializer-23.0.1.tgz#a3776aeb311e90fe83fab9e533e85102bd164165" + jest-snapshot@^21.2.1: version "21.2.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-snapshot/-/jest-snapshot-21.2.1.tgz#29e49f16202416e47343e757e5eff948c07fd7b0" @@ -5092,6 +5517,17 @@ jest-snapshot@^21.2.1: natural-compare "^1.4.0" pretty-format "^21.2.1" +jest-snapshot@^23.0.1: + version "23.0.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-snapshot/-/jest-snapshot-23.0.1.tgz?dl=https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-23.0.1.tgz#6674fa19b9eb69a99cabecd415bddc42d6af3e7e" + dependencies: + chalk "^2.0.1" + jest-diff "^23.0.1" + jest-matcher-utils "^23.0.1" + mkdirp "^0.5.1" + natural-compare "^1.4.0" + pretty-format "^23.0.1" + jest-util@^21.2.1: version "21.2.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-util/-/jest-util-21.2.1.tgz#a274b2f726b0897494d694a6c3d6a61ab819bb78" @@ -5104,6 +5540,19 @@ jest-util@^21.2.1: jest-validate "^21.2.1" mkdirp "^0.5.1" +jest-util@^23.1.0: + version "23.1.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-util/-/jest-util-23.1.0.tgz?dl=https://registry.npmjs.org/jest-util/-/jest-util-23.1.0.tgz#c0251baf34644c6dd2fea78a962f4263ac55772d" + dependencies: + callsites "^2.0.0" + chalk "^2.0.1" + graceful-fs "^4.1.11" + is-ci "^1.0.10" + jest-message-util "^23.1.0" + mkdirp "^0.5.1" + slash "^1.0.0" + source-map "^0.6.0" + jest-validate@^21.1.0, jest-validate@^21.2.1: version "21.2.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-validate/-/jest-validate-21.2.1.tgz#cc0cbca653cd54937ba4f2a111796774530dd3c7" @@ -5113,11 +5562,35 @@ jest-validate@^21.1.0, jest-validate@^21.2.1: leven "^2.1.0" pretty-format "^21.2.1" -jest@^21.0.1: - version "21.2.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest/-/jest-21.2.1.tgz#c964e0b47383768a1438e3ccf3c3d470327604e1" +jest-validate@^23.0.1: + version "23.0.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-validate/-/jest-validate-23.0.1.tgz?dl=https://registry.npmjs.org/jest-validate/-/jest-validate-23.0.1.tgz#cd9f01a89d26bb885f12a8667715e9c865a5754f" + dependencies: + chalk "^2.0.1" + jest-get-type "^22.1.0" + leven "^2.1.0" + pretty-format "^23.0.1" + +jest-watcher@^23.1.0: + version "23.1.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-watcher/-/jest-watcher-23.1.0.tgz?dl=https://registry.npmjs.org/jest-watcher/-/jest-watcher-23.1.0.tgz#a8d5842e38d9fb4afff823df6abb42a58ae6cdbd" + dependencies: + ansi-escapes "^3.0.0" + chalk "^2.0.1" + string-length "^2.0.0" + +jest-worker@^23.0.1: + version "23.0.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-worker/-/jest-worker-23.0.1.tgz?dl=https://registry.npmjs.org/jest-worker/-/jest-worker-23.0.1.tgz#9e649dd963ff4046026f91c4017f039a6aa4a7bc" dependencies: - jest-cli "^21.2.1" + merge-stream "^1.0.1" + +jest@^23.1.0: + version "23.1.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest/-/jest-23.1.0.tgz?dl=https://registry.npmjs.org/jest/-/jest-23.1.0.tgz#bbb7f893100a11a742dd8bd0d047a54b0968ad1a" + dependencies: + import-local "^1.0.0" + jest-cli "^23.1.0" js-base64@^2.1.9: version "2.4.5" @@ -5158,6 +5631,37 @@ jsbn@~0.1.0: version "0.1.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/jsbn/-/jsbn-0.1.1.tgz?dl=https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" +jsdom@^11.5.1: + version "11.11.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jsdom/-/jsdom-11.11.0.tgz?dl=https://registry.npmjs.org/jsdom/-/jsdom-11.11.0.tgz#df486efad41aee96c59ad7a190e2449c7eb1110e" + dependencies: + abab "^1.0.4" + acorn "^5.3.0" + acorn-globals "^4.1.0" + array-equal "^1.0.0" + cssom ">= 0.3.2 < 0.4.0" + cssstyle ">= 0.3.1 < 0.4.0" + data-urls "^1.0.0" + domexception "^1.0.0" + escodegen "^1.9.0" + html-encoding-sniffer "^1.0.2" + left-pad "^1.2.0" + nwsapi "^2.0.0" + parse5 "4.0.0" + pn "^1.1.0" + request "^2.83.0" + request-promise-native "^1.0.5" + sax "^1.2.4" + symbol-tree "^3.2.2" + tough-cookie "^2.3.3" + w3c-hr-time "^1.0.1" + webidl-conversions "^4.0.2" + whatwg-encoding "^1.0.3" + whatwg-mimetype "^2.1.0" + whatwg-url "^6.4.1" + ws "^4.0.0" + xml-name-validator "^3.0.0" + jsdom@^9.12.0: version "9.12.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" @@ -5291,6 +5795,10 @@ lcid@^1.0.0: dependencies: invert-kv "^1.0.0" +left-pad@^1.2.0: + version "1.3.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/left-pad/-/left-pad-1.3.0.tgz?dl=https://registry.npmjs.org/left-pad/-/left-pad-1.3.0.tgz#5b8a3a7765dfe001261dde915589e782f8c94d1e" + leven@^2.1.0: version "2.1.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" @@ -5466,6 +5974,10 @@ lodash.once@^4.1.1: version "4.1.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/lodash.once/-/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac" +lodash.sortby@^4.7.0: + version "4.7.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/lodash.sortby/-/lodash.sortby-4.7.0.tgz?dl=https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" + lodash.template@^4.2.4: version "4.4.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/lodash.template/-/lodash.template-4.4.0.tgz#e73a0385c8355591746e020b99679c690e68fba0" @@ -5491,7 +6003,7 @@ lodash@4.17.4, lodash@^4.17.3: version "4.17.4" resolved "https://neo.jfrog.io/neo/api/npm/npm/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" -lodash@^4.14.0, lodash@^4.15.0, lodash@^4.17.10, lodash@^4.17.4, lodash@^4.17.5, lodash@^4.2.0, lodash@^4.2.1, lodash@^4.3.0: +lodash@^4.13.1, lodash@^4.14.0, lodash@^4.15.0, lodash@^4.17.10, lodash@^4.17.4, lodash@^4.17.5, lodash@^4.2.0, lodash@^4.2.1, lodash@^4.3.0: version "4.17.10" resolved "https://neo.jfrog.io/neo/api/npm/npm/lodash/-/lodash-4.17.10.tgz?dl=https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7" @@ -5655,6 +6167,12 @@ merge-descriptors@1.0.1: version "1.0.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/merge-descriptors/-/merge-descriptors-1.0.1.tgz?dl=https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" +merge-stream@^1.0.1: + version "1.0.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/merge-stream/-/merge-stream-1.0.1.tgz?dl=https://registry.npmjs.org/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1" + dependencies: + readable-stream "^2.0.1" + merge@^1.1.3: version "1.2.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" @@ -5713,6 +6231,24 @@ micromatch@^3.1.4: snapdragon "^0.8.1" to-regex "^3.0.1" +micromatch@^3.1.8: + version "3.1.10" + resolved "https://neo.jfrog.io/neo/api/npm/npm/micromatch/-/micromatch-3.1.10.tgz?dl=https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" + dependencies: + arr-diff "^4.0.0" + array-unique "^0.3.2" + braces "^2.3.1" + define-property "^2.0.2" + extend-shallow "^3.0.2" + extglob "^2.0.4" + fragment-cache "^0.2.1" + kind-of "^6.0.2" + nanomatch "^1.2.9" + object.pick "^1.3.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.2" + miller-rabin@^4.0.0: version "4.0.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/miller-rabin/-/miller-rabin-4.0.1.tgz?dl=https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" @@ -6013,6 +6549,15 @@ node-notifier@^5.0.2: shellwords "^0.1.0" which "^1.2.12" +node-notifier@^5.2.1: + version "5.2.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/node-notifier/-/node-notifier-5.2.1.tgz?dl=https://registry.npmjs.org/node-notifier/-/node-notifier-5.2.1.tgz#fa313dd08f5517db0e2502e5758d664ac69f9dea" + dependencies: + growly "^1.3.0" + semver "^5.4.1" + shellwords "^0.1.1" + which "^1.3.0" + node-pre-gyp@0.7.0: version "0.7.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/node-pre-gyp/-/node-pre-gyp-0.7.0.tgz?dl=https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.7.0.tgz#55aeffbaed93b50d0a4657d469198cd80ac9df36" @@ -6162,6 +6707,10 @@ number-is-nan@^1.0.0: version "1.4.2" resolved "https://neo.jfrog.io/neo/api/npm/npm/nwmatcher/-/nwmatcher-1.4.2.tgz#c5e545ab40d22a56b0326531c4beaed7a888b3ea" +nwsapi@^2.0.0: + version "2.0.3" + resolved "https://neo.jfrog.io/neo/api/npm/npm/nwsapi/-/nwsapi-2.0.3.tgz?dl=https://registry.npmjs.org/nwsapi/-/nwsapi-2.0.3.tgz#3f4010d6c943f34018d3dfb5f2fbc0de90476959" + oauth-sign@~0.8.1, oauth-sign@~0.8.2: version "0.8.2" resolved "https://neo.jfrog.io/neo/api/npm/npm/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" @@ -6192,6 +6741,13 @@ object-visit@^1.0.0: dependencies: isobject "^3.0.0" +object.getownpropertydescriptors@^2.0.3: + version "2.0.3" + resolved "https://neo.jfrog.io/neo/api/npm/npm/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz?dl=https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16" + dependencies: + define-properties "^1.1.2" + es-abstract "^1.5.1" + object.omit@^2.0.0: version "2.0.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/object.omit/-/object.omit-2.0.1.tgz?dl=https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" @@ -6394,6 +6950,10 @@ parse-key@^0.2.1: version "0.2.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/parse-key/-/parse-key-0.2.1.tgz#7bcf76595536e36075664be4d687e4bdd910208f" +parse5@4.0.0: + version "4.0.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/parse5/-/parse5-4.0.0.tgz?dl=https://registry.npmjs.org/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608" + parse5@^1.5.1: version "1.5.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" @@ -6551,6 +7111,10 @@ pluralize@^7.0.0: version "7.0.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/pluralize/-/pluralize-7.0.0.tgz?dl=https://registry.npmjs.org/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777" +pn@^1.1.0: + version "1.1.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/pn/-/pn-1.1.0.tgz?dl=https://registry.npmjs.org/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb" + portfinder@^1.0.9: version "1.0.13" resolved "https://neo.jfrog.io/neo/api/npm/npm/portfinder/-/portfinder-1.0.13.tgz#bb32ecd87c27104ae6ee44b5a3ccbf0ebb1aede9" @@ -7366,6 +7930,10 @@ pseudomap@^1.0.2: version "1.0.2" resolved "https://neo.jfrog.io/neo/api/npm/npm/pseudomap/-/pseudomap-1.0.2.tgz?dl=https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" +psl@^1.1.24: + version "1.1.28" + resolved "https://neo.jfrog.io/neo/api/npm/npm/psl/-/psl-1.1.28.tgz?dl=https://registry.npmjs.org/psl/-/psl-1.1.28.tgz#4fb6ceb08a1e2214d4fd4de0ca22dae13740bc7b" + public-encrypt@^4.0.0: version "4.0.2" resolved "https://neo.jfrog.io/neo/api/npm/npm/public-encrypt/-/public-encrypt-4.0.2.tgz?dl=https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.2.tgz#46eb9107206bf73489f8b85b69d91334c6610994" @@ -7454,6 +8022,12 @@ quick-lru@^1.0.0: version "1.1.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/quick-lru/-/quick-lru-1.1.0.tgz#4360b17c61136ad38078397ff11416e186dcfbb8" +raf@^3.4.0: + version "3.4.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/raf/-/raf-3.4.0.tgz?dl=https://registry.npmjs.org/raf/-/raf-3.4.0.tgz#a28876881b4bc2ca9117d4138163ddb80f781575" + dependencies: + performance-now "^2.1.0" + ramda@0.24.1: version "0.24.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/ramda/-/ramda-0.24.1.tgz#c3b7755197f35b8dc3502228262c4c91ddb6b857" @@ -7709,6 +8283,12 @@ readdirp@^2.0.0: readable-stream "^2.0.2" set-immediate-shim "^1.0.1" +realpath-native@^1.0.0: + version "1.0.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/realpath-native/-/realpath-native-1.0.0.tgz?dl=https://registry.npmjs.org/realpath-native/-/realpath-native-1.0.0.tgz#7885721a83b43bd5327609f0ddecb2482305fdf0" + dependencies: + util.promisify "^1.0.0" + recast@~0.11.12: version "0.11.23" resolved "https://neo.jfrog.io/neo/api/npm/npm/recast/-/recast-0.11.23.tgz#451fd3004ab1e4df9b4e4b66376b2a21912462d3" @@ -7914,6 +8494,20 @@ request-progress@0.3.1: dependencies: throttleit "~0.0.2" +request-promise-core@1.1.1: + version "1.1.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/request-promise-core/-/request-promise-core-1.1.1.tgz?dl=https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.1.tgz#3eee00b2c5aa83239cfb04c5700da36f81cd08b6" + dependencies: + lodash "^4.13.1" + +request-promise-native@^1.0.5: + version "1.0.5" + resolved "https://neo.jfrog.io/neo/api/npm/npm/request-promise-native/-/request-promise-native-1.0.5.tgz?dl=https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.5.tgz#5281770f68e0c9719e5163fd3fab482215f4fda5" + dependencies: + request-promise-core "1.1.1" + stealthy-require "^1.1.0" + tough-cookie ">=2.3.3" + request@2.81.0: version "2.81.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/request/-/request-2.81.0.tgz?dl=https://registry.npmjs.org/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" @@ -7968,6 +8562,31 @@ request@2.83.0, request@^2.79.0: tunnel-agent "^0.6.0" uuid "^3.1.0" +request@^2.83.0: + version "2.87.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/request/-/request-2.87.0.tgz?dl=https://registry.npmjs.org/request/-/request-2.87.0.tgz#32f00235cd08d482b4d0d68db93a829c0ed5756e" + dependencies: + aws-sign2 "~0.7.0" + aws4 "^1.6.0" + caseless "~0.12.0" + combined-stream "~1.0.5" + extend "~3.0.1" + forever-agent "~0.6.1" + form-data "~2.3.1" + har-validator "~5.0.3" + http-signature "~1.2.0" + is-typedarray "~1.0.0" + isstream "~0.1.2" + json-stringify-safe "~5.0.1" + mime-types "~2.1.17" + oauth-sign "~0.8.2" + performance-now "^2.1.0" + qs "~6.5.1" + safe-buffer "^5.1.1" + tough-cookie "~2.3.3" + tunnel-agent "^0.6.0" + uuid "^3.1.0" + require-directory@^2.1.1: version "2.1.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/require-directory/-/require-directory-2.1.1.tgz?dl=https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" @@ -8183,7 +8802,7 @@ selfsigned@^1.9.1: dependencies: node-forge "0.7.1" -"semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.5.0: +"semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1, semver@^5.5.0: version "5.5.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/semver/-/semver-5.5.0.tgz?dl=https://registry.npmjs.org/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" @@ -8293,7 +8912,7 @@ shebang-regex@^1.0.0: version "1.0.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/shebang-regex/-/shebang-regex-1.0.0.tgz?dl=https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" -shellwords@^0.1.0: +shellwords@^0.1.0, shellwords@^0.1.1: version "0.1.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" @@ -8456,6 +9075,13 @@ source-map-support@^0.4.15: dependencies: source-map "^0.5.6" +source-map-support@^0.5.6: + version "0.5.6" + resolved "https://neo.jfrog.io/neo/api/npm/npm/source-map-support/-/source-map-support-0.5.6.tgz?dl=https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.6.tgz#4435cee46b1aab62b8e8610ce60f788091c51c13" + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + source-map-url@^0.4.0: version "0.4.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" @@ -8476,7 +9102,7 @@ source-map@^0.4.4: dependencies: amdefine ">=0.0.4" -source-map@^0.6.1, source-map@~0.6.1: +source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: version "0.6.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/source-map/-/source-map-0.6.1.tgz?dl=https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" @@ -8555,6 +9181,10 @@ ssri@^5.2.4: dependencies: safe-buffer "^5.1.1" +stack-utils@^1.0.1: + version "1.0.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/stack-utils/-/stack-utils-1.0.1.tgz?dl=https://registry.npmjs.org/stack-utils/-/stack-utils-1.0.1.tgz#d4f33ab54e8e38778b0ca5cfd3b3afb12db68620" + staged-git-files@0.0.4: version "0.0.4" resolved "https://neo.jfrog.io/neo/api/npm/npm/staged-git-files/-/staged-git-files-0.0.4.tgz#d797e1b551ca7a639dec0237dc6eb4bb9be17d35" @@ -8574,6 +9204,10 @@ statuses@~1.4.0: version "1.4.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/statuses/-/statuses-1.4.0.tgz?dl=https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz#bb73d446da2796106efcc1b601a253d6c46bd087" +stealthy-require@^1.1.0: + version "1.1.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/stealthy-require/-/stealthy-require-1.1.1.tgz?dl=https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" + stream-browserify@^2.0.1: version "2.0.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/stream-browserify/-/stream-browserify-2.0.1.tgz?dl=https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" @@ -8806,7 +9440,7 @@ symbol-observable@^1.0.2, symbol-observable@^1.0.3: version "1.2.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/symbol-observable/-/symbol-observable-1.2.0.tgz?dl=https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804" -symbol-tree@^3.2.1: +symbol-tree@^3.2.1, symbol-tree@^3.2.2: version "3.2.2" resolved "https://neo.jfrog.io/neo/api/npm/npm/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" @@ -8872,6 +9506,16 @@ test-exclude@^4.1.1: read-pkg-up "^1.0.1" require-main-filename "^1.0.1" +test-exclude@^4.2.1: + version "4.2.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/test-exclude/-/test-exclude-4.2.1.tgz?dl=https://registry.npmjs.org/test-exclude/-/test-exclude-4.2.1.tgz#dfa222f03480bca69207ca728b37d74b45f724fa" + dependencies: + arrify "^1.0.1" + micromatch "^3.1.8" + object-assign "^4.1.0" + read-pkg-up "^1.0.1" + require-main-filename "^1.0.1" + text-table@~0.2.0: version "0.2.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/text-table/-/text-table-0.2.0.tgz?dl=https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" @@ -8954,7 +9598,7 @@ to-regex-range@^2.1.0: is-number "^3.0.0" repeat-string "^1.6.1" -to-regex@^3.0.1: +to-regex@^3.0.1, to-regex@^3.0.2: version "3.0.2" resolved "https://neo.jfrog.io/neo/api/npm/npm/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" dependencies: @@ -8967,6 +9611,13 @@ toposort@^1.0.0: version "1.0.4" resolved "https://neo.jfrog.io/neo/api/npm/npm/toposort/-/toposort-1.0.4.tgz#a86107690cbee8cae43b349d2f60162500924dfc" +tough-cookie@>=2.3.3, tough-cookie@^2.3.3: + version "2.4.2" + resolved "https://neo.jfrog.io/neo/api/npm/npm/tough-cookie/-/tough-cookie-2.4.2.tgz?dl=https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.2.tgz#aa9133154518b494efab98a58247bfc38818c00c" + dependencies: + psl "^1.1.24" + punycode "^1.4.1" + tough-cookie@^2.3.2, tough-cookie@~2.3.3: version "2.3.3" resolved "https://neo.jfrog.io/neo/api/npm/npm/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" @@ -8979,6 +9630,12 @@ tough-cookie@~2.3.0: dependencies: punycode "^1.4.1" +tr46@^1.0.1: + version "1.0.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/tr46/-/tr46-1.0.1.tgz?dl=https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" + dependencies: + punycode "^2.1.0" + tr46@~0.0.3: version "0.0.3" resolved "https://neo.jfrog.io/neo/api/npm/npm/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" @@ -9213,6 +9870,13 @@ util-deprecate@~1.0.1: version "1.0.2" resolved "https://neo.jfrog.io/neo/api/npm/npm/util-deprecate/-/util-deprecate-1.0.2.tgz?dl=https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" +util.promisify@^1.0.0: + version "1.0.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/util.promisify/-/util.promisify-1.0.0.tgz?dl=https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" + dependencies: + define-properties "^1.1.2" + object.getownpropertydescriptors "^2.0.3" + util@0.10.3, util@^0.10.3: version "0.10.3" resolved "https://neo.jfrog.io/neo/api/npm/npm/util/-/util-0.10.3.tgz?dl=https://registry.npmjs.org/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" @@ -9272,6 +9936,12 @@ vm-browserify@0.0.4: dependencies: indexof "0.0.1" +w3c-hr-time@^1.0.1: + version "1.0.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz?dl=https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz#82ac2bff63d950ea9e3189a58a65625fedf19045" + dependencies: + browser-process-hrtime "^0.1.2" + wait-for-expect@^0.4.0: version "0.4.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/wait-for-expect/-/wait-for-expect-0.4.0.tgz?dl=https://registry.npmjs.org/wait-for-expect/-/wait-for-expect-0.4.0.tgz#341c96ab89d6102a0169a9be6cd0de354de92c17" @@ -9311,7 +9981,7 @@ webidl-conversions@^3.0.0: version "3.0.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" -webidl-conversions@^4.0.0: +webidl-conversions@^4.0.0, webidl-conversions@^4.0.2: version "4.0.2" resolved "https://neo.jfrog.io/neo/api/npm/npm/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" @@ -9439,10 +10109,20 @@ whatwg-encoding@^1.0.1: dependencies: iconv-lite "0.4.13" +whatwg-encoding@^1.0.3: + version "1.0.3" + resolved "https://neo.jfrog.io/neo/api/npm/npm/whatwg-encoding/-/whatwg-encoding-1.0.3.tgz?dl=https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.3.tgz#57c235bc8657e914d24e1a397d3c82daee0a6ba3" + dependencies: + iconv-lite "0.4.19" + whatwg-fetch@2.0.4, whatwg-fetch@>=0.10.0: version "2.0.4" resolved "https://neo.jfrog.io/neo/api/npm/npm/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz?dl=https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz#dde6a5df315f9d39991aa17621853d720b85566f" +whatwg-mimetype@^2.0.0, whatwg-mimetype@^2.1.0: + version "2.1.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/whatwg-mimetype/-/whatwg-mimetype-2.1.0.tgz?dl=https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.1.0.tgz#f0f21d76cbba72362eb609dbed2a30cd17fcc7d4" + whatwg-url@^4.3.0: version "4.8.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/whatwg-url/-/whatwg-url-4.8.0.tgz#d2981aa9148c1e00a41c5a6131166ab4683bbcc0" @@ -9450,6 +10130,14 @@ whatwg-url@^4.3.0: tr46 "~0.0.3" webidl-conversions "^3.0.0" +whatwg-url@^6.4.0, whatwg-url@^6.4.1: + version "6.5.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/whatwg-url/-/whatwg-url-6.5.0.tgz?dl=https://registry.npmjs.org/whatwg-url/-/whatwg-url-6.5.0.tgz#f2df02bff176fd65070df74ad5ccbb5a199965a8" + dependencies: + lodash.sortby "^4.7.0" + tr46 "^1.0.1" + webidl-conversions "^4.0.2" + whet.extend@~0.9.9: version "0.9.9" resolved "https://neo.jfrog.io/neo/api/npm/npm/whet.extend/-/whet.extend-0.9.9.tgz?dl=https://registry.npmjs.org/whet.extend/-/whet.extend-0.9.9.tgz#f877d5bf648c97e5aa542fadc16d6a259b9c11a1" @@ -9468,6 +10156,12 @@ which@^1.2.10, which@^1.2.12, which@^1.2.9: dependencies: isexe "^2.0.0" +which@^1.3.0: + version "1.3.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/which/-/which-1.3.1.tgz?dl=https://registry.npmjs.org/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" + dependencies: + isexe "^2.0.0" + wide-align@^1.1.0: version "1.1.2" resolved "https://neo.jfrog.io/neo/api/npm/npm/wide-align/-/wide-align-1.1.2.tgz?dl=https://registry.npmjs.org/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" @@ -9556,6 +10250,10 @@ xml-name-validator@^2.0.1: version "2.0.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" +xml-name-validator@^3.0.0: + version "3.0.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/xml-name-validator/-/xml-name-validator-3.0.0.tgz?dl=https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" + xml2js@^0.4.19: version "0.4.19" resolved "https://neo.jfrog.io/neo/api/npm/npm/xml2js/-/xml2js-0.4.19.tgz#686c20f213209e94abf0d1bcf1efaa291c7827a7" From 6e2d78e43e6bfe99cbc20198786436e0e356d90f Mon Sep 17 00:00:00 2001 From: Oskar Hane Date: Fri, 15 Jun 2018 12:37:58 +0200 Subject: [PATCH 23/40] Add tests for DesktopIntegration component --- .../__snapshots__/index.test.js.snap | 11 ++ .../DesktopIntegration/index.test.js | 132 ++++++++++++++++++ 2 files changed, 143 insertions(+) create mode 100644 src/browser/components/DesktopIntegration/__snapshots__/index.test.js.snap create mode 100644 src/browser/components/DesktopIntegration/index.test.js diff --git a/src/browser/components/DesktopIntegration/__snapshots__/index.test.js.snap b/src/browser/components/DesktopIntegration/__snapshots__/index.test.js.snap new file mode 100644 index 00000000000..57c681448cb --- /dev/null +++ b/src/browser/components/DesktopIntegration/__snapshots__/index.test.js.snap @@ -0,0 +1,11 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[` calls onMount with data on mounting 1`] = `
`; + +exports[` calls onMount with data on mounting 2`] = `
`; + +exports[` calls onXxx with data on event XXX 1`] = `
`; + +exports[` does not render anything if no integration point 1`] = `
`; + +exports[` does not render anything if there is an integration point 1`] = `
`; diff --git a/src/browser/components/DesktopIntegration/index.test.js b/src/browser/components/DesktopIntegration/index.test.js new file mode 100644 index 00000000000..8f25d4e6329 --- /dev/null +++ b/src/browser/components/DesktopIntegration/index.test.js @@ -0,0 +1,132 @@ +/* + * Copyright (c) 2002-2018 "Neo4j, Inc" + * Network Engine for Objects in Lund AB [http://neotechnology.com] + * + * This file is part of Neo4j. + * + * Neo4j is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +/* global test, expect, jest */ + +import React from 'react' +import { render, wait } from 'react-testing-library' +import DesktopIntegration from './index' + +describe('', () => { + test('does not render anything if no integration point', () => { + // Given + const integrationPoint = null + + // When + const { container } = render( + + ) + + // Then + expect(container).toMatchSnapshot() + }) + test('does not render anything if there is an integration point', () => { + // Given + const integrationPoint = { x: true } + + // When + const { container } = render( + + ) + + // Then + expect(container).toMatchSnapshot() + }) + test('calls onMount with data on mounting', async () => { + // Given + const mFn = jest.fn() + const context = { + projects: [ + { + graphs: [ + { + status: 'ACTIVE', + configuration: { + protocols: { + bolt: { + username: 'neo4j' + } + } + } + } + ] + } + ] + } + const integrationPoint = { getContext: () => Promise.resolve(context) } + + // When + const { container, rerender } = render( + + ) + await wait(() => expect(mFn).toHaveBeenCalledTimes(1)) + // Then + expect(container).toMatchSnapshot() + + // When + rerender() + + // Then + expect(mFn).toHaveBeenCalledTimes(1) + expect(container).toMatchSnapshot() + }) + test('calls onXxx with data on event XXX', () => { + // Given + let componentOnContextUpdate + const fn = jest.fn() + const oldContext = { projects: [] } + const newContext = { projects: [{ project: {} }] } + const event = { type: 'XXX' } + const nonListenEvent = { type: 'YYY' } + const integrationPoint = { + onContextUpdate: fn => (componentOnContextUpdate = fn) + } + + // When + const { container } = render( + + ) + + // Then + expect(fn).toHaveBeenCalledTimes(0) + + // When + componentOnContextUpdate(event, newContext, oldContext) + + // Then + expect(fn).toHaveBeenCalledTimes(1) + expect(fn).toHaveBeenLastCalledWith(event, newContext, oldContext) + + // When + componentOnContextUpdate(nonListenEvent, newContext, oldContext) // We don't listen for this + + // Then + expect(fn).toHaveBeenCalledTimes(1) + expect(fn).toHaveBeenLastCalledWith(event, newContext, oldContext) + + // When + componentOnContextUpdate(event, newContext, oldContext) // Another one we're listening on + + // Then + expect(fn).toHaveBeenCalledTimes(2) + expect(fn).toHaveBeenLastCalledWith(event, newContext, oldContext) + expect(container).toMatchSnapshot() + }) +}) From e282d3e96ab8b505699c46e527f7e20bb9299634 Mon Sep 17 00:00:00 2001 From: Oskar Hane Date: Fri, 15 Jun 2018 13:20:14 +0200 Subject: [PATCH 24/40] Add tests for AsciiView --- .../Stream/CypherFrame/AsciiView.test.js | 114 ++++++++++++++++++ .../__snapshots__/AsciiView.test.js.snap | 70 +++++++++++ .../modules/Stream/CypherFrame/helpers.js | 8 +- 3 files changed, 190 insertions(+), 2 deletions(-) create mode 100644 src/browser/modules/Stream/CypherFrame/AsciiView.test.js create mode 100644 src/browser/modules/Stream/CypherFrame/__snapshots__/AsciiView.test.js.snap diff --git a/src/browser/modules/Stream/CypherFrame/AsciiView.test.js b/src/browser/modules/Stream/CypherFrame/AsciiView.test.js new file mode 100644 index 00000000000..87d6032c333 --- /dev/null +++ b/src/browser/modules/Stream/CypherFrame/AsciiView.test.js @@ -0,0 +1,114 @@ +/* + * Copyright (c) 2002-2018 "Neo4j, Inc" + * Network Engine for Objects in Lund AB [http://neotechnology.com] + * + * This file is part of Neo4j. + * + * Neo4j is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +/* global jest, describe, test, expect */ +import React from 'react' +import { render } from 'react-testing-library' +import { v1 as neo4j } from 'neo4j-driver-alias' + +import { AsciiView, AsciiStatusbar } from './AsciiView' + +describe('AsciiViews', () => { + describe('AsciiView', () => { + test('displays bodyMessage if no rows', () => { + // Given + const sps = jest.fn() + const result = { + records: [], + summary: { + resultAvailableAfter: neo4j.int(5), + resultConsumedAfter: neo4j.int(5) + } + } + + // When + const { container } = render( + + ) + + // Then + expect(container).toMatchSnapshot() + }) + test('does not display bodyMessage if rows', () => { + // Given + const sps = jest.fn() + const result = { + records: [{ keys: ['x'], _fields: ['y'], get: () => 'y' }], + summary: { + resultAvailableAfter: neo4j.int(5), + resultConsumedAfter: neo4j.int(5) + } + } + + // When + const { container } = render( + + ) + + // Then + expect(container).toMatchSnapshot() + }) + }) + describe('AsciiStatusbar', () => { + test('displays statusBarMessage if no rows', () => { + // Given + const sps = jest.fn() + const result = { + records: [], + summary: { + resultAvailableAfter: neo4j.int(5), + resultConsumedAfter: neo4j.int(5) + } + } + + // When + const { container } = render( + + ) + + // Then + expect(container).toMatchSnapshot() + }) + test('displays statusBarMessage if no rows', () => { + // Given + const sps = jest.fn() + const result = { + records: [{ keys: ['x'], _fields: ['y'], get: () => 'y' }], + summary: { + resultAvailableAfter: neo4j.int(5), + resultConsumedAfter: neo4j.int(5) + } + } + const serializedRows = [['x'], ['y']] + + // When + const { container } = render( + + ) + + // Then + expect(container).toMatchSnapshot() + }) + }) +}) diff --git a/src/browser/modules/Stream/CypherFrame/__snapshots__/AsciiView.test.js.snap b/src/browser/modules/Stream/CypherFrame/__snapshots__/AsciiView.test.js.snap new file mode 100644 index 00000000000..3f2ad1e8cc3 --- /dev/null +++ b/src/browser/modules/Stream/CypherFrame/__snapshots__/AsciiView.test.js.snap @@ -0,0 +1,70 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`AsciiViews AsciiStatusbar displays statusBarMessage if no rows 1`] = ` +
+
+
+ Completed after 10 ms. +
+
+
+`; + +exports[`AsciiViews AsciiStatusbar displays statusBarMessage if no rows 2`] = ` +
+
+
+
+ Max column width: + +
+
+
+
+`; + +exports[`AsciiViews AsciiView displays bodyMessage if no rows 1`] = ` +
+
+
+ (no changes, no records) +
+
+
+`; + +exports[`AsciiViews AsciiView does not display bodyMessage if rows 1`] = ` +
+
+
+      ╒═══╕
+│"x"│
+╞═══╡
+│"y"│
+└───┘
+    
+
+
+`; diff --git a/src/browser/modules/Stream/CypherFrame/helpers.js b/src/browser/modules/Stream/CypherFrame/helpers.js index 61d056640e9..94bfb765061 100644 --- a/src/browser/modules/Stream/CypherFrame/helpers.js +++ b/src/browser/modules/Stream/CypherFrame/helpers.js @@ -63,11 +63,15 @@ export function getBodyAndStatusBarMessages (result, maxRows) { } const bodyMessage = - updateMessages.length === 0 && result.records.length === 0 + (!updateMessages || updateMessages.length === 0) && + result.records.length === 0 ? '(no changes, no records)' : updateMessages + `completed ${totalTimeString} ms.` - return { statusBarMessage: updateMessages + streamMessage, bodyMessage } + return { + statusBarMessage: (updateMessages || '') + streamMessage, + bodyMessage + } } export const getRecordsToDisplayInTable = (result, maxRows) => { From 7dc1c9b78922799e66aa396ad89b26a41730a8e9 Mon Sep 17 00:00:00 2001 From: Oskar Hane Date: Fri, 15 Jun 2018 13:26:51 +0200 Subject: [PATCH 25/40] Add test for HistoryRow --- src/browser/modules/Stream/HistoryRow.test.js | 42 +++++++++++++++++++ .../__snapshots__/HistoryRow.test.js.snap | 11 +++++ 2 files changed, 53 insertions(+) create mode 100644 src/browser/modules/Stream/HistoryRow.test.js create mode 100644 src/browser/modules/Stream/__snapshots__/HistoryRow.test.js.snap diff --git a/src/browser/modules/Stream/HistoryRow.test.js b/src/browser/modules/Stream/HistoryRow.test.js new file mode 100644 index 00000000000..6dd8f432dd7 --- /dev/null +++ b/src/browser/modules/Stream/HistoryRow.test.js @@ -0,0 +1,42 @@ +/* + * Copyright (c) 2002-2018 "Neo4j, Inc" + * Network Engine for Objects in Lund AB [http://neotechnology.com] + * + * This file is part of Neo4j. + * + * Neo4j is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +/* global describe, beforeEach, afterEach, test, expect, jest */ +import React from 'react' +import { render, Simulate } from 'react-testing-library' +import HistoryRow from './HistoryRow' + +describe('HistoryRow', () => { + test('triggers function on click', () => { + // Given + const myFn = jest.fn() + const entry = ':clear' + + // When + const { container, getByText } = render( + + ) + Simulate.click(getByText(':clear')) + + // Then + expect(myFn).toHaveBeenCalled() + expect(container).toMatchSnapshot() + }) +}) diff --git a/src/browser/modules/Stream/__snapshots__/HistoryRow.test.js.snap b/src/browser/modules/Stream/__snapshots__/HistoryRow.test.js.snap new file mode 100644 index 00000000000..08a2973393b --- /dev/null +++ b/src/browser/modules/Stream/__snapshots__/HistoryRow.test.js.snap @@ -0,0 +1,11 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`HistoryRow triggers function on click 1`] = ` +
+
  • + :clear +
  • +
    +`; From 223994624484147afa790d1dfd90e922bf77f8c5 Mon Sep 17 00:00:00 2001 From: Oskar Hane Date: Fri, 15 Jun 2018 13:52:03 +0200 Subject: [PATCH 26/40] Add tests for SysInfoFrame --- src/browser/components/Tables.jsx | 11 +-- .../modules/Stream/SysInfoFrame/index.jsx | 24 ++++--- .../modules/Stream/SysInfoFrame/index.test.js | 70 +++++++++++++++++++ 3 files changed, 91 insertions(+), 14 deletions(-) create mode 100644 src/browser/modules/Stream/SysInfoFrame/index.test.js diff --git a/src/browser/components/Tables.jsx b/src/browser/components/Tables.jsx index 52a8d15a121..c846b4b7047 100644 --- a/src/browser/components/Tables.jsx +++ b/src/browser/components/Tables.jsx @@ -17,6 +17,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ +/* global btoa */ import React from 'react' import styled from 'styled-components' @@ -74,11 +75,12 @@ export const SysInfoTableEntry = ({ const getValue = (v, m) => (m && v ? mapper(v) : v) if (headers) { return ( - + {headers.map(value => { const mappedValue = getValue(value, mapper) + const val = mappedValue || missingValuePlaceholder return mappedValue || !optional ? ( - {mappedValue || missingValuePlaceholder} + {val} ) : null })} @@ -86,11 +88,12 @@ export const SysInfoTableEntry = ({ } if (values) { return ( - + {values.map(value => { const mappedValue = getValue(value, mapper) + const val = mappedValue || missingValuePlaceholder return mappedValue || !optional ? ( - {mappedValue || missingValuePlaceholder} + {val} ) : null })} diff --git a/src/browser/modules/Stream/SysInfoFrame/index.jsx b/src/browser/modules/Stream/SysInfoFrame/index.jsx index b87c0be6dfc..b3359878f73 100644 --- a/src/browser/modules/Stream/SysInfoFrame/index.jsx +++ b/src/browser/modules/Stream/SysInfoFrame/index.jsx @@ -271,41 +271,45 @@ export class SysInfoFrame extends Component { render () { const content = this.props.isConnected ? ( - + {this.buildTableData(this.state.storeSizes)} - + {this.buildTableData(this.state.idAllocation)} - + {this.buildTableData(this.state.pageCache)} - + {this.buildTableData(this.state.transactions)} + Causal Cluster Members{' '} } colspan='3' > - + {this.buildTableData(this.state.cc)} - + {this.buildTableData(this.state.ha)} - + {this.buildTableData(this.state.haInstances)} @@ -313,7 +317,7 @@ export class SysInfoFrame extends Component { ) : ( - undefined + 'No connection available' ) return ( diff --git a/src/browser/modules/Stream/SysInfoFrame/index.test.js b/src/browser/modules/Stream/SysInfoFrame/index.test.js new file mode 100644 index 00000000000..abc460c4a67 --- /dev/null +++ b/src/browser/modules/Stream/SysInfoFrame/index.test.js @@ -0,0 +1,70 @@ +/* + * Copyright (c) 2002-2018 "Neo4j, Inc" + * Network Engine for Objects in Lund AB [http://neotechnology.com] + * + * This file is part of Neo4j. + * + * Neo4j is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +/* global jest, describe, test, expect */ + +import React from 'react' +import { render } from 'react-testing-library' +import { SysInfoFrame } from './index' + +jest.mock( + 'browser/modules/Stream/FrameTemplate', + () => ({ contents, children }) => ( +
    + {contents} + {children} +
    + ) +) + +describe('sysinfo component', () => { + test('should render causal cluster table', () => { + // Given + const props = { isACausalCluster: true, isConnected: true } + + // When + const { getByText, queryByTestId } = render() + + // Then + expect(getByText('Causal Cluster Members')).not.toBeNull() + expect(queryByTestId('sysinfo-casual-cluster-members-title')).not.toBeNull() + }) + test('should not render causal cluster table', () => { + // Given + const props = { isACausalCluster: false, isConnected: true } + + // When + const { queryByTestId } = render() + + // Then + expect(queryByTestId('sysinfo-casual-cluster-members-title')).toBeNull() + }) + + test('should display error when there is no connection', () => { + // Given + const props = { isConnected: false } + + // When + const { getByText } = render() + + // Then + expect(getByText('No connection available')).not.toBeNull() + }) +}) From 04cb71fbcdb58d61a4fefefdb39c7e3357ea9441 Mon Sep 17 00:00:00 2001 From: Oskar Hane Date: Fri, 15 Jun 2018 14:32:00 +0200 Subject: [PATCH 27/40] Add tests for CodeView --- .../Stream/CypherFrame/CodeView.test.js | 98 ++++++++++++++ .../__snapshots__/CodeView.test.js.snap | 124 ++++++++++++++++++ 2 files changed, 222 insertions(+) create mode 100644 src/browser/modules/Stream/CypherFrame/CodeView.test.js create mode 100644 src/browser/modules/Stream/CypherFrame/__snapshots__/CodeView.test.js.snap diff --git a/src/browser/modules/Stream/CypherFrame/CodeView.test.js b/src/browser/modules/Stream/CypherFrame/CodeView.test.js new file mode 100644 index 00000000000..872ea4428d2 --- /dev/null +++ b/src/browser/modules/Stream/CypherFrame/CodeView.test.js @@ -0,0 +1,98 @@ +/* + * Copyright (c) 2002-2018 "Neo4j, Inc" + * Network Engine for Objects in Lund AB [http://neotechnology.com] + * + * This file is part of Neo4j. + * + * Neo4j is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +/* global describe, test, expect */ +import React from 'react' +import { render } from 'react-testing-library' +import { v1 as neo4j } from 'neo4j-driver-alias' + +import { CodeView, CodeStatusbar } from './CodeView' + +describe('CodeViews', () => { + describe('CodeView', () => { + test('displays nothing if not successful query', () => { + // Given + const props = { request: { status: 'error' } } + + // When + const { container } = render() + + // Then + expect(container).toMatchSnapshot() + }) + test('displays request and response info if successful query', () => { + // Given + const props = { + query: 'MATCH xx0', + request: { + status: 'success', + result: { + summary: { + server: { + version: 'xx1', + address: 'xx2' + } + }, + records: [{ res: 'xx3' }] + } + } + } + + // When + const { container } = render() + + // Then + expect(container).toMatchSnapshot() + }) + }) + describe('CodeStatusbar', () => { + test('displays no statusBarMessage', () => { + // Given + const props = { result: {}, maxRows: 0 } + + // When + const { container } = render() + + // Then + expect(container).toMatchSnapshot() + }) + test('displays statusBarMessage', () => { + // Given + const props = { + query: 'MATCH xx0', + status: 'success', + result: { + summary: { + resultAvailableAfter: neo4j.int(5), + resultConsumedAfter: neo4j.int(5) + }, + maxRows: 100, + records: [{ res: 'xx3' }] + } + } + + // When + const { container } = render() + + // Then + expect(container).toMatchSnapshot() + }) + }) +}) diff --git a/src/browser/modules/Stream/CypherFrame/__snapshots__/CodeView.test.js.snap b/src/browser/modules/Stream/CypherFrame/__snapshots__/CodeView.test.js.snap new file mode 100644 index 00000000000..673ce1bdcdc --- /dev/null +++ b/src/browser/modules/Stream/CypherFrame/__snapshots__/CodeView.test.js.snap @@ -0,0 +1,124 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`CodeViews CodeStatusbar displays no statusBarMessage 1`] = ` +
    +
    +
    +
    +
    +`; + +exports[`CodeViews CodeStatusbar displays statusBarMessage 1`] = ` +
    +
    +
    + Started streaming 1 records after 5 ms and completed after 10 ms. +
    +
    +
    +`; + +exports[`CodeViews CodeView displays nothing if not successful query 1`] = `
    `; + +exports[`CodeViews CodeView displays request and response info if successful query 1`] = ` +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + +
    + Server version + + xx1 +
    + Server address + + xx2 +
    + Query + + MATCH xx0 +
    + Summary +
    +
    + {, "server": {, "version": "xx1", ... +
    + Response +
    +
    + [, {, "res": "xx3" ... +
    +
    +
    +`; From 680243fbb3354cf8c65badcc549f0a3b3b092dbc Mon Sep 17 00:00:00 2001 From: Oskar Hane Date: Fri, 15 Jun 2018 14:36:47 +0200 Subject: [PATCH 28/40] Add tests for TableView --- .../Stream/CypherFrame/TableView.test.js | 114 ++++++++++++++++++ .../__snapshots__/TableView.test.js.snap | 88 ++++++++++++++ 2 files changed, 202 insertions(+) create mode 100644 src/browser/modules/Stream/CypherFrame/TableView.test.js create mode 100644 src/browser/modules/Stream/CypherFrame/__snapshots__/TableView.test.js.snap diff --git a/src/browser/modules/Stream/CypherFrame/TableView.test.js b/src/browser/modules/Stream/CypherFrame/TableView.test.js new file mode 100644 index 00000000000..9370c9e7d24 --- /dev/null +++ b/src/browser/modules/Stream/CypherFrame/TableView.test.js @@ -0,0 +1,114 @@ +/* + * Copyright (c) 2002-2018 "Neo4j, Inc" + * Network Engine for Objects in Lund AB [http://neotechnology.com] + * + * This file is part of Neo4j. + * + * Neo4j is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +/* global jest, describe, test, expect */ + +import React from 'react' +import { render } from 'react-testing-library' +import { v1 as neo4j } from 'neo4j-driver-alias' + +import { TableView, TableStatusbar, renderObject } from './TableView' + +describe('TableViews', () => { + describe('TableView', () => { + test('displays bodyMessage if no rows', () => { + // Given + const sps = jest.fn() + const props = { + setParentState: sps, + result: { + records: [], + summary: { + resultAvailableAfter: neo4j.int(5), + resultConsumedAfter: neo4j.int(5) + } + } + } + + // When + const { container } = render() + + // Then + expect(container).toMatchSnapshot() + }) + test('does not display bodyMessage if rows', () => { + // Given + const sps = jest.fn() + const result = { + records: [{ keys: ['x'], _fields: ['y'], get: () => 'y' }], + summary: { + resultAvailableAfter: neo4j.int(5), + resultConsumedAfter: neo4j.int(5) + } + } + + // When + const { container } = render( + + ) + + // Then + expect(container).toMatchSnapshot() + }) + test('renderObject handles null values', () => { + // Given + const datas = [{ x: 1 }, null] + + // When + const results = datas.map(data => renderObject(data)) + + // Then + results.forEach((res, i) => expect(res).toMatchSnapshot()) + }) + }) + describe('TableStatusbar', () => { + test('displays no statusBarMessage', () => { + // Given + const props = { result: {}, maxRows: 0 } + + // When + const { container } = render() + + // Then + expect(container).toMatchSnapshot() + }) + test('displays statusBarMessage', () => { + // Given + const props = { + query: 'MATCH xx0', + status: 'success', + result: { + summary: { + resultAvailableAfter: neo4j.int(5), + resultConsumedAfter: neo4j.int(5) + }, + maxRows: 100, + records: [{ res: 'xx3' }] + } + } + + // When + const { container } = render() + + // Then + expect(container).toMatchSnapshot() + }) + }) +}) diff --git a/src/browser/modules/Stream/CypherFrame/__snapshots__/TableView.test.js.snap b/src/browser/modules/Stream/CypherFrame/__snapshots__/TableView.test.js.snap new file mode 100644 index 00000000000..4171e44ea51 --- /dev/null +++ b/src/browser/modules/Stream/CypherFrame/__snapshots__/TableView.test.js.snap @@ -0,0 +1,88 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`TableViews TableStatusbar displays no statusBarMessage 1`] = ` +
    +
    +
    +
    +
    +`; + +exports[`TableViews TableStatusbar displays statusBarMessage 1`] = ` +
    +
    +
    + Started streaming 1 records after 5 ms and completed after 10 ms. +
    +
    +
    +`; + +exports[`TableViews TableView displays bodyMessage if no rows 1`] = ` +
    +
    +
    + (no changes, no records) +
    +
    +
    +`; + +exports[`TableViews TableView does not display bodyMessage if rows 1`] = ` +
    +
    + + + + + + + + + + + +
    + x +
    + "y" +
    +
    +
    +`; + +exports[`TableViews TableView renderObject handles null values 1`] = ` + + { + "x": 1.0 +} + +`; + +exports[`TableViews TableView renderObject handles null values 2`] = ` + + null + +`; From 08dc6d5e3c49570d085100b71d9158e311363aaa Mon Sep 17 00:00:00 2001 From: Oskar Hane Date: Fri, 15 Jun 2018 14:46:24 +0200 Subject: [PATCH 29/40] Add tests for WarningsView --- .../Stream/CypherFrame/WarningsView.jsx | 8 +- .../Stream/CypherFrame/WarningsView.test.js | 110 +++++++++++++ .../__snapshots__/WarningsView.test.js.snap | 144 ++++++++++++++++++ 3 files changed, 261 insertions(+), 1 deletion(-) create mode 100644 src/browser/modules/Stream/CypherFrame/WarningsView.test.js create mode 100644 src/browser/modules/Stream/CypherFrame/__snapshots__/WarningsView.test.js.snap diff --git a/src/browser/modules/Stream/CypherFrame/WarningsView.jsx b/src/browser/modules/Stream/CypherFrame/WarningsView.jsx index f17fb71e243..8f0e381a96b 100644 --- a/src/browser/modules/Stream/CypherFrame/WarningsView.jsx +++ b/src/browser/modules/Stream/CypherFrame/WarningsView.jsx @@ -58,7 +58,13 @@ export class WarningsView extends Component { let cypherLines = cypher.split('\n') let notificationsList = notifications.map(notification => { return ( - + {getWarningComponent(notification.severity)} {notification.title} diff --git a/src/browser/modules/Stream/CypherFrame/WarningsView.test.js b/src/browser/modules/Stream/CypherFrame/WarningsView.test.js new file mode 100644 index 00000000000..cafb7b90224 --- /dev/null +++ b/src/browser/modules/Stream/CypherFrame/WarningsView.test.js @@ -0,0 +1,110 @@ +/* + * Copyright (c) 2002-2018 "Neo4j, Inc" + * Network Engine for Objects in Lund AB [http://neotechnology.com] + * + * This file is part of Neo4j. + * + * Neo4j is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +/* global describe, test, expect */ + +import React from 'react' +import { render } from 'react-testing-library' + +import { WarningsView } from './WarningsView' + +describe('WarningsViews', () => { + describe('WarningsView', () => { + test('displays nothing if no notifications', () => { + // Given + const props = { + result: {} + } + + // When + const { container } = render() + + // Then + expect(container).toMatchSnapshot() + }) + test('does displays a warning', () => { + // Given + const props = { + result: { + summary: { + notifications: [ + { + severity: 'WARNING xx0', + title: 'My xx1 warning', + description: 'This is xx2 warning', + position: { + offset: 7, + line: 1 + } + } + ], + statement: { + text: 'EXPLAIN MATCH xx3' + } + } + } + } + + // When + const { container } = render() + + // Then + expect(container).toMatchSnapshot() + }) + test('does displays multiple warnings', () => { + // Given + const props = { + result: { + summary: { + notifications: [ + { + severity: 'WARNING xx0', + title: 'My xx1 warning', + description: 'This is xx2 warning', + position: { + offset: 7, + line: 1 + } + }, + { + severity: 'WARNING yy0', + title: 'My yy1 warning', + description: 'This is yy2 warning', + position: { + offset: 3, + line: 1 + } + } + ], + statement: { + text: 'EXPLAIN MATCH zz3' + } + } + } + } + + // When + const { container } = render() + + // Then + expect(container).toMatchSnapshot() + }) + }) +}) diff --git a/src/browser/modules/Stream/CypherFrame/__snapshots__/WarningsView.test.js.snap b/src/browser/modules/Stream/CypherFrame/__snapshots__/WarningsView.test.js.snap new file mode 100644 index 00000000000..dd7a4886bbf --- /dev/null +++ b/src/browser/modules/Stream/CypherFrame/__snapshots__/WarningsView.test.js.snap @@ -0,0 +1,144 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`WarningsViews WarningsView displays nothing if no notifications 1`] = `
    `; + +exports[`WarningsViews WarningsView does displays a warning 1`] = ` +
    +
    +
    +
    +
    + WARNING xx0 +
    +

    + My xx1 warning +

    +
    +
    +
    + This is xx2 warning +
    +
    +
    +            EXPLAIN MATCH xx3
    +            
    + + ^ +
    +
    +
    +
    +
    +
    +`; + +exports[`WarningsViews WarningsView does displays multiple warnings 1`] = ` +
    +
    +
    +
    +
    + WARNING xx0 +
    +

    + My xx1 warning +

    +
    +
    +
    + This is xx2 warning +
    +
    +
    +            EXPLAIN MATCH zz3
    +            
    + + ^ +
    +
    +
    +
    +
    +
    +
    + WARNING yy0 +
    +

    + My yy1 warning +

    +
    +
    +
    + This is yy2 warning +
    +
    +
    +            EXPLAIN MATCH zz3
    +            
    + + ^ +
    +
    +
    +
    +
    +
    +`; From 98e8451da1420b3420d68d8d146424e028d94dce Mon Sep 17 00:00:00 2001 From: Oskar Hane Date: Fri, 15 Jun 2018 14:53:38 +0200 Subject: [PATCH 30/40] Add tests for ErrorsView --- .../Stream/CypherFrame/ErrorsView.test.js | 100 ++++++++++++++++ .../__snapshots__/ErrorsView.test.js.snap | 108 ++++++++++++++++++ 2 files changed, 208 insertions(+) create mode 100644 src/browser/modules/Stream/CypherFrame/ErrorsView.test.js create mode 100644 src/browser/modules/Stream/CypherFrame/__snapshots__/ErrorsView.test.js.snap diff --git a/src/browser/modules/Stream/CypherFrame/ErrorsView.test.js b/src/browser/modules/Stream/CypherFrame/ErrorsView.test.js new file mode 100644 index 00000000000..d92d66b774b --- /dev/null +++ b/src/browser/modules/Stream/CypherFrame/ErrorsView.test.js @@ -0,0 +1,100 @@ +/* + * Copyright (c) 2002-2018 "Neo4j, Inc" + * Network Engine for Objects in Lund AB [http://neotechnology.com] + * + * This file is part of Neo4j. + * + * Neo4j is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +/* global describe, test, expect */ + +import React from 'react' +import { render } from 'react-testing-library' + +import { ErrorsView, ErrorsStatusbar } from './ErrorsView' + +describe('ErrorsViews', () => { + describe('ErrorsView', () => { + test('displays nothing if no errors', () => { + // Given + const props = { + result: {} + } + + // When + const { container } = render() + + // Then + expect(container).toMatchSnapshot() + }) + test('does displays an error', () => { + // Given + const props = { + result: { + code: 'Test.Error', + message: 'Test error description' + } + } + + // When + const { container } = render() + + // Then + expect(container).toMatchSnapshot() + }) + test('displays procedure link if unknown procedure', () => { + // Given + const procErrorCode = 'Neo.ClientError.Procedure.ProcedureNotFound' + const props = { + result: { + code: procErrorCode, + message: 'not found' + } + } + + // When + const { container, getByText } = render() + + // Then + expect(container).toMatchSnapshot() + expect(getByText('List available procedures')).not.toBeUndefined() + }) + }) + describe('ErrorsStatusbar', () => { + test('displays nothing if no error', () => { + // Given + const props = { + result: {} + } + + // When + const { container } = render() + expect(container).toMatchSnapshot() + }) + test('displays error', () => { + // Given + const props = { + result: { + code: 'Test.Error', + message: 'Test error description' + } + } + + // When + const { container } = render() + expect(container).toMatchSnapshot() + }) + }) +}) diff --git a/src/browser/modules/Stream/CypherFrame/__snapshots__/ErrorsView.test.js.snap b/src/browser/modules/Stream/CypherFrame/__snapshots__/ErrorsView.test.js.snap new file mode 100644 index 00000000000..9c38dce55af --- /dev/null +++ b/src/browser/modules/Stream/CypherFrame/__snapshots__/ErrorsView.test.js.snap @@ -0,0 +1,108 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`ErrorsViews ErrorsStatusbar displays error 1`] = ` +
    +
    + + + + Test.Error: Test error description + +
    +
    +`; + +exports[`ErrorsViews ErrorsStatusbar displays nothing if no error 1`] = `
    `; + +exports[`ErrorsViews ErrorsView displays nothing if no errors 1`] = `
    `; + +exports[`ErrorsViews ErrorsView displays procedure link if unknown procedure 1`] = ` +
    +
    +
    +
    +
    + ERROR +
    +

    + Neo.ClientError.Procedure.ProcedureNotFound +

    +
    +
    +
    +          Neo.ClientError.Procedure.ProcedureNotFound: not found
    +        
    +
    + +
    +
    +
    +`; + +exports[`ErrorsViews ErrorsView does displays an error 1`] = ` +
    +
    +
    +
    +
    + ERROR +
    +

    + Test.Error +

    +
    +
    +
    +          Test.Error: Test error description
    +        
    +
    +
    +
    +
    +`; From a0f4ba5c44d53444a6b2c0fd3bb58b0209411499 Mon Sep 17 00:00:00 2001 From: Oskar Hane Date: Fri, 15 Jun 2018 14:56:51 +0200 Subject: [PATCH 31/40] Update licenses and notice with new deps --- LICENSES.txt | 4327 +++++++++++++++++++++++++++++++------------------- NOTICE.txt | 1394 ++++++++++------ 2 files changed, 3573 insertions(+), 2148 deletions(-) diff --git a/LICENSES.txt b/LICENSES.txt index 78ffc696991..afa0f07cd99 100644 --- a/LICENSES.txt +++ b/LICENSES.txt @@ -6,153 +6,294 @@ libraries. For an overview of the licenses see the NOTICE.txt file. ----- -The following software may be included in this product: ansi-escapes, ansi-regex, ansi-styles, chalk, cli-cursor, escape-string-regexp, figures, has-ansi, has-flag, is-fullwidth-code-point, is-stream, object-assign, onetime, os-tmpdir, restore-cursor, strip-ansi, strip-indent, supports-color. A copy of the source code may be downloaded from https://github.com/sindresorhus/ansi-escapes.git (ansi-escapes), https://github.com/chalk/ansi-regex.git (ansi-regex), https://github.com/chalk/ansi-styles.git (ansi-styles), https://github.com/chalk/chalk.git (chalk), https://github.com/sindresorhus/cli-cursor.git (cli-cursor), https://github.com/sindresorhus/escape-string-regexp.git (escape-string-regexp), https://github.com/sindresorhus/figures.git (figures), https://github.com/sindresorhus/has-ansi.git (has-ansi), https://github.com/sindresorhus/has-flag.git (has-flag), https://github.com/sindresorhus/is-fullwidth-code-point.git (is-fullwidth-code-point), https://github.com/sindresorhus/is-stream.git (is-stream), https://github.com/sindresorhus/object-assign.git (object-assign), https://github.com/sindresorhus/onetime.git (onetime), https://github.com/sindresorhus/os-tmpdir.git (os-tmpdir), https://github.com/sindresorhus/restore-cursor.git (restore-cursor), https://github.com/chalk/strip-ansi.git (strip-ansi), https://github.com/sindresorhus/strip-indent.git (strip-indent), https://github.com/chalk/supports-color.git (supports-color). This software contains the following license and notice below: +The following software may be included in this product: @firebase/auth, ascli, bytebuffer, long, protobufjs. A copy of the source code may be downloaded from https://github.com/firebase/firebase-js-sdk/tree/master/packages/auth (@firebase/auth), https://github.com/dcodeIO/ascli.git (ascli), https://github.com/dcodeIO/bytebuffer.js.git (bytebuffer), https://github.com/dcodeIO/long.js.git (long), https://github.com/dcodeIO/protobuf.js.git (protobufjs). This software contains the following license and notice below: -The MIT License (MIT) +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ -Copyright (c) Sindre Sorhus (sindresorhus.com) + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: + 1. Definitions. -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. ------ + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. -The following software may be included in this product: ansi-regex, mimic-fn, string-width, strip-ansi. A copy of the source code may be downloaded from https://github.com/chalk/ansi-regex.git (ansi-regex), https://github.com/sindresorhus/mimic-fn.git (mimic-fn), https://github.com/sindresorhus/string-width.git (string-width), https://github.com/chalk/strip-ansi.git (strip-ansi). This software contains the following license and notice below: + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. -MIT License + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. -Copyright (c) Sindre Sorhus (sindresorhus.com) + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." ------ + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. -The following software may be included in this product: asap. A copy of the source code may be downloaded from https://github.com/kriskowal/asap.git. This software contains the following license and notice below: + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. -Copyright 2009–2014 Contributors. All rights reserved. + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to -deal in the Software without restriction, including without limitation the -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -IN THE SOFTWARE. + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and ------ + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and -The following software may be included in this product: ascii-data-table. A copy of the source code may be downloaded from https://github.com/oskarhane/ascii-data-table.git. This software contains the following license and notice below: + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. -The MIT License (MIT) + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. -Copyright (c) 2016 Oskar Hane + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. ------ + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. -The following software may be included in this product: attr-accept. A copy of the source code may be downloaded from https://github.com/okonet/attr-accept.git. This software contains the following license and notice below: + END OF TERMS AND CONDITIONS -The MIT License (MIT) + APPENDIX: How to apply the Apache License to your work. -Copyright (c) 2015 Andrey Okonetchnikov + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: + Copyright [yyyy] [name of copyright owner] -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. + 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 -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. + 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. ----- -The following software may be included in this product: base64-js. A copy of the source code may be downloaded from git://github.com/beatgammit/base64-js.git. This software contains the following license and notice below: +The following software may be included in this product: abbrev. A copy of the source code may be downloaded from http://github.com/isaacs/abbrev-js. This software contains the following license and notice below: -The MIT License (MIT) +This software is dual-licensed under the ISC and MIT licenses. +You may use this software under EITHER of the following licenses. -Copyright (c) 2014 +---------- -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +The ISC License + +Copyright (c) Isaac Z. Schlueter and Contributors + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +---------- + +Copyright Isaac Z. Schlueter and Contributors +All rights reserved. + +Permission is hereby granted, free of charge, to any person +obtaining a copy of this software and associated documentation +files (the "Software"), to deal in the Software without +restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. + +----- + +The following software may be included in this product: ajv. A copy of the source code may be downloaded from https://github.com/epoberezkin/ajv.git. This software contains the following license and notice below: + +The MIT License (MIT) + +Copyright (c) 2015 Evgeny Poberezkin + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. ----- -The following software may be included in this product: buffer. A copy of the source code may be downloaded from git://github.com/feross/buffer.git. This software contains the following license and notice below: +The following software may be included in this product: ansi-regex, camelcase, code-point-at, decamelize, has-flag, is-fullwidth-code-point, is-stream, lcid, number-is-nan, object-assign, os-homedir, os-locale, os-tmpdir, path-is-absolute, string-width, strip-ansi, strip-indent, strip-json-comments, supports-color, wrap-ansi. A copy of the source code may be downloaded from https://github.com/chalk/ansi-regex.git (ansi-regex), https://github.com/sindresorhus/camelcase.git (camelcase), https://github.com/sindresorhus/code-point-at.git (code-point-at), https://github.com/sindresorhus/decamelize.git (decamelize), https://github.com/sindresorhus/has-flag.git (has-flag), https://github.com/sindresorhus/is-fullwidth-code-point.git (is-fullwidth-code-point), https://github.com/sindresorhus/is-stream.git (is-stream), https://github.com/sindresorhus/lcid.git (lcid), https://github.com/sindresorhus/number-is-nan.git (number-is-nan), https://github.com/sindresorhus/object-assign.git (object-assign), https://github.com/sindresorhus/os-homedir.git (os-homedir), https://github.com/sindresorhus/os-locale.git (os-locale), https://github.com/sindresorhus/os-tmpdir.git (os-tmpdir), https://github.com/sindresorhus/path-is-absolute.git (path-is-absolute), https://github.com/sindresorhus/string-width.git (string-width), https://github.com/chalk/strip-ansi.git (strip-ansi), https://github.com/sindresorhus/strip-indent.git (strip-indent), https://github.com/sindresorhus/strip-json-comments.git (strip-json-comments), https://github.com/chalk/supports-color.git (supports-color), https://github.com/chalk/wrap-ansi.git (wrap-ansi). This software contains the following license and notice below: The MIT License (MIT) -Copyright (c) Feross Aboukhadijeh, and other contributors. +Copyright (c) Sindre Sorhus (sindresorhus.com) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -174,52 +315,63 @@ THE SOFTWARE. ----- -The following software may be included in this product: buffer-equal-constant-time. A copy of the source code may be downloaded from git@github.com:goinstant/buffer-equal-constant-time.git. This software contains the following license and notice below: +The following software may be included in this product: aproba, wide-align. A copy of the source code may be downloaded from https://github.com/iarna/aproba (aproba), https://github.com/iarna/wide-align (wide-align). This software contains the following license and notice below: -Copyright (c) 2013, GoInstant Inc., a salesforce.com company -All rights reserved. +Copyright (c) 2015, Rebecca Turner -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. -* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. +----- -* Neither the name of salesforce.com, nor GoInstant, nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. +The following software may be included in this product: are-we-there-yet. A copy of the source code may be downloaded from https://github.com/iarna/are-we-there-yet.git. This software contains the following license and notice below: -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +Copyright (c) 2015, Rebecca Turner ------ +Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. -The following software may be included in this product: chai. A copy of the source code may be downloaded from https://github.com/chaijs/chai. This software contains the following license and notice below: +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -MIT License +----- -Copyright (c) 2017 Chai.js Assertion Library +The following software may be included in this product: asap. A copy of the source code may be downloaded from https://github.com/kriskowal/asap.git. This software contains the following license and notice below: + +Copyright 2009–2014 Contributors. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is +of this software and associated documentation files (the "Software"), to +deal in the Software without restriction, including without limitation the +rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +IN THE SOFTWARE. ----- -The following software may be included in this product: chardet. A copy of the source code may be downloaded from git@github.com:runk/node-chardet.git. This software contains the following license and notice below: +The following software may be included in this product: ascii-data-table. A copy of the source code may be downloaded from https://github.com/oskarhane/ascii-data-table.git. This software contains the following license and notice below: + +The MIT License (MIT) -Copyright (C) 2017 Dmitry Shirokov +Copyright (c) 2016 Oskar Hane Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -228,22 +380,22 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. ----- -The following software may be included in this product: check-error, deep-eql, get-func-name, type-detect. A copy of the source code may be downloaded from git+ssh://git@github.com/chaijs/check-error.git (check-error), git@github.com:chaijs/deep-eql.git (deep-eql), git+ssh://git@github.com/chaijs/get-func-name.git (get-func-name), git+ssh://git@github.com/chaijs/type-detect.git (type-detect). This software contains the following license and notice below: +The following software may be included in this product: asn1. A copy of the source code may be downloaded from git://github.com/mcavage/node-asn1.git. This software contains the following license and notice below: -Copyright (c) 2013 Jake Luer (http://alogicalparadox.com) +Copyright (c) 2011 Mark Cavage, All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -261,15 +413,15 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. +THE SOFTWARE ----- -The following software may be included in this product: ci-info. A copy of the source code may be downloaded from https://github.com/watson/ci-info.git. This software contains the following license and notice below: +The following software may be included in this product: asynckit. A copy of the source code may be downloaded from git+https://github.com/alexindigo/asynckit.git. This software contains the following license and notice below: The MIT License (MIT) -Copyright (c) 2016-2017 Thomas Watson Steen +Copyright (c) 2016 Alex Indigo Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -291,11 +443,11 @@ SOFTWARE. ----- -The following software may be included in this product: classnames. A copy of the source code may be downloaded from https://github.com/JedWatson/classnames.git. This software contains the following license and notice below: +The following software may be included in this product: attr-accept. A copy of the source code may be downloaded from https://github.com/okonet/attr-accept.git. This software contains the following license and notice below: The MIT License (MIT) -Copyright (c) 2016 Jed Watson +Copyright (c) 2015 Andrey Okonetchnikov Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -317,77 +469,121 @@ SOFTWARE. ----- -The following software may be included in this product: cli-width. A copy of the source code may be downloaded from git@github.com:knownasilya/cli-width.git. This software contains the following license and notice below: +The following software may be included in this product: aws-sign2, forever-agent, oauth-sign, request, tunnel-agent. A copy of the source code may be downloaded from https://github.com/mikeal/aws-sign (aws-sign2), https://github.com/mikeal/forever-agent (forever-agent), https://github.com/mikeal/oauth-sign (oauth-sign), https://github.com/request/request.git (request), https://github.com/mikeal/tunnel-agent (tunnel-agent). This software contains the following license and notice below: -Copyright (c) 2015, Ilya Radchenko +Apache License -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. +Version 2.0, January 2004 -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +http://www.apache.org/licenses/ ------ +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION -The following software may be included in this product: codemirror. A copy of the source code may be downloaded from https://github.com/codemirror/CodeMirror.git. This software contains the following license and notice below: +1. Definitions. -MIT License +"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. -Copyright (C) 2017 by Marijn Haverbeke and others +"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + +"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: + +You must give any other recipients of the Work or Derivative Works a copy of this License; and + +You must cause any modified files to carry prominent notices stating that You changed the files; and + +You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and + +If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +----- + +The following software may be included in this product: aws4. A copy of the source code may be downloaded from https://github.com/mhart/aws4.git. This software contains the following license and notice below: + +Copyright 2013 Michael Hart (michael.hart.au@gmail.com) + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. ----- -The following software may be included in this product: core-js. A copy of the source code may be downloaded from https://github.com/zloirock/core-js.git. This software contains the following license and notice below: +The following software may be included in this product: balanced-match. A copy of the source code may be downloaded from git://github.com/juliangruber/balanced-match.git. This software contains the following license and notice below: -Copyright (c) 2014-2017 Denis Pushkarev +(MIT) -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +Copyright (c) 2013 Julian Gruber <julian@juliangruber.com> -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. ----- -The following software may be included in this product: core-js. A copy of the source code may be downloaded from https://github.com/zloirock/core-js.git. This software contains the following license and notice below: +The following software may be included in this product: base64-js. A copy of the source code may be downloaded from git://github.com/beatgammit/base64-js.git. This software contains the following license and notice below: -Copyright (c) 2015 Denis Pushkarev +The MIT License (MIT) + +Copyright (c) 2014 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -409,11 +605,11 @@ THE SOFTWARE. ----- -The following software may be included in this product: css-color-keywords. A copy of the source code may be downloaded from https://github.com/sonicdoe/css-color-keywords.git. This software contains the following license and notice below: +The following software may be included in this product: block-stream, fstream, fstream-ignore, glob, ini, json-stringify-safe, minimatch, nopt, npmlog, once, osenv, rimraf, semver, wrappy. A copy of the source code may be downloaded from git://github.com/isaacs/block-stream.git (block-stream), https://github.com/npm/fstream.git (fstream), git://github.com/isaacs/fstream-ignore.git (fstream-ignore), git://github.com/isaacs/node-glob.git (glob), git://github.com/isaacs/ini.git (ini), git://github.com/isaacs/json-stringify-safe (json-stringify-safe), git://github.com/isaacs/minimatch.git (minimatch), https://github.com/npm/nopt.git (nopt), https://github.com/npm/npmlog.git (npmlog), git://github.com/isaacs/once (once), https://github.com/npm/osenv (osenv), git://github.com/isaacs/rimraf.git (rimraf), https://github.com/npm/node-semver (semver), https://github.com/npm/wrappy (wrappy). This software contains the following license and notice below: -ISC License +The ISC License -Copyright (c) 2017, Jakob Krigovsky +Copyright (c) Isaac Z. Schlueter and Contributors Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above @@ -424,16 +620,50 @@ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- -The following software may be included in this product: css-to-react-native. A copy of the source code may be downloaded from git+https://github.com/styled-components/css-to-react-native.git. This software contains the following license and notice below: +The following software may be included in this product: boom. A copy of the source code may be downloaded from git://github.com/hapijs/boom. This software contains the following license and notice below: + +Copyright (c) 2012-2017, Project contributors. +Copyright (c) 2012-2014, Walmart. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * The names of any contributors may not be used to endorse or promote + products derived from this software without specific prior written + permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY +DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + * * * + +The complete list of contributors can be found at: https://github.com/hapijs/boom/graphs/contributors + +----- + +The following software may be included in this product: brace-expansion. A copy of the source code may be downloaded from git://github.com/juliangruber/brace-expansion.git. This software contains the following license and notice below: MIT License -Copyright (c) 2016 Jacob Parker and Maximilian Stoiber +Copyright (c) 2013 Julian Gruber Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -455,612 +685,1110 @@ SOFTWARE. ----- -The following software may be included in this product: cypher-codemirror, cypher-editor-support. A copy of the source code may be downloaded from git://github.com/neo4j-contrib/cypher-editor.git (cypher-codemirror), git://github.com/neo4j-contrib/cypher-editor.git (cypher-editor-support). This software contains the following license and notice below: +The following software may be included in this product: buffer. A copy of the source code may be downloaded from git://github.com/feross/buffer.git. This software contains the following license and notice below: -GNU GENERAL PUBLIC LICENSE - Version 3, 29 June 2007 +The MIT License (MIT) - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. +Copyright (c) Feross Aboukhadijeh, and other contributors. - Preamble +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: - The GNU General Public License is a free, copyleft license for -software and other kinds of works. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. - The licenses for most software and other practical works are designed -to take away your freedom to share and change the works. By contrast, -the GNU General Public License is intended to guarantee your freedom to -share and change all versions of a program--to make sure it remains free -software for all its users. We, the Free Software Foundation, use the -GNU General Public License for most of our software; it applies also to -any other work released this way by its authors. You can apply it to -your programs, too. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -them if you wish), that you receive source code or can get it if you -want it, that you can change the software or use pieces of it in new -free programs, and that you know you can do these things. +----- - To protect your rights, we need to prevent others from denying you -these rights or asking you to surrender the rights. Therefore, you have -certain responsibilities if you distribute copies of the software, or if -you modify it: responsibilities to respect the freedom of others. +The following software may be included in this product: caseless. A copy of the source code may be downloaded from https://github.com/mikeal/caseless. This software contains the following license and notice below: - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must pass on to the recipients the same -freedoms that you received. You must make sure that they, too, receive -or can get the source code. And you must show them these terms so they -know their rights. +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION +1. Definitions. +"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. +"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. +"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. +"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. +"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. +"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. +"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). +"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. +"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. +2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. +3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. +4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: +You must give any other recipients of the Work or Derivative Works a copy of this License; and +You must cause any modified files to carry prominent notices stating that You changed the files; and +You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and +If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. +5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. +6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. +7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. +8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. +9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. +END OF TERMS AND CONDITIONS - Developers that use the GNU GPL protect your rights with two steps: -(1) assert copyright on the software, and (2) offer you this License -giving you legal permission to copy, distribute and/or modify it. +----- - For the developers' and authors' protection, the GPL clearly explains -that there is no warranty for this free software. For both users' and -authors' sake, the GPL requires that modified versions be marked as -changed, so that their problems will not be attributed erroneously to -authors of previous versions. +The following software may be included in this product: chai. A copy of the source code may be downloaded from https://github.com/chaijs/chai. This software contains the following license and notice below: - Some devices are designed to deny users access to install or run -modified versions of the software inside them, although the manufacturer -can do so. This is fundamentally incompatible with the aim of -protecting users' freedom to change the software. The systematic -pattern of such abuse occurs in the area of products for individuals to -use, which is precisely where it is most unacceptable. Therefore, we -have designed this version of the GPL to prohibit the practice for those -products. If such problems arise substantially in other domains, we -stand ready to extend this provision to those domains in future versions -of the GPL, as needed to protect the freedom of users. +MIT License - Finally, every program is threatened constantly by software patents. -States should not allow patents to restrict development and use of -software on general-purpose computers, but in those that do, we wish to -avoid the special danger that patents applied to a free program could -make it effectively proprietary. To prevent this, the GPL assures that -patents cannot be used to render the program non-free. +Copyright (c) 2017 Chai.js Assertion Library - The precise terms and conditions for copying, distribution and -modification follow. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: - TERMS AND CONDITIONS +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. - 0. Definitions. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. - "This License" refers to version 3 of the GNU General Public License. +----- - "Copyright" also means copyright-like laws that apply to other kinds of -works, such as semiconductor masks. +The following software may be included in this product: check-error, deep-eql, get-func-name, type-detect. A copy of the source code may be downloaded from git+ssh://git@github.com/chaijs/check-error.git (check-error), git@github.com:chaijs/deep-eql.git (deep-eql), git+ssh://git@github.com/chaijs/get-func-name.git (get-func-name), git+ssh://git@github.com/chaijs/type-detect.git (type-detect). This software contains the following license and notice below: - "The Program" refers to any copyrightable work licensed under this -License. Each licensee is addressed as "you". "Licensees" and -"recipients" may be individuals or organizations. +Copyright (c) 2013 Jake Luer (http://alogicalparadox.com) - To "modify" a work means to copy from or adapt all or part of the work -in a fashion requiring copyright permission, other than the making of an -exact copy. The resulting work is called a "modified version" of the -earlier work or a work "based on" the earlier work. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: - A "covered work" means either the unmodified Program or a work based -on the Program. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. - To "propagate" a work means to do anything with it that, without -permission, would make you directly or secondarily liable for -infringement under applicable copyright law, except executing it on a -computer or modifying a private copy. Propagation includes copying, -distribution (with or without modification), making available to the -public, and in some countries other activities as well. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. - To "convey" a work means any kind of propagation that enables other -parties to make or receive copies. Mere interaction with a user through -a computer network, with no transfer of a copy, is not conveying. +----- - An interactive user interface displays "Appropriate Legal Notices" -to the extent that it includes a convenient and prominently visible -feature that (1) displays an appropriate copyright notice, and (2) -tells the user that there is no warranty for the work (except to the -extent that warranties are provided), that licensees may convey the -work under this License, and how to view a copy of this License. If -the interface presents a list of user commands or options, such as a -menu, a prominent item in the list meets this criterion. +The following software may be included in this product: ci-info. A copy of the source code may be downloaded from https://github.com/watson/ci-info.git. This software contains the following license and notice below: - 1. Source Code. +The MIT License (MIT) - The "source code" for a work means the preferred form of the work -for making modifications to it. "Object code" means any non-source -form of a work. +Copyright (c) 2016-2017 Thomas Watson Steen - A "Standard Interface" means an interface that either is an official -standard defined by a recognized standards body, or, in the case of -interfaces specified for a particular programming language, one that -is widely used among developers working in that language. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: - The "System Libraries" of an executable work include anything, other -than the work as a whole, that (a) is included in the normal form of -packaging a Major Component, but which is not part of that Major -Component, and (b) serves only to enable use of the work with that -Major Component, or to implement a Standard Interface for which an -implementation is available to the public in source code form. A -"Major Component", in this context, means a major essential component -(kernel, window system, and so on) of the specific operating system -(if any) on which the executable work runs, or a compiler used to -produce the work, or an object code interpreter used to run it. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. - The "Corresponding Source" for a work in object code form means all -the source code needed to generate, install, and (for an executable -work) run the object code and to modify the work, including scripts to -control those activities. However, it does not include the work's -System Libraries, or general-purpose tools or generally available free -programs which are used unmodified in performing those activities but -which are not part of the work. For example, Corresponding Source -includes interface definition files associated with source files for -the work, and the source code for shared libraries and dynamically -linked subprograms that the work is specifically designed to require, -such as by intimate data communication or control flow between those -subprograms and other parts of the work. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. - The Corresponding Source need not include anything that users -can regenerate automatically from other parts of the Corresponding -Source. +----- - The Corresponding Source for a work in source code form is that -same work. +The following software may be included in this product: classnames. A copy of the source code may be downloaded from https://github.com/JedWatson/classnames.git. This software contains the following license and notice below: - 2. Basic Permissions. +The MIT License (MIT) - All rights granted under this License are granted for the term of -copyright on the Program, and are irrevocable provided the stated -conditions are met. This License explicitly affirms your unlimited -permission to run the unmodified Program. The output from running a -covered work is covered by this License only if the output, given its -content, constitutes a covered work. This License acknowledges your -rights of fair use or other equivalent, as provided by copyright law. +Copyright (c) 2016 Jed Watson - You may make, run and propagate covered works that you do not -convey, without conditions so long as your license otherwise remains -in force. You may convey covered works to others for the sole purpose -of having them make modifications exclusively for you, or provide you -with facilities for running those works, provided that you comply with -the terms of this License in conveying all material for which you do -not control copyright. Those thus making or running the covered works -for you must do so exclusively on your behalf, under your direction -and control, on terms that prohibit them from making any copies of -your copyrighted material outside their relationship with you. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: - Conveying under any other circumstances is permitted solely under -the conditions stated below. Sublicensing is not allowed; section 10 -makes it unnecessary. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. - 3. Protecting Users' Legal Rights From Anti-Circumvention Law. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. - No covered work shall be deemed part of an effective technological -measure under any applicable law fulfilling obligations under article -11 of the WIPO copyright treaty adopted on 20 December 1996, or -similar laws prohibiting or restricting circumvention of such -measures. +----- - When you convey a covered work, you waive any legal power to forbid -circumvention of technological measures to the extent such circumvention -is effected by exercising rights under this License with respect to -the covered work, and you disclaim any intention to limit operation or -modification of the work as a means of enforcing, against the work's -users, your or third parties' legal rights to forbid circumvention of -technological measures. +The following software may be included in this product: cliui. A copy of the source code may be downloaded from http://github.com/yargs/cliui.git. This software contains the following license and notice below: - 4. Conveying Verbatim Copies. +Copyright (c) 2015, Contributors - You may convey verbatim copies of the Program's source code as you -receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice; -keep intact all notices stating that this License and any -non-permissive terms added in accord with section 7 apply to the code; -keep intact all notices of the absence of any warranty; and give all -recipients a copy of this License along with the Program. - - You may charge any price or no price for each copy that you convey, -and you may offer support or warranty protection for a fee. +Permission to use, copy, modify, and/or distribute this software +for any purpose with or without fee is hereby granted, provided +that the above copyright notice and this permission notice +appear in all copies. - 5. Conveying Modified Source Versions. +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES +OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE +LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES +OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, +WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, +ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - You may convey a work based on the Program, or the modifications to -produce it from the Program, in the form of source code under the -terms of section 4, provided that you also meet all of these conditions: +----- - a) The work must carry prominent notices stating that you modified - it, and giving a relevant date. +The following software may be included in this product: co. A copy of the source code may be downloaded from https://github.com/tj/co.git. This software contains the following license and notice below: - b) The work must carry prominent notices stating that it is - released under this License and any conditions added under section - 7. This requirement modifies the requirement in section 4 to - "keep intact all notices". +(The MIT License) - c) You must license the entire work, as a whole, under this - License to anyone who comes into possession of a copy. This - License will therefore apply, along with any applicable section 7 - additional terms, to the whole of the work, and all its parts, - regardless of how they are packaged. This License gives no - permission to license the work in any other way, but it does not - invalidate such permission if you have separately received it. +Copyright (c) 2014 TJ Holowaychuk <tj@vision-media.ca> - d) If the work has interactive user interfaces, each must display - Appropriate Legal Notices; however, if the Program has interactive - interfaces that do not display Appropriate Legal Notices, your - work need not make them do so. +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +'Software'), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: - A compilation of a covered work with other separate and independent -works, which are not by their nature extensions of the covered work, -and which are not combined with it such as to form a larger program, -in or on a volume of a storage or distribution medium, is called an -"aggregate" if the compilation and its resulting copyright are not -used to limit the access or legal rights of the compilation's users -beyond what the individual works permit. Inclusion of a covered work -in an aggregate does not cause this License to apply to the other -parts of the aggregate. +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. - 6. Conveying Non-Source Forms. +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - You may convey a covered work in object code form under the terms -of sections 4 and 5, provided that you also convey the -machine-readable Corresponding Source under the terms of this License, -in one of these ways: +----- - a) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by the - Corresponding Source fixed on a durable physical medium - customarily used for software interchange. +The following software may be included in this product: codemirror. A copy of the source code may be downloaded from https://github.com/codemirror/CodeMirror.git. This software contains the following license and notice below: - b) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by a - written offer, valid for at least three years and valid for as - long as you offer spare parts or customer support for that product - model, to give anyone who possesses the object code either (1) a - copy of the Corresponding Source for all the software in the - product that is covered by this License, on a durable physical - medium customarily used for software interchange, for a price no - more than your reasonable cost of physically performing this - conveying of source, or (2) access to copy the - Corresponding Source from a network server at no charge. +MIT License - c) Convey individual copies of the object code with a copy of the - written offer to provide the Corresponding Source. This - alternative is allowed only occasionally and noncommercially, and - only if you received the object code with such an offer, in accord - with subsection 6b. +Copyright (C) 2017 by Marijn Haverbeke and others - d) Convey the object code by offering access from a designated - place (gratis or for a charge), and offer equivalent access to the - Corresponding Source in the same way through the same place at no - further charge. You need not require recipients to copy the - Corresponding Source along with the object code. If the place to - copy the object code is a network server, the Corresponding Source - may be on a different server (operated by you or a third party) - that supports equivalent copying facilities, provided you maintain - clear directions next to the object code saying where to find the - Corresponding Source. Regardless of what server hosts the - Corresponding Source, you remain obligated to ensure that it is - available for as long as needed to satisfy these requirements. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: - e) Convey the object code using peer-to-peer transmission, provided - you inform other peers where the object code and Corresponding - Source of the work are being offered to the general public at no - charge under subsection 6d. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. - A separable portion of the object code, whose source code is excluded -from the Corresponding Source as a System Library, need not be -included in conveying the object code work. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. - A "User Product" is either (1) a "consumer product", which means any -tangible personal property which is normally used for personal, family, -or household purposes, or (2) anything designed or sold for incorporation -into a dwelling. In determining whether a product is a consumer product, -doubtful cases shall be resolved in favor of coverage. For a particular -product received by a particular user, "normally used" refers to a -typical or common use of that class of product, regardless of the status -of the particular user or of the way in which the particular user -actually uses, or expects or is expected to use, the product. A product -is a consumer product regardless of whether the product has substantial -commercial, industrial or non-consumer uses, unless such uses represent -the only significant mode of use of the product. +----- - "Installation Information" for a User Product means any methods, -procedures, authorization keys, or other information required to install -and execute modified versions of a covered work in that User Product from -a modified version of its Corresponding Source. The information must -suffice to ensure that the continued functioning of the modified object -code is in no case prevented or interfered with solely because -modification has been made. +The following software may be included in this product: colour. A copy of the source code may be downloaded from https://github.com/dcodeIO/colour.js.git. This software contains the following license and notice below: - If you convey an object code work under this section in, or with, or -specifically for use in, a User Product, and the conveying occurs as -part of a transaction in which the right of possession and use of the -User Product is transferred to the recipient in perpetuity or for a -fixed term (regardless of how the transaction is characterized), the -Corresponding Source conveyed under this section must be accompanied -by the Installation Information. But this requirement does not apply -if neither you nor any third party retains the ability to install -modified object code on the User Product (for example, the work has -been installed in ROM). +Copyright (c) 2010 Marak Squires, Alexis Sellier (cloudhead) +Copyright (c) 2013 Daniel Wirtz - The requirement to provide Installation Information does not include a -requirement to continue to provide support service, warranty, or updates -for a work that has been modified or installed by the recipient, or for -the User Product in which it has been modified or installed. Access to a -network may be denied when the modification itself materially and -adversely affects the operation of the network or violates the rules and -protocols for communication across the network. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: - Corresponding Source conveyed, and Installation Information provided, -in accord with this section must be in a format that is publicly -documented (and with an implementation available to the public in -source code form), and must require no special password or key for -unpacking, reading or copying. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. - 7. Additional Terms. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. - "Additional permissions" are terms that supplement the terms of this -License by making exceptions from one or more of its conditions. -Additional permissions that are applicable to the entire Program shall -be treated as though they were included in this License, to the extent -that they are valid under applicable law. If additional permissions -apply only to part of the Program, that part may be used separately -under those permissions, but the entire Program remains governed by -this License without regard to the additional permissions. +----- - When you convey a copy of a covered work, you may at your option -remove any additional permissions from that copy, or from any part of -it. (Additional permissions may be written to require their own -removal in certain cases when you modify the work.) You may place -additional permissions on material, added by you to a covered work, -for which you have or can give appropriate copyright permission. +The following software may be included in this product: combined-stream, delayed-stream. A copy of the source code may be downloaded from git://github.com/felixge/node-combined-stream.git (combined-stream), git://github.com/felixge/node-delayed-stream.git (delayed-stream). This software contains the following license and notice below: - Notwithstanding any other provision of this License, for material you -add to a covered work, you may (if authorized by the copyright holders of -that material) supplement the terms of this License with terms: +Copyright (c) 2011 Debuggable Limited - a) Disclaiming warranty or limiting liability differently from the - terms of sections 15 and 16 of this License; or +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: - b) Requiring preservation of specified reasonable legal notices or - author attributions in that material or in the Appropriate Legal - Notices displayed by works containing it; or +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. - c) Prohibiting misrepresentation of the origin of that material, or - requiring that modified versions of such material be marked in - reasonable ways as different from the original version; or +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. - d) Limiting the use for publicity purposes of names of licensors or - authors of the material; or +----- - e) Declining to grant rights under trademark law for use of some - trade names, trademarks, or service marks; or +The following software may be included in this product: concat-map, is-typedarray, json-stable-stringify, minimist. A copy of the source code may be downloaded from git://github.com/substack/node-concat-map.git (concat-map), git://github.com/hughsk/is-typedarray.git (is-typedarray), git://github.com/substack/json-stable-stringify.git (json-stable-stringify), git://github.com/substack/minimist.git (minimist). This software contains the following license and notice below: - f) Requiring indemnification of licensors and authors of that - material by anyone who conveys the material (or modified versions of - it) with contractual assumptions of liability to the recipient, for - any liability that these contractual assumptions directly impose on - those licensors and authors. +This software is released under the MIT license: - All other non-permissive additional terms are considered "further -restrictions" within the meaning of section 10. If the Program as you -received it, or any part of it, contains a notice stating that it is -governed by this License along with a term that is a further -restriction, you may remove that term. If a license document contains -a further restriction but permits relicensing or conveying under this -License, you may add to a covered work material governed by the terms -of that license document, provided that the further restriction does -not survive such relicensing or conveying. +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: - If you add terms to a covered work in accord with this section, you -must place, in the relevant source files, a statement of the -additional terms that apply to those files, or a notice indicating -where to find the applicable terms. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. - Additional terms, permissive or non-permissive, may be stated in the -form of a separately written license, or stated as exceptions; -the above requirements apply either way. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - 8. Termination. +----- - You may not propagate or modify a covered work except as expressly -provided under this License. Any attempt otherwise to propagate or -modify it is void, and will automatically terminate your rights under -this License (including any patent licenses granted under the third -paragraph of section 11). +The following software may be included in this product: console-control-strings, gauge. A copy of the source code may be downloaded from https://github.com/iarna/console-control-strings (console-control-strings), https://github.com/iarna/gauge (gauge). This software contains the following license and notice below: - However, if you cease all violation of this License, then your -license from a particular copyright holder is reinstated (a) -provisionally, unless and until the copyright holder explicitly and -finally terminates your license, and (b) permanently, if the copyright -holder fails to notify you of the violation by some reasonable means -prior to 60 days after the cessation. +Copyright (c) 2014, Rebecca Turner - Moreover, your license from a particular copyright holder is -reinstated permanently if the copyright holder notifies you of the -violation by some reasonable means, this is the first time you have -received notice of violation of this License (for any work) from that -copyright holder, and you cure the violation prior to 30 days after -your receipt of the notice. +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. - Termination of your rights under this section does not terminate the -licenses of parties who have received copies or rights from you under -this License. If your rights have been terminated and not permanently -reinstated, you do not qualify to receive new licenses for the same -material under section 10. +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - 9. Acceptance Not Required for Having Copies. +----- - You are not required to accept this License in order to receive or -run a copy of the Program. Ancillary propagation of a covered work -occurring solely as a consequence of using peer-to-peer transmission -to receive a copy likewise does not require acceptance. However, -nothing other than this License grants you permission to propagate or -modify any covered work. These actions infringe copyright if you do -not accept this License. Therefore, by modifying or propagating a -covered work, you indicate your acceptance of this License to do so. +The following software may be included in this product: core-js. A copy of the source code may be downloaded from https://github.com/zloirock/core-js.git. This software contains the following license and notice below: - 10. Automatic Licensing of Downstream Recipients. +Copyright (c) 2014-2018 Denis Pushkarev - Each time you convey a covered work, the recipient automatically -receives a license from the original licensors, to run, modify and -propagate that work, subject to this License. You are not responsible -for enforcing compliance by third parties with this License. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: - An "entity transaction" is a transaction transferring control of an -organization, or substantially all assets of one, or subdividing an -organization, or merging organizations. If propagation of a covered -work results from an entity transaction, each party to that -transaction who receives a copy of the work also receives whatever -licenses to the work the party's predecessor in interest had or could -give under the previous paragraph, plus a right to possession of the -Corresponding Source of the work from the predecessor in interest, if -the predecessor has it or can get it with reasonable efforts. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. - You may not impose any further restrictions on the exercise of the -rights granted or affirmed under this License. For example, you may -not impose a license fee, royalty, or other charge for exercise of -rights granted under this License, and you may not initiate litigation -(including a cross-claim or counterclaim in a lawsuit) alleging that -any patent claim is infringed by making, using, selling, offering for -sale, or importing the Program or any portion of it. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. - 11. Patents. +----- - A "contributor" is a copyright holder who authorizes use under this -License of the Program or a work on which the Program is based. The -work thus licensed is called the contributor's "contributor version". +The following software may be included in this product: core-js. A copy of the source code may be downloaded from https://github.com/zloirock/core-js.git. This software contains the following license and notice below: - A contributor's "essential patent claims" are all patent claims -owned or controlled by the contributor, whether already acquired or -hereafter acquired, that would be infringed by some manner, permitted -by this License, of making, using, or selling its contributor version, -but do not include claims that would be infringed only as a -consequence of further modification of the contributor version. For -purposes of this definition, "control" includes the right to grant -patent sublicenses in a manner consistent with the requirements of -this License. +Copyright (c) 2015 Denis Pushkarev - Each contributor grants you a non-exclusive, worldwide, royalty-free -patent license under the contributor's essential patent claims, to -make, use, sell, offer for sale, import and otherwise run, modify and -propagate the contents of its contributor version. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: - In the following three paragraphs, a "patent license" is any express -agreement or commitment, however denominated, not to enforce a patent -(such as an express permission to practice a patent or covenant not to -sue for patent infringement). To "grant" such a patent license to a -party means to make such an agreement or commitment not to enforce a -patent against the party. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. - If you convey a covered work, knowingly relying on a patent license, -and the Corresponding Source of the work is not available for anyone -to copy, free of charge and under the terms of this License, through a -publicly available network server or other readily accessible means, -then you must either (1) cause the Corresponding Source to be so -available, or (2) arrange to deprive yourself of the benefit of the -patent license for this particular work, or (3) arrange, in a manner -consistent with the requirements of this License, to extend the patent -license to downstream recipients. "Knowingly relying" means you have -actual knowledge that, but for the patent license, your conveying the -covered work in a country, or your recipient's use of the covered work -in a country, would infringe one or more identifiable patents in that -country that you have reason to believe are valid. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. - If, pursuant to or in connection with a single transaction or -arrangement, you convey, or propagate by procuring conveyance of, a -covered work, and grant a patent license to some of the parties -receiving the covered work authorizing them to use, propagate, modify -or convey a specific copy of the covered work, then the patent license -you grant is automatically extended to all recipients of the covered -work and works based on it. +----- - A patent license is "discriminatory" if it does not include within -the scope of its coverage, prohibits the exercise of, or is -conditioned on the non-exercise of one or more of the rights that are -specifically granted under this License. You may not convey a covered -work if you are a party to an arrangement with a third party that is -in the business of distributing software, under which you make payment -to the third party based on the extent of your activity of conveying -the work, and under which the third party grants, to any of the -parties who would receive the covered work from you, a discriminatory -patent license (a) in connection with copies of the covered work -conveyed by you (or copies made from those copies), or (b) primarily -for and in connection with specific products or compilations that -contain the covered work, unless you entered into that arrangement, -or that patent license was granted, prior to 28 March 2007. +The following software may be included in this product: core-js. A copy of the source code may be downloaded from https://github.com/zloirock/core-js.git. This software contains the following license and notice below: - Nothing in this License shall be construed as excluding or limiting -any implied license or other defenses to infringement that may -otherwise be available to you under applicable patent law. +Copyright (c) 2014-2017 Denis Pushkarev - 12. No Surrender of Others' Freedom. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: - If conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot convey a -covered work so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you may -not convey it at all. For example, if you agree to terms that obligate you -to collect a royalty for further conveying from those to whom you convey -the Program, the only way you could satisfy both those terms and this -License would be to refrain entirely from conveying the Program. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. - 13. Use with the GNU Affero General Public License. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. - Notwithstanding any other provision of this License, you have -permission to link or combine any covered work with a work licensed -under version 3 of the GNU Affero General Public License into a single -combined work, and to convey the resulting work. The terms of this -License will continue to apply to the part which is the covered work, -but the special requirements of the GNU Affero General Public License, -section 13, concerning interaction through a network will apply to the -combination as such. +----- - 14. Revised Versions of this License. +The following software may be included in this product: core-util-is. A copy of the source code may be downloaded from git://github.com/isaacs/core-util-is. This software contains the following license and notice below: - The Free Software Foundation may publish revised and/or new versions of -the GNU General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. +Copyright Node.js contributors. All rights reserved. - Each version is given a distinguishing version number. If the -Program specifies that a certain numbered version of the GNU General -Public License "or any later version" applies to it, you have the -option of following the terms and conditions either of that numbered -version or of any later version published by the Free Software -Foundation. If the Program does not specify a version number of the -GNU General Public License, you may choose any version ever published -by the Free Software Foundation. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to +deal in the Software without restriction, including without limitation the +rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +sell copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: - If the Program specifies that a proxy can decide which future -versions of the GNU General Public License can be used, that proxy's -public statement of acceptance of a version permanently authorizes you -to choose that version for the Program. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. - Later license versions may give you additional or different -permissions. However, no additional obligations are imposed on any -author or copyright holder as a result of your choosing to follow a -later version. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +IN THE SOFTWARE. - 15. Disclaimer of Warranty. +----- - THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY -APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT -HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY -OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM -IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF -ALL NECESSARY SERVICING, REPAIR OR CORRECTION. +The following software may be included in this product: cryptiles. A copy of the source code may be downloaded from git://github.com/hapijs/cryptiles. This software contains the following license and notice below: - 16. Limitation of Liability. +Copyright (c) 2014-2017, Eran Hammer and Project contributors +All rights reserved. - IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS -THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * The names of any contributors may not be used to endorse or promote + products derived from this software without specific prior written + permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY +DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + * * * + +The complete list of contributors can be found at: https://github.com/hueniverse/cryptiles/graphs/contributors + +----- + +The following software may be included in this product: css-color-keywords. A copy of the source code may be downloaded from https://github.com/sonicdoe/css-color-keywords.git. This software contains the following license and notice below: + +ISC License + +Copyright (c) 2017, Jakob Krigovsky + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +----- + +The following software may be included in this product: css-to-react-native. A copy of the source code may be downloaded from git+https://github.com/styled-components/css-to-react-native.git. This software contains the following license and notice below: + +MIT License + +Copyright (c) 2016 Jacob Parker and Maximilian Stoiber + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +----- + +The following software may be included in this product: cypher-codemirror, cypher-editor-support. A copy of the source code may be downloaded from git://github.com/neo4j-contrib/cypher-editor.git (cypher-codemirror), git://github.com/neo4j-contrib/cypher-editor.git (cypher-editor-support). This software contains the following license and notice below: + +GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD @@ -1068,69 +1796,376 @@ PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - 17. Interpretation of Sections 15 and 16. + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + {one line to give the program's name and a brief idea of what it does.} + Copyright (C) {year} {name of author} + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + {project} Copyright (C) {year} {fullname} + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. + +----- + +The following software may be included in this product: dashdash. A copy of the source code may be downloaded from git://github.com/trentm/node-dashdash.git. This software contains the following license and notice below: + +# This is the MIT license + +Copyright (c) 2013 Trent Mick. All rights reserved. +Copyright (c) 2013 Joyent Inc. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. - If the disclaimer of warranty and limitation of liability provided -above cannot be given local legal effect according to their terms, -reviewing courts shall apply local law that most closely approximates -an absolute waiver of all civil liability in connection with the -Program, unless a warranty or assumption of liability accompanies a -copy of the Program in return for a fee. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - END OF TERMS AND CONDITIONS +----- - How to Apply These Terms to Your New Programs +The following software may be included in this product: debug. A copy of the source code may be downloaded from git://github.com/visionmedia/debug.git. This software contains the following license and notice below: - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. +(The MIT License) - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -state the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. +Copyright (c) 2014 TJ Holowaychuk - {one line to give the program's name and a brief idea of what it does.} - Copyright (C) {year} {name of author} +Permission is hereby granted, free of charge, to any person obtaining a copy of this software +and associated documentation files (the 'Software'), to deal in the Software without restriction, +including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. +The above copyright notice and this permission notice shall be included in all copies or substantial +portions of the Software. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT +LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +----- + +The following software may be included in this product: deep-extend. A copy of the source code may be downloaded from git://github.com/unclechu/node-deep-extend.git. This software contains the following license and notice below: + +The MIT License (MIT) + +Copyright (c) 2013-2018, Viacheslav Lotsmanov + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +----- + +The following software may be included in this product: delegates. A copy of the source code may be downloaded from https://github.com/visionmedia/node-delegates.git. This software contains the following license and notice below: + +Copyright (c) 2015 TJ Holowaychuk + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +----- + +The following software may be included in this product: detect-libc. A copy of the source code may be downloaded from git://github.com/lovell/detect-libc. This software contains the following license and notice below: + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. - You should have received a copy of the GNU General Public License - along with this program. If not, see . + END OF TERMS AND CONDITIONS -Also add information on how to contact you by electronic and paper mail. + APPENDIX: How to apply the Apache License to your work. - If the program does terminal interaction, make it output a short -notice like this when it starts in an interactive mode: + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. - {project} Copyright (C) {year} {fullname} - This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. + Copyright {yyyy} {name of copyright owner} -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, your program's commands -might be different; for a GUI interface, you would use an "about box". + 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 - You should also get your employer (if you work as a programmer) or school, -if any, to sign a "copyright disclaimer" for the program, if necessary. -For more information on this, and how to apply and follow the GNU GPL, see -. + http://www.apache.org/licenses/LICENSE-2.0 - The GNU General Public License does not permit incorporating your program -into proprietary programs. If your program is a subroutine library, you -may consider it more useful to permit linking proprietary applications with -the library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. But first, please read -. + 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. ----- @@ -1180,7 +2215,7 @@ SOFTWARE. ----- -The following software may be included in this product: dom-storage. A copy of the source code may be downloaded from git://github.com/coolaj86/node-dom-storage.git. This software contains the following license and notice below: +The following software may be included in this product: dom-storage. A copy of the source code may be downloaded from git://git.coolaj86.com/coolaj86/dom-storage.js.git. This software contains the following license and notice below: Apache License Version 2.0, January 2004 @@ -1376,215 +2411,83 @@ third-party archives. ----- -The following software may be included in this product: ecdsa-sig-formatter. A copy of the source code may be downloaded from git+ssh://git@github.com/Brightspace/node-ecdsa-sig-formatter.git. This software contains the following license and notice below: - -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: +The following software may be included in this product: ecc-jsbn. A copy of the source code may be downloaded from https://github.com/quartzjer/ecc-jsbn.git. This software contains the following license and notice below: - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and +The MIT License (MIT) - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and +Copyright (c) 2014 Jeremie Miller - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. +----- - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. +The following software may be included in this product: encoding. A copy of the source code may be downloaded from https://github.com/andris9/encoding.git. This software contains the following license and notice below: - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. +Copyright (c) 2012-2014 Andris Reinman - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. - END OF TERMS AND CONDITIONS +----- - APPENDIX: How to apply the Apache License to your work. +The following software may be included in this product: extend. A copy of the source code may be downloaded from https://github.com/justmoon/node-extend.git. This software contains the following license and notice below: - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. +The MIT License (MIT) - Copyright 2015 D2L Corporation +Copyright (c) 2014 Stefan Thomas - 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 +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: - http://www.apache.org/licenses/LICENSE-2.0 +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. - 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. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- -The following software may be included in this product: encoding. A copy of the source code may be downloaded from https://github.com/andris9/encoding.git. This software contains the following license and notice below: +The following software may be included in this product: extsprintf, jsprim. A copy of the source code may be downloaded from git://github.com/davepacheco/node-extsprintf.git (extsprintf), git://github.com/joyent/node-jsprim.git (jsprim). This software contains the following license and notice below: -Copyright (c) 2012-2014 Andris Reinman +Copyright (c) 2012, Joyent, Inc. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -1593,21 +2496,24 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE ----- -The following software may be included in this product: external-editor. A copy of the source code may be downloaded from git+https://github.com/mrkmg/node-external-editor.git. This software contains the following license and notice below: +The following software may be included in this product: fast-deep-equal, json-schema-traverse. A copy of the source code may be downloaded from git+https://github.com/epoberezkin/fast-deep-equal.git (fast-deep-equal), git+https://github.com/epoberezkin/json-schema-traverse.git (json-schema-traverse). This software contains the following license and notice below: -The MIT License (MIT) +MIT License -Copyright (c) 2016 Kevin Gravier +Copyright (c) 2017 Evgeny Poberezkin Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -1654,7 +2560,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- -The following software may be included in this product: file-saver. A copy of the source code may be downloaded from https://github.com/eligrey/FileSaver.js. This software contains the following license and notice below: +The following software may be included in this product: file-saver. A copy of the source code may be downloaded from git+https://github.com/eligrey/FileSaver.js.git. This software contains the following license and notice below: The MIT License @@ -1670,241 +2576,220 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI ----- -The following software may be included in this product: firebase. A copy of the source code may be downloaded from https://github.com/firebase/firebase-js-sdk.git. This software contains the following license and notice below: +The following software may be included in this product: form-data. A copy of the source code may be downloaded from git://github.com/form-data/form-data.git. This software contains the following license and notice below: -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ +Copyright (c) 2012 Felix Geisendörfer (felix@debuggable.com) and contributors - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: - 1. Definitions. + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. +----- - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. +The following software may be included in this product: fs.realpath. A copy of the source code may be downloaded from git+https://github.com/isaacs/fs.realpath.git. This software contains the following license and notice below: - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. +The ISC License - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. +Copyright (c) Isaac Z. Schlueter and Contributors - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. +---- - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." +This library bundles a version of the `fs.realpath` and `fs.realpathSync` +methods from Node.js v0.10 under the terms of the Node.js MIT license. - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. +Node's license follows, also included at the header of `old.js` which contains +the licensed code: - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. + Copyright Joyent, Inc. and other Node contributors. - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the "Software"), + to deal in the Software without restriction, including without limitation + the rights to use, copy, modify, merge, publish, distribute, sublicense, + and/or sell copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following conditions: - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + DEALINGS IN THE SOFTWARE. - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and +----- - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and +The following software may be included in this product: fuzzaldrin. A copy of the source code may be downloaded from https://github.com/atom/fuzzaldrin.git. This software contains the following license and notice below: - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. +Copyright (c) 2009-2011 Joshaven Potter +Copyright (c) 2013 GitHub Inc. - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. +----- - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. +The following software may be included in this product: getpass, http-signature, sshpk. A copy of the source code may be downloaded from https://github.com/arekinath/node-getpass.git (getpass), git://github.com/joyent/node-http-signature.git (http-signature), git+https://github.com/arekinath/node-sshpk.git (sshpk). This software contains the following license and notice below: - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. +Copyright Joyent, Inc. All rights reserved. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to +deal in the Software without restriction, including without limitation the +rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +sell copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +IN THE SOFTWARE. + +----- + +The following software may be included in this product: graceful-fs. A copy of the source code may be downloaded from https://github.com/isaacs/node-graceful-fs. This software contains the following license and notice below: + +The ISC License + +Copyright (c) Isaac Z. Schlueter, Ben Noordhuis, and Contributors + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - END OF TERMS AND CONDITIONS +----- - APPENDIX: How to apply the Apache License to your work. +The following software may be included in this product: har-schema, har-validator. A copy of the source code may be downloaded from https://github.com/ahmadnassri/har-schema.git (har-schema), https://github.com/ahmadnassri/har-validator.git (har-validator). This software contains the following license and notice below: - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. +Copyright (c) 2015, Ahmad Nassri - Copyright [yyyy] [name of copyright owner] +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. - 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 +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - 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. +The following software may be included in this product: has-unicode. A copy of the source code may be downloaded from https://github.com/iarna/has-unicode. This software contains the following license and notice below: + +Copyright (c) 2014, Rebecca Turner + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----- -The following software may be included in this product: fuzzaldrin. A copy of the source code may be downloaded from https://github.com/atom/fuzzaldrin.git. This software contains the following license and notice below: +The following software may be included in this product: hawk. A copy of the source code may be downloaded from git://github.com/hueniverse/hawk. This software contains the following license and notice below: -Copyright (c) 2009-2011 Joshaven Potter -Copyright (c) 2013 GitHub Inc. +Copyright (c) 2012-2017, Eran Hammer and Project contributors +All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * The names of any contributors may not be used to endorse or promote + products derived from this software without specific prior written + permission. -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY +DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * * * + +The complete list of contributors can be found at: https://github.com/hueniverse/hawk/graphs/contributors ----- The following software may be included in this product: hoek. A copy of the source code may be downloaded from git://github.com/hapijs/hoek. This software contains the following license and notice below: -Copyright (c) 2011-2014, Walmart and other contributors. +Copyright (c) 2011-2016, Project contributors +Copyright (c) 2011-2014, Walmart Copyright (c) 2011, Yahoo Inc. All rights reserved. @@ -2170,33 +3055,47 @@ POSSIBILITY OF SUCH DAMAGE. ----- -The following software may be included in this product: immutability-helper. A copy of the source code may be downloaded from git+https://github.com/kolodny/immutability-helper.git. This software contains the following license and notice below: +The following software may be included in this product: inflight, uid-number. A copy of the source code may be downloaded from https://github.com/npm/inflight.git (inflight), git://github.com/isaacs/uid-number.git (uid-number). This software contains the following license and notice below: -MIT License +The ISC License -Copyright (c) 2017 Moshe Kolodny +Copyright (c) Isaac Z. Schlueter -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +----- + +The following software may be included in this product: inherits. A copy of the source code may be downloaded from git://github.com/isaacs/inherits. This software contains the following license and notice below: + +The ISC License + +Copyright (c) Isaac Z. Schlueter + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH +REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, +INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM +LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR +OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THIS SOFTWARE. ----- -The following software may be included in this product: invariant, prop-types, react-addons-pure-render-mixin. A copy of the source code may be downloaded from https://github.com/zertosh/invariant (invariant), https://github.com/facebook/prop-types.git (prop-types), https://github.com/facebook/react.git (react-addons-pure-render-mixin). This software contains the following license and notice below: +The following software may be included in this product: invariant, prop-types, react, react-addons-pure-render-mixin, react-dom, react-is. A copy of the source code may be downloaded from https://github.com/zertosh/invariant (invariant), https://github.com/facebook/prop-types.git (prop-types), https://github.com/facebook/react.git (react), https://github.com/facebook/react.git (react-addons-pure-render-mixin), https://github.com/facebook/react.git (react-dom), https://github.com/facebook/react.git (react-is). This software contains the following license and notice below: MIT License @@ -2222,38 +3121,6 @@ SOFTWARE. ----- -The following software may be included in this product: invariant. A copy of the source code may be downloaded from https://github.com/zertosh/invariant. This software contains the following license and notice below: - -Copyright (c) 2016, Andres Suarez -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -* Neither the name of invariant nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ------ - The following software may be included in this product: is-ci. A copy of the source code may be downloaded from https://github.com/watson/is-ci.git. This software contains the following license and notice below: The MIT License (MIT) @@ -2306,48 +3173,6 @@ THE SOFTWARE. ----- -The following software may be included in this product: is-promise. A copy of the source code may be downloaded from https://github.com/then/is-promise.git. This software contains the following license and notice below: - -Copyright (c) 2014 Forbes Lindesay - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - ------ - -The following software may be included in this product: isemail. A copy of the source code may be downloaded from https://github.com/hapijs/isemail.git. This software contains the following license and notice below: - -Copyright © 2008-2011, Dominic Sayers -Copyright © 2013-2014, GlobeSherpa -Copyright © 2014-2015, Eli Skeggs - -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - -- Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. -- Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -- Neither the name of Dominic Sayers nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ------ - The following software may be included in this product: isobject. A copy of the source code may be downloaded from https://github.com/jonschlinkert/isobject.git. This software contains the following license and notice below: The MIT License (MIT) @@ -2400,36 +3225,19 @@ SOFTWARE. ----- -The following software may be included in this product: joi. A copy of the source code may be downloaded from git://github.com/hapijs/joi. This software contains the following license and notice below: +The following software may be included in this product: isstream. A copy of the source code may be downloaded from https://github.com/rvagg/isstream.git. This software contains the following license and notice below: -Copyright (c) 2012-2014, Walmart and other contributors. -All rights reserved. +The MIT License (MIT) +===================== -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * The names of any contributors may not be used to endorse or promote - products derived from this software without specific prior written - permission. +Copyright (c) 2015 Rod Vagg +--------------------------- -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY -DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - * * * +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -The complete list of contributors can be found at: https://github.com/hapijs/joi/graphs/contributors +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- @@ -2459,76 +3267,73 @@ THE SOFTWARE. ----- -The following software may be included in this product: jsonic. A copy of the source code may be downloaded from git://github.com/rjrodger/jsonic.git. This software contains the following license and notice below: - -The MIT License (MIT) - -Copyright (c) 2013-2017 Richard Rodger - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - ------ - -The following software may be included in this product: jsonwebtoken. A copy of the source code may be downloaded from https://github.com/auth0/node-jsonwebtoken. This software contains the following license and notice below: - -The MIT License (MIT) - -Copyright (c) 2015 Auth0, Inc. (http://auth0.com) - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +The following software may be included in this product: jsbn. A copy of the source code may be downloaded from https://github.com/andyperlitch/jsbn.git. This software contains the following license and notice below: + +Licensing +--------- + +This software is covered under the following copyright: + +/* + * Copyright (c) 2003-2005 Tom Wu + * All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining + * a copy of this software and associated documentation files (the + * "Software"), to deal in the Software without restriction, including + * without limitation the rights to use, copy, modify, merge, publish, + * distribute, sublicense, and/or sell copies of the Software, and to + * permit persons to whom the Software is furnished to do so, subject to + * the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, + * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY + * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. + * + * IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL, + * INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER + * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF + * THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT + * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * + * In addition, the following condition applies: + * + * All redistributions must retain an intact copy of this copyright notice + * and disclaimer. + */ + +Address all questions regarding this license to: + + Tom Wu + tjw@cs.Stanford.EDU ----- -The following software may be included in this product: jwa, jws. A copy of the source code may be downloaded from git://github.com/brianloveswords/node-jwa.git (jwa), git://github.com/brianloveswords/node-jws.git (jws). This software contains the following license and notice below: +The following software may be included in this product: jsonic. A copy of the source code may be downloaded from git://github.com/rjrodger/jsonic.git. This software contains the following license and notice below: + +The MIT License (MIT) -Copyright (c) 2013 Brian J. Brennan +Copyright (c) 2013-2017 Richard Rodger -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the -Software, and to permit persons to whom the Software is furnished to do so, +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, -INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR -PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE -FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, -ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- @@ -2584,7 +3389,7 @@ terms above. ----- -The following software may be included in this product: lodash.debounce, lodash.once. A copy of the source code may be downloaded from https://github.com/lodash/lodash.git (lodash.debounce), https://github.com/lodash/lodash.git (lodash.once). This software contains the following license and notice below: +The following software may be included in this product: lodash.debounce. A copy of the source code may be downloaded from https://github.com/lodash/lodash.git. This software contains the following license and notice below: Copyright jQuery Foundation and other contributors @@ -2662,53 +3467,83 @@ THE SOFTWARE. ----- -The following software may be included in this product: minimist. A copy of the source code may be downloaded from git://github.com/substack/minimist.git. This software contains the following license and notice below: +The following software may be included in this product: mime-db. A copy of the source code may be downloaded from https://github.com/jshttp/mime-db.git. This software contains the following license and notice below: -This software is released under the MIT license: +The MIT License (MIT) -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: +Copyright (c) 2014 Jonathan Ong me@jongleberry.com -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. ----- -The following software may be included in this product: moment. A copy of the source code may be downloaded from https://github.com/moment/moment.git. This software contains the following license and notice below: +The following software may be included in this product: mime-types. A copy of the source code may be downloaded from https://github.com/jshttp/mime-types.git. This software contains the following license and notice below: -Copyright (c) JS Foundation and other contributors +(The MIT License) -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated documentation -files (the "Software"), to deal in the Software without -restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following -conditions: +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2015 Douglas Christopher Wilson + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +'Software'), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT -HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -OTHER DEALINGS IN THE SOFTWARE. +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +----- + +The following software may be included in this product: mkdirp, yargs. A copy of the source code may be downloaded from https://github.com/substack/node-mkdirp.git (mkdirp), http://github.com/bcoe/yargs.git (yargs). This software contains the following license and notice below: + +Copyright 2010 James Halliday (mail@substack.net) + +This project is free software released under the MIT/X11 license: + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. ----- @@ -2738,23 +3573,21 @@ SOFTWARE. ----- -The following software may be included in this product: mute-stream. A copy of the source code may be downloaded from git://github.com/isaacs/mute-stream. This software contains the following license and notice below: +The following software may be included in this product: nan. A copy of the source code may be downloaded from git://github.com/nodejs/nan.git. This software contains the following license and notice below: -The ISC License +The MIT License (MIT) +===================== -Copyright (c) Isaac Z. Schlueter and Contributors +Copyright (c) 2018 NAN contributors +----------------------------------- -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. +*NAN contributors listed at * -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- @@ -2990,55 +3823,35 @@ SOFTWARE. ----- -The following software may be included in this product: opencollective. A copy of the source code may be downloaded from git+https://github.com/opencollective/opencollective-cli.git. This software contains the following license and notice below: - -MIT License - -Copyright (c) 2017 Open Collective - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - ------ - -The following software may be included in this product: opn. A copy of the source code may be downloaded from https://github.com/sindresorhus/opn.git. This software contains the following license and notice below: - -The MIT License (MIT) +The following software may be included in this product: node-pre-gyp. A copy of the source code may be downloaded from git://github.com/mapbox/node-pre-gyp.git. This software contains the following license and notice below: -Copyright (c) Sindre Sorhus +Copyright (c), Mapbox -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +All rights reserved. -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + * Neither the name of node-pre-gyp nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR +CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- @@ -3063,29 +3876,15 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR TH ----- -The following software may be included in this product: pinkie, pinkie-promise. A copy of the source code may be downloaded from https://github.com/floatdrop/pinkie.git (pinkie), https://github.com/floatdrop/pinkie-promise.git (pinkie-promise). This software contains the following license and notice below: +The following software may be included in this product: performance-now. A copy of the source code may be downloaded from git://github.com/braveg1rl/performance-now.git. This software contains the following license and notice below: -The MIT License (MIT) - -Copyright (c) Vsevolod Strukchinsky (github.com/floatdrop) +Copyright (c) 2013 Braveg1rl -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- @@ -3116,101 +3915,27 @@ OTHER DEALINGS IN THE SOFTWARE. ----- -The following software may be included in this product: react. A copy of the source code may be downloaded from https://github.com/developit/react.git. This software contains the following license and notice below: - -The MIT License (MIT) - -Copyright (c) 2017 Jason Miller - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - ------ - -The following software may be included in this product: react-compat, react-redux. A copy of the source code may be downloaded from https://github.com/developit/react-compat.git (react-compat), git+https://github.com/developit/react-redux.git (react-redux). This software contains the following license and notice below: - -The MIT License (MIT) - -Copyright (c) 2016 Jason Miller - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - ------ - -The following software may be included in this product: react-render-to-string. A copy of the source code may be downloaded from https://github.com/developit/react-render-to-string.git. This software contains the following license and notice below: +The following software may be included in this product: process-nextick-args. A copy of the source code may be downloaded from https://github.com/calvinmetcalf/process-nextick-args.git. This software contains the following license and notice below: -The MIT License (MIT) - -Copyright (c) 2015 Jason Miller +# Copyright (c) 2015 Calvin Metcalf Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - ------ - -The following software may be included in this product: pretty-format. A copy of the source code may be downloaded from https://github.com/thejameskyle/pretty-format.git. This software contains the following license and notice below: - -## ISC License - -Copyright (c) 2016, James Kyle - -Permission to use, copy, modify, and/or distribute this software for any purpose -with or without fee is hereby granted, provided that the above copyright notice -and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH -REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, -INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS -OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF -THIS SOFTWARE. +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +**THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE.** ----- @@ -3238,7 +3963,7 @@ THE SOFTWARE. ----- -The following software may be included in this product: promise-polyfill. A copy of the source code may be downloaded from https://taylorhakes@github.com/taylorhakes/promise-polyfill.git. This software contains the following license and notice below: +The following software may be included in this product: promise-polyfill. A copy of the source code may be downloaded from https://github.com/taylorhakes/promise-polyfill.git. This software contains the following license and notice below: Copyright (c) 2014 Taylor Hakes Copyright (c) 2014 Forbes Lindesay @@ -3263,40 +3988,37 @@ THE SOFTWARE. ----- -The following software may be included in this product: prop-types. A copy of the source code may be downloaded from https://github.com/reactjs/prop-types.git. This software contains the following license and notice below: - -BSD License +The following software may be included in this product: qs. A copy of the source code may be downloaded from https://github.com/ljharb/qs.git. This software contains the following license and notice below: -For React software - -Copyright (c) 2013-present, Facebook, Inc. +Copyright (c) 2014 Nathan LaFreniere and other contributors. All rights reserved. -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - - * Neither the name Facebook nor the names of its contributors may be used to - endorse or promote products derived from this software without specific - prior written permission. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * The names of any contributors may not be used to endorse or promote + products derived from this software without specific prior written + permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY +DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * * * + +The complete list of contributors can be found at: https://github.com/hapijs/qs/graphs/contributors + ----- The following software may be included in this product: querystringify, requires-port, url-parse. A copy of the source code may be downloaded from https://github.com/unshiftio/querystringify (querystringify), https://github.com/unshiftio/requires-port (requires-port), https://github.com/unshiftio/url-parse.git (url-parse). This software contains the following license and notice below: @@ -3325,6 +4047,26 @@ SOFTWARE. ----- +The following software may be included in this product: rc. A copy of the source code may be downloaded from https://github.com/dominictarr/rc.git. This software contains the following license and notice below: + +Apache License, Version 2.0 + +Copyright (c) 2011 Dominic Tarr + +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. + +----- + The following software may be included in this product: react-dnd. A copy of the source code may be downloaded from https://github.com/react-dnd/react-dnd.git. This software contains the following license and notice below: The MIT License (MIT) @@ -3377,11 +4119,11 @@ SOFTWARE. ----- -The following software may be included in this product: react-timeago. A copy of the source code may be downloaded from https://github.com/naman34/react-timeago.git. This software contains the following license and notice below: +The following software may be included in this product: react-redux, redux. A copy of the source code may be downloaded from https://github.com/reactjs/react-redux.git (react-redux), https://github.com/reactjs/redux.git (redux). This software contains the following license and notice below: The MIT License (MIT) -Copyright (c) 2014 Naman Goel +Copyright (c) 2015-present Dan Abramov Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -3403,11 +4145,11 @@ SOFTWARE. ----- -The following software may be included in this product: redux. A copy of the source code may be downloaded from https://github.com/reactjs/redux.git. This software contains the following license and notice below: +The following software may be included in this product: react-timeago. A copy of the source code may be downloaded from https://github.com/naman34/react-timeago.git. This software contains the following license and notice below: The MIT License (MIT) -Copyright (c) 2015-present Dan Abramov +Copyright (c) 2014 Naman Goel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -3429,37 +4171,63 @@ SOFTWARE. ----- -The following software may be included in this product: redux-observable. A copy of the source code may be downloaded from git+https://github.com/redux-observable/redux-observable.git. This software contains the following license and notice below: +The following software may be included in this product: readable-stream. A copy of the source code may be downloaded from git://github.com/nodejs/readable-stream. This software contains the following license and notice below: -The MIT License (MIT) +Node.js is licensed for use as follows: -Copyright (c) 2016 Ben Lesh, Jay Phelps, and redux-observable contributors. +""" +Copyright Node.js contributors. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is +of this software and associated documentation files (the "Software"), to +deal in the Software without restriction, including without limitation the +rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +IN THE SOFTWARE. +""" + +This license applies to parts of Node.js originating from the +https://github.com/joyent/node repository: + +""" +Copyright Joyent, Inc. and other Node contributors. All rights reserved. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to +deal in the Software without restriction, including without limitation the +rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +sell copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +IN THE SOFTWARE. +""" ----- -The following software may be included in this product: run-async. A copy of the source code may be downloaded from https://github.com/SBoudrias/run-async.git. This software contains the following license and notice below: +The following software may be included in this product: redux-observable. A copy of the source code may be downloaded from git+https://github.com/redux-observable/redux-observable.git. This software contains the following license and notice below: The MIT License (MIT) -Copyright (c) 2014 Simon Boudrias +Copyright (c) 2016 Ben Lesh, Jay Phelps, and redux-observable contributors. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -3481,26 +4249,6 @@ SOFTWARE. ----- -The following software may be included in this product: rx. A copy of the source code may be downloaded from https://github.com/Reactive-Extensions/RxJS.git. This software contains the following license and notice below: - -Copyright (c) Microsoft. All rights reserved. -Microsoft Open Technologies would like to thank its contributors, a list -of whom are at http://rx.codeplex.com/wikipage?title=Contributors. - -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. - ------ - The following software may be included in this product: rxjs. A copy of the source code may be downloaded from git@github.com:ReactiveX/RxJS.git. This software contains the following license and notice below: Apache License @@ -3733,6 +4481,32 @@ THE SOFTWARE. ----- +The following software may be included in this product: safer-buffer. A copy of the source code may be downloaded from git+https://github.com/ChALkeR/safer-buffer.git. This software contains the following license and notice below: + +MIT License + +Copyright (c) 2018 Nikita Skovoroda + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +----- + The following software may be included in this product: save-as. A copy of the source code may be downloaded from git+https://github.com/cchamberlain/save-as.git. This software contains the following license and notice below: The MIT License (MIT) @@ -3805,6 +4579,25 @@ License, as follows: ----- +The following software may be included in this product: set-blocking. A copy of the source code may be downloaded from git+https://github.com/yargs/set-blocking.git. This software contains the following license and notice below: + +Copyright (c) 2016, Contributors + +Permission to use, copy, modify, and/or distribute this software +for any purpose with or without fee is hereby granted, provided +that the above copyright notice and this permission notice +appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES +OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE +LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES +OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, +WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, +ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +----- + The following software may be included in this product: setimmediate. A copy of the source code may be downloaded from https://github.com/YuzuJS/setImmediate.git. This software contains the following license and notice below: Copyright (c) 2012 Barnesandnoble.com, llc, Donavon West, and Domenic Denicola @@ -3830,24 +4623,136 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- -The following software may be included in this product: signal-exit. A copy of the source code may be downloaded from https://github.com/tapjs/signal-exit.git. This software contains the following license and notice below: +The following software may be included in this product: signal-exit. A copy of the source code may be downloaded from https://github.com/tapjs/signal-exit.git. This software contains the following license and notice below: + +The ISC License + +Copyright (c) 2015, Contributors + +Permission to use, copy, modify, and/or distribute this software +for any purpose with or without fee is hereby granted, provided +that the above copyright notice and this permission notice +appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES +OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE +LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES +OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, +WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, +ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +----- + +The following software may be included in this product: sntp. A copy of the source code may be downloaded from git://github.com/hueniverse/sntp. This software contains the following license and notice below: + +Copyright (c) 2012-2016, Eran Hammer and Project contributors +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * The names of any contributors may not be used to endorse or promote + products derived from this software without specific prior written + permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY +DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + * * * + +The complete list of contributors can be found at: https://github.com/hueniverse/sntp/graphs/contributors + +----- + +The following software may be included in this product: string_decoder. A copy of the source code may be downloaded from git://github.com/nodejs/string_decoder.git. This software contains the following license and notice below: + +Node.js is licensed for use as follows: + +""" +Copyright Node.js contributors. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to +deal in the Software without restriction, including without limitation the +rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +sell copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +IN THE SOFTWARE. +""" + +This license applies to parts of Node.js originating from the +https://github.com/joyent/node repository: + +""" +Copyright Joyent, Inc. and other Node contributors. All rights reserved. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to +deal in the Software without restriction, including without limitation the +rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +sell copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +IN THE SOFTWARE. +""" + +----- + +The following software may be included in this product: stringstream. A copy of the source code may be downloaded from https://github.com/mhart/StringStream.git. This software contains the following license and notice below: -The ISC License +Copyright (c) 2012 Michael Hart (michael.hart.au@gmail.com) -Copyright (c) 2015, Contributors +Permission is hereby granted, free of charge, to any person +obtaining a copy of this software and associated documentation +files (the "Software"), to deal in the Software without +restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following +conditions: -Permission to use, copy, modify, and/or distribute this software -for any purpose with or without fee is hereby granted, provided -that the above copyright notice and this permission notice -appear in all copies. +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE -LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES -OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, -WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, -ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. ----- @@ -3956,82 +4861,198 @@ THE SOFTWARE. ----- -The following software may be included in this product: through. A copy of the source code may be downloaded from https://github.com/dominictarr/through.git. This software contains the following license and notice below: +The following software may be included in this product: tar. A copy of the source code may be downloaded from git://github.com/isaacs/node-tar.git. This software contains the following license and notice below: -Apache License, Version 2.0 +The ISC License +Copyright (c) Isaac Z. Schlueter and Contributors +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -Copyright (c) 2011 Dominic Tarr +----- -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 +The following software may be included in this product: tar-pack. A copy of the source code may be downloaded from https://github.com/ForbesLindesay/tar-pack.git. This software contains the following license and notice below: - http://www.apache.org/licenses/LICENSE-2.0 +Copyright (c) 2014, Forbes Lindesay +All rights reserved. -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. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- -The following software may be included in this product: tmp. A copy of the source code may be downloaded from https://github.com/raszi/node-tmp.git. This software contains the following license and notice below: +The following software may be included in this product: tough-cookie. A copy of the source code may be downloaded from git://github.com/salesforce/tough-cookie.git. This software contains the following license and notice below: -The MIT License (MIT) +Copyright (c) 2015, Salesforce.com, Inc. +All rights reserved. -Copyright (c) 2014 KARASZI István +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +3. Neither the name of Salesforce.com nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +=== + +The following exceptions apply: + +=== + +`public_suffix_list.dat` was obtained from + via +. The license for this file is MPL/2.0. The header of +that file reads as follows: + + // This Source Code Form is subject to the terms of the Mozilla Public + // License, v. 2.0. If a copy of the MPL was not distributed with this + // file, You can obtain one at http://mozilla.org/MPL/2.0/. ----- -The following software may be included in this product: topo. A copy of the source code may be downloaded from git://github.com/hapijs/topo. This software contains the following license and notice below: +The following software may be included in this product: tslib. A copy of the source code may be downloaded from https://github.com/Microsoft/tslib.git. This software contains the following license and notice below: -Copyright (c) 2012-2014, Walmart and other contributors. -All rights reserved. +Apache License -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * The names of any contributors may not be used to endorse or promote - products derived from this software without specific prior written - permission. +Version 2.0, January 2004 -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY -DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +http://www.apache.org/licenses/ - * * * +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + +"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: + +You must give any other recipients of the Work or Derivative Works a copy of this License; and + +You must cause any modified files to carry prominent notices stating that You changed the files; and + +You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and + +If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +----- -The complete list of contributors can be found at: https://github.com/hapijs/topo/graphs/contributors +The following software may be included in this product: tweetnacl. A copy of the source code may be downloaded from https://github.com/dchest/tweetnacl-js.git. This software contains the following license and notice below: + +This is free and unencumbered software released into the public domain. + +Anyone is free to copy, modify, publish, use, compile, sell, or +distribute this software, either in source code form or as a compiled +binary, for any purpose, commercial or non-commercial, and by any +means. + +In jurisdictions that recognize copyright laws, the author or authors +of this software dedicate any and all copyright interest in the +software to the public domain. We make this dedication for the benefit +of the public at large and to the detriment of our heirs and +successors. We intend this dedication to be an overt act of +relinquishment in perpetuity of all present and future rights to this +software under copyright law. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR +OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. + +For more information, please refer to + +----- + +The following software may be included in this product: util-deprecate. A copy of the source code may be downloaded from git://github.com/TooTallNate/util-deprecate.git. This software contains the following license and notice below: + +(The MIT License) + +Copyright (c) 2014 Nathan Rajlich + +Permission is hereby granted, free of charge, to any person +obtaining a copy of this software and associated documentation +files (the "Software"), to deal in the Software without +restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. ----- @@ -4061,6 +5082,30 @@ SOFTWARE. ----- +The following software may be included in this product: verror. A copy of the source code may be downloaded from git://github.com/davepacheco/node-verror.git. This software contains the following license and notice below: + +Copyright (c) 2016, Joyent, Inc. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE + +----- + The following software may be included in this product: websocket-driver. A copy of the source code may be downloaded from git://github.com/faye/websocket-driver-node.git. This software contains the following license and notice below: # The MIT License @@ -4136,6 +5181,32 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----- +The following software may be included in this product: window-size. A copy of the source code may be downloaded from https://github.com/jonschlinkert/window-size.git. This software contains the following license and notice below: + +The MIT License (MIT) + +Copyright (c) 2015, Jon Schlinkert. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +----- + The following software may be included in this product: xml2js. A copy of the source code may be downloaded from https://github.com/Leonidas-from-XIV/node-xml2js.git. This software contains the following license and notice below: Copyright 2010, 2011, 2012, 2013. All rights reserved. @@ -4211,3 +5282,21 @@ Copyright (c) 2010 passive.ly LLC FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +----- + +The following software may be included in this product: y18n. A copy of the source code may be downloaded from git@github.com:yargs/y18n.git. This software contains the following license and notice below: + +Copyright (c) 2015, Contributors + +Permission to use, copy, modify, and/or distribute this software for any purpose +with or without fee is hereby granted, provided that the above copyright notice +and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH +REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, +INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS +OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF +THIS SOFTWARE. + diff --git a/NOTICE.txt b/NOTICE.txt index 27b085d8bf9..dfb2745ae49 100644 --- a/NOTICE.txt +++ b/NOTICE.txt @@ -21,85 +21,214 @@ Agreement. Full license texts are found in LICENSES.txt. Third-party licenses ---------------------├─ (GPL-2.0 OR MIT) -│ └─ ua-parser-js@0.7.17 +--------------------├─ (BSD-2-Clause OR MIT OR Apache-2.0) +│ └─ rc@1.2.7 +│ ├─ URL: https://github.com/dominictarr/rc.git +│ ├─ VendorName: Dominic Tarr +│ └─ VendorUrl: dominictarr.com +├─ (GPL-2.0 OR MIT) +│ └─ ua-parser-js@0.7.18 │ ├─ URL: https://github.com/faisalman/ua-parser-js.git │ ├─ VendorName: Faisal Salman │ └─ VendorUrl: http://github.com/faisalman/ua-parser-js +├─ (MIT or Apache-2.0) +│ └─ dom-storage@2.1.0 +│ ├─ URL: git://git.coolaj86.com/coolaj86/dom-storage.js.git +│ ├─ VendorName: AJ ONeal +│ └─ VendorUrl: https://git.coolaj86.com/coolaj86/dom-storage.js ├─ Apache-2.0 -│ ├─ disposables@1.0.1 +│ ├─ @firebase/app-types@0.2.0 +│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk/tree/master/packages/app-types +│ │ ├─ VendorName: Firebase +│ │ └─ VendorUrl: https://firebase.google.com/ +│ ├─ @firebase/app@0.2.0 +│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk/tree/master/packages/app +│ │ ├─ VendorName: Firebase +│ │ └─ VendorUrl: https://firebase.google.com/ +│ ├─ @firebase/auth-types@0.2.1 +│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk/tree/master/packages/auth-types +│ │ ├─ VendorName: Firebase +│ │ └─ VendorUrl: https://firebase.google.com/ +│ ├─ @firebase/auth@0.4.2 +│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk/tree/master/packages/auth +│ │ ├─ VendorName: Firebase +│ │ └─ VendorUrl: https://firebase.google.com/ +│ ├─ @firebase/database-types@0.2.1 +│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk/tree/master/packages/database-types +│ │ ├─ VendorName: Firebase +│ │ └─ VendorUrl: https://firebase.google.com/ +│ ├─ @firebase/database@0.2.2 +│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk/tree/master/packages/database +│ │ ├─ VendorName: Firebase +│ │ └─ VendorUrl: https://firebase.google.com/ +│ ├─ @firebase/firestore-types@0.3.0 +│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk/tree/master/packages/firestore-types +│ │ ├─ VendorName: Firebase +│ │ └─ VendorUrl: https://firebase.google.com/ +│ ├─ @firebase/firestore@0.4.1 +│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk/tree/master/packages/firestore +│ │ ├─ VendorName: Firebase +│ │ └─ VendorUrl: https://firebase.google.com/ +│ ├─ @firebase/functions-types@0.1.1 +│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk/tree/master/packages/functions-types +│ │ ├─ VendorName: Firebase +│ │ └─ VendorUrl: https://firebase.google.com/ +│ ├─ @firebase/functions@0.1.1 +│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk/tree/master/packages/functions +│ │ ├─ VendorName: Firebase +│ │ └─ VendorUrl: https://firebase.google.com/ +│ ├─ @firebase/logger@0.1.1 +│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk/tree/master/packages/logger +│ │ ├─ VendorName: Firebase +│ │ └─ VendorUrl: https://firebase.google.com/ +│ ├─ @firebase/messaging-types@0.1.3 +│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk/tree/master/packages/messaging-types +│ │ ├─ VendorName: Firebase +│ │ └─ VendorUrl: https://firebase.google.com/ +│ ├─ @firebase/messaging@0.2.4 +│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk/tree/master/packages/messaging +│ │ ├─ VendorName: Firebase +│ │ └─ VendorUrl: https://firebase.google.com/ +│ ├─ @firebase/polyfill@0.3.1 +│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk/tree/master/packages/polyfill +│ │ ├─ VendorName: Firebase +│ │ └─ VendorUrl: https://firebase.google.com/ +│ ├─ @firebase/storage-types@0.1.3 +│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk/tree/master/packages/storage-types +│ │ ├─ VendorName: Firebase +│ │ └─ VendorUrl: https://firebase.google.com/ +│ ├─ @firebase/storage@0.1.9 +│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk/tree/master/packages/storage +│ │ ├─ VendorName: Firebase +│ │ └─ VendorUrl: https://firebase.google.com/ +│ ├─ @firebase/util@0.1.11 +│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk/tree/master/packages/util +│ │ ├─ VendorName: Firebase +│ │ └─ VendorUrl: https://firebase.google.com/ +│ ├─ @firebase/webchannel-wrapper@0.2.8 +│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk/tree/master/packages/webchannel-wrapper +│ │ ├─ VendorName: Firebase +│ │ └─ VendorUrl: https://firebase.google.com/ +│ ├─ ascli@1.0.1 +│ │ ├─ URL: https://github.com/dcodeIO/ascli.git +│ │ └─ VendorName: Daniel Wirtz +│ ├─ aws-sign2@0.7.0 +│ │ ├─ URL: https://github.com/mikeal/aws-sign +│ │ ├─ VendorName: Mikeal Rogers +│ │ └─ VendorUrl: http://www.futurealoof.com +│ ├─ bytebuffer@5.0.1 +│ │ ├─ URL: https://github.com/dcodeIO/bytebuffer.js.git +│ │ └─ VendorName: Daniel Wirtz +│ ├─ caseless@0.12.0 +│ │ ├─ URL: https://github.com/mikeal/caseless +│ │ └─ VendorName: Mikeal Rogers +│ ├─ detect-libc@1.0.3 +│ │ ├─ URL: git://github.com/lovell/detect-libc +│ │ └─ VendorName: Lovell Fuller +│ ├─ disposables@1.0.2 │ │ ├─ URL: https://github.com/gaearon/disposables.git │ │ ├─ VendorName: Cloud Programmability Team │ │ └─ VendorUrl: https://github.com/gaearon/disposables -│ ├─ ecdsa-sig-formatter@1.0.9 -│ │ ├─ URL: git+ssh://git@github.com/Brightspace/node-ecdsa-sig-formatter.git -│ │ ├─ VendorName: D2L Corporation -│ │ └─ VendorUrl: https://github.com/Brightspace/node-ecdsa-sig-formatter#readme -│ ├─ firebase@4.4.0 +│ ├─ firebase@4.13.1 │ │ ├─ URL: https://github.com/firebase/firebase-js-sdk.git │ │ ├─ VendorName: Firebase │ │ └─ VendorUrl: https://firebase.google.com/ -│ ├─ neo4j-driver@1.5.3 +│ ├─ forever-agent@0.6.1 +│ │ ├─ URL: https://github.com/mikeal/forever-agent +│ │ ├─ VendorName: Mikeal Rogers +│ │ └─ VendorUrl: http://www.futurealoof.com +│ ├─ grpc@1.10.1 +│ │ ├─ URL: https://github.com/grpc/grpc-node.git +│ │ ├─ VendorName: Google Inc. +│ │ └─ VendorUrl: https://grpc.io/ +│ ├─ long@3.2.0 +│ │ ├─ URL: https://github.com/dcodeIO/long.js.git +│ │ └─ VendorName: Daniel Wirtz +│ ├─ neo4j-driver@1.6.1 │ │ ├─ URL: git://github.com/neo4j/neo4j-javascript-driver.git -│ │ └─ VendorName: Neo Technology Inc. -│ ├─ rx@4.1.0 -│ │ ├─ URL: https://github.com/Reactive-Extensions/RxJS.git -│ │ ├─ VendorName: Cloud Programmability Team -│ │ └─ VendorUrl: https://github.com/Reactive-Extensions/RxJS -│ └─ rxjs@5.5.7 -│ ├─ URL: git@github.com:ReactiveX/RxJS.git -│ ├─ VendorName: Ben Lesh -│ └─ VendorUrl: https://github.com/ReactiveX/RxJS -├─ Apache2 -│ └─ dom-storage@2.0.2 -│ ├─ URL: git://github.com/coolaj86/node-dom-storage.git -│ ├─ VendorName: AJ ONeal -│ └─ VendorUrl: http://coolaj86.info +│ │ └─ VendorName: Neo4j +│ ├─ oauth-sign@0.8.2 +│ │ ├─ URL: https://github.com/mikeal/oauth-sign +│ │ ├─ VendorName: Mikeal Rogers +│ │ └─ VendorUrl: http://www.futurealoof.com +│ ├─ protobufjs@5.0.3 +│ │ ├─ URL: https://github.com/dcodeIO/protobuf.js.git +│ │ ├─ VendorName: Daniel Wirtz +│ │ └─ VendorUrl: https://github.com/dcodeIO/protobuf.js +│ ├─ request@2.83.0 +│ │ ├─ URL: https://github.com/request/request.git +│ │ └─ VendorName: Mikeal Rogers +│ ├─ rxjs@5.5.11 +│ │ ├─ URL: git@github.com:ReactiveX/RxJS.git +│ │ ├─ VendorName: Ben Lesh +│ │ └─ VendorUrl: https://github.com/ReactiveX/RxJS +│ ├─ tslib@1.9.0 +│ │ ├─ URL: https://github.com/Microsoft/tslib.git +│ │ ├─ VendorName: Microsoft Corp. +│ │ └─ VendorUrl: http://typescriptlang.org/ +│ └─ tunnel-agent@0.6.0 +│ ├─ URL: https://github.com/mikeal/tunnel-agent +│ ├─ VendorName: Mikeal Rogers +│ └─ VendorUrl: http://www.futurealoof.com ├─ BSD │ └─ antlr4@4.6.0 │ ├─ URL: https://github.com/antlr/antlr4.git │ └─ VendorUrl: https://github.com/antlr/antlr4 ├─ BSD-2-Clause -│ ├─ isemail@1.2.0 -│ │ ├─ URL: https://github.com/hapijs/isemail.git -│ │ ├─ VendorName: Eli Skeggs -│ │ └─ VendorUrl: https://github.com/hapijs/isemail -│ └─ node-noop@1.0.0 -│ ├─ URL: git://github.com/euank/node-noop.git -│ └─ VendorName: EuanK +│ ├─ node-noop@1.0.0 +│ │ ├─ URL: git://github.com/euank/node-noop.git +│ │ └─ VendorName: EuanK +│ ├─ tar-pack@3.4.1 +│ │ └─ URL: https://github.com/ForbesLindesay/tar-pack.git +│ └─ uri-js@4.2.1 +│ ├─ URL: http://github.com/garycourt/uri-js +│ ├─ VendorName: Gary Court +│ └─ VendorUrl: https://github.com/garycourt/uri-js ├─ BSD-3-Clause -│ ├─ buffer-equal-constant-time@1.0.1 -│ │ ├─ URL: git@github.com:goinstant/buffer-equal-constant-time.git -│ │ └─ VendorName: GoInstant Inc., a salesforce.com company -│ ├─ dnd-core@2.5.3 +│ ├─ bcrypt-pbkdf@1.0.1 +│ ├─ boom@4.3.1 +│ │ └─ URL: git://github.com/hapijs/boom +│ ├─ boom@5.2.0 +│ │ └─ URL: git://github.com/hapijs/boom +│ ├─ cryptiles@3.1.2 +│ │ └─ URL: git://github.com/hapijs/cryptiles +│ ├─ dnd-core@2.6.0 │ │ └─ URL: https://github.com/react-dnd/react-dnd.git -│ ├─ hoek@2.16.3 +│ ├─ hawk@6.0.2 +│ │ ├─ URL: git://github.com/hueniverse/hawk +│ │ ├─ VendorName: Eran Hammer +│ │ └─ VendorUrl: http://hueniverse.com +│ ├─ hoek@4.2.0 │ │ └─ URL: git://github.com/hapijs/hoek -│ ├─ hoist-non-react-statics@2.3.1 +│ ├─ hoist-non-react-statics@2.5.0 │ │ ├─ URL: git://github.com/mridgway/hoist-non-react-statics.git │ │ └─ VendorName: Michael Ridgway -│ ├─ ieee754@1.1.8 +│ ├─ ieee754@1.1.11 │ │ ├─ URL: git://github.com/feross/ieee754.git │ │ ├─ VendorName: Feross Aboukhadijeh │ │ └─ VendorUrl: http://feross.org -│ ├─ invariant@2.2.2 -│ │ ├─ URL: https://github.com/zertosh/invariant -│ │ └─ VendorName: Andres Suarez -│ ├─ joi@6.10.1 -│ │ └─ URL: git://github.com/hapijs/joi -│ ├─ prop-types@15.5.8 -│ │ ├─ URL: https://github.com/reactjs/prop-types.git -│ │ └─ VendorUrl: https://facebook.github.io/react/ -│ ├─ react-dnd-html5-backend@2.5.3 +│ ├─ node-pre-gyp@0.7.0 +│ │ ├─ URL: git://github.com/mapbox/node-pre-gyp.git +│ │ └─ VendorName: Dane Springmeyer +│ ├─ qs@6.5.1 +│ │ ├─ URL: https://github.com/ljharb/qs.git +│ │ └─ VendorUrl: https://github.com/ljharb/qs +│ ├─ react-dnd-html5-backend@2.6.0 │ │ └─ URL: https://github.com/react-dnd/react-dnd.git -│ ├─ react-dnd@2.5.3 +│ ├─ react-dnd@2.6.0 │ │ └─ URL: https://github.com/react-dnd/react-dnd.git -│ └─ topo@1.1.0 -│ └─ URL: git://github.com/hapijs/topo +│ ├─ sntp@2.0.2 +│ │ ├─ URL: git://github.com/hueniverse/sntp +│ │ ├─ VendorName: Eran Hammer +│ │ └─ VendorUrl: http://hueniverse.com +│ └─ tough-cookie@2.3.3 +│ ├─ URL: git://github.com/salesforce/tough-cookie.git +│ ├─ VendorName: Jeremy Stashewsky +│ └─ VendorUrl: https://github.com/salesforce/tough-cookie ├─ BSD* -│ └─ hoist-non-react-statics@1.2.0 -│ ├─ URL: git://github.com/mridgway/hoist-non-react-statics.git -│ └─ VendorName: Michael Ridgway +│ └─ json-schema@0.2.3 +│ ├─ URL: http://github.com/kriszyp/json-schema +│ └─ VendorName: Kris Zyp ├─ GPL-3.0 │ ├─ cypher-codemirror@1.0.5 │ │ ├─ URL: git://github.com/neo4j-contrib/cypher-editor.git @@ -108,490 +237,697 @@ Third-party licenses │ ├─ URL: git://github.com/neo4j-contrib/cypher-editor.git │ └─ VendorName: Neo Technology Inc. ├─ ISC -│ ├─ cli-width@2.2.0 -│ │ ├─ URL: git@github.com:knownasilya/cli-width.git -│ │ ├─ VendorName: Ilya Radchenko -│ │ └─ VendorUrl: https://github.com/knownasilya/cli-width +│ ├─ abbrev@1.1.1 +│ │ ├─ URL: http://github.com/isaacs/abbrev-js +│ │ └─ VendorName: Isaac Z. Schlueter +│ ├─ aproba@1.2.0 +│ │ ├─ URL: https://github.com/iarna/aproba +│ │ ├─ VendorName: Rebecca Turner +│ │ └─ VendorUrl: https://github.com/iarna/aproba +│ ├─ are-we-there-yet@1.1.4 +│ │ ├─ URL: https://github.com/iarna/are-we-there-yet.git +│ │ ├─ VendorName: Rebecca Turner +│ │ └─ VendorUrl: https://github.com/iarna/are-we-there-yet +│ ├─ block-stream@0.0.9 +│ │ ├─ URL: git://github.com/isaacs/block-stream.git +│ │ ├─ VendorName: Isaac Z. Schlueter +│ │ └─ VendorUrl: http://blog.izs.me/ +│ ├─ cliui@3.2.0 +│ │ ├─ URL: http://github.com/yargs/cliui.git +│ │ └─ VendorName: Ben Coe +│ ├─ console-control-strings@1.1.0 +│ │ ├─ URL: https://github.com/iarna/console-control-strings +│ │ ├─ VendorName: Rebecca Turner +│ │ └─ VendorUrl: http://re-becca.org/ │ ├─ css-color-keywords@1.0.0 │ │ ├─ URL: https://github.com/sonicdoe/css-color-keywords.git │ │ └─ VendorName: Jakob Krigovsky -│ ├─ mute-stream@0.0.7 -│ │ ├─ URL: git://github.com/isaacs/mute-stream +│ ├─ fs.realpath@1.0.0 +│ │ ├─ URL: git+https://github.com/isaacs/fs.realpath.git +│ │ ├─ VendorName: Isaac Z. Schlueter +│ │ └─ VendorUrl: http://blog.izs.me/ +│ ├─ fstream-ignore@1.0.5 +│ │ ├─ URL: git://github.com/isaacs/fstream-ignore.git +│ │ ├─ VendorName: Isaac Z. Schlueter +│ │ └─ VendorUrl: http://blog.izs.me/ +│ ├─ fstream@1.0.11 +│ │ ├─ URL: https://github.com/npm/fstream.git +│ │ ├─ VendorName: Isaac Z. Schlueter +│ │ └─ VendorUrl: http://blog.izs.me/ +│ ├─ gauge@2.7.4 +│ │ ├─ URL: https://github.com/iarna/gauge +│ │ ├─ VendorName: Rebecca Turner +│ │ └─ VendorUrl: https://github.com/iarna/gauge +│ ├─ glob@7.1.2 +│ │ ├─ URL: git://github.com/isaacs/node-glob.git +│ │ ├─ VendorName: Isaac Z. Schlueter +│ │ └─ VendorUrl: http://blog.izs.me/ +│ ├─ graceful-fs@4.1.11 +│ │ └─ URL: https://github.com/isaacs/node-graceful-fs +│ ├─ har-schema@2.0.0 +│ │ ├─ URL: https://github.com/ahmadnassri/har-schema.git +│ │ ├─ VendorName: Ahmad Nassri +│ │ └─ VendorUrl: https://github.com/ahmadnassri/har-schema +│ ├─ har-validator@5.0.3 +│ │ ├─ URL: https://github.com/ahmadnassri/har-validator.git +│ │ ├─ VendorName: Ahmad Nassri +│ │ └─ VendorUrl: https://github.com/ahmadnassri/har-validator +│ ├─ has-unicode@2.0.1 +│ │ ├─ URL: https://github.com/iarna/has-unicode +│ │ ├─ VendorName: Rebecca Turner +│ │ └─ VendorUrl: https://github.com/iarna/has-unicode +│ ├─ inflight@1.0.6 +│ │ ├─ URL: https://github.com/npm/inflight.git +│ │ ├─ VendorName: Isaac Z. Schlueter +│ │ └─ VendorUrl: https://github.com/isaacs/inflight +│ ├─ inherits@2.0.3 +│ │ └─ URL: git://github.com/isaacs/inherits +│ ├─ ini@1.3.5 +│ │ ├─ URL: git://github.com/isaacs/ini.git +│ │ ├─ VendorName: Isaac Z. Schlueter +│ │ └─ VendorUrl: http://blog.izs.me/ +│ ├─ json-stringify-safe@5.0.1 +│ │ ├─ URL: git://github.com/isaacs/json-stringify-safe +│ │ ├─ VendorName: Isaac Z. Schlueter +│ │ └─ VendorUrl: https://github.com/isaacs/json-stringify-safe +│ ├─ minimatch@3.0.4 +│ │ ├─ URL: git://github.com/isaacs/minimatch.git +│ │ ├─ VendorName: Isaac Z. Schlueter +│ │ └─ VendorUrl: http://blog.izs.me +│ ├─ nopt@4.0.1 +│ │ ├─ URL: https://github.com/npm/nopt.git +│ │ ├─ VendorName: Isaac Z. Schlueter +│ │ └─ VendorUrl: http://blog.izs.me/ +│ ├─ npmlog@4.1.2 +│ │ ├─ URL: https://github.com/npm/npmlog.git +│ │ ├─ VendorName: Isaac Z. Schlueter +│ │ └─ VendorUrl: http://blog.izs.me/ +│ ├─ once@1.4.0 +│ │ ├─ URL: git://github.com/isaacs/once +│ │ ├─ VendorName: Isaac Z. Schlueter +│ │ └─ VendorUrl: http://blog.izs.me/ +│ ├─ osenv@0.1.5 +│ │ ├─ URL: https://github.com/npm/osenv +│ │ ├─ VendorName: Isaac Z. Schlueter +│ │ └─ VendorUrl: http://blog.izs.me/ +│ ├─ rimraf@2.6.2 +│ │ ├─ URL: git://github.com/isaacs/rimraf.git │ │ ├─ VendorName: Isaac Z. Schlueter │ │ └─ VendorUrl: http://blog.izs.me/ │ ├─ sax@1.2.4 │ │ ├─ URL: git://github.com/isaacs/sax-js.git │ │ ├─ VendorName: Isaac Z. Schlueter │ │ └─ VendorUrl: http://blog.izs.me/ -│ └─ signal-exit@3.0.2 -│ ├─ URL: https://github.com/tapjs/signal-exit.git +│ ├─ semver@5.5.0 +│ │ └─ URL: https://github.com/npm/node-semver +│ ├─ set-blocking@2.0.0 +│ │ ├─ URL: git+https://github.com/yargs/set-blocking.git +│ │ ├─ VendorName: Ben Coe +│ │ └─ VendorUrl: https://github.com/yargs/set-blocking#readme +│ ├─ signal-exit@3.0.2 +│ │ ├─ URL: https://github.com/tapjs/signal-exit.git +│ │ ├─ VendorName: Ben Coe +│ │ └─ VendorUrl: https://github.com/tapjs/signal-exit +│ ├─ tar@2.2.1 +│ │ ├─ URL: git://github.com/isaacs/node-tar.git +│ │ ├─ VendorName: Isaac Z. Schlueter +│ │ └─ VendorUrl: http://blog.izs.me/ +│ ├─ uid-number@0.0.6 +│ │ ├─ URL: git://github.com/isaacs/uid-number.git +│ │ ├─ VendorName: Isaac Z. Schlueter +│ │ └─ VendorUrl: http://blog.izs.me/ +│ ├─ wide-align@1.1.2 +│ │ ├─ URL: https://github.com/iarna/wide-align +│ │ ├─ VendorName: Rebecca Turner +│ │ └─ VendorUrl: http://re-becca.org/ +│ ├─ wrappy@1.0.2 +│ │ ├─ URL: https://github.com/npm/wrappy +│ │ ├─ VendorName: Isaac Z. Schlueter +│ │ └─ VendorUrl: https://github.com/npm/wrappy +│ └─ y18n@3.2.1 +│ ├─ URL: git@github.com:yargs/y18n.git │ ├─ VendorName: Ben Coe -│ └─ VendorUrl: https://github.com/tapjs/signal-exit -└─ MIT - ├─ ansi-escapes@1.4.0 - │ ├─ URL: https://github.com/sindresorhus/ansi-escapes.git - │ ├─ VendorName: Sindre Sorhus - │ └─ VendorUrl: sindresorhus.com - ├─ ansi-regex@2.1.1 - │ ├─ URL: https://github.com/chalk/ansi-regex.git - │ ├─ VendorName: Sindre Sorhus - │ └─ VendorUrl: sindresorhus.com - ├─ ansi-regex@3.0.0 - │ ├─ URL: https://github.com/chalk/ansi-regex.git - │ ├─ VendorName: Sindre Sorhus - │ └─ VendorUrl: sindresorhus.com - ├─ ansi-styles@2.2.1 - │ ├─ URL: https://github.com/chalk/ansi-styles.git - │ ├─ VendorName: Sindre Sorhus - │ └─ VendorUrl: sindresorhus.com - ├─ asap@2.0.6 - │ └─ URL: https://github.com/kriskowal/asap.git - ├─ ascii-data-table@2.1.1 - │ ├─ URL: https://github.com/oskarhane/ascii-data-table.git - │ ├─ VendorName: Oskar Hane - │ └─ VendorUrl: http://oskarhane.com/ - ├─ assertion-error@1.1.0 - │ ├─ URL: git@github.com:chaijs/assertion-error.git - │ ├─ VendorName: Jake Luer - │ └─ VendorUrl: http://qualiancy.com - ├─ attr-accept@1.1.0 - │ ├─ URL: https://github.com/okonet/attr-accept.git - │ ├─ VendorName: Andrey Okonetchnikov @okonetchnikov - │ └─ VendorUrl: https://github.com/okonet/attr-accept#readme - ├─ babel-polyfill@6.23.0 - │ ├─ URL: https://github.com/babel/babel/tree/master/packages/babel-polyfill - │ ├─ VendorName: Sebastian McKenzie - │ └─ VendorUrl: https://babeljs.io/ - ├─ babel-runtime@6.26.0 - │ ├─ URL: https://github.com/babel/babel/tree/master/packages/babel-runtime - │ └─ VendorName: Sebastian McKenzie - ├─ base64-js@1.2.3 - │ ├─ URL: git://github.com/beatgammit/base64-js.git - │ ├─ VendorName: T. Jameson Little - │ └─ VendorUrl: https://github.com/beatgammit/base64-js - ├─ base64url@2.0.0 - │ ├─ URL: git://github.com/brianloveswords/base64url.git - │ └─ VendorName: Brian J Brennan - ├─ buffer@5.1.0 - │ ├─ URL: git://github.com/feross/buffer.git - │ ├─ VendorName: Feross Aboukhadijeh - │ └─ VendorUrl: https://github.com/feross/buffer - ├─ chai@4.1.2 - │ ├─ URL: https://github.com/chaijs/chai - │ ├─ VendorName: Jake Luer - │ └─ VendorUrl: http://chaijs.com/ - ├─ chalk@1.1.3 - │ └─ URL: https://github.com/chalk/chalk.git - ├─ chardet@0.4.2 - │ ├─ URL: git@github.com:runk/node-chardet.git - │ ├─ VendorName: Dmitry Shirokov - │ └─ VendorUrl: https://github.com/runk/node-chardet - ├─ check-error@1.0.2 - │ ├─ URL: git+ssh://git@github.com/chaijs/check-error.git - │ ├─ VendorName: Jake Luer - │ └─ VendorUrl: http://alogicalparadox.com - ├─ ci-info@1.1.3 - │ ├─ URL: https://github.com/watson/ci-info.git - │ ├─ VendorName: Thomas Watson Steen - │ └─ VendorUrl: https://github.com/watson/ci-info - ├─ classnames@2.2.5 - │ ├─ URL: https://github.com/JedWatson/classnames.git - │ └─ VendorName: Jed Watson - ├─ cli-cursor@2.1.0 - │ ├─ URL: https://github.com/sindresorhus/cli-cursor.git - │ ├─ VendorName: Sindre Sorhus - │ └─ VendorUrl: sindresorhus.com - ├─ codemirror@5.30.0 - │ ├─ URL: https://github.com/codemirror/CodeMirror.git - │ └─ VendorUrl: http://codemirror.net/ - ├─ core-js@1.2.7 - │ └─ URL: https://github.com/zloirock/core-js.git - ├─ core-js@2.5.1 - │ └─ URL: https://github.com/zloirock/core-js.git - ├─ core-js@2.5.3 - │ └─ URL: https://github.com/zloirock/core-js.git - ├─ css-to-react-native@2.1.2 - │ ├─ URL: git+https://github.com/styled-components/css-to-react-native.git - │ ├─ VendorName: Jacob Parker - │ └─ VendorUrl: https://github.com/styled-components/css-to-react-native#readme - ├─ deep-eql@3.0.1 - │ ├─ URL: git@github.com:chaijs/deep-eql.git - │ └─ VendorName: Jake Luer - ├─ encoding@0.1.12 - │ ├─ URL: https://github.com/andris9/encoding.git - │ └─ VendorName: Andris Reinman - ├─ escape-string-regexp@1.0.5 - │ ├─ URL: https://github.com/sindresorhus/escape-string-regexp.git - │ ├─ VendorName: Sindre Sorhus - │ └─ VendorUrl: sindresorhus.com - ├─ external-editor@2.1.0 - │ ├─ URL: git+https://github.com/mrkmg/node-external-editor.git - │ ├─ VendorName: Kevin Gravier - │ └─ VendorUrl: https://github.com/mrkmg/node-external-editor#readme - ├─ faye-websocket@0.9.3 - │ ├─ URL: git://github.com/faye/faye-websocket-node.git - │ ├─ VendorName: James Coglan - │ └─ VendorUrl: http://github.com/faye/faye-websocket-node - ├─ fbjs@0.8.16 - │ └─ URL: https://github.com/facebook/fbjs.git - ├─ figures@2.0.0 - │ ├─ URL: https://github.com/sindresorhus/figures.git - │ ├─ VendorName: Sindre Sorhus - │ └─ VendorUrl: sindresorhus.com - ├─ file-saver@1.3.3 - │ ├─ URL: https://github.com/eligrey/FileSaver.js - │ ├─ VendorName: Eli Grey - │ └─ VendorUrl: https://github.com/eligrey/FileSaver.js#readme - ├─ fuzzaldrin@2.1.0 - │ ├─ URL: https://github.com/atom/fuzzaldrin.git - │ └─ VendorUrl: http://atom.github.io/fuzzaldrin - ├─ get-func-name@2.0.0 - │ ├─ URL: git+ssh://git@github.com/chaijs/get-func-name.git - │ ├─ VendorName: Jake Luer - │ └─ VendorUrl: http://alogicalparadox.com - ├─ has-ansi@2.0.0 - │ ├─ URL: https://github.com/sindresorhus/has-ansi.git - │ ├─ VendorName: Sindre Sorhus - │ └─ VendorUrl: sindresorhus.com - ├─ has-flag@1.0.0 - │ ├─ URL: https://github.com/sindresorhus/has-flag.git - │ ├─ VendorName: Sindre Sorhus - │ └─ VendorUrl: sindresorhus.com - ├─ http-parser-js@0.4.11 - │ ├─ URL: git://github.com/creationix/http-parser-js.git - │ ├─ VendorName: Tim Caswell - │ └─ VendorUrl: https://github.com/creationix - ├─ husky@0.14.3 - │ ├─ URL: git://github.com/typicode/husky.git - │ ├─ VendorName: Typicode - │ └─ VendorUrl: https://github.com/typicode/husky - ├─ iconv-lite@0.4.19 - │ ├─ URL: git://github.com/ashtuchkin/iconv-lite.git - │ ├─ VendorName: Alexander Shtuchkin - │ └─ VendorUrl: https://github.com/ashtuchkin/iconv-lite - ├─ immutability-helper@2.6.6 - │ ├─ URL: git+https://github.com/kolodny/immutability-helper.git - │ ├─ VendorName: Moshe Kolodny - │ └─ VendorUrl: https://github.com/kolodny/immutability-helper#readme - ├─ inquirer@3.0.6 - │ ├─ URL: https://github.com/SBoudrias/Inquirer.js.git - │ └─ VendorName: Simon Boudrias - ├─ invariant@2.2.3 - │ ├─ URL: https://github.com/zertosh/invariant - │ └─ VendorName: Andres Suarez - ├─ is-ci@1.0.10 - │ ├─ URL: https://github.com/watson/is-ci.git - │ ├─ VendorName: Thomas Watson Steen - │ └─ VendorUrl: https://github.com/watson/is-ci - ├─ is-fullwidth-code-point@2.0.0 - │ ├─ URL: https://github.com/sindresorhus/is-fullwidth-code-point.git - │ ├─ VendorName: Sindre Sorhus - │ └─ VendorUrl: sindresorhus.com - ├─ is-plain-object@2.0.4 - │ ├─ URL: https://github.com/jonschlinkert/is-plain-object.git - │ ├─ VendorName: Jon Schlinkert - │ └─ VendorUrl: https://github.com/jonschlinkert/is-plain-object - ├─ is-promise@2.1.0 - │ ├─ URL: https://github.com/then/is-promise.git - │ └─ VendorName: ForbesLindesay - ├─ is-stream@1.1.0 - │ ├─ URL: https://github.com/sindresorhus/is-stream.git - │ ├─ VendorName: Sindre Sorhus - │ └─ VendorUrl: sindresorhus.com - ├─ isobject@3.0.1 - │ ├─ URL: https://github.com/jonschlinkert/isobject.git - │ ├─ VendorName: Jon Schlinkert - │ └─ VendorUrl: https://github.com/jonschlinkert/isobject - ├─ isomorphic-fetch@2.2.1 - │ ├─ URL: https://github.com/matthew-andrews/isomorphic-fetch.git - │ ├─ VendorName: Matt Andrews - │ └─ VendorUrl: https://github.com/matthew-andrews/isomorphic-fetch/issues - ├─ js-tokens@3.0.2 - │ ├─ URL: https://github.com/lydell/js-tokens.git - │ └─ VendorName: Simon Lydell - ├─ jsonic@0.3.0 - │ ├─ URL: git://github.com/rjrodger/jsonic.git - │ ├─ VendorName: Richard Rodger - │ └─ VendorUrl: https://github.com/rjrodger/jsonic - ├─ jsonwebtoken@7.4.3 - │ ├─ URL: https://github.com/auth0/node-jsonwebtoken - │ └─ VendorName: auth0 - ├─ jwa@1.1.5 - │ ├─ URL: git://github.com/brianloveswords/node-jwa.git - │ └─ VendorName: Brian J. Brennan - ├─ jws@3.1.4 - │ ├─ URL: git://github.com/brianloveswords/node-jws.git - │ └─ VendorName: Brian J Brennan - ├─ lodash-es@4.17.4 - │ ├─ URL: https://github.com/lodash/lodash.git - │ ├─ VendorName: John-David Dalton - │ └─ VendorUrl: https://lodash.com/custom-builds - ├─ lodash.debounce@4.0.8 - │ ├─ URL: https://github.com/lodash/lodash.git - │ ├─ VendorName: John-David Dalton - │ └─ VendorUrl: https://lodash.com/ - ├─ lodash.once@4.1.1 - │ ├─ URL: https://github.com/lodash/lodash.git - │ ├─ VendorName: John-David Dalton - │ └─ VendorUrl: https://lodash.com/ - ├─ lodash@4.17.4 - │ ├─ URL: https://github.com/lodash/lodash.git - │ ├─ VendorName: John-David Dalton - │ └─ VendorUrl: https://lodash.com/ - ├─ lodash@4.17.5 - │ ├─ URL: https://github.com/lodash/lodash.git - │ ├─ VendorName: John-David Dalton - │ └─ VendorUrl: https://lodash.com/ - ├─ loose-envify@1.3.1 - │ ├─ URL: git://github.com/zertosh/loose-envify.git - │ ├─ VendorName: Andres Suarez - │ └─ VendorUrl: https://github.com/zertosh/loose-envify - ├─ mimic-fn@1.2.0 - │ ├─ URL: https://github.com/sindresorhus/mimic-fn.git - │ ├─ VendorName: Sindre Sorhus - │ └─ VendorUrl: sindresorhus.com - ├─ minimist@1.2.0 - │ ├─ URL: git://github.com/substack/minimist.git - │ ├─ VendorName: James Halliday - │ └─ VendorUrl: https://github.com/substack/minimist - ├─ moment@2.18.1 - │ ├─ URL: https://github.com/moment/moment.git - │ ├─ VendorName: Iskren Ivov Chernev - │ └─ VendorUrl: http://momentjs.com/ - ├─ ms@2.0.0 - │ └─ URL: https://github.com/zeit/ms.git - ├─ node-fetch@1.6.3 - │ ├─ URL: https://github.com/bitinn/node-fetch.git - │ ├─ VendorName: David Frank - │ └─ VendorUrl: https://github.com/bitinn/node-fetch - ├─ node-fetch@1.7.3 - │ ├─ URL: https://github.com/bitinn/node-fetch.git - │ ├─ VendorName: David Frank - │ └─ VendorUrl: https://github.com/bitinn/node-fetch - ├─ normalize-path@1.0.0 - │ ├─ URL: git://github.com/jonschlinkert/normalize-path.git - │ ├─ VendorName: Jon Schlinkert - │ └─ VendorUrl: https://github.com/jonschlinkert/normalize-path - ├─ object-assign@4.1.1 - │ ├─ URL: https://github.com/sindresorhus/object-assign.git - │ ├─ VendorName: Sindre Sorhus - │ └─ VendorUrl: sindresorhus.com - ├─ onetime@2.0.1 - │ ├─ URL: https://github.com/sindresorhus/onetime.git - │ ├─ VendorName: Sindre Sorhus - │ └─ VendorUrl: sindresorhus.com - ├─ opencollective@1.0.3 - │ ├─ URL: git+https://github.com/opencollective/opencollective-cli.git - │ ├─ VendorName: Xavier Damman - │ └─ VendorUrl: https://github.com/opencollective/opencollective-cli#readme - ├─ opn@4.0.2 - │ ├─ URL: https://github.com/sindresorhus/opn.git - │ ├─ VendorName: Sindre Sorhus - │ └─ VendorUrl: sindresorhus.com - ├─ os-tmpdir@1.0.2 - │ ├─ URL: https://github.com/sindresorhus/os-tmpdir.git - │ ├─ VendorName: Sindre Sorhus - │ └─ VendorUrl: sindresorhus.com - ├─ pathval@1.1.0 - │ ├─ URL: git+ssh://git@github.com/chaijs/pathval.git - │ ├─ VendorName: Veselin Todorov - │ └─ VendorUrl: https://github.com/chaijs/pathval - ├─ pinkie-promise@2.0.1 - │ ├─ URL: https://github.com/floatdrop/pinkie-promise.git - │ ├─ VendorName: Vsevolod Strukchinsky - │ └─ VendorUrl: github.com/floatdrop - ├─ pinkie@2.0.4 - │ ├─ URL: https://github.com/floatdrop/pinkie.git - │ ├─ VendorName: Vsevolod Strukchinsky - │ └─ VendorUrl: github.com/floatdrop - ├─ postcss-value-parser@3.3.0 - │ ├─ URL: https://github.com/TrySound/postcss-value-parser.git - │ ├─ VendorName: Bogdan Chadkin - │ └─ VendorUrl: https://github.com/TrySound/postcss-value-parser - ├─ react-compat@3.18.0 - │ ├─ URL: https://github.com/developit/react-compat.git - │ ├─ VendorName: Jason Miller - │ └─ VendorUrl: https://github.com/developit/react-compat - ├─ react-redux@2.0.3 - │ ├─ URL: git+https://github.com/developit/react-redux.git - │ ├─ VendorName: Jason Miller - │ └─ VendorUrl: https://github.com/developit/react-redux - ├─ react-render-to-string@3.7.0 - │ ├─ URL: https://github.com/developit/react-render-to-string.git - │ ├─ VendorName: Jason Miller - │ └─ VendorUrl: https://github.com/developit/react-render-to-string - ├─ react-suber@1.0.3 - │ ├─ URL: https://github.com/oskarhane/react-suber.git#react - │ ├─ VendorName: Oskar Hane - │ └─ VendorUrl: http://oskarhane.com/ - ├─ react-transition-group@1.1.1 - │ ├─ URL: https://github.com/developit/react-transition-group.git - │ └─ VendorUrl: http://github.com/developit/react-transition-group - ├─ react@8.2.7 - │ ├─ URL: https://github.com/developit/react.git - │ ├─ VendorName: Jason Miller - │ └─ VendorUrl: https://github.com/developit/react - ├─ pretty-format@3.8.0 - │ ├─ URL: https://github.com/thejameskyle/pretty-format.git - │ ├─ VendorName: James Kyle - │ └─ VendorUrl: https://github.com/thejameskle/pretty-format - ├─ promise-polyfill@6.0.2 - │ ├─ URL: https://taylorhakes@github.com/taylorhakes/promise-polyfill.git - │ ├─ VendorName: Taylor Hakes - │ └─ VendorUrl: https://github.com/taylorhakes/promise-polyfill - ├─ promise@7.3.1 - │ ├─ URL: https://github.com/then/promise.git - │ └─ VendorName: ForbesLindesay - ├─ prop-types@15.6.1 - │ ├─ URL: https://github.com/facebook/prop-types.git - │ └─ VendorUrl: https://facebook.github.io/react/ - ├─ querystringify@1.0.0 - │ ├─ URL: https://github.com/unshiftio/querystringify - │ ├─ VendorName: Arnout Kazemier - │ └─ VendorUrl: https://github.com/unshiftio/querystringify - ├─ react-addons-pure-render-mixin@15.6.2 - │ └─ URL: https://github.com/facebook/react.git - ├─ react-dropzone@4.1.3 - │ ├─ URL: https://github.com/react-dropzone/react-dropzone.git - │ ├─ VendorName: Param Aggarwal - │ └─ VendorUrl: https://github.com/react-dropzone/react-dropzone - ├─ react-icon-base@2.0.7 - │ ├─ URL: git+ssh://git@github.com/gorangajic/react-icon-base.git - │ ├─ VendorName: Goran Gajic - │ └─ VendorUrl: https://github.com/gorangajic/react-icon-base#readme - ├─ react-icons@2.2.5 - │ ├─ URL: git+ssh://git@github.com/gorangajic/react-icons.git - │ ├─ VendorName: Goran Gajic - │ └─ VendorUrl: https://github.com/gorangajic/react-icons#readme - ├─ react-timeago@3.4.3 - │ ├─ URL: https://github.com/naman34/react-timeago.git - │ ├─ VendorName: Naman Goel - │ └─ VendorUrl: https://github.com/nmn/react-timeago - ├─ redux-observable@0.16.0 - │ ├─ URL: git+https://github.com/redux-observable/redux-observable.git - │ └─ VendorUrl: https://github.com/redux-observable/redux-observable#README.md - ├─ redux@3.7.2 - │ ├─ URL: https://github.com/reactjs/redux.git - │ └─ VendorUrl: http://redux.js.org/ - ├─ regenerator-runtime@0.10.5 - │ ├─ URL: https://github.com/facebook/regenerator/tree/master/packages/regenerator-runtime - │ └─ VendorName: Ben Newman - ├─ regenerator-runtime@0.11.1 - │ ├─ URL: https://github.com/facebook/regenerator/tree/master/packages/regenerator-runtime - │ └─ VendorName: Ben Newman - ├─ requires-port@1.0.0 - │ ├─ URL: https://github.com/unshiftio/requires-port - │ ├─ VendorName: Arnout Kazemier - │ └─ VendorUrl: https://github.com/unshiftio/requires-port - ├─ restore-cursor@2.0.0 - │ ├─ URL: https://github.com/sindresorhus/restore-cursor.git - │ ├─ VendorName: Sindre Sorhus - │ └─ VendorUrl: sindresorhus.com - ├─ run-async@2.3.0 - │ ├─ URL: https://github.com/SBoudrias/run-async.git - │ └─ VendorName: Simon Boudrias - ├─ safe-buffer@5.1.1 - │ ├─ URL: git://github.com/feross/safe-buffer.git - │ ├─ VendorName: Feross Aboukhadijeh - │ └─ VendorUrl: https://github.com/feross/safe-buffer - ├─ save-as@0.1.8 - │ ├─ URL: git+https://github.com/cchamberlain/save-as.git - │ ├─ VendorName: Cole Chamberlain - │ └─ VendorUrl: https://cchamberlain.github.io/save-as - ├─ setimmediate@1.0.5 - │ ├─ URL: https://github.com/YuzuJS/setImmediate.git - │ └─ VendorName: YuzuJS - ├─ standalone-react-addons-pure-render-mixin@0.1.1 - │ └─ VendorName: Brandon Dail - ├─ string-width@2.1.1 - │ ├─ URL: https://github.com/sindresorhus/string-width.git - │ ├─ VendorName: Sindre Sorhus - │ └─ VendorUrl: sindresorhus.com - ├─ strip-ansi@3.0.1 - │ ├─ URL: https://github.com/chalk/strip-ansi.git - │ ├─ VendorName: Sindre Sorhus - │ └─ VendorUrl: sindresorhus.com - ├─ strip-ansi@4.0.0 - │ ├─ URL: https://github.com/chalk/strip-ansi.git - │ ├─ VendorName: Sindre Sorhus - │ └─ VendorUrl: sindresorhus.com - ├─ strip-indent@2.0.0 - │ ├─ URL: https://github.com/sindresorhus/strip-indent.git - │ ├─ VendorName: Sindre Sorhus - │ └─ VendorUrl: sindresorhus.com - ├─ styled-components@3.2.1 - │ ├─ URL: git+https://github.com/styled-components/styled-components.git - │ ├─ VendorName: Glen Maddern - │ └─ VendorUrl: https://styled-components.com/ - ├─ stylis-rule-sheet@0.0.8 - │ ├─ URL: https://github.com/thysultan/stylis.js - │ ├─ VendorName: Sultan Tarimo - │ └─ VendorUrl: https://github.com/thysultan/stylis.js - ├─ stylis@3.5.0 - │ ├─ URL: https://github.com/thysultan/stylis.js - │ ├─ VendorName: Sultan Tarimo - │ └─ VendorUrl: https://github.com/thysultan/stylis.js - ├─ suber@5.0.1 - │ ├─ URL: https://github.com/oskarhane/suber.git - │ ├─ VendorName: Oskar Hane - │ └─ VendorUrl: http://oskarhane.com/ - ├─ supports-color@2.0.0 - │ ├─ URL: https://github.com/chalk/supports-color.git - │ ├─ VendorName: Sindre Sorhus - │ └─ VendorUrl: sindresorhus.com - ├─ supports-color@3.2.3 - │ ├─ URL: https://github.com/chalk/supports-color.git - │ ├─ VendorName: Sindre Sorhus - │ └─ VendorUrl: sindresorhus.com - ├─ swipe-js-iso@2.0.4 - │ ├─ URL: git+https://github.com/voronianski/swipe-js-iso.git - │ └─ VendorUrl: https://github.com/voronianski/swipe-js-iso#readme - ├─ symbol-observable@1.0.1 - │ ├─ URL: https://github.com/blesh/symbol-observable.git - │ └─ VendorName: Ben Lesh - ├─ symbol-observable@1.0.4 - │ ├─ URL: https://github.com/blesh/symbol-observable.git - │ └─ VendorName: Ben Lesh - ├─ through@2.3.8 - │ ├─ URL: https://github.com/dominictarr/through.git - │ ├─ VendorName: Dominic Tarr - │ └─ VendorUrl: https://github.com/dominictarr/through - ├─ tmp@0.0.33 - │ ├─ URL: https://github.com/raszi/node-tmp.git - │ ├─ VendorName: KARASZI István - │ └─ VendorUrl: http://github.com/raszi/node-tmp - ├─ type-detect@4.0.3 - │ ├─ URL: git+ssh://git@github.com/chaijs/type-detect.git - │ ├─ VendorName: Jake Luer - │ └─ VendorUrl: http://alogicalparadox.com - ├─ url-parse@1.2.0 - │ ├─ URL: https://github.com/unshiftio/url-parse.git - │ └─ VendorName: Arnout Kazemier - ├─ uuid@3.2.1 - │ └─ URL: https://github.com/kelektiv/node-uuid.git - ├─ websocket-driver@0.7.0 - │ ├─ URL: git://github.com/faye/websocket-driver-node.git - │ ├─ VendorName: James Coglan - │ └─ VendorUrl: https://github.com/faye/websocket-driver-node - ├─ websocket-extensions@0.1.3 - │ ├─ URL: git://github.com/faye/websocket-extensions-node.git - │ ├─ VendorName: James Coglan - │ └─ VendorUrl: http://github.com/faye/websocket-extensions-node - ├─ whatwg-fetch@2.0.3 - │ └─ URL: https://github.com/github/fetch.git - ├─ xml2js@0.4.19 - │ ├─ URL: https://github.com/Leonidas-from-XIV/node-xml2js.git - │ ├─ VendorName: Marek Kubica - │ └─ VendorUrl: https://github.com/Leonidas-from-XIV/node-xml2js - ├─ xmlbuilder@9.0.4 - │ ├─ URL: git://github.com/oozcitak/xmlbuilder-js.git - │ ├─ VendorName: Ozgur Ozcitak - │ └─ VendorUrl: http://github.com/oozcitak/xmlbuilder-js - ├─ xmlhttprequest@1.8.0 - │ ├─ URL: git://github.com/driverdan/node-XMLHttpRequest.git - │ ├─ VendorName: Dan DeFelippi - │ └─ VendorUrl: http://driverdan.com - └─ xtend@4.0.1 - ├─ URL: git://github.com/Raynos/xtend.git - ├─ VendorName: Raynos - └─ VendorUrl: https://github.com/Raynos/xtend +│ └─ VendorUrl: https://github.com/yargs/y18n +├─ MIT +│ ├─ ajv@5.2.3 +│ │ ├─ URL: https://github.com/epoberezkin/ajv.git +│ │ ├─ VendorName: Evgeny Poberezkin +│ │ └─ VendorUrl: https://github.com/epoberezkin/ajv +│ ├─ ansi-regex@2.1.1 +│ │ ├─ URL: https://github.com/chalk/ansi-regex.git +│ │ ├─ VendorName: Sindre Sorhus +│ │ └─ VendorUrl: sindresorhus.com +│ ├─ asap@2.0.6 +│ │ └─ URL: https://github.com/kriskowal/asap.git +│ ├─ ascii-data-table@2.1.1 +│ │ ├─ URL: https://github.com/oskarhane/ascii-data-table.git +│ │ ├─ VendorName: Oskar Hane +│ │ └─ VendorUrl: http://oskarhane.com/ +│ ├─ asn1@0.2.3 +│ │ ├─ URL: git://github.com/mcavage/node-asn1.git +│ │ └─ VendorName: Mark Cavage +│ ├─ assert-plus@1.0.0 +│ │ ├─ URL: https://github.com/mcavage/node-assert-plus.git +│ │ └─ VendorName: Mark Cavage +│ ├─ assertion-error@1.1.0 +│ │ ├─ URL: git@github.com:chaijs/assertion-error.git +│ │ ├─ VendorName: Jake Luer +│ │ └─ VendorUrl: http://qualiancy.com +│ ├─ asynckit@0.4.0 +│ │ ├─ URL: git+https://github.com/alexindigo/asynckit.git +│ │ ├─ VendorName: Alex Indigo +│ │ └─ VendorUrl: https://github.com/alexindigo/asynckit#readme +│ ├─ attr-accept@1.1.2 +│ │ ├─ URL: https://github.com/okonet/attr-accept.git +│ │ ├─ VendorName: Andrey Okonetchnikov @okonetchnikov +│ │ └─ VendorUrl: https://github.com/okonet/attr-accept#readme +│ ├─ aws4@1.6.0 +│ │ ├─ URL: https://github.com/mhart/aws4.git +│ │ ├─ VendorName: Michael Hart +│ │ └─ VendorUrl: http://github.com/mhart +│ ├─ babel-runtime@6.26.0 +│ │ ├─ URL: https://github.com/babel/babel/tree/master/packages/babel-runtime +│ │ └─ VendorName: Sebastian McKenzie +│ ├─ balanced-match@1.0.0 +│ │ ├─ URL: git://github.com/juliangruber/balanced-match.git +│ │ ├─ VendorName: Julian Gruber +│ │ └─ VendorUrl: https://github.com/juliangruber/balanced-match +│ ├─ base64-js@1.3.0 +│ │ ├─ URL: git://github.com/beatgammit/base64-js.git +│ │ ├─ VendorName: T. Jameson Little +│ │ └─ VendorUrl: https://github.com/beatgammit/base64-js +│ ├─ brace-expansion@1.1.11 +│ │ ├─ URL: git://github.com/juliangruber/brace-expansion.git +│ │ ├─ VendorName: Julian Gruber +│ │ └─ VendorUrl: https://github.com/juliangruber/brace-expansion +│ ├─ buffer@5.1.0 +│ │ ├─ URL: git://github.com/feross/buffer.git +│ │ ├─ VendorName: Feross Aboukhadijeh +│ │ └─ VendorUrl: https://github.com/feross/buffer +│ ├─ camelcase@2.1.1 +│ │ ├─ URL: https://github.com/sindresorhus/camelcase.git +│ │ ├─ VendorName: Sindre Sorhus +│ │ └─ VendorUrl: http://sindresorhus.com +│ ├─ chai@4.1.2 +│ │ ├─ URL: https://github.com/chaijs/chai +│ │ ├─ VendorName: Jake Luer +│ │ └─ VendorUrl: http://chaijs.com/ +│ ├─ check-error@1.0.2 +│ │ ├─ URL: git+ssh://git@github.com/chaijs/check-error.git +│ │ ├─ VendorName: Jake Luer +│ │ └─ VendorUrl: http://alogicalparadox.com +│ ├─ ci-info@1.1.3 +│ │ ├─ URL: https://github.com/watson/ci-info.git +│ │ ├─ VendorName: Thomas Watson Steen +│ │ └─ VendorUrl: https://github.com/watson/ci-info +│ ├─ classnames@2.2.5 +│ │ ├─ URL: https://github.com/JedWatson/classnames.git +│ │ └─ VendorName: Jed Watson +│ ├─ co@4.6.0 +│ │ └─ URL: https://github.com/tj/co.git +│ ├─ code-point-at@1.1.0 +│ │ ├─ URL: https://github.com/sindresorhus/code-point-at.git +│ │ ├─ VendorName: Sindre Sorhus +│ │ └─ VendorUrl: sindresorhus.com +│ ├─ codemirror@5.30.0 +│ │ ├─ URL: https://github.com/codemirror/CodeMirror.git +│ │ └─ VendorUrl: http://codemirror.net/ +│ ├─ colour@0.7.1 +│ │ ├─ URL: https://github.com/dcodeIO/colour.js.git +│ │ └─ VendorName: Daniel Wirtz +│ ├─ combined-stream@1.0.6 +│ │ ├─ URL: git://github.com/felixge/node-combined-stream.git +│ │ ├─ VendorName: Felix Geisendörfer +│ │ └─ VendorUrl: https://github.com/felixge/node-combined-stream +│ ├─ concat-map@0.0.1 +│ │ ├─ URL: git://github.com/substack/node-concat-map.git +│ │ ├─ VendorName: James Halliday +│ │ └─ VendorUrl: http://substack.net +│ ├─ core-js@1.2.7 +│ │ └─ URL: https://github.com/zloirock/core-js.git +│ ├─ core-js@2.5.1 +│ │ └─ URL: https://github.com/zloirock/core-js.git +│ ├─ core-js@2.5.5 +│ │ └─ URL: https://github.com/zloirock/core-js.git +│ ├─ core-js@2.5.6 +│ │ └─ URL: https://github.com/zloirock/core-js.git +│ ├─ core-util-is@1.0.2 +│ │ ├─ URL: git://github.com/isaacs/core-util-is +│ │ ├─ VendorName: Isaac Z. Schlueter +│ │ └─ VendorUrl: http://blog.izs.me/ +│ ├─ css-to-react-native@2.2.0 +│ │ ├─ URL: git+https://github.com/styled-components/css-to-react-native.git +│ │ ├─ VendorName: Jacob Parker +│ │ └─ VendorUrl: https://github.com/styled-components/css-to-react-native#readme +│ ├─ dashdash@1.14.1 +│ │ ├─ URL: git://github.com/trentm/node-dashdash.git +│ │ ├─ VendorName: Trent Mick +│ │ └─ VendorUrl: http://trentm.com +│ ├─ debug@2.6.9 +│ │ ├─ URL: git://github.com/visionmedia/debug.git +│ │ └─ VendorName: TJ Holowaychuk +│ ├─ decamelize@1.2.0 +│ │ ├─ URL: https://github.com/sindresorhus/decamelize.git +│ │ ├─ VendorName: Sindre Sorhus +│ │ └─ VendorUrl: sindresorhus.com +│ ├─ deep-eql@3.0.1 +│ │ ├─ URL: git@github.com:chaijs/deep-eql.git +│ │ └─ VendorName: Jake Luer +│ ├─ deep-extend@0.5.1 +│ │ ├─ URL: git://github.com/unclechu/node-deep-extend.git +│ │ ├─ VendorName: Viacheslav Lotsmanov +│ │ └─ VendorUrl: https://github.com/unclechu/node-deep-extend +│ ├─ delayed-stream@1.0.0 +│ │ ├─ URL: git://github.com/felixge/node-delayed-stream.git +│ │ ├─ VendorName: Felix Geisendörfer +│ │ └─ VendorUrl: https://github.com/felixge/node-delayed-stream +│ ├─ delegates@1.0.0 +│ │ └─ URL: https://github.com/visionmedia/node-delegates.git +│ ├─ ecc-jsbn@0.1.1 +│ │ ├─ URL: https://github.com/quartzjer/ecc-jsbn.git +│ │ ├─ VendorName: Jeremie Miller +│ │ └─ VendorUrl: https://github.com/quartzjer/ecc-jsbn +│ ├─ encoding@0.1.12 +│ │ ├─ URL: https://github.com/andris9/encoding.git +│ │ └─ VendorName: Andris Reinman +│ ├─ extend@3.0.1 +│ │ ├─ URL: https://github.com/justmoon/node-extend.git +│ │ ├─ VendorName: Stefan Thomas +│ │ └─ VendorUrl: http://www.justmoon.net +│ ├─ extsprintf@1.3.0 +│ │ └─ URL: git://github.com/davepacheco/node-extsprintf.git +│ ├─ extsprintf@1.4.0 +│ │ └─ URL: git://github.com/davepacheco/node-extsprintf.git +│ ├─ fast-deep-equal@1.1.0 +│ │ ├─ URL: git+https://github.com/epoberezkin/fast-deep-equal.git +│ │ ├─ VendorName: Evgeny Poberezkin +│ │ └─ VendorUrl: https://github.com/epoberezkin/fast-deep-equal#readme +│ ├─ faye-websocket@0.11.1 +│ │ ├─ URL: git://github.com/faye/faye-websocket-node.git +│ │ ├─ VendorName: James Coglan +│ │ └─ VendorUrl: https://github.com/faye/faye-websocket-node +│ ├─ fbjs@0.8.16 +│ │ └─ URL: https://github.com/facebook/fbjs.git +│ ├─ file-saver@1.3.8 +│ │ ├─ URL: git+https://github.com/eligrey/FileSaver.js.git +│ │ ├─ VendorName: Eli Grey +│ │ └─ VendorUrl: https://github.com/eligrey/FileSaver.js#readme +│ ├─ form-data@2.3.1 +│ │ ├─ URL: git://github.com/form-data/form-data.git +│ │ ├─ VendorName: Felix Geisendörfer +│ │ └─ VendorUrl: http://debuggable.com/ +│ ├─ fuzzaldrin@2.1.0 +│ │ ├─ URL: https://github.com/atom/fuzzaldrin.git +│ │ └─ VendorUrl: http://atom.github.io/fuzzaldrin +│ ├─ get-func-name@2.0.0 +│ │ ├─ URL: git+ssh://git@github.com/chaijs/get-func-name.git +│ │ ├─ VendorName: Jake Luer +│ │ └─ VendorUrl: http://alogicalparadox.com +│ ├─ getpass@0.1.7 +│ │ ├─ URL: https://github.com/arekinath/node-getpass.git +│ │ └─ VendorName: Alex Wilson +│ ├─ has-flag@1.0.0 +│ │ ├─ URL: https://github.com/sindresorhus/has-flag.git +│ │ ├─ VendorName: Sindre Sorhus +│ │ └─ VendorUrl: sindresorhus.com +│ ├─ http-parser-js@0.4.13 +│ │ ├─ URL: git://github.com/creationix/http-parser-js.git +│ │ ├─ VendorName: Tim Caswell +│ │ └─ VendorUrl: https://github.com/creationix +│ ├─ http-signature@1.2.0 +│ │ ├─ URL: git://github.com/joyent/node-http-signature.git +│ │ ├─ VendorName: Joyent, Inc +│ │ └─ VendorUrl: https://github.com/joyent/node-http-signature/ +│ ├─ husky@0.14.3 +│ │ ├─ URL: git://github.com/typicode/husky.git +│ │ ├─ VendorName: Typicode +│ │ └─ VendorUrl: https://github.com/typicode/husky +│ ├─ iconv-lite@0.4.23 +│ │ ├─ URL: git://github.com/ashtuchkin/iconv-lite.git +│ │ ├─ VendorName: Alexander Shtuchkin +│ │ └─ VendorUrl: https://github.com/ashtuchkin/iconv-lite +│ ├─ invariant@2.2.4 +│ │ ├─ URL: https://github.com/zertosh/invariant +│ │ └─ VendorName: Andres Suarez +│ ├─ invert-kv@1.0.0 +│ │ ├─ URL: https://github.com/sindresorhus/invert-kv.git +│ │ ├─ VendorName: Sindre Sorhus +│ │ └─ VendorUrl: http://sindresorhus.com +│ ├─ is-ci@1.0.10 +│ │ ├─ URL: https://github.com/watson/is-ci.git +│ │ ├─ VendorName: Thomas Watson Steen +│ │ └─ VendorUrl: https://github.com/watson/is-ci +│ ├─ is-fullwidth-code-point@1.0.0 +│ │ ├─ URL: https://github.com/sindresorhus/is-fullwidth-code-point.git +│ │ ├─ VendorName: Sindre Sorhus +│ │ └─ VendorUrl: sindresorhus.com +│ ├─ is-plain-object@2.0.4 +│ │ ├─ URL: https://github.com/jonschlinkert/is-plain-object.git +│ │ ├─ VendorName: Jon Schlinkert +│ │ └─ VendorUrl: https://github.com/jonschlinkert/is-plain-object +│ ├─ is-stream@1.1.0 +│ │ ├─ URL: https://github.com/sindresorhus/is-stream.git +│ │ ├─ VendorName: Sindre Sorhus +│ │ └─ VendorUrl: sindresorhus.com +│ ├─ is-typedarray@1.0.0 +│ │ ├─ URL: git://github.com/hughsk/is-typedarray.git +│ │ ├─ VendorName: Hugh Kennedy +│ │ └─ VendorUrl: https://github.com/hughsk/is-typedarray +│ ├─ isarray@1.0.0 +│ │ ├─ URL: git://github.com/juliangruber/isarray.git +│ │ ├─ VendorName: Julian Gruber +│ │ └─ VendorUrl: https://github.com/juliangruber/isarray +│ ├─ isobject@3.0.1 +│ │ ├─ URL: https://github.com/jonschlinkert/isobject.git +│ │ ├─ VendorName: Jon Schlinkert +│ │ └─ VendorUrl: https://github.com/jonschlinkert/isobject +│ ├─ isomorphic-fetch@2.2.1 +│ │ ├─ URL: https://github.com/matthew-andrews/isomorphic-fetch.git +│ │ ├─ VendorName: Matt Andrews +│ │ └─ VendorUrl: https://github.com/matthew-andrews/isomorphic-fetch/issues +│ ├─ isstream@0.1.2 +│ │ ├─ URL: https://github.com/rvagg/isstream.git +│ │ ├─ VendorName: Rod Vagg +│ │ └─ VendorUrl: https://github.com/rvagg/isstream +│ ├─ js-tokens@3.0.2 +│ │ ├─ URL: https://github.com/lydell/js-tokens.git +│ │ └─ VendorName: Simon Lydell +│ ├─ jsbn@0.1.1 +│ │ ├─ URL: https://github.com/andyperlitch/jsbn.git +│ │ └─ VendorName: Tom Wu +│ ├─ json-schema-traverse@0.3.1 +│ │ ├─ URL: git+https://github.com/epoberezkin/json-schema-traverse.git +│ │ ├─ VendorName: Evgeny Poberezkin +│ │ └─ VendorUrl: https://github.com/epoberezkin/json-schema-traverse#readme +│ ├─ json-stable-stringify@1.0.1 +│ │ ├─ URL: git://github.com/substack/json-stable-stringify.git +│ │ ├─ VendorName: James Halliday +│ │ └─ VendorUrl: https://github.com/substack/json-stable-stringify +│ ├─ jsonic@0.3.0 +│ │ ├─ URL: git://github.com/rjrodger/jsonic.git +│ │ ├─ VendorName: Richard Rodger +│ │ └─ VendorUrl: https://github.com/rjrodger/jsonic +│ ├─ jsprim@1.4.1 +│ │ └─ URL: git://github.com/joyent/node-jsprim.git +│ ├─ lcid@1.0.0 +│ │ ├─ URL: https://github.com/sindresorhus/lcid.git +│ │ ├─ VendorName: Sindre Sorhus +│ │ └─ VendorUrl: sindresorhus.com +│ ├─ lodash-es@4.17.10 +│ │ ├─ URL: https://github.com/lodash/lodash.git +│ │ ├─ VendorName: John-David Dalton +│ │ └─ VendorUrl: https://lodash.com/custom-builds +│ ├─ lodash.debounce@4.0.8 +│ │ ├─ URL: https://github.com/lodash/lodash.git +│ │ ├─ VendorName: John-David Dalton +│ │ └─ VendorUrl: https://lodash.com/ +│ ├─ lodash@4.17.10 +│ │ ├─ URL: https://github.com/lodash/lodash.git +│ │ ├─ VendorName: John-David Dalton +│ │ └─ VendorUrl: https://lodash.com/ +│ ├─ lodash@4.17.4 +│ │ ├─ URL: https://github.com/lodash/lodash.git +│ │ ├─ VendorName: John-David Dalton +│ │ └─ VendorUrl: https://lodash.com/ +│ ├─ loose-envify@1.3.1 +│ │ ├─ URL: git://github.com/zertosh/loose-envify.git +│ │ ├─ VendorName: Andres Suarez +│ │ └─ VendorUrl: https://github.com/zertosh/loose-envify +│ ├─ mime-db@1.30.0 +│ │ └─ URL: https://github.com/jshttp/mime-db.git +│ ├─ mime-db@1.33.0 +│ │ └─ URL: https://github.com/jshttp/mime-db.git +│ ├─ mime-types@2.1.17 +│ │ └─ URL: https://github.com/jshttp/mime-types.git +│ ├─ mime-types@2.1.18 +│ │ └─ URL: https://github.com/jshttp/mime-types.git +│ ├─ minimist@0.0.8 +│ │ ├─ URL: git://github.com/substack/minimist.git +│ │ ├─ VendorName: James Halliday +│ │ └─ VendorUrl: https://github.com/substack/minimist +│ ├─ minimist@1.2.0 +│ │ ├─ URL: git://github.com/substack/minimist.git +│ │ ├─ VendorName: James Halliday +│ │ └─ VendorUrl: https://github.com/substack/minimist +│ ├─ mkdirp@0.5.1 +│ │ ├─ URL: https://github.com/substack/node-mkdirp.git +│ │ ├─ VendorName: James Halliday +│ │ └─ VendorUrl: http://substack.net +│ ├─ ms@2.0.0 +│ │ └─ URL: https://github.com/zeit/ms.git +│ ├─ nan@2.10.0 +│ │ └─ URL: git://github.com/nodejs/nan.git +│ ├─ node-fetch@1.7.3 +│ │ ├─ URL: https://github.com/bitinn/node-fetch.git +│ │ ├─ VendorName: David Frank +│ │ └─ VendorUrl: https://github.com/bitinn/node-fetch +│ ├─ normalize-path@1.0.0 +│ │ ├─ URL: git://github.com/jonschlinkert/normalize-path.git +│ │ ├─ VendorName: Jon Schlinkert +│ │ └─ VendorUrl: https://github.com/jonschlinkert/normalize-path +│ ├─ number-is-nan@1.0.1 +│ │ ├─ URL: https://github.com/sindresorhus/number-is-nan.git +│ │ ├─ VendorName: Sindre Sorhus +│ │ └─ VendorUrl: sindresorhus.com +│ ├─ object-assign@4.1.1 +│ │ ├─ URL: https://github.com/sindresorhus/object-assign.git +│ │ ├─ VendorName: Sindre Sorhus +│ │ └─ VendorUrl: sindresorhus.com +│ ├─ optjs@3.2.2 +│ │ ├─ URL: https://github.com/dcodeIO/opt.js.git +│ │ └─ VendorName: Daniel Wirtz +│ ├─ os-homedir@1.0.2 +│ │ ├─ URL: https://github.com/sindresorhus/os-homedir.git +│ │ ├─ VendorName: Sindre Sorhus +│ │ └─ VendorUrl: sindresorhus.com +│ ├─ os-locale@1.4.0 +│ │ ├─ URL: https://github.com/sindresorhus/os-locale.git +│ │ ├─ VendorName: Sindre Sorhus +│ │ └─ VendorUrl: sindresorhus.com +│ ├─ os-tmpdir@1.0.2 +│ │ ├─ URL: https://github.com/sindresorhus/os-tmpdir.git +│ │ ├─ VendorName: Sindre Sorhus +│ │ └─ VendorUrl: sindresorhus.com +│ ├─ path-is-absolute@1.0.1 +│ │ ├─ URL: https://github.com/sindresorhus/path-is-absolute.git +│ │ ├─ VendorName: Sindre Sorhus +│ │ └─ VendorUrl: sindresorhus.com +│ ├─ pathval@1.1.0 +│ │ ├─ URL: git+ssh://git@github.com/chaijs/pathval.git +│ │ ├─ VendorName: Veselin Todorov +│ │ └─ VendorUrl: https://github.com/chaijs/pathval +│ ├─ performance-now@2.1.0 +│ │ ├─ URL: git://github.com/braveg1rl/performance-now.git +│ │ ├─ VendorName: Braveg1rl +│ │ └─ VendorUrl: https://github.com/braveg1rl/performance-now +│ ├─ postcss-value-parser@3.3.0 +│ │ ├─ URL: https://github.com/TrySound/postcss-value-parser.git +│ │ ├─ VendorName: Bogdan Chadkin +│ │ └─ VendorUrl: https://github.com/TrySound/postcss-value-parser +│ ├─ process-nextick-args@2.0.0 +│ │ ├─ URL: https://github.com/calvinmetcalf/process-nextick-args.git +│ │ └─ VendorUrl: https://github.com/calvinmetcalf/process-nextick-args +│ ├─ promise-polyfill@7.1.2 +│ │ ├─ URL: https://github.com/taylorhakes/promise-polyfill.git +│ │ ├─ VendorName: Taylor Hakes +│ │ └─ VendorUrl: https://github.com/taylorhakes/promise-polyfill +│ ├─ promise@7.3.1 +│ │ ├─ URL: https://github.com/then/promise.git +│ │ └─ VendorName: ForbesLindesay +│ ├─ prop-types@15.6.1 +│ │ ├─ URL: https://github.com/facebook/prop-types.git +│ │ └─ VendorUrl: https://facebook.github.io/react/ +│ ├─ punycode@1.4.1 +│ │ ├─ URL: https://github.com/bestiejs/punycode.js.git +│ │ ├─ VendorName: Mathias Bynens +│ │ └─ VendorUrl: https://mths.be/punycode +│ ├─ punycode@2.1.0 +│ │ ├─ URL: https://github.com/bestiejs/punycode.js.git +│ │ ├─ VendorName: Mathias Bynens +│ │ └─ VendorUrl: https://mths.be/punycode +│ ├─ querystringify@2.0.0 +│ │ ├─ URL: https://github.com/unshiftio/querystringify +│ │ ├─ VendorName: Arnout Kazemier +│ │ └─ VendorUrl: https://github.com/unshiftio/querystringify +│ ├─ react-addons-pure-render-mixin@15.6.2 +│ │ └─ URL: https://github.com/facebook/react.git +│ ├─ react-dom@16.4.0 +│ │ ├─ URL: https://github.com/facebook/react.git +│ │ └─ VendorUrl: https://reactjs.org/ +│ ├─ react-dropzone@4.2.10 +│ │ ├─ URL: https://github.com/react-dropzone/react-dropzone.git +│ │ ├─ VendorName: Param Aggarwal +│ │ └─ VendorUrl: https://github.com/react-dropzone/react-dropzone +│ ├─ react-icon-base@2.1.0 +│ │ ├─ URL: git+ssh://git@github.com/gorangajic/react-icon-base.git +│ │ ├─ VendorName: Goran Gajic +│ │ └─ VendorUrl: https://github.com/gorangajic/react-icon-base#readme +│ ├─ react-icons@2.2.7 +│ │ ├─ URL: git+ssh://git@github.com/gorangajic/react-icons.git +│ │ ├─ VendorName: Goran Gajic +│ │ └─ VendorUrl: https://github.com/gorangajic/react-icons#readme +│ ├─ react-is@16.3.2 +│ │ ├─ URL: https://github.com/facebook/react.git +│ │ └─ VendorUrl: https://reactjs.org/ +│ ├─ react-redux@5.0.7 +│ │ ├─ URL: https://github.com/reactjs/react-redux.git +│ │ ├─ VendorName: Dan Abramov +│ │ └─ VendorUrl: https://github.com/gaearon/react-redux +│ ├─ react-suber@1.0.4 +│ │ ├─ URL: https://github.com/oskarhane/react-suber.git +│ │ ├─ VendorName: Oskar Hane +│ │ └─ VendorUrl: http://oskarhane.com/ +│ ├─ react-timeago@3.4.3 +│ │ ├─ URL: https://github.com/naman34/react-timeago.git +│ │ ├─ VendorName: Naman Goel +│ │ └─ VendorUrl: https://github.com/nmn/react-timeago +│ ├─ react@16.4.0 +│ │ ├─ URL: https://github.com/facebook/react.git +│ │ └─ VendorUrl: https://reactjs.org/ +│ ├─ readable-stream@2.3.6 +│ │ └─ URL: git://github.com/nodejs/readable-stream +│ ├─ redux-observable@0.16.0 +│ │ ├─ URL: git+https://github.com/redux-observable/redux-observable.git +│ │ └─ VendorUrl: https://github.com/redux-observable/redux-observable#README.md +│ ├─ redux@3.7.2 +│ │ ├─ URL: https://github.com/reactjs/redux.git +│ │ └─ VendorUrl: http://redux.js.org/ +│ ├─ regenerator-runtime@0.11.1 +│ │ ├─ URL: https://github.com/facebook/regenerator/tree/master/packages/regenerator-runtime +│ │ └─ VendorName: Ben Newman +│ ├─ requires-port@1.0.0 +│ │ ├─ URL: https://github.com/unshiftio/requires-port +│ │ ├─ VendorName: Arnout Kazemier +│ │ └─ VendorUrl: https://github.com/unshiftio/requires-port +│ ├─ safe-buffer@5.1.2 +│ │ ├─ URL: git://github.com/feross/safe-buffer.git +│ │ ├─ VendorName: Feross Aboukhadijeh +│ │ └─ VendorUrl: https://github.com/feross/safe-buffer +│ ├─ safer-buffer@2.1.2 +│ │ ├─ URL: git+https://github.com/ChALkeR/safer-buffer.git +│ │ ├─ VendorName: Nikita Skovoroda +│ │ └─ VendorUrl: https://github.com/ChALkeR +│ ├─ save-as@0.1.8 +│ │ ├─ URL: git+https://github.com/cchamberlain/save-as.git +│ │ ├─ VendorName: Cole Chamberlain +│ │ └─ VendorUrl: https://cchamberlain.github.io/save-as +│ ├─ setimmediate@1.0.5 +│ │ ├─ URL: https://github.com/YuzuJS/setImmediate.git +│ │ └─ VendorName: YuzuJS +│ ├─ sshpk@1.14.1 +│ │ ├─ URL: git+https://github.com/arekinath/node-sshpk.git +│ │ ├─ VendorName: Joyent, Inc +│ │ └─ VendorUrl: https://github.com/arekinath/node-sshpk#readme +│ ├─ string_decoder@1.1.1 +│ │ ├─ URL: git://github.com/nodejs/string_decoder.git +│ │ └─ VendorUrl: https://github.com/nodejs/string_decoder +│ ├─ string-width@1.0.2 +│ │ ├─ URL: https://github.com/sindresorhus/string-width.git +│ │ ├─ VendorName: Sindre Sorhus +│ │ └─ VendorUrl: sindresorhus.com +│ ├─ stringstream@0.0.5 +│ │ ├─ URL: https://github.com/mhart/StringStream.git +│ │ ├─ VendorName: Michael Hart +│ │ └─ VendorUrl: http://github.com/mhart +│ ├─ strip-ansi@3.0.1 +│ │ ├─ URL: https://github.com/chalk/strip-ansi.git +│ │ ├─ VendorName: Sindre Sorhus +│ │ └─ VendorUrl: sindresorhus.com +│ ├─ strip-indent@2.0.0 +│ │ ├─ URL: https://github.com/sindresorhus/strip-indent.git +│ │ ├─ VendorName: Sindre Sorhus +│ │ └─ VendorUrl: sindresorhus.com +│ ├─ strip-json-comments@2.0.1 +│ │ ├─ URL: https://github.com/sindresorhus/strip-json-comments.git +│ │ ├─ VendorName: Sindre Sorhus +│ │ └─ VendorUrl: sindresorhus.com +│ ├─ styled-components@3.2.6 +│ │ ├─ URL: git+https://github.com/styled-components/styled-components.git +│ │ ├─ VendorName: Glen Maddern +│ │ └─ VendorUrl: https://styled-components.com/ +│ ├─ stylis-rule-sheet@0.0.10 +│ │ ├─ URL: https://github.com/thysultan/stylis.js +│ │ ├─ VendorName: Sultan Tarimo +│ │ └─ VendorUrl: https://github.com/thysultan/stylis.js +│ ├─ stylis@3.5.0 +│ │ ├─ URL: https://github.com/thysultan/stylis.js +│ │ ├─ VendorName: Sultan Tarimo +│ │ └─ VendorUrl: https://github.com/thysultan/stylis.js +│ ├─ suber@5.0.1 +│ │ ├─ URL: https://github.com/oskarhane/suber.git +│ │ ├─ VendorName: Oskar Hane +│ │ └─ VendorUrl: http://oskarhane.com/ +│ ├─ supports-color@3.2.3 +│ │ ├─ URL: https://github.com/chalk/supports-color.git +│ │ ├─ VendorName: Sindre Sorhus +│ │ └─ VendorUrl: sindresorhus.com +│ ├─ swipe-js-iso@2.0.4 +│ │ ├─ URL: git+https://github.com/voronianski/swipe-js-iso.git +│ │ └─ VendorUrl: https://github.com/voronianski/swipe-js-iso#readme +│ ├─ symbol-observable@1.0.1 +│ │ ├─ URL: https://github.com/blesh/symbol-observable.git +│ │ └─ VendorName: Ben Lesh +│ ├─ symbol-observable@1.2.0 +│ │ ├─ URL: https://github.com/blesh/symbol-observable.git +│ │ └─ VendorName: Ben Lesh +│ ├─ type-detect@4.0.8 +│ │ ├─ URL: git+ssh://git@github.com/chaijs/type-detect.git +│ │ ├─ VendorName: Jake Luer +│ │ └─ VendorUrl: http://alogicalparadox.com +│ ├─ url-parse@1.4.0 +│ │ ├─ URL: https://github.com/unshiftio/url-parse.git +│ │ └─ VendorName: Arnout Kazemier +│ ├─ util-deprecate@1.0.2 +│ │ ├─ URL: git://github.com/TooTallNate/util-deprecate.git +│ │ ├─ VendorName: Nathan Rajlich +│ │ └─ VendorUrl: https://github.com/TooTallNate/util-deprecate +│ ├─ uuid@3.1.0 +│ │ └─ URL: https://github.com/kelektiv/node-uuid.git +│ ├─ uuid@3.2.1 +│ │ └─ URL: https://github.com/kelektiv/node-uuid.git +│ ├─ verror@1.10.0 +│ │ └─ URL: git://github.com/davepacheco/node-verror.git +│ ├─ websocket-driver@0.7.0 +│ │ ├─ URL: git://github.com/faye/websocket-driver-node.git +│ │ ├─ VendorName: James Coglan +│ │ └─ VendorUrl: https://github.com/faye/websocket-driver-node +│ ├─ websocket-extensions@0.1.3 +│ │ ├─ URL: git://github.com/faye/websocket-extensions-node.git +│ │ ├─ VendorName: James Coglan +│ │ └─ VendorUrl: http://github.com/faye/websocket-extensions-node +│ ├─ whatwg-fetch@2.0.4 +│ │ └─ URL: https://github.com/github/fetch.git +│ ├─ window-size@0.1.4 +│ │ ├─ URL: https://github.com/jonschlinkert/window-size.git +│ │ ├─ VendorName: Jon Schlinkert +│ │ └─ VendorUrl: https://github.com/jonschlinkert/window-size +│ ├─ wrap-ansi@2.1.0 +│ │ ├─ URL: https://github.com/chalk/wrap-ansi.git +│ │ ├─ VendorName: Sindre Sorhus +│ │ └─ VendorUrl: sindresorhus.com +│ ├─ xml2js@0.4.19 +│ │ ├─ URL: https://github.com/Leonidas-from-XIV/node-xml2js.git +│ │ ├─ VendorName: Marek Kubica +│ │ └─ VendorUrl: https://github.com/Leonidas-from-XIV/node-xml2js +│ ├─ xmlbuilder@9.0.4 +│ │ ├─ URL: git://github.com/oozcitak/xmlbuilder-js.git +│ │ ├─ VendorName: Ozgur Ozcitak +│ │ └─ VendorUrl: http://github.com/oozcitak/xmlbuilder-js +│ ├─ xmlhttprequest@1.8.0 +│ │ ├─ URL: git://github.com/driverdan/node-XMLHttpRequest.git +│ │ ├─ VendorName: Dan DeFelippi +│ │ └─ VendorUrl: http://driverdan.com +│ └─ yargs@3.32.0 +│ ├─ URL: http://github.com/bcoe/yargs.git +│ ├─ VendorName: Alex Ford +│ └─ VendorUrl: http://CodeTunnel.com +├─ Public Domain +│ └─ jsonify@0.0.0 +│ ├─ URL: http://github.com/substack/jsonify.git +│ ├─ VendorName: Douglas Crockford +│ └─ VendorUrl: http://crockford.com/ +└─ Unlicense + └─ tweetnacl@0.14.5 + ├─ URL: https://github.com/dchest/tweetnacl-js.git + ├─ VendorName: TweetNaCl-js contributors + └─ VendorUrl: https://tweetnacl.js.org/ From 6e3065608180ed49f30ccda8f1f4f377ef515491 Mon Sep 17 00:00:00 2001 From: Oskar Hane Date: Fri, 15 Jun 2018 15:26:47 +0200 Subject: [PATCH 32/40] Add test for PlanView --- .../Stream/CypherFrame/PlanView.test.js | 93 +++++++++++++++++++ .../__snapshots__/PlanView.test.js.snap | 50 ++++++++++ 2 files changed, 143 insertions(+) create mode 100644 src/browser/modules/Stream/CypherFrame/PlanView.test.js create mode 100644 src/browser/modules/Stream/CypherFrame/__snapshots__/PlanView.test.js.snap diff --git a/src/browser/modules/Stream/CypherFrame/PlanView.test.js b/src/browser/modules/Stream/CypherFrame/PlanView.test.js new file mode 100644 index 00000000000..e2550bf264e --- /dev/null +++ b/src/browser/modules/Stream/CypherFrame/PlanView.test.js @@ -0,0 +1,93 @@ +/* + * Copyright (c) 2002-2018 "Neo4j, Inc" + * Network Engine for Objects in Lund AB [http://neotechnology.com] + * + * This file is part of Neo4j. + * + * Neo4j is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +/* global jest, describe, test, expect */ +import React from 'react' +import { render } from 'react-testing-library' +import { v1 as neo4j } from 'neo4j-driver-alias' + +import { PlanView, PlanStatusbar } from './PlanView' + +describe('PlanViews', () => { + describe('PlanView', () => { + test('displays plan view if it exists', () => { + // Given + const display = jest.fn() + global.neo = { + queryPlan: el => { + return { + display + } + } + } + const props = { + query: 'MATCH xx0', + result: { + summary: { + plan: { + dbHits: 'xx0', + arguments: {}, + children: [] + } + } + } + } + + // When + render() + + // Then + const calls = display.mock.calls + const callObj = calls[0][0] + expect(callObj.root).toBeDefined() + expect(callObj.root.DbHits).toEqual('xx0') + }) + }) + describe('PlanStatusbar', () => { + test('displays statusBarMessage', () => { + // Given + const props = { + result: { + summary: { + resultAvailableAfter: neo4j.int(100), + resultConsumedAfter: neo4j.int(20), + profile: { + children: [], + arguments: { + operatorType: {}, + version: 'xx0', + planner: 'xx1', + runtime: 'xx2', + children: [] + }, + dbHits: 'xx3' + } + } + } + } + + // When + const { container } = render() + + // Then + expect(container).toMatchSnapshot() + }) + }) +}) diff --git a/src/browser/modules/Stream/CypherFrame/__snapshots__/PlanView.test.js.snap b/src/browser/modules/Stream/CypherFrame/__snapshots__/PlanView.test.js.snap new file mode 100644 index 00000000000..8b8f3b1a120 --- /dev/null +++ b/src/browser/modules/Stream/CypherFrame/__snapshots__/PlanView.test.js.snap @@ -0,0 +1,50 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`PlanViews PlanStatusbar displays statusBarMessage 1`] = ` +
    +
    +
    +
    + Cypher version: + xx0 + , planner: + xx1 + , runtime: + xx2 + . + xx3 total db hits in 120 ms. +
    +
    +
    +
      +
    • + +
    • +
    • + +
    • +
    +
    +
    +
    +`; From 5f46456cce474d87f86d29a1cb76dd183fc222d4 Mon Sep 17 00:00:00 2001 From: Oskar Hane Date: Fri, 15 Jun 2018 15:56:23 +0200 Subject: [PATCH 33/40] Add tests for ClickToCode --- .../__snapshots__/index.test.js.snap | 40 +++++ src/browser/modules/ClickToCode/index.jsx | 2 +- src/browser/modules/ClickToCode/index.test.js | 146 ++++++++++++++++++ 3 files changed, 187 insertions(+), 1 deletion(-) create mode 100644 src/browser/modules/ClickToCode/__snapshots__/index.test.js.snap create mode 100644 src/browser/modules/ClickToCode/index.test.js diff --git a/src/browser/modules/ClickToCode/__snapshots__/index.test.js.snap b/src/browser/modules/ClickToCode/__snapshots__/index.test.js.snap new file mode 100644 index 00000000000..00f13dac53b --- /dev/null +++ b/src/browser/modules/ClickToCode/__snapshots__/index.test.js.snap @@ -0,0 +1,40 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`ClickToCode does not render if no children 1`] = `
    `; + +exports[`ClickToCode renders all children 1`] = ` +
    + +
    + + hello + + hi! +
    +
    +
    +`; + +exports[`ClickToCode renders children as code if no code is provided 1`] = ` +
    + + hellohi! + +
    +`; + +exports[`ClickToCode renders code as the code when code is available 1`] = ` +
    + + hello + +
    +`; + +exports[`ClickToCode renders if no CodeComponent is provided 1`] = `
    `; diff --git a/src/browser/modules/ClickToCode/index.jsx b/src/browser/modules/ClickToCode/index.jsx index 96fb151c716..997c78e3603 100644 --- a/src/browser/modules/ClickToCode/index.jsx +++ b/src/browser/modules/ClickToCode/index.jsx @@ -37,7 +37,7 @@ export const ClickToCode = ({ children }) => { if (!children || children.length === 0) return null - code = code || children.join('') + code = code || children const fn = !execute ? () => setOnClick(bus, code) : () => execOnClick(bus, code) diff --git a/src/browser/modules/ClickToCode/index.test.js b/src/browser/modules/ClickToCode/index.test.js new file mode 100644 index 00000000000..d71d3ba8ef9 --- /dev/null +++ b/src/browser/modules/ClickToCode/index.test.js @@ -0,0 +1,146 @@ +/* + * Copyright (c) 2002-2018 "Neo4j, Inc" + * Network Engine for Objects in Lund AB [http://neotechnology.com] + * + * This file is part of Neo4j. + * + * Neo4j is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +/* global describe, beforeEach, afterEach, test, expect, jest, MouseEvent */ +import React from 'react' +import { render, fireEvent, Simulate } from 'react-testing-library' + +import { createBus } from 'suber' + +import { ClickToCode } from './index' +import { SET_CONTENT } from 'shared/modules/editor/editorDuck' + +describe('ClickToCode', () => { + let bus + beforeEach(() => { + bus = createBus() + }) + afterEach(() => { + bus.reset() + }) + test('does not render if no children', () => { + // Given + const myFn = jest.fn() + const MyComp = () => yo! + + // When + bus.take(SET_CONTENT, myFn) + const { container } = render( + + ) + + // Then + expect(container).toMatchSnapshot() + expect(myFn).toHaveBeenCalledTimes(0) + }) + test('renders if no CodeComponent is provided', () => { + // Given + const myFn = jest.fn() + + // When + bus.take(SET_CONTENT, myFn) + const { container } = render() + + // Then + expect(container).toMatchSnapshot() + expect(myFn).toHaveBeenCalledTimes(0) + }) + test('renders code as the code when code is available', () => { + // Given + const myFn = jest.fn() + const code = 'my code' + + // When + bus.take(SET_CONTENT, myFn) + const { container, getByText } = render( + + hello + + ) + + // Then + expect(container).toMatchSnapshot() + expect(myFn).toHaveBeenCalledTimes(0) + + // When + Simulate.click(getByText('hello')) + + // Then + expect(myFn).toHaveBeenCalledTimes(1) + expect(myFn).toHaveBeenCalledWith({ message: code, type: SET_CONTENT }) + }) + test('renders children as code if no code is provided', () => { + // Given + const myFn = jest.fn() + const childrenString = 'hellohi!' + + // When + bus.take(SET_CONTENT, myFn) + const { container, getByText } = render( + hellohi! + ) + + // Then + expect(container).toMatchSnapshot() + expect(myFn).toHaveBeenCalledTimes(0) + + // When + Simulate.click(getByText(childrenString)) + + // Then + expect(myFn).toHaveBeenCalledTimes(1) + expect(myFn).toHaveBeenCalledWith({ + message: childrenString, + type: SET_CONTENT + }) + }) + test('renders all children', () => { + // Given + const code = 'my code' + const myFn = jest.fn() + const children = ( +
    + hellohi! +
    + ) + + // When + bus.take(SET_CONTENT, myFn) + const { container, getByText } = render( + + {children} + + ) + + // Then + expect(container).toMatchSnapshot() + expect(myFn).toHaveBeenCalledTimes(0) + + // When + Simulate.click(getByText('hello')) + + // Then + expect(myFn).toHaveBeenCalledTimes(1) + expect(myFn).toHaveBeenCalledWith({ + message: code, + type: SET_CONTENT + }) + }) +}) From 3f36f8e52b77f8c86acccb13997a0a5810eb4da6 Mon Sep 17 00:00:00 2001 From: Oskar Hane Date: Fri, 15 Jun 2018 16:01:03 +0200 Subject: [PATCH 34/40] Fix scrolling stream to top --- src/browser/modules/Stream/Stream.jsx | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/src/browser/modules/Stream/Stream.jsx b/src/browser/modules/Stream/Stream.jsx index 122ff77f6c7..2487adf4e46 100644 --- a/src/browser/modules/Stream/Stream.jsx +++ b/src/browser/modules/Stream/Stream.jsx @@ -75,17 +75,26 @@ const getFrame = type => { } class Stream extends Component { + componentDidMount () { + this.base = React.createRef() + } + shouldComponentUpdate (props) { const frameHasBeenAdded = this.props.frames.length < props.frames.length - if (frameHasBeenAdded && this.props.scrollToTop && this.base) { - this.base.scrollTop = 0 + if ( + frameHasBeenAdded && + this.props.scrollToTop && + this.base && + this.base.current + ) { + this.base.current.scrollTop = 0 return true } return !deepEquals(props, this.props) } render () { return ( - + {this.props.frames.map(frame => { const frameProps = { frame, From dc6ce26f8aa9dcae774f3b4b908aece22eed734f Mon Sep 17 00:00:00 2001 From: Oskar Hane Date: Fri, 15 Jun 2018 16:07:11 +0200 Subject: [PATCH 35/40] Bring back errorMessageFormatter tests --- .../Stream/errorMessageFormatter.test.js | 50 +++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 src/browser/modules/Stream/errorMessageFormatter.test.js diff --git a/src/browser/modules/Stream/errorMessageFormatter.test.js b/src/browser/modules/Stream/errorMessageFormatter.test.js new file mode 100644 index 00000000000..7cdf73d54a0 --- /dev/null +++ b/src/browser/modules/Stream/errorMessageFormatter.test.js @@ -0,0 +1,50 @@ +/* + * Copyright (c) 2002-2018 "Neo4j, Inc" + * Network Engine for Objects in Lund AB [http://neotechnology.com] + * + * This file is part of Neo4j. + * + * Neo4j is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +/* global describe, test, expect */ + +import { errorMessageFormater } from './errorMessageFormater' + +describe('errorsHelper', () => { + test('should return error code as code and message when message is missing', () => { + const errorCode = 0 + const error = errorMessageFormater(errorCode) + + expect(error.title.trim()).toEqual(errorCode.toString()) + expect(error.message.trim()).toEqual(errorCode.toString()) + }) + test('should return error code and message', () => { + const errorCode = 0 + const errorText = 'foobar' + const error = errorMessageFormater(errorCode, errorText) + + expect(error.title.trim()).toContain(errorCode.toString()) + expect(error.title.trim()).toContain(errorText) + expect(error.message.trim()).toContain(errorText) + }) + test('should only return error message when error code is missing', () => { + const errorCode = null + const errorText = 'foobar' + const error = errorMessageFormater(errorCode, errorText) + + expect(error.title).toBe(errorText) + expect(error.message).toBe(errorText) + }) +}) From 6461b8259ca80e0c7a9d343caaf012fe39cc203b Mon Sep 17 00:00:00 2001 From: Oskar Hane Date: Fri, 15 Jun 2018 21:20:24 +0200 Subject: [PATCH 36/40] Form handling for pw change and connect Replace formKeyHandler and build a more reactish solution --- .../InputEnterStepping/InputEnterStepping.jsx | 55 +++++++ .../InputEnterStepping.test.js | 121 ++++++++++++++++ .../InputEnterStepping.test.js.snap | 38 +++++ src/browser/components/form/formKeyHandler.js | 60 -------- src/browser/modules/ClickToCode/index.test.js | 4 +- .../Stream/Auth/ChangePasswordForm.jsx | 135 ++++++++++++------ .../Stream/Auth/ChangePasswordFrame.jsx | 46 +----- .../modules/Stream/Auth/ConnectForm.jsx | 112 ++++++++------- .../modules/Stream/Auth/ConnectionForm.jsx | 13 +- 9 files changed, 383 insertions(+), 201 deletions(-) create mode 100644 src/browser/components/InputEnterStepping/InputEnterStepping.jsx create mode 100644 src/browser/components/InputEnterStepping/InputEnterStepping.test.js create mode 100644 src/browser/components/InputEnterStepping/__snapshots__/InputEnterStepping.test.js.snap delete mode 100644 src/browser/components/form/formKeyHandler.js diff --git a/src/browser/components/InputEnterStepping/InputEnterStepping.jsx b/src/browser/components/InputEnterStepping/InputEnterStepping.jsx new file mode 100644 index 00000000000..0d57d6a121d --- /dev/null +++ b/src/browser/components/InputEnterStepping/InputEnterStepping.jsx @@ -0,0 +1,55 @@ +import { Component } from 'react' + +export default class InputEnterStepping extends Component { + state = { + initial: true + } + steps = [] + getSubmitProps = () => { + return { + onClick: this.props.submitAction + } + } + getInputPropsForIndex = (i, props = {}) => { + this.steps[i] = this.steps[i] || {} + const out = { + ...props, + onKeyDown: e => { + // merge with users onKeyDown + this.onKeyDown(e, i) + props.onKeyDown && props.onKeyDown(e) + } + } + if (props.initialFocus) { + this.steps[i].focusOnRef = true + } + return out + } + onKeyDown = (e, i) => { + if (e.keyCode === 13) { + e.preventDefault() + if (i !== this.steps.length - 1) { + this.steps[i + 1].focusFn && this.steps[i + 1].focusFn() + } else { + this.props.submitAction && this.props.submitAction(e) + } + } + } + setRefForIndex = (i, ref) => { + this.steps[i] = this.steps[i] || {} + this.steps[i].focusFn = () => ref.focus() + if (this.state.initial && this.steps[i].focusOnRef) { + delete this.steps[i].focusOnRef + this.setState({ initial: false }, () => { + setTimeout(this.steps[i].focusFn, 0) + }) + } + } + render () { + return this.props.render({ + getInputPropsForIndex: this.getInputPropsForIndex, + getSubmitProps: this.getSubmitProps, + setRefForIndex: this.setRefForIndex + }) + } +} diff --git a/src/browser/components/InputEnterStepping/InputEnterStepping.test.js b/src/browser/components/InputEnterStepping/InputEnterStepping.test.js new file mode 100644 index 00000000000..752fab60109 --- /dev/null +++ b/src/browser/components/InputEnterStepping/InputEnterStepping.test.js @@ -0,0 +1,121 @@ +/* global jest */ + +import React from 'react' +import { render, Simulate } from 'react-testing-library' + +import InputEnterStepping from './InputEnterStepping' + +test('renders the render prop', () => { + // When + const { container } = render( + { + return
    hello
    + }} + /> + ) + + // Then + expect(container).toMatchSnapshot() +}) + +test('submits on enter in last input', async () => { + // Given + const myFn = jest.fn() + + // When + const { container, getByTestId } = render( + { + return ( + + setRefForIndex(0, ref) + })} + /> + setRefForIndex(1, ref) + })} + /> + + ) + }} + /> + ) + + // Then + expect(container).toMatchSnapshot() + + // When + // Enter in first should focus second + Simulate.keyDown(getByTestId('first'), { + key: 'Enter', + keyCode: 13, + which: 13 + }) + + // Then + expect(myFn).toHaveBeenCalledTimes(0) + + // When + // Enter in last should submit + Simulate.keyDown(getByTestId('second'), { + key: 'Enter', + keyCode: 13, + which: 13 + }) + + // Then + expect(myFn).toHaveBeenCalledTimes(1) +}) + +test('submits on button click', async () => { + // Given + const myFn = jest.fn() + + // When + const { container, getByText } = render( + { + return ( + + setRefForIndex(0, ref) + })} + /> + setRefForIndex(1, ref) + })} + /> + + + ) + }} + /> + ) + + // Then + expect(container).toMatchSnapshot() + expect(myFn).toHaveBeenCalledTimes(0) + + // When + // Click button! + Simulate.click(getByText('Send')) + + // Then + expect(myFn).toHaveBeenCalledTimes(1) +}) diff --git a/src/browser/components/InputEnterStepping/__snapshots__/InputEnterStepping.test.js.snap b/src/browser/components/InputEnterStepping/__snapshots__/InputEnterStepping.test.js.snap new file mode 100644 index 00000000000..f1dc03111bd --- /dev/null +++ b/src/browser/components/InputEnterStepping/__snapshots__/InputEnterStepping.test.js.snap @@ -0,0 +1,38 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`renders the render prop 1`] = ` +
    +
    + hello +
    +
    +`; + +exports[`submits on button click 1`] = ` +
    + + + +
    +`; + +exports[`submits on enter in last input 1`] = ` +
    + + +
    +`; diff --git a/src/browser/components/form/formKeyHandler.js b/src/browser/components/form/formKeyHandler.js deleted file mode 100644 index a7b7d98fae8..00000000000 --- a/src/browser/components/form/formKeyHandler.js +++ /dev/null @@ -1,60 +0,0 @@ -/* - * Copyright (c) 2002-2018 "Neo4j, Inc" - * Network Engine for Objects in Lund AB [http://neotechnology.com] - * - * This file is part of Neo4j. - * - * Neo4j is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -export default class FormKeyHandler { - constructor (submitAction) { - this.elements = {} - this.submitAction = submitAction - } - - initialize (focus = true) { - focus && this.elements[1] && this.elements[1].focus() - } - - registerInput (input, position) { - if (input) { - this.elements[position] = input - input.onkeypress = this.handleKeyPress.bind(this) - } - } - - registerSubmit (submitAction) { - this.submitAction = submitAction - } - - handleKeyPress (e) { - if (e.keyCode === 13) { - let currentPosition = null - - for (let key in this.elements) { - if (this.elements[key] === e.srcElement) { - currentPosition = key - break - } - } - - if (this.elements[+currentPosition + 1]) { - this.elements[+currentPosition + 1].focus() - } else { - this.submitAction(e) - } - } - } -} diff --git a/src/browser/modules/ClickToCode/index.test.js b/src/browser/modules/ClickToCode/index.test.js index d71d3ba8ef9..cc6b976300e 100644 --- a/src/browser/modules/ClickToCode/index.test.js +++ b/src/browser/modules/ClickToCode/index.test.js @@ -18,9 +18,9 @@ * along with this program. If not, see . */ -/* global describe, beforeEach, afterEach, test, expect, jest, MouseEvent */ +/* global describe, beforeEach, afterEach, test, expect, jest */ import React from 'react' -import { render, fireEvent, Simulate } from 'react-testing-library' +import { render, Simulate } from 'react-testing-library' import { createBus } from 'suber' diff --git a/src/browser/modules/Stream/Auth/ChangePasswordForm.jsx b/src/browser/modules/Stream/Auth/ChangePasswordForm.jsx index 7d0a12ded7a..1abb0cafe56 100644 --- a/src/browser/modules/Stream/Auth/ChangePasswordForm.jsx +++ b/src/browser/modules/Stream/Auth/ChangePasswordForm.jsx @@ -19,7 +19,6 @@ */ import React, { Component } from 'react' - import { FormButton } from 'browser-components/buttons' import { StyledConnectionForm, @@ -27,40 +26,34 @@ import { StyledConnectionLabel, StyledConnectionFormEntry } from './styled' -import FormKeyHandler from 'browser-components/form/formKeyHandler' +import Render from 'browser-components/Render' +import InputEnterStepping from 'browser-components/InputEnterStepping/InputEnterStepping' export default class ChangePasswordForm extends Component { constructor (props) { super(props) this.state = { + password: '', newPassword: '', newPassword2: '' } } - componentDidMount () { - this.formKeyHandler.initialize() - } - componentWillMount () { - if (!this.props.formKeyHandler) { - this.formKeyHandler = new FormKeyHandler(this.validateSame.bind(this)) - } else { - this.formKeyHandler = this.props.formKeyHandler - this.formKeyHandler.registerSubmit(this.validateSame.bind(this)) - } + onExistingPasswordChange = event => { + const password = event.target.value + this.setState({ password, error: {} }, () => this.onChange()) } - - onNewPasswordChange (event) { + onNewPasswordChange = event => { const newPassword = event.target.value this.setState({ newPassword, error: {} }, () => this.onChange()) } - onNewPasswordChange2 (event) { + onNewPasswordChange2 = event => { const newPassword2 = event.target.value this.setState({ newPassword2, error: {} }, () => this.onChange()) } - onChange () { + onChange = () => { this.props.onChange(this.state.newPassword, this.state.newPassword2) } - validateSame () { + validateSame = () => { if ( this.state.newPassword && this.state.newPassword !== '' && @@ -73,40 +66,88 @@ export default class ChangePasswordForm extends Component { } }) } - this.props.onChangePasswordClick({ newPassword: this.state.newPassword }) - } + if (this.props.showExistingPasswordInput && this.props.tryConnect) { + this.props.tryConnect(this.state.password, res => { + if (res.success) { + this.props.onChangePasswordClick({ + newPassword: this.state.newPassword + }) + return + } + this.props.onChangePasswordClick(res) + }) + } else { + this.props.onChangePasswordClick({ + newPassword: this.state.newPassword + }) + } + } render () { - const inputTabOffset = this.props.children.length + const indexStart = this.props.showExistingPasswordInput ? 1 : 0 return ( - {this.props.children} - - New password - - this.formKeyHandler.registerInput(el, 1 + inputTabOffset)} - type='password' - onChange={this.onNewPasswordChange.bind(this)} - value={this.state.newPassword} - /> - - - Repeat new password - - this.formKeyHandler.registerInput(el, 2 + inputTabOffset)} - type='password' - onChange={this.onNewPasswordChange2.bind(this)} - value={this.state.newPassword2} - /> - - { + return ( + + + + + Existing password + + setRefForIndex(0, ref) + })} + /> + + + + New password + setRefForIndex(indexStart, ref) + })} + /> + + + + Repeat new password + + setRefForIndex(indexStart + 1, ref) + })} + /> + + + + ) + }} /> ) diff --git a/src/browser/modules/Stream/Auth/ChangePasswordFrame.jsx b/src/browser/modules/Stream/Auth/ChangePasswordFrame.jsx index 95059c42f8b..5068708fd95 100644 --- a/src/browser/modules/Stream/Auth/ChangePasswordFrame.jsx +++ b/src/browser/modules/Stream/Auth/ChangePasswordFrame.jsx @@ -26,14 +26,7 @@ import FrameError from '../FrameError' import Render from 'browser-components/Render' import { H3 } from 'browser-components/headers' import { Lead } from 'browser-components/Text' -import { - StyledConnectionFrame, - StyledConnectionAside, - StyledConnectionTextInput, - StyledConnectionLabel, - StyledConnectionFormEntry -} from './styled' -import FormKeyHandler from 'browser-components/form/formKeyHandler' +import { StyledConnectionFrame, StyledConnectionAside } from './styled' export class ChangePasswordFrame extends Component { constructor (props) { @@ -43,28 +36,16 @@ export class ChangePasswordFrame extends Component { ...connection, passwordChangeNeeded: false, error: {}, - password: '', success: false } } - componentWillMount () { - this.formKeyHandler = new FormKeyHandler() - } - componentDidMount () { - this.formKeyHandler.initialize() - } - error (e) { + error = e => { if (e.code === 'N/A') { e.message = 'Existing password is incorrect' } this.setState({ error: e }) } - onPasswordChange (event) { - const password = event.target.value - this.setState({ password }) - this.error({}) - } - onSuccess () { + onSuccess = () => { this.setState({ password: '' }) this.setState({ success: true }) } @@ -86,24 +67,11 @@ export class ChangePasswordFrame extends Component { - - - Existing password - this.formKeyHandler.registerInput(el, 1)} - type='password' - value={this.state.password} - onChange={this.onPasswordChange.bind(this)} - /> - - - + showExistingPasswordInput + /> ) return ( diff --git a/src/browser/modules/Stream/Auth/ConnectForm.jsx b/src/browser/modules/Stream/Auth/ConnectForm.jsx index 2d2043d8575..1b4fb30ac03 100644 --- a/src/browser/modules/Stream/Auth/ConnectForm.jsx +++ b/src/browser/modules/Stream/Auth/ConnectForm.jsx @@ -27,22 +27,13 @@ import { StyledConnectionLabel, StyledConnectionFormEntry } from './styled' -import FormKeyHandler from 'browser-components/form/formKeyHandler' +import InputEnterStepping from 'browser-components/InputEnterStepping/InputEnterStepping' export default class ConnectForm extends Component { - constructor (props) { - super(props) - this.state = { - connecting: false - } + state = { + connecting: false } - componentWillMount () { - this.formKeyHandler = new FormKeyHandler(this.onConnectClick.bind(this)) - } - componentDidMount () { - this.formKeyHandler.initialize(this.props.used === false) - } - onConnectClick () { + onConnectClick = () => { this.setState({ connecting: true }, () => { this.props.onConnectClick(() => this.setState({ connecting: false })) }) @@ -50,43 +41,64 @@ export default class ConnectForm extends Component { render () { return ( - - Host - this.formKeyHandler.registerInput(el, 1)} - onChange={this.props.onHostChange} - defaultValue={this.props.host} - /> - - - Username - this.formKeyHandler.registerInput(el, 2)} - onChange={this.props.onUsernameChange} - defaultValue={this.props.username} - /> - - - Password - this.formKeyHandler.registerInput(el, 3)} - onChange={this.props.onPasswordChange} - defaultValue={this.props.password} - type='password' - /> - - - - Connect - - - Connecting... + { + return ( + + + Host + setRefForIndex(0, ref) + })} + /> + + + + Username + setRefForIndex(1, ref) + })} + /> + + + + Password + setRefForIndex(2, ref) + })} + /> + + + + + Connect + + + Connecting... + + ) + }} + /> ) } diff --git a/src/browser/modules/Stream/Auth/ConnectionForm.jsx b/src/browser/modules/Stream/Auth/ConnectionForm.jsx index 6979786cfa9..ec7a73c51e2 100644 --- a/src/browser/modules/Stream/Auth/ConnectionForm.jsx +++ b/src/browser/modules/Stream/Auth/ConnectionForm.jsx @@ -59,7 +59,13 @@ export class ConnectionForm extends Component { storeCredentials: this.props.storeCredentials } } - connect (doneFn = () => {}) { + tryConnect = (password, doneFn) => { + this.props.error({}) + this.props.bus.self(CONNECT, { ...this.state, password }, res => { + doneFn(res) + }) + } + connect = (doneFn = () => {}) => { this.props.error({}) this.props.bus.self(CONNECT, this.state, res => { doneFn() @@ -93,7 +99,7 @@ export class ConnectionForm extends Component { }) this.props.error({}) } - onChangePasswordChange ({ newPassword1, newPassword2 }) { + onChangePasswordChange () { this.props.error({}) } onChangePassword ({ newPassword, error }) { @@ -163,9 +169,10 @@ export class ConnectionForm extends Component { ) { view = ( {this.props.children} From e034d7ad8feaf0b2ffbd0734cdf1a9a7549c73ac Mon Sep 17 00:00:00 2001 From: Oskar Hane Date: Mon, 18 Jun 2018 13:57:58 +0200 Subject: [PATCH 37/40] Fix bug when clicking the disconnected banner MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Editor wasn’t populated --- e2e_tests/integration/0.index.spec.js | 6 ++++++ src/browser/modules/ClickToCode/index.jsx | 15 ++++++++++++--- src/browser/modules/Main/Main.jsx | 5 ++++- 3 files changed, 22 insertions(+), 4 deletions(-) diff --git a/e2e_tests/integration/0.index.spec.js b/e2e_tests/integration/0.index.spec.js index 13b5f5fcafb..6cb0e58933d 100644 --- a/e2e_tests/integration/0.index.spec.js +++ b/e2e_tests/integration/0.index.spec.js @@ -23,6 +23,7 @@ const Carousel = '[data-test-id="carousel"]' const SubmitQueryButton = '[data-test-id="submitQuery"]' const Editor = '.ReactCodeMirror textarea' +const ClearEditorButton = '[data-test-id="clearEditorContent"]' describe('Neo4j Browser', () => { it('sets new login credentials', () => { @@ -30,6 +31,11 @@ describe('Neo4j Browser', () => { cy.setInitialPassword(newPassword) cy.disconnect() }) + it('populates the editor when clicking the connect banner', () => { + cy.get('[data-test-id="disconnectedBannerCode"]').click() + cy.get('.ReactCodeMirror').should('contain', ':server connect') + cy.get(ClearEditorButton).click() + }) it('can connect', () => { const password = Cypress.env('browser-password') || 'newpassword' cy.connect('neo4j', password) diff --git a/src/browser/modules/ClickToCode/index.jsx b/src/browser/modules/ClickToCode/index.jsx index 997c78e3603..8941be4ede2 100644 --- a/src/browser/modules/ClickToCode/index.jsx +++ b/src/browser/modules/ClickToCode/index.jsx @@ -23,7 +23,10 @@ import { SET_CONTENT, setContent } from 'shared/modules/editor/editorDuck' import { StyledCodeBlock } from './styled' import { executeCommand } from 'shared/modules/commands/commandsDuck' -const setOnClick = (bus, code) => bus.send(SET_CONTENT, setContent(code)) +const setOnClick = (bus, code) => { + code = Array.isArray(code) ? code.join('') : code + bus.send(SET_CONTENT, setContent(code)) +} const execOnClick = (bus, code) => { const cmd = executeCommand(code) bus.send(cmd.type, cmd) @@ -34,14 +37,20 @@ export const ClickToCode = ({ bus, code, execute = false, - children + children, + className, + ...rest }) => { if (!children || children.length === 0) return null code = code || children const fn = !execute ? () => setOnClick(bus, code) : () => execOnClick(bus, code) - return {children} + return ( + + {children} + + ) } export default withBus(ClickToCode) diff --git a/src/browser/modules/Main/Main.jsx b/src/browser/modules/Main/Main.jsx index 2fdedaaee65..9d8a06db055 100644 --- a/src/browser/modules/Main/Main.jsx +++ b/src/browser/modules/Main/Main.jsx @@ -57,7 +57,10 @@ const Main = props => { Database access not available. Please use  - + {props.cmdchar}server connect   to establish connection. There's a graph waiting for you. From 375c1177a49b854efbee40a0eb62b472de29deea Mon Sep 17 00:00:00 2001 From: Oskar Hane Date: Tue, 19 Jun 2018 09:07:40 +0200 Subject: [PATCH 38/40] Update react-testing-library and adapt tests to breaking changes --- package.json | 32 +++++++++++-------- .../DesktopIntegration/index.test.js | 4 ++- src/browser/components/Directives.test.js | 4 ++- src/browser/components/Display.test.js | 4 ++- .../InputEnterStepping.test.js | 16 ++++------ .../InputEnterStepping.test.js.snap | 4 --- src/browser/components/Render/index.test.js | 4 ++- src/browser/modules/ClickToCode/index.test.js | 10 +++--- .../Stream/CypherFrame/AsciiView.test.js | 4 ++- .../Stream/CypherFrame/CodeView.test.js | 4 ++- .../Stream/CypherFrame/ErrorsView.test.js | 4 ++- .../Stream/CypherFrame/PlanView.test.js | 4 ++- .../Stream/CypherFrame/TableView.test.js | 4 ++- .../Stream/CypherFrame/WarningsView.test.js | 4 ++- src/browser/modules/Stream/HistoryRow.test.js | 6 ++-- .../modules/Stream/SysInfoFrame/index.jsx | 2 +- .../modules/Stream/SysInfoFrame/index.test.js | 12 +++++-- yarn.lock | 20 ++++++------ 18 files changed, 86 insertions(+), 56 deletions(-) diff --git a/package.json b/package.json index 63a19554710..0f267e103f0 100644 --- a/package.json +++ b/package.json @@ -15,10 +15,8 @@ "apiVersion": "^1.2.0" }, "scripts": { - "start": - "webpack-dashboard -t 'Neo4j Browser' -- webpack-dev-server --colors --no-info", - "starts": - "webpack-dashboard -t 'Neo4j Browser' -- webpack-dev-server --https --colors --no-info", + "start": "webpack-dashboard -t 'Neo4j Browser' -- webpack-dev-server --colors --no-info", + "starts": "webpack-dashboard -t 'Neo4j Browser' -- webpack-dev-server --https --colors --no-info", "startnodash": "webpack-dev-server --colors --no-info", "precommit": "lint-staged", "format": "prettier-eslint 'src/**/!(*.min).js' 'src/**/*.jsx' --write", @@ -31,29 +29,37 @@ "build": "rm -rf ./dist && NODE_ENV=\"production\" webpack", "prepare-jar": "node ./scripts/prepare-mvn-package.js", "jar": "yarn build && mvn package", - "version-pom": - "node ./scripts/set-pom-version.js -f ./pom.xml -v $npm_package_version", + "version-pom": "node ./scripts/set-pom-version.js -f ./pom.xml -v $npm_package_version", "version": "npm run version-pom && git add ./pom.xml", "update-licenses": "sh ./scripts/generate_licenses.sh" }, "lint-staged": { "linters": { - "*.{js,jsx}": ["prettier-eslint --write", "git add"] + "*.{js,jsx}": [ + "prettier-eslint --write", + "git add" + ] } }, "jest": { - "setupFiles": ["raf/polyfill.js"], - "testPathIgnorePatterns": ["/e2e_tests/"], + "setupFiles": [ + "raf/polyfill.js" + ], + "testPathIgnorePatterns": [ + "/e2e_tests/" + ], "moduleNameMapper": { - "\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga|html)$": - "/__mocks__/fileMock.js", + "\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga|html)$": "/__mocks__/fileMock.js", "\\.(css|less)$": "/__mocks__/styleMock.js", "^neo4j-driver-alias$": "neo4j-driver", "^browser-styles(.*)$": "/src/browser/styles$1", "^browser-components(.*)$": "/src/browser/components$1", "worker-loader": "/__mocks__/workerLoaderMock.js" }, - "modulePaths": ["/src", "/src/shared"] + "modulePaths": [ + "/src", + "/src/shared" + ] }, "devDependencies": { "autoprefixer": "^7.1.4", @@ -103,7 +109,7 @@ "prettier-eslint-cli": "^4.3.0", "raf": "^3.4.0", "react-hot-loader": "^1.3.0", - "react-testing-library": "^3.1.7", + "react-testing-library": "^4.0.1", "redux-devtools": "^3.2.0", "redux-devtools-dock-monitor": "^1.1.1", "redux-devtools-log-monitor": "^1.0.11", diff --git a/src/browser/components/DesktopIntegration/index.test.js b/src/browser/components/DesktopIntegration/index.test.js index 8f25d4e6329..50a52321f40 100644 --- a/src/browser/components/DesktopIntegration/index.test.js +++ b/src/browser/components/DesktopIntegration/index.test.js @@ -21,9 +21,11 @@ /* global test, expect, jest */ import React from 'react' -import { render, wait } from 'react-testing-library' +import { render, wait, cleanup } from 'react-testing-library' import DesktopIntegration from './index' +afterEach(cleanup) + describe('', () => { test('does not render anything if no integration point', () => { // Given diff --git a/src/browser/components/Directives.test.js b/src/browser/components/Directives.test.js index fe89fd68794..fdb056726b6 100644 --- a/src/browser/components/Directives.test.js +++ b/src/browser/components/Directives.test.js @@ -20,9 +20,11 @@ /* global test, expect, jest, MouseEvent */ import React from 'react' -import { render, fireEvent } from 'react-testing-library' +import { render, fireEvent, cleanup } from 'react-testing-library' import { Directives as DirectivesComponent } from './Directives' +afterEach(cleanup) + describe('Directives', () => { test('should attach play topic directive when contents has a play-topic attribute', () => { // Given diff --git a/src/browser/components/Display.test.js b/src/browser/components/Display.test.js index 2bf1a65c57c..959b28332fc 100644 --- a/src/browser/components/Display.test.js +++ b/src/browser/components/Display.test.js @@ -21,10 +21,12 @@ /* global describe, test, expect */ import React from 'react' -import { render } from 'react-testing-library' +import { render, cleanup } from 'react-testing-library' import Display from './Display' +afterEach(cleanup) + describe('', () => { test('hides if condition is false', () => { // Given diff --git a/src/browser/components/InputEnterStepping/InputEnterStepping.test.js b/src/browser/components/InputEnterStepping/InputEnterStepping.test.js index 752fab60109..102292bd9b7 100644 --- a/src/browser/components/InputEnterStepping/InputEnterStepping.test.js +++ b/src/browser/components/InputEnterStepping/InputEnterStepping.test.js @@ -1,10 +1,12 @@ /* global jest */ import React from 'react' -import { render, Simulate } from 'react-testing-library' +import { render, fireEvent, cleanup } from 'react-testing-library' import InputEnterStepping from './InputEnterStepping' +afterEach(cleanup) + test('renders the render prop', () => { // When const { container } = render( @@ -24,7 +26,7 @@ test('submits on enter in last input', async () => { const myFn = jest.fn() // When - const { container, getByTestId } = render( + const { container, getByValue } = render( { @@ -32,14 +34,12 @@ test('submits on enter in last input', async () => { setRefForIndex(0, ref) })} /> setRefForIndex(1, ref) })} @@ -55,7 +55,7 @@ test('submits on enter in last input', async () => { // When // Enter in first should focus second - Simulate.keyDown(getByTestId('first'), { + fireEvent.keyDown(getByValue('first'), { key: 'Enter', keyCode: 13, which: 13 @@ -66,7 +66,7 @@ test('submits on enter in last input', async () => { // When // Enter in last should submit - Simulate.keyDown(getByTestId('second'), { + fireEvent.keyDown(getByValue('second'), { key: 'Enter', keyCode: 13, which: 13 @@ -89,14 +89,12 @@ test('submits on button click', async () => { setRefForIndex(0, ref) })} /> setRefForIndex(1, ref) })} @@ -114,7 +112,7 @@ test('submits on button click', async () => { // When // Click button! - Simulate.click(getByText('Send')) + fireEvent.click(getByText('Send')) // Then expect(myFn).toHaveBeenCalledTimes(1) diff --git a/src/browser/components/InputEnterStepping/__snapshots__/InputEnterStepping.test.js.snap b/src/browser/components/InputEnterStepping/__snapshots__/InputEnterStepping.test.js.snap index f1dc03111bd..051a577b553 100644 --- a/src/browser/components/InputEnterStepping/__snapshots__/InputEnterStepping.test.js.snap +++ b/src/browser/components/InputEnterStepping/__snapshots__/InputEnterStepping.test.js.snap @@ -11,11 +11,9 @@ exports[`renders the render prop 1`] = ` exports[`submits on button click 1`] = `
    `; - -exports[`submits on enter in last input 1`] = ` -
    - - -
    -`; From ded70fb2dacd8a4b19410dae384059a01ae6c154 Mon Sep 17 00:00:00 2001 From: Oskar Hane Date: Tue, 19 Jun 2018 11:08:42 +0200 Subject: [PATCH 40/40] Fix dependencies and licenses files --- LICENSES.txt | 220 +--- NOTICE.txt | 132 +-- package.json | 13 +- yarn.lock | 3145 +++++++++++++++++++------------------------------- 4 files changed, 1232 insertions(+), 2278 deletions(-) diff --git a/LICENSES.txt b/LICENSES.txt index afa0f07cd99..d84bbe1ead5 100644 --- a/LICENSES.txt +++ b/LICENSES.txt @@ -289,7 +289,7 @@ SOFTWARE. ----- -The following software may be included in this product: ansi-regex, camelcase, code-point-at, decamelize, has-flag, is-fullwidth-code-point, is-stream, lcid, number-is-nan, object-assign, os-homedir, os-locale, os-tmpdir, path-is-absolute, string-width, strip-ansi, strip-indent, strip-json-comments, supports-color, wrap-ansi. A copy of the source code may be downloaded from https://github.com/chalk/ansi-regex.git (ansi-regex), https://github.com/sindresorhus/camelcase.git (camelcase), https://github.com/sindresorhus/code-point-at.git (code-point-at), https://github.com/sindresorhus/decamelize.git (decamelize), https://github.com/sindresorhus/has-flag.git (has-flag), https://github.com/sindresorhus/is-fullwidth-code-point.git (is-fullwidth-code-point), https://github.com/sindresorhus/is-stream.git (is-stream), https://github.com/sindresorhus/lcid.git (lcid), https://github.com/sindresorhus/number-is-nan.git (number-is-nan), https://github.com/sindresorhus/object-assign.git (object-assign), https://github.com/sindresorhus/os-homedir.git (os-homedir), https://github.com/sindresorhus/os-locale.git (os-locale), https://github.com/sindresorhus/os-tmpdir.git (os-tmpdir), https://github.com/sindresorhus/path-is-absolute.git (path-is-absolute), https://github.com/sindresorhus/string-width.git (string-width), https://github.com/chalk/strip-ansi.git (strip-ansi), https://github.com/sindresorhus/strip-indent.git (strip-indent), https://github.com/sindresorhus/strip-json-comments.git (strip-json-comments), https://github.com/chalk/supports-color.git (supports-color), https://github.com/chalk/wrap-ansi.git (wrap-ansi). This software contains the following license and notice below: +The following software may be included in this product: ansi-regex, camelcase, code-point-at, decamelize, has-flag, is-fullwidth-code-point, is-stream, lcid, number-is-nan, object-assign, os-homedir, os-locale, os-tmpdir, path-is-absolute, string-width, strip-ansi, strip-json-comments, supports-color, wrap-ansi. A copy of the source code may be downloaded from https://github.com/chalk/ansi-regex.git (ansi-regex), https://github.com/sindresorhus/camelcase.git (camelcase), https://github.com/sindresorhus/code-point-at.git (code-point-at), https://github.com/sindresorhus/decamelize.git (decamelize), https://github.com/sindresorhus/has-flag.git (has-flag), https://github.com/sindresorhus/is-fullwidth-code-point.git (is-fullwidth-code-point), https://github.com/sindresorhus/is-stream.git (is-stream), https://github.com/sindresorhus/lcid.git (lcid), https://github.com/sindresorhus/number-is-nan.git (number-is-nan), https://github.com/sindresorhus/object-assign.git (object-assign), https://github.com/sindresorhus/os-homedir.git (os-homedir), https://github.com/sindresorhus/os-locale.git (os-locale), https://github.com/sindresorhus/os-tmpdir.git (os-tmpdir), https://github.com/sindresorhus/path-is-absolute.git (path-is-absolute), https://github.com/sindresorhus/string-width.git (string-width), https://github.com/chalk/strip-ansi.git (strip-ansi), https://github.com/sindresorhus/strip-json-comments.git (strip-json-comments), https://github.com/chalk/supports-color.git (supports-color), https://github.com/chalk/wrap-ansi.git (wrap-ansi). This software contains the following license and notice below: The MIT License (MIT) @@ -315,6 +315,20 @@ THE SOFTWARE. ----- +The following software may be included in this product: ansi-regex, string-width, strip-ansi. A copy of the source code may be downloaded from https://github.com/chalk/ansi-regex.git (ansi-regex), https://github.com/sindresorhus/string-width.git (string-width), https://github.com/chalk/strip-ansi.git (strip-ansi). This software contains the following license and notice below: + +MIT License + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +----- + The following software may be included in this product: aproba, wide-align. A copy of the source code may be downloaded from https://github.com/iarna/aproba (aproba), https://github.com/iarna/wide-align (wide-align). This software contains the following license and notice below: Copyright (c) 2015, Rebecca Turner @@ -794,37 +808,11 @@ THE SOFTWARE. ----- -The following software may be included in this product: ci-info. A copy of the source code may be downloaded from https://github.com/watson/ci-info.git. This software contains the following license and notice below: - -The MIT License (MIT) - -Copyright (c) 2016-2017 Thomas Watson Steen - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - ------ - The following software may be included in this product: classnames. A copy of the source code may be downloaded from https://github.com/JedWatson/classnames.git. This software contains the following license and notice below: The MIT License (MIT) -Copyright (c) 2016 Jed Watson +Copyright (c) 2017 Jed Watson Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -967,7 +955,7 @@ THE SOFTWARE. ----- -The following software may be included in this product: concat-map, is-typedarray, json-stable-stringify, minimist. A copy of the source code may be downloaded from git://github.com/substack/node-concat-map.git (concat-map), git://github.com/hughsk/is-typedarray.git (is-typedarray), git://github.com/substack/json-stable-stringify.git (json-stable-stringify), git://github.com/substack/minimist.git (minimist). This software contains the following license and notice below: +The following software may be included in this product: concat-map, fast-json-stable-stringify, is-typedarray, minimist. A copy of the source code may be downloaded from git://github.com/substack/node-concat-map.git (concat-map), git://github.com/epoberezkin/fast-json-stable-stringify.git (fast-json-stable-stringify), git://github.com/hughsk/is-typedarray.git (is-typedarray), git://github.com/substack/minimist.git (minimist). This software contains the following license and notice below: This software is released under the MIT license: @@ -1010,30 +998,6 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. The following software may be included in this product: core-js. A copy of the source code may be downloaded from https://github.com/zloirock/core-js.git. This software contains the following license and notice below: -Copyright (c) 2014-2018 Denis Pushkarev - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - ------ - -The following software may be included in this product: core-js. A copy of the source code may be downloaded from https://github.com/zloirock/core-js.git. This software contains the following license and notice below: - Copyright (c) 2015 Denis Pushkarev Permission is hereby granted, free of charge, to any person obtaining a copy @@ -1058,7 +1022,7 @@ THE SOFTWARE. The following software may be included in this product: core-js. A copy of the source code may be downloaded from https://github.com/zloirock/core-js.git. This software contains the following license and notice below: -Copyright (c) 2014-2017 Denis Pushkarev +Copyright (c) 2014-2018 Denis Pushkarev Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -2971,32 +2935,6 @@ of nodejs/io.js: ----- -The following software may be included in this product: husky. A copy of the source code may be downloaded from git://github.com/typicode/husky.git. This software contains the following license and notice below: - -The MIT License (MIT) - -Copyright (c) 2014 - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - ------ - The following software may be included in this product: iconv-lite. A copy of the source code may be downloaded from git://github.com/ashtuchkin/iconv-lite.git. This software contains the following license and notice below: Copyright (c) 2011 Alexander Shtuchkin @@ -3121,32 +3059,6 @@ SOFTWARE. ----- -The following software may be included in this product: is-ci. A copy of the source code may be downloaded from https://github.com/watson/is-ci.git. This software contains the following license and notice below: - -The MIT License (MIT) - -Copyright (c) 2016 Thomas Watson Steen - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - ------ - The following software may be included in this product: is-plain-object. A copy of the source code may be downloaded from https://github.com/jonschlinkert/is-plain-object.git. This software contains the following license and notice below: The MIT License (MIT) @@ -4533,52 +4445,6 @@ SOFTWARE. ----- -The following software may be included in this product: sax. A copy of the source code may be downloaded from git://github.com/isaacs/sax-js.git. This software contains the following license and notice below: - -The ISC License - -Copyright (c) Isaac Z. Schlueter and Contributors - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - -==== - -`String.fromCodePoint` by Mathias Bynens used according to terms of MIT -License, as follows: - - Copyright Mathias Bynens - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - ------ - The following software may be included in this product: set-blocking. A copy of the source code may be downloaded from git+https://github.com/yargs/set-blocking.git. This software contains the following license and notice below: Copyright (c) 2016, Contributors @@ -5207,56 +5073,6 @@ THE SOFTWARE. ----- -The following software may be included in this product: xml2js. A copy of the source code may be downloaded from https://github.com/Leonidas-from-XIV/node-xml2js.git. This software contains the following license and notice below: - -Copyright 2010, 2011, 2012, 2013. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to -deal in the Software without restriction, including without limitation the -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -IN THE SOFTWARE. - ------ - -The following software may be included in this product: xmlbuilder. A copy of the source code may be downloaded from git://github.com/oozcitak/xmlbuilder-js.git. This software contains the following license and notice below: - -The MIT License (MIT) - -Copyright (c) 2013 Ozgur Ozcitak - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - ------ - The following software may be included in this product: xmlhttprequest. A copy of the source code may be downloaded from git://github.com/driverdan/node-XMLHttpRequest.git. This software contains the following license and notice below: Copyright (c) 2010 passive.ly LLC diff --git a/NOTICE.txt b/NOTICE.txt index dfb2745ae49..63a3af0c7fb 100644 --- a/NOTICE.txt +++ b/NOTICE.txt @@ -22,7 +22,7 @@ Full license texts are found in LICENSES.txt. Third-party licenses --------------------├─ (BSD-2-Clause OR MIT OR Apache-2.0) -│ └─ rc@1.2.7 +│ └─ rc@1.2.8 │ ├─ URL: https://github.com/dominictarr/rc.git │ ├─ VendorName: Dominic Tarr │ └─ VendorUrl: dominictarr.com @@ -171,16 +171,13 @@ Third-party licenses │ ├─ VendorName: Mikeal Rogers │ └─ VendorUrl: http://www.futurealoof.com ├─ BSD -│ └─ antlr4@4.6.0 +│ └─ antlr4@4.7.0 │ ├─ URL: https://github.com/antlr/antlr4.git │ └─ VendorUrl: https://github.com/antlr/antlr4 ├─ BSD-2-Clause -│ ├─ node-noop@1.0.0 -│ │ ├─ URL: git://github.com/euank/node-noop.git -│ │ └─ VendorName: EuanK │ ├─ tar-pack@3.4.1 │ │ └─ URL: https://github.com/ForbesLindesay/tar-pack.git -│ └─ uri-js@4.2.1 +│ └─ uri-js@4.2.2 │ ├─ URL: http://github.com/garycourt/uri-js │ ├─ VendorName: Gary Court │ └─ VendorUrl: https://github.com/garycourt/uri-js @@ -198,30 +195,30 @@ Third-party licenses │ │ ├─ URL: git://github.com/hueniverse/hawk │ │ ├─ VendorName: Eran Hammer │ │ └─ VendorUrl: http://hueniverse.com -│ ├─ hoek@4.2.0 +│ ├─ hoek@4.2.1 │ │ └─ URL: git://github.com/hapijs/hoek -│ ├─ hoist-non-react-statics@2.5.0 +│ ├─ hoist-non-react-statics@2.5.5 │ │ ├─ URL: git://github.com/mridgway/hoist-non-react-statics.git │ │ └─ VendorName: Michael Ridgway -│ ├─ ieee754@1.1.11 +│ ├─ ieee754@1.1.12 │ │ ├─ URL: git://github.com/feross/ieee754.git │ │ ├─ VendorName: Feross Aboukhadijeh │ │ └─ VendorUrl: http://feross.org │ ├─ node-pre-gyp@0.7.0 │ │ ├─ URL: git://github.com/mapbox/node-pre-gyp.git │ │ └─ VendorName: Dane Springmeyer -│ ├─ qs@6.5.1 +│ ├─ qs@6.5.2 │ │ ├─ URL: https://github.com/ljharb/qs.git │ │ └─ VendorUrl: https://github.com/ljharb/qs │ ├─ react-dnd-html5-backend@2.6.0 │ │ └─ URL: https://github.com/react-dnd/react-dnd.git │ ├─ react-dnd@2.6.0 │ │ └─ URL: https://github.com/react-dnd/react-dnd.git -│ ├─ sntp@2.0.2 +│ ├─ sntp@2.1.0 │ │ ├─ URL: git://github.com/hueniverse/sntp │ │ ├─ VendorName: Eran Hammer │ │ └─ VendorUrl: http://hueniverse.com -│ └─ tough-cookie@2.3.3 +│ └─ tough-cookie@2.3.4 │ ├─ URL: git://github.com/salesforce/tough-cookie.git │ ├─ VendorName: Jeremy Stashewsky │ └─ VendorUrl: https://github.com/salesforce/tough-cookie @@ -230,10 +227,10 @@ Third-party licenses │ ├─ URL: http://github.com/kriszyp/json-schema │ └─ VendorName: Kris Zyp ├─ GPL-3.0 -│ ├─ cypher-codemirror@1.0.5 +│ ├─ cypher-codemirror@1.1.0 │ │ ├─ URL: git://github.com/neo4j-contrib/cypher-editor.git │ │ └─ VendorName: Neo Technology Inc. -│ └─ cypher-editor-support@1.0.4 +│ └─ cypher-editor-support@1.1.0 │ ├─ URL: git://github.com/neo4j-contrib/cypher-editor.git │ └─ VendorName: Neo Technology Inc. ├─ ISC @@ -244,7 +241,7 @@ Third-party licenses │ │ ├─ URL: https://github.com/iarna/aproba │ │ ├─ VendorName: Rebecca Turner │ │ └─ VendorUrl: https://github.com/iarna/aproba -│ ├─ are-we-there-yet@1.1.4 +│ ├─ are-we-there-yet@1.1.5 │ │ ├─ URL: https://github.com/iarna/are-we-there-yet.git │ │ ├─ VendorName: Rebecca Turner │ │ └─ VendorUrl: https://github.com/iarna/are-we-there-yet @@ -334,10 +331,6 @@ Third-party licenses │ │ ├─ URL: git://github.com/isaacs/rimraf.git │ │ ├─ VendorName: Isaac Z. Schlueter │ │ └─ VendorUrl: http://blog.izs.me/ -│ ├─ sax@1.2.4 -│ │ ├─ URL: git://github.com/isaacs/sax-js.git -│ │ ├─ VendorName: Isaac Z. Schlueter -│ │ └─ VendorUrl: http://blog.izs.me/ │ ├─ semver@5.5.0 │ │ └─ URL: https://github.com/npm/node-semver │ ├─ set-blocking@2.0.0 @@ -356,7 +349,7 @@ Third-party licenses │ │ ├─ URL: git://github.com/isaacs/uid-number.git │ │ ├─ VendorName: Isaac Z. Schlueter │ │ └─ VendorUrl: http://blog.izs.me/ -│ ├─ wide-align@1.1.2 +│ ├─ wide-align@1.1.3 │ │ ├─ URL: https://github.com/iarna/wide-align │ │ ├─ VendorName: Rebecca Turner │ │ └─ VendorUrl: http://re-becca.org/ @@ -369,7 +362,7 @@ Third-party licenses │ ├─ VendorName: Ben Coe │ └─ VendorUrl: https://github.com/yargs/y18n ├─ MIT -│ ├─ ajv@5.2.3 +│ ├─ ajv@5.5.2 │ │ ├─ URL: https://github.com/epoberezkin/ajv.git │ │ ├─ VendorName: Evgeny Poberezkin │ │ └─ VendorUrl: https://github.com/epoberezkin/ajv @@ -377,6 +370,10 @@ Third-party licenses │ │ ├─ URL: https://github.com/chalk/ansi-regex.git │ │ ├─ VendorName: Sindre Sorhus │ │ └─ VendorUrl: sindresorhus.com +│ ├─ ansi-regex@3.0.0 +│ │ ├─ URL: https://github.com/chalk/ansi-regex.git +│ │ ├─ VendorName: Sindre Sorhus +│ │ └─ VendorUrl: sindresorhus.com │ ├─ asap@2.0.6 │ │ └─ URL: https://github.com/kriskowal/asap.git │ ├─ ascii-data-table@2.1.1 @@ -397,11 +394,11 @@ Third-party licenses │ │ ├─ URL: git+https://github.com/alexindigo/asynckit.git │ │ ├─ VendorName: Alex Indigo │ │ └─ VendorUrl: https://github.com/alexindigo/asynckit#readme -│ ├─ attr-accept@1.1.2 +│ ├─ attr-accept@1.1.3 │ │ ├─ URL: https://github.com/okonet/attr-accept.git │ │ ├─ VendorName: Andrey Okonetchnikov @okonetchnikov │ │ └─ VendorUrl: https://github.com/okonet/attr-accept#readme -│ ├─ aws4@1.6.0 +│ ├─ aws4@1.7.0 │ │ ├─ URL: https://github.com/mhart/aws4.git │ │ ├─ VendorName: Michael Hart │ │ └─ VendorUrl: http://github.com/mhart @@ -436,11 +433,7 @@ Third-party licenses │ │ ├─ URL: git+ssh://git@github.com/chaijs/check-error.git │ │ ├─ VendorName: Jake Luer │ │ └─ VendorUrl: http://alogicalparadox.com -│ ├─ ci-info@1.1.3 -│ │ ├─ URL: https://github.com/watson/ci-info.git -│ │ ├─ VendorName: Thomas Watson Steen -│ │ └─ VendorUrl: https://github.com/watson/ci-info -│ ├─ classnames@2.2.5 +│ ├─ classnames@2.2.6 │ │ ├─ URL: https://github.com/JedWatson/classnames.git │ │ └─ VendorName: Jed Watson │ ├─ co@4.6.0 @@ -449,7 +442,7 @@ Third-party licenses │ │ ├─ URL: https://github.com/sindresorhus/code-point-at.git │ │ ├─ VendorName: Sindre Sorhus │ │ └─ VendorUrl: sindresorhus.com -│ ├─ codemirror@5.30.0 +│ ├─ codemirror@5.38.0 │ │ ├─ URL: https://github.com/codemirror/CodeMirror.git │ │ └─ VendorUrl: http://codemirror.net/ │ ├─ colour@0.7.1 @@ -465,11 +458,9 @@ Third-party licenses │ │ └─ VendorUrl: http://substack.net │ ├─ core-js@1.2.7 │ │ └─ URL: https://github.com/zloirock/core-js.git -│ ├─ core-js@2.5.1 -│ │ └─ URL: https://github.com/zloirock/core-js.git │ ├─ core-js@2.5.5 │ │ └─ URL: https://github.com/zloirock/core-js.git -│ ├─ core-js@2.5.6 +│ ├─ core-js@2.5.7 │ │ └─ URL: https://github.com/zloirock/core-js.git │ ├─ core-util-is@1.0.2 │ │ ├─ URL: git://github.com/isaacs/core-util-is @@ -493,7 +484,7 @@ Third-party licenses │ ├─ deep-eql@3.0.1 │ │ ├─ URL: git@github.com:chaijs/deep-eql.git │ │ └─ VendorName: Jake Luer -│ ├─ deep-extend@0.5.1 +│ ├─ deep-extend@0.6.0 │ │ ├─ URL: git://github.com/unclechu/node-deep-extend.git │ │ ├─ VendorName: Viacheslav Lotsmanov │ │ └─ VendorUrl: https://github.com/unclechu/node-deep-extend @@ -522,17 +513,21 @@ Third-party licenses │ │ ├─ URL: git+https://github.com/epoberezkin/fast-deep-equal.git │ │ ├─ VendorName: Evgeny Poberezkin │ │ └─ VendorUrl: https://github.com/epoberezkin/fast-deep-equal#readme +│ ├─ fast-json-stable-stringify@2.0.0 +│ │ ├─ URL: git://github.com/epoberezkin/fast-json-stable-stringify.git +│ │ ├─ VendorName: James Halliday +│ │ └─ VendorUrl: https://github.com/epoberezkin/fast-json-stable-stringify │ ├─ faye-websocket@0.11.1 │ │ ├─ URL: git://github.com/faye/faye-websocket-node.git │ │ ├─ VendorName: James Coglan │ │ └─ VendorUrl: https://github.com/faye/faye-websocket-node -│ ├─ fbjs@0.8.16 +│ ├─ fbjs@0.8.17 │ │ └─ URL: https://github.com/facebook/fbjs.git │ ├─ file-saver@1.3.8 │ │ ├─ URL: git+https://github.com/eligrey/FileSaver.js.git │ │ ├─ VendorName: Eli Grey │ │ └─ VendorUrl: https://github.com/eligrey/FileSaver.js#readme -│ ├─ form-data@2.3.1 +│ ├─ form-data@2.3.2 │ │ ├─ URL: git://github.com/form-data/form-data.git │ │ ├─ VendorName: Felix Geisendörfer │ │ └─ VendorUrl: http://debuggable.com/ @@ -558,10 +553,6 @@ Third-party licenses │ │ ├─ URL: git://github.com/joyent/node-http-signature.git │ │ ├─ VendorName: Joyent, Inc │ │ └─ VendorUrl: https://github.com/joyent/node-http-signature/ -│ ├─ husky@0.14.3 -│ │ ├─ URL: git://github.com/typicode/husky.git -│ │ ├─ VendorName: Typicode -│ │ └─ VendorUrl: https://github.com/typicode/husky │ ├─ iconv-lite@0.4.23 │ │ ├─ URL: git://github.com/ashtuchkin/iconv-lite.git │ │ ├─ VendorName: Alexander Shtuchkin @@ -573,14 +564,14 @@ Third-party licenses │ │ ├─ URL: https://github.com/sindresorhus/invert-kv.git │ │ ├─ VendorName: Sindre Sorhus │ │ └─ VendorUrl: http://sindresorhus.com -│ ├─ is-ci@1.0.10 -│ │ ├─ URL: https://github.com/watson/is-ci.git -│ │ ├─ VendorName: Thomas Watson Steen -│ │ └─ VendorUrl: https://github.com/watson/is-ci │ ├─ is-fullwidth-code-point@1.0.0 │ │ ├─ URL: https://github.com/sindresorhus/is-fullwidth-code-point.git │ │ ├─ VendorName: Sindre Sorhus │ │ └─ VendorUrl: sindresorhus.com +│ ├─ is-fullwidth-code-point@2.0.0 +│ │ ├─ URL: https://github.com/sindresorhus/is-fullwidth-code-point.git +│ │ ├─ VendorName: Sindre Sorhus +│ │ └─ VendorUrl: sindresorhus.com │ ├─ is-plain-object@2.0.4 │ │ ├─ URL: https://github.com/jonschlinkert/is-plain-object.git │ │ ├─ VendorName: Jon Schlinkert @@ -619,10 +610,6 @@ Third-party licenses │ │ ├─ URL: git+https://github.com/epoberezkin/json-schema-traverse.git │ │ ├─ VendorName: Evgeny Poberezkin │ │ └─ VendorUrl: https://github.com/epoberezkin/json-schema-traverse#readme -│ ├─ json-stable-stringify@1.0.1 -│ │ ├─ URL: git://github.com/substack/json-stable-stringify.git -│ │ ├─ VendorName: James Halliday -│ │ └─ VendorUrl: https://github.com/substack/json-stable-stringify │ ├─ jsonic@0.3.0 │ │ ├─ URL: git://github.com/rjrodger/jsonic.git │ │ ├─ VendorName: Richard Rodger @@ -653,12 +640,8 @@ Third-party licenses │ │ ├─ URL: git://github.com/zertosh/loose-envify.git │ │ ├─ VendorName: Andres Suarez │ │ └─ VendorUrl: https://github.com/zertosh/loose-envify -│ ├─ mime-db@1.30.0 -│ │ └─ URL: https://github.com/jshttp/mime-db.git │ ├─ mime-db@1.33.0 │ │ └─ URL: https://github.com/jshttp/mime-db.git -│ ├─ mime-types@2.1.17 -│ │ └─ URL: https://github.com/jshttp/mime-types.git │ ├─ mime-types@2.1.18 │ │ └─ URL: https://github.com/jshttp/mime-types.git │ ├─ minimist@0.0.8 @@ -681,10 +664,6 @@ Third-party licenses │ │ ├─ URL: https://github.com/bitinn/node-fetch.git │ │ ├─ VendorName: David Frank │ │ └─ VendorUrl: https://github.com/bitinn/node-fetch -│ ├─ normalize-path@1.0.0 -│ │ ├─ URL: git://github.com/jonschlinkert/normalize-path.git -│ │ ├─ VendorName: Jon Schlinkert -│ │ └─ VendorUrl: https://github.com/jonschlinkert/normalize-path │ ├─ number-is-nan@1.0.1 │ │ ├─ URL: https://github.com/sindresorhus/number-is-nan.git │ │ ├─ VendorName: Sindre Sorhus @@ -741,7 +720,7 @@ Third-party licenses │ │ ├─ URL: https://github.com/bestiejs/punycode.js.git │ │ ├─ VendorName: Mathias Bynens │ │ └─ VendorUrl: https://mths.be/punycode -│ ├─ punycode@2.1.0 +│ ├─ punycode@2.1.1 │ │ ├─ URL: https://github.com/bestiejs/punycode.js.git │ │ ├─ VendorName: Mathias Bynens │ │ └─ VendorUrl: https://mths.be/punycode @@ -751,10 +730,10 @@ Third-party licenses │ │ └─ VendorUrl: https://github.com/unshiftio/querystringify │ ├─ react-addons-pure-render-mixin@15.6.2 │ │ └─ URL: https://github.com/facebook/react.git -│ ├─ react-dom@16.4.0 +│ ├─ react-dom@16.4.1 │ │ ├─ URL: https://github.com/facebook/react.git │ │ └─ VendorUrl: https://reactjs.org/ -│ ├─ react-dropzone@4.2.10 +│ ├─ react-dropzone@4.2.11 │ │ ├─ URL: https://github.com/react-dropzone/react-dropzone.git │ │ ├─ VendorName: Param Aggarwal │ │ └─ VendorUrl: https://github.com/react-dropzone/react-dropzone @@ -766,7 +745,7 @@ Third-party licenses │ │ ├─ URL: git+ssh://git@github.com/gorangajic/react-icons.git │ │ ├─ VendorName: Goran Gajic │ │ └─ VendorUrl: https://github.com/gorangajic/react-icons#readme -│ ├─ react-is@16.3.2 +│ ├─ react-is@16.4.1 │ │ ├─ URL: https://github.com/facebook/react.git │ │ └─ VendorUrl: https://reactjs.org/ │ ├─ react-redux@5.0.7 @@ -781,7 +760,7 @@ Third-party licenses │ │ ├─ URL: https://github.com/naman34/react-timeago.git │ │ ├─ VendorName: Naman Goel │ │ └─ VendorUrl: https://github.com/nmn/react-timeago -│ ├─ react@16.4.0 +│ ├─ react@16.4.1 │ │ ├─ URL: https://github.com/facebook/react.git │ │ └─ VendorUrl: https://reactjs.org/ │ ├─ readable-stream@2.3.6 @@ -814,7 +793,7 @@ Third-party licenses │ ├─ setimmediate@1.0.5 │ │ ├─ URL: https://github.com/YuzuJS/setImmediate.git │ │ └─ VendorName: YuzuJS -│ ├─ sshpk@1.14.1 +│ ├─ sshpk@1.14.2 │ │ ├─ URL: git+https://github.com/arekinath/node-sshpk.git │ │ ├─ VendorName: Joyent, Inc │ │ └─ VendorUrl: https://github.com/arekinath/node-sshpk#readme @@ -825,7 +804,11 @@ Third-party licenses │ │ ├─ URL: https://github.com/sindresorhus/string-width.git │ │ ├─ VendorName: Sindre Sorhus │ │ └─ VendorUrl: sindresorhus.com -│ ├─ stringstream@0.0.5 +│ ├─ string-width@2.1.1 +│ │ ├─ URL: https://github.com/sindresorhus/string-width.git +│ │ ├─ VendorName: Sindre Sorhus +│ │ └─ VendorUrl: sindresorhus.com +│ ├─ stringstream@0.0.6 │ │ ├─ URL: https://github.com/mhart/StringStream.git │ │ ├─ VendorName: Michael Hart │ │ └─ VendorUrl: http://github.com/mhart @@ -833,15 +816,15 @@ Third-party licenses │ │ ├─ URL: https://github.com/chalk/strip-ansi.git │ │ ├─ VendorName: Sindre Sorhus │ │ └─ VendorUrl: sindresorhus.com -│ ├─ strip-indent@2.0.0 -│ │ ├─ URL: https://github.com/sindresorhus/strip-indent.git +│ ├─ strip-ansi@4.0.0 +│ │ ├─ URL: https://github.com/chalk/strip-ansi.git │ │ ├─ VendorName: Sindre Sorhus │ │ └─ VendorUrl: sindresorhus.com │ ├─ strip-json-comments@2.0.1 │ │ ├─ URL: https://github.com/sindresorhus/strip-json-comments.git │ │ ├─ VendorName: Sindre Sorhus │ │ └─ VendorUrl: sindresorhus.com -│ ├─ styled-components@3.2.6 +│ ├─ styled-components@3.3.2 │ │ ├─ URL: git+https://github.com/styled-components/styled-components.git │ │ ├─ VendorName: Glen Maddern │ │ └─ VendorUrl: https://styled-components.com/ @@ -849,7 +832,7 @@ Third-party licenses │ │ ├─ URL: https://github.com/thysultan/stylis.js │ │ ├─ VendorName: Sultan Tarimo │ │ └─ VendorUrl: https://github.com/thysultan/stylis.js -│ ├─ stylis@3.5.0 +│ ├─ stylis@3.5.1 │ │ ├─ URL: https://github.com/thysultan/stylis.js │ │ ├─ VendorName: Sultan Tarimo │ │ └─ VendorUrl: https://github.com/thysultan/stylis.js @@ -874,15 +857,13 @@ Third-party licenses │ │ ├─ URL: git+ssh://git@github.com/chaijs/type-detect.git │ │ ├─ VendorName: Jake Luer │ │ └─ VendorUrl: http://alogicalparadox.com -│ ├─ url-parse@1.4.0 +│ ├─ url-parse@1.4.1 │ │ ├─ URL: https://github.com/unshiftio/url-parse.git │ │ └─ VendorName: Arnout Kazemier │ ├─ util-deprecate@1.0.2 │ │ ├─ URL: git://github.com/TooTallNate/util-deprecate.git │ │ ├─ VendorName: Nathan Rajlich │ │ └─ VendorUrl: https://github.com/TooTallNate/util-deprecate -│ ├─ uuid@3.1.0 -│ │ └─ URL: https://github.com/kelektiv/node-uuid.git │ ├─ uuid@3.2.1 │ │ └─ URL: https://github.com/kelektiv/node-uuid.git │ ├─ verror@1.10.0 @@ -905,14 +886,6 @@ Third-party licenses │ │ ├─ URL: https://github.com/chalk/wrap-ansi.git │ │ ├─ VendorName: Sindre Sorhus │ │ └─ VendorUrl: sindresorhus.com -│ ├─ xml2js@0.4.19 -│ │ ├─ URL: https://github.com/Leonidas-from-XIV/node-xml2js.git -│ │ ├─ VendorName: Marek Kubica -│ │ └─ VendorUrl: https://github.com/Leonidas-from-XIV/node-xml2js -│ ├─ xmlbuilder@9.0.4 -│ │ ├─ URL: git://github.com/oozcitak/xmlbuilder-js.git -│ │ ├─ VendorName: Ozgur Ozcitak -│ │ └─ VendorUrl: http://github.com/oozcitak/xmlbuilder-js │ ├─ xmlhttprequest@1.8.0 │ │ ├─ URL: git://github.com/driverdan/node-XMLHttpRequest.git │ │ ├─ VendorName: Dan DeFelippi @@ -921,11 +894,6 @@ Third-party licenses │ ├─ URL: http://github.com/bcoe/yargs.git │ ├─ VendorName: Alex Ford │ └─ VendorUrl: http://CodeTunnel.com -├─ Public Domain -│ └─ jsonify@0.0.0 -│ ├─ URL: http://github.com/substack/jsonify.git -│ ├─ VendorName: Douglas Crockford -│ └─ VendorUrl: http://crockford.com/ └─ Unlicense └─ tweetnacl@0.14.5 ├─ URL: https://github.com/dchest/tweetnacl-js.git diff --git a/package.json b/package.json index 0f267e103f0..c4eff475c31 100644 --- a/package.json +++ b/package.json @@ -94,13 +94,14 @@ "file-loader": "^0.11.1", "html-loader": "^0.5.1", "html-webpack-plugin": "^2.30.1", - "jest": "^23.1.0", - "jest-cli": "^21.0.1", + "husky": "^0.14.3", + "jest-cli": "^23.1.0", "js2xmlparser": "^3.0.0", "json-loader": "^0.5.7", "lint-staged": "^4.1.3", "ncp": "^2.0.0", "nock": "^9.0.14", + "node-noop": "^1.0.0", "postcss": "^6.0.11", "postcss-cssnext": "^3.0.2", "postcss-loader": "^2.0.5", @@ -120,7 +121,8 @@ "webpack-bundle-analyzer": "^2.9.0", "webpack-dashboard": "^2.0.0", "webpack-dev-server": "^2.7.1", - "worker-loader": "^0.8.0" + "worker-loader": "^0.8.0", + "xml2js": "^0.4.19" }, "dependencies": { "ascii-data-table": "^2.1.1", @@ -130,12 +132,10 @@ "dnd-core": "^2.5.1", "file-saver": "^1.3.8", "firebase": "^4.3.0", - "husky": "^0.14.3", "isomorphic-fetch": "^2.2.1", "jsonic": "^0.3.0", "lodash.debounce": "^4.0.8", "neo4j-driver": "^1.6.1", - "node-noop": "^1.0.0", "react": "^16.4.0", "react-addons-pure-render-mixin": "^15.0.2", "react-dnd": "^2.5.1", @@ -156,7 +156,6 @@ "suber": "^5.0.1", "swipe-js-iso": "^2.0.4", "url-parse": "^1.1.9", - "uuid": "^3.0.1", - "xml2js": "^0.4.19" + "uuid": "^3.0.1" } } diff --git a/yarn.lock b/yarn.lock index 66fa3d26b32..df38919ff7e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4,30 +4,30 @@ "@babel/code-frame@^7.0.0-beta.35": version "7.0.0-beta.51" - resolved "https://neo.jfrog.io/neo/api/npm/npm/@babel/code-frame/-/code-frame-7.0.0-beta.51.tgz?dl=https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.0.0-beta.51.tgz#bd71d9b192af978df915829d39d4094456439a0c" + resolved "https://neo.jfrog.io/neo/api/npm/npm/@babel/code-frame/-/code-frame-7.0.0-beta.51.tgz#bd71d9b192af978df915829d39d4094456439a0c" dependencies: "@babel/highlight" "7.0.0-beta.51" "@babel/helper-annotate-as-pure@^7.0.0-beta.37": - version "7.0.0-beta.40" - resolved "https://neo.jfrog.io/neo/api/npm/npm/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0-beta.40.tgz#095dd4c70b231eba17ebf61c3434e6f9d71bd574" + version "7.0.0-beta.51" + resolved "https://neo.jfrog.io/neo/api/npm/npm/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0-beta.51.tgz#38cf7920bf5f338a227f754e286b6fbadee04b58" dependencies: - "@babel/types" "7.0.0-beta.40" + "@babel/types" "7.0.0-beta.51" "@babel/highlight@7.0.0-beta.51": version "7.0.0-beta.51" - resolved "https://neo.jfrog.io/neo/api/npm/npm/@babel/highlight/-/highlight-7.0.0-beta.51.tgz?dl=https://registry.npmjs.org/@babel/highlight/-/highlight-7.0.0-beta.51.tgz#e8844ae25a1595ccfd42b89623b4376ca06d225d" + resolved "https://neo.jfrog.io/neo/api/npm/npm/@babel/highlight/-/highlight-7.0.0-beta.51.tgz#e8844ae25a1595ccfd42b89623b4376ca06d225d" dependencies: chalk "^2.0.0" esutils "^2.0.2" js-tokens "^3.0.0" -"@babel/types@7.0.0-beta.40": - version "7.0.0-beta.40" - resolved "https://neo.jfrog.io/neo/api/npm/npm/@babel/types/-/types-7.0.0-beta.40.tgz#25c3d7aae14126abe05fcb098c65a66b6d6b8c14" +"@babel/types@7.0.0-beta.51": + version "7.0.0-beta.51" + resolved "https://neo.jfrog.io/neo/api/npm/npm/@babel/types/-/types-7.0.0-beta.51.tgz#d802b7b543b5836c778aa691797abf00f3d97ea9" dependencies: esutils "^2.0.2" - lodash "^4.2.0" + lodash "^4.17.5" to-fast-properties "^2.0.0" "@cypress/listr-verbose-renderer@0.4.1": @@ -41,18 +41,18 @@ "@cypress/xvfb@1.2.3": version "1.2.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/@cypress/xvfb/-/xvfb-1.2.3.tgz?dl=https://registry.npmjs.org/@cypress/xvfb/-/xvfb-1.2.3.tgz#6319afdcdcff7d1505daeeaa84484d0596189860" + resolved "https://neo.jfrog.io/neo/api/npm/npm/@cypress/xvfb/-/xvfb-1.2.3.tgz#6319afdcdcff7d1505daeeaa84484d0596189860" dependencies: debug "^3.1.0" lodash.once "^4.1.1" "@firebase/app-types@0.2.0": version "0.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/@firebase/app-types/-/app-types-0.2.0.tgz?dl=https://registry.npmjs.org/@firebase/app-types/-/app-types-0.2.0.tgz#2a0e9c433d5f39e428358c5cd8065010d5a07985" + resolved "https://neo.jfrog.io/neo/api/npm/npm/@firebase/app-types/-/app-types-0.2.0.tgz#2a0e9c433d5f39e428358c5cd8065010d5a07985" "@firebase/app@0.2.0": version "0.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/@firebase/app/-/app-0.2.0.tgz?dl=https://registry.npmjs.org/@firebase/app/-/app-0.2.0.tgz#015c270f07be2b01cf64129a2d0f9b3b87f3c135" + resolved "https://neo.jfrog.io/neo/api/npm/npm/@firebase/app/-/app-0.2.0.tgz#015c270f07be2b01cf64129a2d0f9b3b87f3c135" dependencies: "@firebase/app-types" "0.2.0" "@firebase/util" "0.1.11" @@ -60,21 +60,21 @@ "@firebase/auth-types@0.2.1": version "0.2.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/@firebase/auth-types/-/auth-types-0.2.1.tgz?dl=https://registry.npmjs.org/@firebase/auth-types/-/auth-types-0.2.1.tgz#83a03939358ce8a59de85404b9ed7ca13a51548f" + resolved "https://neo.jfrog.io/neo/api/npm/npm/@firebase/auth-types/-/auth-types-0.2.1.tgz#83a03939358ce8a59de85404b9ed7ca13a51548f" "@firebase/auth@0.4.2": version "0.4.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/@firebase/auth/-/auth-0.4.2.tgz?dl=https://registry.npmjs.org/@firebase/auth/-/auth-0.4.2.tgz#63044e6ca6fb98ddc2de5a442f56f9d612ed1903" + resolved "https://neo.jfrog.io/neo/api/npm/npm/@firebase/auth/-/auth-0.4.2.tgz#63044e6ca6fb98ddc2de5a442f56f9d612ed1903" dependencies: "@firebase/auth-types" "0.2.1" "@firebase/database-types@0.2.1": version "0.2.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/@firebase/database-types/-/database-types-0.2.1.tgz?dl=https://registry.npmjs.org/@firebase/database-types/-/database-types-0.2.1.tgz#f83a6d03af5f8c93276ceb89e1f31e4664c9df1b" + resolved "https://neo.jfrog.io/neo/api/npm/npm/@firebase/database-types/-/database-types-0.2.1.tgz#f83a6d03af5f8c93276ceb89e1f31e4664c9df1b" "@firebase/database@0.2.2": version "0.2.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/@firebase/database/-/database-0.2.2.tgz?dl=https://registry.npmjs.org/@firebase/database/-/database-0.2.2.tgz#a8a0709644d7f281b400e983c71c8c65fba90c70" + resolved "https://neo.jfrog.io/neo/api/npm/npm/@firebase/database/-/database-0.2.2.tgz#a8a0709644d7f281b400e983c71c8c65fba90c70" dependencies: "@firebase/database-types" "0.2.1" "@firebase/logger" "0.1.1" @@ -84,11 +84,11 @@ "@firebase/firestore-types@0.3.0": version "0.3.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/@firebase/firestore-types/-/firestore-types-0.3.0.tgz?dl=https://registry.npmjs.org/@firebase/firestore-types/-/firestore-types-0.3.0.tgz#9df0af784145c568c6d306eda1dd25198b5a2b50" + resolved "https://neo.jfrog.io/neo/api/npm/npm/@firebase/firestore-types/-/firestore-types-0.3.0.tgz#9df0af784145c568c6d306eda1dd25198b5a2b50" "@firebase/firestore@0.4.1": version "0.4.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/@firebase/firestore/-/firestore-0.4.1.tgz?dl=https://registry.npmjs.org/@firebase/firestore/-/firestore-0.4.1.tgz#c42e0c7aebab96eecec5e8ac4a3fe944d573458f" + resolved "https://neo.jfrog.io/neo/api/npm/npm/@firebase/firestore/-/firestore-0.4.1.tgz#c42e0c7aebab96eecec5e8ac4a3fe944d573458f" dependencies: "@firebase/firestore-types" "0.3.0" "@firebase/logger" "0.1.1" @@ -98,11 +98,11 @@ "@firebase/functions-types@0.1.1": version "0.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/@firebase/functions-types/-/functions-types-0.1.1.tgz?dl=https://registry.npmjs.org/@firebase/functions-types/-/functions-types-0.1.1.tgz#3b2176bdb30a4682321eb2ff79e796f6d9c010e0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/@firebase/functions-types/-/functions-types-0.1.1.tgz#3b2176bdb30a4682321eb2ff79e796f6d9c010e0" "@firebase/functions@0.1.1": version "0.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/@firebase/functions/-/functions-0.1.1.tgz?dl=https://registry.npmjs.org/@firebase/functions/-/functions-0.1.1.tgz#5b351c24de82db823dda1c82d25b76fe5c176141" + resolved "https://neo.jfrog.io/neo/api/npm/npm/@firebase/functions/-/functions-0.1.1.tgz#5b351c24de82db823dda1c82d25b76fe5c176141" dependencies: "@firebase/functions-types" "0.1.1" "@firebase/messaging-types" "0.1.3" @@ -110,15 +110,15 @@ "@firebase/logger@0.1.1": version "0.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/@firebase/logger/-/logger-0.1.1.tgz?dl=https://registry.npmjs.org/@firebase/logger/-/logger-0.1.1.tgz#af5df54253286993f4b367c3dabe569c848860d3" + resolved "https://neo.jfrog.io/neo/api/npm/npm/@firebase/logger/-/logger-0.1.1.tgz#af5df54253286993f4b367c3dabe569c848860d3" "@firebase/messaging-types@0.1.3": version "0.1.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/@firebase/messaging-types/-/messaging-types-0.1.3.tgz?dl=https://registry.npmjs.org/@firebase/messaging-types/-/messaging-types-0.1.3.tgz#0a80c69c8f791e3aa94b28f4d2e296d0ea2571bc" + resolved "https://neo.jfrog.io/neo/api/npm/npm/@firebase/messaging-types/-/messaging-types-0.1.3.tgz#0a80c69c8f791e3aa94b28f4d2e296d0ea2571bc" "@firebase/messaging@0.2.4": version "0.2.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/@firebase/messaging/-/messaging-0.2.4.tgz?dl=https://registry.npmjs.org/@firebase/messaging/-/messaging-0.2.4.tgz#f6404c82f7cb86538f5fa62b4549b28a4edb9f90" + resolved "https://neo.jfrog.io/neo/api/npm/npm/@firebase/messaging/-/messaging-0.2.4.tgz#f6404c82f7cb86538f5fa62b4549b28a4edb9f90" dependencies: "@firebase/messaging-types" "0.1.3" "@firebase/util" "0.1.11" @@ -126,7 +126,7 @@ "@firebase/polyfill@0.3.1": version "0.3.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/@firebase/polyfill/-/polyfill-0.3.1.tgz?dl=https://registry.npmjs.org/@firebase/polyfill/-/polyfill-0.3.1.tgz#9835cc9b7a1369a92e38a95f96e42d0ee71f18fe" + resolved "https://neo.jfrog.io/neo/api/npm/npm/@firebase/polyfill/-/polyfill-0.3.1.tgz#9835cc9b7a1369a92e38a95f96e42d0ee71f18fe" dependencies: core-js "2.5.5" promise-polyfill "7.1.2" @@ -134,143 +134,137 @@ "@firebase/storage-types@0.1.3": version "0.1.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/@firebase/storage-types/-/storage-types-0.1.3.tgz?dl=https://registry.npmjs.org/@firebase/storage-types/-/storage-types-0.1.3.tgz#3e68942c5aab9f5f7180a797dff22d239821668e" + resolved "https://neo.jfrog.io/neo/api/npm/npm/@firebase/storage-types/-/storage-types-0.1.3.tgz#3e68942c5aab9f5f7180a797dff22d239821668e" "@firebase/storage@0.1.9": version "0.1.9" - resolved "https://neo.jfrog.io/neo/api/npm/npm/@firebase/storage/-/storage-0.1.9.tgz?dl=https://registry.npmjs.org/@firebase/storage/-/storage-0.1.9.tgz#1a32bd3f48a98f7eb1472cb3e5e4e37e04464c48" + resolved "https://neo.jfrog.io/neo/api/npm/npm/@firebase/storage/-/storage-0.1.9.tgz#1a32bd3f48a98f7eb1472cb3e5e4e37e04464c48" dependencies: "@firebase/storage-types" "0.1.3" tslib "1.9.0" "@firebase/util@0.1.11": version "0.1.11" - resolved "https://neo.jfrog.io/neo/api/npm/npm/@firebase/util/-/util-0.1.11.tgz?dl=https://registry.npmjs.org/@firebase/util/-/util-0.1.11.tgz#9990dff53930aa9fcae31494ebe8de5c5b8e815c" + resolved "https://neo.jfrog.io/neo/api/npm/npm/@firebase/util/-/util-0.1.11.tgz#9990dff53930aa9fcae31494ebe8de5c5b8e815c" dependencies: tslib "1.9.0" "@firebase/webchannel-wrapper@0.2.8": version "0.2.8" - resolved "https://neo.jfrog.io/neo/api/npm/npm/@firebase/webchannel-wrapper/-/webchannel-wrapper-0.2.8.tgz?dl=https://registry.npmjs.org/@firebase/webchannel-wrapper/-/webchannel-wrapper-0.2.8.tgz#38a936b60b898a1ad0f3719543ff1a1031f60f8b" + resolved "https://neo.jfrog.io/neo/api/npm/npm/@firebase/webchannel-wrapper/-/webchannel-wrapper-0.2.8.tgz#38a936b60b898a1ad0f3719543ff1a1031f60f8b" "@most/multicast@^1.2.5": version "1.3.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/@most/multicast/-/multicast-1.3.0.tgz?dl=https://registry.npmjs.org/@most/multicast/-/multicast-1.3.0.tgz#e01574840df634478ac3fabd164c6e830fb3b966" + resolved "https://neo.jfrog.io/neo/api/npm/npm/@most/multicast/-/multicast-1.3.0.tgz#e01574840df634478ac3fabd164c6e830fb3b966" dependencies: "@most/prelude" "^1.4.0" "@most/prelude@^1.4.0": version "1.7.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/@most/prelude/-/prelude-1.7.1.tgz?dl=https://registry.npmjs.org/@most/prelude/-/prelude-1.7.1.tgz#7c70ab6a68bb20481db51ebfbba23fceb502d239" + resolved "https://neo.jfrog.io/neo/api/npm/npm/@most/prelude/-/prelude-1.7.1.tgz#7c70ab6a68bb20481db51ebfbba23fceb502d239" "@types/blob-util@1.3.3": version "1.3.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/@types/blob-util/-/blob-util-1.3.3.tgz?dl=https://registry.npmjs.org/@types/blob-util/-/blob-util-1.3.3.tgz#adba644ae34f88e1dd9a5864c66ad651caaf628a" + resolved "https://neo.jfrog.io/neo/api/npm/npm/@types/blob-util/-/blob-util-1.3.3.tgz#adba644ae34f88e1dd9a5864c66ad651caaf628a" "@types/bluebird@3.5.18": version "3.5.18" - resolved "https://neo.jfrog.io/neo/api/npm/npm/@types/bluebird/-/bluebird-3.5.18.tgz?dl=https://registry.npmjs.org/@types/bluebird/-/bluebird-3.5.18.tgz#6a60435d4663e290f3709898a4f75014f279c4d6" + resolved "https://neo.jfrog.io/neo/api/npm/npm/@types/bluebird/-/bluebird-3.5.18.tgz#6a60435d4663e290f3709898a4f75014f279c4d6" "@types/chai-jquery@1.1.35": version "1.1.35" - resolved "https://neo.jfrog.io/neo/api/npm/npm/@types/chai-jquery/-/chai-jquery-1.1.35.tgz?dl=https://registry.npmjs.org/@types/chai-jquery/-/chai-jquery-1.1.35.tgz#9a8f0a39ec0851b2768a8f8c764158c2a2568d04" + resolved "https://neo.jfrog.io/neo/api/npm/npm/@types/chai-jquery/-/chai-jquery-1.1.35.tgz#9a8f0a39ec0851b2768a8f8c764158c2a2568d04" dependencies: "@types/chai" "*" "@types/jquery" "*" "@types/chai@*": - version "4.1.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/@types/chai/-/chai-4.1.2.tgz?dl=https://registry.npmjs.org/@types/chai/-/chai-4.1.2.tgz#f1af664769cfb50af805431c407425ed619daa21" + version "4.1.4" + resolved "https://neo.jfrog.io/neo/api/npm/npm/@types/chai/-/chai-4.1.4.tgz#5ca073b330d90b4066d6ce18f60d57f2084ce8ca" "@types/chai@4.0.8": version "4.0.8" - resolved "https://neo.jfrog.io/neo/api/npm/npm/@types/chai/-/chai-4.0.8.tgz?dl=https://registry.npmjs.org/@types/chai/-/chai-4.0.8.tgz#d27600e9ba2f371e08695d90a0fe0408d89c7be7" + resolved "https://neo.jfrog.io/neo/api/npm/npm/@types/chai/-/chai-4.0.8.tgz#d27600e9ba2f371e08695d90a0fe0408d89c7be7" "@types/jquery@*": - version "3.3.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/@types/jquery/-/jquery-3.3.1.tgz?dl=https://registry.npmjs.org/@types/jquery/-/jquery-3.3.1.tgz#55758d44d422756d6329cbf54e6d41931d7ba28f" + version "3.3.3" + resolved "https://neo.jfrog.io/neo/api/npm/npm/@types/jquery/-/jquery-3.3.3.tgz#8d1dc5a11be6e22b14d36536d306d34b6ac8de41" "@types/jquery@3.2.16": version "3.2.16" - resolved "https://neo.jfrog.io/neo/api/npm/npm/@types/jquery/-/jquery-3.2.16.tgz?dl=https://registry.npmjs.org/@types/jquery/-/jquery-3.2.16.tgz#04419c404a3194350e7d3f339a90e72c88db3111" + resolved "https://neo.jfrog.io/neo/api/npm/npm/@types/jquery/-/jquery-3.2.16.tgz#04419c404a3194350e7d3f339a90e72c88db3111" "@types/lodash@4.14.87": version "4.14.87" - resolved "https://neo.jfrog.io/neo/api/npm/npm/@types/lodash/-/lodash-4.14.87.tgz?dl=https://registry.npmjs.org/@types/lodash/-/lodash-4.14.87.tgz#55f92183b048c2c64402afe472f8333f4e319a6b" + resolved "https://neo.jfrog.io/neo/api/npm/npm/@types/lodash/-/lodash-4.14.87.tgz#55f92183b048c2c64402afe472f8333f4e319a6b" "@types/minimatch@3.0.1": version "3.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/@types/minimatch/-/minimatch-3.0.1.tgz?dl=https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.1.tgz#b683eb60be358304ef146f5775db4c0e3696a550" + resolved "https://neo.jfrog.io/neo/api/npm/npm/@types/minimatch/-/minimatch-3.0.1.tgz#b683eb60be358304ef146f5775db4c0e3696a550" "@types/mocha@2.2.44": version "2.2.44" - resolved "https://neo.jfrog.io/neo/api/npm/npm/@types/mocha/-/mocha-2.2.44.tgz?dl=https://registry.npmjs.org/@types/mocha/-/mocha-2.2.44.tgz#1d4a798e53f35212fd5ad4d04050620171cd5b5e" + resolved "https://neo.jfrog.io/neo/api/npm/npm/@types/mocha/-/mocha-2.2.44.tgz#1d4a798e53f35212fd5ad4d04050620171cd5b5e" "@types/sinon-chai@2.7.29": version "2.7.29" - resolved "https://neo.jfrog.io/neo/api/npm/npm/@types/sinon-chai/-/sinon-chai-2.7.29.tgz?dl=https://registry.npmjs.org/@types/sinon-chai/-/sinon-chai-2.7.29.tgz#4db01497e2dd1908b2bd30d1782f456353f5f723" + resolved "https://neo.jfrog.io/neo/api/npm/npm/@types/sinon-chai/-/sinon-chai-2.7.29.tgz#4db01497e2dd1908b2bd30d1782f456353f5f723" dependencies: "@types/chai" "*" "@types/sinon" "*" "@types/sinon@*": - version "4.3.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/@types/sinon/-/sinon-4.3.1.tgz?dl=https://registry.npmjs.org/@types/sinon/-/sinon-4.3.1.tgz#32458f9b166cd44c23844eee4937814276f35199" + version "5.0.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/@types/sinon/-/sinon-5.0.1.tgz#a15b36ec42f1f53166617491feabd1734cb03e21" "@types/sinon@4.0.0": version "4.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/@types/sinon/-/sinon-4.0.0.tgz?dl=https://registry.npmjs.org/@types/sinon/-/sinon-4.0.0.tgz#9a93ffa4ee1329e85166278a5ed99f81dc4c8362" + resolved "https://neo.jfrog.io/neo/api/npm/npm/@types/sinon/-/sinon-4.0.0.tgz#9a93ffa4ee1329e85166278a5ed99f81dc4c8362" -abab@^1.0.3, abab@^1.0.4: +abab@^1.0.4: version "1.0.4" resolved "https://neo.jfrog.io/neo/api/npm/npm/abab/-/abab-1.0.4.tgz#5faad9c2c07f60dd76770f71cf025b62a63cfd4e" abbrev@1: version "1.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/abbrev/-/abbrev-1.1.1.tgz?dl=https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" + resolved "https://neo.jfrog.io/neo/api/npm/npm/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" accepts@~1.3.4, accepts@~1.3.5: version "1.3.5" - resolved "https://neo.jfrog.io/neo/api/npm/npm/accepts/-/accepts-1.3.5.tgz?dl=https://registry.npmjs.org/accepts/-/accepts-1.3.5.tgz#eb777df6011723a3b14e8a72c0805c8e86746bd2" + resolved "https://neo.jfrog.io/neo/api/npm/npm/accepts/-/accepts-1.3.5.tgz#eb777df6011723a3b14e8a72c0805c8e86746bd2" dependencies: mime-types "~2.1.18" negotiator "0.6.1" acorn-dynamic-import@^2.0.0: version "2.0.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz?dl=https://registry.npmjs.org/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz#c752bd210bef679501b6c6cb7fc84f8f47158cc4" + resolved "https://neo.jfrog.io/neo/api/npm/npm/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz#c752bd210bef679501b6c6cb7fc84f8f47158cc4" dependencies: acorn "^4.0.3" -acorn-globals@^3.1.0: - version "3.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" - dependencies: - acorn "^4.0.4" - acorn-globals@^4.1.0: version "4.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/acorn-globals/-/acorn-globals-4.1.0.tgz?dl=https://registry.npmjs.org/acorn-globals/-/acorn-globals-4.1.0.tgz#ab716025dbe17c54d3ef81d32ece2b2d99fe2538" + resolved "https://neo.jfrog.io/neo/api/npm/npm/acorn-globals/-/acorn-globals-4.1.0.tgz#ab716025dbe17c54d3ef81d32ece2b2d99fe2538" dependencies: acorn "^5.0.0" acorn-jsx@^3.0.0: version "3.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/acorn-jsx/-/acorn-jsx-3.0.1.tgz?dl=https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" + resolved "https://neo.jfrog.io/neo/api/npm/npm/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" dependencies: acorn "^3.0.4" acorn@^3.0.4: version "3.3.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/acorn/-/acorn-3.3.0.tgz?dl=https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" + resolved "https://neo.jfrog.io/neo/api/npm/npm/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" -acorn@^4.0.3, acorn@^4.0.4: +acorn@^4.0.3: version "4.0.13" resolved "https://neo.jfrog.io/neo/api/npm/npm/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" acorn@^5.0.0, acorn@^5.3.0, acorn@^5.5.0: - version "5.5.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/acorn/-/acorn-5.5.3.tgz?dl=https://registry.npmjs.org/acorn/-/acorn-5.5.3.tgz#f473dd47e0277a08e28e9bec5aeeb04751f0b8c9" + version "5.7.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/acorn/-/acorn-5.7.1.tgz#f095829297706a7c9776958c0afc8930a9b9d9d8" after@0.8.2: version "0.8.2" @@ -278,20 +272,20 @@ after@0.8.2: ajv-keywords@^2.1.0: version "2.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/ajv-keywords/-/ajv-keywords-2.1.1.tgz?dl=https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762" + resolved "https://neo.jfrog.io/neo/api/npm/npm/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762" ajv-keywords@^3.1.0: version "3.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/ajv-keywords/-/ajv-keywords-3.2.0.tgz?dl=https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.2.0.tgz#e86b819c602cf8821ad637413698f1dec021847a" + resolved "https://neo.jfrog.io/neo/api/npm/npm/ajv-keywords/-/ajv-keywords-3.2.0.tgz#e86b819c602cf8821ad637413698f1dec021847a" ajv@^4.9.1: version "4.11.8" - resolved "https://neo.jfrog.io/neo/api/npm/npm/ajv/-/ajv-4.11.8.tgz?dl=https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" + resolved "https://neo.jfrog.io/neo/api/npm/npm/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" dependencies: co "^4.6.0" json-stable-stringify "^1.0.1" -ajv@^5.0.0, ajv@^5.2.3, ajv@^5.3.0: +ajv@^5.0.0, ajv@^5.1.0, ajv@^5.2.3, ajv@^5.3.0: version "5.5.2" resolved "https://neo.jfrog.io/neo/api/npm/npm/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" dependencies: @@ -300,27 +294,18 @@ ajv@^5.0.0, ajv@^5.2.3, ajv@^5.3.0: fast-json-stable-stringify "^2.0.0" json-schema-traverse "^0.3.0" -ajv@^5.1.0: - version "5.2.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/ajv/-/ajv-5.2.3.tgz#c06f598778c44c6b161abafe3466b81ad1814ed2" - dependencies: - co "^4.6.0" - fast-deep-equal "^1.0.0" - json-schema-traverse "^0.3.0" - json-stable-stringify "^1.0.1" - ajv@^6.1.0: - version "6.5.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/ajv/-/ajv-6.5.0.tgz?dl=https://registry.npmjs.org/ajv/-/ajv-6.5.0.tgz#4c8affdf80887d8f132c9c52ab8a2dc4d0b7b24c" + version "6.5.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/ajv/-/ajv-6.5.1.tgz#88ebc1263c7133937d108b80c5572e64e1d9322d" dependencies: fast-deep-equal "^2.0.1" fast-json-stable-stringify "^2.0.0" - json-schema-traverse "^0.3.0" + json-schema-traverse "^0.4.1" uri-js "^4.2.1" align-text@^0.1.1, align-text@^0.1.3: version "0.1.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/align-text/-/align-text-0.1.4.tgz?dl=https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" + resolved "https://neo.jfrog.io/neo/api/npm/npm/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" dependencies: kind-of "^3.0.2" longest "^1.0.1" @@ -328,7 +313,7 @@ align-text@^0.1.1, align-text@^0.1.3: alphanum-sort@^1.0.1, alphanum-sort@^1.0.2: version "1.0.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/alphanum-sort/-/alphanum-sort-1.0.2.tgz?dl=https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3" + resolved "https://neo.jfrog.io/neo/api/npm/npm/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3" amdefine@>=0.0.4: version "1.0.1" @@ -340,7 +325,7 @@ ansi-escapes@^1.0.0: ansi-escapes@^3.0.0: version "3.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/ansi-escapes/-/ansi-escapes-3.1.0.tgz?dl=https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.1.0.tgz#f73207bb81207d75fd6c83f125af26eea378ca30" + resolved "https://neo.jfrog.io/neo/api/npm/npm/ansi-escapes/-/ansi-escapes-3.1.0.tgz#f73207bb81207d75fd6c83f125af26eea378ca30" ansi-html@0.0.7: version "0.0.7" @@ -348,32 +333,25 @@ ansi-html@0.0.7: ansi-regex@^2.0.0, ansi-regex@^2.1.1: version "2.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/ansi-regex/-/ansi-regex-2.1.1.tgz?dl=https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" + resolved "https://neo.jfrog.io/neo/api/npm/npm/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" ansi-regex@^3.0.0: version "3.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/ansi-regex/-/ansi-regex-3.0.0.tgz?dl=https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" + resolved "https://neo.jfrog.io/neo/api/npm/npm/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" ansi-styles@^2.2.1: version "2.2.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/ansi-styles/-/ansi-styles-2.2.1.tgz?dl=https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" + resolved "https://neo.jfrog.io/neo/api/npm/npm/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" ansi-styles@^3.0.0, ansi-styles@^3.1.0, ansi-styles@^3.2.0, ansi-styles@^3.2.1: version "3.2.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/ansi-styles/-/ansi-styles-3.2.1.tgz?dl=https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + resolved "https://neo.jfrog.io/neo/api/npm/npm/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" dependencies: color-convert "^1.9.0" -antlr4@4.6.0: - version "4.6.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/antlr4/-/antlr4-4.6.0.tgz#0d7e8b4b4692ebf1d9470ae59cf627428bcc6dec" - -anymatch@^1.3.0: - version "1.3.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/anymatch/-/anymatch-1.3.2.tgz?dl=https://registry.npmjs.org/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" - dependencies: - micromatch "^2.1.5" - normalize-path "^2.0.0" +antlr4@4.7.0: + version "4.7.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/antlr4/-/antlr4-4.7.0.tgz#297f956ddc06f83397fc0990ecf2e0cf20bfbbee" anymatch@^2.0.0: version "2.0.0" @@ -386,38 +364,32 @@ app-root-path@^2.0.0: version "2.0.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/app-root-path/-/app-root-path-2.0.1.tgz#cd62dcf8e4fd5a417efc664d2e5b10653c651b46" -append-transform@^0.4.0: - version "0.4.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" - dependencies: - default-require-extensions "^1.0.0" - append-transform@^1.0.0: version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/append-transform/-/append-transform-1.0.0.tgz?dl=https://registry.npmjs.org/append-transform/-/append-transform-1.0.0.tgz#046a52ae582a228bd72f58acfbe2967c678759ab" + resolved "https://neo.jfrog.io/neo/api/npm/npm/append-transform/-/append-transform-1.0.0.tgz#046a52ae582a228bd72f58acfbe2967c678759ab" dependencies: default-require-extensions "^2.0.0" aproba@^1.0.3, aproba@^1.1.1: version "1.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/aproba/-/aproba-1.2.0.tgz?dl=https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" + resolved "https://neo.jfrog.io/neo/api/npm/npm/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" are-we-there-yet@~1.1.2: - version "1.1.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz?dl=https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" + version "1.1.5" + resolved "https://neo.jfrog.io/neo/api/npm/npm/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" dependencies: delegates "^1.0.0" readable-stream "^2.0.6" argparse@^1.0.7: version "1.0.10" - resolved "https://neo.jfrog.io/neo/api/npm/npm/argparse/-/argparse-1.0.10.tgz?dl=https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" + resolved "https://neo.jfrog.io/neo/api/npm/npm/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" dependencies: sprintf-js "~1.0.2" arr-diff@^2.0.0: version "2.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/arr-diff/-/arr-diff-2.0.0.tgz?dl=https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" + resolved "https://neo.jfrog.io/neo/api/npm/npm/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" dependencies: arr-flatten "^1.0.1" @@ -427,7 +399,7 @@ arr-diff@^4.0.0: arr-flatten@^1.0.1, arr-flatten@^1.1.0: version "1.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/arr-flatten/-/arr-flatten-1.1.0.tgz?dl=https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" arr-union@^3.1.0: version "3.1.0" @@ -443,7 +415,7 @@ array-find-index@^1.0.1: array-flatten@1.1.1: version "1.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/array-flatten/-/array-flatten-1.1.1.tgz?dl=https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" + resolved "https://neo.jfrog.io/neo/api/npm/npm/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" array-flatten@^2.1.0: version "2.1.1" @@ -451,24 +423,24 @@ array-flatten@^2.1.0: array-includes@^3.0.3: version "3.0.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/array-includes/-/array-includes-3.0.3.tgz?dl=https://registry.npmjs.org/array-includes/-/array-includes-3.0.3.tgz#184b48f62d92d7452bb31b323165c7f8bd02266d" + resolved "https://neo.jfrog.io/neo/api/npm/npm/array-includes/-/array-includes-3.0.3.tgz#184b48f62d92d7452bb31b323165c7f8bd02266d" dependencies: define-properties "^1.1.2" es-abstract "^1.7.0" array-union@^1.0.1: version "1.0.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/array-union/-/array-union-1.0.2.tgz?dl=https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" + resolved "https://neo.jfrog.io/neo/api/npm/npm/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" dependencies: array-uniq "^1.0.1" array-uniq@^1.0.1: version "1.0.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/array-uniq/-/array-uniq-1.0.3.tgz?dl=https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" + resolved "https://neo.jfrog.io/neo/api/npm/npm/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" array-unique@^0.2.1: version "0.2.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/array-unique/-/array-unique-0.2.1.tgz?dl=https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" + resolved "https://neo.jfrog.io/neo/api/npm/npm/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" array-unique@^0.3.2: version "0.3.2" @@ -476,7 +448,7 @@ array-unique@^0.3.2: arraybuffer.slice@~0.0.7: version "0.0.7" - resolved "https://neo.jfrog.io/neo/api/npm/npm/arraybuffer.slice/-/arraybuffer.slice-0.0.7.tgz?dl=https://registry.npmjs.org/arraybuffer.slice/-/arraybuffer.slice-0.0.7.tgz#3bbc4275dd584cc1b10809b89d4e8b63a69e7675" + resolved "https://neo.jfrog.io/neo/api/npm/npm/arraybuffer.slice/-/arraybuffer.slice-0.0.7.tgz#3bbc4275dd584cc1b10809b89d4e8b63a69e7675" arrify@^1.0.0, arrify@^1.0.1: version "1.0.1" @@ -484,7 +456,7 @@ arrify@^1.0.0, arrify@^1.0.1: asap@^2.0.6, asap@~2.0.3: version "2.0.6" - resolved "https://neo.jfrog.io/neo/api/npm/npm/asap/-/asap-2.0.6.tgz?dl=https://registry.npmjs.org/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" + resolved "https://neo.jfrog.io/neo/api/npm/npm/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" ascii-data-table@^2.1.1: version "2.1.1" @@ -494,14 +466,14 @@ ascii-data-table@^2.1.1: ascli@~1: version "1.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/ascli/-/ascli-1.0.1.tgz?dl=https://registry.npmjs.org/ascli/-/ascli-1.0.1.tgz#bcfa5974a62f18e81cabaeb49732ab4a88f906bc" + resolved "https://neo.jfrog.io/neo/api/npm/npm/ascli/-/ascli-1.0.1.tgz#bcfa5974a62f18e81cabaeb49732ab4a88f906bc" dependencies: colour "~0.7.1" optjs "~3.2.2" asn1.js@^4.0.0: version "4.10.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/asn1.js/-/asn1.js-4.10.1.tgz?dl=https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz#b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/asn1.js/-/asn1.js-4.10.1.tgz#b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0" dependencies: bn.js "^4.0.0" inherits "^2.0.1" @@ -509,25 +481,25 @@ asn1.js@^4.0.0: asn1@~0.2.3: version "0.2.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/asn1/-/asn1-0.2.3.tgz?dl=https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" + resolved "https://neo.jfrog.io/neo/api/npm/npm/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" assert-plus@1.0.0, assert-plus@^1.0.0: version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/assert-plus/-/assert-plus-1.0.0.tgz?dl=https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" + resolved "https://neo.jfrog.io/neo/api/npm/npm/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" assert-plus@^0.2.0: version "0.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/assert-plus/-/assert-plus-0.2.0.tgz?dl=https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" + resolved "https://neo.jfrog.io/neo/api/npm/npm/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" assert@^1.1.1: version "1.4.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/assert/-/assert-1.4.1.tgz?dl=https://registry.npmjs.org/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" + resolved "https://neo.jfrog.io/neo/api/npm/npm/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" dependencies: util "0.10.3" assertion-error@^1.0.1: version "1.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/assertion-error/-/assertion-error-1.1.0.tgz?dl=https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz#e60b6b0e8f301bd97e5375215bda406c85118c0b" + resolved "https://neo.jfrog.io/neo/api/npm/npm/assertion-error/-/assertion-error-1.1.0.tgz#e60b6b0e8f301bd97e5375215bda406c85118c0b" assign-symbols@^1.0.0: version "1.0.0" @@ -543,11 +515,11 @@ astral-regex@^1.0.0: async-each@^1.0.0: version "1.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/async-each/-/async-each-1.0.1.tgz?dl=https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" + resolved "https://neo.jfrog.io/neo/api/npm/npm/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" async-limiter@~1.0.0: version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/async-limiter/-/async-limiter-1.0.0.tgz?dl=https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8" + resolved "https://neo.jfrog.io/neo/api/npm/npm/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8" async@2.1.4: version "2.1.4" @@ -559,45 +531,29 @@ async@^1.4.0, async@^1.5.2: version "1.5.2" resolved "https://neo.jfrog.io/neo/api/npm/npm/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" -async@^2.1.2: +async@^2.1.2, async@^2.1.4, async@^2.4.1: version "2.6.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/async/-/async-2.6.1.tgz?dl=https://registry.npmjs.org/async/-/async-2.6.1.tgz#b245a23ca71930044ec53fa46aa00a3e87c6a610" + resolved "https://neo.jfrog.io/neo/api/npm/npm/async/-/async-2.6.1.tgz#b245a23ca71930044ec53fa46aa00a3e87c6a610" dependencies: lodash "^4.17.10" -async@^2.1.4: - version "2.5.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/async/-/async-2.5.0.tgz#843190fd6b7357a0b9e1c956edddd5ec8462b54d" - dependencies: - lodash "^4.14.0" - -async@^2.4.1: - version "2.6.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/async/-/async-2.6.0.tgz#61a29abb6fcc026fea77e56d1c6ec53a795951f4" - dependencies: - lodash "^4.14.0" - asynckit@^0.4.0: version "0.4.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/asynckit/-/asynckit-0.4.0.tgz?dl=https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" - -atob@^2.0.0: - version "2.0.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/atob/-/atob-2.0.3.tgz#19c7a760473774468f20b2d2d03372ad7d4cbf5d" + resolved "https://neo.jfrog.io/neo/api/npm/npm/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" atob@^2.1.1: version "2.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/atob/-/atob-2.1.1.tgz?dl=https://registry.npmjs.org/atob/-/atob-2.1.1.tgz#ae2d5a729477f289d60dd7f96a6314a22dd6c22a" + resolved "https://neo.jfrog.io/neo/api/npm/npm/atob/-/atob-2.1.1.tgz#ae2d5a729477f289d60dd7f96a6314a22dd6c22a" attr-accept@^1.0.3: - version "1.1.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/attr-accept/-/attr-accept-1.1.2.tgz?dl=https://registry.npmjs.org/attr-accept/-/attr-accept-1.1.2.tgz#6836bfe054e4ef1ee3076fdde56cec9bb3ffead6" + version "1.1.3" + resolved "https://neo.jfrog.io/neo/api/npm/npm/attr-accept/-/attr-accept-1.1.3.tgz#48230c79f93790ef2775fcec4f0db0f5db41ca52" dependencies: core-js "^2.5.0" autoprefixer@^6.3.1: version "6.7.7" - resolved "https://neo.jfrog.io/neo/api/npm/npm/autoprefixer/-/autoprefixer-6.7.7.tgz?dl=https://registry.npmjs.org/autoprefixer/-/autoprefixer-6.7.7.tgz#1dbd1c835658e35ce3f9984099db00585c782014" + resolved "https://neo.jfrog.io/neo/api/npm/npm/autoprefixer/-/autoprefixer-6.7.7.tgz#1dbd1c835658e35ce3f9984099db00585c782014" dependencies: browserslist "^1.7.6" caniuse-db "^1.0.30000634" @@ -619,55 +575,27 @@ autoprefixer@^7.1.1, autoprefixer@^7.1.4: aws-sign2@~0.6.0: version "0.6.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/aws-sign2/-/aws-sign2-0.6.0.tgz?dl=https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" + resolved "https://neo.jfrog.io/neo/api/npm/npm/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" aws-sign2@~0.7.0: version "0.7.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" -aws4@^1.2.1: +aws4@^1.2.1, aws4@^1.6.0: version "1.7.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/aws4/-/aws4-1.7.0.tgz?dl=https://registry.npmjs.org/aws4/-/aws4-1.7.0.tgz#d4d0e9b9dbfca77bf08eeb0a8a471550fe39e289" - -aws4@^1.6.0: - version "1.6.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" + resolved "https://neo.jfrog.io/neo/api/npm/npm/aws4/-/aws4-1.7.0.tgz#d4d0e9b9dbfca77bf08eeb0a8a471550fe39e289" babel-code-frame@^6.22.0, babel-code-frame@^6.26.0: version "6.26.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/babel-code-frame/-/babel-code-frame-6.26.0.tgz?dl=https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" + resolved "https://neo.jfrog.io/neo/api/npm/npm/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" dependencies: chalk "^1.1.3" esutils "^2.0.2" js-tokens "^3.0.2" -babel-core@^6.0.0: - version "6.26.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" - dependencies: - babel-code-frame "^6.26.0" - babel-generator "^6.26.0" - babel-helpers "^6.24.1" - babel-messages "^6.23.0" - babel-register "^6.26.0" - babel-runtime "^6.26.0" - babel-template "^6.26.0" - babel-traverse "^6.26.0" - babel-types "^6.26.0" - babylon "^6.18.0" - convert-source-map "^1.5.0" - debug "^2.6.8" - json5 "^0.5.1" - lodash "^4.17.4" - minimatch "^3.0.4" - path-is-absolute "^1.0.1" - private "^0.1.7" - slash "^1.0.0" - source-map "^0.5.6" - -babel-core@^6.26.0: +babel-core@^6.0.0, babel-core@^6.26.0: version "6.26.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/babel-core/-/babel-core-6.26.3.tgz?dl=https://registry.npmjs.org/babel-core/-/babel-core-6.26.3.tgz#b2e2f09e342d0f0c88e2f02e067794125e75c207" + resolved "https://neo.jfrog.io/neo/api/npm/npm/babel-core/-/babel-core-6.26.3.tgz#b2e2f09e342d0f0c88e2f02e067794125e75c207" dependencies: babel-code-frame "^6.26.0" babel-generator "^6.26.0" @@ -698,22 +626,9 @@ babel-eslint@^7.2.3: babel-types "^6.23.0" babylon "^6.17.0" -babel-generator@^6.18.0: - version "6.26.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" - dependencies: - babel-messages "^6.23.0" - babel-runtime "^6.26.0" - babel-types "^6.26.0" - detect-indent "^4.0.0" - jsesc "^1.3.0" - lodash "^4.17.4" - source-map "^0.5.6" - trim-right "^1.0.1" - -babel-generator@^6.26.0: +babel-generator@^6.18.0, babel-generator@^6.26.0: version "6.26.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/babel-generator/-/babel-generator-6.26.1.tgz?dl=https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" + resolved "https://neo.jfrog.io/neo/api/npm/npm/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" dependencies: babel-messages "^6.23.0" babel-runtime "^6.26.0" @@ -845,12 +760,12 @@ babel-helper-replace-supers@^6.24.1: babel-helpers@^6.24.1: version "6.24.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/babel-helpers/-/babel-helpers-6.24.1.tgz?dl=https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" + resolved "https://neo.jfrog.io/neo/api/npm/npm/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" dependencies: babel-runtime "^6.22.0" babel-template "^6.24.1" -babel-jest@^21.0.0, babel-jest@^21.2.0: +babel-jest@^21.0.0: version "21.2.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/babel-jest/-/babel-jest-21.2.0.tgz#2ce059519a9374a2c46f2455b6fbef5ad75d863e" dependencies: @@ -859,7 +774,7 @@ babel-jest@^21.0.0, babel-jest@^21.2.0: babel-jest@^23.0.1: version "23.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/babel-jest/-/babel-jest-23.0.1.tgz?dl=https://registry.npmjs.org/babel-jest/-/babel-jest-23.0.1.tgz#bbad3bf523fb202da05ed0a6540b48c84eed13a6" + resolved "https://neo.jfrog.io/neo/api/npm/npm/babel-jest/-/babel-jest-23.0.1.tgz#bbad3bf523fb202da05ed0a6540b48c84eed13a6" dependencies: babel-plugin-istanbul "^4.1.6" babel-preset-jest "^23.0.1" @@ -874,7 +789,7 @@ babel-loader@^7.1.2: babel-messages@^6.23.0: version "6.23.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/babel-messages/-/babel-messages-6.23.0.tgz?dl=https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" + resolved "https://neo.jfrog.io/neo/api/npm/npm/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" dependencies: babel-runtime "^6.22.0" @@ -884,17 +799,9 @@ babel-plugin-check-es2015-constants@^6.22.0: dependencies: babel-runtime "^6.22.0" -babel-plugin-istanbul@^4.0.0: - version "4.1.5" - resolved "https://neo.jfrog.io/neo/api/npm/npm/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.5.tgz#6760cdd977f411d3e175bb064f2bc327d99b2b6e" - dependencies: - find-up "^2.1.0" - istanbul-lib-instrument "^1.7.5" - test-exclude "^4.1.1" - -babel-plugin-istanbul@^4.1.6: +babel-plugin-istanbul@^4.0.0, babel-plugin-istanbul@^4.1.6: version "4.1.6" - resolved "https://neo.jfrog.io/neo/api/npm/npm/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.6.tgz?dl=https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.6.tgz#36c59b2192efce81c5b378321b74175add1c9a45" + resolved "https://neo.jfrog.io/neo/api/npm/npm/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.6.tgz#36c59b2192efce81c5b378321b74175add1c9a45" dependencies: babel-plugin-syntax-object-rest-spread "^6.13.0" find-up "^2.1.0" @@ -907,7 +814,7 @@ babel-plugin-jest-hoist@^21.2.0: babel-plugin-jest-hoist@^23.0.1: version "23.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-23.0.1.tgz?dl=https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-23.0.1.tgz#eaa11c964563aea9c21becef2bdf7853f7f3c148" + resolved "https://neo.jfrog.io/neo/api/npm/npm/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-23.0.1.tgz#eaa11c964563aea9c21becef2bdf7853f7f3c148" babel-plugin-module-resolver@^2.4.0: version "2.7.1" @@ -1085,8 +992,8 @@ babel-plugin-transform-es2015-modules-amd@^6.24.1: babel-template "^6.24.1" babel-plugin-transform-es2015-modules-commonjs@^6.24.1: - version "6.26.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" + version "6.26.2" + resolved "https://neo.jfrog.io/neo/api/npm/npm/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz#58a793863a9e7ca870bdc5a881117ffac27db6f3" dependencies: babel-plugin-transform-strict-mode "^6.24.1" babel-runtime "^6.26.0" @@ -1283,7 +1190,7 @@ babel-preset-jest@^21.2.0: babel-preset-jest@^23.0.1: version "23.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/babel-preset-jest/-/babel-preset-jest-23.0.1.tgz?dl=https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-23.0.1.tgz#631cc545c6cf021943013bcaf22f45d87fe62198" + resolved "https://neo.jfrog.io/neo/api/npm/npm/babel-preset-jest/-/babel-preset-jest-23.0.1.tgz#631cc545c6cf021943013bcaf22f45d87fe62198" dependencies: babel-plugin-jest-hoist "^23.0.1" babel-plugin-syntax-object-rest-spread "^6.13.0" @@ -1320,7 +1227,7 @@ babel-preset-stage-3@^6.24.1: babel-register@^6.26.0: version "6.26.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/babel-register/-/babel-register-6.26.0.tgz?dl=https://registry.npmjs.org/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" + resolved "https://neo.jfrog.io/neo/api/npm/npm/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" dependencies: babel-core "^6.26.0" babel-runtime "^6.26.0" @@ -1384,11 +1291,11 @@ balanced-match@0.1.0: balanced-match@^0.4.2: version "0.4.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/balanced-match/-/balanced-match-0.4.2.tgz?dl=https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" + resolved "https://neo.jfrog.io/neo/api/npm/npm/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" balanced-match@^1.0.0: version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/balanced-match/-/balanced-match-1.0.0.tgz?dl=https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" + resolved "https://neo.jfrog.io/neo/api/npm/npm/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" base16@^1.0.0: version "1.0.0" @@ -1400,7 +1307,7 @@ base64-arraybuffer@0.1.5: base64-js@^1.0.2: version "1.3.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/base64-js/-/base64-js-1.3.0.tgz?dl=https://registry.npmjs.org/base64-js/-/base64-js-1.3.0.tgz#cab1e6118f051095e58b5281aea8c1cd22bfc0e3" + resolved "https://neo.jfrog.io/neo/api/npm/npm/base64-js/-/base64-js-1.3.0.tgz#cab1e6118f051095e58b5281aea8c1cd22bfc0e3" base64id@1.0.0: version "1.0.0" @@ -1424,7 +1331,7 @@ batch@0.6.1: bcrypt-pbkdf@^1.0.0: version "1.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz?dl=https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" + resolved "https://neo.jfrog.io/neo/api/npm/npm/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" dependencies: tweetnacl "^0.14.3" @@ -1436,7 +1343,7 @@ better-assert@~1.0.0: bfj-node4@^5.2.0: version "5.3.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/bfj-node4/-/bfj-node4-5.3.1.tgz?dl=https://registry.npmjs.org/bfj-node4/-/bfj-node4-5.3.1.tgz#e23d8b27057f1d0214fc561142ad9db998f26830" + resolved "https://neo.jfrog.io/neo/api/npm/npm/bfj-node4/-/bfj-node4-5.3.1.tgz#e23d8b27057f1d0214fc561142ad9db998f26830" dependencies: bluebird "^3.5.1" check-types "^7.3.0" @@ -1444,11 +1351,11 @@ bfj-node4@^5.2.0: big.js@^3.1.3: version "3.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/big.js/-/big.js-3.2.0.tgz?dl=https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz#a5fc298b81b9e0dca2e458824784b65c52ba588e" + resolved "https://neo.jfrog.io/neo/api/npm/npm/big.js/-/big.js-3.2.0.tgz#a5fc298b81b9e0dca2e458824784b65c52ba588e" binary-extensions@^1.0.0: version "1.11.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/binary-extensions/-/binary-extensions-1.11.0.tgz?dl=https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" + resolved "https://neo.jfrog.io/neo/api/npm/npm/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" blessed@^0.1.81: version "0.1.81" @@ -1460,25 +1367,25 @@ blob@0.0.4: block-stream@*: version "0.0.9" - resolved "https://neo.jfrog.io/neo/api/npm/npm/block-stream/-/block-stream-0.0.9.tgz?dl=https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" + resolved "https://neo.jfrog.io/neo/api/npm/npm/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" dependencies: inherits "~2.0.0" -bluebird@3.5.0, bluebird@^3.4.7: +bluebird@3.5.0: version "3.5.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/bluebird/-/bluebird-3.5.0.tgz#791420d7f551eea2897453a8a77653f96606d67c" -bluebird@^3.5.1: +bluebird@^3.4.7, bluebird@^3.5.1: version "3.5.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/bluebird/-/bluebird-3.5.1.tgz?dl=https://registry.npmjs.org/bluebird/-/bluebird-3.5.1.tgz#d9551f9de98f1fcda1e683d17ee91a0602ee2eb9" + resolved "https://neo.jfrog.io/neo/api/npm/npm/bluebird/-/bluebird-3.5.1.tgz#d9551f9de98f1fcda1e683d17ee91a0602ee2eb9" bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: version "4.11.8" - resolved "https://neo.jfrog.io/neo/api/npm/npm/bn.js/-/bn.js-4.11.8.tgz?dl=https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" + resolved "https://neo.jfrog.io/neo/api/npm/npm/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" body-parser@1.18.2: version "1.18.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/body-parser/-/body-parser-1.18.2.tgz?dl=https://registry.npmjs.org/body-parser/-/body-parser-1.18.2.tgz#87678a19d84b47d859b83199bd59bce222b10454" + resolved "https://neo.jfrog.io/neo/api/npm/npm/body-parser/-/body-parser-1.18.2.tgz#87678a19d84b47d859b83199bd59bce222b10454" dependencies: bytes "3.0.0" content-type "~1.0.4" @@ -1512,7 +1419,7 @@ boolify@^1.0.0: boom@2.x.x: version "2.10.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/boom/-/boom-2.10.1.tgz?dl=https://registry.npmjs.org/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" + resolved "https://neo.jfrog.io/neo/api/npm/npm/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" dependencies: hoek "2.x.x" @@ -1530,30 +1437,28 @@ boom@5.x.x: brace-expansion@^1.1.7: version "1.1.11" - resolved "https://neo.jfrog.io/neo/api/npm/npm/brace-expansion/-/brace-expansion-1.1.11.tgz?dl=https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + resolved "https://neo.jfrog.io/neo/api/npm/npm/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" dependencies: balanced-match "^1.0.0" concat-map "0.0.1" braces@^1.8.2: version "1.8.5" - resolved "https://neo.jfrog.io/neo/api/npm/npm/braces/-/braces-1.8.5.tgz?dl=https://registry.npmjs.org/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" + resolved "https://neo.jfrog.io/neo/api/npm/npm/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" dependencies: expand-range "^1.8.1" preserve "^0.2.0" repeat-element "^1.1.2" braces@^2.3.0, braces@^2.3.1: - version "2.3.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/braces/-/braces-2.3.1.tgz#7086c913b4e5a08dbe37ac0ee6a2500c4ba691bb" + version "2.3.2" + resolved "https://neo.jfrog.io/neo/api/npm/npm/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" dependencies: arr-flatten "^1.1.0" array-unique "^0.3.2" - define-property "^1.0.0" extend-shallow "^2.0.1" fill-range "^4.0.0" isobject "^3.0.1" - kind-of "^6.0.2" repeat-element "^1.1.2" snapdragon "^0.8.1" snapdragon-node "^2.0.1" @@ -1562,21 +1467,21 @@ braces@^2.3.0, braces@^2.3.1: brorand@^1.0.1: version "1.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/brorand/-/brorand-1.1.0.tgz?dl=https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" + resolved "https://neo.jfrog.io/neo/api/npm/npm/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" browser-process-hrtime@^0.1.2: version "0.1.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/browser-process-hrtime/-/browser-process-hrtime-0.1.2.tgz?dl=https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-0.1.2.tgz#425d68a58d3447f02a04aa894187fce8af8b7b8e" + resolved "https://neo.jfrog.io/neo/api/npm/npm/browser-process-hrtime/-/browser-process-hrtime-0.1.2.tgz#425d68a58d3447f02a04aa894187fce8af8b7b8e" browser-resolve@^1.11.2: - version "1.11.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" + version "1.11.3" + resolved "https://neo.jfrog.io/neo/api/npm/npm/browser-resolve/-/browser-resolve-1.11.3.tgz#9b7cbb3d0f510e4cb86bdbd796124d28b5890af6" dependencies: resolve "1.1.7" browserify-aes@^1.0.0, browserify-aes@^1.0.4: version "1.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/browserify-aes/-/browserify-aes-1.2.0.tgz?dl=https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48" + resolved "https://neo.jfrog.io/neo/api/npm/npm/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48" dependencies: buffer-xor "^1.0.3" cipher-base "^1.0.0" @@ -1587,7 +1492,7 @@ browserify-aes@^1.0.0, browserify-aes@^1.0.4: browserify-cipher@^1.0.0: version "1.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/browserify-cipher/-/browserify-cipher-1.0.1.tgz?dl=https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0" dependencies: browserify-aes "^1.0.4" browserify-des "^1.0.0" @@ -1595,7 +1500,7 @@ browserify-cipher@^1.0.0: browserify-des@^1.0.0: version "1.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/browserify-des/-/browserify-des-1.0.1.tgz?dl=https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.1.tgz#3343124db6d7ad53e26a8826318712bdc8450f9c" + resolved "https://neo.jfrog.io/neo/api/npm/npm/browserify-des/-/browserify-des-1.0.1.tgz#3343124db6d7ad53e26a8826318712bdc8450f9c" dependencies: cipher-base "^1.0.1" des.js "^1.0.0" @@ -1603,14 +1508,14 @@ browserify-des@^1.0.0: browserify-rsa@^4.0.0: version "4.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/browserify-rsa/-/browserify-rsa-4.0.1.tgz?dl=https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" + resolved "https://neo.jfrog.io/neo/api/npm/npm/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" dependencies: bn.js "^4.1.0" randombytes "^2.0.1" browserify-sign@^4.0.0: version "4.0.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/browserify-sign/-/browserify-sign-4.0.4.tgz?dl=https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" + resolved "https://neo.jfrog.io/neo/api/npm/npm/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" dependencies: bn.js "^4.1.1" browserify-rsa "^4.0.0" @@ -1622,13 +1527,13 @@ browserify-sign@^4.0.0: browserify-zlib@^0.2.0: version "0.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/browserify-zlib/-/browserify-zlib-0.2.0.tgz?dl=https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" + resolved "https://neo.jfrog.io/neo/api/npm/npm/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" dependencies: pako "~1.0.5" browserslist@^1.3.6, browserslist@^1.5.2, browserslist@^1.7.6: version "1.7.7" - resolved "https://neo.jfrog.io/neo/api/npm/npm/browserslist/-/browserslist-1.7.7.tgz?dl=https://registry.npmjs.org/browserslist/-/browserslist-1.7.7.tgz#0bd76704258be829b2398bb50e4b62d1a166b0b9" + resolved "https://neo.jfrog.io/neo/api/npm/npm/browserslist/-/browserslist-1.7.7.tgz#0bd76704258be829b2398bb50e4b62d1a166b0b9" dependencies: caniuse-db "^1.0.30000639" electron-to-chromium "^1.2.7" @@ -1651,8 +1556,8 @@ buffer-crc32@~0.2.3: resolved "https://neo.jfrog.io/neo/api/npm/npm/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" buffer-from@^1.0.0: - version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/buffer-from/-/buffer-from-1.0.0.tgz?dl=https://registry.npmjs.org/buffer-from/-/buffer-from-1.0.0.tgz#4cb8832d23612589b0406e9e2956c17f06fdf531" + version "1.1.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/buffer-from/-/buffer-from-1.1.0.tgz#87fcaa3a298358e0ade6e442cfce840740d1ad04" buffer-indexof@^1.0.0: version "1.1.1" @@ -1660,11 +1565,11 @@ buffer-indexof@^1.0.0: buffer-xor@^1.0.3: version "1.0.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/buffer-xor/-/buffer-xor-1.0.3.tgz?dl=https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" + resolved "https://neo.jfrog.io/neo/api/npm/npm/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" buffer@^4.3.0: version "4.9.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/buffer/-/buffer-4.9.1.tgz?dl=https://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" + resolved "https://neo.jfrog.io/neo/api/npm/npm/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" dependencies: base64-js "^1.0.2" ieee754 "^1.1.4" @@ -1672,28 +1577,28 @@ buffer@^4.3.0: buffer@^5.0.3: version "5.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/buffer/-/buffer-5.1.0.tgz?dl=https://registry.npmjs.org/buffer/-/buffer-5.1.0.tgz#c913e43678c7cb7c8bd16afbcddb6c5505e8f9fe" + resolved "https://neo.jfrog.io/neo/api/npm/npm/buffer/-/buffer-5.1.0.tgz#c913e43678c7cb7c8bd16afbcddb6c5505e8f9fe" dependencies: base64-js "^1.0.2" ieee754 "^1.1.4" builtin-modules@^1.0.0: version "1.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/builtin-modules/-/builtin-modules-1.1.1.tgz?dl=https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" + resolved "https://neo.jfrog.io/neo/api/npm/npm/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" builtin-status-codes@^3.0.0: version "3.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz?dl=https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" + resolved "https://neo.jfrog.io/neo/api/npm/npm/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" bytebuffer@~5: version "5.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/bytebuffer/-/bytebuffer-5.0.1.tgz?dl=https://registry.npmjs.org/bytebuffer/-/bytebuffer-5.0.1.tgz#582eea4b1a873b6d020a48d58df85f0bba6cfddd" + resolved "https://neo.jfrog.io/neo/api/npm/npm/bytebuffer/-/bytebuffer-5.0.1.tgz#582eea4b1a873b6d020a48d58df85f0bba6cfddd" dependencies: long "~3" bytes@3.0.0: version "3.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/bytes/-/bytes-3.0.0.tgz?dl=https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" + resolved "https://neo.jfrog.io/neo/api/npm/npm/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" cacache@^10.0.4: version "10.0.4" @@ -1729,13 +1634,13 @@ cache-base@^1.0.1: cachedir@1.2.0: version "1.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/cachedir/-/cachedir-1.2.0.tgz?dl=https://registry.npmjs.org/cachedir/-/cachedir-1.2.0.tgz#e9a0a25bb21a2b7a0f766f07c41eb7a311919b97" + resolved "https://neo.jfrog.io/neo/api/npm/npm/cachedir/-/cachedir-1.2.0.tgz#e9a0a25bb21a2b7a0f766f07c41eb7a311919b97" dependencies: os-homedir "^1.0.1" caller-path@^0.1.0: version "0.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/caller-path/-/caller-path-0.1.0.tgz?dl=https://registry.npmjs.org/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" + resolved "https://neo.jfrog.io/neo/api/npm/npm/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" dependencies: callsites "^0.2.0" @@ -1745,7 +1650,7 @@ callsite@1.0.0: callsites@^0.2.0: version "0.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/callsites/-/callsites-0.2.0.tgz?dl=https://registry.npmjs.org/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" + resolved "https://neo.jfrog.io/neo/api/npm/npm/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" callsites@^2.0.0: version "2.0.0" @@ -1779,11 +1684,11 @@ camelcase-keys@^4.1.0: camelcase@^1.0.2: version "1.2.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/camelcase/-/camelcase-1.2.1.tgz?dl=https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" + resolved "https://neo.jfrog.io/neo/api/npm/npm/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" camelcase@^2.0.0, camelcase@^2.0.1: version "2.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/camelcase/-/camelcase-2.1.1.tgz?dl=https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" + resolved "https://neo.jfrog.io/neo/api/npm/npm/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" camelcase@^3.0.0: version "3.0.0" @@ -1791,11 +1696,11 @@ camelcase@^3.0.0: camelcase@^4.1.0: version "4.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/camelcase/-/camelcase-4.1.0.tgz?dl=https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" + resolved "https://neo.jfrog.io/neo/api/npm/npm/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" caniuse-api@^1.5.2: version "1.6.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/caniuse-api/-/caniuse-api-1.6.1.tgz?dl=https://registry.npmjs.org/caniuse-api/-/caniuse-api-1.6.1.tgz#b534e7c734c4f81ec5fbe8aca2ad24354b962c6c" + resolved "https://neo.jfrog.io/neo/api/npm/npm/caniuse-api/-/caniuse-api-1.6.1.tgz#b534e7c734c4f81ec5fbe8aca2ad24354b962c6c" dependencies: browserslist "^1.3.6" caniuse-db "^1.0.30000529" @@ -1812,20 +1717,26 @@ caniuse-api@^2.0.0: lodash.uniq "^4.5.0" caniuse-db@^1.0.30000529, caniuse-db@^1.0.30000634, caniuse-db@^1.0.30000639: - version "1.0.30000844" - resolved "https://neo.jfrog.io/neo/api/npm/npm/caniuse-db/-/caniuse-db-1.0.30000844.tgz?dl=https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.30000844.tgz#bca5798cda2b6931d68100c2d69e55fb338cbb41" + version "1.0.30000856" + resolved "https://neo.jfrog.io/neo/api/npm/npm/caniuse-db/-/caniuse-db-1.0.30000856.tgz#fbebb99abe15a5654fc7747ebb5315bdfde3358f" caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000792, caniuse-lite@^1.0.30000805: - version "1.0.30000814" - resolved "https://neo.jfrog.io/neo/api/npm/npm/caniuse-lite/-/caniuse-lite-1.0.30000814.tgz#73eb6925ac2e54d495218f1ea0007da3940e488b" + version "1.0.30000856" + resolved "https://neo.jfrog.io/neo/api/npm/npm/caniuse-lite/-/caniuse-lite-1.0.30000856.tgz#ecc16978135a6f219b138991eb62009d25ee8daa" + +capture-exit@^1.2.0: + version "1.2.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/capture-exit/-/capture-exit-1.2.0.tgz#1c5fcc489fd0ab00d4f1ac7ae1072e3173fbab6f" + dependencies: + rsvp "^3.3.3" caseless@~0.12.0: version "0.12.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/caseless/-/caseless-0.12.0.tgz?dl=https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" + resolved "https://neo.jfrog.io/neo/api/npm/npm/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" center-align@^0.1.1: version "0.1.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/center-align/-/center-align-0.1.3.tgz?dl=https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" + resolved "https://neo.jfrog.io/neo/api/npm/npm/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" dependencies: align-text "^0.1.3" lazy-cache "^1.0.3" @@ -1849,9 +1760,9 @@ chalk@2.3.0: escape-string-regexp "^1.0.5" supports-color "^4.0.0" -chalk@2.4.1, chalk@^2.0.0, chalk@^2.1.0, chalk@^2.3.0, chalk@^2.3.1, chalk@^2.4.0, chalk@^2.4.1: +chalk@2.4.1, chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.0, chalk@^2.4.0, chalk@^2.4.1: version "2.4.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/chalk/-/chalk-2.4.1.tgz?dl=https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e" + resolved "https://neo.jfrog.io/neo/api/npm/npm/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e" dependencies: ansi-styles "^3.2.1" escape-string-regexp "^1.0.5" @@ -1859,7 +1770,7 @@ chalk@2.4.1, chalk@^2.0.0, chalk@^2.1.0, chalk@^2.3.0, chalk@^2.3.1, chalk@^2.4. chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3: version "1.1.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/chalk/-/chalk-1.1.3.tgz?dl=https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" + resolved "https://neo.jfrog.io/neo/api/npm/npm/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" dependencies: ansi-styles "^2.2.1" escape-string-regexp "^1.0.2" @@ -1867,51 +1778,25 @@ chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3: strip-ansi "^3.0.0" supports-color "^2.0.0" -chalk@^2.0.1: - version "2.3.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/chalk/-/chalk-2.3.2.tgz#250dc96b07491bfd601e648d66ddf5f60c7a5c65" - dependencies: - ansi-styles "^3.2.1" - escape-string-regexp "^1.0.5" - supports-color "^5.3.0" - chardet@^0.4.0: version "0.4.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/chardet/-/chardet-0.4.2.tgz?dl=https://registry.npmjs.org/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2" + resolved "https://neo.jfrog.io/neo/api/npm/npm/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2" check-error@^1.0.1: version "1.0.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/check-error/-/check-error-1.0.2.tgz?dl=https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82" + resolved "https://neo.jfrog.io/neo/api/npm/npm/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82" check-more-types@2.24.0: version "2.24.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/check-more-types/-/check-more-types-2.24.0.tgz?dl=https://registry.npmjs.org/check-more-types/-/check-more-types-2.24.0.tgz#1420ffb10fd444dcfc79b43891bbfffd32a84600" + resolved "https://neo.jfrog.io/neo/api/npm/npm/check-more-types/-/check-more-types-2.24.0.tgz#1420ffb10fd444dcfc79b43891bbfffd32a84600" check-types@^7.3.0: - version "7.3.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/check-types/-/check-types-7.3.0.tgz?dl=https://registry.npmjs.org/check-types/-/check-types-7.3.0.tgz#468f571a4435c24248f5fd0cb0e8d87c3c341e7d" + version "7.4.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/check-types/-/check-types-7.4.0.tgz#0378ec1b9616ec71f774931a3c6516fad8c152f4" -chokidar@^2.0.0: - version "2.0.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/chokidar/-/chokidar-2.0.2.tgz#4dc65139eeb2714977735b6a35d06e97b494dfd7" - dependencies: - anymatch "^2.0.0" - async-each "^1.0.0" - braces "^2.3.0" - glob-parent "^3.1.0" - inherits "^2.0.1" - is-binary-path "^1.0.0" - is-glob "^4.0.0" - normalize-path "^2.1.1" - path-is-absolute "^1.0.0" - readdirp "^2.0.0" - upath "^1.0.0" - optionalDependencies: - fsevents "^1.0.0" - -chokidar@^2.0.2: - version "2.0.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/chokidar/-/chokidar-2.0.3.tgz?dl=https://registry.npmjs.org/chokidar/-/chokidar-2.0.3.tgz#dcbd4f6cbb2a55b4799ba8a840ac527e5f4b1176" +chokidar@^2.0.0, chokidar@^2.0.2: + version "2.0.4" + resolved "https://neo.jfrog.io/neo/api/npm/npm/chokidar/-/chokidar-2.0.4.tgz#356ff4e2b0e8e43e322d18a372460bbcf3accd26" dependencies: anymatch "^2.0.0" async-each "^1.0.0" @@ -1920,12 +1805,13 @@ chokidar@^2.0.2: inherits "^2.0.1" is-binary-path "^1.0.0" is-glob "^4.0.0" + lodash.debounce "^4.0.8" normalize-path "^2.1.1" path-is-absolute "^1.0.0" readdirp "^2.0.0" - upath "^1.0.0" + upath "^1.0.5" optionalDependencies: - fsevents "^1.1.2" + fsevents "^1.2.2" chownr@^1.0.1: version "1.0.1" @@ -1937,18 +1823,18 @@ ci-info@^1.0.0: cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: version "1.0.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/cipher-base/-/cipher-base-1.0.4.tgz?dl=https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" + resolved "https://neo.jfrog.io/neo/api/npm/npm/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" dependencies: inherits "^2.0.1" safe-buffer "^5.0.1" circular-json@^0.3.1: version "0.3.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/circular-json/-/circular-json-0.3.3.tgz?dl=https://registry.npmjs.org/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" + resolved "https://neo.jfrog.io/neo/api/npm/npm/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" clap@^1.0.9: version "1.2.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/clap/-/clap-1.2.3.tgz?dl=https://registry.npmjs.org/clap/-/clap-1.2.3.tgz#4f36745b32008492557f46412d66d50cb99bce51" + resolved "https://neo.jfrog.io/neo/api/npm/npm/clap/-/clap-1.2.3.tgz#4f36745b32008492557f46412d66d50cb99bce51" dependencies: chalk "^1.1.3" @@ -1962,8 +1848,8 @@ class-utils@^0.3.5: static-extend "^0.1.1" classnames@^2.2.5: - version "2.2.5" - resolved "https://neo.jfrog.io/neo/api/npm/npm/classnames/-/classnames-2.2.5.tgz#fb3801d453467649ef3603c7d61a02bd129bde6d" + version "2.2.6" + resolved "https://neo.jfrog.io/neo/api/npm/npm/classnames/-/classnames-2.2.6.tgz#43935bffdd291f326dad0a205309b38d00f650ce" clean-css@4.1.x: version "4.1.11" @@ -1979,7 +1865,7 @@ cli-cursor@^1.0.2: cli-cursor@^2.1.0: version "2.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/cli-cursor/-/cli-cursor-2.1.0.tgz?dl=https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" + resolved "https://neo.jfrog.io/neo/api/npm/npm/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" dependencies: restore-cursor "^2.0.0" @@ -1996,11 +1882,11 @@ cli-truncate@^0.2.1: cli-width@^2.0.0: version "2.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/cli-width/-/cli-width-2.2.0.tgz?dl=https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" + resolved "https://neo.jfrog.io/neo/api/npm/npm/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" cliui@^2.1.0: version "2.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/cliui/-/cliui-2.1.0.tgz?dl=https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" dependencies: center-align "^0.1.1" right-align "^0.1.1" @@ -2008,7 +1894,7 @@ cliui@^2.1.0: cliui@^3.0.3, cliui@^3.2.0: version "3.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/cliui/-/cliui-3.2.0.tgz?dl=https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" + resolved "https://neo.jfrog.io/neo/api/npm/npm/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" dependencies: string-width "^1.0.1" strip-ansi "^3.0.1" @@ -2016,7 +1902,7 @@ cliui@^3.0.3, cliui@^3.2.0: cliui@^4.0.0: version "4.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/cliui/-/cliui-4.1.0.tgz?dl=https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49" + resolved "https://neo.jfrog.io/neo/api/npm/npm/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49" dependencies: string-width "^2.1.1" strip-ansi "^4.0.0" @@ -2024,25 +1910,25 @@ cliui@^4.0.0: clone@^1.0.2: version "1.0.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/clone/-/clone-1.0.4.tgz?dl=https://registry.npmjs.org/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" + resolved "https://neo.jfrog.io/neo/api/npm/npm/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" co@^4.6.0: version "4.6.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/co/-/co-4.6.0.tgz?dl=https://registry.npmjs.org/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" + resolved "https://neo.jfrog.io/neo/api/npm/npm/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" coa@~1.0.1: version "1.0.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/coa/-/coa-1.0.4.tgz?dl=https://registry.npmjs.org/coa/-/coa-1.0.4.tgz#a9ef153660d6a86a8bdec0289a5c684d217432fd" + resolved "https://neo.jfrog.io/neo/api/npm/npm/coa/-/coa-1.0.4.tgz#a9ef153660d6a86a8bdec0289a5c684d217432fd" dependencies: q "^1.1.2" code-point-at@^1.0.0: version "1.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/code-point-at/-/code-point-at-1.1.0.tgz?dl=https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" + resolved "https://neo.jfrog.io/neo/api/npm/npm/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" codemirror@^5.29.0: - version "5.30.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/codemirror/-/codemirror-5.30.0.tgz#86e57dd5ea5535acbcf9c720797b4cefe05b5a70" + version "5.38.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/codemirror/-/codemirror-5.38.0.tgz#26a9551446e51dbdde36aabe60f72469724fd332" coffee-loader@^0.7.3: version "0.7.3" @@ -2062,18 +1948,22 @@ collection-visit@^1.0.0: object-visit "^1.0.0" color-convert@^1.3.0, color-convert@^1.8.2, color-convert@^1.9.0, color-convert@^1.9.1: - version "1.9.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/color-convert/-/color-convert-1.9.1.tgz?dl=https://registry.npmjs.org/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" + version "1.9.2" + resolved "https://neo.jfrog.io/neo/api/npm/npm/color-convert/-/color-convert-1.9.2.tgz#49881b8fba67df12a96bdf3f56c0aab9e7913147" dependencies: - color-name "^1.1.1" + color-name "1.1.1" -color-name@^1.0.0, color-name@^1.1.1: +color-name@1.1.1: + version "1.1.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/color-name/-/color-name-1.1.1.tgz#4b1415304cf50028ea81643643bd82ea05803689" + +color-name@^1.0.0: version "1.1.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/color-name/-/color-name-1.1.3.tgz?dl=https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + resolved "https://neo.jfrog.io/neo/api/npm/npm/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" color-string@^0.3.0: version "0.3.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/color-string/-/color-string-0.3.0.tgz?dl=https://registry.npmjs.org/color-string/-/color-string-0.3.0.tgz#27d46fb67025c5c2fa25993bfbf579e47841b991" + resolved "https://neo.jfrog.io/neo/api/npm/npm/color-string/-/color-string-0.3.0.tgz#27d46fb67025c5c2fa25993bfbf579e47841b991" dependencies: color-name "^1.0.0" @@ -2086,7 +1976,7 @@ color-string@^1.4.0, color-string@^1.5.2: color@^0.11.0: version "0.11.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/color/-/color-0.11.4.tgz?dl=https://registry.npmjs.org/color/-/color-0.11.4.tgz#6d7b5c74fb65e841cd48792ad1ed5e07b904d764" + resolved "https://neo.jfrog.io/neo/api/npm/npm/color/-/color-0.11.4.tgz#6d7b5c74fb65e841cd48792ad1ed5e07b904d764" dependencies: clone "^1.0.2" color-convert "^1.3.0" @@ -2108,7 +1998,7 @@ color@^2.0.1: colormin@^1.0.5: version "1.1.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/colormin/-/colormin-1.1.2.tgz?dl=https://registry.npmjs.org/colormin/-/colormin-1.1.2.tgz#ea2f7420a72b96881a38aae59ec124a6f7298133" + resolved "https://neo.jfrog.io/neo/api/npm/npm/colormin/-/colormin-1.1.2.tgz#ea2f7420a72b96881a38aae59ec124a6f7298133" dependencies: color "^0.11.0" css-color-names "0.0.4" @@ -2116,33 +2006,25 @@ colormin@^1.0.5: colors@~1.1.2: version "1.1.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/colors/-/colors-1.1.2.tgz?dl=https://registry.npmjs.org/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" + resolved "https://neo.jfrog.io/neo/api/npm/npm/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" colour@~0.7.1: version "0.7.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/colour/-/colour-0.7.1.tgz?dl=https://registry.npmjs.org/colour/-/colour-0.7.1.tgz#9cb169917ec5d12c0736d3e8685746df1cadf778" + resolved "https://neo.jfrog.io/neo/api/npm/npm/colour/-/colour-0.7.1.tgz#9cb169917ec5d12c0736d3e8685746df1cadf778" -combined-stream@^1.0.5, combined-stream@~1.0.5: +combined-stream@1.0.6, combined-stream@^1.0.5, combined-stream@~1.0.5: version "1.0.6" - resolved "https://neo.jfrog.io/neo/api/npm/npm/combined-stream/-/combined-stream-1.0.6.tgz?dl=https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818" + resolved "https://neo.jfrog.io/neo/api/npm/npm/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818" dependencies: delayed-stream "~1.0.0" -commander@2.11.0, commander@2.11.x, commander@~2.11.0: +commander@2.11.0: version "2.11.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563" -commander@2.14.x, commander@~2.14.1: - version "2.14.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/commander/-/commander-2.14.1.tgz#2235123e37af8ca3c65df45b026dbd357b01b9aa" - -commander@^2.11.0, commander@^2.9.0: - version "2.15.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/commander/-/commander-2.15.0.tgz#ad2a23a1c3b036e392469b8012cec6b33b4c1322" - -commander@^2.13.0, commander@^2.15.1: +commander@2.15.x, commander@^2.11.0, commander@^2.13.0, commander@^2.15.1, commander@^2.9.0, commander@~2.15.0: version "2.15.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/commander/-/commander-2.15.1.tgz?dl=https://registry.npmjs.org/commander/-/commander-2.15.1.tgz#df46e867d0fc2aec66a34662b406a9ccafff5b0f" + resolved "https://neo.jfrog.io/neo/api/npm/npm/commander/-/commander-2.15.1.tgz#df46e867d0fc2aec66a34662b406a9ccafff5b0f" common-tags@1.4.0: version "1.4.0" @@ -2151,10 +2033,8 @@ common-tags@1.4.0: babel-runtime "^6.18.0" common-tags@^1.4.0: - version "1.7.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/common-tags/-/common-tags-1.7.2.tgz#24d9768c63d253a56ecff93845b44b4df1d52771" - dependencies: - babel-runtime "^6.26.0" + version "1.8.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/common-tags/-/common-tags-1.8.0.tgz#8e3153e542d4a39e9b10554434afaaf98956a937" commondir@^1.0.1: version "1.0.1" @@ -2162,7 +2042,7 @@ commondir@^1.0.1: compare-versions@^3.1.0: version "3.3.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/compare-versions/-/compare-versions-3.3.0.tgz?dl=https://registry.npmjs.org/compare-versions/-/compare-versions-3.3.0.tgz#af93ea705a96943f622ab309578b9b90586f39c3" + resolved "https://neo.jfrog.io/neo/api/npm/npm/compare-versions/-/compare-versions-3.3.0.tgz#af93ea705a96943f622ab309578b9b90586f39c3" component-bind@1.0.0: version "1.0.0" @@ -2177,10 +2057,10 @@ component-inherit@0.0.3: resolved "https://neo.jfrog.io/neo/api/npm/npm/component-inherit/-/component-inherit-0.0.3.tgz#645fc4adf58b72b649d5cae65135619db26ff143" compressible@~2.0.13: - version "2.0.13" - resolved "https://neo.jfrog.io/neo/api/npm/npm/compressible/-/compressible-2.0.13.tgz#0d1020ab924b2fdb4d6279875c7d6daba6baa7a9" + version "2.0.14" + resolved "https://neo.jfrog.io/neo/api/npm/npm/compressible/-/compressible-2.0.14.tgz#326c5f507fbb055f54116782b969a81b67a29da7" dependencies: - mime-db ">= 1.33.0 < 2" + mime-db ">= 1.34.0 < 2" compression@^1.5.2: version "1.7.2" @@ -2196,7 +2076,7 @@ compression@^1.5.2: concat-map@0.0.1: version "0.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/concat-map/-/concat-map-0.0.1.tgz?dl=https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + resolved "https://neo.jfrog.io/neo/api/npm/npm/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" concat-stream@1.6.0: version "1.6.0" @@ -2206,17 +2086,9 @@ concat-stream@1.6.0: readable-stream "^2.2.2" typedarray "^0.0.6" -concat-stream@^1.5.0: - version "1.6.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/concat-stream/-/concat-stream-1.6.1.tgz#261b8f518301f1d834e36342b9fea095d2620a26" - dependencies: - inherits "^2.0.3" - readable-stream "^2.2.2" - typedarray "^0.0.6" - -concat-stream@^1.6.0: +concat-stream@^1.5.0, concat-stream@^1.6.0: version "1.6.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/concat-stream/-/concat-stream-1.6.2.tgz?dl=https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" + resolved "https://neo.jfrog.io/neo/api/npm/npm/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" dependencies: buffer-from "^1.0.0" inherits "^2.0.3" @@ -2229,49 +2101,41 @@ connect-history-api-fallback@^1.3.0: console-browserify@^1.1.0: version "1.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/console-browserify/-/console-browserify-1.1.0.tgz?dl=https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" + resolved "https://neo.jfrog.io/neo/api/npm/npm/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" dependencies: date-now "^0.1.4" console-control-strings@^1.0.0, console-control-strings@~1.1.0: version "1.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/console-control-strings/-/console-control-strings-1.1.0.tgz?dl=https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" + resolved "https://neo.jfrog.io/neo/api/npm/npm/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" constants-browserify@^1.0.0: version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/constants-browserify/-/constants-browserify-1.0.0.tgz?dl=https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" + resolved "https://neo.jfrog.io/neo/api/npm/npm/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" contains-path@^0.1.0: version "0.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/contains-path/-/contains-path-0.1.0.tgz?dl=https://registry.npmjs.org/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" + resolved "https://neo.jfrog.io/neo/api/npm/npm/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" content-disposition@0.5.2: version "0.5.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/content-disposition/-/content-disposition-0.5.2.tgz?dl=https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4" - -content-type-parser@^1.0.1: - version "1.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" + resolved "https://neo.jfrog.io/neo/api/npm/npm/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4" content-type@~1.0.4: version "1.0.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/content-type/-/content-type-1.0.4.tgz?dl=https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" + resolved "https://neo.jfrog.io/neo/api/npm/npm/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" -convert-source-map@^1.4.0: - version "1.5.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" - -convert-source-map@^1.5.0, convert-source-map@^1.5.1: +convert-source-map@^1.4.0, convert-source-map@^1.5.1: version "1.5.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/convert-source-map/-/convert-source-map-1.5.1.tgz?dl=https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" + resolved "https://neo.jfrog.io/neo/api/npm/npm/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" cookie-signature@1.0.6: version "1.0.6" - resolved "https://neo.jfrog.io/neo/api/npm/npm/cookie-signature/-/cookie-signature-1.0.6.tgz?dl=https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" + resolved "https://neo.jfrog.io/neo/api/npm/npm/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" cookie@0.3.1: version "0.3.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/cookie/-/cookie-0.3.1.tgz?dl=https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" + resolved "https://neo.jfrog.io/neo/api/npm/npm/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" copy-concurrently@^1.0.0: version "1.0.5" @@ -2303,23 +2167,19 @@ copy-webpack-plugin@^4.0.1: core-js@2.5.5: version "2.5.5" - resolved "https://neo.jfrog.io/neo/api/npm/npm/core-js/-/core-js-2.5.5.tgz?dl=https://registry.npmjs.org/core-js/-/core-js-2.5.5.tgz#b14dde936c640c0579a6b50cabcc132dd6127e3b" + resolved "https://neo.jfrog.io/neo/api/npm/npm/core-js/-/core-js-2.5.5.tgz#b14dde936c640c0579a6b50cabcc132dd6127e3b" core-js@^1.0.0: version "1.2.7" - resolved "https://neo.jfrog.io/neo/api/npm/npm/core-js/-/core-js-1.2.7.tgz?dl=https://registry.npmjs.org/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" - -core-js@^2.4.0, core-js@^2.5.0: - version "2.5.6" - resolved "https://neo.jfrog.io/neo/api/npm/npm/core-js/-/core-js-2.5.6.tgz?dl=https://registry.npmjs.org/core-js/-/core-js-2.5.6.tgz#0fe6d45bf3cac3ac364a9d72de7576f4eb221b9d" + resolved "https://neo.jfrog.io/neo/api/npm/npm/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" -core-js@^2.4.1: - version "2.5.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/core-js/-/core-js-2.5.1.tgz#ae6874dc66937789b80754ff5428df66819ca50b" +core-js@^2.4.0, core-js@^2.4.1, core-js@^2.5.0: + version "2.5.7" + resolved "https://neo.jfrog.io/neo/api/npm/npm/core-js/-/core-js-2.5.7.tgz#f972608ff0cead68b841a16a932d0b183791814e" core-util-is@1.0.2, core-util-is@~1.0.0: version "1.0.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/core-util-is/-/core-util-is-1.0.2.tgz?dl=https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" + resolved "https://neo.jfrog.io/neo/api/npm/npm/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" cosmiconfig@^1.1.0: version "1.1.0" @@ -2336,7 +2196,7 @@ cosmiconfig@^1.1.0: cosmiconfig@^2.1.0, cosmiconfig@^2.1.1: version "2.2.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/cosmiconfig/-/cosmiconfig-2.2.2.tgz?dl=https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-2.2.2.tgz#6173cebd56fac042c1f4390edf7af6c07c7cb892" + resolved "https://neo.jfrog.io/neo/api/npm/npm/cosmiconfig/-/cosmiconfig-2.2.2.tgz#6173cebd56fac042c1f4390edf7af6c07c7cb892" dependencies: is-directory "^0.3.1" js-yaml "^3.4.3" @@ -2348,14 +2208,14 @@ cosmiconfig@^2.1.0, cosmiconfig@^2.1.1: create-ecdh@^4.0.0: version "4.0.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/create-ecdh/-/create-ecdh-4.0.3.tgz?dl=https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz#c9111b6f33045c4697f144787f9254cdc77c45ff" + resolved "https://neo.jfrog.io/neo/api/npm/npm/create-ecdh/-/create-ecdh-4.0.3.tgz#c9111b6f33045c4697f144787f9254cdc77c45ff" dependencies: bn.js "^4.1.0" elliptic "^6.0.0" create-hash@^1.1.0, create-hash@^1.1.2: version "1.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/create-hash/-/create-hash-1.2.0.tgz?dl=https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" + resolved "https://neo.jfrog.io/neo/api/npm/npm/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" dependencies: cipher-base "^1.0.1" inherits "^2.0.1" @@ -2365,7 +2225,7 @@ create-hash@^1.1.0, create-hash@^1.1.2: create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: version "1.1.7" - resolved "https://neo.jfrog.io/neo/api/npm/npm/create-hmac/-/create-hmac-1.1.7.tgz?dl=https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff" + resolved "https://neo.jfrog.io/neo/api/npm/npm/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff" dependencies: cipher-base "^1.0.3" create-hash "^1.1.0" @@ -2376,7 +2236,7 @@ create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: cross-spawn@^5.0.1, cross-spawn@^5.1.0: version "5.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/cross-spawn/-/cross-spawn-5.1.0.tgz?dl=https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" + resolved "https://neo.jfrog.io/neo/api/npm/npm/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" dependencies: lru-cache "^4.0.1" shebang-command "^1.2.0" @@ -2384,7 +2244,7 @@ cross-spawn@^5.0.1, cross-spawn@^5.1.0: cross-spawn@^6.0.5: version "6.0.5" - resolved "https://neo.jfrog.io/neo/api/npm/npm/cross-spawn/-/cross-spawn-6.0.5.tgz?dl=https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" + resolved "https://neo.jfrog.io/neo/api/npm/npm/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" dependencies: nice-try "^1.0.4" path-key "^2.0.1" @@ -2394,7 +2254,7 @@ cross-spawn@^6.0.5: cryptiles@2.x.x: version "2.0.5" - resolved "https://neo.jfrog.io/neo/api/npm/npm/cryptiles/-/cryptiles-2.0.5.tgz?dl=https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" + resolved "https://neo.jfrog.io/neo/api/npm/npm/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" dependencies: boom "2.x.x" @@ -2406,7 +2266,7 @@ cryptiles@3.x.x: crypto-browserify@^3.11.0: version "3.12.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/crypto-browserify/-/crypto-browserify-3.12.0.tgz?dl=https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" + resolved "https://neo.jfrog.io/neo/api/npm/npm/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" dependencies: browserify-cipher "^1.0.0" browserify-sign "^4.0.0" @@ -2431,15 +2291,15 @@ css-color-function@~1.3.3: css-color-keywords@^1.0.0: version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/css-color-keywords/-/css-color-keywords-1.0.0.tgz?dl=https://registry.npmjs.org/css-color-keywords/-/css-color-keywords-1.0.0.tgz#fea2616dc676b2962686b3af8dbdbe180b244e05" + resolved "https://neo.jfrog.io/neo/api/npm/npm/css-color-keywords/-/css-color-keywords-1.0.0.tgz#fea2616dc676b2962686b3af8dbdbe180b244e05" css-color-names@0.0.4: version "0.0.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/css-color-names/-/css-color-names-0.0.4.tgz?dl=https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0" css-loader@^0.28.7: version "0.28.11" - resolved "https://neo.jfrog.io/neo/api/npm/npm/css-loader/-/css-loader-0.28.11.tgz?dl=https://registry.npmjs.org/css-loader/-/css-loader-0.28.11.tgz#c3f9864a700be2711bb5a2462b2389b1a392dab7" + resolved "https://neo.jfrog.io/neo/api/npm/npm/css-loader/-/css-loader-0.28.11.tgz#c3f9864a700be2711bb5a2462b2389b1a392dab7" dependencies: babel-code-frame "^6.26.0" css-selector-tokenizer "^0.7.0" @@ -2467,7 +2327,7 @@ css-select@^1.1.0: css-selector-tokenizer@^0.7.0: version "0.7.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/css-selector-tokenizer/-/css-selector-tokenizer-0.7.0.tgz?dl=https://registry.npmjs.org/css-selector-tokenizer/-/css-selector-tokenizer-0.7.0.tgz#e6988474ae8c953477bf5e7efecfceccd9cf4c86" + resolved "https://neo.jfrog.io/neo/api/npm/npm/css-selector-tokenizer/-/css-selector-tokenizer-0.7.0.tgz#e6988474ae8c953477bf5e7efecfceccd9cf4c86" dependencies: cssesc "^0.1.0" fastparse "^1.1.1" @@ -2475,7 +2335,7 @@ css-selector-tokenizer@^0.7.0: css-to-react-native@^2.0.3: version "2.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/css-to-react-native/-/css-to-react-native-2.2.0.tgz?dl=https://registry.npmjs.org/css-to-react-native/-/css-to-react-native-2.2.0.tgz#d524ef7f39a2747a8914e86563669ba35b7cf2e7" + resolved "https://neo.jfrog.io/neo/api/npm/npm/css-to-react-native/-/css-to-react-native-2.2.0.tgz#d524ef7f39a2747a8914e86563669ba35b7cf2e7" dependencies: css-color-keywords "^1.0.0" fbjs "^0.8.5" @@ -2491,7 +2351,7 @@ css-what@2.1: css@^2.2.3: version "2.2.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/css/-/css-2.2.3.tgz?dl=https://registry.npmjs.org/css/-/css-2.2.3.tgz#f861f4ba61e79bedc962aa548e5780fd95cbc6be" + resolved "https://neo.jfrog.io/neo/api/npm/npm/css/-/css-2.2.3.tgz#f861f4ba61e79bedc962aa548e5780fd95cbc6be" dependencies: inherits "^2.0.1" source-map "^0.1.38" @@ -2500,11 +2360,11 @@ css@^2.2.3: cssesc@^0.1.0: version "0.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/cssesc/-/cssesc-0.1.0.tgz?dl=https://registry.npmjs.org/cssesc/-/cssesc-0.1.0.tgz#c814903e45623371a0477b40109aaafbeeaddbb4" + resolved "https://neo.jfrog.io/neo/api/npm/npm/cssesc/-/cssesc-0.1.0.tgz#c814903e45623371a0477b40109aaafbeeaddbb4" cssnano@^3.10.0: version "3.10.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/cssnano/-/cssnano-3.10.0.tgz?dl=https://registry.npmjs.org/cssnano/-/cssnano-3.10.0.tgz#4f38f6cea2b9b17fa01490f23f1dc68ea65c1c38" + resolved "https://neo.jfrog.io/neo/api/npm/npm/cssnano/-/cssnano-3.10.0.tgz#4f38f6cea2b9b17fa01490f23f1dc68ea65c1c38" dependencies: autoprefixer "^6.3.1" decamelize "^1.1.2" @@ -2541,7 +2401,7 @@ cssnano@^3.10.0: csso@~2.3.1: version "2.3.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/csso/-/csso-2.3.2.tgz?dl=https://registry.npmjs.org/csso/-/csso-2.3.2.tgz#ddd52c587033f49e94b71fc55569f252e8ff5f85" + resolved "https://neo.jfrog.io/neo/api/npm/npm/csso/-/csso-2.3.2.tgz#ddd52c587033f49e94b71fc55569f252e8ff5f85" dependencies: clap "^1.0.9" source-map "^0.5.3" @@ -2550,15 +2410,9 @@ cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": version "0.3.2" resolved "https://neo.jfrog.io/neo/api/npm/npm/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" -"cssstyle@>= 0.2.37 < 0.3.0": - version "0.2.37" - resolved "https://neo.jfrog.io/neo/api/npm/npm/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" - dependencies: - cssom "0.3.x" - "cssstyle@>= 0.3.1 < 0.4.0": version "0.3.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/cssstyle/-/cssstyle-0.3.1.tgz?dl=https://registry.npmjs.org/cssstyle/-/cssstyle-0.3.1.tgz#6da9b4cff1bc5d716e6e5fe8e04fcb1b50a49adf" + resolved "https://neo.jfrog.io/neo/api/npm/npm/cssstyle/-/cssstyle-0.3.1.tgz#6da9b4cff1bc5d716e6e5fe8e04fcb1b50a49adf" dependencies: cssom "0.3.x" @@ -2573,22 +2427,22 @@ cyclist@~0.2.2: resolved "https://neo.jfrog.io/neo/api/npm/npm/cyclist/-/cyclist-0.2.2.tgz#1b33792e11e914a2fd6d6ed6447464444e5fa640" cypher-codemirror@^1.0.5: - version "1.0.5" - resolved "https://neo.jfrog.io/neo/api/npm/npm/cypher-codemirror/-/cypher-codemirror-1.0.5.tgz#9a6e1cb4bee2cfab846d7a1fad65078d8a361e77" + version "1.1.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/cypher-codemirror/-/cypher-codemirror-1.1.0.tgz#efe88b8a58aedb9e5f7d0ca73b70e711e54fa316" dependencies: - cypher-editor-support "1.0.4" + cypher-editor-support "1.1.0" -cypher-editor-support@1.0.4: - version "1.0.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/cypher-editor-support/-/cypher-editor-support-1.0.4.tgz#c9b9f3d77d06ad734a09d1c0e646a6701ef9075f" +cypher-editor-support@1.1.0: + version "1.1.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/cypher-editor-support/-/cypher-editor-support-1.1.0.tgz#544041ce36fd597f9cf65a49b8bc5f93a400a593" dependencies: - antlr4 "4.6.0" + antlr4 "4.7.0" fuzzaldrin "2.1.0" lodash "4.17.4" cypress@^3.0.1: version "3.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/cypress/-/cypress-3.0.1.tgz?dl=https://registry.npmjs.org/cypress/-/cypress-3.0.1.tgz#6a8938ce8a551e4ae1bd5fb2ceab038d4ad39c4d" + resolved "https://neo.jfrog.io/neo/api/npm/npm/cypress/-/cypress-3.0.1.tgz#6a8938ce8a551e4ae1bd5fb2ceab038d4ad39c4d" dependencies: "@cypress/listr-verbose-renderer" "0.4.1" "@cypress/xvfb" "1.2.3" @@ -2632,19 +2486,19 @@ cypress@^3.0.1: d@1: version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/d/-/d-1.0.0.tgz?dl=https://registry.npmjs.org/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" + resolved "https://neo.jfrog.io/neo/api/npm/npm/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" dependencies: es5-ext "^0.10.9" dashdash@^1.12.0: version "1.14.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/dashdash/-/dashdash-1.14.1.tgz?dl=https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" dependencies: assert-plus "^1.0.0" data-urls@^1.0.0: version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/data-urls/-/data-urls-1.0.0.tgz?dl=https://registry.npmjs.org/data-urls/-/data-urls-1.0.0.tgz#24802de4e81c298ea8a9388bb0d8e461c774684f" + resolved "https://neo.jfrog.io/neo/api/npm/npm/data-urls/-/data-urls-1.0.0.tgz#24802de4e81c298ea8a9388bb0d8e461c774684f" dependencies: abab "^1.0.4" whatwg-mimetype "^2.0.0" @@ -2656,11 +2510,11 @@ date-fns@^1.27.2: date-now@^0.1.4: version "0.1.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/date-now/-/date-now-0.1.4.tgz?dl=https://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" + resolved "https://neo.jfrog.io/neo/api/npm/npm/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" -debug@2.6.9, debug@^2.1.2, debug@^2.2.0, debug@^2.3.3, debug@^2.6.3, debug@^2.6.6, debug@^2.6.8, debug@^2.6.9: +debug@2.6.9, debug@^2.1.2, debug@^2.2.0, debug@^2.3.3, debug@^2.6.6, debug@^2.6.8, debug@^2.6.9: version "2.6.9" - resolved "https://neo.jfrog.io/neo/api/npm/npm/debug/-/debug-2.6.9.tgz?dl=https://registry.npmjs.org/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + resolved "https://neo.jfrog.io/neo/api/npm/npm/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" dependencies: ms "2.0.0" @@ -2672,7 +2526,7 @@ debug@3.1.0, debug@^3.1.0, debug@~3.1.0: decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: version "1.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/decamelize/-/decamelize-1.2.0.tgz?dl=https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" + resolved "https://neo.jfrog.io/neo/api/npm/npm/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" decode-uri-component@^0.2.0: version "0.2.0" @@ -2680,7 +2534,7 @@ decode-uri-component@^0.2.0: deep-eql@^3.0.0: version "3.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/deep-eql/-/deep-eql-3.0.1.tgz?dl=https://registry.npmjs.org/deep-eql/-/deep-eql-3.0.1.tgz#dfc9404400ad1c8fe023e7da1df1c147c4b444df" + resolved "https://neo.jfrog.io/neo/api/npm/npm/deep-eql/-/deep-eql-3.0.1.tgz#dfc9404400ad1c8fe023e7da1df1c147c4b444df" dependencies: type-detect "^4.0.0" @@ -2688,29 +2542,23 @@ deep-equal@^1.0.0, deep-equal@^1.0.1: version "1.0.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" -deep-extend@^0.5.1: - version "0.5.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/deep-extend/-/deep-extend-0.5.1.tgz?dl=https://registry.npmjs.org/deep-extend/-/deep-extend-0.5.1.tgz#b894a9dd90d3023fbf1c55a394fb858eb2066f1f" +deep-extend@^0.6.0: + version "0.6.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" deep-is@~0.1.3: version "0.1.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/deep-is/-/deep-is-0.1.3.tgz?dl=https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" - -default-require-extensions@^1.0.0: - version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" - dependencies: - strip-bom "^2.0.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" default-require-extensions@^2.0.0: version "2.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/default-require-extensions/-/default-require-extensions-2.0.0.tgz?dl=https://registry.npmjs.org/default-require-extensions/-/default-require-extensions-2.0.0.tgz#f5f8fbb18a7d6d50b21f641f649ebb522cfe24f7" + resolved "https://neo.jfrog.io/neo/api/npm/npm/default-require-extensions/-/default-require-extensions-2.0.0.tgz#f5f8fbb18a7d6d50b21f641f649ebb522cfe24f7" dependencies: strip-bom "^3.0.0" define-properties@^1.1.2: version "1.1.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/define-properties/-/define-properties-1.1.2.tgz?dl=https://registry.npmjs.org/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" + resolved "https://neo.jfrog.io/neo/api/npm/npm/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" dependencies: foreach "^2.0.5" object-keys "^1.0.8" @@ -2736,11 +2584,11 @@ define-property@^2.0.2: defined@^1.0.0: version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/defined/-/defined-1.0.0.tgz?dl=https://registry.npmjs.org/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" + resolved "https://neo.jfrog.io/neo/api/npm/npm/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" del@^2.0.2: version "2.2.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/del/-/del-2.2.2.tgz?dl=https://registry.npmjs.org/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" + resolved "https://neo.jfrog.io/neo/api/npm/npm/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" dependencies: globby "^5.0.0" is-path-cwd "^1.0.0" @@ -2763,56 +2611,56 @@ del@^3.0.0: delayed-stream@~1.0.0: version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/delayed-stream/-/delayed-stream-1.0.0.tgz?dl=https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + resolved "https://neo.jfrog.io/neo/api/npm/npm/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" delegates@^1.0.0: version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/delegates/-/delegates-1.0.0.tgz?dl=https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" + resolved "https://neo.jfrog.io/neo/api/npm/npm/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" depd@1.1.1: version "1.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/depd/-/depd-1.1.1.tgz?dl=https://registry.npmjs.org/depd/-/depd-1.1.1.tgz#5783b4e1c459f06fa5ca27f991f3d06e7a310359" + resolved "https://neo.jfrog.io/neo/api/npm/npm/depd/-/depd-1.1.1.tgz#5783b4e1c459f06fa5ca27f991f3d06e7a310359" depd@~1.1.1, depd@~1.1.2: version "1.1.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/depd/-/depd-1.1.2.tgz?dl=https://registry.npmjs.org/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" + resolved "https://neo.jfrog.io/neo/api/npm/npm/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" des.js@^1.0.0: version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/des.js/-/des.js-1.0.0.tgz?dl=https://registry.npmjs.org/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" + resolved "https://neo.jfrog.io/neo/api/npm/npm/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" dependencies: inherits "^2.0.1" minimalistic-assert "^1.0.0" destroy@~1.0.4: version "1.0.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/destroy/-/destroy-1.0.4.tgz?dl=https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" + resolved "https://neo.jfrog.io/neo/api/npm/npm/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" detect-indent@^4.0.0: version "4.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/detect-indent/-/detect-indent-4.0.0.tgz?dl=https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" + resolved "https://neo.jfrog.io/neo/api/npm/npm/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" dependencies: repeating "^2.0.0" detect-libc@^1.0.2: version "1.0.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/detect-libc/-/detect-libc-1.0.3.tgz?dl=https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" + resolved "https://neo.jfrog.io/neo/api/npm/npm/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" detect-newline@^2.1.0: version "2.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/detect-newline/-/detect-newline-2.1.0.tgz?dl=https://registry.npmjs.org/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2" + resolved "https://neo.jfrog.io/neo/api/npm/npm/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2" detect-node@^2.0.3: version "2.0.3" resolved "https://neo.jfrog.io/neo/api/npm/npm/detect-node/-/detect-node-2.0.3.tgz#a2033c09cc8e158d37748fbde7507832bd6ce127" diff@^3.2.0: - version "3.3.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/diff/-/diff-3.3.1.tgz#aa8567a6eed03c531fc89d3f711cd0e5259dec75" + version "3.5.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" diffie-hellman@^5.0.0: version "5.0.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/diffie-hellman/-/diffie-hellman-5.0.3.tgz?dl=https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875" + resolved "https://neo.jfrog.io/neo/api/npm/npm/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875" dependencies: bn.js "^4.1.0" miller-rabin "^4.0.0" @@ -2827,15 +2675,15 @@ dir-glob@^2.0.0: disposables@^1.0.1: version "1.0.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/disposables/-/disposables-1.0.2.tgz?dl=https://registry.npmjs.org/disposables/-/disposables-1.0.2.tgz#36c6a674475f55a2d6913567a601444e487b4b6e" + resolved "https://neo.jfrog.io/neo/api/npm/npm/disposables/-/disposables-1.0.2.tgz#36c6a674475f55a2d6913567a601444e487b4b6e" dlv@^1.1.0: - version "1.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/dlv/-/dlv-1.1.1.tgz#c79d96bfe659a5568001250ed2aaf653992bdd3f" + version "1.1.2" + resolved "https://neo.jfrog.io/neo/api/npm/npm/dlv/-/dlv-1.1.2.tgz#270f6737b30d25b6657a7e962c784403f85137e5" dnd-core@^2.5.1, dnd-core@^2.6.0: version "2.6.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/dnd-core/-/dnd-core-2.6.0.tgz?dl=https://registry.npmjs.org/dnd-core/-/dnd-core-2.6.0.tgz#12bad66d58742c6e5f7cf2943fb6859440f809c4" + resolved "https://neo.jfrog.io/neo/api/npm/npm/dnd-core/-/dnd-core-2.6.0.tgz#12bad66d58742c6e5f7cf2943fb6859440f809c4" dependencies: asap "^2.0.6" invariant "^2.0.0" @@ -2861,14 +2709,14 @@ dns-txt@^2.0.2: doctrine@1.5.0: version "1.5.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/doctrine/-/doctrine-1.5.0.tgz?dl=https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" + resolved "https://neo.jfrog.io/neo/api/npm/npm/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" dependencies: esutils "^2.0.2" isarray "^1.0.0" -doctrine@^2.0.2, doctrine@^2.1.0: +doctrine@^2.1.0: version "2.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/doctrine/-/doctrine-2.1.0.tgz?dl=https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" + resolved "https://neo.jfrog.io/neo/api/npm/npm/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" dependencies: esutils "^2.0.2" @@ -2887,7 +2735,7 @@ dom-serializer@0: dom-storage@2.1.0: version "2.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/dom-storage/-/dom-storage-2.1.0.tgz?dl=https://registry.npmjs.org/dom-storage/-/dom-storage-2.1.0.tgz#00fb868bc9201357ea243c7bcfd3304c1e34ea39" + resolved "https://neo.jfrog.io/neo/api/npm/npm/dom-storage/-/dom-storage-2.1.0.tgz#00fb868bc9201357ea243c7bcfd3304c1e34ea39" dom-testing-library@^2.6.0: version "2.6.0" @@ -2900,7 +2748,7 @@ dom-testing-library@^2.6.0: domain-browser@^1.1.1: version "1.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/domain-browser/-/domain-browser-1.2.0.tgz?dl=https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" + resolved "https://neo.jfrog.io/neo/api/npm/npm/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" domelementtype@1: version "1.3.0" @@ -2912,7 +2760,7 @@ domelementtype@~1.1.1: domexception@^1.0.0: version "1.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/domexception/-/domexception-1.0.1.tgz?dl=https://registry.npmjs.org/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90" + resolved "https://neo.jfrog.io/neo/api/npm/npm/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90" dependencies: webidl-conversions "^4.0.2" @@ -2937,11 +2785,11 @@ domutils@1.5.1: duplexer@^0.1.1: version "0.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/duplexer/-/duplexer-0.1.1.tgz?dl=https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" -duplexify@^3.4.2, duplexify@^3.5.3: - version "3.5.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/duplexify/-/duplexify-3.5.4.tgz#4bb46c1796eabebeec4ca9a2e66b808cb7a3d8b4" +duplexify@^3.4.2, duplexify@^3.6.0: + version "3.6.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/duplexify/-/duplexify-3.6.0.tgz#592903f5d80b38d037220541264d69a198fb3410" dependencies: end-of-stream "^1.0.0" inherits "^2.0.1" @@ -2950,25 +2798,21 @@ duplexify@^3.4.2, duplexify@^3.5.3: ecc-jsbn@~0.1.1: version "0.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz?dl=https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" + resolved "https://neo.jfrog.io/neo/api/npm/npm/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" dependencies: jsbn "~0.1.0" ee-first@1.1.1: version "1.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/ee-first/-/ee-first-1.1.1.tgz?dl=https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" + resolved "https://neo.jfrog.io/neo/api/npm/npm/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" ejs@^2.5.7: version "2.6.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/ejs/-/ejs-2.6.1.tgz?dl=https://registry.npmjs.org/ejs/-/ejs-2.6.1.tgz#498ec0d495655abc6f23cd61868d926464071aa0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/ejs/-/ejs-2.6.1.tgz#498ec0d495655abc6f23cd61868d926464071aa0" -electron-to-chromium@^1.2.7: +electron-to-chromium@^1.2.7, electron-to-chromium@^1.3.30: version "1.3.48" - resolved "https://neo.jfrog.io/neo/api/npm/npm/electron-to-chromium/-/electron-to-chromium-1.3.48.tgz?dl=https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.48.tgz#d3b0d8593814044e092ece2108fc3ac9aea4b900" - -electron-to-chromium@^1.3.30: - version "1.3.37" - resolved "https://neo.jfrog.io/neo/api/npm/npm/electron-to-chromium/-/electron-to-chromium-1.3.37.tgz#4a92734e0044c8cf0b1553be57eae21a4c6e5fab" + resolved "https://neo.jfrog.io/neo/api/npm/npm/electron-to-chromium/-/electron-to-chromium-1.3.48.tgz#d3b0d8593814044e092ece2108fc3ac9aea4b900" elegant-spinner@^1.0.1: version "1.0.1" @@ -2976,7 +2820,7 @@ elegant-spinner@^1.0.1: elliptic@^6.0.0: version "6.4.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/elliptic/-/elliptic-6.4.0.tgz?dl=https://registry.npmjs.org/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df" + resolved "https://neo.jfrog.io/neo/api/npm/npm/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df" dependencies: bn.js "^4.4.0" brorand "^1.0.1" @@ -2988,15 +2832,15 @@ elliptic@^6.0.0: emojis-list@^2.0.0: version "2.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/emojis-list/-/emojis-list-2.1.0.tgz?dl=https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" + resolved "https://neo.jfrog.io/neo/api/npm/npm/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" encodeurl@~1.0.2: version "1.0.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/encodeurl/-/encodeurl-1.0.2.tgz?dl=https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" + resolved "https://neo.jfrog.io/neo/api/npm/npm/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" encoding@^0.1.11: version "0.1.12" - resolved "https://neo.jfrog.io/neo/api/npm/npm/encoding/-/encoding-0.1.12.tgz?dl=https://registry.npmjs.org/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" + resolved "https://neo.jfrog.io/neo/api/npm/npm/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" dependencies: iconv-lite "~0.4.13" @@ -3008,7 +2852,7 @@ end-of-stream@^1.0.0, end-of-stream@^1.1.0: engine.io-client@~3.2.0: version "3.2.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/engine.io-client/-/engine.io-client-3.2.1.tgz?dl=https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.2.1.tgz#6f54c0475de487158a1a7c77d10178708b6add36" + resolved "https://neo.jfrog.io/neo/api/npm/npm/engine.io-client/-/engine.io-client-3.2.1.tgz#6f54c0475de487158a1a7c77d10178708b6add36" dependencies: component-emitter "1.2.1" component-inherit "0.0.3" @@ -3024,7 +2868,7 @@ engine.io-client@~3.2.0: engine.io-parser@~2.1.0, engine.io-parser@~2.1.1: version "2.1.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/engine.io-parser/-/engine.io-parser-2.1.2.tgz?dl=https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-2.1.2.tgz#4c0f4cff79aaeecbbdcfdea66a823c6085409196" + resolved "https://neo.jfrog.io/neo/api/npm/npm/engine.io-parser/-/engine.io-parser-2.1.2.tgz#4c0f4cff79aaeecbbdcfdea66a823c6085409196" dependencies: after "0.8.2" arraybuffer.slice "~0.0.7" @@ -3034,7 +2878,7 @@ engine.io-parser@~2.1.0, engine.io-parser@~2.1.1: engine.io@~3.2.0: version "3.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/engine.io/-/engine.io-3.2.0.tgz?dl=https://registry.npmjs.org/engine.io/-/engine.io-3.2.0.tgz#54332506f42f2edc71690d2f2a42349359f3bf7d" + resolved "https://neo.jfrog.io/neo/api/npm/npm/engine.io/-/engine.io-3.2.0.tgz#54332506f42f2edc71690d2f2a42349359f3bf7d" dependencies: accepts "~1.3.4" base64id "1.0.0" @@ -3045,7 +2889,7 @@ engine.io@~3.2.0: enhanced-resolve@^3.4.0: version "3.4.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz?dl=https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz#0421e339fd71419b3da13d129b3979040230476e" + resolved "https://neo.jfrog.io/neo/api/npm/npm/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz#0421e339fd71419b3da13d129b3979040230476e" dependencies: graceful-fs "^4.1.2" memory-fs "^0.4.0" @@ -3058,35 +2902,19 @@ entities@~1.1.1: errno@^0.1.3: version "0.1.7" - resolved "https://neo.jfrog.io/neo/api/npm/npm/errno/-/errno-0.1.7.tgz?dl=https://registry.npmjs.org/errno/-/errno-0.1.7.tgz#4684d71779ad39af177e3f007996f7c67c852618" + resolved "https://neo.jfrog.io/neo/api/npm/npm/errno/-/errno-0.1.7.tgz#4684d71779ad39af177e3f007996f7c67c852618" dependencies: prr "~1.0.1" -errno@^0.1.4: - version "0.1.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" - dependencies: - prr "~0.0.0" - error-ex@^1.2.0: - version "1.3.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/error-ex/-/error-ex-1.3.1.tgz?dl=https://registry.npmjs.org/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" + version "1.3.2" + resolved "https://neo.jfrog.io/neo/api/npm/npm/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" dependencies: is-arrayish "^0.2.1" -es-abstract@^1.5.1: +es-abstract@^1.5.1, es-abstract@^1.7.0: version "1.12.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/es-abstract/-/es-abstract-1.12.0.tgz?dl=https://registry.npmjs.org/es-abstract/-/es-abstract-1.12.0.tgz#9dbbdd27c6856f0001421ca18782d786bf8a6165" - dependencies: - 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-abstract@^1.7.0: - version "1.11.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/es-abstract/-/es-abstract-1.11.0.tgz?dl=https://registry.npmjs.org/es-abstract/-/es-abstract-1.11.0.tgz#cce87d518f0496893b1a30cd8461835535480681" + resolved "https://neo.jfrog.io/neo/api/npm/npm/es-abstract/-/es-abstract-1.12.0.tgz#9dbbdd27c6856f0001421ca18782d786bf8a6165" dependencies: es-to-primitive "^1.1.1" function-bind "^1.1.1" @@ -3096,15 +2924,15 @@ es-abstract@^1.7.0: es-to-primitive@^1.1.1: version "1.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/es-to-primitive/-/es-to-primitive-1.1.1.tgz?dl=https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" + resolved "https://neo.jfrog.io/neo/api/npm/npm/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" dependencies: is-callable "^1.1.1" is-date-object "^1.0.1" is-symbol "^1.0.1" es5-ext@^0.10.14, es5-ext@^0.10.35, es5-ext@^0.10.9, es5-ext@~0.10.14: - version "0.10.42" - resolved "https://neo.jfrog.io/neo/api/npm/npm/es5-ext/-/es5-ext-0.10.42.tgz?dl=https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.42.tgz#8c07dd33af04d5dcd1310b5cef13bea63a89ba8d" + version "0.10.45" + resolved "https://neo.jfrog.io/neo/api/npm/npm/es5-ext/-/es5-ext-0.10.45.tgz#0bfdf7b473da5919d5adf3bd25ceb754fccc3653" dependencies: es6-iterator "~2.0.3" es6-symbol "~3.1.1" @@ -3112,7 +2940,7 @@ es5-ext@^0.10.14, es5-ext@^0.10.35, es5-ext@^0.10.9, es5-ext@~0.10.14: es6-iterator@^2.0.1, es6-iterator@~2.0.1, es6-iterator@~2.0.3: version "2.0.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/es6-iterator/-/es6-iterator-2.0.3.tgz?dl=https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" + resolved "https://neo.jfrog.io/neo/api/npm/npm/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" dependencies: d "1" es5-ext "^0.10.35" @@ -3120,7 +2948,7 @@ es6-iterator@^2.0.1, es6-iterator@~2.0.1, es6-iterator@~2.0.3: es6-map@^0.1.3: version "0.1.5" - resolved "https://neo.jfrog.io/neo/api/npm/npm/es6-map/-/es6-map-0.1.5.tgz?dl=https://registry.npmjs.org/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" dependencies: d "1" es5-ext "~0.10.14" @@ -3131,7 +2959,7 @@ es6-map@^0.1.3: es6-set@~0.1.5: version "0.1.5" - resolved "https://neo.jfrog.io/neo/api/npm/npm/es6-set/-/es6-set-0.1.5.tgz?dl=https://registry.npmjs.org/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" dependencies: d "1" es5-ext "~0.10.14" @@ -3141,7 +2969,7 @@ es6-set@~0.1.5: es6-symbol@3.1.1, es6-symbol@^3.1.1, es6-symbol@~3.1.1: version "3.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/es6-symbol/-/es6-symbol-3.1.1.tgz?dl=https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" + resolved "https://neo.jfrog.io/neo/api/npm/npm/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" dependencies: d "1" es5-ext "~0.10.14" @@ -3155,7 +2983,7 @@ es6-templates@^0.2.3: es6-weak-map@^2.0.1: version "2.0.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/es6-weak-map/-/es6-weak-map-2.0.2.tgz?dl=https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" + resolved "https://neo.jfrog.io/neo/api/npm/npm/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" dependencies: d "1" es5-ext "^0.10.14" @@ -3164,26 +2992,15 @@ es6-weak-map@^2.0.1: escape-html@~1.0.3: version "1.0.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/escape-html/-/escape-html-1.0.3.tgz?dl=https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" + resolved "https://neo.jfrog.io/neo/api/npm/npm/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: version "1.0.5" - resolved "https://neo.jfrog.io/neo/api/npm/npm/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz?dl=https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" - -escodegen@^1.6.1: - version "1.9.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/escodegen/-/escodegen-1.9.0.tgz#9811a2f265dc1cd3894420ee3717064b632b8852" - dependencies: - esprima "^3.1.3" - estraverse "^4.2.0" - esutils "^2.0.2" - optionator "^0.8.1" - optionalDependencies: - source-map "~0.5.6" + resolved "https://neo.jfrog.io/neo/api/npm/npm/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" escodegen@^1.9.0: version "1.10.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/escodegen/-/escodegen-1.10.0.tgz?dl=https://registry.npmjs.org/escodegen/-/escodegen-1.10.0.tgz#f647395de22519fbd0d928ffcf1d17e0dec2603e" + resolved "https://neo.jfrog.io/neo/api/npm/npm/escodegen/-/escodegen-1.10.0.tgz#f647395de22519fbd0d928ffcf1d17e0dec2603e" dependencies: esprima "^3.1.3" estraverse "^4.2.0" @@ -3194,7 +3011,7 @@ escodegen@^1.9.0: escope@^3.6.0: version "3.6.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/escope/-/escope-3.6.0.tgz?dl=https://registry.npmjs.org/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" + resolved "https://neo.jfrog.io/neo/api/npm/npm/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" dependencies: es6-map "^0.1.3" es6-weak-map "^2.0.1" @@ -3211,21 +3028,21 @@ eslint-config-standard@^10.2.1: eslint-import-resolver-node@^0.3.1: version "0.3.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.2.tgz?dl=https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.2.tgz#58f15fb839b8d0576ca980413476aab2472db66a" + resolved "https://neo.jfrog.io/neo/api/npm/npm/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.2.tgz#58f15fb839b8d0576ca980413476aab2472db66a" dependencies: debug "^2.6.9" resolve "^1.5.0" eslint-module-utils@^2.2.0: version "2.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/eslint-module-utils/-/eslint-module-utils-2.2.0.tgz?dl=https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.2.0.tgz#b270362cd88b1a48ad308976ce7fa54e98411746" + resolved "https://neo.jfrog.io/neo/api/npm/npm/eslint-module-utils/-/eslint-module-utils-2.2.0.tgz#b270362cd88b1a48ad308976ce7fa54e98411746" dependencies: debug "^2.6.8" pkg-dir "^1.0.0" eslint-plugin-import@^2.7.0: version "2.12.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/eslint-plugin-import/-/eslint-plugin-import-2.12.0.tgz?dl=https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.12.0.tgz#dad31781292d6664b25317fd049d2e2b2f02205d" + resolved "https://neo.jfrog.io/neo/api/npm/npm/eslint-plugin-import/-/eslint-plugin-import-2.12.0.tgz#dad31781292d6664b25317fd049d2e2b2f02205d" dependencies: contains-path "^0.1.0" debug "^2.6.8" @@ -3256,82 +3073,40 @@ eslint-plugin-node@^5.1.1: semver "5.3.0" eslint-plugin-promise@^3.4.0: - version "3.7.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/eslint-plugin-promise/-/eslint-plugin-promise-3.7.0.tgz#f4bde5c2c77cdd69557a8f69a24d1ad3cfc9e67e" + version "3.8.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/eslint-plugin-promise/-/eslint-plugin-promise-3.8.0.tgz#65ebf27a845e3c1e9d6f6a5622ddd3801694b621" eslint-plugin-react@3.4.2: version "3.4.2" resolved "https://neo.jfrog.io/neo/api/npm/npm/eslint-plugin-react/-/eslint-plugin-react-3.4.2.tgz#9e6ef8a8054f8ac3b87b97236e7b849e5835dc6c" eslint-plugin-react@^7.3.0: - version "7.8.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/eslint-plugin-react/-/eslint-plugin-react-7.8.2.tgz?dl=https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.8.2.tgz#e95c9c47fece55d2303d1a67c9d01b930b88a51d" + version "7.9.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/eslint-plugin-react/-/eslint-plugin-react-7.9.1.tgz#101aadd15e7c7b431ed025303ac7b421a8e3dc15" dependencies: - doctrine "^2.0.2" - has "^1.0.1" + doctrine "^2.1.0" + has "^1.0.2" jsx-ast-utils "^2.0.1" - prop-types "^15.6.0" + prop-types "^15.6.1" eslint-plugin-standard@^3.0.1: version "3.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/eslint-plugin-standard/-/eslint-plugin-standard-3.1.0.tgz?dl=https://registry.npmjs.org/eslint-plugin-standard/-/eslint-plugin-standard-3.1.0.tgz#2a9e21259ba4c47c02d53b2d0c9135d4b1022d47" + resolved "https://neo.jfrog.io/neo/api/npm/npm/eslint-plugin-standard/-/eslint-plugin-standard-3.1.0.tgz#2a9e21259ba4c47c02d53b2d0c9135d4b1022d47" eslint-scope@^3.7.1: version "3.7.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/eslint-scope/-/eslint-scope-3.7.1.tgz?dl=https://registry.npmjs.org/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" + resolved "https://neo.jfrog.io/neo/api/npm/npm/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" dependencies: esrecurse "^4.1.0" estraverse "^4.1.1" eslint-visitor-keys@^1.0.0: version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz?dl=https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d" - -eslint@^4.0.0, eslint@^4.5.0: - version "4.18.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/eslint/-/eslint-4.18.2.tgz#0f81267ad1012e7d2051e186a9004cc2267b8d45" - dependencies: - ajv "^5.3.0" - babel-code-frame "^6.22.0" - chalk "^2.1.0" - concat-stream "^1.6.0" - cross-spawn "^5.1.0" - debug "^3.1.0" - doctrine "^2.1.0" - eslint-scope "^3.7.1" - eslint-visitor-keys "^1.0.0" - espree "^3.5.2" - esquery "^1.0.0" - esutils "^2.0.2" - file-entry-cache "^2.0.0" - functional-red-black-tree "^1.0.1" - glob "^7.1.2" - globals "^11.0.1" - ignore "^3.3.3" - imurmurhash "^0.1.4" - inquirer "^3.0.6" - is-resolvable "^1.0.0" - js-yaml "^3.9.1" - json-stable-stringify-without-jsonify "^1.0.1" - levn "^0.3.0" - lodash "^4.17.4" - minimatch "^3.0.2" - mkdirp "^0.5.1" - natural-compare "^1.4.0" - optionator "^0.8.2" - path-is-inside "^1.0.2" - pluralize "^7.0.0" - progress "^2.0.0" - require-uncached "^1.0.3" - semver "^5.3.0" - strip-ansi "^4.0.0" - strip-json-comments "~2.0.1" - table "4.0.2" - text-table "~0.2.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d" -eslint@^4.6.1: +eslint@^4.0.0, eslint@^4.5.0, eslint@^4.6.1: version "4.19.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/eslint/-/eslint-4.19.1.tgz?dl=https://registry.npmjs.org/eslint/-/eslint-4.19.1.tgz#32d1d653e1d90408854bfb296f076ec7e186a300" + resolved "https://neo.jfrog.io/neo/api/npm/npm/eslint/-/eslint-4.19.1.tgz#32d1d653e1d90408854bfb296f076ec7e186a300" dependencies: ajv "^5.3.0" babel-code-frame "^6.22.0" @@ -3372,16 +3147,16 @@ eslint@^4.6.1: table "4.0.2" text-table "~0.2.0" -espree@^3.5.2, espree@^3.5.4: +espree@^3.5.4: version "3.5.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/espree/-/espree-3.5.4.tgz?dl=https://registry.npmjs.org/espree/-/espree-3.5.4.tgz#b0f447187c8a8bed944b815a660bddf5deb5d1a7" + resolved "https://neo.jfrog.io/neo/api/npm/npm/espree/-/espree-3.5.4.tgz#b0f447187c8a8bed944b815a660bddf5deb5d1a7" dependencies: acorn "^5.5.0" acorn-jsx "^3.0.0" esprima@^2.6.0: version "2.7.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/esprima/-/esprima-2.7.3.tgz?dl=https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" + resolved "https://neo.jfrog.io/neo/api/npm/npm/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" esprima@^3.1.3, esprima@~3.1.0: version "3.1.3" @@ -3389,17 +3164,17 @@ esprima@^3.1.3, esprima@~3.1.0: esprima@^4.0.0: version "4.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/esprima/-/esprima-4.0.0.tgz?dl=https://registry.npmjs.org/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" + resolved "https://neo.jfrog.io/neo/api/npm/npm/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" esquery@^1.0.0: version "1.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/esquery/-/esquery-1.0.1.tgz?dl=https://registry.npmjs.org/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708" + resolved "https://neo.jfrog.io/neo/api/npm/npm/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708" dependencies: estraverse "^4.0.0" esrecurse@^4.1.0: version "4.2.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/esrecurse/-/esrecurse-4.2.1.tgz?dl=https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" + resolved "https://neo.jfrog.io/neo/api/npm/npm/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" dependencies: estraverse "^4.1.0" @@ -3409,26 +3184,26 @@ estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: esutils@^2.0.2: version "2.0.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/esutils/-/esutils-2.0.2.tgz?dl=https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" + resolved "https://neo.jfrog.io/neo/api/npm/npm/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" etag@~1.8.1: version "1.8.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/etag/-/etag-1.8.1.tgz?dl=https://registry.npmjs.org/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" + resolved "https://neo.jfrog.io/neo/api/npm/npm/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" event-emitter@~0.3.5: version "0.3.5" - resolved "https://neo.jfrog.io/neo/api/npm/npm/event-emitter/-/event-emitter-0.3.5.tgz?dl=https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" + resolved "https://neo.jfrog.io/neo/api/npm/npm/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" dependencies: d "1" es5-ext "~0.10.14" -eventemitter3@1.x.x: - version "1.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/eventemitter3/-/eventemitter3-1.2.0.tgz#1c86991d816ad1e504750e73874224ecf3bec508" +eventemitter3@^3.0.0: + version "3.1.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/eventemitter3/-/eventemitter3-3.1.0.tgz#090b4d6cdbd645ed10bf750d4b5407942d7ba163" events@^1.0.0: version "1.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/events/-/events-1.1.1.tgz?dl=https://registry.npmjs.org/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" + resolved "https://neo.jfrog.io/neo/api/npm/npm/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" eventsource@0.1.6: version "0.1.6" @@ -3438,7 +3213,7 @@ eventsource@0.1.6: evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: version "1.0.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz?dl=https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" + resolved "https://neo.jfrog.io/neo/api/npm/npm/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" dependencies: md5.js "^1.3.4" safe-buffer "^5.1.1" @@ -3451,7 +3226,7 @@ exec-sh@^0.2.0: execa@^0.7.0: version "0.7.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/execa/-/execa-0.7.0.tgz?dl=https://registry.npmjs.org/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" + resolved "https://neo.jfrog.io/neo/api/npm/npm/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" dependencies: cross-spawn "^5.0.1" get-stream "^3.0.0" @@ -3475,7 +3250,7 @@ execa@^0.8.0: executable@4.1.1: version "4.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/executable/-/executable-4.1.1.tgz?dl=https://registry.npmjs.org/executable/-/executable-4.1.1.tgz#41532bff361d3e57af4d763b70582db18f5d133c" + resolved "https://neo.jfrog.io/neo/api/npm/npm/executable/-/executable-4.1.1.tgz#41532bff361d3e57af4d763b70582db18f5d133c" dependencies: pify "^2.2.0" @@ -3485,11 +3260,11 @@ exit-hook@^1.0.0: exit@^0.1.2: version "0.1.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/exit/-/exit-0.1.2.tgz?dl=https://registry.npmjs.org/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" + resolved "https://neo.jfrog.io/neo/api/npm/npm/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" expand-brackets@^0.1.4: version "0.1.5" - resolved "https://neo.jfrog.io/neo/api/npm/npm/expand-brackets/-/expand-brackets-0.1.5.tgz?dl=https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" + resolved "https://neo.jfrog.io/neo/api/npm/npm/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" dependencies: is-posix-bracket "^0.1.0" @@ -3507,24 +3282,13 @@ expand-brackets@^2.1.4: expand-range@^1.8.1: version "1.8.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/expand-range/-/expand-range-1.8.2.tgz?dl=https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" + resolved "https://neo.jfrog.io/neo/api/npm/npm/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" dependencies: fill-range "^2.1.0" -expect@^21.2.1: - version "21.2.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/expect/-/expect-21.2.1.tgz#003ac2ac7005c3c29e73b38a272d4afadd6d1d7b" - dependencies: - ansi-styles "^3.2.0" - jest-diff "^21.2.1" - jest-get-type "^21.2.0" - jest-matcher-utils "^21.2.1" - jest-message-util "^21.2.1" - jest-regex-util "^21.2.0" - expect@^23.1.0: version "23.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/expect/-/expect-23.1.0.tgz?dl=https://registry.npmjs.org/expect/-/expect-23.1.0.tgz#bfdfd57a2a20170d875999ee9787cc71f01c205f" + resolved "https://neo.jfrog.io/neo/api/npm/npm/expect/-/expect-23.1.0.tgz#bfdfd57a2a20170d875999ee9787cc71f01c205f" dependencies: ansi-styles "^3.2.0" jest-diff "^23.0.1" @@ -3587,7 +3351,7 @@ extend@~3.0.0, extend@~3.0.1: external-editor@^2.0.4: version "2.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/external-editor/-/external-editor-2.2.0.tgz?dl=https://registry.npmjs.org/external-editor/-/external-editor-2.2.0.tgz#045511cfd8d133f3846673d1047c154e214ad3d5" + resolved "https://neo.jfrog.io/neo/api/npm/npm/external-editor/-/external-editor-2.2.0.tgz#045511cfd8d133f3846673d1047c154e214ad3d5" dependencies: chardet "^0.4.0" iconv-lite "^0.4.17" @@ -3595,7 +3359,7 @@ external-editor@^2.0.4: extglob@^0.3.1: version "0.3.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/extglob/-/extglob-0.3.2.tgz?dl=https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" dependencies: is-extglob "^1.0.0" @@ -3623,7 +3387,7 @@ extract-text-webpack-plugin@^3.0.0: extract-zip@1.6.6: version "1.6.6" - resolved "https://neo.jfrog.io/neo/api/npm/npm/extract-zip/-/extract-zip-1.6.6.tgz?dl=https://registry.npmjs.org/extract-zip/-/extract-zip-1.6.6.tgz#1290ede8d20d0872b429fd3f351ca128ec5ef85c" + resolved "https://neo.jfrog.io/neo/api/npm/npm/extract-zip/-/extract-zip-1.6.6.tgz#1290ede8d20d0872b429fd3f351ca128ec5ef85c" dependencies: concat-stream "1.6.0" debug "2.6.9" @@ -3632,35 +3396,35 @@ extract-zip@1.6.6: extsprintf@1.3.0: version "1.3.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/extsprintf/-/extsprintf-1.3.0.tgz?dl=https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" + resolved "https://neo.jfrog.io/neo/api/npm/npm/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" extsprintf@^1.2.0: version "1.4.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/extsprintf/-/extsprintf-1.4.0.tgz?dl=https://registry.npmjs.org/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" + resolved "https://neo.jfrog.io/neo/api/npm/npm/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" fast-deep-equal@^1.0.0: version "1.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz?dl=https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614" + resolved "https://neo.jfrog.io/neo/api/npm/npm/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614" fast-deep-equal@^2.0.1: version "2.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz?dl=https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" + resolved "https://neo.jfrog.io/neo/api/npm/npm/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" fast-json-stable-stringify@^2.0.0: version "2.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz?dl=https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" + resolved "https://neo.jfrog.io/neo/api/npm/npm/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" fast-levenshtein@~2.0.4: version "2.0.6" - resolved "https://neo.jfrog.io/neo/api/npm/npm/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz?dl=https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + resolved "https://neo.jfrog.io/neo/api/npm/npm/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" fastparse@^1.1.1: version "1.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/fastparse/-/fastparse-1.1.1.tgz?dl=https://registry.npmjs.org/fastparse/-/fastparse-1.1.1.tgz#d1e2643b38a94d7583b479060e6c4affc94071f8" + resolved "https://neo.jfrog.io/neo/api/npm/npm/fastparse/-/fastparse-1.1.1.tgz#d1e2643b38a94d7583b479060e6c4affc94071f8" faye-websocket@0.11.1, faye-websocket@~0.11.0: version "0.11.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/faye-websocket/-/faye-websocket-0.11.1.tgz?dl=https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.1.tgz#f0efe18c4f56e4f40afc7e06c719fd5ee6188f38" + resolved "https://neo.jfrog.io/neo/api/npm/npm/faye-websocket/-/faye-websocket-0.11.1.tgz#f0efe18c4f56e4f40afc7e06c719fd5ee6188f38" dependencies: websocket-driver ">=0.5.1" @@ -3677,8 +3441,8 @@ fb-watchman@^2.0.0: bser "^2.0.0" fbjs@^0.8.16, fbjs@^0.8.4, fbjs@^0.8.5: - version "0.8.16" - resolved "https://neo.jfrog.io/neo/api/npm/npm/fbjs/-/fbjs-0.8.16.tgz?dl=https://registry.npmjs.org/fbjs/-/fbjs-0.8.16.tgz#5e67432f550dc41b572bf55847b8aca64e5337db" + version "0.8.17" + resolved "https://neo.jfrog.io/neo/api/npm/npm/fbjs/-/fbjs-0.8.17.tgz#c4d598ead6949112653d6588b01a5cdcd9f90fdd" dependencies: core-js "^1.0.0" isomorphic-fetch "^2.1.1" @@ -3686,7 +3450,7 @@ fbjs@^0.8.16, fbjs@^0.8.4, fbjs@^0.8.5: object-assign "^4.1.0" promise "^7.1.1" setimmediate "^1.0.5" - ua-parser-js "^0.7.9" + ua-parser-js "^0.7.18" fd-slicer@~1.0.1: version "1.0.1" @@ -3703,13 +3467,13 @@ figures@^1.7.0: figures@^2.0.0: version "2.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/figures/-/figures-2.0.0.tgz?dl=https://registry.npmjs.org/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" + resolved "https://neo.jfrog.io/neo/api/npm/npm/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" dependencies: escape-string-regexp "^1.0.5" file-entry-cache@^2.0.0: version "2.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/file-entry-cache/-/file-entry-cache-2.0.0.tgz?dl=https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" + resolved "https://neo.jfrog.io/neo/api/npm/npm/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" dependencies: flat-cache "^1.2.1" object-assign "^4.0.1" @@ -3722,11 +3486,11 @@ file-loader@^0.11.1: file-saver@^1.3.8: version "1.3.8" - resolved "https://neo.jfrog.io/neo/api/npm/npm/file-saver/-/file-saver-1.3.8.tgz?dl=https://registry.npmjs.org/file-saver/-/file-saver-1.3.8.tgz#e68a30c7cb044e2fb362b428469feb291c2e09d8" + resolved "https://neo.jfrog.io/neo/api/npm/npm/file-saver/-/file-saver-1.3.8.tgz#e68a30c7cb044e2fb362b428469feb291c2e09d8" filename-regex@^2.0.0: version "2.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/filename-regex/-/filename-regex-2.0.1.tgz?dl=https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" + resolved "https://neo.jfrog.io/neo/api/npm/npm/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" fileset@^2.0.2: version "2.0.3" @@ -3737,11 +3501,11 @@ fileset@^2.0.2: filesize@^3.5.11, filesize@^3.6.1: version "3.6.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/filesize/-/filesize-3.6.1.tgz?dl=https://registry.npmjs.org/filesize/-/filesize-3.6.1.tgz#090bb3ee01b6f801a8a8be99d31710b3422bb317" + resolved "https://neo.jfrog.io/neo/api/npm/npm/filesize/-/filesize-3.6.1.tgz#090bb3ee01b6f801a8a8be99d31710b3422bb317" fill-range@^2.1.0: version "2.2.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/fill-range/-/fill-range-2.2.4.tgz?dl=https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565" + resolved "https://neo.jfrog.io/neo/api/npm/npm/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565" dependencies: is-number "^2.1.0" isobject "^2.0.0" @@ -3760,7 +3524,7 @@ fill-range@^4.0.0: finalhandler@1.1.1: version "1.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/finalhandler/-/finalhandler-1.1.1.tgz?dl=https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.1.tgz#eebf4ed840079c83f4249038c9d703008301b105" + resolved "https://neo.jfrog.io/neo/api/npm/npm/finalhandler/-/finalhandler-1.1.1.tgz#eebf4ed840079c83f4249038c9d703008301b105" dependencies: debug "2.6.9" encodeurl "~1.0.2" @@ -3787,7 +3551,7 @@ find-cache-dir@^1.0.0: find-up@^1.0.0: version "1.1.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/find-up/-/find-up-1.1.2.tgz?dl=https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" + resolved "https://neo.jfrog.io/neo/api/npm/npm/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" dependencies: path-exists "^2.0.0" pinkie-promise "^2.0.0" @@ -3800,7 +3564,7 @@ find-up@^2.0.0, find-up@^2.1.0: firebase@^4.3.0: version "4.13.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/firebase/-/firebase-4.13.1.tgz?dl=https://registry.npmjs.org/firebase/-/firebase-4.13.1.tgz#87ab64bbb7f707244fb878f2a28235b0e3aed3ec" + resolved "https://neo.jfrog.io/neo/api/npm/npm/firebase/-/firebase-4.13.1.tgz#87ab64bbb7f707244fb878f2a28235b0e3aed3ec" dependencies: "@firebase/app" "0.2.0" "@firebase/auth" "0.4.2" @@ -3815,7 +3579,7 @@ firebase@^4.3.0: flat-cache@^1.2.1: version "1.3.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/flat-cache/-/flat-cache-1.3.0.tgz?dl=https://registry.npmjs.org/flat-cache/-/flat-cache-1.3.0.tgz#d3030b32b38154f4e3b7e9c709f490f7ef97c481" + resolved "https://neo.jfrog.io/neo/api/npm/npm/flat-cache/-/flat-cache-1.3.0.tgz#d3030b32b38154f4e3b7e9c709f490f7ef97c481" dependencies: circular-json "^0.3.1" del "^2.0.2" @@ -3824,56 +3588,62 @@ flat-cache@^1.2.1: flatten@^1.0.2: version "1.0.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/flatten/-/flatten-1.0.2.tgz?dl=https://registry.npmjs.org/flatten/-/flatten-1.0.2.tgz#dae46a9d78fbe25292258cc1e780a41d95c03782" + resolved "https://neo.jfrog.io/neo/api/npm/npm/flatten/-/flatten-1.0.2.tgz#dae46a9d78fbe25292258cc1e780a41d95c03782" flush-write-stream@^1.0.0: - version "1.0.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/flush-write-stream/-/flush-write-stream-1.0.2.tgz#c81b90d8746766f1a609a46809946c45dd8ae417" + version "1.0.3" + resolved "https://neo.jfrog.io/neo/api/npm/npm/flush-write-stream/-/flush-write-stream-1.0.3.tgz#c5d586ef38af6097650b49bc41b55fabb19f35bd" dependencies: inherits "^2.0.1" readable-stream "^2.0.4" +follow-redirects@^1.0.0: + version "1.5.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/follow-redirects/-/follow-redirects-1.5.0.tgz#234f49cf770b7f35b40e790f636ceba0c3a0ab77" + dependencies: + debug "^3.1.0" + for-in@^1.0.1, for-in@^1.0.2: version "1.0.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/for-in/-/for-in-1.0.2.tgz?dl=https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" + resolved "https://neo.jfrog.io/neo/api/npm/npm/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" for-own@^0.1.4: version "0.1.5" - resolved "https://neo.jfrog.io/neo/api/npm/npm/for-own/-/for-own-0.1.5.tgz?dl=https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" + resolved "https://neo.jfrog.io/neo/api/npm/npm/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" dependencies: for-in "^1.0.1" foreach@^2.0.5: version "2.0.5" - resolved "https://neo.jfrog.io/neo/api/npm/npm/foreach/-/foreach-2.0.5.tgz?dl=https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" + resolved "https://neo.jfrog.io/neo/api/npm/npm/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" forever-agent@~0.6.1: version "0.6.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/forever-agent/-/forever-agent-0.6.1.tgz?dl=https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" + resolved "https://neo.jfrog.io/neo/api/npm/npm/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" form-data@~2.1.1: version "2.1.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/form-data/-/form-data-2.1.4.tgz?dl=https://registry.npmjs.org/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" dependencies: asynckit "^0.4.0" combined-stream "^1.0.5" mime-types "^2.1.12" form-data@~2.3.1: - version "2.3.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/form-data/-/form-data-2.3.1.tgz#6fb94fbd71885306d73d15cc497fe4cc4ecd44bf" + version "2.3.2" + resolved "https://neo.jfrog.io/neo/api/npm/npm/form-data/-/form-data-2.3.2.tgz#4970498be604c20c005d4f5c23aecd21d6b49099" dependencies: asynckit "^0.4.0" - combined-stream "^1.0.5" + combined-stream "1.0.6" mime-types "^2.1.12" forwarded@~0.1.2: version "0.1.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/forwarded/-/forwarded-0.1.2.tgz?dl=https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84" + resolved "https://neo.jfrog.io/neo/api/npm/npm/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84" fp-ts@^1.0.0, fp-ts@^1.0.1: - version "1.6.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/fp-ts/-/fp-ts-1.6.0.tgz?dl=https://registry.npmjs.org/fp-ts/-/fp-ts-1.6.0.tgz#2449d71928e2e324027ba7047da5e385d4853f8d" + version "1.6.2" + resolved "https://neo.jfrog.io/neo/api/npm/npm/fp-ts/-/fp-ts-1.6.2.tgz#21f3675262d35b507b6e854f68965979e125ff77" fragment-cache@^0.2.1: version "0.2.1" @@ -3883,7 +3653,7 @@ fragment-cache@^0.2.1: fresh@0.5.2: version "0.5.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/fresh/-/fresh-0.5.2.tgz?dl=https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" + resolved "https://neo.jfrog.io/neo/api/npm/npm/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" from2@^2.1.0: version "2.3.0" @@ -3902,7 +3672,7 @@ fs-extra@4.0.1: fs-minipass@^1.2.5: version "1.2.5" - resolved "https://neo.jfrog.io/neo/api/npm/npm/fs-minipass/-/fs-minipass-1.2.5.tgz?dl=https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d" + resolved "https://neo.jfrog.io/neo/api/npm/npm/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d" dependencies: minipass "^2.2.1" @@ -3917,25 +3687,18 @@ fs-write-stream-atomic@^1.0.8: fs.realpath@^1.0.0: version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/fs.realpath/-/fs.realpath-1.0.0.tgz?dl=https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + resolved "https://neo.jfrog.io/neo/api/npm/npm/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" -fsevents@^1.0.0, fsevents@^1.1.2: +fsevents@^1.2.2, fsevents@^1.2.3: version "1.2.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/fsevents/-/fsevents-1.2.4.tgz?dl=https://registry.npmjs.org/fsevents/-/fsevents-1.2.4.tgz#f41dcb1af2582af3692da36fc55cbd8e1041c426" + resolved "https://neo.jfrog.io/neo/api/npm/npm/fsevents/-/fsevents-1.2.4.tgz#f41dcb1af2582af3692da36fc55cbd8e1041c426" dependencies: nan "^2.9.2" node-pre-gyp "^0.10.0" -fsevents@^1.1.1: - version "1.1.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4" - dependencies: - nan "^2.3.0" - node-pre-gyp "^0.6.36" - fstream-ignore@^1.0.5: version "1.0.5" - resolved "https://neo.jfrog.io/neo/api/npm/npm/fstream-ignore/-/fstream-ignore-1.0.5.tgz?dl=https://registry.npmjs.org/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" + resolved "https://neo.jfrog.io/neo/api/npm/npm/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" dependencies: fstream "^1.0.0" inherits "2" @@ -3943,20 +3706,20 @@ fstream-ignore@^1.0.5: fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: version "1.0.11" - resolved "https://neo.jfrog.io/neo/api/npm/npm/fstream/-/fstream-1.0.11.tgz?dl=https://registry.npmjs.org/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" + resolved "https://neo.jfrog.io/neo/api/npm/npm/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" dependencies: graceful-fs "^4.1.2" inherits "~2.0.0" mkdirp ">=0.5 0" rimraf "2" -function-bind@^1.0.2, function-bind@^1.1.1: +function-bind@^1.1.1: version "1.1.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" functional-red-black-tree@^1.0.1: version "1.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz?dl=https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" + resolved "https://neo.jfrog.io/neo/api/npm/npm/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" fuzzaldrin@2.1.0: version "2.1.0" @@ -3964,7 +3727,7 @@ fuzzaldrin@2.1.0: gauge@~2.7.3: version "2.7.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/gauge/-/gauge-2.7.4.tgz?dl=https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" + resolved "https://neo.jfrog.io/neo/api/npm/npm/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" dependencies: aproba "^1.0.3" console-control-strings "^1.0.0" @@ -3977,11 +3740,11 @@ gauge@~2.7.3: get-caller-file@^1.0.1: version "1.0.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/get-caller-file/-/get-caller-file-1.0.2.tgz?dl=https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" + resolved "https://neo.jfrog.io/neo/api/npm/npm/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" get-func-name@^2.0.0: version "2.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/get-func-name/-/get-func-name-2.0.0.tgz?dl=https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41" + resolved "https://neo.jfrog.io/neo/api/npm/npm/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41" get-own-enumerable-property-symbols@^2.0.1: version "2.0.1" @@ -3997,7 +3760,7 @@ get-stdin@^5.0.1: get-stream@^3.0.0: version "3.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/get-stream/-/get-stream-3.0.0.tgz?dl=https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" + resolved "https://neo.jfrog.io/neo/api/npm/npm/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" get-value@^2.0.3, get-value@^2.0.6: version "2.0.6" @@ -4011,20 +3774,20 @@ getos@2.8.4: getpass@^0.1.1: version "0.1.7" - resolved "https://neo.jfrog.io/neo/api/npm/npm/getpass/-/getpass-0.1.7.tgz?dl=https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" + resolved "https://neo.jfrog.io/neo/api/npm/npm/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" dependencies: assert-plus "^1.0.0" glob-base@^0.3.0: version "0.3.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/glob-base/-/glob-base-0.3.0.tgz?dl=https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" + resolved "https://neo.jfrog.io/neo/api/npm/npm/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" dependencies: glob-parent "^2.0.0" is-glob "^2.0.0" glob-parent@^2.0.0: version "2.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/glob-parent/-/glob-parent-2.0.0.tgz?dl=https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" + resolved "https://neo.jfrog.io/neo/api/npm/npm/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" dependencies: is-glob "^2.0.0" @@ -4037,7 +3800,7 @@ glob-parent@^3.1.0: glob@7.1.2, glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2: version "7.1.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/glob/-/glob-7.1.2.tgz?dl=https://registry.npmjs.org/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" + resolved "https://neo.jfrog.io/neo/api/npm/npm/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" dependencies: fs.realpath "^1.0.0" inflight "^1.0.4" @@ -4065,15 +3828,15 @@ global-dirs@^0.1.0: globals@^11.0.1: version "11.5.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/globals/-/globals-11.5.0.tgz?dl=https://registry.npmjs.org/globals/-/globals-11.5.0.tgz#6bc840de6771173b191f13d3a9c94d441ee92642" + resolved "https://neo.jfrog.io/neo/api/npm/npm/globals/-/globals-11.5.0.tgz#6bc840de6771173b191f13d3a9c94d441ee92642" globals@^9.18.0: version "9.18.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/globals/-/globals-9.18.0.tgz?dl=https://registry.npmjs.org/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" + resolved "https://neo.jfrog.io/neo/api/npm/npm/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" globby@^5.0.0: version "5.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/globby/-/globby-5.0.0.tgz?dl=https://registry.npmjs.org/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" + resolved "https://neo.jfrog.io/neo/api/npm/npm/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" dependencies: array-union "^1.0.1" arrify "^1.0.0" @@ -4105,7 +3868,7 @@ globby@^7.1.1: graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6: version "4.1.11" - resolved "https://neo.jfrog.io/neo/api/npm/npm/graceful-fs/-/graceful-fs-4.1.11.tgz?dl=https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" + resolved "https://neo.jfrog.io/neo/api/npm/npm/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" growly@^1.3.0: version "1.3.0" @@ -4113,7 +3876,7 @@ growly@^1.3.0: grpc@1.10.1: version "1.10.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/grpc/-/grpc-1.10.1.tgz?dl=https://registry.npmjs.org/grpc/-/grpc-1.10.1.tgz#90691404aeb769a98784924d08e8fd07c920b2da" + resolved "https://neo.jfrog.io/neo/api/npm/npm/grpc/-/grpc-1.10.1.tgz#90691404aeb769a98784924d08e8fd07c920b2da" dependencies: lodash "^4.15.0" nan "^2.10.0" @@ -4122,7 +3885,7 @@ grpc@1.10.1: gzip-size@^4.1.0: version "4.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/gzip-size/-/gzip-size-4.1.0.tgz?dl=https://registry.npmjs.org/gzip-size/-/gzip-size-4.1.0.tgz#8ae096257eabe7d69c45be2b67c448124ffb517c" + resolved "https://neo.jfrog.io/neo/api/npm/npm/gzip-size/-/gzip-size-4.1.0.tgz#8ae096257eabe7d69c45be2b67c448124ffb517c" dependencies: duplexer "^0.1.1" pify "^3.0.0" @@ -4131,19 +3894,9 @@ handle-thing@^1.2.5: version "1.2.5" resolved "https://neo.jfrog.io/neo/api/npm/npm/handle-thing/-/handle-thing-1.2.5.tgz#fd7aad726bf1a5fd16dfc29b2f7a6601d27139c4" -handlebars@^4.0.11: +handlebars@^4.0.11, handlebars@^4.0.3: version "4.0.11" - resolved "https://neo.jfrog.io/neo/api/npm/npm/handlebars/-/handlebars-4.0.11.tgz?dl=https://registry.npmjs.org/handlebars/-/handlebars-4.0.11.tgz#630a35dfe0294bc281edae6ffc5d329fc7982dcc" - dependencies: - async "^1.4.0" - optimist "^0.6.1" - source-map "^0.4.4" - optionalDependencies: - uglify-js "^2.6" - -handlebars@^4.0.3: - version "4.0.10" - resolved "https://neo.jfrog.io/neo/api/npm/npm/handlebars/-/handlebars-4.0.10.tgz#3d30c718b09a3d96f23ea4cc1f403c4d3ba9ff4f" + resolved "https://neo.jfrog.io/neo/api/npm/npm/handlebars/-/handlebars-4.0.11.tgz#630a35dfe0294bc281edae6ffc5d329fc7982dcc" dependencies: async "^1.4.0" optimist "^0.6.1" @@ -4153,7 +3906,7 @@ handlebars@^4.0.3: har-schema@^1.0.5: version "1.0.5" - resolved "https://neo.jfrog.io/neo/api/npm/npm/har-schema/-/har-schema-1.0.5.tgz?dl=https://registry.npmjs.org/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" + resolved "https://neo.jfrog.io/neo/api/npm/npm/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" har-schema@^2.0.0: version "2.0.0" @@ -4161,7 +3914,7 @@ har-schema@^2.0.0: har-validator@~4.2.1: version "4.2.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/har-validator/-/har-validator-4.2.1.tgz?dl=https://registry.npmjs.org/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" + resolved "https://neo.jfrog.io/neo/api/npm/npm/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" dependencies: ajv "^4.9.1" har-schema "^1.0.5" @@ -4175,13 +3928,13 @@ har-validator@~5.0.3: has-ansi@^2.0.0: version "2.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/has-ansi/-/has-ansi-2.0.0.tgz?dl=https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" + resolved "https://neo.jfrog.io/neo/api/npm/npm/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" dependencies: ansi-regex "^2.0.0" has-binary2@~1.0.2: version "1.0.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/has-binary2/-/has-binary2-1.0.3.tgz?dl=https://registry.npmjs.org/has-binary2/-/has-binary2-1.0.3.tgz#7776ac627f3ea77250cfc332dab7ddf5e4f5d11d" + resolved "https://neo.jfrog.io/neo/api/npm/npm/has-binary2/-/has-binary2-1.0.3.tgz#7776ac627f3ea77250cfc332dab7ddf5e4f5d11d" dependencies: isarray "2.0.1" @@ -4191,19 +3944,19 @@ has-cors@1.1.0: has-flag@^1.0.0: version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/has-flag/-/has-flag-1.0.0.tgz?dl=https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" + resolved "https://neo.jfrog.io/neo/api/npm/npm/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" has-flag@^2.0.0: version "2.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/has-flag/-/has-flag-2.0.0.tgz?dl=https://registry.npmjs.org/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" + resolved "https://neo.jfrog.io/neo/api/npm/npm/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" has-flag@^3.0.0: version "3.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/has-flag/-/has-flag-3.0.0.tgz?dl=https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + resolved "https://neo.jfrog.io/neo/api/npm/npm/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" has-unicode@^2.0.0: version "2.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/has-unicode/-/has-unicode-2.0.1.tgz?dl=https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" + resolved "https://neo.jfrog.io/neo/api/npm/npm/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" has-value@^0.3.1: version "0.3.1" @@ -4232,29 +3985,29 @@ has-values@^1.0.0: is-number "^3.0.0" kind-of "^4.0.0" -has@^1.0.1: - version "1.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/has/-/has-1.0.1.tgz?dl=https://registry.npmjs.org/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" +has@^1.0.1, has@^1.0.2: + version "1.0.3" + resolved "https://neo.jfrog.io/neo/api/npm/npm/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" dependencies: - function-bind "^1.0.2" + function-bind "^1.1.1" hash-base@^3.0.0: version "3.0.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/hash-base/-/hash-base-3.0.4.tgz?dl=https://registry.npmjs.org/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" + resolved "https://neo.jfrog.io/neo/api/npm/npm/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" dependencies: inherits "^2.0.1" safe-buffer "^5.0.1" hash.js@^1.0.0, hash.js@^1.0.3: - version "1.1.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/hash.js/-/hash.js-1.1.3.tgz?dl=https://registry.npmjs.org/hash.js/-/hash.js-1.1.3.tgz#340dedbe6290187151c1ea1d777a3448935df846" + version "1.1.4" + resolved "https://neo.jfrog.io/neo/api/npm/npm/hash.js/-/hash.js-1.1.4.tgz#8b50e1f35d51bd01e5ed9ece4dbe3549ccfa0a3c" dependencies: inherits "^2.0.3" minimalistic-assert "^1.0.0" -hawk@3.1.3, hawk@~3.1.3: +hawk@~3.1.3: version "3.1.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/hawk/-/hawk-3.1.3.tgz?dl=https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" + resolved "https://neo.jfrog.io/neo/api/npm/npm/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" dependencies: boom "2.x.x" cryptiles "2.x.x" @@ -4276,7 +4029,7 @@ he@1.1.x: hmac-drbg@^1.0.0: version "1.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/hmac-drbg/-/hmac-drbg-1.0.1.tgz?dl=https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" dependencies: hash.js "^1.0.3" minimalistic-assert "^1.0.0" @@ -4284,26 +4037,26 @@ hmac-drbg@^1.0.0: hoek@2.x.x: version "2.16.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/hoek/-/hoek-2.16.3.tgz?dl=https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" + resolved "https://neo.jfrog.io/neo/api/npm/npm/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" hoek@4.x.x: - version "4.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/hoek/-/hoek-4.2.0.tgz#72d9d0754f7fe25ca2d01ad8f8f9a9449a89526d" + version "4.2.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/hoek/-/hoek-4.2.1.tgz#9634502aa12c445dd5a7c5734b572bb8738aacbb" hoist-non-react-statics@^2.1.0, hoist-non-react-statics@^2.5.0: - version "2.5.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/hoist-non-react-statics/-/hoist-non-react-statics-2.5.0.tgz?dl=https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-2.5.0.tgz#d2ca2dfc19c5a91c5a6615ce8e564ef0347e2a40" + version "2.5.5" + resolved "https://neo.jfrog.io/neo/api/npm/npm/hoist-non-react-statics/-/hoist-non-react-statics-2.5.5.tgz#c5903cf409c0dfd908f388e619d86b9c1174cb47" home-or-tmp@^2.0.0: version "2.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/home-or-tmp/-/home-or-tmp-2.0.0.tgz?dl=https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" + resolved "https://neo.jfrog.io/neo/api/npm/npm/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" dependencies: os-homedir "^1.0.0" os-tmpdir "^1.0.1" hosted-git-info@^2.1.4: version "2.6.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/hosted-git-info/-/hosted-git-info-2.6.0.tgz?dl=https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.6.0.tgz#23235b29ab230c576aab0d4f13fc046b0b038222" + resolved "https://neo.jfrog.io/neo/api/npm/npm/hosted-git-info/-/hosted-git-info-2.6.0.tgz#23235b29ab230c576aab0d4f13fc046b0b038222" hpack.js@^2.1.6: version "2.1.6" @@ -4316,17 +4069,11 @@ hpack.js@^2.1.6: html-comment-regex@^1.1.0: version "1.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/html-comment-regex/-/html-comment-regex-1.1.1.tgz?dl=https://registry.npmjs.org/html-comment-regex/-/html-comment-regex-1.1.1.tgz#668b93776eaae55ebde8f3ad464b307a4963625e" - -html-encoding-sniffer@^1.0.1: - version "1.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" - dependencies: - whatwg-encoding "^1.0.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/html-comment-regex/-/html-comment-regex-1.1.1.tgz#668b93776eaae55ebde8f3ad464b307a4963625e" html-encoding-sniffer@^1.0.2: version "1.0.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz?dl=https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8" + resolved "https://neo.jfrog.io/neo/api/npm/npm/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8" dependencies: whatwg-encoding "^1.0.1" @@ -4344,28 +4091,14 @@ html-loader@^0.5.1: loader-utils "^1.1.0" object-assign "^4.1.1" -html-minifier@^3.2.3: - version "3.5.5" - resolved "https://neo.jfrog.io/neo/api/npm/npm/html-minifier/-/html-minifier-3.5.5.tgz#3bdc9427e638bbe3dbde96c0eb988b044f02739e" +html-minifier@^3.2.3, html-minifier@^3.5.8: + version "3.5.16" + resolved "https://neo.jfrog.io/neo/api/npm/npm/html-minifier/-/html-minifier-3.5.16.tgz#39f5aabaf78bdfc057fe67334226efd7f3851175" dependencies: camel-case "3.0.x" clean-css "4.1.x" - commander "2.11.x" + commander "2.15.x" he "1.1.x" - ncname "1.0.x" - param-case "2.1.x" - relateurl "0.2.x" - uglify-js "3.1.x" - -html-minifier@^3.5.8: - version "3.5.10" - resolved "https://neo.jfrog.io/neo/api/npm/npm/html-minifier/-/html-minifier-3.5.10.tgz#8522c772c388db81aa5c26f62033302d906ea1c7" - dependencies: - camel-case "3.0.x" - clean-css "4.1.x" - commander "2.14.x" - he "1.1.x" - ncname "1.0.x" param-case "2.1.x" relateurl "0.2.x" uglify-js "3.3.x" @@ -4400,7 +4133,7 @@ http-deceiver@^1.2.7: http-errors@1.6.2: version "1.6.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/http-errors/-/http-errors-1.6.2.tgz?dl=https://registry.npmjs.org/http-errors/-/http-errors-1.6.2.tgz#0a002cc85707192a7e7946ceedc11155f60ec736" + resolved "https://neo.jfrog.io/neo/api/npm/npm/http-errors/-/http-errors-1.6.2.tgz#0a002cc85707192a7e7946ceedc11155f60ec736" dependencies: depd "1.1.1" inherits "2.0.3" @@ -4409,7 +4142,7 @@ http-errors@1.6.2: http-errors@~1.6.2: version "1.6.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/http-errors/-/http-errors-1.6.3.tgz?dl=https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d" + resolved "https://neo.jfrog.io/neo/api/npm/npm/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d" dependencies: depd "~1.1.2" inherits "2.0.3" @@ -4418,7 +4151,7 @@ http-errors@~1.6.2: http-parser-js@>=0.4.0: version "0.4.13" - resolved "https://neo.jfrog.io/neo/api/npm/npm/http-parser-js/-/http-parser-js-0.4.13.tgz?dl=https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.4.13.tgz#3bd6d6fde6e3172c9334c3b33b6c193d80fe1137" + resolved "https://neo.jfrog.io/neo/api/npm/npm/http-parser-js/-/http-parser-js-0.4.13.tgz#3bd6d6fde6e3172c9334c3b33b6c193d80fe1137" http-proxy-middleware@~0.17.4: version "0.17.4" @@ -4430,15 +4163,16 @@ http-proxy-middleware@~0.17.4: micromatch "^2.3.11" http-proxy@^1.16.2: - version "1.16.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/http-proxy/-/http-proxy-1.16.2.tgz#06dff292952bf64dbe8471fa9df73066d4f37742" + version "1.17.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/http-proxy/-/http-proxy-1.17.0.tgz#7ad38494658f84605e2f6db4436df410f4e5be9a" dependencies: - eventemitter3 "1.x.x" - requires-port "1.x.x" + eventemitter3 "^3.0.0" + follow-redirects "^1.0.0" + requires-port "^1.0.0" http-signature@~1.1.0: version "1.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/http-signature/-/http-signature-1.1.1.tgz?dl=https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" + resolved "https://neo.jfrog.io/neo/api/npm/npm/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" dependencies: assert-plus "^0.2.0" jsprim "^1.2.2" @@ -4454,7 +4188,7 @@ http-signature@~1.2.0: https-browserify@^1.0.0: version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/https-browserify/-/https-browserify-1.0.0.tgz?dl=https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" + resolved "https://neo.jfrog.io/neo/api/npm/npm/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" husky@^0.14.3: version "0.14.3" @@ -4464,33 +4198,29 @@ husky@^0.14.3: normalize-path "^1.0.0" strip-indent "^2.0.0" -iconv-lite@0.4.13: - version "0.4.13" - resolved "https://neo.jfrog.io/neo/api/npm/npm/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" - iconv-lite@0.4.19: version "0.4.19" - resolved "https://neo.jfrog.io/neo/api/npm/npm/iconv-lite/-/iconv-lite-0.4.19.tgz?dl=https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" + resolved "https://neo.jfrog.io/neo/api/npm/npm/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" iconv-lite@^0.4.17, iconv-lite@^0.4.4, iconv-lite@~0.4.13: version "0.4.23" - resolved "https://neo.jfrog.io/neo/api/npm/npm/iconv-lite/-/iconv-lite-0.4.23.tgz?dl=https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.23.tgz#297871f63be507adcfbfca715d0cd0eed84e9a63" + resolved "https://neo.jfrog.io/neo/api/npm/npm/iconv-lite/-/iconv-lite-0.4.23.tgz#297871f63be507adcfbfca715d0cd0eed84e9a63" dependencies: safer-buffer ">= 2.1.2 < 3" icss-replace-symbols@^1.1.0: version "1.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz?dl=https://registry.npmjs.org/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded" + resolved "https://neo.jfrog.io/neo/api/npm/npm/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded" icss-utils@^2.1.0: version "2.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/icss-utils/-/icss-utils-2.1.0.tgz?dl=https://registry.npmjs.org/icss-utils/-/icss-utils-2.1.0.tgz#83f0a0ec378bf3246178b6c2ad9136f135b1c962" + resolved "https://neo.jfrog.io/neo/api/npm/npm/icss-utils/-/icss-utils-2.1.0.tgz#83f0a0ec378bf3246178b6c2ad9136f135b1c962" dependencies: postcss "^6.0.1" ieee754@^1.1.4: - version "1.1.11" - resolved "https://neo.jfrog.io/neo/api/npm/npm/ieee754/-/ieee754-1.1.11.tgz?dl=https://registry.npmjs.org/ieee754/-/ieee754-1.1.11.tgz#c16384ffe00f5b7835824e67b6f2bd44a5229455" + version "1.1.12" + resolved "https://neo.jfrog.io/neo/api/npm/npm/ieee754/-/ieee754-1.1.12.tgz#50bf24e5b9c8bb98af4964c941cdb0918da7b60b" iferr@^0.1.5: version "0.1.5" @@ -4498,17 +4228,13 @@ iferr@^0.1.5: ignore-walk@^3.0.1: version "3.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/ignore-walk/-/ignore-walk-3.0.1.tgz?dl=https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" + resolved "https://neo.jfrog.io/neo/api/npm/npm/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" dependencies: minimatch "^3.0.4" -ignore@^3.2.7, ignore@^3.3.5, ignore@^3.3.6: - version "3.3.7" - resolved "https://neo.jfrog.io/neo/api/npm/npm/ignore/-/ignore-3.3.7.tgz#612289bfb3c220e186a58118618d5be8c1bab021" - -ignore@^3.3.3: +ignore@^3.2.7, ignore@^3.3.3, ignore@^3.3.5, ignore@^3.3.6: version "3.3.8" - resolved "https://neo.jfrog.io/neo/api/npm/npm/ignore/-/ignore-3.3.8.tgz?dl=https://registry.npmjs.org/ignore/-/ignore-3.3.8.tgz#3f8e9c35d38708a3a7e0e9abb6c73e7ee7707b2b" + resolved "https://neo.jfrog.io/neo/api/npm/npm/ignore/-/ignore-3.3.8.tgz#3f8e9c35d38708a3a7e0e9abb6c73e7ee7707b2b" import-local@^1.0.0: version "1.0.0" @@ -4519,7 +4245,7 @@ import-local@^1.0.0: imurmurhash@^0.1.4: version "0.1.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/imurmurhash/-/imurmurhash-0.1.4.tgz?dl=https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + resolved "https://neo.jfrog.io/neo/api/npm/npm/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" indent-string@^2.1.0: version "2.1.0" @@ -4533,34 +4259,34 @@ indent-string@^3.0.0, indent-string@^3.1.0, indent-string@^3.2.0: indexes-of@^1.0.1: version "1.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/indexes-of/-/indexes-of-1.0.1.tgz?dl=https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" + resolved "https://neo.jfrog.io/neo/api/npm/npm/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" indexof@0.0.1: version "0.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/indexof/-/indexof-0.0.1.tgz?dl=https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" + resolved "https://neo.jfrog.io/neo/api/npm/npm/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" inflight@^1.0.4: version "1.0.6" - resolved "https://neo.jfrog.io/neo/api/npm/npm/inflight/-/inflight-1.0.6.tgz?dl=https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + resolved "https://neo.jfrog.io/neo/api/npm/npm/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" dependencies: once "^1.3.0" wrappy "1" inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: version "2.0.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/inherits/-/inherits-2.0.3.tgz?dl=https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" + resolved "https://neo.jfrog.io/neo/api/npm/npm/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" inherits@2.0.1: version "2.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/inherits/-/inherits-2.0.1.tgz?dl=https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" ini@^1.3.4, ini@~1.3.0: version "1.3.5" - resolved "https://neo.jfrog.io/neo/api/npm/npm/ini/-/ini-1.3.5.tgz?dl=https://registry.npmjs.org/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" + resolved "https://neo.jfrog.io/neo/api/npm/npm/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" inquirer@^3.0.6: version "3.3.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/inquirer/-/inquirer-3.3.0.tgz?dl=https://registry.npmjs.org/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" + resolved "https://neo.jfrog.io/neo/api/npm/npm/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" dependencies: ansi-escapes "^3.0.0" chalk "^2.0.0" @@ -4579,7 +4305,7 @@ inquirer@^3.0.6: inspectpack@^3.0.1: version "3.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/inspectpack/-/inspectpack-3.0.1.tgz?dl=https://registry.npmjs.org/inspectpack/-/inspectpack-3.0.1.tgz#676134e139aef14de5c0d1d8ab482ba629ecef28" + resolved "https://neo.jfrog.io/neo/api/npm/npm/inspectpack/-/inspectpack-3.0.1.tgz#676134e139aef14de5c0d1d8ab482ba629ecef28" dependencies: chalk "^2.4.0" io-ts "^1.0.5" @@ -4595,28 +4321,28 @@ internal-ip@1.2.0: interpret@^1.0.0: version "1.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/interpret/-/interpret-1.1.0.tgz?dl=https://registry.npmjs.org/interpret/-/interpret-1.1.0.tgz#7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614" + resolved "https://neo.jfrog.io/neo/api/npm/npm/interpret/-/interpret-1.1.0.tgz#7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614" invariant@^2.0.0, invariant@^2.1.0, invariant@^2.2.2: version "2.2.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/invariant/-/invariant-2.2.4.tgz?dl=https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" + resolved "https://neo.jfrog.io/neo/api/npm/npm/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" dependencies: loose-envify "^1.0.0" invert-kv@^1.0.0: version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/invert-kv/-/invert-kv-1.0.0.tgz?dl=https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" + resolved "https://neo.jfrog.io/neo/api/npm/npm/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" io-ts-reporters@^0.0.20: version "0.0.20" - resolved "https://neo.jfrog.io/neo/api/npm/npm/io-ts-reporters/-/io-ts-reporters-0.0.20.tgz?dl=https://registry.npmjs.org/io-ts-reporters/-/io-ts-reporters-0.0.20.tgz#2b8cbb6a2bc4562dae6917a3a413fa2c9851a644" + resolved "https://neo.jfrog.io/neo/api/npm/npm/io-ts-reporters/-/io-ts-reporters-0.0.20.tgz#2b8cbb6a2bc4562dae6917a3a413fa2c9851a644" dependencies: fp-ts "^1.0.1" io-ts "^1.0.2" io-ts@^1.0.2, io-ts@^1.0.5: - version "1.1.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/io-ts/-/io-ts-1.1.3.tgz?dl=https://registry.npmjs.org/io-ts/-/io-ts-1.1.3.tgz#577c7f11527e0850a95a25f2f240ee06fdda921a" + version "1.1.5" + resolved "https://neo.jfrog.io/neo/api/npm/npm/io-ts/-/io-ts-1.1.5.tgz#5a943eeb063eebf27517a559359fd121ba04eaaa" dependencies: fp-ts "^1.0.0" @@ -4626,11 +4352,11 @@ ip@^1.1.0, ip@^1.1.5: ipaddr.js@1.6.0: version "1.6.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/ipaddr.js/-/ipaddr.js-1.6.0.tgz?dl=https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.6.0.tgz#e3fa357b773da619f26e95f049d055c72796f86b" + resolved "https://neo.jfrog.io/neo/api/npm/npm/ipaddr.js/-/ipaddr.js-1.6.0.tgz#e3fa357b773da619f26e95f049d055c72796f86b" is-absolute-url@^2.0.0: version "2.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/is-absolute-url/-/is-absolute-url-2.1.0.tgz?dl=https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6" + resolved "https://neo.jfrog.io/neo/api/npm/npm/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6" is-accessor-descriptor@^0.1.6: version "0.1.6" @@ -4646,38 +4372,44 @@ is-accessor-descriptor@^1.0.0: is-arrayish@^0.2.1: version "0.2.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/is-arrayish/-/is-arrayish-0.2.1.tgz?dl=https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + resolved "https://neo.jfrog.io/neo/api/npm/npm/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" is-arrayish@^0.3.1: - version "0.3.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/is-arrayish/-/is-arrayish-0.3.1.tgz#c2dfc386abaa0c3e33c48db3fe87059e69065efd" + version "0.3.2" + resolved "https://neo.jfrog.io/neo/api/npm/npm/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" is-binary-path@^1.0.0: version "1.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/is-binary-path/-/is-binary-path-1.0.1.tgz?dl=https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" + resolved "https://neo.jfrog.io/neo/api/npm/npm/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" dependencies: binary-extensions "^1.0.0" is-buffer@^1.1.5: version "1.1.6" - resolved "https://neo.jfrog.io/neo/api/npm/npm/is-buffer/-/is-buffer-1.1.6.tgz?dl=https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" + resolved "https://neo.jfrog.io/neo/api/npm/npm/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" is-builtin-module@^1.0.0: version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/is-builtin-module/-/is-builtin-module-1.0.0.tgz?dl=https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" + resolved "https://neo.jfrog.io/neo/api/npm/npm/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" dependencies: builtin-modules "^1.0.0" is-callable@^1.1.1, is-callable@^1.1.3: version "1.1.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/is-callable/-/is-callable-1.1.3.tgz?dl=https://registry.npmjs.org/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" + resolved "https://neo.jfrog.io/neo/api/npm/npm/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" -is-ci@1.0.10, is-ci@^1.0.10: +is-ci@1.0.10: version "1.0.10" resolved "https://neo.jfrog.io/neo/api/npm/npm/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" dependencies: ci-info "^1.0.0" +is-ci@^1.0.10: + version "1.1.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/is-ci/-/is-ci-1.1.0.tgz#247e4162e7860cebbdaf30b774d6b0ac7dcfe7a5" + dependencies: + ci-info "^1.0.0" + is-data-descriptor@^0.1.4: version "0.1.4" resolved "https://neo.jfrog.io/neo/api/npm/npm/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" @@ -4692,7 +4424,7 @@ is-data-descriptor@^1.0.0: is-date-object@^1.0.1: version "1.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/is-date-object/-/is-date-object-1.0.1.tgz?dl=https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" + resolved "https://neo.jfrog.io/neo/api/npm/npm/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" is-descriptor@^0.1.0: version "0.1.6" @@ -4712,21 +4444,21 @@ is-descriptor@^1.0.0, is-descriptor@^1.0.2: is-directory@^0.3.1: version "0.3.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/is-directory/-/is-directory-0.3.1.tgz?dl=https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" is-dotfile@^1.0.0: version "1.0.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/is-dotfile/-/is-dotfile-1.0.3.tgz?dl=https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" is-equal-shallow@^0.1.3: version "0.1.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz?dl=https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" + resolved "https://neo.jfrog.io/neo/api/npm/npm/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" dependencies: is-primitive "^2.0.0" is-extendable@^0.1.0, is-extendable@^0.1.1: version "0.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/is-extendable/-/is-extendable-0.1.1.tgz?dl=https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" + resolved "https://neo.jfrog.io/neo/api/npm/npm/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" is-extendable@^1.0.1: version "1.0.1" @@ -4736,7 +4468,7 @@ is-extendable@^1.0.1: is-extglob@^1.0.0: version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/is-extglob/-/is-extglob-1.0.0.tgz?dl=https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" is-extglob@^2.1.0, is-extglob@^2.1.1: version "2.1.1" @@ -4744,27 +4476,27 @@ is-extglob@^2.1.0, is-extglob@^2.1.1: is-finite@^1.0.0: version "1.0.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/is-finite/-/is-finite-1.0.2.tgz?dl=https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" + resolved "https://neo.jfrog.io/neo/api/npm/npm/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" dependencies: number-is-nan "^1.0.0" is-fullwidth-code-point@^1.0.0: version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz?dl=https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" + resolved "https://neo.jfrog.io/neo/api/npm/npm/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" dependencies: number-is-nan "^1.0.0" is-fullwidth-code-point@^2.0.0: version "2.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz?dl=https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" + resolved "https://neo.jfrog.io/neo/api/npm/npm/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" is-generator-fn@^1.0.0: version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/is-generator-fn/-/is-generator-fn-1.0.0.tgz?dl=https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-1.0.0.tgz#969d49e1bb3329f6bb7f09089be26578b2ddd46a" + resolved "https://neo.jfrog.io/neo/api/npm/npm/is-generator-fn/-/is-generator-fn-1.0.0.tgz#969d49e1bb3329f6bb7f09089be26578b2ddd46a" is-glob@^2.0.0, is-glob@^2.0.1: version "2.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/is-glob/-/is-glob-2.0.1.tgz?dl=https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" + resolved "https://neo.jfrog.io/neo/api/npm/npm/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" dependencies: is-extglob "^1.0.0" @@ -4789,13 +4521,13 @@ is-installed-globally@0.1.0: is-number@^2.1.0: version "2.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/is-number/-/is-number-2.1.0.tgz?dl=https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" + resolved "https://neo.jfrog.io/neo/api/npm/npm/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" dependencies: kind-of "^3.0.2" is-number@^3.0.0: version "3.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/is-number/-/is-number-3.0.0.tgz?dl=https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" + resolved "https://neo.jfrog.io/neo/api/npm/npm/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" dependencies: kind-of "^3.0.2" @@ -4815,45 +4547,45 @@ is-odd@^2.0.0: is-path-cwd@^1.0.0: version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/is-path-cwd/-/is-path-cwd-1.0.0.tgz?dl=https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" + resolved "https://neo.jfrog.io/neo/api/npm/npm/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" is-path-in-cwd@^1.0.0: version "1.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz?dl=https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz#5ac48b345ef675339bd6c7a48a912110b241cf52" + resolved "https://neo.jfrog.io/neo/api/npm/npm/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz#5ac48b345ef675339bd6c7a48a912110b241cf52" dependencies: is-path-inside "^1.0.0" is-path-inside@^1.0.0: version "1.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/is-path-inside/-/is-path-inside-1.0.1.tgz?dl=https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" + resolved "https://neo.jfrog.io/neo/api/npm/npm/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" dependencies: path-is-inside "^1.0.1" is-plain-obj@^1.0.0: version "1.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/is-plain-obj/-/is-plain-obj-1.1.0.tgz?dl=https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" + resolved "https://neo.jfrog.io/neo/api/npm/npm/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: version "2.0.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/is-plain-object/-/is-plain-object-2.0.4.tgz?dl=https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" + resolved "https://neo.jfrog.io/neo/api/npm/npm/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" dependencies: isobject "^3.0.1" is-posix-bracket@^0.1.0: version "0.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz?dl=https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" + resolved "https://neo.jfrog.io/neo/api/npm/npm/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" is-primitive@^2.0.0: version "2.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/is-primitive/-/is-primitive-2.0.0.tgz?dl=https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" + resolved "https://neo.jfrog.io/neo/api/npm/npm/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" is-promise@^2.1.0: version "2.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/is-promise/-/is-promise-2.1.0.tgz?dl=https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" + resolved "https://neo.jfrog.io/neo/api/npm/npm/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" is-regex@^1.0.4: version "1.0.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/is-regex/-/is-regex-1.0.4.tgz?dl=https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" + resolved "https://neo.jfrog.io/neo/api/npm/npm/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" dependencies: has "^1.0.1" @@ -4863,25 +4595,25 @@ is-regexp@^1.0.0: is-resolvable@^1.0.0: version "1.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/is-resolvable/-/is-resolvable-1.1.0.tgz?dl=https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" + resolved "https://neo.jfrog.io/neo/api/npm/npm/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" is-stream@^1.0.1, is-stream@^1.1.0: version "1.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/is-stream/-/is-stream-1.1.0.tgz?dl=https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" + resolved "https://neo.jfrog.io/neo/api/npm/npm/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" is-svg@^2.0.0: version "2.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/is-svg/-/is-svg-2.1.0.tgz?dl=https://registry.npmjs.org/is-svg/-/is-svg-2.1.0.tgz#cf61090da0d9efbcab8722deba6f032208dbb0e9" + resolved "https://neo.jfrog.io/neo/api/npm/npm/is-svg/-/is-svg-2.1.0.tgz#cf61090da0d9efbcab8722deba6f032208dbb0e9" dependencies: html-comment-regex "^1.1.0" is-symbol@^1.0.1: version "1.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/is-symbol/-/is-symbol-1.0.1.tgz?dl=https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" + resolved "https://neo.jfrog.io/neo/api/npm/npm/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" is-typedarray@~1.0.0: version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/is-typedarray/-/is-typedarray-1.0.0.tgz?dl=https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" + resolved "https://neo.jfrog.io/neo/api/npm/npm/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" is-utf8@^0.2.0: version "0.2.1" @@ -4901,15 +4633,15 @@ isarray@0.0.1: isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/isarray/-/isarray-1.0.0.tgz?dl=https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + resolved "https://neo.jfrog.io/neo/api/npm/npm/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" isarray@2.0.1: version "2.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/isarray/-/isarray-2.0.1.tgz?dl=https://registry.npmjs.org/isarray/-/isarray-2.0.1.tgz#a37d94ed9cda2d59865c9f76fe596ee1f338741e" + resolved "https://neo.jfrog.io/neo/api/npm/npm/isarray/-/isarray-2.0.1.tgz#a37d94ed9cda2d59865c9f76fe596ee1f338741e" isexe@^2.0.0: version "2.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/isexe/-/isexe-2.0.0.tgz?dl=https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + resolved "https://neo.jfrog.io/neo/api/npm/npm/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" isnumeric@^0.2.0: version "0.2.0" @@ -4917,44 +4649,28 @@ isnumeric@^0.2.0: isobject@^2.0.0: version "2.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/isobject/-/isobject-2.1.0.tgz?dl=https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" + resolved "https://neo.jfrog.io/neo/api/npm/npm/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" dependencies: isarray "1.0.0" isobject@^3.0.0, isobject@^3.0.1: version "3.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/isobject/-/isobject-3.0.1.tgz?dl=https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" + resolved "https://neo.jfrog.io/neo/api/npm/npm/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" isomorphic-fetch@2.2.1, isomorphic-fetch@^2.1.1, isomorphic-fetch@^2.2.1: version "2.2.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz?dl=https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" + resolved "https://neo.jfrog.io/neo/api/npm/npm/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" dependencies: node-fetch "^1.0.1" whatwg-fetch ">=0.10.0" isstream@~0.1.2: version "0.1.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/isstream/-/isstream-0.1.2.tgz?dl=https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" - -istanbul-api@^1.1.1: - version "1.1.14" - resolved "https://neo.jfrog.io/neo/api/npm/npm/istanbul-api/-/istanbul-api-1.1.14.tgz#25bc5701f7c680c0ffff913de46e3619a3a6e680" - dependencies: - async "^2.1.4" - fileset "^2.0.2" - istanbul-lib-coverage "^1.1.1" - istanbul-lib-hook "^1.0.7" - istanbul-lib-instrument "^1.8.0" - istanbul-lib-report "^1.1.1" - istanbul-lib-source-maps "^1.2.1" - istanbul-reports "^1.1.2" - js-yaml "^3.7.0" - mkdirp "^0.5.1" - once "^1.4.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" istanbul-api@^1.3.1: version "1.3.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/istanbul-api/-/istanbul-api-1.3.1.tgz?dl=https://registry.npmjs.org/istanbul-api/-/istanbul-api-1.3.1.tgz#4c3b05d18c0016d1022e079b98dc82c40f488954" + resolved "https://neo.jfrog.io/neo/api/npm/npm/istanbul-api/-/istanbul-api-1.3.1.tgz#4c3b05d18c0016d1022e079b98dc82c40f488954" dependencies: async "^2.1.4" compare-versions "^3.1.0" @@ -4969,29 +4685,19 @@ istanbul-api@^1.3.1: mkdirp "^0.5.1" once "^1.4.0" -istanbul-lib-coverage@^1.0.1, istanbul-lib-coverage@^1.1.1: - version "1.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da" - istanbul-lib-coverage@^1.2.0: version "1.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/istanbul-lib-coverage/-/istanbul-lib-coverage-1.2.0.tgz?dl=https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-1.2.0.tgz#f7d8f2e42b97e37fe796114cb0f9d68b5e3a4341" - -istanbul-lib-hook@^1.0.7: - version "1.0.7" - resolved "https://neo.jfrog.io/neo/api/npm/npm/istanbul-lib-hook/-/istanbul-lib-hook-1.0.7.tgz#dd6607f03076578fe7d6f2a630cf143b49bacddc" - dependencies: - append-transform "^0.4.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/istanbul-lib-coverage/-/istanbul-lib-coverage-1.2.0.tgz#f7d8f2e42b97e37fe796114cb0f9d68b5e3a4341" istanbul-lib-hook@^1.2.0: version "1.2.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/istanbul-lib-hook/-/istanbul-lib-hook-1.2.1.tgz?dl=https://registry.npmjs.org/istanbul-lib-hook/-/istanbul-lib-hook-1.2.1.tgz#f614ec45287b2a8fc4f07f5660af787575601805" + resolved "https://neo.jfrog.io/neo/api/npm/npm/istanbul-lib-hook/-/istanbul-lib-hook-1.2.1.tgz#f614ec45287b2a8fc4f07f5660af787575601805" dependencies: append-transform "^1.0.0" istanbul-lib-instrument@^1.10.1: version "1.10.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/istanbul-lib-instrument/-/istanbul-lib-instrument-1.10.1.tgz?dl=https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-1.10.1.tgz#724b4b6caceba8692d3f1f9d0727e279c401af7b" + resolved "https://neo.jfrog.io/neo/api/npm/npm/istanbul-lib-instrument/-/istanbul-lib-instrument-1.10.1.tgz#724b4b6caceba8692d3f1f9d0727e279c401af7b" dependencies: babel-generator "^6.18.0" babel-template "^6.16.0" @@ -5001,49 +4707,18 @@ istanbul-lib-instrument@^1.10.1: istanbul-lib-coverage "^1.2.0" semver "^5.3.0" -istanbul-lib-instrument@^1.4.2, istanbul-lib-instrument@^1.7.5, istanbul-lib-instrument@^1.8.0: - version "1.8.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/istanbul-lib-instrument/-/istanbul-lib-instrument-1.8.0.tgz#66f6c9421cc9ec4704f76f2db084ba9078a2b532" - dependencies: - babel-generator "^6.18.0" - babel-template "^6.16.0" - babel-traverse "^6.18.0" - babel-types "^6.18.0" - babylon "^6.18.0" - istanbul-lib-coverage "^1.1.1" - semver "^5.3.0" - -istanbul-lib-report@^1.1.1: - version "1.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#f0e55f56655ffa34222080b7a0cd4760e1405fc9" - dependencies: - istanbul-lib-coverage "^1.1.1" - mkdirp "^0.5.1" - path-parse "^1.0.5" - supports-color "^3.1.2" - istanbul-lib-report@^1.1.4: version "1.1.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/istanbul-lib-report/-/istanbul-lib-report-1.1.4.tgz?dl=https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-1.1.4.tgz#e886cdf505c4ebbd8e099e4396a90d0a28e2acb5" + resolved "https://neo.jfrog.io/neo/api/npm/npm/istanbul-lib-report/-/istanbul-lib-report-1.1.4.tgz#e886cdf505c4ebbd8e099e4396a90d0a28e2acb5" dependencies: istanbul-lib-coverage "^1.2.0" mkdirp "^0.5.1" path-parse "^1.0.5" supports-color "^3.1.2" -istanbul-lib-source-maps@^1.1.0, istanbul-lib-source-maps@^1.2.1: - version "1.2.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.1.tgz#a6fe1acba8ce08eebc638e572e294d267008aa0c" - dependencies: - debug "^2.6.3" - istanbul-lib-coverage "^1.1.1" - mkdirp "^0.5.1" - rimraf "^2.6.1" - source-map "^0.5.3" - istanbul-lib-source-maps@^1.2.4: version "1.2.5" - resolved "https://neo.jfrog.io/neo/api/npm/npm/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.5.tgz?dl=https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.5.tgz#ffe6be4e7ab86d3603e4290d54990b14506fc9b1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.5.tgz#ffe6be4e7ab86d3603e4290d54990b14506fc9b1" dependencies: debug "^3.1.0" istanbul-lib-coverage "^1.2.0" @@ -5051,67 +4726,21 @@ istanbul-lib-source-maps@^1.2.4: rimraf "^2.6.1" source-map "^0.5.3" -istanbul-reports@^1.1.2: - version "1.1.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/istanbul-reports/-/istanbul-reports-1.1.2.tgz#0fb2e3f6aa9922bd3ce45d05d8ab4d5e8e07bd4f" - dependencies: - handlebars "^4.0.3" - istanbul-reports@^1.3.0: version "1.3.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/istanbul-reports/-/istanbul-reports-1.3.0.tgz?dl=https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-1.3.0.tgz#2f322e81e1d9520767597dca3c20a0cce89a3554" + resolved "https://neo.jfrog.io/neo/api/npm/npm/istanbul-reports/-/istanbul-reports-1.3.0.tgz#2f322e81e1d9520767597dca3c20a0cce89a3554" dependencies: handlebars "^4.0.3" -jest-changed-files@^21.2.0: - version "21.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-changed-files/-/jest-changed-files-21.2.0.tgz#5dbeecad42f5d88b482334902ce1cba6d9798d29" - dependencies: - throat "^4.0.0" - jest-changed-files@^23.0.1: version "23.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-changed-files/-/jest-changed-files-23.0.1.tgz?dl=https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-23.0.1.tgz#f79572d0720844ea5df84c2a448e862c2254f60c" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-changed-files/-/jest-changed-files-23.0.1.tgz#f79572d0720844ea5df84c2a448e862c2254f60c" dependencies: throat "^4.0.0" -jest-cli@^21.0.1: - version "21.2.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-cli/-/jest-cli-21.2.1.tgz#9c528b6629d651911138d228bdb033c157ec8c00" - dependencies: - ansi-escapes "^3.0.0" - chalk "^2.0.1" - glob "^7.1.2" - graceful-fs "^4.1.11" - is-ci "^1.0.10" - istanbul-api "^1.1.1" - istanbul-lib-coverage "^1.0.1" - istanbul-lib-instrument "^1.4.2" - istanbul-lib-source-maps "^1.1.0" - jest-changed-files "^21.2.0" - jest-config "^21.2.1" - jest-environment-jsdom "^21.2.1" - jest-haste-map "^21.2.0" - jest-message-util "^21.2.1" - jest-regex-util "^21.2.0" - jest-resolve-dependencies "^21.2.0" - jest-runner "^21.2.1" - jest-runtime "^21.2.1" - jest-snapshot "^21.2.1" - jest-util "^21.2.1" - micromatch "^2.3.11" - node-notifier "^5.0.2" - pify "^3.0.0" - slash "^1.0.0" - string-length "^2.0.0" - strip-ansi "^4.0.0" - which "^1.2.12" - worker-farm "^1.3.1" - yargs "^9.0.0" - jest-cli@^23.1.0: version "23.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-cli/-/jest-cli-23.1.0.tgz?dl=https://registry.npmjs.org/jest-cli/-/jest-cli-23.1.0.tgz#eb8bdd4ce0d15250892e31ad9b69bc99d2a8f6bf" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-cli/-/jest-cli-23.1.0.tgz#eb8bdd4ce0d15250892e31ad9b69bc99d2a8f6bf" dependencies: ansi-escapes "^3.0.0" chalk "^2.0.1" @@ -5149,25 +4778,9 @@ jest-cli@^23.1.0: which "^1.2.12" yargs "^11.0.0" -jest-config@^21.2.1: - version "21.2.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-config/-/jest-config-21.2.1.tgz#c7586c79ead0bcc1f38c401e55f964f13bf2a480" - dependencies: - chalk "^2.0.1" - glob "^7.1.1" - jest-environment-jsdom "^21.2.1" - jest-environment-node "^21.2.1" - jest-get-type "^21.2.0" - jest-jasmine2 "^21.2.1" - jest-regex-util "^21.2.0" - jest-resolve "^21.2.0" - jest-util "^21.2.1" - jest-validate "^21.2.1" - pretty-format "^21.2.1" - jest-config@^23.1.0: version "23.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-config/-/jest-config-23.1.0.tgz?dl=https://registry.npmjs.org/jest-config/-/jest-config-23.1.0.tgz#708ca0f431d356ee424fb4895d3308006bdd8241" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-config/-/jest-config-23.1.0.tgz#708ca0f431d356ee424fb4895d3308006bdd8241" dependencies: babel-core "^6.0.0" babel-jest "^23.0.1" @@ -5183,18 +4796,9 @@ jest-config@^23.1.0: jest-validate "^23.0.1" pretty-format "^23.0.1" -jest-diff@^21.2.1: - version "21.2.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-diff/-/jest-diff-21.2.1.tgz#46cccb6cab2d02ce98bc314011764bb95b065b4f" - dependencies: - chalk "^2.0.1" - diff "^3.2.0" - jest-get-type "^21.2.0" - pretty-format "^21.2.1" - jest-diff@^22.4.3: version "22.4.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-diff/-/jest-diff-22.4.3.tgz?dl=https://registry.npmjs.org/jest-diff/-/jest-diff-22.4.3.tgz#e18cc3feff0aeef159d02310f2686d4065378030" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-diff/-/jest-diff-22.4.3.tgz#e18cc3feff0aeef159d02310f2686d4065378030" dependencies: chalk "^2.0.1" diff "^3.2.0" @@ -5203,26 +4807,22 @@ jest-diff@^22.4.3: jest-diff@^23.0.1: version "23.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-diff/-/jest-diff-23.0.1.tgz?dl=https://registry.npmjs.org/jest-diff/-/jest-diff-23.0.1.tgz#3d49137cee12c320a4b4d2b4a6fa6e82d491a16a" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-diff/-/jest-diff-23.0.1.tgz#3d49137cee12c320a4b4d2b4a6fa6e82d491a16a" dependencies: chalk "^2.0.1" diff "^3.2.0" jest-get-type "^22.1.0" pretty-format "^23.0.1" -jest-docblock@^21.2.0: - version "21.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-docblock/-/jest-docblock-21.2.0.tgz#51529c3b30d5fd159da60c27ceedc195faf8d414" - jest-docblock@^23.0.1: version "23.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-docblock/-/jest-docblock-23.0.1.tgz?dl=https://registry.npmjs.org/jest-docblock/-/jest-docblock-23.0.1.tgz#deddd18333be5dc2415260a04ef3fce9276b5725" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-docblock/-/jest-docblock-23.0.1.tgz#deddd18333be5dc2415260a04ef3fce9276b5725" dependencies: detect-newline "^2.1.0" jest-dom@^1.0.0: version "1.3.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-dom/-/jest-dom-1.3.1.tgz?dl=https://registry.npmjs.org/jest-dom/-/jest-dom-1.3.1.tgz#4eba15d54059182ee0d3682a9fff0d957ad874c7" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-dom/-/jest-dom-1.3.1.tgz#4eba15d54059182ee0d3682a9fff0d957ad874c7" dependencies: chalk "^2.4.1" css "^2.2.3" @@ -5233,37 +4833,22 @@ jest-dom@^1.0.0: jest-each@^23.1.0: version "23.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-each/-/jest-each-23.1.0.tgz?dl=https://registry.npmjs.org/jest-each/-/jest-each-23.1.0.tgz#16146b592c354867a5ae5e13cdf15c6c65b696c6" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-each/-/jest-each-23.1.0.tgz#16146b592c354867a5ae5e13cdf15c6c65b696c6" dependencies: chalk "^2.0.1" pretty-format "^23.0.1" -jest-environment-jsdom@^21.2.1: - version "21.2.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-environment-jsdom/-/jest-environment-jsdom-21.2.1.tgz#38d9980c8259b2a608ec232deee6289a60d9d5b4" - dependencies: - jest-mock "^21.2.0" - jest-util "^21.2.1" - jsdom "^9.12.0" - jest-environment-jsdom@^23.1.0: version "23.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-environment-jsdom/-/jest-environment-jsdom-23.1.0.tgz?dl=https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-23.1.0.tgz#85929914e23bed3577dac9755f4106d0697c479c" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-environment-jsdom/-/jest-environment-jsdom-23.1.0.tgz#85929914e23bed3577dac9755f4106d0697c479c" dependencies: jest-mock "^23.1.0" jest-util "^23.1.0" jsdom "^11.5.1" -jest-environment-node@^21.2.1: - version "21.2.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-environment-node/-/jest-environment-node-21.2.1.tgz#98c67df5663c7fbe20f6e792ac2272c740d3b8c8" - dependencies: - jest-mock "^21.2.0" - jest-util "^21.2.1" - jest-environment-node@^23.1.0: version "23.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-environment-node/-/jest-environment-node-23.1.0.tgz?dl=https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-23.1.0.tgz#452c0bf949cfcbbacda1e1762eeed70bc784c7d5" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-environment-node/-/jest-environment-node-23.1.0.tgz#452c0bf949cfcbbacda1e1762eeed70bc784c7d5" dependencies: jest-mock "^23.1.0" jest-util "^23.1.0" @@ -5274,22 +4859,11 @@ jest-get-type@^21.2.0: jest-get-type@^22.1.0, jest-get-type@^22.4.3: version "22.4.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-get-type/-/jest-get-type-22.4.3.tgz?dl=https://registry.npmjs.org/jest-get-type/-/jest-get-type-22.4.3.tgz#e3a8504d8479342dd4420236b322869f18900ce4" - -jest-haste-map@^21.2.0: - version "21.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-haste-map/-/jest-haste-map-21.2.0.tgz#1363f0a8bb4338f24f001806571eff7a4b2ff3d8" - dependencies: - fb-watchman "^2.0.0" - graceful-fs "^4.1.11" - jest-docblock "^21.2.0" - micromatch "^2.3.11" - sane "^2.0.0" - worker-farm "^1.3.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-get-type/-/jest-get-type-22.4.3.tgz#e3a8504d8479342dd4420236b322869f18900ce4" jest-haste-map@^23.1.0: version "23.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-haste-map/-/jest-haste-map-23.1.0.tgz?dl=https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-23.1.0.tgz#18e6c7d5a8d27136f91b7d9852f85de0c7074c49" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-haste-map/-/jest-haste-map-23.1.0.tgz#18e6c7d5a8d27136f91b7d9852f85de0c7074c49" dependencies: fb-watchman "^2.0.0" graceful-fs "^4.1.11" @@ -5299,22 +4873,9 @@ jest-haste-map@^23.1.0: micromatch "^2.3.11" sane "^2.0.0" -jest-jasmine2@^21.2.1: - version "21.2.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-jasmine2/-/jest-jasmine2-21.2.1.tgz#9cc6fc108accfa97efebce10c4308548a4ea7592" - dependencies: - chalk "^2.0.1" - expect "^21.2.1" - graceful-fs "^4.1.11" - jest-diff "^21.2.1" - jest-matcher-utils "^21.2.1" - jest-message-util "^21.2.1" - jest-snapshot "^21.2.1" - p-cancelable "^0.3.0" - jest-jasmine2@^23.1.0: version "23.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-jasmine2/-/jest-jasmine2-23.1.0.tgz?dl=https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-23.1.0.tgz#4afab31729b654ddcd2b074add849396f13b30b8" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-jasmine2/-/jest-jasmine2-23.1.0.tgz#4afab31729b654ddcd2b074add849396f13b30b8" dependencies: chalk "^2.0.1" co "^4.6.0" @@ -5330,21 +4891,13 @@ jest-jasmine2@^23.1.0: jest-leak-detector@^23.0.1: version "23.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-leak-detector/-/jest-leak-detector-23.0.1.tgz?dl=https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-23.0.1.tgz#9dba07505ac3495c39d3ec09ac1e564599e861a0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-leak-detector/-/jest-leak-detector-23.0.1.tgz#9dba07505ac3495c39d3ec09ac1e564599e861a0" dependencies: pretty-format "^23.0.1" -jest-matcher-utils@^21.2.1: - version "21.2.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-matcher-utils/-/jest-matcher-utils-21.2.1.tgz#72c826eaba41a093ac2b4565f865eb8475de0f64" - dependencies: - chalk "^2.0.1" - jest-get-type "^21.2.0" - pretty-format "^21.2.1" - jest-matcher-utils@^22.4.3: version "22.4.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-matcher-utils/-/jest-matcher-utils-22.4.3.tgz?dl=https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-22.4.3.tgz#4632fe428ebc73ebc194d3c7b65d37b161f710ff" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-matcher-utils/-/jest-matcher-utils-22.4.3.tgz#4632fe428ebc73ebc194d3c7b65d37b161f710ff" dependencies: chalk "^2.0.1" jest-get-type "^22.4.3" @@ -5352,23 +4905,15 @@ jest-matcher-utils@^22.4.3: jest-matcher-utils@^23.0.1: version "23.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-matcher-utils/-/jest-matcher-utils-23.0.1.tgz?dl=https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-23.0.1.tgz#0c6c0daedf9833c2a7f36236069efecb4c3f6e5f" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-matcher-utils/-/jest-matcher-utils-23.0.1.tgz#0c6c0daedf9833c2a7f36236069efecb4c3f6e5f" dependencies: chalk "^2.0.1" jest-get-type "^22.1.0" pretty-format "^23.0.1" -jest-message-util@^21.2.1: - version "21.2.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-message-util/-/jest-message-util-21.2.1.tgz#bfe5d4692c84c827d1dcf41823795558f0a1acbe" - dependencies: - chalk "^2.0.1" - micromatch "^2.3.11" - slash "^1.0.0" - jest-message-util@^23.1.0: version "23.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-message-util/-/jest-message-util-23.1.0.tgz?dl=https://registry.npmjs.org/jest-message-util/-/jest-message-util-23.1.0.tgz#9a809ba487ecac5ce511d4e698ee3b5ee2461ea9" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-message-util/-/jest-message-util-23.1.0.tgz#9a809ba487ecac5ce511d4e698ee3b5ee2461ea9" dependencies: "@babel/code-frame" "^7.0.0-beta.35" chalk "^2.0.1" @@ -5376,69 +4921,32 @@ jest-message-util@^23.1.0: slash "^1.0.0" stack-utils "^1.0.1" -jest-mock@^21.2.0: - version "21.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-mock/-/jest-mock-21.2.0.tgz#7eb0770e7317968165f61ea2a7281131534b3c0f" - jest-mock@^23.1.0: version "23.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-mock/-/jest-mock-23.1.0.tgz?dl=https://registry.npmjs.org/jest-mock/-/jest-mock-23.1.0.tgz#a381c31b121ab1f60c462a2dadb7b86dcccac487" - -jest-regex-util@^21.2.0: - version "21.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-regex-util/-/jest-regex-util-21.2.0.tgz#1b1e33e63143babc3e0f2e6c9b5ba1eb34b2d530" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-mock/-/jest-mock-23.1.0.tgz#a381c31b121ab1f60c462a2dadb7b86dcccac487" jest-regex-util@^23.0.0: version "23.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-regex-util/-/jest-regex-util-23.0.0.tgz?dl=https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-23.0.0.tgz#dd5c1fde0c46f4371314cf10f7a751a23f4e8f76" - -jest-resolve-dependencies@^21.2.0: - version "21.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-resolve-dependencies/-/jest-resolve-dependencies-21.2.0.tgz#9e231e371e1a736a1ad4e4b9a843bc72bfe03d09" - dependencies: - jest-regex-util "^21.2.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-regex-util/-/jest-regex-util-23.0.0.tgz#dd5c1fde0c46f4371314cf10f7a751a23f4e8f76" jest-resolve-dependencies@^23.0.1: version "23.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-resolve-dependencies/-/jest-resolve-dependencies-23.0.1.tgz?dl=https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-23.0.1.tgz#d01a10ddad9152c4cecdf5eac2b88571c4b6a64d" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-resolve-dependencies/-/jest-resolve-dependencies-23.0.1.tgz#d01a10ddad9152c4cecdf5eac2b88571c4b6a64d" dependencies: jest-regex-util "^23.0.0" jest-snapshot "^23.0.1" -jest-resolve@^21.2.0: - version "21.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-resolve/-/jest-resolve-21.2.0.tgz#068913ad2ba6a20218e5fd32471f3874005de3a6" - dependencies: - browser-resolve "^1.11.2" - chalk "^2.0.1" - is-builtin-module "^1.0.0" - jest-resolve@^23.1.0: version "23.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-resolve/-/jest-resolve-23.1.0.tgz?dl=https://registry.npmjs.org/jest-resolve/-/jest-resolve-23.1.0.tgz#b9e316eecebd6f00bc50a3960d1527bae65792d2" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-resolve/-/jest-resolve-23.1.0.tgz#b9e316eecebd6f00bc50a3960d1527bae65792d2" dependencies: browser-resolve "^1.11.2" chalk "^2.0.1" realpath-native "^1.0.0" -jest-runner@^21.2.1: - version "21.2.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-runner/-/jest-runner-21.2.1.tgz#194732e3e518bfb3d7cbfc0fd5871246c7e1a467" - dependencies: - jest-config "^21.2.1" - jest-docblock "^21.2.0" - jest-haste-map "^21.2.0" - jest-jasmine2 "^21.2.1" - jest-message-util "^21.2.1" - jest-runtime "^21.2.1" - jest-util "^21.2.1" - pify "^3.0.0" - throat "^4.0.0" - worker-farm "^1.3.1" - jest-runner@^23.1.0: version "23.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-runner/-/jest-runner-23.1.0.tgz?dl=https://registry.npmjs.org/jest-runner/-/jest-runner-23.1.0.tgz#fa20a933fff731a5432b3561e7f6426594fa29b5" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-runner/-/jest-runner-23.1.0.tgz#fa20a933fff731a5432b3561e7f6426594fa29b5" dependencies: exit "^0.1.2" graceful-fs "^4.1.11" @@ -5454,31 +4962,9 @@ jest-runner@^23.1.0: source-map-support "^0.5.6" throat "^4.0.0" -jest-runtime@^21.2.1: - version "21.2.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-runtime/-/jest-runtime-21.2.1.tgz#99dce15309c670442eee2ebe1ff53a3cbdbbb73e" - dependencies: - babel-core "^6.0.0" - babel-jest "^21.2.0" - babel-plugin-istanbul "^4.0.0" - chalk "^2.0.1" - convert-source-map "^1.4.0" - graceful-fs "^4.1.11" - jest-config "^21.2.1" - jest-haste-map "^21.2.0" - jest-regex-util "^21.2.0" - jest-resolve "^21.2.0" - jest-util "^21.2.1" - json-stable-stringify "^1.0.1" - micromatch "^2.3.11" - slash "^1.0.0" - strip-bom "3.0.0" - write-file-atomic "^2.1.0" - yargs "^9.0.0" - jest-runtime@^23.1.0: version "23.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-runtime/-/jest-runtime-23.1.0.tgz?dl=https://registry.npmjs.org/jest-runtime/-/jest-runtime-23.1.0.tgz#b4ae0e87259ecacfd4a884b639db07cf4dd620af" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-runtime/-/jest-runtime-23.1.0.tgz#b4ae0e87259ecacfd4a884b639db07cf4dd620af" dependencies: babel-core "^6.0.0" babel-plugin-istanbul "^4.1.6" @@ -5504,45 +4990,22 @@ jest-runtime@^23.1.0: jest-serializer@^23.0.1: version "23.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-serializer/-/jest-serializer-23.0.1.tgz?dl=https://registry.npmjs.org/jest-serializer/-/jest-serializer-23.0.1.tgz#a3776aeb311e90fe83fab9e533e85102bd164165" - -jest-snapshot@^21.2.1: - version "21.2.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-snapshot/-/jest-snapshot-21.2.1.tgz#29e49f16202416e47343e757e5eff948c07fd7b0" - dependencies: - chalk "^2.0.1" - jest-diff "^21.2.1" - jest-matcher-utils "^21.2.1" - mkdirp "^0.5.1" - natural-compare "^1.4.0" - pretty-format "^21.2.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-serializer/-/jest-serializer-23.0.1.tgz#a3776aeb311e90fe83fab9e533e85102bd164165" jest-snapshot@^23.0.1: version "23.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-snapshot/-/jest-snapshot-23.0.1.tgz?dl=https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-23.0.1.tgz#6674fa19b9eb69a99cabecd415bddc42d6af3e7e" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-snapshot/-/jest-snapshot-23.0.1.tgz#6674fa19b9eb69a99cabecd415bddc42d6af3e7e" dependencies: chalk "^2.0.1" - jest-diff "^23.0.1" - jest-matcher-utils "^23.0.1" - mkdirp "^0.5.1" - natural-compare "^1.4.0" - pretty-format "^23.0.1" - -jest-util@^21.2.1: - version "21.2.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-util/-/jest-util-21.2.1.tgz#a274b2f726b0897494d694a6c3d6a61ab819bb78" - dependencies: - callsites "^2.0.0" - chalk "^2.0.1" - graceful-fs "^4.1.11" - jest-message-util "^21.2.1" - jest-mock "^21.2.0" - jest-validate "^21.2.1" + jest-diff "^23.0.1" + jest-matcher-utils "^23.0.1" mkdirp "^0.5.1" + natural-compare "^1.4.0" + pretty-format "^23.0.1" jest-util@^23.1.0: version "23.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-util/-/jest-util-23.1.0.tgz?dl=https://registry.npmjs.org/jest-util/-/jest-util-23.1.0.tgz#c0251baf34644c6dd2fea78a962f4263ac55772d" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-util/-/jest-util-23.1.0.tgz#c0251baf34644c6dd2fea78a962f4263ac55772d" dependencies: callsites "^2.0.0" chalk "^2.0.1" @@ -5553,7 +5016,7 @@ jest-util@^23.1.0: slash "^1.0.0" source-map "^0.6.0" -jest-validate@^21.1.0, jest-validate@^21.2.1: +jest-validate@^21.1.0: version "21.2.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-validate/-/jest-validate-21.2.1.tgz#cc0cbca653cd54937ba4f2a111796774530dd3c7" dependencies: @@ -5564,7 +5027,7 @@ jest-validate@^21.1.0, jest-validate@^21.2.1: jest-validate@^23.0.1: version "23.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-validate/-/jest-validate-23.0.1.tgz?dl=https://registry.npmjs.org/jest-validate/-/jest-validate-23.0.1.tgz#cd9f01a89d26bb885f12a8667715e9c865a5754f" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-validate/-/jest-validate-23.0.1.tgz#cd9f01a89d26bb885f12a8667715e9c865a5754f" dependencies: chalk "^2.0.1" jest-get-type "^22.1.0" @@ -5573,7 +5036,7 @@ jest-validate@^23.0.1: jest-watcher@^23.1.0: version "23.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-watcher/-/jest-watcher-23.1.0.tgz?dl=https://registry.npmjs.org/jest-watcher/-/jest-watcher-23.1.0.tgz#a8d5842e38d9fb4afff823df6abb42a58ae6cdbd" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-watcher/-/jest-watcher-23.1.0.tgz#a8d5842e38d9fb4afff823df6abb42a58ae6cdbd" dependencies: ansi-escapes "^3.0.0" chalk "^2.0.1" @@ -5581,42 +5044,28 @@ jest-watcher@^23.1.0: jest-worker@^23.0.1: version "23.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-worker/-/jest-worker-23.0.1.tgz?dl=https://registry.npmjs.org/jest-worker/-/jest-worker-23.0.1.tgz#9e649dd963ff4046026f91c4017f039a6aa4a7bc" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jest-worker/-/jest-worker-23.0.1.tgz#9e649dd963ff4046026f91c4017f039a6aa4a7bc" dependencies: merge-stream "^1.0.1" -jest@^23.1.0: - version "23.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jest/-/jest-23.1.0.tgz?dl=https://registry.npmjs.org/jest/-/jest-23.1.0.tgz#bbb7f893100a11a742dd8bd0d047a54b0968ad1a" - dependencies: - import-local "^1.0.0" - jest-cli "^23.1.0" - js-base64@^2.1.9: version "2.4.5" - resolved "https://neo.jfrog.io/neo/api/npm/npm/js-base64/-/js-base64-2.4.5.tgz?dl=https://registry.npmjs.org/js-base64/-/js-base64-2.4.5.tgz#e293cd3c7c82f070d700fc7a1ca0a2e69f101f92" + resolved "https://neo.jfrog.io/neo/api/npm/npm/js-base64/-/js-base64-2.4.5.tgz#e293cd3c7c82f070d700fc7a1ca0a2e69f101f92" js-tokens@^3.0.0, js-tokens@^3.0.2: version "3.0.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/js-tokens/-/js-tokens-3.0.2.tgz?dl=https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" - -js-yaml@^3.4.3, js-yaml@^3.9.1: - version "3.11.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/js-yaml/-/js-yaml-3.11.0.tgz?dl=https://registry.npmjs.org/js-yaml/-/js-yaml-3.11.0.tgz#597c1a8bd57152f26d622ce4117851a51f5ebaef" - dependencies: - argparse "^1.0.7" - esprima "^4.0.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" -js-yaml@^3.7.0: - version "3.10.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" +js-yaml@^3.4.3, js-yaml@^3.7.0, js-yaml@^3.9.1: + version "3.12.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/js-yaml/-/js-yaml-3.12.0.tgz#eaed656ec8344f10f527c6bfa1b6e2244de167d1" dependencies: argparse "^1.0.7" esprima "^4.0.0" js-yaml@~3.7.0: version "3.7.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/js-yaml/-/js-yaml-3.7.0.tgz?dl=https://registry.npmjs.org/js-yaml/-/js-yaml-3.7.0.tgz#5c967ddd837a9bfdca5f2de84253abe8a1c03b80" + resolved "https://neo.jfrog.io/neo/api/npm/npm/js-yaml/-/js-yaml-3.7.0.tgz#5c967ddd837a9bfdca5f2de84253abe8a1c03b80" dependencies: argparse "^1.0.7" esprima "^2.6.0" @@ -5629,11 +5078,11 @@ js2xmlparser@^3.0.0: jsbn@~0.1.0: version "0.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jsbn/-/jsbn-0.1.1.tgz?dl=https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" jsdom@^11.5.1: version "11.11.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jsdom/-/jsdom-11.11.0.tgz?dl=https://registry.npmjs.org/jsdom/-/jsdom-11.11.0.tgz#df486efad41aee96c59ad7a190e2449c7eb1110e" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jsdom/-/jsdom-11.11.0.tgz#df486efad41aee96c59ad7a190e2449c7eb1110e" dependencies: abab "^1.0.4" acorn "^5.3.0" @@ -5662,37 +5111,13 @@ jsdom@^11.5.1: ws "^4.0.0" xml-name-validator "^3.0.0" -jsdom@^9.12.0: - version "9.12.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" - dependencies: - abab "^1.0.3" - acorn "^4.0.4" - acorn-globals "^3.1.0" - array-equal "^1.0.0" - content-type-parser "^1.0.1" - cssom ">= 0.3.2 < 0.4.0" - cssstyle ">= 0.2.37 < 0.3.0" - escodegen "^1.6.1" - html-encoding-sniffer "^1.0.1" - nwmatcher ">= 1.3.9 < 2.0.0" - parse5 "^1.5.1" - request "^2.79.0" - sax "^1.2.1" - symbol-tree "^3.2.1" - tough-cookie "^2.3.2" - webidl-conversions "^4.0.0" - whatwg-encoding "^1.0.1" - whatwg-url "^4.3.0" - xml-name-validator "^2.0.1" - jsesc@^1.3.0: version "1.3.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jsesc/-/jsesc-1.3.0.tgz?dl=https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" jsesc@~0.5.0: version "0.5.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jsesc/-/jsesc-0.5.0.tgz?dl=https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" json-loader@^0.5.4, json-loader@^0.5.7: version "0.5.7" @@ -5700,25 +5125,29 @@ json-loader@^0.5.4, json-loader@^0.5.7: json-schema-traverse@^0.3.0: version "0.3.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz?dl=https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" + resolved "https://neo.jfrog.io/neo/api/npm/npm/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" + +json-schema-traverse@^0.4.1: + version "0.4.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" json-schema@0.2.3: version "0.2.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/json-schema/-/json-schema-0.2.3.tgz?dl=https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" + resolved "https://neo.jfrog.io/neo/api/npm/npm/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" json-stable-stringify-without-jsonify@^1.0.1: version "1.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz?dl=https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" + resolved "https://neo.jfrog.io/neo/api/npm/npm/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" json-stable-stringify@^1.0.1: version "1.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz?dl=https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" + resolved "https://neo.jfrog.io/neo/api/npm/npm/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" dependencies: jsonify "~0.0.0" json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.1: version "5.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz?dl=https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" + resolved "https://neo.jfrog.io/neo/api/npm/npm/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" json3@^3.3.2: version "3.3.2" @@ -5726,7 +5155,7 @@ json3@^3.3.2: json5@^0.5.0, json5@^0.5.1: version "0.5.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/json5/-/json5-0.5.1.tgz?dl=https://registry.npmjs.org/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" + resolved "https://neo.jfrog.io/neo/api/npm/npm/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" jsonfile@^3.0.0: version "3.0.1" @@ -5740,11 +5169,11 @@ jsonic@^0.3.0: jsonify@~0.0.0: version "0.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jsonify/-/jsonify-0.0.0.tgz?dl=https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" jsprim@^1.2.2: version "1.4.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jsprim/-/jsprim-1.4.1.tgz?dl=https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" dependencies: assert-plus "1.0.0" extsprintf "1.3.0" @@ -5753,7 +5182,7 @@ jsprim@^1.2.2: jsx-ast-utils@^2.0.1: version "2.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/jsx-ast-utils/-/jsx-ast-utils-2.0.1.tgz?dl=https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-2.0.1.tgz#e801b1b39985e20fffc87b40e3748080e2dcac7f" + resolved "https://neo.jfrog.io/neo/api/npm/npm/jsx-ast-utils/-/jsx-ast-utils-2.0.1.tgz#e801b1b39985e20fffc87b40e3748080e2dcac7f" dependencies: array-includes "^3.0.3" @@ -5763,13 +5192,13 @@ killable@^1.0.0: kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: version "3.2.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/kind-of/-/kind-of-3.2.2.tgz?dl=https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" + resolved "https://neo.jfrog.io/neo/api/npm/npm/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" dependencies: is-buffer "^1.1.5" kind-of@^4.0.0: version "4.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/kind-of/-/kind-of-4.0.0.tgz?dl=https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" + resolved "https://neo.jfrog.io/neo/api/npm/npm/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" dependencies: is-buffer "^1.1.5" @@ -5783,21 +5212,21 @@ kind-of@^6.0.0, kind-of@^6.0.2: lazy-ass@1.6.0: version "1.6.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/lazy-ass/-/lazy-ass-1.6.0.tgz?dl=https://registry.npmjs.org/lazy-ass/-/lazy-ass-1.6.0.tgz#7999655e8646c17f089fdd187d150d3324d54513" + resolved "https://neo.jfrog.io/neo/api/npm/npm/lazy-ass/-/lazy-ass-1.6.0.tgz#7999655e8646c17f089fdd187d150d3324d54513" lazy-cache@^1.0.3: version "1.0.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/lazy-cache/-/lazy-cache-1.0.4.tgz?dl=https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" + resolved "https://neo.jfrog.io/neo/api/npm/npm/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" lcid@^1.0.0: version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/lcid/-/lcid-1.0.0.tgz?dl=https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" + resolved "https://neo.jfrog.io/neo/api/npm/npm/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" dependencies: invert-kv "^1.0.0" left-pad@^1.2.0: version "1.3.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/left-pad/-/left-pad-1.3.0.tgz?dl=https://registry.npmjs.org/left-pad/-/left-pad-1.3.0.tgz#5b8a3a7765dfe001261dde915589e782f8c94d1e" + resolved "https://neo.jfrog.io/neo/api/npm/npm/left-pad/-/left-pad-1.3.0.tgz#5b8a3a7765dfe001261dde915589e782f8c94d1e" leven@^2.1.0: version "2.1.0" @@ -5805,7 +5234,7 @@ leven@^2.1.0: levn@^0.3.0, levn@~0.3.0: version "0.3.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/levn/-/levn-0.3.0.tgz?dl=https://registry.npmjs.org/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" + resolved "https://neo.jfrog.io/neo/api/npm/npm/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" dependencies: prelude-ls "~1.1.2" type-check "~0.3.2" @@ -5889,7 +5318,7 @@ load-json-file@^1.0.0: load-json-file@^2.0.0: version "2.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/load-json-file/-/load-json-file-2.0.0.tgz?dl=https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" + resolved "https://neo.jfrog.io/neo/api/npm/npm/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" dependencies: graceful-fs "^4.1.2" parse-json "^2.2.0" @@ -5898,7 +5327,7 @@ load-json-file@^2.0.0: loader-runner@^2.3.0: version "2.3.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/loader-runner/-/loader-runner-2.3.0.tgz?dl=https://registry.npmjs.org/loader-runner/-/loader-runner-2.3.0.tgz#f482aea82d543e07921700d5a46ef26fdac6b8a2" + resolved "https://neo.jfrog.io/neo/api/npm/npm/loader-runner/-/loader-runner-2.3.0.tgz#f482aea82d543e07921700d5a46ef26fdac6b8a2" loader-utils@^0.2.16: version "0.2.17" @@ -5911,7 +5340,7 @@ loader-utils@^0.2.16: loader-utils@^1.0.2, loader-utils@^1.1.0: version "1.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/loader-utils/-/loader-utils-1.1.0.tgz?dl=https://registry.npmjs.org/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd" + resolved "https://neo.jfrog.io/neo/api/npm/npm/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd" dependencies: big.js "^3.1.3" emojis-list "^2.0.0" @@ -5919,14 +5348,14 @@ loader-utils@^1.0.2, loader-utils@^1.1.0: locate-path@^2.0.0: version "2.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/locate-path/-/locate-path-2.0.0.tgz?dl=https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" + resolved "https://neo.jfrog.io/neo/api/npm/npm/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" dependencies: p-locate "^2.0.0" path-exists "^3.0.0" lodash-es@^4.17.5, lodash-es@^4.2.1: version "4.17.10" - resolved "https://neo.jfrog.io/neo/api/npm/npm/lodash-es/-/lodash-es-4.17.10.tgz?dl=https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.10.tgz#62cd7104cdf5dd87f235a837f0ede0e8e5117e05" + resolved "https://neo.jfrog.io/neo/api/npm/npm/lodash-es/-/lodash-es-4.17.10.tgz#62cd7104cdf5dd87f235a837f0ede0e8e5117e05" lodash._getnative@^3.0.0: version "3.9.1" @@ -5938,7 +5367,7 @@ lodash._reinterpolate@~3.0.0: lodash.camelcase@^4.3.0: version "4.3.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz?dl=https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" + resolved "https://neo.jfrog.io/neo/api/npm/npm/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" lodash.curry@^4.0.1: version "4.1.1" @@ -5964,7 +5393,7 @@ lodash.isplainobject@^4.0.6: lodash.memoize@^4.1.2: version "4.1.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/lodash.memoize/-/lodash.memoize-4.1.2.tgz?dl=https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" + resolved "https://neo.jfrog.io/neo/api/npm/npm/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" lodash.merge@^4.6.0: version "4.6.1" @@ -5976,7 +5405,7 @@ lodash.once@^4.1.1: lodash.sortby@^4.7.0: version "4.7.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/lodash.sortby/-/lodash.sortby-4.7.0.tgz?dl=https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" + resolved "https://neo.jfrog.io/neo/api/npm/npm/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" lodash.template@^4.2.4: version "4.4.0" @@ -5997,19 +5426,15 @@ lodash.unescape@4.0.1: lodash.uniq@^4.5.0: version "4.5.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/lodash.uniq/-/lodash.uniq-4.5.0.tgz?dl=https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" + resolved "https://neo.jfrog.io/neo/api/npm/npm/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" -lodash@4.17.4, lodash@^4.17.3: +lodash@4.17.4: version "4.17.4" resolved "https://neo.jfrog.io/neo/api/npm/npm/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" -lodash@^4.13.1, lodash@^4.14.0, lodash@^4.15.0, lodash@^4.17.10, lodash@^4.17.4, lodash@^4.17.5, lodash@^4.2.0, lodash@^4.2.1, lodash@^4.3.0: +lodash@^4.13.1, lodash@^4.14.0, lodash@^4.15.0, lodash@^4.17.10, lodash@^4.17.2, lodash@^4.17.3, lodash@^4.17.4, lodash@^4.17.5, lodash@^4.2.0, lodash@^4.2.1, lodash@^4.3.0: version "4.17.10" - resolved "https://neo.jfrog.io/neo/api/npm/npm/lodash/-/lodash-4.17.10.tgz?dl=https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7" - -lodash@^4.17.2: - version "4.17.5" - resolved "https://neo.jfrog.io/neo/api/npm/npm/lodash/-/lodash-4.17.5.tgz#99a92d65c0272debe8c96b6057bc8fbfa3bed511" + resolved "https://neo.jfrog.io/neo/api/npm/npm/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7" log-symbols@2.2.0, log-symbols@^2.0.0: version "2.2.0" @@ -6043,15 +5468,15 @@ loglevel@^1.4.1: long@~3: version "3.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/long/-/long-3.2.0.tgz?dl=https://registry.npmjs.org/long/-/long-3.2.0.tgz#d821b7138ca1cb581c172990ef14db200b5c474b" + resolved "https://neo.jfrog.io/neo/api/npm/npm/long/-/long-3.2.0.tgz#d821b7138ca1cb581c172990ef14db200b5c474b" longest@^1.0.1: version "1.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/longest/-/longest-1.0.1.tgz?dl=https://registry.npmjs.org/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" + resolved "https://neo.jfrog.io/neo/api/npm/npm/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.3.1: version "1.3.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/loose-envify/-/loose-envify-1.3.1.tgz?dl=https://registry.npmjs.org/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" + resolved "https://neo.jfrog.io/neo/api/npm/npm/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" dependencies: js-tokens "^3.0.0" @@ -6066,29 +5491,22 @@ lower-case@^1.1.1: version "1.1.4" resolved "https://neo.jfrog.io/neo/api/npm/npm/lower-case/-/lower-case-1.1.4.tgz#9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac" -lru-cache@^4.0.1: +lru-cache@^4.0.1, lru-cache@^4.1.1: version "4.1.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/lru-cache/-/lru-cache-4.1.3.tgz?dl=https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.3.tgz#a1175cf3496dfc8436c156c334b4955992bce69c" - dependencies: - pseudomap "^1.0.2" - yallist "^2.1.2" - -lru-cache@^4.1.1: - version "4.1.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/lru-cache/-/lru-cache-4.1.2.tgz#45234b2e6e2f2b33da125624c4664929a0224c3f" + resolved "https://neo.jfrog.io/neo/api/npm/npm/lru-cache/-/lru-cache-4.1.3.tgz#a1175cf3496dfc8436c156c334b4955992bce69c" dependencies: pseudomap "^1.0.2" yallist "^2.1.2" make-dir@^1.0.0: - version "1.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/make-dir/-/make-dir-1.2.0.tgz#6d6a49eead4aae296c53bbf3a1a008bd6c89469b" + version "1.3.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/make-dir/-/make-dir-1.3.0.tgz#79c1033b80515bd6d24ec9933e860ca75ee27f0c" dependencies: pify "^3.0.0" make-plural@^4.1.1: - version "4.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/make-plural/-/make-plural-4.1.1.tgz#5658ce9d337487077daed221854c8cef9dd75749" + version "4.2.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/make-plural/-/make-plural-4.2.0.tgz#03edfc34a2aee630a57e209369ef26ee3ca69590" optionalDependencies: minimist "^1.2.0" @@ -6118,32 +5536,32 @@ map-visit@^1.0.0: math-expression-evaluator@^1.2.14: version "1.2.17" - resolved "https://neo.jfrog.io/neo/api/npm/npm/math-expression-evaluator/-/math-expression-evaluator-1.2.17.tgz?dl=https://registry.npmjs.org/math-expression-evaluator/-/math-expression-evaluator-1.2.17.tgz#de819fdbcd84dccd8fae59c6aeb79615b9d266ac" + resolved "https://neo.jfrog.io/neo/api/npm/npm/math-expression-evaluator/-/math-expression-evaluator-1.2.17.tgz#de819fdbcd84dccd8fae59c6aeb79615b9d266ac" math-random@^1.0.1: version "1.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/math-random/-/math-random-1.0.1.tgz?dl=https://registry.npmjs.org/math-random/-/math-random-1.0.1.tgz#8b3aac588b8a66e4975e3cdea67f7bb329601fac" + resolved "https://neo.jfrog.io/neo/api/npm/npm/math-random/-/math-random-1.0.1.tgz#8b3aac588b8a66e4975e3cdea67f7bb329601fac" md5.js@^1.3.4: version "1.3.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/md5.js/-/md5.js-1.3.4.tgz?dl=https://registry.npmjs.org/md5.js/-/md5.js-1.3.4.tgz#e9bdbde94a20a5ac18b04340fc5764d5b09d901d" + resolved "https://neo.jfrog.io/neo/api/npm/npm/md5.js/-/md5.js-1.3.4.tgz#e9bdbde94a20a5ac18b04340fc5764d5b09d901d" dependencies: hash-base "^3.0.0" inherits "^2.0.1" media-typer@0.3.0: version "0.3.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/media-typer/-/media-typer-0.3.0.tgz?dl=https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" + resolved "https://neo.jfrog.io/neo/api/npm/npm/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" mem@^1.1.0: version "1.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/mem/-/mem-1.1.0.tgz?dl=https://registry.npmjs.org/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" + resolved "https://neo.jfrog.io/neo/api/npm/npm/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" dependencies: mimic-fn "^1.0.0" memory-fs@^0.4.0, memory-fs@~0.4.1: version "0.4.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/memory-fs/-/memory-fs-0.4.1.tgz?dl=https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" + resolved "https://neo.jfrog.io/neo/api/npm/npm/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" dependencies: errno "^0.1.3" readable-stream "^2.0.1" @@ -6165,11 +5583,11 @@ meow@^3.3.0: merge-descriptors@1.0.1: version "1.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/merge-descriptors/-/merge-descriptors-1.0.1.tgz?dl=https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" + resolved "https://neo.jfrog.io/neo/api/npm/npm/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" merge-stream@^1.0.1: version "1.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/merge-stream/-/merge-stream-1.0.1.tgz?dl=https://registry.npmjs.org/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1" dependencies: readable-stream "^2.0.1" @@ -6193,9 +5611,9 @@ messageformat@^1.0.2: methods@~1.1.2: version "1.1.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/methods/-/methods-1.1.2.tgz?dl=https://registry.npmjs.org/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" + resolved "https://neo.jfrog.io/neo/api/npm/npm/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" -micromatch@^2.1.5, micromatch@^2.3.11: +micromatch@^2.3.11: version "2.3.11" resolved "https://neo.jfrog.io/neo/api/npm/npm/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" dependencies: @@ -6213,27 +5631,9 @@ micromatch@^2.1.5, micromatch@^2.3.11: parse-glob "^3.0.4" regex-cache "^0.4.2" -micromatch@^3.1.4: - version "3.1.9" - resolved "https://neo.jfrog.io/neo/api/npm/npm/micromatch/-/micromatch-3.1.9.tgz#15dc93175ae39e52e93087847096effc73efcf89" - dependencies: - arr-diff "^4.0.0" - array-unique "^0.3.2" - braces "^2.3.1" - define-property "^2.0.2" - extend-shallow "^3.0.2" - extglob "^2.0.4" - fragment-cache "^0.2.1" - kind-of "^6.0.2" - nanomatch "^1.2.9" - object.pick "^1.3.0" - regex-not "^1.0.0" - snapdragon "^0.8.1" - to-regex "^3.0.1" - -micromatch@^3.1.8: +micromatch@^3.1.4, micromatch@^3.1.8: version "3.1.10" - resolved "https://neo.jfrog.io/neo/api/npm/npm/micromatch/-/micromatch-3.1.10.tgz?dl=https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" + resolved "https://neo.jfrog.io/neo/api/npm/npm/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" dependencies: arr-diff "^4.0.0" array-unique "^0.3.2" @@ -6251,38 +5651,32 @@ micromatch@^3.1.8: miller-rabin@^4.0.0: version "4.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/miller-rabin/-/miller-rabin-4.0.1.tgz?dl=https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" + resolved "https://neo.jfrog.io/neo/api/npm/npm/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" dependencies: bn.js "^4.0.0" brorand "^1.0.1" -"mime-db@>= 1.33.0 < 2", mime-db@~1.33.0: - version "1.33.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/mime-db/-/mime-db-1.33.0.tgz?dl=https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz#a3492050a5cb9b63450541e39d9788d2272783db" +"mime-db@>= 1.34.0 < 2": + version "1.34.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/mime-db/-/mime-db-1.34.0.tgz#452d0ecff5c30346a6dc1e64b1eaee0d3719ff9a" -mime-db@~1.30.0: - version "1.30.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" +mime-db@~1.33.0: + version "1.33.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/mime-db/-/mime-db-1.33.0.tgz#a3492050a5cb9b63450541e39d9788d2272783db" -mime-types@^2.1.12, mime-types@~2.1.18, mime-types@~2.1.7: +mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.18, mime-types@~2.1.7: version "2.1.18" - resolved "https://neo.jfrog.io/neo/api/npm/npm/mime-types/-/mime-types-2.1.18.tgz?dl=https://registry.npmjs.org/mime-types/-/mime-types-2.1.18.tgz#6f323f60a83d11146f831ff11fd66e2fe5503bb8" + resolved "https://neo.jfrog.io/neo/api/npm/npm/mime-types/-/mime-types-2.1.18.tgz#6f323f60a83d11146f831ff11fd66e2fe5503bb8" dependencies: mime-db "~1.33.0" -mime-types@~2.1.17: - version "2.1.17" - resolved "https://neo.jfrog.io/neo/api/npm/npm/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" - dependencies: - mime-db "~1.30.0" - mime@1.3.x: version "1.3.6" resolved "https://neo.jfrog.io/neo/api/npm/npm/mime/-/mime-1.3.6.tgz#591d84d3653a6b0b4a3b9df8de5aa8108e72e5e0" mime@1.4.1: version "1.4.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/mime/-/mime-1.4.1.tgz?dl=https://registry.npmjs.org/mime/-/mime-1.4.1.tgz#121f9ebc49e3766f311a76e1fa1c8003c4b03aa6" + resolved "https://neo.jfrog.io/neo/api/npm/npm/mime/-/mime-1.4.1.tgz#121f9ebc49e3766f311a76e1fa1c8003c4b03aa6" mime@^1.5.0: version "1.6.0" @@ -6290,44 +5684,44 @@ mime@^1.5.0: mimic-fn@^1.0.0: version "1.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/mimic-fn/-/mimic-fn-1.2.0.tgz?dl=https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" + resolved "https://neo.jfrog.io/neo/api/npm/npm/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" minimalistic-assert@^1.0.0: version "1.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz?dl=https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" + resolved "https://neo.jfrog.io/neo/api/npm/npm/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: version "1.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz?dl=https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" + resolved "https://neo.jfrog.io/neo/api/npm/npm/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: version "3.0.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/minimatch/-/minimatch-3.0.4.tgz?dl=https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" + resolved "https://neo.jfrog.io/neo/api/npm/npm/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" dependencies: brace-expansion "^1.1.7" minimist@0.0.8: version "0.0.8" - resolved "https://neo.jfrog.io/neo/api/npm/npm/minimist/-/minimist-0.0.8.tgz?dl=https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" + resolved "https://neo.jfrog.io/neo/api/npm/npm/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" minimist@1.2.0, minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0: version "1.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/minimist/-/minimist-1.2.0.tgz?dl=https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" + resolved "https://neo.jfrog.io/neo/api/npm/npm/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" minimist@~0.0.1: version "0.0.10" resolved "https://neo.jfrog.io/neo/api/npm/npm/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" -minipass@^2.2.1, minipass@^2.2.4: +minipass@^2.2.1, minipass@^2.3.3: version "2.3.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/minipass/-/minipass-2.3.3.tgz?dl=https://registry.npmjs.org/minipass/-/minipass-2.3.3.tgz#a7dcc8b7b833f5d368759cce544dccb55f50f233" + resolved "https://neo.jfrog.io/neo/api/npm/npm/minipass/-/minipass-2.3.3.tgz#a7dcc8b7b833f5d368759cce544dccb55f50f233" dependencies: safe-buffer "^5.1.2" yallist "^3.0.0" minizlib@^1.1.0: version "1.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/minizlib/-/minizlib-1.1.0.tgz?dl=https://registry.npmjs.org/minizlib/-/minizlib-1.1.0.tgz#11e13658ce46bc3a70a267aac58359d1e0c29ceb" + resolved "https://neo.jfrog.io/neo/api/npm/npm/minizlib/-/minizlib-1.1.0.tgz#11e13658ce46bc3a70a267aac58359d1e0c29ceb" dependencies: minipass "^2.2.1" @@ -6361,13 +5755,13 @@ mkdirp@0.5.0: mkdirp@0.5.x, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0, mkdirp@~0.5.1: version "0.5.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/mkdirp/-/mkdirp-0.5.1.tgz?dl=https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" + resolved "https://neo.jfrog.io/neo/api/npm/npm/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" dependencies: minimist "0.0.8" most@^1.7.3: version "1.7.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/most/-/most-1.7.3.tgz?dl=https://registry.npmjs.org/most/-/most-1.7.3.tgz#406c31a66d73aa16957816fdf96965e27df84f1a" + resolved "https://neo.jfrog.io/neo/api/npm/npm/most/-/most-1.7.3.tgz#406c31a66d73aa16957816fdf96965e27df84f1a" dependencies: "@most/multicast" "^1.2.5" "@most/prelude" "^1.4.0" @@ -6386,7 +5780,7 @@ move-concurrently@^1.0.1: ms@2.0.0: version "2.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/ms/-/ms-2.0.0.tgz?dl=https://registry.npmjs.org/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + resolved "https://neo.jfrog.io/neo/api/npm/npm/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" multicast-dns-service-types@^1.1.0: version "1.1.0" @@ -6401,15 +5795,15 @@ multicast-dns@^6.0.1: mutationobserver-shim@^0.3.2: version "0.3.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/mutationobserver-shim/-/mutationobserver-shim-0.3.2.tgz?dl=https://registry.npmjs.org/mutationobserver-shim/-/mutationobserver-shim-0.3.2.tgz#f4d5dae7a4971a2207914fb5a90ebd514b65acca" + resolved "https://neo.jfrog.io/neo/api/npm/npm/mutationobserver-shim/-/mutationobserver-shim-0.3.2.tgz#f4d5dae7a4971a2207914fb5a90ebd514b65acca" mute-stream@0.0.7: version "0.0.7" - resolved "https://neo.jfrog.io/neo/api/npm/npm/mute-stream/-/mute-stream-0.0.7.tgz?dl=https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" + resolved "https://neo.jfrog.io/neo/api/npm/npm/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" -nan@^2.10.0, nan@^2.3.0, nan@^2.9.2: +nan@^2.10.0, nan@^2.9.2: version "2.10.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/nan/-/nan-2.10.0.tgz?dl=https://registry.npmjs.org/nan/-/nan-2.10.0.tgz#96d0cd610ebd58d4b4de9cc0c6828cda99c7548f" + resolved "https://neo.jfrog.io/neo/api/npm/npm/nan/-/nan-2.10.0.tgz#96d0cd610ebd58d4b4de9cc0c6828cda99c7548f" nanomatch@^1.2.9: version "1.2.9" @@ -6430,13 +5824,7 @@ nanomatch@^1.2.9: natural-compare@^1.4.0: version "1.4.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/natural-compare/-/natural-compare-1.4.0.tgz?dl=https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" - -ncname@1.0.x: - version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/ncname/-/ncname-1.0.0.tgz#5b57ad18b1ca092864ef62b0b1ed8194f383b71c" - dependencies: - xml-char-classes "^1.0.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" ncp@^2.0.0: version "2.0.0" @@ -6444,7 +5832,7 @@ ncp@^2.0.0: needle@^2.2.0: version "2.2.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/needle/-/needle-2.2.1.tgz?dl=https://registry.npmjs.org/needle/-/needle-2.2.1.tgz#b5e325bd3aae8c2678902fa296f729455d1d3a7d" + resolved "https://neo.jfrog.io/neo/api/npm/npm/needle/-/needle-2.2.1.tgz#b5e325bd3aae8c2678902fa296f729455d1d3a7d" dependencies: debug "^2.1.2" iconv-lite "^0.4.4" @@ -6452,26 +5840,26 @@ needle@^2.2.0: negotiator@0.6.1: version "0.6.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/negotiator/-/negotiator-0.6.1.tgz?dl=https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" + resolved "https://neo.jfrog.io/neo/api/npm/npm/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" neo-async@^2.5.0: version "2.5.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/neo-async/-/neo-async-2.5.1.tgz?dl=https://registry.npmjs.org/neo-async/-/neo-async-2.5.1.tgz#acb909e327b1e87ec9ef15f41b8a269512ad41ee" + resolved "https://neo.jfrog.io/neo/api/npm/npm/neo-async/-/neo-async-2.5.1.tgz#acb909e327b1e87ec9ef15f41b8a269512ad41ee" neo4j-driver@^1.6.1: version "1.6.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/neo4j-driver/-/neo4j-driver-1.6.1.tgz?dl=https://registry.npmjs.org/neo4j-driver/-/neo4j-driver-1.6.1.tgz#22a9b383494c15614045a1bc15666b6bb1814b36" + resolved "https://neo.jfrog.io/neo/api/npm/npm/neo4j-driver/-/neo4j-driver-1.6.1.tgz#22a9b383494c15614045a1bc15666b6bb1814b36" dependencies: babel-runtime "^6.18.0" uri-js "^4.2.1" next-tick@1: version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/next-tick/-/next-tick-1.0.0.tgz?dl=https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz#ca86d1fe8828169b0120208e3dc8424b9db8342c" + resolved "https://neo.jfrog.io/neo/api/npm/npm/next-tick/-/next-tick-1.0.0.tgz#ca86d1fe8828169b0120208e3dc8424b9db8342c" nice-try@^1.0.4: version "1.0.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/nice-try/-/nice-try-1.0.4.tgz?dl=https://registry.npmjs.org/nice-try/-/nice-try-1.0.4.tgz#d93962f6c52f2c1558c0fbda6d512819f1efe1c4" + resolved "https://neo.jfrog.io/neo/api/npm/npm/nice-try/-/nice-try-1.0.4.tgz#d93962f6c52f2c1558c0fbda6d512819f1efe1c4" no-case@^2.2.0: version "2.3.2" @@ -6480,8 +5868,8 @@ no-case@^2.2.0: lower-case "^1.1.1" nock@^9.0.14: - version "9.2.6" - resolved "https://neo.jfrog.io/neo/api/npm/npm/nock/-/nock-9.2.6.tgz?dl=https://registry.npmjs.org/nock/-/nock-9.2.6.tgz#496ddb2c32e6d0848cda1b3ea51fbe054d4454d3" + version "9.3.3" + resolved "https://neo.jfrog.io/neo/api/npm/npm/nock/-/nock-9.3.3.tgz#d9f4cd3c011afeadaf5ccf1b243f6e353781cda0" dependencies: chai "^4.1.2" debug "^3.1.0" @@ -6495,14 +5883,14 @@ nock@^9.0.14: node-fetch@^1.0.1: version "1.7.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/node-fetch/-/node-fetch-1.7.3.tgz?dl=https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef" + resolved "https://neo.jfrog.io/neo/api/npm/npm/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef" dependencies: encoding "^0.1.11" is-stream "^1.0.1" -node-forge@0.7.1: - version "0.7.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/node-forge/-/node-forge-0.7.1.tgz#9da611ea08982f4b94206b3beb4cc9665f20c300" +node-forge@0.7.5: + version "0.7.5" + resolved "https://neo.jfrog.io/neo/api/npm/npm/node-forge/-/node-forge-0.7.5.tgz#6c152c345ce11c52f465c2abd957e8639cd674df" node-int64@^0.4.0: version "0.4.0" @@ -6510,7 +5898,7 @@ node-int64@^0.4.0: node-libs-browser@^2.0.0: version "2.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/node-libs-browser/-/node-libs-browser-2.1.0.tgz?dl=https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.1.0.tgz#5f94263d404f6e44767d726901fff05478d600df" + resolved "https://neo.jfrog.io/neo/api/npm/npm/node-libs-browser/-/node-libs-browser-2.1.0.tgz#5f94263d404f6e44767d726901fff05478d600df" dependencies: assert "^1.1.1" browserify-zlib "^0.2.0" @@ -6540,18 +5928,9 @@ node-noop@^1.0.0: version "1.0.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/node-noop/-/node-noop-1.0.0.tgz#47a3e7d80cffaa6458364bd22ed85cab3307be79" -node-notifier@^5.0.2: - version "5.1.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" - dependencies: - growly "^1.3.0" - semver "^5.3.0" - shellwords "^0.1.0" - which "^1.2.12" - node-notifier@^5.2.1: version "5.2.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/node-notifier/-/node-notifier-5.2.1.tgz?dl=https://registry.npmjs.org/node-notifier/-/node-notifier-5.2.1.tgz#fa313dd08f5517db0e2502e5758d664ac69f9dea" + resolved "https://neo.jfrog.io/neo/api/npm/npm/node-notifier/-/node-notifier-5.2.1.tgz#fa313dd08f5517db0e2502e5758d664ac69f9dea" dependencies: growly "^1.3.0" semver "^5.4.1" @@ -6560,7 +5939,7 @@ node-notifier@^5.2.1: node-pre-gyp@0.7.0: version "0.7.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/node-pre-gyp/-/node-pre-gyp-0.7.0.tgz?dl=https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.7.0.tgz#55aeffbaed93b50d0a4657d469198cd80ac9df36" + resolved "https://neo.jfrog.io/neo/api/npm/npm/node-pre-gyp/-/node-pre-gyp-0.7.0.tgz#55aeffbaed93b50d0a4657d469198cd80ac9df36" dependencies: detect-libc "^1.0.2" mkdirp "^0.5.1" @@ -6575,7 +5954,7 @@ node-pre-gyp@0.7.0: node-pre-gyp@^0.10.0: version "0.10.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/node-pre-gyp/-/node-pre-gyp-0.10.0.tgz?dl=https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.10.0.tgz#6e4ef5bb5c5203c6552448828c852c40111aac46" + resolved "https://neo.jfrog.io/neo/api/npm/npm/node-pre-gyp/-/node-pre-gyp-0.10.0.tgz#6e4ef5bb5c5203c6552448828c852c40111aac46" dependencies: detect-libc "^1.0.2" mkdirp "^0.5.1" @@ -6588,25 +5967,9 @@ node-pre-gyp@^0.10.0: semver "^5.3.0" tar "^4" -node-pre-gyp@^0.6.36: - version "0.6.39" - resolved "https://neo.jfrog.io/neo/api/npm/npm/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" - dependencies: - detect-libc "^1.0.2" - hawk "3.1.3" - mkdirp "^0.5.1" - nopt "^4.0.1" - npmlog "^4.0.2" - rc "^1.1.7" - request "2.81.0" - rimraf "^2.6.1" - semver "^5.3.0" - tar "^2.2.1" - tar-pack "^3.4.0" - nopt@^4.0.1: version "4.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/nopt/-/nopt-4.0.1.tgz?dl=https://registry.npmjs.org/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" + resolved "https://neo.jfrog.io/neo/api/npm/npm/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" dependencies: abbrev "1" osenv "^0.1.4" @@ -6619,7 +5982,7 @@ nopt@~3.0.6: normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: version "2.4.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/normalize-package-data/-/normalize-package-data-2.4.0.tgz?dl=https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" + resolved "https://neo.jfrog.io/neo/api/npm/npm/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" dependencies: hosted-git-info "^2.1.4" is-builtin-module "^1.0.0" @@ -6630,19 +5993,19 @@ normalize-path@^1.0.0: version "1.0.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/normalize-path/-/normalize-path-1.0.0.tgz#32d0e472f91ff345701c15a8311018d3b0a90379" -normalize-path@^2.0.0, normalize-path@^2.0.1, normalize-path@^2.1.1: +normalize-path@^2.0.1, normalize-path@^2.1.1: version "2.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/normalize-path/-/normalize-path-2.1.1.tgz?dl=https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" + resolved "https://neo.jfrog.io/neo/api/npm/npm/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" dependencies: remove-trailing-separator "^1.0.1" normalize-range@^0.1.2: version "0.1.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/normalize-range/-/normalize-range-0.1.2.tgz?dl=https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" + resolved "https://neo.jfrog.io/neo/api/npm/npm/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" normalize-url@^1.4.0: version "1.9.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/normalize-url/-/normalize-url-1.9.1.tgz?dl=https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz#2cc0d66b31ea23036458436e3620d85954c66c3c" + resolved "https://neo.jfrog.io/neo/api/npm/npm/normalize-url/-/normalize-url-1.9.1.tgz#2cc0d66b31ea23036458436e3620d85954c66c3c" dependencies: object-assign "^4.0.1" prepend-http "^1.0.0" @@ -6651,11 +6014,11 @@ normalize-url@^1.4.0: npm-bundled@^1.0.1: version "1.0.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/npm-bundled/-/npm-bundled-1.0.3.tgz?dl=https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.0.3.tgz#7e71703d973af3370a9591bafe3a63aca0be2308" + resolved "https://neo.jfrog.io/neo/api/npm/npm/npm-bundled/-/npm-bundled-1.0.3.tgz#7e71703d973af3370a9591bafe3a63aca0be2308" npm-packlist@^1.1.6: version "1.1.10" - resolved "https://neo.jfrog.io/neo/api/npm/npm/npm-packlist/-/npm-packlist-1.1.10.tgz?dl=https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.1.10.tgz#1039db9e985727e464df066f4cf0ab6ef85c398a" + resolved "https://neo.jfrog.io/neo/api/npm/npm/npm-packlist/-/npm-packlist-1.1.10.tgz#1039db9e985727e464df066f4cf0ab6ef85c398a" dependencies: ignore-walk "^3.0.1" npm-bundled "^1.0.1" @@ -6668,7 +6031,7 @@ npm-path@^2.0.2: npm-run-path@^2.0.0: version "2.0.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/npm-run-path/-/npm-run-path-2.0.2.tgz?dl=https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" + resolved "https://neo.jfrog.io/neo/api/npm/npm/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" dependencies: path-key "^2.0.0" @@ -6682,7 +6045,7 @@ npm-which@^3.0.1: npmlog@^4.0.2: version "4.1.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/npmlog/-/npmlog-4.1.2.tgz?dl=https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" + resolved "https://neo.jfrog.io/neo/api/npm/npm/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" dependencies: are-we-there-yet "~1.1.2" console-control-strings "~1.1.0" @@ -6697,19 +6060,15 @@ nth-check@~1.0.1: num2fraction@^1.2.2: version "1.2.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/num2fraction/-/num2fraction-1.2.2.tgz?dl=https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" + resolved "https://neo.jfrog.io/neo/api/npm/npm/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" number-is-nan@^1.0.0: version "1.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/number-is-nan/-/number-is-nan-1.0.1.tgz?dl=https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" - -"nwmatcher@>= 1.3.9 < 2.0.0": - version "1.4.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/nwmatcher/-/nwmatcher-1.4.2.tgz#c5e545ab40d22a56b0326531c4beaed7a888b3ea" + resolved "https://neo.jfrog.io/neo/api/npm/npm/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" nwsapi@^2.0.0: - version "2.0.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/nwsapi/-/nwsapi-2.0.3.tgz?dl=https://registry.npmjs.org/nwsapi/-/nwsapi-2.0.3.tgz#3f4010d6c943f34018d3dfb5f2fbc0de90476959" + version "2.0.4" + resolved "https://neo.jfrog.io/neo/api/npm/npm/nwsapi/-/nwsapi-2.0.4.tgz#dc79040a5f77b97716dc79565fc7fc3ef7d50570" oauth-sign@~0.8.1, oauth-sign@~0.8.2: version "0.8.2" @@ -6717,7 +6076,7 @@ oauth-sign@~0.8.1, oauth-sign@~0.8.2: object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: version "4.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/object-assign/-/object-assign-4.1.1.tgz?dl=https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + resolved "https://neo.jfrog.io/neo/api/npm/npm/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" object-component@0.0.3: version "0.0.3" @@ -6732,8 +6091,8 @@ object-copy@^0.1.0: kind-of "^3.0.3" object-keys@^1.0.8: - version "1.0.11" - resolved "https://neo.jfrog.io/neo/api/npm/npm/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" + version "1.0.12" + resolved "https://neo.jfrog.io/neo/api/npm/npm/object-keys/-/object-keys-1.0.12.tgz#09c53855377575310cca62f55bb334abff7b3ed2" object-visit@^1.0.0: version "1.0.1" @@ -6743,14 +6102,14 @@ object-visit@^1.0.0: object.getownpropertydescriptors@^2.0.3: version "2.0.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz?dl=https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16" + resolved "https://neo.jfrog.io/neo/api/npm/npm/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16" dependencies: define-properties "^1.1.2" es-abstract "^1.5.1" object.omit@^2.0.0: version "2.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/object.omit/-/object.omit-2.0.1.tgz?dl=https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" + resolved "https://neo.jfrog.io/neo/api/npm/npm/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" dependencies: for-own "^0.1.4" is-extendable "^0.1.1" @@ -6767,7 +6126,7 @@ obuf@^1.0.0, obuf@^1.1.1: on-finished@~2.3.0: version "2.3.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/on-finished/-/on-finished-2.3.0.tgz?dl=https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" + resolved "https://neo.jfrog.io/neo/api/npm/npm/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" dependencies: ee-first "1.1.1" @@ -6777,7 +6136,7 @@ on-headers@~1.0.1: once@^1.3.0, once@^1.3.1, once@^1.3.3, once@^1.4.0: version "1.4.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/once/-/once-1.4.0.tgz?dl=https://registry.npmjs.org/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" dependencies: wrappy "1" @@ -6791,17 +6150,17 @@ onetime@^1.0.0: onetime@^2.0.0: version "2.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/onetime/-/onetime-2.0.1.tgz?dl=https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" + resolved "https://neo.jfrog.io/neo/api/npm/npm/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" dependencies: mimic-fn "^1.0.0" opener@^1.4.3: version "1.4.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/opener/-/opener-1.4.3.tgz?dl=https://registry.npmjs.org/opener/-/opener-1.4.3.tgz#5c6da2c5d7e5831e8ffa3964950f8d6674ac90b8" + resolved "https://neo.jfrog.io/neo/api/npm/npm/opener/-/opener-1.4.3.tgz#5c6da2c5d7e5831e8ffa3964950f8d6674ac90b8" opn@^5.1.0: - version "5.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/opn/-/opn-5.2.0.tgz#71fdf934d6827d676cecbea1531f95d354641225" + version "5.3.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/opn/-/opn-5.3.0.tgz#64871565c863875f052cfdf53d3e3cb5adb53b1c" dependencies: is-wsl "^1.1.0" @@ -6825,7 +6184,7 @@ optionator@^0.8.1, optionator@^0.8.2: optjs@~3.2.2: version "3.2.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/optjs/-/optjs-3.2.2.tgz?dl=https://registry.npmjs.org/optjs/-/optjs-3.2.2.tgz#69a6ce89c442a44403141ad2f9b370bd5bb6f4ee" + resolved "https://neo.jfrog.io/neo/api/npm/npm/optjs/-/optjs-3.2.2.tgz#69a6ce89c442a44403141ad2f9b370bd5bb6f4ee" ora@^0.2.3: version "0.2.3" @@ -6837,18 +6196,18 @@ ora@^0.2.3: object-assign "^4.0.1" original@>=0.0.5: - version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/original/-/original-1.0.0.tgz#9147f93fa1696d04be61e01bd50baeaca656bd3b" + version "1.0.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/original/-/original-1.0.1.tgz#b0a53ff42ba997a8c9cd1fb5daaeb42b9d693190" dependencies: - url-parse "1.0.x" + url-parse "~1.4.0" os-browserify@^0.3.0: version "0.3.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/os-browserify/-/os-browserify-0.3.0.tgz?dl=https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" + resolved "https://neo.jfrog.io/neo/api/npm/npm/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" os-homedir@^1.0.0, os-homedir@^1.0.1: version "1.0.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/os-homedir/-/os-homedir-1.0.2.tgz?dl=https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" + resolved "https://neo.jfrog.io/neo/api/npm/npm/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" os-locale@^1.4.0: version "1.4.0" @@ -6858,7 +6217,7 @@ os-locale@^1.4.0: os-locale@^2.0.0: version "2.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/os-locale/-/os-locale-2.1.0.tgz?dl=https://registry.npmjs.org/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" + resolved "https://neo.jfrog.io/neo/api/npm/npm/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" dependencies: execa "^0.7.0" lcid "^1.0.0" @@ -6866,32 +6225,28 @@ os-locale@^2.0.0: os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.1, os-tmpdir@~1.0.2: version "1.0.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/os-tmpdir/-/os-tmpdir-1.0.2.tgz?dl=https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" + resolved "https://neo.jfrog.io/neo/api/npm/npm/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" osenv@^0.1.4: version "0.1.5" - resolved "https://neo.jfrog.io/neo/api/npm/npm/osenv/-/osenv-0.1.5.tgz?dl=https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" + resolved "https://neo.jfrog.io/neo/api/npm/npm/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" dependencies: os-homedir "^1.0.0" os-tmpdir "^1.0.0" -p-cancelable@^0.3.0: - version "0.3.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/p-cancelable/-/p-cancelable-0.3.0.tgz#b9e123800bcebb7ac13a479be195b507b98d30fa" - p-finally@^1.0.0: version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/p-finally/-/p-finally-1.0.0.tgz?dl=https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" + resolved "https://neo.jfrog.io/neo/api/npm/npm/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" p-limit@^1.0.0, p-limit@^1.1.0: - version "1.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/p-limit/-/p-limit-1.2.0.tgz?dl=https://registry.npmjs.org/p-limit/-/p-limit-1.2.0.tgz#0e92b6bedcb59f022c13d0f1949dc82d15909f1c" + version "1.3.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" dependencies: p-try "^1.0.0" p-locate@^2.0.0: version "2.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/p-locate/-/p-locate-2.0.0.tgz?dl=https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" + resolved "https://neo.jfrog.io/neo/api/npm/npm/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" dependencies: p-limit "^1.1.0" @@ -6901,11 +6256,11 @@ p-map@^1.1.1: p-try@^1.0.0: version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/p-try/-/p-try-1.0.0.tgz?dl=https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" + resolved "https://neo.jfrog.io/neo/api/npm/npm/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" pako@~1.0.5: version "1.0.6" - resolved "https://neo.jfrog.io/neo/api/npm/npm/pako/-/pako-1.0.6.tgz?dl=https://registry.npmjs.org/pako/-/pako-1.0.6.tgz#0101211baa70c4bca4a0f63f2206e97b7dfaf258" + resolved "https://neo.jfrog.io/neo/api/npm/npm/pako/-/pako-1.0.6.tgz#0101211baa70c4bca4a0f63f2206e97b7dfaf258" parallel-transform@^1.1.0: version "1.1.0" @@ -6923,7 +6278,7 @@ param-case@2.1.x: parse-asn1@^5.0.0: version "5.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/parse-asn1/-/parse-asn1-5.1.1.tgz?dl=https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.1.tgz#f6bf293818332bd0dab54efb16087724745e6ca8" + resolved "https://neo.jfrog.io/neo/api/npm/npm/parse-asn1/-/parse-asn1-5.1.1.tgz#f6bf293818332bd0dab54efb16087724745e6ca8" dependencies: asn1.js "^4.0.0" browserify-aes "^1.0.0" @@ -6933,7 +6288,7 @@ parse-asn1@^5.0.0: parse-glob@^3.0.4: version "3.0.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/parse-glob/-/parse-glob-3.0.4.tgz?dl=https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" + resolved "https://neo.jfrog.io/neo/api/npm/npm/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" dependencies: glob-base "^0.3.0" is-dotfile "^1.0.0" @@ -6942,7 +6297,7 @@ parse-glob@^3.0.4: parse-json@^2.2.0: version "2.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/parse-json/-/parse-json-2.2.0.tgz?dl=https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" + resolved "https://neo.jfrog.io/neo/api/npm/npm/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" dependencies: error-ex "^1.2.0" @@ -6952,11 +6307,7 @@ parse-key@^0.2.1: parse5@4.0.0: version "4.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/parse5/-/parse5-4.0.0.tgz?dl=https://registry.npmjs.org/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608" - -parse5@^1.5.1: - version "1.5.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" + resolved "https://neo.jfrog.io/neo/api/npm/npm/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608" parseqs@0.0.5: version "0.0.5" @@ -6972,7 +6323,7 @@ parseuri@0.0.5: parseurl@~1.3.2: version "1.3.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/parseurl/-/parseurl-1.3.2.tgz?dl=https://registry.npmjs.org/parseurl/-/parseurl-1.3.2.tgz#fc289d4ed8993119460c156253262cdc8de65bf3" + resolved "https://neo.jfrog.io/neo/api/npm/npm/parseurl/-/parseurl-1.3.2.tgz#fc289d4ed8993119460c156253262cdc8de65bf3" pascalcase@^0.1.1: version "0.1.1" @@ -6980,7 +6331,7 @@ pascalcase@^0.1.1: path-browserify@0.0.0: version "0.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/path-browserify/-/path-browserify-0.0.0.tgz?dl=https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" + resolved "https://neo.jfrog.io/neo/api/npm/npm/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" path-dirname@^1.0.0: version "1.0.2" @@ -6988,33 +6339,33 @@ path-dirname@^1.0.0: path-exists@^2.0.0: version "2.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/path-exists/-/path-exists-2.1.0.tgz?dl=https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" + resolved "https://neo.jfrog.io/neo/api/npm/npm/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" dependencies: pinkie-promise "^2.0.0" path-exists@^3.0.0: version "3.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/path-exists/-/path-exists-3.0.0.tgz?dl=https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" + resolved "https://neo.jfrog.io/neo/api/npm/npm/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: version "1.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/path-is-absolute/-/path-is-absolute-1.0.1.tgz?dl=https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + resolved "https://neo.jfrog.io/neo/api/npm/npm/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" path-is-inside@^1.0.1, path-is-inside@^1.0.2: version "1.0.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/path-is-inside/-/path-is-inside-1.0.2.tgz?dl=https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" + resolved "https://neo.jfrog.io/neo/api/npm/npm/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" path-key@^2.0.0, path-key@^2.0.1: version "2.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/path-key/-/path-key-2.0.1.tgz?dl=https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" + resolved "https://neo.jfrog.io/neo/api/npm/npm/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" path-parse@^1.0.5: version "1.0.5" - resolved "https://neo.jfrog.io/neo/api/npm/npm/path-parse/-/path-parse-1.0.5.tgz?dl=https://registry.npmjs.org/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" path-to-regexp@0.1.7: version "0.1.7" - resolved "https://neo.jfrog.io/neo/api/npm/npm/path-to-regexp/-/path-to-regexp-0.1.7.tgz?dl=https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" + resolved "https://neo.jfrog.io/neo/api/npm/npm/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" path-type@^1.0.0: version "1.1.0" @@ -7026,7 +6377,7 @@ path-type@^1.0.0: path-type@^2.0.0: version "2.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/path-type/-/path-type-2.0.0.tgz?dl=https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" + resolved "https://neo.jfrog.io/neo/api/npm/npm/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" dependencies: pify "^2.0.0" @@ -7038,11 +6389,11 @@ path-type@^3.0.0: pathval@^1.0.0: version "1.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/pathval/-/pathval-1.1.0.tgz?dl=https://registry.npmjs.org/pathval/-/pathval-1.1.0.tgz#b942e6d4bde653005ef6b71361def8727d0645e0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/pathval/-/pathval-1.1.0.tgz#b942e6d4bde653005ef6b71361def8727d0645e0" pbkdf2@^3.0.3: version "3.0.16" - resolved "https://neo.jfrog.io/neo/api/npm/npm/pbkdf2/-/pbkdf2-3.0.16.tgz?dl=https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.16.tgz#7404208ec6b01b62d85bf83853a8064f8d9c2a5c" + resolved "https://neo.jfrog.io/neo/api/npm/npm/pbkdf2/-/pbkdf2-3.0.16.tgz#7404208ec6b01b62d85bf83853a8064f8d9c2a5c" dependencies: create-hash "^1.1.2" create-hmac "^1.1.4" @@ -7056,7 +6407,7 @@ pend@~1.2.0: performance-now@^0.2.0: version "0.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/performance-now/-/performance-now-0.2.0.tgz?dl=https://registry.npmjs.org/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" + resolved "https://neo.jfrog.io/neo/api/npm/npm/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" performance-now@^2.1.0: version "2.1.0" @@ -7064,21 +6415,21 @@ performance-now@^2.1.0: pify@^2.0.0, pify@^2.2.0, pify@^2.3.0: version "2.3.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/pify/-/pify-2.3.0.tgz?dl=https://registry.npmjs.org/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" + resolved "https://neo.jfrog.io/neo/api/npm/npm/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" pify@^3.0.0: version "3.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/pify/-/pify-3.0.0.tgz?dl=https://registry.npmjs.org/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" + resolved "https://neo.jfrog.io/neo/api/npm/npm/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" pinkie-promise@^2.0.0: version "2.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/pinkie-promise/-/pinkie-promise-2.0.1.tgz?dl=https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" + resolved "https://neo.jfrog.io/neo/api/npm/npm/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" dependencies: pinkie "^2.0.0" pinkie@^2.0.0: version "2.0.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/pinkie/-/pinkie-2.0.4.tgz?dl=https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" + resolved "https://neo.jfrog.io/neo/api/npm/npm/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" pixrem@^4.0.0: version "4.0.1" @@ -7090,7 +6441,7 @@ pixrem@^4.0.0: pkg-dir@^1.0.0: version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/pkg-dir/-/pkg-dir-1.0.0.tgz?dl=https://registry.npmjs.org/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" + resolved "https://neo.jfrog.io/neo/api/npm/npm/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" dependencies: find-up "^1.0.0" @@ -7109,11 +6460,11 @@ pleeease-filters@^4.0.0: pluralize@^7.0.0: version "7.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/pluralize/-/pluralize-7.0.0.tgz?dl=https://registry.npmjs.org/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777" + resolved "https://neo.jfrog.io/neo/api/npm/npm/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777" pn@^1.1.0: version "1.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/pn/-/pn-1.1.0.tgz?dl=https://registry.npmjs.org/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb" + resolved "https://neo.jfrog.io/neo/api/npm/npm/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb" portfinder@^1.0.9: version "1.0.13" @@ -7156,7 +6507,7 @@ postcss-attribute-case-insensitive@^2.0.0: postcss-calc@^5.2.0: version "5.3.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-calc/-/postcss-calc-5.3.1.tgz?dl=https://registry.npmjs.org/postcss-calc/-/postcss-calc-5.3.1.tgz#77bae7ca928ad85716e2fda42f261bf7c1d65b5e" + resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-calc/-/postcss-calc-5.3.1.tgz#77bae7ca928ad85716e2fda42f261bf7c1d65b5e" dependencies: postcss "^5.0.2" postcss-message-helpers "^2.0.0" @@ -7215,11 +6566,11 @@ postcss-color-hwb@^3.0.0: reduce-function-call "^1.0.2" postcss-color-rebeccapurple@^3.0.0: - version "3.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-3.0.0.tgz#eebaf03d363b4300b96792bd3081c19ed66513d3" + version "3.1.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-3.1.0.tgz#ce1269ecc2d0d8bf92aab44bd884e633124c33ec" dependencies: - postcss "^6.0.1" - postcss-value-parser "^3.3.0" + postcss "^6.0.22" + postcss-values-parser "^1.5.0" postcss-color-rgb@^2.0.0: version "2.0.0" @@ -7238,7 +6589,7 @@ postcss-color-rgba-fallback@^3.0.0: postcss-colormin@^2.1.8: version "2.2.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-colormin/-/postcss-colormin-2.2.2.tgz?dl=https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-2.2.2.tgz#6631417d5f0e909a3d7ec26b24c8a8d1e4f96e4b" + resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-colormin/-/postcss-colormin-2.2.2.tgz#6631417d5f0e909a3d7ec26b24c8a8d1e4f96e4b" dependencies: colormin "^1.0.5" postcss "^5.0.13" @@ -7246,7 +6597,7 @@ postcss-colormin@^2.1.8: postcss-convert-values@^2.3.4: version "2.6.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-convert-values/-/postcss-convert-values-2.6.1.tgz?dl=https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-2.6.1.tgz#bbd8593c5c1fd2e3d1c322bb925dcae8dae4d62d" + resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-convert-values/-/postcss-convert-values-2.6.1.tgz#bbd8593c5c1fd2e3d1c322bb925dcae8dae4d62d" dependencies: postcss "^5.0.11" postcss-value-parser "^3.1.2" @@ -7309,31 +6660,31 @@ postcss-custom-selectors@^4.0.1: postcss-discard-comments@^2.0.4: version "2.0.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz?dl=https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz#befe89fafd5b3dace5ccce51b76b81514be00e3d" + resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz#befe89fafd5b3dace5ccce51b76b81514be00e3d" dependencies: postcss "^5.0.14" postcss-discard-duplicates@^2.0.1: version "2.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-discard-duplicates/-/postcss-discard-duplicates-2.1.0.tgz?dl=https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-2.1.0.tgz#b9abf27b88ac188158a5eb12abcae20263b91932" + resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-discard-duplicates/-/postcss-discard-duplicates-2.1.0.tgz#b9abf27b88ac188158a5eb12abcae20263b91932" dependencies: postcss "^5.0.4" postcss-discard-empty@^2.0.1: version "2.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz?dl=https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz#d2b4bd9d5ced5ebd8dcade7640c7d7cd7f4f92b5" + resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz#d2b4bd9d5ced5ebd8dcade7640c7d7cd7f4f92b5" dependencies: postcss "^5.0.14" postcss-discard-overridden@^0.1.1: version "0.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz?dl=https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz#8b1eaf554f686fb288cd874c55667b0aa3668d58" + resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz#8b1eaf554f686fb288cd874c55667b0aa3668d58" dependencies: postcss "^5.0.16" postcss-discard-unused@^2.2.1: version "2.2.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz?dl=https://registry.npmjs.org/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz#bce30b2cc591ffc634322b5fb3464b6d934f4433" + resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz#bce30b2cc591ffc634322b5fb3464b6d934f4433" dependencies: postcss "^5.0.14" uniqs "^2.0.0" @@ -7346,7 +6697,7 @@ postcss-extend@^1.0.5: postcss-filter-plugins@^2.0.0: version "2.0.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-filter-plugins/-/postcss-filter-plugins-2.0.3.tgz?dl=https://registry.npmjs.org/postcss-filter-plugins/-/postcss-filter-plugins-2.0.3.tgz#82245fdf82337041645e477114d8e593aa18b8ec" + resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-filter-plugins/-/postcss-filter-plugins-2.0.3.tgz#82245fdf82337041645e477114d8e593aa18b8ec" dependencies: postcss "^5.0.4" @@ -7395,7 +6746,7 @@ postcss-js@^1.0.1: postcss-load-config@^1.2.0: version "1.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-load-config/-/postcss-load-config-1.2.0.tgz?dl=https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-1.2.0.tgz#539e9afc9ddc8620121ebf9d8c3673e0ce50d28a" + resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-load-config/-/postcss-load-config-1.2.0.tgz#539e9afc9ddc8620121ebf9d8c3673e0ce50d28a" dependencies: cosmiconfig "^2.1.0" object-assign "^4.1.0" @@ -7404,21 +6755,21 @@ postcss-load-config@^1.2.0: postcss-load-options@^1.2.0: version "1.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-load-options/-/postcss-load-options-1.2.0.tgz?dl=https://registry.npmjs.org/postcss-load-options/-/postcss-load-options-1.2.0.tgz#b098b1559ddac2df04bc0bb375f99a5cfe2b6d8c" + resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-load-options/-/postcss-load-options-1.2.0.tgz#b098b1559ddac2df04bc0bb375f99a5cfe2b6d8c" dependencies: cosmiconfig "^2.1.0" object-assign "^4.1.0" postcss-load-plugins@^2.3.0: version "2.3.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-load-plugins/-/postcss-load-plugins-2.3.0.tgz?dl=https://registry.npmjs.org/postcss-load-plugins/-/postcss-load-plugins-2.3.0.tgz#745768116599aca2f009fad426b00175049d8d92" + resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-load-plugins/-/postcss-load-plugins-2.3.0.tgz#745768116599aca2f009fad426b00175049d8d92" dependencies: cosmiconfig "^2.1.1" object-assign "^4.1.0" postcss-loader@^2.0.5: version "2.1.5" - resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-loader/-/postcss-loader-2.1.5.tgz?dl=https://registry.npmjs.org/postcss-loader/-/postcss-loader-2.1.5.tgz#3c6336ee641c8f95138172533ae461a83595e788" + resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-loader/-/postcss-loader-2.1.5.tgz#3c6336ee641c8f95138172533ae461a83595e788" dependencies: loader-utils "^1.1.0" postcss "^6.0.0" @@ -7437,7 +6788,7 @@ postcss-media-query-parser@^0.2.3: postcss-merge-idents@^2.1.5: version "2.1.7" - resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz?dl=https://registry.npmjs.org/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz#4c5530313c08e1d5b3bbf3d2bbc747e278eea270" + resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz#4c5530313c08e1d5b3bbf3d2bbc747e278eea270" dependencies: has "^1.0.1" postcss "^5.0.10" @@ -7445,13 +6796,13 @@ postcss-merge-idents@^2.1.5: postcss-merge-longhand@^2.0.1: version "2.0.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-merge-longhand/-/postcss-merge-longhand-2.0.2.tgz?dl=https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-2.0.2.tgz#23d90cd127b0a77994915332739034a1a4f3d658" + resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-merge-longhand/-/postcss-merge-longhand-2.0.2.tgz#23d90cd127b0a77994915332739034a1a4f3d658" dependencies: postcss "^5.0.4" postcss-merge-rules@^2.0.3: version "2.1.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-merge-rules/-/postcss-merge-rules-2.1.2.tgz?dl=https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-2.1.2.tgz#d1df5dfaa7b1acc3be553f0e9e10e87c61b5f721" + resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-merge-rules/-/postcss-merge-rules-2.1.2.tgz#d1df5dfaa7b1acc3be553f0e9e10e87c61b5f721" dependencies: browserslist "^1.5.2" caniuse-api "^1.5.2" @@ -7461,11 +6812,11 @@ postcss-merge-rules@^2.0.3: postcss-message-helpers@^2.0.0: version "2.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz?dl=https://registry.npmjs.org/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz#a4f2f4fab6e4fe002f0aed000478cdf52f9ba60e" + resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz#a4f2f4fab6e4fe002f0aed000478cdf52f9ba60e" postcss-minify-font-values@^1.0.2: version "1.0.5" - resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz?dl=https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz#4b58edb56641eba7c8474ab3526cafd7bbdecb69" + resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz#4b58edb56641eba7c8474ab3526cafd7bbdecb69" dependencies: object-assign "^4.0.1" postcss "^5.0.4" @@ -7473,14 +6824,14 @@ postcss-minify-font-values@^1.0.2: postcss-minify-gradients@^1.0.1: version "1.0.5" - resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz?dl=https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz#5dbda11373703f83cfb4a3ea3881d8d75ff5e6e1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz#5dbda11373703f83cfb4a3ea3881d8d75ff5e6e1" dependencies: postcss "^5.0.12" postcss-value-parser "^3.3.0" postcss-minify-params@^1.0.4: version "1.2.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-minify-params/-/postcss-minify-params-1.2.2.tgz?dl=https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-1.2.2.tgz#ad2ce071373b943b3d930a3fa59a358c28d6f1f3" + resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-minify-params/-/postcss-minify-params-1.2.2.tgz#ad2ce071373b943b3d930a3fa59a358c28d6f1f3" dependencies: alphanum-sort "^1.0.1" postcss "^5.0.2" @@ -7489,7 +6840,7 @@ postcss-minify-params@^1.0.4: postcss-minify-selectors@^2.0.4: version "2.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-minify-selectors/-/postcss-minify-selectors-2.1.1.tgz?dl=https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-2.1.1.tgz#b2c6a98c0072cf91b932d1a496508114311735bf" + resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-minify-selectors/-/postcss-minify-selectors-2.1.1.tgz#b2c6a98c0072cf91b932d1a496508114311735bf" dependencies: alphanum-sort "^1.0.2" has "^1.0.1" @@ -7497,38 +6848,38 @@ postcss-minify-selectors@^2.0.4: postcss-selector-parser "^2.0.0" postcss-mixins@^6.0.1: - version "6.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-mixins/-/postcss-mixins-6.1.1.tgz#d77b9cfeab082d9674770e463757657ff7274d4e" + version "6.2.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-mixins/-/postcss-mixins-6.2.0.tgz#fa9d2c2166b2ae7745956c727ab9dd2de4b96a40" dependencies: globby "^6.1.0" - postcss "^6.0.12" + postcss "^6.0.13" postcss-js "^1.0.1" postcss-simple-vars "^4.1.0" sugarss "^1.0.0" postcss-modules-extract-imports@^1.2.0: version "1.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.2.0.tgz?dl=https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.2.0.tgz#66140ecece38ef06bf0d3e355d69bf59d141ea85" + resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.2.0.tgz#66140ecece38ef06bf0d3e355d69bf59d141ea85" dependencies: postcss "^6.0.1" postcss-modules-local-by-default@^1.2.0: version "1.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz?dl=https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz#f7d80c398c5a393fa7964466bd19500a7d61c069" + resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz#f7d80c398c5a393fa7964466bd19500a7d61c069" dependencies: css-selector-tokenizer "^0.7.0" postcss "^6.0.1" postcss-modules-scope@^1.1.0: version "1.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz?dl=https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz#d6ea64994c79f97b62a72b426fbe6056a194bb90" + resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz#d6ea64994c79f97b62a72b426fbe6056a194bb90" dependencies: css-selector-tokenizer "^0.7.0" postcss "^6.0.1" postcss-modules-values@^1.3.0: version "1.3.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz?dl=https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz#ecffa9d7e192518389f42ad0e83f72aec456ea20" + resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz#ecffa9d7e192518389f42ad0e83f72aec456ea20" dependencies: icss-replace-symbols "^1.1.0" postcss "^6.0.1" @@ -7548,13 +6899,13 @@ postcss-nesting@^4.0.1: postcss-normalize-charset@^1.1.0: version "1.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz?dl=https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz#ef9ee71212d7fe759c78ed162f61ed62b5cb93f1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz#ef9ee71212d7fe759c78ed162f61ed62b5cb93f1" dependencies: postcss "^5.0.5" postcss-normalize-url@^3.0.7: version "3.0.8" - resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz?dl=https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz#108f74b3f2fcdaf891a2ffa3ea4592279fc78222" + resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz#108f74b3f2fcdaf891a2ffa3ea4592279fc78222" dependencies: is-absolute-url "^2.0.0" normalize-url "^1.4.0" @@ -7563,7 +6914,7 @@ postcss-normalize-url@^3.0.7: postcss-ordered-values@^2.1.0: version "2.2.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-ordered-values/-/postcss-ordered-values-2.2.3.tgz?dl=https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-2.2.3.tgz#eec6c2a67b6c412a8db2042e77fe8da43f95c11d" + resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-ordered-values/-/postcss-ordered-values-2.2.3.tgz#eec6c2a67b6c412a8db2042e77fe8da43f95c11d" dependencies: postcss "^5.0.4" postcss-value-parser "^3.0.1" @@ -7598,20 +6949,20 @@ postcss-pseudoelements@^5.0.0: postcss-reduce-idents@^2.2.2: version "2.4.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz?dl=https://registry.npmjs.org/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz#c2c6d20cc958284f6abfbe63f7609bf409059ad3" + resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz#c2c6d20cc958284f6abfbe63f7609bf409059ad3" dependencies: postcss "^5.0.4" postcss-value-parser "^3.0.2" postcss-reduce-initial@^1.0.0: version "1.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-reduce-initial/-/postcss-reduce-initial-1.0.1.tgz?dl=https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-1.0.1.tgz#68f80695f045d08263a879ad240df8dd64f644ea" + resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-reduce-initial/-/postcss-reduce-initial-1.0.1.tgz#68f80695f045d08263a879ad240df8dd64f644ea" dependencies: postcss "^5.0.4" postcss-reduce-transforms@^1.0.3: version "1.0.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz?dl=https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz#ff76f4d8212437b31c298a42d2e1444025771ae1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz#ff76f4d8212437b31c298a42d2e1444025771ae1" dependencies: has "^1.0.1" postcss "^5.0.8" @@ -7653,7 +7004,7 @@ postcss-simple-vars@^4.1.0: postcss-svgo@^2.1.1: version "2.1.6" - resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-svgo/-/postcss-svgo-2.1.6.tgz?dl=https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-2.1.6.tgz#b6df18aa613b666e133f08adb5219c2684ac108d" + resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-svgo/-/postcss-svgo-2.1.6.tgz#b6df18aa613b666e133f08adb5219c2684ac108d" dependencies: is-svg "^2.0.0" postcss "^5.0.14" @@ -7662,7 +7013,7 @@ postcss-svgo@^2.1.1: postcss-unique-selectors@^2.0.2: version "2.0.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz?dl=https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz#981d57d29ddcb33e7b1dfe1fd43b8649f933ca1d" + resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz#981d57d29ddcb33e7b1dfe1fd43b8649f933ca1d" dependencies: alphanum-sort "^1.0.1" postcss "^5.0.4" @@ -7670,11 +7021,19 @@ postcss-unique-selectors@^2.0.2: postcss-value-parser@^3.0.1, postcss-value-parser@^3.0.2, postcss-value-parser@^3.1.1, postcss-value-parser@^3.1.2, postcss-value-parser@^3.2.3, postcss-value-parser@^3.3.0: version "3.3.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz?dl=https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz#87f38f9f18f774a4ab4c8a232f5c5ce8872a9d15" + resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz#87f38f9f18f774a4ab4c8a232f5c5ce8872a9d15" + +postcss-values-parser@^1.5.0: + version "1.5.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-values-parser/-/postcss-values-parser-1.5.0.tgz#5d9fa63e2bcb0179ce48f3235303765eb89f3047" + dependencies: + flatten "^1.0.2" + indexes-of "^1.0.1" + uniq "^1.0.1" postcss-zindex@^2.0.1: version "2.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-zindex/-/postcss-zindex-2.2.0.tgz?dl=https://registry.npmjs.org/postcss-zindex/-/postcss-zindex-2.2.0.tgz#d2109ddc055b91af67fc4cb3b025946639d2af22" + resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss-zindex/-/postcss-zindex-2.2.0.tgz#d2109ddc055b91af67fc4cb3b025946639d2af22" dependencies: has "^1.0.1" postcss "^5.0.4" @@ -7682,37 +7041,21 @@ postcss-zindex@^2.0.1: postcss@^5.0.10, postcss@^5.0.11, postcss@^5.0.12, postcss@^5.0.13, postcss@^5.0.14, postcss@^5.0.16, postcss@^5.0.2, postcss@^5.0.4, postcss@^5.0.5, postcss@^5.0.6, postcss@^5.0.8, postcss@^5.2.16: version "5.2.18" - resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss/-/postcss-5.2.18.tgz?dl=https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz#badfa1497d46244f6390f58b319830d9107853c5" + resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss/-/postcss-5.2.18.tgz#badfa1497d46244f6390f58b319830d9107853c5" dependencies: chalk "^1.1.3" js-base64 "^2.1.9" source-map "^0.5.6" supports-color "^3.2.3" -postcss@^6.0, postcss@^6.0.14, postcss@^6.0.17, postcss@^6.0.18, postcss@^6.0.3, postcss@^6.0.5, postcss@^6.0.6: - version "6.0.19" - resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss/-/postcss-6.0.19.tgz#76a78386f670b9d9494a655bf23ac012effd1555" - dependencies: - chalk "^2.3.1" - source-map "^0.6.1" - supports-color "^5.2.0" - -postcss@^6.0.0, postcss@^6.0.1, postcss@^6.0.11: +postcss@^6.0, postcss@^6.0.0, postcss@^6.0.1, postcss@^6.0.11, postcss@^6.0.13, postcss@^6.0.14, postcss@^6.0.17, postcss@^6.0.18, postcss@^6.0.22, postcss@^6.0.3, postcss@^6.0.5, postcss@^6.0.6, postcss@^6.0.9: version "6.0.22" - resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss/-/postcss-6.0.22.tgz?dl=https://registry.npmjs.org/postcss/-/postcss-6.0.22.tgz#e23b78314905c3b90cbd61702121e7a78848f2a3" + resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss/-/postcss-6.0.22.tgz#e23b78314905c3b90cbd61702121e7a78848f2a3" dependencies: chalk "^2.4.1" source-map "^0.6.1" supports-color "^5.4.0" -postcss@^6.0.12, postcss@^6.0.9: - version "6.0.12" - resolved "https://neo.jfrog.io/neo/api/npm/npm/postcss/-/postcss-6.0.12.tgz#6b0155089d2d212f7bd6a0cecd4c58c007403535" - dependencies: - chalk "^2.1.0" - source-map "^0.5.7" - supports-color "^4.4.0" - precss@^2.0.0: version "2.0.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/precss/-/precss-2.0.0.tgz#7f567e3318e06d44c8fdbf9e58452e8358bf4b71" @@ -7736,15 +7079,15 @@ precss@^2.0.0: prelude-ls@~1.1.2: version "1.1.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/prelude-ls/-/prelude-ls-1.1.2.tgz?dl=https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" + resolved "https://neo.jfrog.io/neo/api/npm/npm/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" prepend-http@^1.0.0: version "1.0.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/prepend-http/-/prepend-http-1.0.4.tgz?dl=https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" + resolved "https://neo.jfrog.io/neo/api/npm/npm/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" preserve@^0.2.0: version "0.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/preserve/-/preserve-0.2.0.tgz?dl=https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" + resolved "https://neo.jfrog.io/neo/api/npm/npm/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" prettier-eslint-cli@^4.3.0: version "4.7.1" @@ -7802,13 +7145,9 @@ prettier-eslint@^8.5.0: typescript "^2.5.1" typescript-eslint-parser "^11.0.0" -prettier@^1.6.0: - version "1.7.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/prettier/-/prettier-1.7.2.tgz#81371e64018aafc69cf1031956c70e029339f54e" - -prettier@^1.7.0: - version "1.11.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/prettier/-/prettier-1.11.1.tgz#61e43fc4cd44e68f2b0dfc2c38cd4bb0fccdcc75" +prettier@^1.6.0, prettier@^1.7.0: + version "1.13.5" + resolved "https://neo.jfrog.io/neo/api/npm/npm/prettier/-/prettier-1.13.5.tgz#7ae2076998c8edce79d63834e9b7b09fead6bfd0" pretty-error@^2.0.2: version "2.1.1" @@ -7831,42 +7170,31 @@ pretty-format@^21.2.1: ansi-regex "^3.0.0" ansi-styles "^3.2.0" -pretty-format@^22.0.3: - version "22.4.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/pretty-format/-/pretty-format-22.4.0.tgz#237b1f7e1c50ed03bc65c03ccc29d7c8bb7beb94" - dependencies: - ansi-regex "^3.0.0" - ansi-styles "^3.2.0" - -pretty-format@^22.4.3: +pretty-format@^22.0.3, pretty-format@^22.4.3: version "22.4.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/pretty-format/-/pretty-format-22.4.3.tgz?dl=https://registry.npmjs.org/pretty-format/-/pretty-format-22.4.3.tgz#f873d780839a9c02e9664c8a082e9ee79eaac16f" + resolved "https://neo.jfrog.io/neo/api/npm/npm/pretty-format/-/pretty-format-22.4.3.tgz#f873d780839a9c02e9664c8a082e9ee79eaac16f" dependencies: ansi-regex "^3.0.0" ansi-styles "^3.2.0" pretty-format@^23.0.1: version "23.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/pretty-format/-/pretty-format-23.0.1.tgz?dl=https://registry.npmjs.org/pretty-format/-/pretty-format-23.0.1.tgz#d61d065268e4c759083bccbca27a01ad7c7601f4" + resolved "https://neo.jfrog.io/neo/api/npm/npm/pretty-format/-/pretty-format-23.0.1.tgz#d61d065268e4c759083bccbca27a01ad7c7601f4" dependencies: ansi-regex "^3.0.0" ansi-styles "^3.2.0" -private@^0.1.6: - version "0.1.7" - resolved "https://neo.jfrog.io/neo/api/npm/npm/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" - -private@^0.1.7, private@^0.1.8, private@~0.1.5: +private@^0.1.6, private@^0.1.8, private@~0.1.5: version "0.1.8" resolved "https://neo.jfrog.io/neo/api/npm/npm/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" process-nextick-args@~2.0.0: version "2.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/process-nextick-args/-/process-nextick-args-2.0.0.tgz?dl=https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" + resolved "https://neo.jfrog.io/neo/api/npm/npm/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" process@^0.11.10: version "0.11.10" - resolved "https://neo.jfrog.io/neo/api/npm/npm/process/-/process-0.11.10.tgz?dl=https://registry.npmjs.org/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" + resolved "https://neo.jfrog.io/neo/api/npm/npm/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" progress@1.1.8: version "1.1.8" @@ -7874,7 +7202,7 @@ progress@1.1.8: progress@^2.0.0: version "2.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/progress/-/progress-2.0.0.tgz?dl=https://registry.npmjs.org/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" + resolved "https://neo.jfrog.io/neo/api/npm/npm/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" promise-inflight@^1.0.1: version "1.0.1" @@ -7882,15 +7210,15 @@ promise-inflight@^1.0.1: promise-polyfill@7.1.2: version "7.1.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/promise-polyfill/-/promise-polyfill-7.1.2.tgz?dl=https://registry.npmjs.org/promise-polyfill/-/promise-polyfill-7.1.2.tgz#ab05301d8c28536301622d69227632269a70ca3b" + resolved "https://neo.jfrog.io/neo/api/npm/npm/promise-polyfill/-/promise-polyfill-7.1.2.tgz#ab05301d8c28536301622d69227632269a70ca3b" promise@^7.1.1: version "7.3.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/promise/-/promise-7.3.1.tgz?dl=https://registry.npmjs.org/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" + resolved "https://neo.jfrog.io/neo/api/npm/npm/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" dependencies: asap "~2.0.3" -prop-types@^15.0.0, prop-types@^15.5.10, prop-types@^15.5.4, prop-types@^15.5.7, prop-types@^15.5.8, prop-types@^15.6.0: +prop-types@^15.0.0, prop-types@^15.5.10, prop-types@^15.5.4, prop-types@^15.5.7, prop-types@^15.5.8, prop-types@^15.6.0, prop-types@^15.6.1: version "15.6.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/prop-types/-/prop-types-15.6.1.tgz#36644453564255ddda391191fb3a125cbdf654ca" dependencies: @@ -7900,11 +7228,11 @@ prop-types@^15.0.0, prop-types@^15.5.10, prop-types@^15.5.4, prop-types@^15.5.7, propagate@^1.0.0: version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/propagate/-/propagate-1.0.0.tgz?dl=https://registry.npmjs.org/propagate/-/propagate-1.0.0.tgz#00c2daeedda20e87e3782b344adba1cddd6ad709" + resolved "https://neo.jfrog.io/neo/api/npm/npm/propagate/-/propagate-1.0.0.tgz#00c2daeedda20e87e3782b344adba1cddd6ad709" protobufjs@^5.0.0: version "5.0.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/protobufjs/-/protobufjs-5.0.3.tgz?dl=https://registry.npmjs.org/protobufjs/-/protobufjs-5.0.3.tgz#e4dfe9fb67c90b2630d15868249bcc4961467a17" + resolved "https://neo.jfrog.io/neo/api/npm/npm/protobufjs/-/protobufjs-5.0.3.tgz#e4dfe9fb67c90b2630d15868249bcc4961467a17" dependencies: ascli "~1" bytebuffer "~5" @@ -7913,30 +7241,26 @@ protobufjs@^5.0.0: proxy-addr@~2.0.3: version "2.0.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/proxy-addr/-/proxy-addr-2.0.3.tgz?dl=https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.3.tgz#355f262505a621646b3130a728eb647e22055341" + resolved "https://neo.jfrog.io/neo/api/npm/npm/proxy-addr/-/proxy-addr-2.0.3.tgz#355f262505a621646b3130a728eb647e22055341" dependencies: forwarded "~0.1.2" ipaddr.js "1.6.0" -prr@~0.0.0: - version "0.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" - prr@~1.0.1: version "1.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/prr/-/prr-1.0.1.tgz?dl=https://registry.npmjs.org/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" + resolved "https://neo.jfrog.io/neo/api/npm/npm/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" pseudomap@^1.0.2: version "1.0.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/pseudomap/-/pseudomap-1.0.2.tgz?dl=https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" + resolved "https://neo.jfrog.io/neo/api/npm/npm/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" psl@^1.1.24: version "1.1.28" - resolved "https://neo.jfrog.io/neo/api/npm/npm/psl/-/psl-1.1.28.tgz?dl=https://registry.npmjs.org/psl/-/psl-1.1.28.tgz#4fb6ceb08a1e2214d4fd4de0ca22dae13740bc7b" + resolved "https://neo.jfrog.io/neo/api/npm/npm/psl/-/psl-1.1.28.tgz#4fb6ceb08a1e2214d4fd4de0ca22dae13740bc7b" public-encrypt@^4.0.0: version "4.0.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/public-encrypt/-/public-encrypt-4.0.2.tgz?dl=https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.2.tgz#46eb9107206bf73489f8b85b69d91334c6610994" + resolved "https://neo.jfrog.io/neo/api/npm/npm/public-encrypt/-/public-encrypt-4.0.2.tgz#46eb9107206bf73489f8b85b69d91334c6610994" dependencies: bn.js "^4.1.0" browserify-rsa "^4.0.0" @@ -7952,24 +7276,24 @@ pump@^2.0.0, pump@^2.0.1: once "^1.3.1" pumpify@^1.3.3: - version "1.4.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/pumpify/-/pumpify-1.4.0.tgz#80b7c5df7e24153d03f0e7ac8a05a5d068bd07fb" + version "1.5.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/pumpify/-/pumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce" dependencies: - duplexify "^3.5.3" + duplexify "^3.6.0" inherits "^2.0.3" pump "^2.0.0" punycode@1.3.2: version "1.3.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/punycode/-/punycode-1.3.2.tgz?dl=https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" + resolved "https://neo.jfrog.io/neo/api/npm/npm/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" punycode@^1.2.4, punycode@^1.4.1: version "1.4.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/punycode/-/punycode-1.4.1.tgz?dl=https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" + resolved "https://neo.jfrog.io/neo/api/npm/npm/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" punycode@^2.1.0: - version "2.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/punycode/-/punycode-2.1.0.tgz?dl=https://registry.npmjs.org/punycode/-/punycode-2.1.0.tgz#5f863edc89b96db09074bad7947bf09056ca4e7d" + version "2.1.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" pure-color@^1.2.0: version "1.3.0" @@ -7977,46 +7301,38 @@ pure-color@^1.2.0: q@^1.1.2: version "1.5.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/q/-/q-1.5.1.tgz?dl=https://registry.npmjs.org/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" + resolved "https://neo.jfrog.io/neo/api/npm/npm/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" -qs@6.5.1, qs@~6.5.1: +qs@6.5.1: version "6.5.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8" -qs@^6.5.1: +qs@^6.5.1, qs@~6.5.1: version "6.5.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/qs/-/qs-6.5.2.tgz?dl=https://registry.npmjs.org/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" + resolved "https://neo.jfrog.io/neo/api/npm/npm/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" qs@~6.4.0: version "6.4.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/qs/-/qs-6.4.0.tgz?dl=https://registry.npmjs.org/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" + resolved "https://neo.jfrog.io/neo/api/npm/npm/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" query-string@^4.1.0: version "4.3.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/query-string/-/query-string-4.3.4.tgz?dl=https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb" + resolved "https://neo.jfrog.io/neo/api/npm/npm/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb" dependencies: object-assign "^4.1.0" strict-uri-encode "^1.0.0" querystring-es3@^0.2.0: version "0.2.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/querystring-es3/-/querystring-es3-0.2.1.tgz?dl=https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" + resolved "https://neo.jfrog.io/neo/api/npm/npm/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" querystring@0.2.0: version "0.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/querystring/-/querystring-0.2.0.tgz?dl=https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" - -querystringify@0.0.x: - version "0.0.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/querystringify/-/querystringify-0.0.4.tgz#0cf7f84f9463ff0ae51c4c4b142d95be37724d9c" + resolved "https://neo.jfrog.io/neo/api/npm/npm/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" querystringify@^2.0.0: version "2.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/querystringify/-/querystringify-2.0.0.tgz?dl=https://registry.npmjs.org/querystringify/-/querystringify-2.0.0.tgz#fa3ed6e68eb15159457c89b37bc6472833195755" - -querystringify@~1.0.0: - version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/querystringify/-/querystringify-1.0.0.tgz?dl=https://registry.npmjs.org/querystringify/-/querystringify-1.0.0.tgz#6286242112c5b712fa654e526652bf6a13ff05cb" + resolved "https://neo.jfrog.io/neo/api/npm/npm/querystringify/-/querystringify-2.0.0.tgz#fa3ed6e68eb15159457c89b37bc6472833195755" quick-lru@^1.0.0: version "1.1.0" @@ -8024,7 +7340,7 @@ quick-lru@^1.0.0: raf@^3.4.0: version "3.4.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/raf/-/raf-3.4.0.tgz?dl=https://registry.npmjs.org/raf/-/raf-3.4.0.tgz#a28876881b4bc2ca9117d4138163ddb80f781575" + resolved "https://neo.jfrog.io/neo/api/npm/npm/raf/-/raf-3.4.0.tgz#a28876881b4bc2ca9117d4138163ddb80f781575" dependencies: performance-now "^2.1.0" @@ -8034,7 +7350,7 @@ ramda@0.24.1: randomatic@^3.0.0: version "3.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/randomatic/-/randomatic-3.0.0.tgz?dl=https://registry.npmjs.org/randomatic/-/randomatic-3.0.0.tgz#d35490030eb4f7578de292ce6dfb04a91a128923" + resolved "https://neo.jfrog.io/neo/api/npm/npm/randomatic/-/randomatic-3.0.0.tgz#d35490030eb4f7578de292ce6dfb04a91a128923" dependencies: is-number "^4.0.0" kind-of "^6.0.0" @@ -8042,24 +7358,24 @@ randomatic@^3.0.0: randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5: version "2.0.6" - resolved "https://neo.jfrog.io/neo/api/npm/npm/randombytes/-/randombytes-2.0.6.tgz?dl=https://registry.npmjs.org/randombytes/-/randombytes-2.0.6.tgz#d302c522948588848a8d300c932b44c24231da80" + resolved "https://neo.jfrog.io/neo/api/npm/npm/randombytes/-/randombytes-2.0.6.tgz#d302c522948588848a8d300c932b44c24231da80" dependencies: safe-buffer "^5.1.0" randomfill@^1.0.3: version "1.0.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/randomfill/-/randomfill-1.0.4.tgz?dl=https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458" + resolved "https://neo.jfrog.io/neo/api/npm/npm/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458" dependencies: randombytes "^2.0.5" safe-buffer "^5.1.0" range-parser@^1.0.3, range-parser@~1.2.0: version "1.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/range-parser/-/range-parser-1.2.0.tgz?dl=https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" + resolved "https://neo.jfrog.io/neo/api/npm/npm/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" raw-body@2.3.2: version "2.3.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/raw-body/-/raw-body-2.3.2.tgz?dl=https://registry.npmjs.org/raw-body/-/raw-body-2.3.2.tgz#bcd60c77d3eb93cde0050295c3f379389bc88f89" + resolved "https://neo.jfrog.io/neo/api/npm/npm/raw-body/-/raw-body-2.3.2.tgz#bcd60c77d3eb93cde0050295c3f379389bc88f89" dependencies: bytes "3.0.0" http-errors "1.6.2" @@ -8067,10 +7383,10 @@ raw-body@2.3.2: unpipe "1.0.0" rc@^1.1.7: - version "1.2.7" - resolved "https://neo.jfrog.io/neo/api/npm/npm/rc/-/rc-1.2.7.tgz?dl=https://registry.npmjs.org/rc/-/rc-1.2.7.tgz#8a10ca30d588d00464360372b890d06dacd02297" + version "1.2.8" + resolved "https://neo.jfrog.io/neo/api/npm/npm/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" dependencies: - deep-extend "^0.5.1" + deep-extend "^0.6.0" ini "~1.3.0" minimist "^1.2.0" strip-json-comments "~2.0.1" @@ -8093,13 +7409,13 @@ react-base16-styling@^0.5.1: react-dnd-html5-backend@^2.5.1: version "2.6.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/react-dnd-html5-backend/-/react-dnd-html5-backend-2.6.0.tgz?dl=https://registry.npmjs.org/react-dnd-html5-backend/-/react-dnd-html5-backend-2.6.0.tgz#590cd1cca78441bb274edd571fef4c0b16ddcf8e" + resolved "https://neo.jfrog.io/neo/api/npm/npm/react-dnd-html5-backend/-/react-dnd-html5-backend-2.6.0.tgz#590cd1cca78441bb274edd571fef4c0b16ddcf8e" dependencies: lodash "^4.2.0" react-dnd@^2.5.1: version "2.6.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/react-dnd/-/react-dnd-2.6.0.tgz?dl=https://registry.npmjs.org/react-dnd/-/react-dnd-2.6.0.tgz#7fa25676cf827d58a891293e3c1ab59da002545a" + resolved "https://neo.jfrog.io/neo/api/npm/npm/react-dnd/-/react-dnd-2.6.0.tgz#7fa25676cf827d58a891293e3c1ab59da002545a" dependencies: disposables "^1.0.1" dnd-core "^2.6.0" @@ -8116,8 +7432,8 @@ react-dock@^0.2.4: prop-types "^15.5.8" react-dom@^16.4.0: - version "16.4.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/react-dom/-/react-dom-16.4.0.tgz?dl=https://registry.npmjs.org/react-dom/-/react-dom-16.4.0.tgz#099f067dd5827ce36a29eaf9a6cdc7cbf6216b1e" + version "16.4.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/react-dom/-/react-dom-16.4.1.tgz#7f8b0223b3a5fbe205116c56deb85de32685dad6" dependencies: fbjs "^0.8.16" loose-envify "^1.1.0" @@ -8125,8 +7441,8 @@ react-dom@^16.4.0: prop-types "^15.6.0" react-dropzone@^4.1.2: - version "4.2.10" - resolved "https://neo.jfrog.io/neo/api/npm/npm/react-dropzone/-/react-dropzone-4.2.10.tgz?dl=https://registry.npmjs.org/react-dropzone/-/react-dropzone-4.2.10.tgz#49de76346f5f56bc3e76aeab5604f4cddd0e87fb" + version "4.2.11" + resolved "https://neo.jfrog.io/neo/api/npm/npm/react-dropzone/-/react-dropzone-4.2.11.tgz#c20ff6a62634c5803bed5f292ef1bd4b3e1f90c3" dependencies: attr-accept "^1.0.3" prop-types "^15.5.7" @@ -8144,17 +7460,17 @@ react-hot-loader@^1.3.0: react-icon-base@2.1.0: version "2.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/react-icon-base/-/react-icon-base-2.1.0.tgz?dl=https://registry.npmjs.org/react-icon-base/-/react-icon-base-2.1.0.tgz#a196e33fdf1e7aaa1fda3aefbb68bdad9e82a79d" + resolved "https://neo.jfrog.io/neo/api/npm/npm/react-icon-base/-/react-icon-base-2.1.0.tgz#a196e33fdf1e7aaa1fda3aefbb68bdad9e82a79d" react-icons@^2.2.1: version "2.2.7" - resolved "https://neo.jfrog.io/neo/api/npm/npm/react-icons/-/react-icons-2.2.7.tgz?dl=https://registry.npmjs.org/react-icons/-/react-icons-2.2.7.tgz#d7860826b258557510dac10680abea5ca23cf650" + resolved "https://neo.jfrog.io/neo/api/npm/npm/react-icons/-/react-icons-2.2.7.tgz#d7860826b258557510dac10680abea5ca23cf650" dependencies: react-icon-base "2.1.0" react-is@^16.3.1: - version "16.3.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/react-is/-/react-is-16.3.2.tgz?dl=https://registry.npmjs.org/react-is/-/react-is-16.3.2.tgz#f4d3d0e2f5fbb6ac46450641eb2e25bf05d36b22" + version "16.4.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/react-is/-/react-is-16.4.1.tgz#d624c4650d2c65dbd52c72622bbf389435d9776e" react-json-tree@^0.11.0: version "0.11.0" @@ -8170,7 +7486,7 @@ react-pure-render@^1.0.2: react-redux@^5.0.7: version "5.0.7" - resolved "https://neo.jfrog.io/neo/api/npm/npm/react-redux/-/react-redux-5.0.7.tgz?dl=https://registry.npmjs.org/react-redux/-/react-redux-5.0.7.tgz#0dc1076d9afb4670f993ffaef44b8f8c1155a4c8" + resolved "https://neo.jfrog.io/neo/api/npm/npm/react-redux/-/react-redux-5.0.7.tgz#0dc1076d9afb4670f993ffaef44b8f8c1155a4c8" dependencies: hoist-non-react-statics "^2.5.0" invariant "^2.0.0" @@ -8181,7 +7497,7 @@ react-redux@^5.0.7: react-suber@1.0.4: version "1.0.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/react-suber/-/react-suber-1.0.4.tgz?dl=https://registry.npmjs.org/react-suber/-/react-suber-1.0.4.tgz#99e86d0d13304584ba142025d38688124a92ea7c" + resolved "https://neo.jfrog.io/neo/api/npm/npm/react-suber/-/react-suber-1.0.4.tgz#99e86d0d13304584ba142025d38688124a92ea7c" dependencies: hoist-non-react-statics "^2.5.0" @@ -8197,8 +7513,8 @@ react-timeago@^3.4.3: resolved "https://neo.jfrog.io/neo/api/npm/npm/react-timeago/-/react-timeago-3.4.3.tgz#eb9061eefb044e4a2b09ce8c99d34645b2dbfa25" react@^16.4.0: - version "16.4.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/react/-/react-16.4.0.tgz?dl=https://registry.npmjs.org/react/-/react-16.4.0.tgz#402c2db83335336fba1962c08b98c6272617d585" + version "16.4.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/react/-/react-16.4.1.tgz#de51ba5764b5dbcd1f9079037b862bd26b82fe32" dependencies: fbjs "^0.8.16" loose-envify "^1.1.0" @@ -8220,7 +7536,7 @@ read-pkg-up@^1.0.1: read-pkg-up@^2.0.0: version "2.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/read-pkg-up/-/read-pkg-up-2.0.0.tgz?dl=https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" + resolved "https://neo.jfrog.io/neo/api/npm/npm/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" dependencies: find-up "^2.0.0" read-pkg "^2.0.0" @@ -8235,22 +7551,22 @@ read-pkg@^1.0.0: read-pkg@^2.0.0: version "2.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/read-pkg/-/read-pkg-2.0.0.tgz?dl=https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" + resolved "https://neo.jfrog.io/neo/api/npm/npm/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" dependencies: load-json-file "^2.0.0" normalize-package-data "^2.3.2" path-type "^2.0.0" -"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.4, readable-stream@^2.1.5, readable-stream@^2.2.9: - version "2.3.5" - resolved "https://neo.jfrog.io/neo/api/npm/npm/readable-stream/-/readable-stream-2.3.5.tgz#b4f85003a938cbb6ecbce2a124fb1012bd1a838d" +"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.4, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.2.9, readable-stream@^2.3.3, readable-stream@^2.3.6: + version "2.3.6" + resolved "https://neo.jfrog.io/neo/api/npm/npm/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" dependencies: 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.0.3" + string_decoder "~1.1.1" util-deprecate "~1.0.1" readable-stream@1.0: @@ -8262,21 +7578,9 @@ readable-stream@1.0: isarray "0.0.1" string_decoder "~0.10.x" -readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.6: - version "2.3.6" - resolved "https://neo.jfrog.io/neo/api/npm/npm/readable-stream/-/readable-stream-2.3.6.tgz?dl=https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" - dependencies: - 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" - readdirp@^2.0.0: version "2.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/readdirp/-/readdirp-2.1.0.tgz?dl=https://registry.npmjs.org/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" + resolved "https://neo.jfrog.io/neo/api/npm/npm/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" dependencies: graceful-fs "^4.1.2" minimatch "^3.0.2" @@ -8285,7 +7589,7 @@ readdirp@^2.0.0: realpath-native@^1.0.0: version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/realpath-native/-/realpath-native-1.0.0.tgz?dl=https://registry.npmjs.org/realpath-native/-/realpath-native-1.0.0.tgz#7885721a83b43bd5327609f0ddecb2482305fdf0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/realpath-native/-/realpath-native-1.0.0.tgz#7885721a83b43bd5327609f0ddecb2482305fdf0" dependencies: util.promisify "^1.0.0" @@ -8307,7 +7611,7 @@ redent@^1.0.0: redent@^2.0.0: version "2.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/redent/-/redent-2.0.0.tgz?dl=https://registry.npmjs.org/redent/-/redent-2.0.0.tgz#c1b2007b42d57eb1389079b3c8333639d5e1ccaa" + resolved "https://neo.jfrog.io/neo/api/npm/npm/redent/-/redent-2.0.0.tgz#c1b2007b42d57eb1389079b3c8333639d5e1ccaa" dependencies: indent-string "^3.0.0" strip-indent "^2.0.0" @@ -8375,8 +7679,8 @@ redux-devtools@^3.2.0: redux-devtools-instrument "^1.0.1" redux-mock-store@^1.2.3: - version "1.5.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/redux-mock-store/-/redux-mock-store-1.5.1.tgz#fca4335392e66605420b5559fe02fc5b8bb6d63c" + version "1.5.3" + resolved "https://neo.jfrog.io/neo/api/npm/npm/redux-mock-store/-/redux-mock-store-1.5.3.tgz#1f10528949b7ce8056c2532624f7cafa98576c6d" dependencies: lodash.isplainobject "^4.0.6" @@ -8386,7 +7690,7 @@ redux-observable@^0.16.0: redux@^3.7.1, redux@^3.7.2: version "3.7.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/redux/-/redux-3.7.2.tgz?dl=https://registry.npmjs.org/redux/-/redux-3.7.2.tgz#06b73123215901d25d065be342eb026bc1c8537b" + resolved "https://neo.jfrog.io/neo/api/npm/npm/redux/-/redux-3.7.2.tgz#06b73123215901d25d065be342eb026bc1c8537b" dependencies: lodash "^4.2.1" lodash-es "^4.2.1" @@ -8395,7 +7699,7 @@ redux@^3.7.1, redux@^3.7.2: regenerate@^1.2.1: version "1.4.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/regenerate/-/regenerate-1.4.0.tgz?dl=https://registry.npmjs.org/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" + resolved "https://neo.jfrog.io/neo/api/npm/npm/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" regenerator-runtime@^0.10.5: version "0.10.5" @@ -8403,7 +7707,7 @@ regenerator-runtime@^0.10.5: regenerator-runtime@^0.11.0: version "0.11.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz?dl=https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" + resolved "https://neo.jfrog.io/neo/api/npm/npm/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" regenerator-transform@^0.10.0: version "0.10.1" @@ -8415,7 +7719,7 @@ regenerator-transform@^0.10.0: regex-cache@^0.4.2: version "0.4.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/regex-cache/-/regex-cache-0.4.4.tgz?dl=https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" + resolved "https://neo.jfrog.io/neo/api/npm/npm/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" dependencies: is-equal-shallow "^0.1.3" @@ -8428,11 +7732,11 @@ regex-not@^1.0.0, regex-not@^1.0.2: regexpp@^1.0.1: version "1.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/regexpp/-/regexpp-1.1.0.tgz?dl=https://registry.npmjs.org/regexpp/-/regexpp-1.1.0.tgz#0e3516dd0b7904f413d2d4193dce4618c3a689ab" + resolved "https://neo.jfrog.io/neo/api/npm/npm/regexpp/-/regexpp-1.1.0.tgz#0e3516dd0b7904f413d2d4193dce4618c3a689ab" regexpu-core@^1.0.0: version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/regexpu-core/-/regexpu-core-1.0.0.tgz?dl=https://registry.npmjs.org/regexpu-core/-/regexpu-core-1.0.0.tgz#86a763f58ee4d7c2f6b102e4764050de7ed90c6b" + resolved "https://neo.jfrog.io/neo/api/npm/npm/regexpu-core/-/regexpu-core-1.0.0.tgz#86a763f58ee4d7c2f6b102e4764050de7ed90c6b" dependencies: regenerate "^1.2.1" regjsgen "^0.2.0" @@ -8448,11 +7752,11 @@ regexpu-core@^2.0.0: regjsgen@^0.2.0: version "0.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/regjsgen/-/regjsgen-0.2.0.tgz?dl=https://registry.npmjs.org/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" + resolved "https://neo.jfrog.io/neo/api/npm/npm/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" regjsparser@^0.1.4: version "0.1.5" - resolved "https://neo.jfrog.io/neo/api/npm/npm/regjsparser/-/regjsparser-0.1.5.tgz?dl=https://registry.npmjs.org/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" + resolved "https://neo.jfrog.io/neo/api/npm/npm/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" dependencies: jsesc "~0.5.0" @@ -8462,7 +7766,7 @@ relateurl@0.2.x: remove-trailing-separator@^1.0.1: version "1.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz?dl=https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" + resolved "https://neo.jfrog.io/neo/api/npm/npm/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" renderkid@^2.0.1: version "2.0.1" @@ -8476,15 +7780,15 @@ renderkid@^2.0.1: repeat-element@^1.1.2: version "1.1.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/repeat-element/-/repeat-element-1.1.2.tgz?dl=https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" + resolved "https://neo.jfrog.io/neo/api/npm/npm/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" repeat-string@^1.5.2, repeat-string@^1.6.1: version "1.6.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/repeat-string/-/repeat-string-1.6.1.tgz?dl=https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" + resolved "https://neo.jfrog.io/neo/api/npm/npm/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" repeating@^2.0.0: version "2.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/repeating/-/repeating-2.0.1.tgz?dl=https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" + resolved "https://neo.jfrog.io/neo/api/npm/npm/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" dependencies: is-finite "^1.0.0" @@ -8496,13 +7800,13 @@ request-progress@0.3.1: request-promise-core@1.1.1: version "1.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/request-promise-core/-/request-promise-core-1.1.1.tgz?dl=https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.1.tgz#3eee00b2c5aa83239cfb04c5700da36f81cd08b6" + resolved "https://neo.jfrog.io/neo/api/npm/npm/request-promise-core/-/request-promise-core-1.1.1.tgz#3eee00b2c5aa83239cfb04c5700da36f81cd08b6" dependencies: lodash "^4.13.1" request-promise-native@^1.0.5: version "1.0.5" - resolved "https://neo.jfrog.io/neo/api/npm/npm/request-promise-native/-/request-promise-native-1.0.5.tgz?dl=https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.5.tgz#5281770f68e0c9719e5163fd3fab482215f4fda5" + resolved "https://neo.jfrog.io/neo/api/npm/npm/request-promise-native/-/request-promise-native-1.0.5.tgz#5281770f68e0c9719e5163fd3fab482215f4fda5" dependencies: request-promise-core "1.1.1" stealthy-require "^1.1.0" @@ -8510,7 +7814,7 @@ request-promise-native@^1.0.5: request@2.81.0: version "2.81.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/request/-/request-2.81.0.tgz?dl=https://registry.npmjs.org/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" dependencies: aws-sign2 "~0.6.0" aws4 "^1.2.1" @@ -8535,9 +7839,9 @@ request@2.81.0: tunnel-agent "^0.6.0" uuid "^3.0.0" -request@2.83.0, request@^2.79.0: +request@2.83.0: version "2.83.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/request/-/request-2.83.0.tgz?dl=https://registry.npmjs.org/request/-/request-2.83.0.tgz#ca0b65da02ed62935887808e6f510381034e3356" + resolved "https://neo.jfrog.io/neo/api/npm/npm/request/-/request-2.83.0.tgz#ca0b65da02ed62935887808e6f510381034e3356" dependencies: aws-sign2 "~0.7.0" aws4 "^1.6.0" @@ -8564,7 +7868,7 @@ request@2.83.0, request@^2.79.0: request@^2.83.0: version "2.87.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/request/-/request-2.87.0.tgz?dl=https://registry.npmjs.org/request/-/request-2.87.0.tgz#32f00235cd08d482b4d0d68db93a829c0ed5756e" + resolved "https://neo.jfrog.io/neo/api/npm/npm/request/-/request-2.87.0.tgz#32f00235cd08d482b4d0d68db93a829c0ed5756e" dependencies: aws-sign2 "~0.7.0" aws4 "^1.6.0" @@ -8589,15 +7893,15 @@ request@^2.83.0: require-directory@^2.1.1: version "2.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/require-directory/-/require-directory-2.1.1.tgz?dl=https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + resolved "https://neo.jfrog.io/neo/api/npm/npm/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" require-from-string@^1.1.0: version "1.2.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/require-from-string/-/require-from-string-1.2.1.tgz?dl=https://registry.npmjs.org/require-from-string/-/require-from-string-1.2.1.tgz#529c9ccef27380adfec9a2f965b649bbee636418" + resolved "https://neo.jfrog.io/neo/api/npm/npm/require-from-string/-/require-from-string-1.2.1.tgz#529c9ccef27380adfec9a2f965b649bbee636418" require-main-filename@^1.0.1: version "1.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/require-main-filename/-/require-main-filename-1.0.1.tgz?dl=https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" require-relative@^0.8.7: version "0.8.7" @@ -8605,14 +7909,14 @@ require-relative@^0.8.7: require-uncached@^1.0.3: version "1.0.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/require-uncached/-/require-uncached-1.0.3.tgz?dl=https://registry.npmjs.org/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" + resolved "https://neo.jfrog.io/neo/api/npm/npm/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" dependencies: caller-path "^0.1.0" resolve-from "^1.0.0" -requires-port@1.0.x, requires-port@1.x.x, requires-port@^1.0.0, requires-port@~1.0.0: +requires-port@^1.0.0: version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/requires-port/-/requires-port-1.0.0.tgz?dl=https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" + resolved "https://neo.jfrog.io/neo/api/npm/npm/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" reserved-words@^0.1.2: version "0.1.2" @@ -8626,7 +7930,7 @@ resolve-cwd@^2.0.0: resolve-from@^1.0.0: version "1.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/resolve-from/-/resolve-from-1.0.1.tgz?dl=https://registry.npmjs.org/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" + resolved "https://neo.jfrog.io/neo/api/npm/npm/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" resolve-from@^3.0.0: version "3.0.0" @@ -8640,21 +7944,9 @@ resolve@1.1.7: version "1.1.7" resolved "https://neo.jfrog.io/neo/api/npm/npm/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" -resolve@^1.1.7: - version "1.4.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/resolve/-/resolve-1.4.0.tgz#a75be01c53da25d934a98ebd0e4c4a7312f92a86" - dependencies: - path-parse "^1.0.5" - -resolve@^1.2.0, resolve@^1.3.3: - version "1.5.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/resolve/-/resolve-1.5.0.tgz#1f09acce796c9a762579f31b2c1cc4c3cddf9f36" - dependencies: - path-parse "^1.0.5" - -resolve@^1.5.0, resolve@^1.6.0: - version "1.7.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/resolve/-/resolve-1.7.1.tgz?dl=https://registry.npmjs.org/resolve/-/resolve-1.7.1.tgz#aadd656374fd298aee895bc026b8297418677fd3" +resolve@^1.1.7, resolve@^1.2.0, resolve@^1.3.3, resolve@^1.5.0, resolve@^1.6.0: + version "1.8.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/resolve/-/resolve-1.8.1.tgz#82f1ec19a423ac1fbd080b0bab06ba36e84a7a26" dependencies: path-parse "^1.0.5" @@ -8667,7 +7959,7 @@ restore-cursor@^1.0.1: restore-cursor@^2.0.0: version "2.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/restore-cursor/-/restore-cursor-2.0.0.tgz?dl=https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" + resolved "https://neo.jfrog.io/neo/api/npm/npm/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" dependencies: onetime "^2.0.0" signal-exit "^3.0.2" @@ -8686,26 +7978,30 @@ rgb@~0.1.0: right-align@^0.1.1: version "0.1.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/right-align/-/right-align-0.1.3.tgz?dl=https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" + resolved "https://neo.jfrog.io/neo/api/npm/npm/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" dependencies: align-text "^0.1.1" rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.2: version "2.6.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/rimraf/-/rimraf-2.6.2.tgz?dl=https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" + resolved "https://neo.jfrog.io/neo/api/npm/npm/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" dependencies: glob "^7.0.5" ripemd160@^2.0.0, ripemd160@^2.0.1: version "2.0.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/ripemd160/-/ripemd160-2.0.2.tgz?dl=https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" + resolved "https://neo.jfrog.io/neo/api/npm/npm/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" dependencies: hash-base "^3.0.0" inherits "^2.0.1" +rsvp@^3.3.3: + version "3.6.2" + resolved "https://neo.jfrog.io/neo/api/npm/npm/rsvp/-/rsvp-3.6.2.tgz#2e96491599a96cde1b515d5674a8f7a91452926a" + run-async@^2.2.0: version "2.3.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/run-async/-/run-async-2.3.0.tgz?dl=https://registry.npmjs.org/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" dependencies: is-promise "^2.1.0" @@ -8717,33 +8013,27 @@ run-queue@^1.0.0, run-queue@^1.0.3: rx-lite-aggregates@^4.0.8: version "4.0.8" - resolved "https://neo.jfrog.io/neo/api/npm/npm/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz?dl=https://registry.npmjs.org/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" + resolved "https://neo.jfrog.io/neo/api/npm/npm/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" dependencies: rx-lite "*" rx-lite@*, rx-lite@^4.0.8: version "4.0.8" - resolved "https://neo.jfrog.io/neo/api/npm/npm/rx-lite/-/rx-lite-4.0.8.tgz?dl=https://registry.npmjs.org/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" - -rxjs@^5.0.0-beta.11, rxjs@^5.3.0: - version "5.5.7" - resolved "https://neo.jfrog.io/neo/api/npm/npm/rxjs/-/rxjs-5.5.7.tgz#afb3d1642b069b2fbf203903d6501d1acb4cda27" - dependencies: - symbol-observable "1.0.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" -rxjs@^5.4.2: +rxjs@^5.0.0-beta.11, rxjs@^5.3.0, rxjs@^5.4.2: version "5.5.11" - resolved "https://neo.jfrog.io/neo/api/npm/npm/rxjs/-/rxjs-5.5.11.tgz?dl=https://registry.npmjs.org/rxjs/-/rxjs-5.5.11.tgz#f733027ca43e3bec6b994473be4ab98ad43ced87" + resolved "https://neo.jfrog.io/neo/api/npm/npm/rxjs/-/rxjs-5.5.11.tgz#f733027ca43e3bec6b994473be4ab98ad43ced87" dependencies: symbol-observable "1.0.1" safe-buffer@5.1.1: version "5.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/safe-buffer/-/safe-buffer-5.1.1.tgz?dl=https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" + resolved "https://neo.jfrog.io/neo/api/npm/npm/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: version "5.1.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/safe-buffer/-/safe-buffer-5.1.2.tgz?dl=https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + resolved "https://neo.jfrog.io/neo/api/npm/npm/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" safe-regex@^1.1.0: version "1.1.0" @@ -8751,23 +8041,24 @@ safe-regex@^1.1.0: dependencies: ret "~0.1.10" -"safer-buffer@>= 2.1.2 < 3": +"safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2: version "2.1.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/safer-buffer/-/safer-buffer-2.1.2.tgz?dl=https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + resolved "https://neo.jfrog.io/neo/api/npm/npm/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" sane@^2.0.0: - version "2.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/sane/-/sane-2.2.0.tgz#d6d2e2fcab00e3d283c93b912b7c3a20846f1d56" + version "2.5.2" + resolved "https://neo.jfrog.io/neo/api/npm/npm/sane/-/sane-2.5.2.tgz#b4dc1861c21b427e929507a3e751e2a2cb8ab3fa" dependencies: - anymatch "^1.3.0" + anymatch "^2.0.0" + capture-exit "^1.2.0" exec-sh "^0.2.0" fb-watchman "^2.0.0" - minimatch "^3.0.2" + micromatch "^3.1.4" minimist "^1.1.1" walker "~1.0.5" watch "~0.18.0" optionalDependencies: - fsevents "^1.1.1" + fsevents "^1.2.3" save-as@^0.1.7: version "0.1.8" @@ -8775,7 +8066,7 @@ save-as@^0.1.7: dependencies: chai "*" -sax@>=0.6.0, sax@^1.2.1, sax@^1.2.4, sax@~1.2.1: +sax@>=0.6.0, sax@^1.2.4, sax@~1.2.1: version "1.2.4" resolved "https://neo.jfrog.io/neo/api/npm/npm/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" @@ -8787,7 +8078,7 @@ schema-utils@^0.3.0: schema-utils@^0.4.0: version "0.4.5" - resolved "https://neo.jfrog.io/neo/api/npm/npm/schema-utils/-/schema-utils-0.4.5.tgz?dl=https://registry.npmjs.org/schema-utils/-/schema-utils-0.4.5.tgz#21836f0608aac17b78f9e3e24daff14a5ca13a3e" + resolved "https://neo.jfrog.io/neo/api/npm/npm/schema-utils/-/schema-utils-0.4.5.tgz#21836f0608aac17b78f9e3e24daff14a5ca13a3e" dependencies: ajv "^6.1.0" ajv-keywords "^3.1.0" @@ -8797,14 +8088,14 @@ select-hose@^2.0.0: resolved "https://neo.jfrog.io/neo/api/npm/npm/select-hose/-/select-hose-2.0.0.tgz#625d8658f865af43ec962bfc376a37359a4994ca" selfsigned@^1.9.1: - version "1.10.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/selfsigned/-/selfsigned-1.10.2.tgz#b4449580d99929b65b10a48389301a6592088758" + version "1.10.3" + resolved "https://neo.jfrog.io/neo/api/npm/npm/selfsigned/-/selfsigned-1.10.3.tgz#d628ecf9e3735f84e8bafba936b3cf85bea43823" dependencies: - node-forge "0.7.1" + node-forge "0.7.5" "semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1, semver@^5.5.0: version "5.5.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/semver/-/semver-5.5.0.tgz?dl=https://registry.npmjs.org/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" + resolved "https://neo.jfrog.io/neo/api/npm/npm/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" semver@5.3.0: version "5.3.0" @@ -8816,7 +8107,7 @@ semver@5.4.1: send@0.16.2: version "0.16.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/send/-/send-0.16.2.tgz?dl=https://registry.npmjs.org/send/-/send-0.16.2.tgz#6ecca1e0f8c156d141597559848df64730a6bbc1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/send/-/send-0.16.2.tgz#6ecca1e0f8c156d141597559848df64730a6bbc1" dependencies: debug "2.6.9" depd "~1.1.2" @@ -8833,8 +8124,8 @@ send@0.16.2: statuses "~1.4.0" serialize-javascript@^1.4.0: - version "1.4.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/serialize-javascript/-/serialize-javascript-1.4.0.tgz#7c958514db6ac2443a8abc062dc9f7886a7f6005" + version "1.5.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/serialize-javascript/-/serialize-javascript-1.5.0.tgz#1aa336162c88a890ddad5384baebc93a655161fe" serve-index@^1.7.2: version "1.9.1" @@ -8850,7 +8141,7 @@ serve-index@^1.7.2: serve-static@1.13.2: version "1.13.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/serve-static/-/serve-static-1.13.2.tgz?dl=https://registry.npmjs.org/serve-static/-/serve-static-1.13.2.tgz#095e8472fd5b46237db50ce486a43f4b86c6cec1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/serve-static/-/serve-static-1.13.2.tgz#095e8472fd5b46237db50ce486a43f4b86c6cec1" dependencies: encodeurl "~1.0.2" escape-html "~1.0.3" @@ -8859,11 +8150,11 @@ serve-static@1.13.2: set-blocking@^2.0.0, set-blocking@~2.0.0: version "2.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/set-blocking/-/set-blocking-2.0.0.tgz?dl=https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" + resolved "https://neo.jfrog.io/neo/api/npm/npm/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" set-immediate-shim@^1.0.1: version "1.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz?dl=https://registry.npmjs.org/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" + resolved "https://neo.jfrog.io/neo/api/npm/npm/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" set-value@^0.4.3: version "0.4.3" @@ -8885,40 +8176,40 @@ set-value@^2.0.0: setimmediate@^1.0.4, setimmediate@^1.0.5: version "1.0.5" - resolved "https://neo.jfrog.io/neo/api/npm/npm/setimmediate/-/setimmediate-1.0.5.tgz?dl=https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" + resolved "https://neo.jfrog.io/neo/api/npm/npm/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" setprototypeof@1.0.3: version "1.0.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/setprototypeof/-/setprototypeof-1.0.3.tgz?dl=https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.3.tgz#66567e37043eeb4f04d91bd658c0cbefb55b8e04" + resolved "https://neo.jfrog.io/neo/api/npm/npm/setprototypeof/-/setprototypeof-1.0.3.tgz#66567e37043eeb4f04d91bd658c0cbefb55b8e04" setprototypeof@1.1.0: version "1.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/setprototypeof/-/setprototypeof-1.1.0.tgz?dl=https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656" + resolved "https://neo.jfrog.io/neo/api/npm/npm/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656" sha.js@^2.4.0, sha.js@^2.4.8: version "2.4.11" - resolved "https://neo.jfrog.io/neo/api/npm/npm/sha.js/-/sha.js-2.4.11.tgz?dl=https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7" + resolved "https://neo.jfrog.io/neo/api/npm/npm/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7" dependencies: inherits "^2.0.1" safe-buffer "^5.0.1" shebang-command@^1.2.0: version "1.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/shebang-command/-/shebang-command-1.2.0.tgz?dl=https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" + resolved "https://neo.jfrog.io/neo/api/npm/npm/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" dependencies: shebang-regex "^1.0.0" shebang-regex@^1.0.0: version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/shebang-regex/-/shebang-regex-1.0.0.tgz?dl=https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" + resolved "https://neo.jfrog.io/neo/api/npm/npm/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" -shellwords@^0.1.0, shellwords@^0.1.1: +shellwords@^0.1.1: version "0.1.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" signal-exit@^3.0.0, signal-exit@^3.0.2: version "3.0.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/signal-exit/-/signal-exit-3.0.2.tgz?dl=https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" + resolved "https://neo.jfrog.io/neo/api/npm/npm/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" simple-swizzle@^0.2.2: version "0.2.2" @@ -8928,7 +8219,7 @@ simple-swizzle@^0.2.2: slash@^1.0.0: version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/slash/-/slash-1.0.0.tgz?dl=https://registry.npmjs.org/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" + resolved "https://neo.jfrog.io/neo/api/npm/npm/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" slice-ansi@0.0.4: version "0.0.4" @@ -8936,7 +8227,7 @@ slice-ansi@0.0.4: slice-ansi@1.0.0: version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/slice-ansi/-/slice-ansi-1.0.0.tgz?dl=https://registry.npmjs.org/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d" + resolved "https://neo.jfrog.io/neo/api/npm/npm/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d" dependencies: is-fullwidth-code-point "^2.0.0" @@ -8969,23 +8260,23 @@ snapdragon@^0.8.1: sntp@1.x.x: version "1.0.9" - resolved "https://neo.jfrog.io/neo/api/npm/npm/sntp/-/sntp-1.0.9.tgz?dl=https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" + resolved "https://neo.jfrog.io/neo/api/npm/npm/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" dependencies: hoek "2.x.x" sntp@2.x.x: - version "2.0.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/sntp/-/sntp-2.0.2.tgz#5064110f0af85f7cfdb7d6b67a40028ce52b4b2b" + version "2.1.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/sntp/-/sntp-2.1.0.tgz#2c6cec14fedc2222739caf9b5c3d85d1cc5a2cc8" dependencies: hoek "4.x.x" socket.io-adapter@~1.1.0: version "1.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/socket.io-adapter/-/socket.io-adapter-1.1.1.tgz?dl=https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-1.1.1.tgz#2a805e8a14d6372124dd9159ad4502f8cb07f06b" + resolved "https://neo.jfrog.io/neo/api/npm/npm/socket.io-adapter/-/socket.io-adapter-1.1.1.tgz#2a805e8a14d6372124dd9159ad4502f8cb07f06b" socket.io-client@2.1.1, socket.io-client@^2.1.1: version "2.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/socket.io-client/-/socket.io-client-2.1.1.tgz?dl=https://registry.npmjs.org/socket.io-client/-/socket.io-client-2.1.1.tgz#dcb38103436ab4578ddb026638ae2f21b623671f" + resolved "https://neo.jfrog.io/neo/api/npm/npm/socket.io-client/-/socket.io-client-2.1.1.tgz#dcb38103436ab4578ddb026638ae2f21b623671f" dependencies: backo2 "1.0.2" base64-arraybuffer "0.1.5" @@ -9004,7 +8295,7 @@ socket.io-client@2.1.1, socket.io-client@^2.1.1: socket.io-parser@~3.2.0: version "3.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/socket.io-parser/-/socket.io-parser-3.2.0.tgz?dl=https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-3.2.0.tgz#e7c6228b6aa1f814e6148aea325b51aa9499e077" + resolved "https://neo.jfrog.io/neo/api/npm/npm/socket.io-parser/-/socket.io-parser-3.2.0.tgz#e7c6228b6aa1f814e6148aea325b51aa9499e077" dependencies: component-emitter "1.2.1" debug "~3.1.0" @@ -9012,7 +8303,7 @@ socket.io-parser@~3.2.0: socket.io@^2.1.1: version "2.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/socket.io/-/socket.io-2.1.1.tgz?dl=https://registry.npmjs.org/socket.io/-/socket.io-2.1.1.tgz#a069c5feabee3e6b214a75b40ce0652e1cfb9980" + resolved "https://neo.jfrog.io/neo/api/npm/npm/socket.io/-/socket.io-2.1.1.tgz#a069c5feabee3e6b214a75b40ce0652e1cfb9980" dependencies: debug "~3.1.0" engine.io "~3.2.0" @@ -9041,27 +8332,17 @@ sockjs@0.3.19: sort-keys@^1.0.0: version "1.1.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/sort-keys/-/sort-keys-1.1.2.tgz?dl=https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" + resolved "https://neo.jfrog.io/neo/api/npm/npm/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" dependencies: is-plain-obj "^1.0.0" source-list-map@^2.0.0: version "2.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/source-list-map/-/source-list-map-2.0.0.tgz?dl=https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.0.tgz#aaa47403f7b245a92fbc97ea08f250d6087ed085" - -source-map-resolve@^0.5.0: - version "0.5.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/source-map-resolve/-/source-map-resolve-0.5.1.tgz#7ad0f593f2281598e854df80f19aae4b92d7a11a" - dependencies: - atob "^2.0.0" - decode-uri-component "^0.2.0" - resolve-url "^0.2.1" - source-map-url "^0.4.0" - urix "^0.1.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/source-list-map/-/source-list-map-2.0.0.tgz#aaa47403f7b245a92fbc97ea08f250d6087ed085" -source-map-resolve@^0.5.1: +source-map-resolve@^0.5.0, source-map-resolve@^0.5.1: version "0.5.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/source-map-resolve/-/source-map-resolve-0.5.2.tgz?dl=https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" + resolved "https://neo.jfrog.io/neo/api/npm/npm/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" dependencies: atob "^2.1.1" decode-uri-component "^0.2.0" @@ -9071,13 +8352,13 @@ source-map-resolve@^0.5.1: source-map-support@^0.4.15: version "0.4.18" - resolved "https://neo.jfrog.io/neo/api/npm/npm/source-map-support/-/source-map-support-0.4.18.tgz?dl=https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" + resolved "https://neo.jfrog.io/neo/api/npm/npm/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" dependencies: source-map "^0.5.6" source-map-support@^0.5.6: version "0.5.6" - resolved "https://neo.jfrog.io/neo/api/npm/npm/source-map-support/-/source-map-support-0.5.6.tgz?dl=https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.6.tgz#4435cee46b1aab62b8e8610ce60f788091c51c13" + resolved "https://neo.jfrog.io/neo/api/npm/npm/source-map-support/-/source-map-support-0.5.6.tgz#4435cee46b1aab62b8e8610ce60f788091c51c13" dependencies: buffer-from "^1.0.0" source-map "^0.6.0" @@ -9086,13 +8367,13 @@ source-map-url@^0.4.0: version "0.4.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" -source-map@0.5.x, source-map@^0.5.3, source-map@^0.5.6, source-map@^0.5.7, source-map@~0.5.0, source-map@~0.5.1, source-map@~0.5.6: +source-map@0.5.x, source-map@^0.5.3, source-map@^0.5.6, source-map@^0.5.7, source-map@~0.5.0, source-map@~0.5.1: version "0.5.7" - resolved "https://neo.jfrog.io/neo/api/npm/npm/source-map/-/source-map-0.5.7.tgz?dl=https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" + resolved "https://neo.jfrog.io/neo/api/npm/npm/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" source-map@^0.1.38: version "0.1.43" - resolved "https://neo.jfrog.io/neo/api/npm/npm/source-map/-/source-map-0.1.43.tgz?dl=https://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz#c24bc146ca517c1471f5dacbe2571b2b7f9e3346" + resolved "https://neo.jfrog.io/neo/api/npm/npm/source-map/-/source-map-0.1.43.tgz#c24bc146ca517c1471f5dacbe2571b2b7f9e3346" dependencies: amdefine ">=0.0.4" @@ -9104,33 +8385,33 @@ source-map@^0.4.4: source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: version "0.6.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/source-map/-/source-map-0.6.1.tgz?dl=https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + resolved "https://neo.jfrog.io/neo/api/npm/npm/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" spdx-correct@^3.0.0: version "3.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/spdx-correct/-/spdx-correct-3.0.0.tgz?dl=https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.0.0.tgz#05a5b4d7153a195bc92c3c425b69f3b2a9524c82" + resolved "https://neo.jfrog.io/neo/api/npm/npm/spdx-correct/-/spdx-correct-3.0.0.tgz#05a5b4d7153a195bc92c3c425b69f3b2a9524c82" dependencies: spdx-expression-parse "^3.0.0" spdx-license-ids "^3.0.0" spdx-exceptions@^2.1.0: version "2.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/spdx-exceptions/-/spdx-exceptions-2.1.0.tgz?dl=https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.1.0.tgz#2c7ae61056c714a5b9b9b2b2af7d311ef5c78fe9" + resolved "https://neo.jfrog.io/neo/api/npm/npm/spdx-exceptions/-/spdx-exceptions-2.1.0.tgz#2c7ae61056c714a5b9b9b2b2af7d311ef5c78fe9" spdx-expression-parse@^3.0.0: version "3.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz?dl=https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" dependencies: spdx-exceptions "^2.1.0" spdx-license-ids "^3.0.0" spdx-license-ids@^3.0.0: version "3.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/spdx-license-ids/-/spdx-license-ids-3.0.0.tgz?dl=https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.0.tgz#7a7cd28470cc6d3a1cfe6d66886f6bc430d3ac87" + resolved "https://neo.jfrog.io/neo/api/npm/npm/spdx-license-ids/-/spdx-license-ids-3.0.0.tgz#7a7cd28470cc6d3a1cfe6d66886f6bc430d3ac87" spdy-transport@^2.0.18: - version "2.0.20" - resolved "https://neo.jfrog.io/neo/api/npm/npm/spdy-transport/-/spdy-transport-2.0.20.tgz#735e72054c486b2354fe89e702256004a39ace4d" + version "2.1.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/spdy-transport/-/spdy-transport-2.1.0.tgz#4bbb15aaffed0beefdd56ad61dbdc8ba3e2cb7a1" dependencies: debug "^2.6.8" detect-node "^2.0.3" @@ -9159,16 +8440,17 @@ split-string@^3.0.1, split-string@^3.0.2: sprintf-js@~1.0.2: version "1.0.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/sprintf-js/-/sprintf-js-1.0.3.tgz?dl=https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + resolved "https://neo.jfrog.io/neo/api/npm/npm/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" sshpk@^1.7.0: - version "1.14.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/sshpk/-/sshpk-1.14.1.tgz?dl=https://registry.npmjs.org/sshpk/-/sshpk-1.14.1.tgz#130f5975eddad963f1d56f92b9ac6c51fa9f83eb" + version "1.14.2" + resolved "https://neo.jfrog.io/neo/api/npm/npm/sshpk/-/sshpk-1.14.2.tgz#c6fc61648a3d9c4e764fd3fcdf4ea105e492ba98" dependencies: asn1 "~0.2.3" assert-plus "^1.0.0" dashdash "^1.12.0" getpass "^0.1.1" + safer-buffer "^2.0.2" optionalDependencies: bcrypt-pbkdf "^1.0.0" ecc-jsbn "~0.1.1" @@ -9183,7 +8465,7 @@ ssri@^5.2.4: stack-utils@^1.0.1: version "1.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/stack-utils/-/stack-utils-1.0.1.tgz?dl=https://registry.npmjs.org/stack-utils/-/stack-utils-1.0.1.tgz#d4f33ab54e8e38778b0ca5cfd3b3afb12db68620" + resolved "https://neo.jfrog.io/neo/api/npm/npm/stack-utils/-/stack-utils-1.0.1.tgz#d4f33ab54e8e38778b0ca5cfd3b3afb12db68620" staged-git-files@0.0.4: version "0.0.4" @@ -9198,19 +8480,19 @@ static-extend@^0.1.1: "statuses@>= 1.3.1 < 2", "statuses@>= 1.4.0 < 2": version "1.5.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/statuses/-/statuses-1.5.0.tgz?dl=https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" + resolved "https://neo.jfrog.io/neo/api/npm/npm/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" statuses@~1.4.0: version "1.4.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/statuses/-/statuses-1.4.0.tgz?dl=https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz#bb73d446da2796106efcc1b601a253d6c46bd087" + resolved "https://neo.jfrog.io/neo/api/npm/npm/statuses/-/statuses-1.4.0.tgz#bb73d446da2796106efcc1b601a253d6c46bd087" stealthy-require@^1.1.0: version "1.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/stealthy-require/-/stealthy-require-1.1.1.tgz?dl=https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" + resolved "https://neo.jfrog.io/neo/api/npm/npm/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" stream-browserify@^2.0.1: version "2.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/stream-browserify/-/stream-browserify-2.0.1.tgz?dl=https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" + resolved "https://neo.jfrog.io/neo/api/npm/npm/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" dependencies: inherits "~2.0.1" readable-stream "^2.0.2" @@ -9223,8 +8505,8 @@ stream-each@^1.1.0: stream-shift "^1.0.0" stream-http@^2.7.2: - version "2.8.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/stream-http/-/stream-http-2.8.2.tgz?dl=https://registry.npmjs.org/stream-http/-/stream-http-2.8.2.tgz#4126e8c6b107004465918aa2fc35549e77402c87" + version "2.8.3" + resolved "https://neo.jfrog.io/neo/api/npm/npm/stream-http/-/stream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc" dependencies: builtin-status-codes "^3.0.0" inherits "^2.0.1" @@ -9242,7 +8524,7 @@ stream-to-observable@^0.1.0: strict-uri-encode@^1.0.0: version "1.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz?dl=https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713" + resolved "https://neo.jfrog.io/neo/api/npm/npm/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713" string-length@^2.0.0: version "2.0.0" @@ -9253,22 +8535,22 @@ string-length@^2.0.0: string-width@^1.0.1, string-width@^1.0.2: version "1.0.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/string-width/-/string-width-1.0.2.tgz?dl=https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" + resolved "https://neo.jfrog.io/neo/api/npm/npm/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" dependencies: code-point-at "^1.0.0" is-fullwidth-code-point "^1.0.0" strip-ansi "^3.0.0" -string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1: +"string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1: version "2.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/string-width/-/string-width-2.1.1.tgz?dl=https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" + resolved "https://neo.jfrog.io/neo/api/npm/npm/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" dependencies: is-fullwidth-code-point "^2.0.0" strip-ansi "^4.0.0" string_decoder@^1.0.0, string_decoder@~1.1.1: version "1.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/string_decoder/-/string_decoder-1.1.1.tgz?dl=https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" + resolved "https://neo.jfrog.io/neo/api/npm/npm/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" dependencies: safe-buffer "~5.1.0" @@ -9276,12 +8558,6 @@ string_decoder@~0.10.x: version "0.10.31" resolved "https://neo.jfrog.io/neo/api/npm/npm/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" -string_decoder@~1.0.3: - version "1.0.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/string_decoder/-/string_decoder-1.0.3.tgz?dl=https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" - dependencies: - safe-buffer "~5.1.0" - stringify-object@^3.2.0: version "3.2.2" resolved "https://neo.jfrog.io/neo/api/npm/npm/stringify-object/-/stringify-object-3.2.2.tgz#9853052e5a88fb605a44cd27445aa257ad7ffbcd" @@ -9290,23 +8566,19 @@ stringify-object@^3.2.0: is-obj "^1.0.1" is-regexp "^1.0.0" -stringstream@~0.0.4: +stringstream@~0.0.4, stringstream@~0.0.5: version "0.0.6" - resolved "https://neo.jfrog.io/neo/api/npm/npm/stringstream/-/stringstream-0.0.6.tgz?dl=https://registry.npmjs.org/stringstream/-/stringstream-0.0.6.tgz#7880225b0d4ad10e30927d167a1d6f2fd3b33a72" - -stringstream@~0.0.5: - version "0.0.5" - resolved "https://neo.jfrog.io/neo/api/npm/npm/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" + resolved "https://neo.jfrog.io/neo/api/npm/npm/stringstream/-/stringstream-0.0.6.tgz#7880225b0d4ad10e30927d167a1d6f2fd3b33a72" strip-ansi@^3.0.0, strip-ansi@^3.0.1: version "3.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/strip-ansi/-/strip-ansi-3.0.1.tgz?dl=https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" + resolved "https://neo.jfrog.io/neo/api/npm/npm/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" dependencies: ansi-regex "^2.0.0" strip-ansi@^4.0.0: version "4.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/strip-ansi/-/strip-ansi-4.0.0.tgz?dl=https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" + resolved "https://neo.jfrog.io/neo/api/npm/npm/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" dependencies: ansi-regex "^3.0.0" @@ -9322,7 +8594,7 @@ strip-bom@^2.0.0: strip-eof@^1.0.0: version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/strip-eof/-/strip-eof-1.0.0.tgz?dl=https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" + resolved "https://neo.jfrog.io/neo/api/npm/npm/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" strip-indent@^1.0.1: version "1.0.1" @@ -9336,7 +8608,7 @@ strip-indent@^2.0.0: strip-json-comments@~2.0.1: version "2.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/strip-json-comments/-/strip-json-comments-2.0.1.tgz?dl=https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" + resolved "https://neo.jfrog.io/neo/api/npm/npm/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" style-loader@^0.18.1: version "0.18.2" @@ -9346,8 +8618,8 @@ style-loader@^0.18.1: schema-utils "^0.3.0" styled-components@^3.2.0: - version "3.2.6" - resolved "https://neo.jfrog.io/neo/api/npm/npm/styled-components/-/styled-components-3.2.6.tgz?dl=https://registry.npmjs.org/styled-components/-/styled-components-3.2.6.tgz#99e6e75a746bdedd295a17e03dd1493055a1cc3b" + version "3.3.2" + resolved "https://neo.jfrog.io/neo/api/npm/npm/styled-components/-/styled-components-3.3.2.tgz#087b96830ee3d60d9a8b5ef17c132b4f29cc71df" dependencies: buffer "^5.0.3" css-to-react-native "^2.0.3" @@ -9362,53 +8634,47 @@ styled-components@^3.2.0: stylis-rule-sheet@^0.0.10: version "0.0.10" - resolved "https://neo.jfrog.io/neo/api/npm/npm/stylis-rule-sheet/-/stylis-rule-sheet-0.0.10.tgz?dl=https://registry.npmjs.org/stylis-rule-sheet/-/stylis-rule-sheet-0.0.10.tgz#44e64a2b076643f4b52e5ff71efc04d8c3c4a430" + resolved "https://neo.jfrog.io/neo/api/npm/npm/stylis-rule-sheet/-/stylis-rule-sheet-0.0.10.tgz#44e64a2b076643f4b52e5ff71efc04d8c3c4a430" stylis@^3.0.0, stylis@^3.4.10, stylis@^3.5.0: - version "3.5.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/stylis/-/stylis-3.5.0.tgz?dl=https://registry.npmjs.org/stylis/-/stylis-3.5.0.tgz#016fa239663d77f868fef5b67cf201c4b7c701e1" + version "3.5.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/stylis/-/stylis-3.5.1.tgz#fd341d59f57f9aeb412bc14c9d8a8670b438e03b" suber@^5.0.1: version "5.0.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/suber/-/suber-5.0.1.tgz#78fc93bfc7444d11a23e160c5f062dc7967d6a58" sugarss@^1.0.0: - version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/sugarss/-/sugarss-1.0.0.tgz#65e51b3958432fb70d5451a68bb33e32d0cf1ef7" + version "1.0.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/sugarss/-/sugarss-1.0.1.tgz#be826d9003e0f247735f92365dc3fd7f1bae9e44" dependencies: - postcss "^6.0.0" + postcss "^6.0.14" supports-color@5.1.0: version "5.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/supports-color/-/supports-color-5.1.0.tgz?dl=https://registry.npmjs.org/supports-color/-/supports-color-5.1.0.tgz#058a021d1b619f7ddf3980d712ea3590ce7de3d5" + resolved "https://neo.jfrog.io/neo/api/npm/npm/supports-color/-/supports-color-5.1.0.tgz#058a021d1b619f7ddf3980d712ea3590ce7de3d5" dependencies: has-flag "^2.0.0" supports-color@^2.0.0: version "2.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/supports-color/-/supports-color-2.0.0.tgz?dl=https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" + resolved "https://neo.jfrog.io/neo/api/npm/npm/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" supports-color@^3.1.2, supports-color@^3.2.3: version "3.2.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/supports-color/-/supports-color-3.2.3.tgz?dl=https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" + resolved "https://neo.jfrog.io/neo/api/npm/npm/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" dependencies: has-flag "^1.0.0" -supports-color@^4.0.0, supports-color@^4.2.1, supports-color@^4.4.0: +supports-color@^4.0.0, supports-color@^4.2.1: version "4.5.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" dependencies: has-flag "^2.0.0" -supports-color@^5.1.0: - version "5.3.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/supports-color/-/supports-color-5.3.0.tgz#5b24ac15db80fa927cf5227a4a33fd3c4c7676c0" - dependencies: - has-flag "^3.0.0" - -supports-color@^5.2.0, supports-color@^5.3.0, supports-color@^5.4.0: +supports-color@^5.1.0, supports-color@^5.3.0, supports-color@^5.4.0: version "5.4.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/supports-color/-/supports-color-5.4.0.tgz?dl=https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz#1c6b337402c2137605efe19f10fec390f6faab54" + resolved "https://neo.jfrog.io/neo/api/npm/npm/supports-color/-/supports-color-5.4.0.tgz#1c6b337402c2137605efe19f10fec390f6faab54" dependencies: has-flag "^3.0.0" @@ -9418,7 +8684,7 @@ svg-tags@1: svgo@^0.7.0: version "0.7.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/svgo/-/svgo-0.7.2.tgz?dl=https://registry.npmjs.org/svgo/-/svgo-0.7.2.tgz#9f5772413952135c6fefbf40afe6a4faa88b4bb5" + resolved "https://neo.jfrog.io/neo/api/npm/npm/svgo/-/svgo-0.7.2.tgz#9f5772413952135c6fefbf40afe6a4faa88b4bb5" dependencies: coa "~1.0.1" colors "~1.1.2" @@ -9434,19 +8700,19 @@ swipe-js-iso@^2.0.4: symbol-observable@1.0.1: version "1.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/symbol-observable/-/symbol-observable-1.0.1.tgz?dl=https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.0.1.tgz#8340fc4702c3122df5d22288f88283f513d3fdd4" + resolved "https://neo.jfrog.io/neo/api/npm/npm/symbol-observable/-/symbol-observable-1.0.1.tgz#8340fc4702c3122df5d22288f88283f513d3fdd4" symbol-observable@^1.0.2, symbol-observable@^1.0.3: version "1.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/symbol-observable/-/symbol-observable-1.2.0.tgz?dl=https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804" + resolved "https://neo.jfrog.io/neo/api/npm/npm/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804" -symbol-tree@^3.2.1, symbol-tree@^3.2.2: +symbol-tree@^3.2.2: version "3.2.2" resolved "https://neo.jfrog.io/neo/api/npm/npm/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" table@4.0.2: version "4.0.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/table/-/table-4.0.2.tgz?dl=https://registry.npmjs.org/table/-/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36" + resolved "https://neo.jfrog.io/neo/api/npm/npm/table/-/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36" dependencies: ajv "^5.2.3" ajv-keywords "^2.1.0" @@ -9457,11 +8723,11 @@ table@4.0.2: tapable@^0.2.7: version "0.2.8" - resolved "https://neo.jfrog.io/neo/api/npm/npm/tapable/-/tapable-0.2.8.tgz?dl=https://registry.npmjs.org/tapable/-/tapable-0.2.8.tgz#99372a5c999bf2df160afc0d74bed4f47948cd22" + resolved "https://neo.jfrog.io/neo/api/npm/npm/tapable/-/tapable-0.2.8.tgz#99372a5c999bf2df160afc0d74bed4f47948cd22" tar-pack@^3.4.0: version "3.4.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/tar-pack/-/tar-pack-3.4.1.tgz?dl=https://registry.npmjs.org/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" + resolved "https://neo.jfrog.io/neo/api/npm/npm/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" dependencies: debug "^2.2.0" fstream "^1.0.10" @@ -9474,19 +8740,19 @@ tar-pack@^3.4.0: tar@^2.2.1: version "2.2.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/tar/-/tar-2.2.1.tgz?dl=https://registry.npmjs.org/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" dependencies: block-stream "*" fstream "^1.0.2" inherits "2" tar@^4: - version "4.4.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/tar/-/tar-4.4.2.tgz?dl=https://registry.npmjs.org/tar/-/tar-4.4.2.tgz#60685211ba46b38847b1ae7ee1a24d744a2cd462" + version "4.4.4" + resolved "https://neo.jfrog.io/neo/api/npm/npm/tar/-/tar-4.4.4.tgz#ec8409fae9f665a4355cc3b4087d0820232bb8cd" dependencies: chownr "^1.0.1" fs-minipass "^1.2.5" - minipass "^2.2.4" + minipass "^2.3.3" minizlib "^1.1.0" mkdirp "^0.5.0" safe-buffer "^5.1.2" @@ -9496,19 +8762,9 @@ tcomb@^2.5.1: version "2.7.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/tcomb/-/tcomb-2.7.0.tgz#10d62958041669a5d53567b9a4ee8cde22b1c2b0" -test-exclude@^4.1.1: - version "4.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/test-exclude/-/test-exclude-4.1.1.tgz#4d84964b0966b0087ecc334a2ce002d3d9341e26" - dependencies: - arrify "^1.0.1" - micromatch "^2.3.11" - object-assign "^4.1.0" - read-pkg-up "^1.0.1" - require-main-filename "^1.0.1" - test-exclude@^4.2.1: version "4.2.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/test-exclude/-/test-exclude-4.2.1.tgz?dl=https://registry.npmjs.org/test-exclude/-/test-exclude-4.2.1.tgz#dfa222f03480bca69207ca728b37d74b45f724fa" + resolved "https://neo.jfrog.io/neo/api/npm/npm/test-exclude/-/test-exclude-4.2.1.tgz#dfa222f03480bca69207ca728b37d74b45f724fa" dependencies: arrify "^1.0.1" micromatch "^3.1.8" @@ -9518,7 +8774,7 @@ test-exclude@^4.2.1: text-table@~0.2.0: version "0.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/text-table/-/text-table-0.2.0.tgz?dl=https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + resolved "https://neo.jfrog.io/neo/api/npm/npm/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" throat@^4.0.0: version "4.1.0" @@ -9549,7 +8805,7 @@ time-stamp@^2.0.0: timers-browserify@^2.0.4: version "2.0.10" - resolved "https://neo.jfrog.io/neo/api/npm/npm/timers-browserify/-/timers-browserify-2.0.10.tgz?dl=https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.10.tgz#1d28e3d2aadf1d5a5996c4e9f95601cd053480ae" + resolved "https://neo.jfrog.io/neo/api/npm/npm/timers-browserify/-/timers-browserify-2.0.10.tgz#1d28e3d2aadf1d5a5996c4e9f95601cd053480ae" dependencies: setimmediate "^1.0.4" @@ -9561,7 +8817,7 @@ tmp@0.0.31: tmp@^0.0.33: version "0.0.33" - resolved "https://neo.jfrog.io/neo/api/npm/npm/tmp/-/tmp-0.0.33.tgz?dl=https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" + resolved "https://neo.jfrog.io/neo/api/npm/npm/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" dependencies: os-tmpdir "~1.0.2" @@ -9575,11 +8831,11 @@ to-array@0.1.4: to-arraybuffer@^1.0.0: version "1.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz?dl=https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" + resolved "https://neo.jfrog.io/neo/api/npm/npm/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" to-fast-properties@^1.0.3: version "1.0.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/to-fast-properties/-/to-fast-properties-1.0.3.tgz?dl=https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" + resolved "https://neo.jfrog.io/neo/api/npm/npm/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" to-fast-properties@^2.0.0: version "2.0.0" @@ -9608,88 +8864,78 @@ to-regex@^3.0.1, to-regex@^3.0.2: safe-regex "^1.1.0" toposort@^1.0.0: - version "1.0.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/toposort/-/toposort-1.0.4.tgz#a86107690cbee8cae43b349d2f60162500924dfc" + version "1.0.7" + resolved "https://neo.jfrog.io/neo/api/npm/npm/toposort/-/toposort-1.0.7.tgz#2e68442d9f64ec720b8cc89e6443ac6caa950029" tough-cookie@>=2.3.3, tough-cookie@^2.3.3: version "2.4.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/tough-cookie/-/tough-cookie-2.4.2.tgz?dl=https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.2.tgz#aa9133154518b494efab98a58247bfc38818c00c" + resolved "https://neo.jfrog.io/neo/api/npm/npm/tough-cookie/-/tough-cookie-2.4.2.tgz#aa9133154518b494efab98a58247bfc38818c00c" dependencies: psl "^1.1.24" punycode "^1.4.1" -tough-cookie@^2.3.2, tough-cookie@~2.3.3: - version "2.3.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" - dependencies: - punycode "^1.4.1" - -tough-cookie@~2.3.0: +tough-cookie@~2.3.0, tough-cookie@~2.3.3: version "2.3.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/tough-cookie/-/tough-cookie-2.3.4.tgz?dl=https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655" + resolved "https://neo.jfrog.io/neo/api/npm/npm/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655" dependencies: punycode "^1.4.1" tr46@^1.0.1: version "1.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/tr46/-/tr46-1.0.1.tgz?dl=https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" + resolved "https://neo.jfrog.io/neo/api/npm/npm/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" dependencies: punycode "^2.1.0" -tr46@~0.0.3: - version "0.0.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" - trim-newlines@^1.0.0: version "1.0.0" resolved "https://neo.jfrog.io/neo/api/npm/npm/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" trim-right@^1.0.1: version "1.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/trim-right/-/trim-right-1.0.1.tgz?dl=https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" + resolved "https://neo.jfrog.io/neo/api/npm/npm/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" tryer@^1.0.0: version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/tryer/-/tryer-1.0.0.tgz?dl=https://registry.npmjs.org/tryer/-/tryer-1.0.0.tgz#027b69fa823225e551cace3ef03b11f6ab37c1d7" + resolved "https://neo.jfrog.io/neo/api/npm/npm/tryer/-/tryer-1.0.0.tgz#027b69fa823225e551cace3ef03b11f6ab37c1d7" tslib@1.9.0: version "1.9.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/tslib/-/tslib-1.9.0.tgz?dl=https://registry.npmjs.org/tslib/-/tslib-1.9.0.tgz#e37a86fda8cbbaf23a057f473c9f4dc64e5fc2e8" + resolved "https://neo.jfrog.io/neo/api/npm/npm/tslib/-/tslib-1.9.0.tgz#e37a86fda8cbbaf23a057f473c9f4dc64e5fc2e8" tty-browserify@0.0.0: version "0.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/tty-browserify/-/tty-browserify-0.0.0.tgz?dl=https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" + resolved "https://neo.jfrog.io/neo/api/npm/npm/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" tunnel-agent@^0.6.0: version "0.6.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/tunnel-agent/-/tunnel-agent-0.6.0.tgz?dl=https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" + resolved "https://neo.jfrog.io/neo/api/npm/npm/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" dependencies: safe-buffer "^5.0.1" tweetnacl@^0.14.3, tweetnacl@~0.14.0: version "0.14.5" - resolved "https://neo.jfrog.io/neo/api/npm/npm/tweetnacl/-/tweetnacl-0.14.5.tgz?dl=https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" + resolved "https://neo.jfrog.io/neo/api/npm/npm/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" type-check@~0.3.2: version "0.3.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/type-check/-/type-check-0.3.2.tgz?dl=https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" + resolved "https://neo.jfrog.io/neo/api/npm/npm/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" dependencies: prelude-ls "~1.1.2" type-detect@^4.0.0: version "4.0.8" - resolved "https://neo.jfrog.io/neo/api/npm/npm/type-detect/-/type-detect-4.0.8.tgz?dl=https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" + resolved "https://neo.jfrog.io/neo/api/npm/npm/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" type-is@~1.6.15, type-is@~1.6.16: version "1.6.16" - resolved "https://neo.jfrog.io/neo/api/npm/npm/type-is/-/type-is-1.6.16.tgz?dl=https://registry.npmjs.org/type-is/-/type-is-1.6.16.tgz#f89ce341541c672b25ee7ae3c73dee3b2be50194" + resolved "https://neo.jfrog.io/neo/api/npm/npm/type-is/-/type-is-1.6.16.tgz#f89ce341541c672b25ee7ae3c73dee3b2be50194" dependencies: media-typer "0.3.0" mime-types "~2.1.18" typedarray@^0.0.6: version "0.0.6" - resolved "https://neo.jfrog.io/neo/api/npm/npm/typedarray/-/typedarray-0.0.6.tgz?dl=https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" + resolved "https://neo.jfrog.io/neo/api/npm/npm/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" typescript-eslint-parser@^11.0.0: version "11.0.0" @@ -9706,25 +8952,18 @@ typescript-eslint-parser@^7.0.0: semver "5.3.0" typescript@^2.4.2, typescript@^2.5.1: - version "2.7.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/typescript/-/typescript-2.7.2.tgz#2d615a1ef4aee4f574425cdff7026edf81919836" + version "2.9.2" + resolved "https://neo.jfrog.io/neo/api/npm/npm/typescript/-/typescript-2.9.2.tgz#1cbf61d05d6b96269244eb6a3bce4bd914e0f00c" -ua-parser-js@^0.7.9: +ua-parser-js@^0.7.18: version "0.7.18" - resolved "https://neo.jfrog.io/neo/api/npm/npm/ua-parser-js/-/ua-parser-js-0.7.18.tgz?dl=https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.18.tgz#a7bfd92f56edfb117083b69e31d2aa8882d4b1ed" - -uglify-js@3.1.x: - version "3.1.10" - resolved "https://neo.jfrog.io/neo/api/npm/npm/uglify-js/-/uglify-js-3.1.10.tgz#c4a5f9b5c6276b40cb971c1d97c9eeb26af9509c" - dependencies: - commander "~2.11.0" - source-map "~0.6.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/ua-parser-js/-/ua-parser-js-0.7.18.tgz#a7bfd92f56edfb117083b69e31d2aa8882d4b1ed" uglify-js@3.3.x: - version "3.3.14" - resolved "https://neo.jfrog.io/neo/api/npm/npm/uglify-js/-/uglify-js-3.3.14.tgz#d3d84d18722ff342fa96029cca71c67367700079" + version "3.3.28" + resolved "https://neo.jfrog.io/neo/api/npm/npm/uglify-js/-/uglify-js-3.3.28.tgz#0efb9a13850e11303361c1051f64d2ec68d9be06" dependencies: - commander "~2.14.1" + commander "~2.15.0" source-map "~0.6.1" uglify-js@^2.6, uglify-js@^2.8.29: @@ -9738,11 +8977,11 @@ uglify-js@^2.6, uglify-js@^2.8.29: uglify-to-browserify@~1.0.0: version "1.0.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz?dl=https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" + resolved "https://neo.jfrog.io/neo/api/npm/npm/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" uglifyjs-webpack-plugin@^0.4.6: version "0.4.6" - resolved "https://neo.jfrog.io/neo/api/npm/npm/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.4.6.tgz?dl=https://registry.npmjs.org/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.4.6.tgz#b951f4abb6bd617e66f63eb891498e391763e309" + resolved "https://neo.jfrog.io/neo/api/npm/npm/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.4.6.tgz#b951f4abb6bd617e66f63eb891498e391763e309" dependencies: source-map "^0.5.6" uglify-js "^2.8.29" @@ -9750,11 +8989,11 @@ uglifyjs-webpack-plugin@^0.4.6: uid-number@^0.0.6: version "0.0.6" - resolved "https://neo.jfrog.io/neo/api/npm/npm/uid-number/-/uid-number-0.0.6.tgz?dl=https://registry.npmjs.org/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" + resolved "https://neo.jfrog.io/neo/api/npm/npm/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" ultron@~1.1.0: version "1.1.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/ultron/-/ultron-1.1.1.tgz?dl=https://registry.npmjs.org/ultron/-/ultron-1.1.1.tgz#9fe1536a10a664a65266a1e3ccf85fd36302bc9c" + resolved "https://neo.jfrog.io/neo/api/npm/npm/ultron/-/ultron-1.1.1.tgz#9fe1536a10a664a65266a1e3ccf85fd36302bc9c" union-value@^1.0.0: version "1.0.0" @@ -9767,11 +9006,11 @@ union-value@^1.0.0: uniq@^1.0.1: version "1.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/uniq/-/uniq-1.0.1.tgz?dl=https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" + resolved "https://neo.jfrog.io/neo/api/npm/npm/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" uniqs@^2.0.0: version "2.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/uniqs/-/uniqs-2.0.0.tgz?dl=https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02" + resolved "https://neo.jfrog.io/neo/api/npm/npm/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02" unique-filename@^1.1.0: version "1.1.0" @@ -9798,7 +9037,7 @@ universalify@^0.1.0: unpipe@1.0.0, unpipe@~1.0.0: version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/unpipe/-/unpipe-1.0.0.tgz?dl=https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" + resolved "https://neo.jfrog.io/neo/api/npm/npm/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" unset-value@^1.0.0: version "1.0.0" @@ -9807,17 +9046,17 @@ unset-value@^1.0.0: has-value "^0.3.1" isobject "^3.0.0" -upath@^1.0.0: - version "1.0.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/upath/-/upath-1.0.4.tgz#ee2321ba0a786c50973db043a50b7bcba822361d" +upath@^1.0.5: + version "1.1.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/upath/-/upath-1.1.0.tgz#35256597e46a581db4793d0ce47fa9aebfc9fabd" upper-case@^1.1.1: version "1.1.3" resolved "https://neo.jfrog.io/neo/api/npm/npm/upper-case/-/upper-case-1.1.3.tgz#f6b4501c2ec4cdd26ba78be7222961de77621598" uri-js@^4.2.1: - version "4.2.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/uri-js/-/uri-js-4.2.1.tgz?dl=https://registry.npmjs.org/uri-js/-/uri-js-4.2.1.tgz#4595a80a51f356164e22970df64c7abd6ade9850" + version "4.2.2" + resolved "https://neo.jfrog.io/neo/api/npm/npm/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" dependencies: punycode "^2.1.0" @@ -9832,23 +9071,9 @@ url-loader@^0.5.8: loader-utils "^1.0.2" mime "1.3.x" -url-parse@1.0.x: - version "1.0.5" - resolved "https://neo.jfrog.io/neo/api/npm/npm/url-parse/-/url-parse-1.0.5.tgz#0854860422afdcfefeb6c965c662d4800169927b" - dependencies: - querystringify "0.0.x" - requires-port "1.0.x" - -url-parse@^1.1.8: - version "1.2.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/url-parse/-/url-parse-1.2.0.tgz#3a19e8aaa6d023ddd27dcc44cb4fc8f7fec23986" - dependencies: - querystringify "~1.0.0" - requires-port "~1.0.0" - -url-parse@^1.1.9: - version "1.4.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/url-parse/-/url-parse-1.4.0.tgz?dl=https://registry.npmjs.org/url-parse/-/url-parse-1.4.0.tgz#6bfdaad60098c7fe06f623e42b22de62de0d3d75" +url-parse@^1.1.8, url-parse@^1.1.9, url-parse@~1.4.0: + version "1.4.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/url-parse/-/url-parse-1.4.1.tgz#4dec9dad3dc8585f862fed461d2e19bbf623df30" dependencies: querystringify "^2.0.0" requires-port "^1.0.0" @@ -9868,21 +9093,27 @@ use@^3.1.0: util-deprecate@~1.0.1: version "1.0.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/util-deprecate/-/util-deprecate-1.0.2.tgz?dl=https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + resolved "https://neo.jfrog.io/neo/api/npm/npm/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" util.promisify@^1.0.0: version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/util.promisify/-/util.promisify-1.0.0.tgz?dl=https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" + resolved "https://neo.jfrog.io/neo/api/npm/npm/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" dependencies: define-properties "^1.1.2" object.getownpropertydescriptors "^2.0.3" -util@0.10.3, util@^0.10.3: +util@0.10.3: version "0.10.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/util/-/util-0.10.3.tgz?dl=https://registry.npmjs.org/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" + resolved "https://neo.jfrog.io/neo/api/npm/npm/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" dependencies: inherits "2.0.1" +util@^0.10.3: + version "0.10.4" + resolved "https://neo.jfrog.io/neo/api/npm/npm/util/-/util-0.10.4.tgz#3aa0125bfe668a4672de58857d3ace27ecb76901" + dependencies: + inherits "2.0.3" + utila@~0.3: version "0.3.3" resolved "https://neo.jfrog.io/neo/api/npm/npm/utila/-/utila-0.3.3.tgz#d7e8e7d7e309107092b05f8d9688824d633a4226" @@ -9893,34 +9124,30 @@ utila@~0.4: utils-merge@1.0.1: version "1.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/utils-merge/-/utils-merge-1.0.1.tgz?dl=https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" + resolved "https://neo.jfrog.io/neo/api/npm/npm/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" -uuid@^3.0.0, uuid@^3.0.1: +uuid@^3.0.0, uuid@^3.0.1, uuid@^3.1.0: version "3.2.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14" -uuid@^3.1.0: - version "3.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" - validate-npm-package-license@^3.0.1: version "3.0.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/validate-npm-package-license/-/validate-npm-package-license-3.0.3.tgz?dl=https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.3.tgz#81643bcbef1bdfecd4623793dc4648948ba98338" + resolved "https://neo.jfrog.io/neo/api/npm/npm/validate-npm-package-license/-/validate-npm-package-license-3.0.3.tgz#81643bcbef1bdfecd4623793dc4648948ba98338" dependencies: spdx-correct "^3.0.0" spdx-expression-parse "^3.0.0" vary@~1.1.2: version "1.1.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/vary/-/vary-1.1.2.tgz?dl=https://registry.npmjs.org/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" + resolved "https://neo.jfrog.io/neo/api/npm/npm/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" vendors@^1.0.0: version "1.0.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/vendors/-/vendors-1.0.2.tgz?dl=https://registry.npmjs.org/vendors/-/vendors-1.0.2.tgz#7fcb5eef9f5623b156bcea89ec37d63676f21801" + resolved "https://neo.jfrog.io/neo/api/npm/npm/vendors/-/vendors-1.0.2.tgz#7fcb5eef9f5623b156bcea89ec37d63676f21801" verror@1.10.0: version "1.10.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/verror/-/verror-1.10.0.tgz?dl=https://registry.npmjs.org/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" + resolved "https://neo.jfrog.io/neo/api/npm/npm/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" dependencies: assert-plus "^1.0.0" core-util-is "1.0.2" @@ -9932,19 +9159,19 @@ viewport-dimensions@^0.2.0: vm-browserify@0.0.4: version "0.0.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/vm-browserify/-/vm-browserify-0.0.4.tgz?dl=https://registry.npmjs.org/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" + resolved "https://neo.jfrog.io/neo/api/npm/npm/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" dependencies: indexof "0.0.1" w3c-hr-time@^1.0.1: version "1.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz?dl=https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz#82ac2bff63d950ea9e3189a58a65625fedf19045" + resolved "https://neo.jfrog.io/neo/api/npm/npm/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz#82ac2bff63d950ea9e3189a58a65625fedf19045" dependencies: browser-process-hrtime "^0.1.2" wait-for-expect@^0.4.0: version "0.4.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/wait-for-expect/-/wait-for-expect-0.4.0.tgz?dl=https://registry.npmjs.org/wait-for-expect/-/wait-for-expect-0.4.0.tgz#341c96ab89d6102a0169a9be6cd0de354de92c17" + resolved "https://neo.jfrog.io/neo/api/npm/npm/wait-for-expect/-/wait-for-expect-0.4.0.tgz#341c96ab89d6102a0169a9be6cd0de354de92c17" wait-for-expect@^1.0.0: version "1.0.0" @@ -9965,7 +9192,7 @@ watch@~0.18.0: watchpack@^1.4.0: version "1.6.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/watchpack/-/watchpack-1.6.0.tgz?dl=https://registry.npmjs.org/watchpack/-/watchpack-1.6.0.tgz#4bc12c2ebe8aa277a71f1d3f14d685c7b446cd00" + resolved "https://neo.jfrog.io/neo/api/npm/npm/watchpack/-/watchpack-1.6.0.tgz#4bc12c2ebe8aa277a71f1d3f14d685c7b446cd00" dependencies: chokidar "^2.0.2" graceful-fs "^4.1.2" @@ -9977,17 +9204,13 @@ wbuf@^1.1.0, wbuf@^1.7.2: dependencies: minimalistic-assert "^1.0.0" -webidl-conversions@^3.0.0: - version "3.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" - -webidl-conversions@^4.0.0, webidl-conversions@^4.0.2: +webidl-conversions@^4.0.2: version "4.0.2" resolved "https://neo.jfrog.io/neo/api/npm/npm/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" webpack-bundle-analyzer@^2.9.0: - version "2.13.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/webpack-bundle-analyzer/-/webpack-bundle-analyzer-2.13.0.tgz?dl=https://registry.npmjs.org/webpack-bundle-analyzer/-/webpack-bundle-analyzer-2.13.0.tgz#8d7db44c3d4844bc911890998e1110514cf12264" + version "2.13.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/webpack-bundle-analyzer/-/webpack-bundle-analyzer-2.13.1.tgz#07d2176c6e86c3cdce4c23e56fae2a7b6b4ad526" dependencies: acorn "^5.3.0" bfj-node4 "^5.2.0" @@ -10004,7 +9227,7 @@ webpack-bundle-analyzer@^2.9.0: webpack-dashboard@^2.0.0: version "2.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/webpack-dashboard/-/webpack-dashboard-2.0.0.tgz?dl=https://registry.npmjs.org/webpack-dashboard/-/webpack-dashboard-2.0.0.tgz#70db22e7bb5b12b4a7fde82de87ce01eed8d921c" + resolved "https://neo.jfrog.io/neo/api/npm/npm/webpack-dashboard/-/webpack-dashboard-2.0.0.tgz#70db22e7bb5b12b4a7fde82de87ce01eed8d921c" dependencies: blessed "^0.1.81" commander "^2.15.1" @@ -10060,14 +9283,14 @@ webpack-dev-server@^2.7.1: webpack-sources@^1.0.1: version "1.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/webpack-sources/-/webpack-sources-1.1.0.tgz?dl=https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.1.0.tgz#a101ebae59d6507354d71d8013950a3a8b7a5a54" + resolved "https://neo.jfrog.io/neo/api/npm/npm/webpack-sources/-/webpack-sources-1.1.0.tgz#a101ebae59d6507354d71d8013950a3a8b7a5a54" dependencies: source-list-map "^2.0.0" source-map "~0.6.1" webpack@^3.11.0: version "3.12.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/webpack/-/webpack-3.12.0.tgz?dl=https://registry.npmjs.org/webpack/-/webpack-3.12.0.tgz#3f9e34360370602fcf639e97939db486f4ec0d74" + resolved "https://neo.jfrog.io/neo/api/npm/npm/webpack/-/webpack-3.12.0.tgz#3f9e34360370602fcf639e97939db486f4ec0d74" dependencies: acorn "^5.0.0" acorn-dynamic-import "^2.0.0" @@ -10094,45 +9317,32 @@ webpack@^3.11.0: websocket-driver@>=0.5.1: version "0.7.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/websocket-driver/-/websocket-driver-0.7.0.tgz?dl=https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.0.tgz#0caf9d2d755d93aee049d4bdd0d3fe2cca2a24eb" + resolved "https://neo.jfrog.io/neo/api/npm/npm/websocket-driver/-/websocket-driver-0.7.0.tgz#0caf9d2d755d93aee049d4bdd0d3fe2cca2a24eb" dependencies: http-parser-js ">=0.4.0" websocket-extensions ">=0.1.1" websocket-extensions@>=0.1.1: version "0.1.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/websocket-extensions/-/websocket-extensions-0.1.3.tgz?dl=https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.3.tgz#5d2ff22977003ec687a4b87073dfbbac146ccf29" - -whatwg-encoding@^1.0.1: - version "1.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" - dependencies: - iconv-lite "0.4.13" + resolved "https://neo.jfrog.io/neo/api/npm/npm/websocket-extensions/-/websocket-extensions-0.1.3.tgz#5d2ff22977003ec687a4b87073dfbbac146ccf29" -whatwg-encoding@^1.0.3: +whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.3: version "1.0.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/whatwg-encoding/-/whatwg-encoding-1.0.3.tgz?dl=https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.3.tgz#57c235bc8657e914d24e1a397d3c82daee0a6ba3" + resolved "https://neo.jfrog.io/neo/api/npm/npm/whatwg-encoding/-/whatwg-encoding-1.0.3.tgz#57c235bc8657e914d24e1a397d3c82daee0a6ba3" dependencies: iconv-lite "0.4.19" whatwg-fetch@2.0.4, whatwg-fetch@>=0.10.0: version "2.0.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz?dl=https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz#dde6a5df315f9d39991aa17621853d720b85566f" + resolved "https://neo.jfrog.io/neo/api/npm/npm/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz#dde6a5df315f9d39991aa17621853d720b85566f" whatwg-mimetype@^2.0.0, whatwg-mimetype@^2.1.0: version "2.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/whatwg-mimetype/-/whatwg-mimetype-2.1.0.tgz?dl=https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.1.0.tgz#f0f21d76cbba72362eb609dbed2a30cd17fcc7d4" - -whatwg-url@^4.3.0: - version "4.8.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/whatwg-url/-/whatwg-url-4.8.0.tgz#d2981aa9148c1e00a41c5a6131166ab4683bbcc0" - dependencies: - tr46 "~0.0.3" - webidl-conversions "^3.0.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/whatwg-mimetype/-/whatwg-mimetype-2.1.0.tgz#f0f21d76cbba72362eb609dbed2a30cd17fcc7d4" whatwg-url@^6.4.0, whatwg-url@^6.4.1: version "6.5.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/whatwg-url/-/whatwg-url-6.5.0.tgz?dl=https://registry.npmjs.org/whatwg-url/-/whatwg-url-6.5.0.tgz#f2df02bff176fd65070df74ad5ccbb5a199965a8" + resolved "https://neo.jfrog.io/neo/api/npm/npm/whatwg-url/-/whatwg-url-6.5.0.tgz#f2df02bff176fd65070df74ad5ccbb5a199965a8" dependencies: lodash.sortby "^4.7.0" tr46 "^1.0.1" @@ -10140,7 +9350,7 @@ whatwg-url@^6.4.0, whatwg-url@^6.4.1: whet.extend@~0.9.9: version "0.9.9" - resolved "https://neo.jfrog.io/neo/api/npm/npm/whet.extend/-/whet.extend-0.9.9.tgz?dl=https://registry.npmjs.org/whet.extend/-/whet.extend-0.9.9.tgz#f877d5bf648c97e5aa542fadc16d6a259b9c11a1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/whet.extend/-/whet.extend-0.9.9.tgz#f877d5bf648c97e5aa542fadc16d6a259b9c11a1" which-module@^1.0.0: version "1.0.0" @@ -10148,37 +9358,31 @@ which-module@^1.0.0: which-module@^2.0.0: version "2.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/which-module/-/which-module-2.0.0.tgz?dl=https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" - -which@^1.2.10, which@^1.2.12, which@^1.2.9: - version "1.3.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" - dependencies: - isexe "^2.0.0" + resolved "https://neo.jfrog.io/neo/api/npm/npm/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" -which@^1.3.0: +which@^1.2.10, which@^1.2.12, which@^1.2.9, which@^1.3.0: version "1.3.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/which/-/which-1.3.1.tgz?dl=https://registry.npmjs.org/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" + resolved "https://neo.jfrog.io/neo/api/npm/npm/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" dependencies: isexe "^2.0.0" wide-align@^1.1.0: - version "1.1.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/wide-align/-/wide-align-1.1.2.tgz?dl=https://registry.npmjs.org/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" + version "1.1.3" + resolved "https://neo.jfrog.io/neo/api/npm/npm/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" dependencies: - string-width "^1.0.2" + string-width "^1.0.2 || 2" window-size@0.1.0: version "0.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/window-size/-/window-size-0.1.0.tgz?dl=https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" + resolved "https://neo.jfrog.io/neo/api/npm/npm/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" window-size@^0.1.4: version "0.1.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/window-size/-/window-size-0.1.4.tgz?dl=https://registry.npmjs.org/window-size/-/window-size-0.1.4.tgz#f8e1aa1ee5a53ec5bf151ffa09742a6ad7697876" + resolved "https://neo.jfrog.io/neo/api/npm/npm/window-size/-/window-size-0.1.4.tgz#f8e1aa1ee5a53ec5bf151ffa09742a6ad7697876" wordwrap@0.0.2: version "0.0.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/wordwrap/-/wordwrap-0.0.2.tgz?dl=https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" + resolved "https://neo.jfrog.io/neo/api/npm/npm/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" wordwrap@~0.0.2: version "0.0.3" @@ -10186,14 +9390,7 @@ wordwrap@~0.0.2: wordwrap@~1.0.0: version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/wordwrap/-/wordwrap-1.0.0.tgz?dl=https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" - -worker-farm@^1.3.1: - version "1.5.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/worker-farm/-/worker-farm-1.5.0.tgz#adfdf0cd40581465ed0a1f648f9735722afd5c8d" - dependencies: - errno "^0.1.4" - xtend "^4.0.1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" worker-loader@^0.8.0: version "0.8.1" @@ -10204,14 +9401,14 @@ worker-loader@^0.8.0: wrap-ansi@^2.0.0: version "2.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/wrap-ansi/-/wrap-ansi-2.1.0.tgz?dl=https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" + resolved "https://neo.jfrog.io/neo/api/npm/npm/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" dependencies: string-width "^1.0.1" strip-ansi "^3.0.1" wrappy@1: version "1.0.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/wrappy/-/wrappy-1.0.2.tgz?dl=https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + resolved "https://neo.jfrog.io/neo/api/npm/npm/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" write-file-atomic@^2.1.0: version "2.3.0" @@ -10223,36 +9420,28 @@ write-file-atomic@^2.1.0: write@^0.2.1: version "0.2.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/write/-/write-0.2.1.tgz?dl=https://registry.npmjs.org/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" + resolved "https://neo.jfrog.io/neo/api/npm/npm/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" dependencies: mkdirp "^0.5.1" ws@^4.0.0: version "4.1.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/ws/-/ws-4.1.0.tgz?dl=https://registry.npmjs.org/ws/-/ws-4.1.0.tgz#a979b5d7d4da68bf54efe0408967c324869a7289" + resolved "https://neo.jfrog.io/neo/api/npm/npm/ws/-/ws-4.1.0.tgz#a979b5d7d4da68bf54efe0408967c324869a7289" dependencies: async-limiter "~1.0.0" safe-buffer "~5.1.0" ws@~3.3.1: version "3.3.3" - resolved "https://neo.jfrog.io/neo/api/npm/npm/ws/-/ws-3.3.3.tgz?dl=https://registry.npmjs.org/ws/-/ws-3.3.3.tgz#f1cf84fe2d5e901ebce94efaece785f187a228f2" + resolved "https://neo.jfrog.io/neo/api/npm/npm/ws/-/ws-3.3.3.tgz#f1cf84fe2d5e901ebce94efaece785f187a228f2" dependencies: async-limiter "~1.0.0" safe-buffer "~5.1.0" ultron "~1.1.0" -xml-char-classes@^1.0.0: - version "1.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/xml-char-classes/-/xml-char-classes-1.0.0.tgz#64657848a20ffc5df583a42ad8a277b4512bbc4d" - -xml-name-validator@^2.0.1: - version "2.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" - xml-name-validator@^3.0.0: version "3.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/xml-name-validator/-/xml-name-validator-3.0.0.tgz?dl=https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" + resolved "https://neo.jfrog.io/neo/api/npm/npm/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" xml2js@^0.4.19: version "0.4.19" @@ -10262,8 +9451,8 @@ xml2js@^0.4.19: xmlbuilder "~9.0.1" xmlbuilder@~9.0.1: - version "9.0.4" - resolved "https://neo.jfrog.io/neo/api/npm/npm/xmlbuilder/-/xmlbuilder-9.0.4.tgz#519cb4ca686d005a8420d3496f3f0caeecca580f" + version "9.0.7" + resolved "https://neo.jfrog.io/neo/api/npm/npm/xmlbuilder/-/xmlbuilder-9.0.7.tgz#132ee63d2ec5565c557e20f4c22df9aca686b10d" xmlcreate@^1.0.1: version "1.0.2" @@ -10271,19 +9460,19 @@ xmlcreate@^1.0.1: xmlhttprequest-ssl@~1.5.4: version "1.5.5" - resolved "https://neo.jfrog.io/neo/api/npm/npm/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.5.tgz?dl=https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.5.tgz#c2876b06168aadc40e57d97e81191ac8f4398b3e" + resolved "https://neo.jfrog.io/neo/api/npm/npm/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.5.tgz#c2876b06168aadc40e57d97e81191ac8f4398b3e" xmlhttprequest@1.8.0: version "1.8.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/xmlhttprequest/-/xmlhttprequest-1.8.0.tgz?dl=https://registry.npmjs.org/xmlhttprequest/-/xmlhttprequest-1.8.0.tgz#67fe075c5c24fef39f9d65f5f7b7fe75171968fc" + resolved "https://neo.jfrog.io/neo/api/npm/npm/xmlhttprequest/-/xmlhttprequest-1.8.0.tgz#67fe075c5c24fef39f9d65f5f7b7fe75171968fc" -xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.1: +xtend@^4.0.0, xtend@~4.0.1: version "4.0.1" resolved "https://neo.jfrog.io/neo/api/npm/npm/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" y18n@^3.2.0, y18n@^3.2.1: version "3.2.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/y18n/-/y18n-3.2.1.tgz?dl=https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" + resolved "https://neo.jfrog.io/neo/api/npm/npm/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" y18n@^4.0.0: version "4.0.0" @@ -10291,11 +9480,11 @@ y18n@^4.0.0: yallist@^2.1.2: version "2.1.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/yallist/-/yallist-2.1.2.tgz?dl=https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" + resolved "https://neo.jfrog.io/neo/api/npm/npm/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" yallist@^3.0.0, yallist@^3.0.2: version "3.0.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/yallist/-/yallist-3.0.2.tgz?dl=https://registry.npmjs.org/yallist/-/yallist-3.0.2.tgz#8452b4bb7e83c7c188d8041c1a837c773d6d8bb9" + resolved "https://neo.jfrog.io/neo/api/npm/npm/yallist/-/yallist-3.0.2.tgz#8452b4bb7e83c7c188d8041c1a837c773d6d8bb9" yargs-parser@^4.2.0: version "4.2.1" @@ -10305,7 +9494,7 @@ yargs-parser@^4.2.0: yargs-parser@^7.0.0: version "7.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/yargs-parser/-/yargs-parser-7.0.0.tgz?dl=https://registry.npmjs.org/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" + resolved "https://neo.jfrog.io/neo/api/npm/npm/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" dependencies: camelcase "^4.1.0" @@ -10317,7 +9506,7 @@ yargs-parser@^8.0.0: yargs-parser@^9.0.2: version "9.0.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/yargs-parser/-/yargs-parser-9.0.2.tgz?dl=https://registry.npmjs.org/yargs-parser/-/yargs-parser-9.0.2.tgz#9ccf6a43460fe4ed40a9bb68f48d43b8a68cc077" + resolved "https://neo.jfrog.io/neo/api/npm/npm/yargs-parser/-/yargs-parser-9.0.2.tgz#9ccf6a43460fe4ed40a9bb68f48d43b8a68cc077" dependencies: camelcase "^4.1.0" @@ -10358,7 +9547,7 @@ yargs@6.6.0: yargs@^11.0.0: version "11.0.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/yargs/-/yargs-11.0.0.tgz?dl=https://registry.npmjs.org/yargs/-/yargs-11.0.0.tgz#c052931006c5eee74610e5fc0354bedfd08a201b" + resolved "https://neo.jfrog.io/neo/api/npm/npm/yargs/-/yargs-11.0.0.tgz#c052931006c5eee74610e5fc0354bedfd08a201b" dependencies: cliui "^4.0.0" decamelize "^1.1.1" @@ -10375,7 +9564,7 @@ yargs@^11.0.0: yargs@^3.10.0: version "3.32.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/yargs/-/yargs-3.32.0.tgz?dl=https://registry.npmjs.org/yargs/-/yargs-3.32.0.tgz#03088e9ebf9e756b69751611d2a5ef591482c995" + resolved "https://neo.jfrog.io/neo/api/npm/npm/yargs/-/yargs-3.32.0.tgz#03088e9ebf9e756b69751611d2a5ef591482c995" dependencies: camelcase "^2.0.1" cliui "^3.0.3" @@ -10387,25 +9576,7 @@ yargs@^3.10.0: yargs@^8.0.2: version "8.0.2" - resolved "https://neo.jfrog.io/neo/api/npm/npm/yargs/-/yargs-8.0.2.tgz?dl=https://registry.npmjs.org/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360" - dependencies: - camelcase "^4.1.0" - cliui "^3.2.0" - decamelize "^1.1.1" - get-caller-file "^1.0.1" - os-locale "^2.0.0" - read-pkg-up "^2.0.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 "^7.0.0" - -yargs@^9.0.0: - version "9.0.1" - resolved "https://neo.jfrog.io/neo/api/npm/npm/yargs/-/yargs-9.0.1.tgz#52acc23feecac34042078ee78c0c007f5085db4c" + resolved "https://neo.jfrog.io/neo/api/npm/npm/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360" dependencies: camelcase "^4.1.0" cliui "^3.2.0" @@ -10423,7 +9594,7 @@ yargs@^9.0.0: yargs@~3.10.0: version "3.10.0" - resolved "https://neo.jfrog.io/neo/api/npm/npm/yargs/-/yargs-3.10.0.tgz?dl=https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" + resolved "https://neo.jfrog.io/neo/api/npm/npm/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" dependencies: camelcase "^1.0.2" cliui "^2.1.0"