├── .editorconfig ├── .gitignore ├── .travis.yml ├── README.md ├── babel.config.js ├── index.js ├── jest.config.js ├── package-lock.json ├── package.json ├── tests ├── App.svelte ├── store.js └── syncable.spec.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = space 5 | indent_size = 2 6 | charset = utf-8 7 | trim_trailing_whitespace = false 8 | insert_final_newline = false -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | public/bundle.* 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "10" 4 | env: 5 | global: 6 | - BUILD_TIMEOUT=20000 7 | 8 | install: 9 | - npm ci || npm install -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Svelte Store Storage plugin [![Build Status](https://travis-ci.org/chainlist/svelte-syncable.svg?branch=master)](https://travis-ci.org/chainlist/svelte-syncable) 2 | 3 | ## Install 4 | 5 | `npm i -D svelte-syncable` 6 | 7 | or 8 | 9 | `yarn add -D svelte-syncable` 10 | 11 | ## How to use 12 | 13 | 14 | Setting a prefix is optional, the default one is `svelteStore` 15 | 16 | Create your syncable store value 17 | ```javascript 18 | // store.js 19 | import { syncable, setPrefix } from 'svelte-syncable'; 20 | 21 | // All the syncable value will be stored as "foorbar-{name}" 22 | setPrefix('foobar'); 23 | 24 | export const answer = syncable('answer', 42); 25 | export const todos = syncable('todos', [ 26 | { id: 1, text: 'Find the answer of life', done: false } 27 | ]); 28 | ``` 29 | 30 | Use your store value as every other svelte store observables 31 | ```html 32 | // Component.svelte 33 | 36 | 37 | 42 | 43 | The count is {$answer} 44 | ``` 45 | 46 | ## API 47 | 48 | ### setPrefix(prefix: string): void 49 | 50 | Set the localStorage prefix to {name} 51 | The function has to be called on the top of your store.js file. 52 | 53 | ### syncable(name: string, value: any, hydrate: boolean = true): SvelteObservable 54 | 55 | Create a svelte observable store value and synchronize it with the localStorage. 56 | The value will by hydrated from the localStorage by default, set `hydrate` to false to avoid this behavior. 57 | The `hydrate` parameter is optional and set to true by default. 58 | 59 | 60 | ```javascript 61 | import { syncable } from 'svelte-syncable'; 62 | import { writable } from 'svelte/store'; 63 | 64 | export const count = syncable('count', 0, false); 65 | ``` 66 | -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = function(api) { 2 | api.cache(true); 3 | 4 | return { 5 | presets: [ 6 | [ 7 | '@babel/preset-env', 8 | { 9 | targets: { 10 | node: 'current', 11 | }, 12 | }, 13 | ], 14 | ], 15 | }; 16 | }; -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | import { writable } from 'svelte/store'; 2 | 3 | let prefix = 'svelteStore'; 4 | 5 | const get = (key) => { 6 | if (typeof window === 'undefined' || !window.localStorage) return; 7 | const value = localStorage.getItem(key); 8 | return value === undefined 9 | ? "" 10 | : JSON.parse(value); 11 | }; 12 | 13 | const set = (key, value) => { 14 | if (typeof window === 'undefined' || !window.localStorage) return; 15 | 16 | localStorage.setItem(key, JSON.stringify(value)); 17 | }; 18 | 19 | const syncValue = (key, observable) => { 20 | observable.subscribe(data => { 21 | set(key, data); 22 | }); 23 | 24 | return observable; 25 | }; 26 | 27 | export const setPrefix = (prefixName) => { 28 | prefix = prefixName; 29 | }; 30 | 31 | export const syncable = (name, value, hydrate = true) => { 32 | const key = `${prefix}-${name}`; 33 | let lastValue = value; 34 | 35 | if (hydrate) { 36 | lastValue = get(key) || value; 37 | } 38 | 39 | return syncValue(key, writable(lastValue)); 40 | }; 41 | -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | setupFiles: ['jest-localstorage-mock'], 3 | transformIgnorePatterns: ['/node_modules/', '/cypress/'], 4 | transform: { 5 | '^.+\\.jsx?$': 'babel-jest', 6 | '^.+\\.svelte$': 'jest-transform-svelte', 7 | }, 8 | globals: { 9 | svelte: { 10 | compilerOptions: { 11 | accessors: true, 12 | }, 13 | }, 14 | }, 15 | }; -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "svelte-syncable", 3 | "version": "1.0.4", 4 | "description": "Syncable store for SvelteJS", 5 | "main": "index.js", 6 | "author": "Kevin Guillouard ", 7 | "keywords": [ 8 | "svelte", 9 | "localStorage", 10 | "syncable", 11 | "sync", 12 | "store", 13 | "svelte-store" 14 | ], 15 | "license": "MIT", 16 | "peerDependencies": { 17 | "svelte": "^3.0.0" 18 | }, 19 | "devDependencies": { 20 | "@babel/core": "^7.4.5", 21 | "@babel/preset-env": "^7.4.5", 22 | "babel-jest": "^24.8.0", 23 | "jest": "^24.8.0", 24 | "jest-localstorage-mock": "^2.4.0", 25 | "jest-transform-svelte": "^2.0.2" 26 | }, 27 | "scripts": { 28 | "test": "jest" 29 | }, 30 | "dependencies": { 31 | "svelte": "^3.6.0" 32 | }, 33 | "repository": { 34 | "type": "git", 35 | "url": "https://github.com/chainlist/svelte-syncable" 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /tests/App.svelte: -------------------------------------------------------------------------------- 1 | 4 | 5 | Count is {$count} 6 | 7 | -------------------------------------------------------------------------------- /tests/store.js: -------------------------------------------------------------------------------- 1 | import { syncable } from '../index'; 2 | 3 | export const count = syncable('count', 0); -------------------------------------------------------------------------------- /tests/syncable.spec.js: -------------------------------------------------------------------------------- 1 | import App from './App.svelte'; 2 | import { syncable, setPrefix } from '../index'; 3 | import { get } from 'svelte/store'; 4 | 5 | let app = null; 6 | 7 | 8 | describe('syncable', () => { 9 | beforeEach(() => { 10 | setPrefix('svelteStore'); 11 | localStorage.clear(); 12 | }); 13 | 14 | test('App is constructed', () => { 15 | app = new App({ target: document.body }); 16 | expect(app).toBeTruthy(); 17 | }); 18 | 19 | test('syncable stores in localStorage', () => { 20 | syncable('count', 0); 21 | 22 | expect(localStorage.setItem).toHaveBeenLastCalledWith('svelteStore-count', "0"); 23 | }); 24 | 25 | test('syncable has a new prefix', () => { 26 | setPrefix('foobar'); 27 | syncable('count', 0); 28 | 29 | expect(localStorage.setItem).toHaveBeenLastCalledWith('foobar-count', "0"); 30 | }); 31 | 32 | test('syncable returns a SvelteObservable', () => { 33 | const count = syncable('count', 0); 34 | 35 | expect(count.subscribe).toBeInstanceOf(Function); 36 | expect(count.set).toBeInstanceOf(Function); 37 | expect(count.update).toBeInstanceOf(Function); 38 | }); 39 | 40 | test('stores is synced on component actions', () => { 41 | let app = new App({ target: document.body }); 42 | 43 | const count = document.querySelector('#count'); 44 | const increment = document.body.querySelector('#inc'); 45 | const decrement = document.body.querySelector('#dec'); 46 | 47 | increment.click(); 48 | expect(localStorage.getItem('svelteStore-count')).toBe('1'); 49 | increment.click(); 50 | expect(localStorage.getItem('svelteStore-count')).toBe('2'); 51 | 52 | setTimeout(() => expect(count.innerText).toBe('2')); 53 | 54 | decrement.click(); 55 | expect(localStorage.getItem('svelteStore-count')).toBe('1'); 56 | decrement.click(); 57 | expect(localStorage.getItem('svelteStore-count')).toBe('0'); 58 | setTimeout(() => expect(count.innerText).toBe('0')); 59 | }); 60 | 61 | test('syncable is hydrated from the stored value', () => { 62 | localStorage.setItem('svelteStore-count', 42); 63 | 64 | const countObservable = syncable('count', 0); 65 | 66 | expect(get(countObservable)).toBe(42); 67 | }); 68 | 69 | test('syncable is not hydrated from the stored value', () => { 70 | localStorage.setItem('svelteStore-count', 42); 71 | 72 | const countObservable = syncable('count', 0, false); 73 | 74 | expect(get(countObservable)).toBe(0); 75 | }); 76 | }); 77 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@^7.0.0": 6 | version "7.0.0" 7 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/code-frame/-/code-frame-7.0.0.tgz#06e2ab19bdb535385559aabb5ba59729482800f8" 8 | integrity sha1-BuKrGb21NThVWaq7W6WXKUgoAPg= 9 | dependencies: 10 | "@babel/highlight" "^7.0.0" 11 | 12 | "@babel/core@^7.1.0", "@babel/core@^7.4.5": 13 | version "7.4.5" 14 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/core/-/core-7.4.5.tgz#081f97e8ffca65a9b4b0fdc7e274e703f000c06a" 15 | integrity sha1-CB+X6P/KZam0sP3H4nTnA/AAwGo= 16 | dependencies: 17 | "@babel/code-frame" "^7.0.0" 18 | "@babel/generator" "^7.4.4" 19 | "@babel/helpers" "^7.4.4" 20 | "@babel/parser" "^7.4.5" 21 | "@babel/template" "^7.4.4" 22 | "@babel/traverse" "^7.4.5" 23 | "@babel/types" "^7.4.4" 24 | convert-source-map "^1.1.0" 25 | debug "^4.1.0" 26 | json5 "^2.1.0" 27 | lodash "^4.17.11" 28 | resolve "^1.3.2" 29 | semver "^5.4.1" 30 | source-map "^0.5.0" 31 | 32 | "@babel/generator@^7.4.0", "@babel/generator@^7.4.4": 33 | version "7.4.4" 34 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/generator/-/generator-7.4.4.tgz#174a215eb843fc392c7edcaabeaa873de6e8f041" 35 | integrity sha1-F0ohXrhD/DksftyqvqqHPebo8EE= 36 | dependencies: 37 | "@babel/types" "^7.4.4" 38 | jsesc "^2.5.1" 39 | lodash "^4.17.11" 40 | source-map "^0.5.0" 41 | trim-right "^1.0.1" 42 | 43 | "@babel/helper-annotate-as-pure@^7.0.0": 44 | version "7.0.0" 45 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0.tgz#323d39dd0b50e10c7c06ca7d7638e6864d8c5c32" 46 | integrity sha1-Mj053QtQ4Qx8Bsp9djjmhk2MXDI= 47 | dependencies: 48 | "@babel/types" "^7.0.0" 49 | 50 | "@babel/helper-builder-binary-assignment-operator-visitor@^7.1.0": 51 | version "7.1.0" 52 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.1.0.tgz#6b69628dfe4087798e0c4ed98e3d4a6b2fbd2f5f" 53 | integrity sha1-a2lijf5Ah3mODE7Zjj1Kay+9L18= 54 | dependencies: 55 | "@babel/helper-explode-assignable-expression" "^7.1.0" 56 | "@babel/types" "^7.0.0" 57 | 58 | "@babel/helper-call-delegate@^7.4.4": 59 | version "7.4.4" 60 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/helper-call-delegate/-/helper-call-delegate-7.4.4.tgz#87c1f8ca19ad552a736a7a27b1c1fcf8b1ff1f43" 61 | integrity sha1-h8H4yhmtVSpzanonscH8+LH/H0M= 62 | dependencies: 63 | "@babel/helper-hoist-variables" "^7.4.4" 64 | "@babel/traverse" "^7.4.4" 65 | "@babel/types" "^7.4.4" 66 | 67 | "@babel/helper-define-map@^7.4.4": 68 | version "7.4.4" 69 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/helper-define-map/-/helper-define-map-7.4.4.tgz#6969d1f570b46bdc900d1eba8e5d59c48ba2c12a" 70 | integrity sha1-aWnR9XC0a9yQDR66jl1ZxIuiwSo= 71 | dependencies: 72 | "@babel/helper-function-name" "^7.1.0" 73 | "@babel/types" "^7.4.4" 74 | lodash "^4.17.11" 75 | 76 | "@babel/helper-explode-assignable-expression@^7.1.0": 77 | version "7.1.0" 78 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.1.0.tgz#537fa13f6f1674df745b0c00ec8fe4e99681c8f6" 79 | integrity sha1-U3+hP28WdN90WwwA7I/k6ZaByPY= 80 | dependencies: 81 | "@babel/traverse" "^7.1.0" 82 | "@babel/types" "^7.0.0" 83 | 84 | "@babel/helper-function-name@^7.1.0": 85 | version "7.1.0" 86 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz#a0ceb01685f73355d4360c1247f582bfafc8ff53" 87 | integrity sha1-oM6wFoX3M1XUNgwSR/WCv6/I/1M= 88 | dependencies: 89 | "@babel/helper-get-function-arity" "^7.0.0" 90 | "@babel/template" "^7.1.0" 91 | "@babel/types" "^7.0.0" 92 | 93 | "@babel/helper-get-function-arity@^7.0.0": 94 | version "7.0.0" 95 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz#83572d4320e2a4657263734113c42868b64e49c3" 96 | integrity sha1-g1ctQyDipGVyY3NBE8QoaLZOScM= 97 | dependencies: 98 | "@babel/types" "^7.0.0" 99 | 100 | "@babel/helper-hoist-variables@^7.4.4": 101 | version "7.4.4" 102 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/helper-hoist-variables/-/helper-hoist-variables-7.4.4.tgz#0298b5f25c8c09c53102d52ac4a98f773eb2850a" 103 | integrity sha1-Api18lyMCcUxAtUqxKmPdz6yhQo= 104 | dependencies: 105 | "@babel/types" "^7.4.4" 106 | 107 | "@babel/helper-member-expression-to-functions@^7.0.0": 108 | version "7.0.0" 109 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.0.0.tgz#8cd14b0a0df7ff00f009e7d7a436945f47c7a16f" 110 | integrity sha1-jNFLCg33/wDwCefXpDaUX0fHoW8= 111 | dependencies: 112 | "@babel/types" "^7.0.0" 113 | 114 | "@babel/helper-module-imports@^7.0.0": 115 | version "7.0.0" 116 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/helper-module-imports/-/helper-module-imports-7.0.0.tgz#96081b7111e486da4d2cd971ad1a4fe216cc2e3d" 117 | integrity sha1-lggbcRHkhtpNLNlxrRpP4hbMLj0= 118 | dependencies: 119 | "@babel/types" "^7.0.0" 120 | 121 | "@babel/helper-module-transforms@^7.1.0", "@babel/helper-module-transforms@^7.4.4": 122 | version "7.4.4" 123 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/helper-module-transforms/-/helper-module-transforms-7.4.4.tgz#96115ea42a2f139e619e98ed46df6019b94414b8" 124 | integrity sha1-lhFepCovE55hnpjtRt9gGblEFLg= 125 | dependencies: 126 | "@babel/helper-module-imports" "^7.0.0" 127 | "@babel/helper-simple-access" "^7.1.0" 128 | "@babel/helper-split-export-declaration" "^7.4.4" 129 | "@babel/template" "^7.4.4" 130 | "@babel/types" "^7.4.4" 131 | lodash "^4.17.11" 132 | 133 | "@babel/helper-optimise-call-expression@^7.0.0": 134 | version "7.0.0" 135 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.0.0.tgz#a2920c5702b073c15de51106200aa8cad20497d5" 136 | integrity sha1-opIMVwKwc8Fd5REGIAqoytIEl9U= 137 | dependencies: 138 | "@babel/types" "^7.0.0" 139 | 140 | "@babel/helper-plugin-utils@^7.0.0": 141 | version "7.0.0" 142 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz#bbb3fbee98661c569034237cc03967ba99b4f250" 143 | integrity sha1-u7P77phmHFaQNCN8wDlnupm08lA= 144 | 145 | "@babel/helper-regex@^7.0.0", "@babel/helper-regex@^7.4.4": 146 | version "7.4.4" 147 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/helper-regex/-/helper-regex-7.4.4.tgz#a47e02bc91fb259d2e6727c2a30013e3ac13c4a2" 148 | integrity sha1-pH4CvJH7JZ0uZyfCowAT46wTxKI= 149 | dependencies: 150 | lodash "^4.17.11" 151 | 152 | "@babel/helper-remap-async-to-generator@^7.1.0": 153 | version "7.1.0" 154 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.1.0.tgz#361d80821b6f38da75bd3f0785ece20a88c5fe7f" 155 | integrity sha1-Nh2AghtvONp1vT8HheziCojF/n8= 156 | dependencies: 157 | "@babel/helper-annotate-as-pure" "^7.0.0" 158 | "@babel/helper-wrap-function" "^7.1.0" 159 | "@babel/template" "^7.1.0" 160 | "@babel/traverse" "^7.1.0" 161 | "@babel/types" "^7.0.0" 162 | 163 | "@babel/helper-replace-supers@^7.1.0", "@babel/helper-replace-supers@^7.4.4": 164 | version "7.4.4" 165 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/helper-replace-supers/-/helper-replace-supers-7.4.4.tgz#aee41783ebe4f2d3ab3ae775e1cc6f1a90cefa27" 166 | integrity sha1-ruQXg+vk8tOrOud14cxvGpDO+ic= 167 | dependencies: 168 | "@babel/helper-member-expression-to-functions" "^7.0.0" 169 | "@babel/helper-optimise-call-expression" "^7.0.0" 170 | "@babel/traverse" "^7.4.4" 171 | "@babel/types" "^7.4.4" 172 | 173 | "@babel/helper-simple-access@^7.1.0": 174 | version "7.1.0" 175 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/helper-simple-access/-/helper-simple-access-7.1.0.tgz#65eeb954c8c245beaa4e859da6188f39d71e585c" 176 | integrity sha1-Ze65VMjCRb6qToWdphiPOdceWFw= 177 | dependencies: 178 | "@babel/template" "^7.1.0" 179 | "@babel/types" "^7.0.0" 180 | 181 | "@babel/helper-split-export-declaration@^7.4.4": 182 | version "7.4.4" 183 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.4.tgz#ff94894a340be78f53f06af038b205c49d993677" 184 | integrity sha1-/5SJSjQL549T8GrwOLIFxJ2ZNnc= 185 | dependencies: 186 | "@babel/types" "^7.4.4" 187 | 188 | "@babel/helper-wrap-function@^7.1.0": 189 | version "7.2.0" 190 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/helper-wrap-function/-/helper-wrap-function-7.2.0.tgz#c4e0012445769e2815b55296ead43a958549f6fa" 191 | integrity sha1-xOABJEV2nigVtVKW6tQ6lYVJ9vo= 192 | dependencies: 193 | "@babel/helper-function-name" "^7.1.0" 194 | "@babel/template" "^7.1.0" 195 | "@babel/traverse" "^7.1.0" 196 | "@babel/types" "^7.2.0" 197 | 198 | "@babel/helpers@^7.4.4": 199 | version "7.4.4" 200 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/helpers/-/helpers-7.4.4.tgz#868b0ef59c1dd4e78744562d5ce1b59c89f2f2a5" 201 | integrity sha1-hosO9Zwd1OeHRFYtXOG1nIny8qU= 202 | dependencies: 203 | "@babel/template" "^7.4.4" 204 | "@babel/traverse" "^7.4.4" 205 | "@babel/types" "^7.4.4" 206 | 207 | "@babel/highlight@^7.0.0": 208 | version "7.0.0" 209 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/highlight/-/highlight-7.0.0.tgz#f710c38c8d458e6dd9a201afb637fcb781ce99e4" 210 | integrity sha1-9xDDjI1Fjm3ZogGvtjf8t4HOmeQ= 211 | dependencies: 212 | chalk "^2.0.0" 213 | esutils "^2.0.2" 214 | js-tokens "^4.0.0" 215 | 216 | "@babel/parser@^7.1.0", "@babel/parser@^7.4.3", "@babel/parser@^7.4.4", "@babel/parser@^7.4.5": 217 | version "7.4.5" 218 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/parser/-/parser-7.4.5.tgz#04af8d5d5a2b044a2a1bffacc1e5e6673544e872" 219 | integrity sha1-BK+NXVorBEoqG/+sweXmZzVE6HI= 220 | 221 | "@babel/plugin-proposal-async-generator-functions@^7.2.0": 222 | version "7.2.0" 223 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.2.0.tgz#b289b306669dce4ad20b0252889a15768c9d417e" 224 | integrity sha1-somzBmadzkrSCwJSiJoVdoydQX4= 225 | dependencies: 226 | "@babel/helper-plugin-utils" "^7.0.0" 227 | "@babel/helper-remap-async-to-generator" "^7.1.0" 228 | "@babel/plugin-syntax-async-generators" "^7.2.0" 229 | 230 | "@babel/plugin-proposal-json-strings@^7.2.0": 231 | version "7.2.0" 232 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.2.0.tgz#568ecc446c6148ae6b267f02551130891e29f317" 233 | integrity sha1-Vo7MRGxhSK5rJn8CVREwiR4p8xc= 234 | dependencies: 235 | "@babel/helper-plugin-utils" "^7.0.0" 236 | "@babel/plugin-syntax-json-strings" "^7.2.0" 237 | 238 | "@babel/plugin-proposal-object-rest-spread@^7.4.4": 239 | version "7.4.4" 240 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.4.4.tgz#1ef173fcf24b3e2df92a678f027673b55e7e3005" 241 | integrity sha1-HvFz/PJLPi35KmePAnZztV5+MAU= 242 | dependencies: 243 | "@babel/helper-plugin-utils" "^7.0.0" 244 | "@babel/plugin-syntax-object-rest-spread" "^7.2.0" 245 | 246 | "@babel/plugin-proposal-optional-catch-binding@^7.2.0": 247 | version "7.2.0" 248 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.2.0.tgz#135d81edb68a081e55e56ec48541ece8065c38f5" 249 | integrity sha1-E12B7baKCB5V5W7EhUHs6AZcOPU= 250 | dependencies: 251 | "@babel/helper-plugin-utils" "^7.0.0" 252 | "@babel/plugin-syntax-optional-catch-binding" "^7.2.0" 253 | 254 | "@babel/plugin-proposal-unicode-property-regex@^7.4.4": 255 | version "7.4.4" 256 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.4.4.tgz#501ffd9826c0b91da22690720722ac7cb1ca9c78" 257 | integrity sha1-UB/9mCbAuR2iJpByByKsfLHKnHg= 258 | dependencies: 259 | "@babel/helper-plugin-utils" "^7.0.0" 260 | "@babel/helper-regex" "^7.4.4" 261 | regexpu-core "^4.5.4" 262 | 263 | "@babel/plugin-syntax-async-generators@^7.2.0": 264 | version "7.2.0" 265 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.2.0.tgz#69e1f0db34c6f5a0cf7e2b3323bf159a76c8cb7f" 266 | integrity sha1-aeHw2zTG9aDPfiszI78VmnbIy38= 267 | dependencies: 268 | "@babel/helper-plugin-utils" "^7.0.0" 269 | 270 | "@babel/plugin-syntax-json-strings@^7.2.0": 271 | version "7.2.0" 272 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.2.0.tgz#72bd13f6ffe1d25938129d2a186b11fd62951470" 273 | integrity sha1-cr0T9v/h0lk4Ep0qGGsR/WKVFHA= 274 | dependencies: 275 | "@babel/helper-plugin-utils" "^7.0.0" 276 | 277 | "@babel/plugin-syntax-object-rest-spread@^7.0.0", "@babel/plugin-syntax-object-rest-spread@^7.2.0": 278 | version "7.2.0" 279 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.2.0.tgz#3b7a3e733510c57e820b9142a6579ac8b0dfad2e" 280 | integrity sha1-O3o+czUQxX6CC5FCpleayLDfrS4= 281 | dependencies: 282 | "@babel/helper-plugin-utils" "^7.0.0" 283 | 284 | "@babel/plugin-syntax-optional-catch-binding@^7.2.0": 285 | version "7.2.0" 286 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.2.0.tgz#a94013d6eda8908dfe6a477e7f9eda85656ecf5c" 287 | integrity sha1-qUAT1u2okI3+akd+f57ahWVuz1w= 288 | dependencies: 289 | "@babel/helper-plugin-utils" "^7.0.0" 290 | 291 | "@babel/plugin-transform-arrow-functions@^7.2.0": 292 | version "7.2.0" 293 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.2.0.tgz#9aeafbe4d6ffc6563bf8f8372091628f00779550" 294 | integrity sha1-mur75Nb/xlY7+Pg3IJFijwB3lVA= 295 | dependencies: 296 | "@babel/helper-plugin-utils" "^7.0.0" 297 | 298 | "@babel/plugin-transform-async-to-generator@^7.4.4": 299 | version "7.4.4" 300 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.4.4.tgz#a3f1d01f2f21cadab20b33a82133116f14fb5894" 301 | integrity sha1-o/HQHy8hytqyCzOoITMRbxT7WJQ= 302 | dependencies: 303 | "@babel/helper-module-imports" "^7.0.0" 304 | "@babel/helper-plugin-utils" "^7.0.0" 305 | "@babel/helper-remap-async-to-generator" "^7.1.0" 306 | 307 | "@babel/plugin-transform-block-scoped-functions@^7.2.0": 308 | version "7.2.0" 309 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.2.0.tgz#5d3cc11e8d5ddd752aa64c9148d0db6cb79fd190" 310 | integrity sha1-XTzBHo1d3XUqpkyRSNDbbLef0ZA= 311 | dependencies: 312 | "@babel/helper-plugin-utils" "^7.0.0" 313 | 314 | "@babel/plugin-transform-block-scoping@^7.4.4": 315 | version "7.4.4" 316 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.4.4.tgz#c13279fabf6b916661531841a23c4b7dae29646d" 317 | integrity sha1-wTJ5+r9rkWZhUxhBojxLfa4pZG0= 318 | dependencies: 319 | "@babel/helper-plugin-utils" "^7.0.0" 320 | lodash "^4.17.11" 321 | 322 | "@babel/plugin-transform-classes@^7.4.4": 323 | version "7.4.4" 324 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/plugin-transform-classes/-/plugin-transform-classes-7.4.4.tgz#0ce4094cdafd709721076d3b9c38ad31ca715eb6" 325 | integrity sha1-DOQJTNr9cJchB207nDitMcpxXrY= 326 | dependencies: 327 | "@babel/helper-annotate-as-pure" "^7.0.0" 328 | "@babel/helper-define-map" "^7.4.4" 329 | "@babel/helper-function-name" "^7.1.0" 330 | "@babel/helper-optimise-call-expression" "^7.0.0" 331 | "@babel/helper-plugin-utils" "^7.0.0" 332 | "@babel/helper-replace-supers" "^7.4.4" 333 | "@babel/helper-split-export-declaration" "^7.4.4" 334 | globals "^11.1.0" 335 | 336 | "@babel/plugin-transform-computed-properties@^7.2.0": 337 | version "7.2.0" 338 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.2.0.tgz#83a7df6a658865b1c8f641d510c6f3af220216da" 339 | integrity sha1-g6ffamWIZbHI9kHVEMbzryICFto= 340 | dependencies: 341 | "@babel/helper-plugin-utils" "^7.0.0" 342 | 343 | "@babel/plugin-transform-destructuring@^7.4.4": 344 | version "7.4.4" 345 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.4.4.tgz#9d964717829cc9e4b601fc82a26a71a4d8faf20f" 346 | integrity sha1-nZZHF4KcyeS2AfyCompxpNj68g8= 347 | dependencies: 348 | "@babel/helper-plugin-utils" "^7.0.0" 349 | 350 | "@babel/plugin-transform-dotall-regex@^7.4.4": 351 | version "7.4.4" 352 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.4.4.tgz#361a148bc951444312c69446d76ed1ea8e4450c3" 353 | integrity sha1-NhoUi8lRREMSxpRG127R6o5EUMM= 354 | dependencies: 355 | "@babel/helper-plugin-utils" "^7.0.0" 356 | "@babel/helper-regex" "^7.4.4" 357 | regexpu-core "^4.5.4" 358 | 359 | "@babel/plugin-transform-duplicate-keys@^7.2.0": 360 | version "7.2.0" 361 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.2.0.tgz#d952c4930f312a4dbfff18f0b2914e60c35530b3" 362 | integrity sha1-2VLEkw8xKk2//xjwspFOYMNVMLM= 363 | dependencies: 364 | "@babel/helper-plugin-utils" "^7.0.0" 365 | 366 | "@babel/plugin-transform-exponentiation-operator@^7.2.0": 367 | version "7.2.0" 368 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.2.0.tgz#a63868289e5b4007f7054d46491af51435766008" 369 | integrity sha1-pjhoKJ5bQAf3BU1GSRr1FDV2YAg= 370 | dependencies: 371 | "@babel/helper-builder-binary-assignment-operator-visitor" "^7.1.0" 372 | "@babel/helper-plugin-utils" "^7.0.0" 373 | 374 | "@babel/plugin-transform-for-of@^7.4.4": 375 | version "7.4.4" 376 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.4.4.tgz#0267fc735e24c808ba173866c6c4d1440fc3c556" 377 | integrity sha1-Amf8c14kyAi6FzhmxsTRRA/DxVY= 378 | dependencies: 379 | "@babel/helper-plugin-utils" "^7.0.0" 380 | 381 | "@babel/plugin-transform-function-name@^7.4.4": 382 | version "7.4.4" 383 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.4.4.tgz#e1436116abb0610c2259094848754ac5230922ad" 384 | integrity sha1-4UNhFquwYQwiWQlISHVKxSMJIq0= 385 | dependencies: 386 | "@babel/helper-function-name" "^7.1.0" 387 | "@babel/helper-plugin-utils" "^7.0.0" 388 | 389 | "@babel/plugin-transform-literals@^7.2.0": 390 | version "7.2.0" 391 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/plugin-transform-literals/-/plugin-transform-literals-7.2.0.tgz#690353e81f9267dad4fd8cfd77eafa86aba53ea1" 392 | integrity sha1-aQNT6B+SZ9rU/Yz9d+r6hqulPqE= 393 | dependencies: 394 | "@babel/helper-plugin-utils" "^7.0.0" 395 | 396 | "@babel/plugin-transform-member-expression-literals@^7.2.0": 397 | version "7.2.0" 398 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.2.0.tgz#fa10aa5c58a2cb6afcf2c9ffa8cb4d8b3d489a2d" 399 | integrity sha1-+hCqXFiiy2r88sn/qMtNiz1Imi0= 400 | dependencies: 401 | "@babel/helper-plugin-utils" "^7.0.0" 402 | 403 | "@babel/plugin-transform-modules-amd@^7.2.0": 404 | version "7.2.0" 405 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.2.0.tgz#82a9bce45b95441f617a24011dc89d12da7f4ee6" 406 | integrity sha1-gqm85FuVRB9heiQBHcidEtp/TuY= 407 | dependencies: 408 | "@babel/helper-module-transforms" "^7.1.0" 409 | "@babel/helper-plugin-utils" "^7.0.0" 410 | 411 | "@babel/plugin-transform-modules-commonjs@^7.4.4": 412 | version "7.4.4" 413 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.4.4.tgz#0bef4713d30f1d78c2e59b3d6db40e60192cac1e" 414 | integrity sha1-C+9HE9MPHXjC5Zs9bbQOYBksrB4= 415 | dependencies: 416 | "@babel/helper-module-transforms" "^7.4.4" 417 | "@babel/helper-plugin-utils" "^7.0.0" 418 | "@babel/helper-simple-access" "^7.1.0" 419 | 420 | "@babel/plugin-transform-modules-systemjs@^7.4.4": 421 | version "7.4.4" 422 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.4.4.tgz#dc83c5665b07d6c2a7b224c00ac63659ea36a405" 423 | integrity sha1-3IPFZlsH1sKnsiTACsY2Weo2pAU= 424 | dependencies: 425 | "@babel/helper-hoist-variables" "^7.4.4" 426 | "@babel/helper-plugin-utils" "^7.0.0" 427 | 428 | "@babel/plugin-transform-modules-umd@^7.2.0": 429 | version "7.2.0" 430 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.2.0.tgz#7678ce75169f0877b8eb2235538c074268dd01ae" 431 | integrity sha1-dnjOdRafCHe46yI1U4wHQmjdAa4= 432 | dependencies: 433 | "@babel/helper-module-transforms" "^7.1.0" 434 | "@babel/helper-plugin-utils" "^7.0.0" 435 | 436 | "@babel/plugin-transform-named-capturing-groups-regex@^7.4.5": 437 | version "7.4.5" 438 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.4.5.tgz#9d269fd28a370258199b4294736813a60bbdd106" 439 | integrity sha1-nSaf0oo3AlgZm0KUc2gTpgu90QY= 440 | dependencies: 441 | regexp-tree "^0.1.6" 442 | 443 | "@babel/plugin-transform-new-target@^7.4.4": 444 | version "7.4.4" 445 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.4.4.tgz#18d120438b0cc9ee95a47f2c72bc9768fbed60a5" 446 | integrity sha1-GNEgQ4sMye6VpH8scryXaPvtYKU= 447 | dependencies: 448 | "@babel/helper-plugin-utils" "^7.0.0" 449 | 450 | "@babel/plugin-transform-object-super@^7.2.0": 451 | version "7.2.0" 452 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.2.0.tgz#b35d4c10f56bab5d650047dad0f1d8e8814b6598" 453 | integrity sha1-s11MEPVrq11lAEfa0PHY6IFLZZg= 454 | dependencies: 455 | "@babel/helper-plugin-utils" "^7.0.0" 456 | "@babel/helper-replace-supers" "^7.1.0" 457 | 458 | "@babel/plugin-transform-parameters@^7.4.4": 459 | version "7.4.4" 460 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.4.4.tgz#7556cf03f318bd2719fe4c922d2d808be5571e16" 461 | integrity sha1-dVbPA/MYvScZ/kySLS2Ai+VXHhY= 462 | dependencies: 463 | "@babel/helper-call-delegate" "^7.4.4" 464 | "@babel/helper-get-function-arity" "^7.0.0" 465 | "@babel/helper-plugin-utils" "^7.0.0" 466 | 467 | "@babel/plugin-transform-property-literals@^7.2.0": 468 | version "7.2.0" 469 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.2.0.tgz#03e33f653f5b25c4eb572c98b9485055b389e905" 470 | integrity sha1-A+M/ZT9bJcTrVyyYuUhQVbOJ6QU= 471 | dependencies: 472 | "@babel/helper-plugin-utils" "^7.0.0" 473 | 474 | "@babel/plugin-transform-regenerator@^7.4.5": 475 | version "7.4.5" 476 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.4.5.tgz#629dc82512c55cee01341fb27bdfcb210354680f" 477 | integrity sha1-Yp3IJRLFXO4BNB+ye9/LIQNUaA8= 478 | dependencies: 479 | regenerator-transform "^0.14.0" 480 | 481 | "@babel/plugin-transform-reserved-words@^7.2.0": 482 | version "7.2.0" 483 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.2.0.tgz#4792af87c998a49367597d07fedf02636d2e1634" 484 | integrity sha1-R5Kvh8mYpJNnWX0H/t8CY20uFjQ= 485 | dependencies: 486 | "@babel/helper-plugin-utils" "^7.0.0" 487 | 488 | "@babel/plugin-transform-shorthand-properties@^7.2.0": 489 | version "7.2.0" 490 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.2.0.tgz#6333aee2f8d6ee7e28615457298934a3b46198f0" 491 | integrity sha1-YzOu4vjW7n4oYVRXKYk0o7RhmPA= 492 | dependencies: 493 | "@babel/helper-plugin-utils" "^7.0.0" 494 | 495 | "@babel/plugin-transform-spread@^7.2.0": 496 | version "7.2.2" 497 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/plugin-transform-spread/-/plugin-transform-spread-7.2.2.tgz#3103a9abe22f742b6d406ecd3cd49b774919b406" 498 | integrity sha1-MQOpq+IvdCttQG7NPNSbd0kZtAY= 499 | dependencies: 500 | "@babel/helper-plugin-utils" "^7.0.0" 501 | 502 | "@babel/plugin-transform-sticky-regex@^7.2.0": 503 | version "7.2.0" 504 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.2.0.tgz#a1e454b5995560a9c1e0d537dfc15061fd2687e1" 505 | integrity sha1-oeRUtZlVYKnB4NU338FQYf0mh+E= 506 | dependencies: 507 | "@babel/helper-plugin-utils" "^7.0.0" 508 | "@babel/helper-regex" "^7.0.0" 509 | 510 | "@babel/plugin-transform-template-literals@^7.4.4": 511 | version "7.4.4" 512 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.4.4.tgz#9d28fea7bbce637fb7612a0750989d8321d4bcb0" 513 | integrity sha1-nSj+p7vOY3+3YSoHUJidgyHUvLA= 514 | dependencies: 515 | "@babel/helper-annotate-as-pure" "^7.0.0" 516 | "@babel/helper-plugin-utils" "^7.0.0" 517 | 518 | "@babel/plugin-transform-typeof-symbol@^7.2.0": 519 | version "7.2.0" 520 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.2.0.tgz#117d2bcec2fbf64b4b59d1f9819894682d29f2b2" 521 | integrity sha1-EX0rzsL79ktLWdH5gZiUaC0p8rI= 522 | dependencies: 523 | "@babel/helper-plugin-utils" "^7.0.0" 524 | 525 | "@babel/plugin-transform-unicode-regex@^7.4.4": 526 | version "7.4.4" 527 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.4.4.tgz#ab4634bb4f14d36728bf5978322b35587787970f" 528 | integrity sha1-q0Y0u08U02cov1l4Mis1WHeHlw8= 529 | dependencies: 530 | "@babel/helper-plugin-utils" "^7.0.0" 531 | "@babel/helper-regex" "^7.4.4" 532 | regexpu-core "^4.5.4" 533 | 534 | "@babel/preset-env@^7.4.5": 535 | version "7.4.5" 536 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/preset-env/-/preset-env-7.4.5.tgz#2fad7f62983d5af563b5f3139242755884998a58" 537 | integrity sha1-L61/Ypg9WvVjtfMTkkJ1WISZilg= 538 | dependencies: 539 | "@babel/helper-module-imports" "^7.0.0" 540 | "@babel/helper-plugin-utils" "^7.0.0" 541 | "@babel/plugin-proposal-async-generator-functions" "^7.2.0" 542 | "@babel/plugin-proposal-json-strings" "^7.2.0" 543 | "@babel/plugin-proposal-object-rest-spread" "^7.4.4" 544 | "@babel/plugin-proposal-optional-catch-binding" "^7.2.0" 545 | "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" 546 | "@babel/plugin-syntax-async-generators" "^7.2.0" 547 | "@babel/plugin-syntax-json-strings" "^7.2.0" 548 | "@babel/plugin-syntax-object-rest-spread" "^7.2.0" 549 | "@babel/plugin-syntax-optional-catch-binding" "^7.2.0" 550 | "@babel/plugin-transform-arrow-functions" "^7.2.0" 551 | "@babel/plugin-transform-async-to-generator" "^7.4.4" 552 | "@babel/plugin-transform-block-scoped-functions" "^7.2.0" 553 | "@babel/plugin-transform-block-scoping" "^7.4.4" 554 | "@babel/plugin-transform-classes" "^7.4.4" 555 | "@babel/plugin-transform-computed-properties" "^7.2.0" 556 | "@babel/plugin-transform-destructuring" "^7.4.4" 557 | "@babel/plugin-transform-dotall-regex" "^7.4.4" 558 | "@babel/plugin-transform-duplicate-keys" "^7.2.0" 559 | "@babel/plugin-transform-exponentiation-operator" "^7.2.0" 560 | "@babel/plugin-transform-for-of" "^7.4.4" 561 | "@babel/plugin-transform-function-name" "^7.4.4" 562 | "@babel/plugin-transform-literals" "^7.2.0" 563 | "@babel/plugin-transform-member-expression-literals" "^7.2.0" 564 | "@babel/plugin-transform-modules-amd" "^7.2.0" 565 | "@babel/plugin-transform-modules-commonjs" "^7.4.4" 566 | "@babel/plugin-transform-modules-systemjs" "^7.4.4" 567 | "@babel/plugin-transform-modules-umd" "^7.2.0" 568 | "@babel/plugin-transform-named-capturing-groups-regex" "^7.4.5" 569 | "@babel/plugin-transform-new-target" "^7.4.4" 570 | "@babel/plugin-transform-object-super" "^7.2.0" 571 | "@babel/plugin-transform-parameters" "^7.4.4" 572 | "@babel/plugin-transform-property-literals" "^7.2.0" 573 | "@babel/plugin-transform-regenerator" "^7.4.5" 574 | "@babel/plugin-transform-reserved-words" "^7.2.0" 575 | "@babel/plugin-transform-shorthand-properties" "^7.2.0" 576 | "@babel/plugin-transform-spread" "^7.2.0" 577 | "@babel/plugin-transform-sticky-regex" "^7.2.0" 578 | "@babel/plugin-transform-template-literals" "^7.4.4" 579 | "@babel/plugin-transform-typeof-symbol" "^7.2.0" 580 | "@babel/plugin-transform-unicode-regex" "^7.4.4" 581 | "@babel/types" "^7.4.4" 582 | browserslist "^4.6.0" 583 | core-js-compat "^3.1.1" 584 | invariant "^2.2.2" 585 | js-levenshtein "^1.1.3" 586 | semver "^5.5.0" 587 | 588 | "@babel/template@^7.1.0", "@babel/template@^7.4.0", "@babel/template@^7.4.4": 589 | version "7.4.4" 590 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/template/-/template-7.4.4.tgz#f4b88d1225689a08f5bc3a17483545be9e4ed237" 591 | integrity sha1-9LiNEiVomgj1vDoXSDVFvp5O0jc= 592 | dependencies: 593 | "@babel/code-frame" "^7.0.0" 594 | "@babel/parser" "^7.4.4" 595 | "@babel/types" "^7.4.4" 596 | 597 | "@babel/traverse@^7.1.0", "@babel/traverse@^7.4.3", "@babel/traverse@^7.4.4", "@babel/traverse@^7.4.5": 598 | version "7.4.5" 599 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/traverse/-/traverse-7.4.5.tgz#4e92d1728fd2f1897dafdd321efbff92156c3216" 600 | integrity sha1-TpLRco/S8Yl9r90yHvv/khVsMhY= 601 | dependencies: 602 | "@babel/code-frame" "^7.0.0" 603 | "@babel/generator" "^7.4.4" 604 | "@babel/helper-function-name" "^7.1.0" 605 | "@babel/helper-split-export-declaration" "^7.4.4" 606 | "@babel/parser" "^7.4.5" 607 | "@babel/types" "^7.4.4" 608 | debug "^4.1.0" 609 | globals "^11.1.0" 610 | lodash "^4.17.11" 611 | 612 | "@babel/types@^7.0.0", "@babel/types@^7.2.0", "@babel/types@^7.3.0", "@babel/types@^7.4.0", "@babel/types@^7.4.4": 613 | version "7.4.4" 614 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@babel/types/-/types-7.4.4.tgz#8db9e9a629bb7c29370009b4b779ed93fe57d5f0" 615 | integrity sha1-jbnppim7fCk3AAm0t3ntk/5X1fA= 616 | dependencies: 617 | esutils "^2.0.2" 618 | lodash "^4.17.11" 619 | to-fast-properties "^2.0.0" 620 | 621 | "@cnakazawa/watch@^1.0.3": 622 | version "1.0.3" 623 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@cnakazawa/watch/-/watch-1.0.3.tgz#099139eaec7ebf07a27c1786a3ff64f39464d2ef" 624 | integrity sha1-CZE56ux+vweifBeGo/9k85Rk0u8= 625 | dependencies: 626 | exec-sh "^0.3.2" 627 | minimist "^1.2.0" 628 | 629 | "@jest/console@^24.7.1": 630 | version "24.7.1" 631 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@jest/console/-/console-24.7.1.tgz#32a9e42535a97aedfe037e725bd67e954b459545" 632 | integrity sha1-MqnkJTWpeu3+A35yW9Z+lUtFlUU= 633 | dependencies: 634 | "@jest/source-map" "^24.3.0" 635 | chalk "^2.0.1" 636 | slash "^2.0.0" 637 | 638 | "@jest/core@^24.8.0": 639 | version "24.8.0" 640 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@jest/core/-/core-24.8.0.tgz#fbbdcd42a41d0d39cddbc9f520c8bab0c33eed5b" 641 | integrity sha1-+73NQqQdDTnN28n1IMi6sMM+7Vs= 642 | dependencies: 643 | "@jest/console" "^24.7.1" 644 | "@jest/reporters" "^24.8.0" 645 | "@jest/test-result" "^24.8.0" 646 | "@jest/transform" "^24.8.0" 647 | "@jest/types" "^24.8.0" 648 | ansi-escapes "^3.0.0" 649 | chalk "^2.0.1" 650 | exit "^0.1.2" 651 | graceful-fs "^4.1.15" 652 | jest-changed-files "^24.8.0" 653 | jest-config "^24.8.0" 654 | jest-haste-map "^24.8.0" 655 | jest-message-util "^24.8.0" 656 | jest-regex-util "^24.3.0" 657 | jest-resolve-dependencies "^24.8.0" 658 | jest-runner "^24.8.0" 659 | jest-runtime "^24.8.0" 660 | jest-snapshot "^24.8.0" 661 | jest-util "^24.8.0" 662 | jest-validate "^24.8.0" 663 | jest-watcher "^24.8.0" 664 | micromatch "^3.1.10" 665 | p-each-series "^1.0.0" 666 | pirates "^4.0.1" 667 | realpath-native "^1.1.0" 668 | rimraf "^2.5.4" 669 | strip-ansi "^5.0.0" 670 | 671 | "@jest/environment@^24.8.0": 672 | version "24.8.0" 673 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@jest/environment/-/environment-24.8.0.tgz#0342261383c776bdd652168f68065ef144af0eac" 674 | integrity sha1-A0ImE4PHdr3WUhaPaAZe8USvDqw= 675 | dependencies: 676 | "@jest/fake-timers" "^24.8.0" 677 | "@jest/transform" "^24.8.0" 678 | "@jest/types" "^24.8.0" 679 | jest-mock "^24.8.0" 680 | 681 | "@jest/fake-timers@^24.8.0": 682 | version "24.8.0" 683 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@jest/fake-timers/-/fake-timers-24.8.0.tgz#2e5b80a4f78f284bcb4bd5714b8e10dd36a8d3d1" 684 | integrity sha1-LluApPePKEvLS9VxS44Q3Tao09E= 685 | dependencies: 686 | "@jest/types" "^24.8.0" 687 | jest-message-util "^24.8.0" 688 | jest-mock "^24.8.0" 689 | 690 | "@jest/reporters@^24.8.0": 691 | version "24.8.0" 692 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@jest/reporters/-/reporters-24.8.0.tgz#075169cd029bddec54b8f2c0fc489fd0b9e05729" 693 | integrity sha1-B1FpzQKb3exUuPLA/Eif0LngVyk= 694 | dependencies: 695 | "@jest/environment" "^24.8.0" 696 | "@jest/test-result" "^24.8.0" 697 | "@jest/transform" "^24.8.0" 698 | "@jest/types" "^24.8.0" 699 | chalk "^2.0.1" 700 | exit "^0.1.2" 701 | glob "^7.1.2" 702 | istanbul-lib-coverage "^2.0.2" 703 | istanbul-lib-instrument "^3.0.1" 704 | istanbul-lib-report "^2.0.4" 705 | istanbul-lib-source-maps "^3.0.1" 706 | istanbul-reports "^2.1.1" 707 | jest-haste-map "^24.8.0" 708 | jest-resolve "^24.8.0" 709 | jest-runtime "^24.8.0" 710 | jest-util "^24.8.0" 711 | jest-worker "^24.6.0" 712 | node-notifier "^5.2.1" 713 | slash "^2.0.0" 714 | source-map "^0.6.0" 715 | string-length "^2.0.0" 716 | 717 | "@jest/source-map@^24.3.0": 718 | version "24.3.0" 719 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@jest/source-map/-/source-map-24.3.0.tgz#563be3aa4d224caf65ff77edc95cd1ca4da67f28" 720 | integrity sha1-Vjvjqk0iTK9l/3ftyVzRyk2mfyg= 721 | dependencies: 722 | callsites "^3.0.0" 723 | graceful-fs "^4.1.15" 724 | source-map "^0.6.0" 725 | 726 | "@jest/test-result@^24.8.0": 727 | version "24.8.0" 728 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@jest/test-result/-/test-result-24.8.0.tgz#7675d0aaf9d2484caa65e048d9b467d160f8e9d3" 729 | integrity sha1-dnXQqvnSSEyqZeBI2bRn0WD46dM= 730 | dependencies: 731 | "@jest/console" "^24.7.1" 732 | "@jest/types" "^24.8.0" 733 | "@types/istanbul-lib-coverage" "^2.0.0" 734 | 735 | "@jest/test-sequencer@^24.8.0": 736 | version "24.8.0" 737 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@jest/test-sequencer/-/test-sequencer-24.8.0.tgz#2f993bcf6ef5eb4e65e8233a95a3320248cf994b" 738 | integrity sha1-L5k7z271605l6CM6laMyAkjPmUs= 739 | dependencies: 740 | "@jest/test-result" "^24.8.0" 741 | jest-haste-map "^24.8.0" 742 | jest-runner "^24.8.0" 743 | jest-runtime "^24.8.0" 744 | 745 | "@jest/transform@^24.8.0": 746 | version "24.8.0" 747 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@jest/transform/-/transform-24.8.0.tgz#628fb99dce4f9d254c6fd9341e3eea262e06fef5" 748 | integrity sha1-Yo+5nc5PnSVMb9k0Hj7qJi4G/vU= 749 | dependencies: 750 | "@babel/core" "^7.1.0" 751 | "@jest/types" "^24.8.0" 752 | babel-plugin-istanbul "^5.1.0" 753 | chalk "^2.0.1" 754 | convert-source-map "^1.4.0" 755 | fast-json-stable-stringify "^2.0.0" 756 | graceful-fs "^4.1.15" 757 | jest-haste-map "^24.8.0" 758 | jest-regex-util "^24.3.0" 759 | jest-util "^24.8.0" 760 | micromatch "^3.1.10" 761 | realpath-native "^1.1.0" 762 | slash "^2.0.0" 763 | source-map "^0.6.1" 764 | write-file-atomic "2.4.1" 765 | 766 | "@jest/types@^24.8.0": 767 | version "24.8.0" 768 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@jest/types/-/types-24.8.0.tgz#f31e25948c58f0abd8c845ae26fcea1491dea7ad" 769 | integrity sha1-8x4llIxY8KvYyEWuJvzqFJHep60= 770 | dependencies: 771 | "@types/istanbul-lib-coverage" "^2.0.0" 772 | "@types/istanbul-reports" "^1.1.1" 773 | "@types/yargs" "^12.0.9" 774 | 775 | "@types/babel__core@^7.1.0": 776 | version "7.1.2" 777 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@types/babel__core/-/babel__core-7.1.2.tgz#608c74f55928033fce18b99b213c16be4b3d114f" 778 | integrity sha1-YIx09VkoAz/OGLmbITwWvks9EU8= 779 | dependencies: 780 | "@babel/parser" "^7.1.0" 781 | "@babel/types" "^7.0.0" 782 | "@types/babel__generator" "*" 783 | "@types/babel__template" "*" 784 | "@types/babel__traverse" "*" 785 | 786 | "@types/babel__generator@*": 787 | version "7.0.2" 788 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@types/babel__generator/-/babel__generator-7.0.2.tgz#d2112a6b21fad600d7674274293c85dce0cb47fc" 789 | integrity sha1-0hEqayH61gDXZ0J0KTyF3ODLR/w= 790 | dependencies: 791 | "@babel/types" "^7.0.0" 792 | 793 | "@types/babel__template@*": 794 | version "7.0.2" 795 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@types/babel__template/-/babel__template-7.0.2.tgz#4ff63d6b52eddac1de7b975a5223ed32ecea9307" 796 | integrity sha1-T/Y9a1Lt2sHee5daUiPtMuzqkwc= 797 | dependencies: 798 | "@babel/parser" "^7.1.0" 799 | "@babel/types" "^7.0.0" 800 | 801 | "@types/babel__traverse@*", "@types/babel__traverse@^7.0.6": 802 | version "7.0.7" 803 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@types/babel__traverse/-/babel__traverse-7.0.7.tgz#2496e9ff56196cc1429c72034e07eab6121b6f3f" 804 | integrity sha1-JJbp/1YZbMFCnHIDTgfqthIbbz8= 805 | dependencies: 806 | "@babel/types" "^7.3.0" 807 | 808 | "@types/estree@0.0.39": 809 | version "0.0.39" 810 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f" 811 | integrity sha1-4Xfmme4bjCLSMXTKqnQiZEOJUJ8= 812 | 813 | "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0": 814 | version "2.0.1" 815 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.1.tgz#42995b446db9a48a11a07ec083499a860e9138ff" 816 | integrity sha1-QplbRG25pIoRoH7Ag0mahg6ROP8= 817 | 818 | "@types/istanbul-lib-report@*": 819 | version "1.1.1" 820 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@types/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#e5471e7fa33c61358dd38426189c037a58433b8c" 821 | integrity sha1-5Ucef6M8YTWN04QmGJwDelhDO4w= 822 | dependencies: 823 | "@types/istanbul-lib-coverage" "*" 824 | 825 | "@types/istanbul-reports@^1.1.1": 826 | version "1.1.1" 827 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@types/istanbul-reports/-/istanbul-reports-1.1.1.tgz#7a8cbf6a406f36c8add871625b278eaf0b0d255a" 828 | integrity sha1-eoy/akBvNsit2HFiWyeOrwsNJVo= 829 | dependencies: 830 | "@types/istanbul-lib-coverage" "*" 831 | "@types/istanbul-lib-report" "*" 832 | 833 | "@types/node@*", "@types/node@^12.0.8": 834 | version "12.0.10" 835 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@types/node/-/node-12.0.10.tgz#51babf9c7deadd5343620055fc8aff7995c8b031" 836 | integrity sha1-Ubq/nH3q3VNDYgBV/Ir/eZXIsDE= 837 | 838 | "@types/resolve@0.0.8": 839 | version "0.0.8" 840 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@types/resolve/-/resolve-0.0.8.tgz#f26074d238e02659e323ce1a13d041eee280e194" 841 | integrity sha1-8mB00jjgJlnjI84aE9BB7uKA4ZQ= 842 | dependencies: 843 | "@types/node" "*" 844 | 845 | "@types/stack-utils@^1.0.1": 846 | version "1.0.1" 847 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@types/stack-utils/-/stack-utils-1.0.1.tgz#0a851d3bd96498fa25c33ab7278ed3bd65f06c3e" 848 | integrity sha1-CoUdO9lkmPolwzq3J47TvWXwbD4= 849 | 850 | "@types/yargs@^12.0.2", "@types/yargs@^12.0.9": 851 | version "12.0.12" 852 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/@types/yargs/-/yargs-12.0.12.tgz#45dd1d0638e8c8f153e87d296907659296873916" 853 | integrity sha1-Rd0dBjjoyPFT6H0paQdlkpaHORY= 854 | 855 | abab@^2.0.0: 856 | version "2.0.0" 857 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/abab/-/abab-2.0.0.tgz#aba0ab4c5eee2d4c79d3487d85450fb2376ebb0f" 858 | integrity sha1-q6CrTF7uLUx500h9hUUPsjduuw8= 859 | 860 | abbrev@1: 861 | version "1.1.1" 862 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 863 | integrity sha1-+PLIh60Qv2f2NPAFtph/7TF5qsg= 864 | 865 | acorn-globals@^4.1.0: 866 | version "4.3.2" 867 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/acorn-globals/-/acorn-globals-4.3.2.tgz#4e2c2313a597fd589720395f6354b41cd5ec8006" 868 | integrity sha1-TiwjE6WX/ViXIDlfY1S0HNXsgAY= 869 | dependencies: 870 | acorn "^6.0.1" 871 | acorn-walk "^6.0.1" 872 | 873 | acorn-walk@^6.0.1: 874 | version "6.1.1" 875 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/acorn-walk/-/acorn-walk-6.1.1.tgz#d363b66f5fac5f018ff9c3a1e7b6f8e310cc3913" 876 | integrity sha1-02O2b1+sXwGP+cOh57b44xDMORM= 877 | 878 | acorn@^5.5.3: 879 | version "5.7.3" 880 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279" 881 | integrity sha1-Z6ojG/iBKXS4UjWpZ3Hra9B+onk= 882 | 883 | acorn@^6.0.1, acorn@^6.1.1: 884 | version "6.1.1" 885 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/acorn/-/acorn-6.1.1.tgz#7d25ae05bb8ad1f9b699108e1094ecd7884adc1f" 886 | integrity sha1-fSWuBbuK0fm2mRCOEJTs14hK3B8= 887 | 888 | ajv@^6.5.5: 889 | version "6.10.0" 890 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/ajv/-/ajv-6.10.0.tgz#90d0d54439da587cd7e843bfb7045f50bd22bdf1" 891 | integrity sha1-kNDVRDnaWHzX6EO/twRfUL0ivfE= 892 | dependencies: 893 | fast-deep-equal "^2.0.1" 894 | fast-json-stable-stringify "^2.0.0" 895 | json-schema-traverse "^0.4.1" 896 | uri-js "^4.2.2" 897 | 898 | ansi-escapes@^3.0.0: 899 | version "3.2.0" 900 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" 901 | integrity sha1-h4C5j/nb9WOBUtHx/lwde0RCl2s= 902 | 903 | ansi-regex@^2.0.0: 904 | version "2.1.1" 905 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 906 | integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= 907 | 908 | ansi-regex@^3.0.0: 909 | version "3.0.0" 910 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 911 | integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= 912 | 913 | ansi-regex@^4.0.0, ansi-regex@^4.1.0: 914 | version "4.1.0" 915 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" 916 | integrity sha1-i5+PCM8ay4Q3Vqg5yox+MWjFGZc= 917 | 918 | ansi-styles@^3.2.0, ansi-styles@^3.2.1: 919 | version "3.2.1" 920 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 921 | integrity sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0= 922 | dependencies: 923 | color-convert "^1.9.0" 924 | 925 | anymatch@^2.0.0: 926 | version "2.0.0" 927 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" 928 | integrity sha1-vLJLTzeTTZqnrBe0ra+J58du8us= 929 | dependencies: 930 | micromatch "^3.1.4" 931 | normalize-path "^2.1.1" 932 | 933 | aproba@^1.0.3: 934 | version "1.2.0" 935 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 936 | integrity sha1-aALmJk79GMeQobDVF/DyYnvyyUo= 937 | 938 | are-we-there-yet@~1.1.2: 939 | version "1.1.5" 940 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" 941 | integrity sha1-SzXClE8GKov82mZBB2A1D+nd/CE= 942 | dependencies: 943 | delegates "^1.0.0" 944 | readable-stream "^2.0.6" 945 | 946 | arr-diff@^4.0.0: 947 | version "4.0.0" 948 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 949 | integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA= 950 | 951 | arr-flatten@^1.1.0: 952 | version "1.1.0" 953 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 954 | integrity sha1-NgSLv/TntH4TZkQxbJlmnqWukfE= 955 | 956 | arr-union@^3.1.0: 957 | version "3.1.0" 958 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 959 | integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= 960 | 961 | array-equal@^1.0.0: 962 | version "1.0.0" 963 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 964 | integrity sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM= 965 | 966 | array-unique@^0.3.2: 967 | version "0.3.2" 968 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 969 | integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= 970 | 971 | asn1@~0.2.3: 972 | version "0.2.4" 973 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" 974 | integrity sha1-jSR136tVO7M+d7VOWeiAu4ziMTY= 975 | dependencies: 976 | safer-buffer "~2.1.0" 977 | 978 | assert-plus@1.0.0, assert-plus@^1.0.0: 979 | version "1.0.0" 980 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 981 | integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU= 982 | 983 | assign-symbols@^1.0.0: 984 | version "1.0.0" 985 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 986 | integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= 987 | 988 | astral-regex@^1.0.0: 989 | version "1.0.0" 990 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" 991 | integrity sha1-bIw/uCfdQ+45GPJ7gngqt2WKb9k= 992 | 993 | async-limiter@~1.0.0: 994 | version "1.0.0" 995 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8" 996 | integrity sha1-ePrtjD0HSrgfIrTphdeehzj3IPg= 997 | 998 | asynckit@^0.4.0: 999 | version "0.4.0" 1000 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 1001 | integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= 1002 | 1003 | atob@^2.1.1: 1004 | version "2.1.2" 1005 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" 1006 | integrity sha1-bZUX654DDSQ2ZmZR6GvZ9vE1M8k= 1007 | 1008 | aws-sign2@~0.7.0: 1009 | version "0.7.0" 1010 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 1011 | integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= 1012 | 1013 | aws4@^1.8.0: 1014 | version "1.8.0" 1015 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/aws4/-/aws4-1.8.0.tgz#f0e003d9ca9e7f59c7a508945d7b2ef9a04a542f" 1016 | integrity sha1-8OAD2cqef1nHpQiUXXsu+aBKVC8= 1017 | 1018 | babel-jest@^24.8.0: 1019 | version "24.8.0" 1020 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/babel-jest/-/babel-jest-24.8.0.tgz#5c15ff2b28e20b0f45df43fe6b7f2aae93dba589" 1021 | integrity sha1-XBX/KyjiCw9F30P+a38qrpPbpYk= 1022 | dependencies: 1023 | "@jest/transform" "^24.8.0" 1024 | "@jest/types" "^24.8.0" 1025 | "@types/babel__core" "^7.1.0" 1026 | babel-plugin-istanbul "^5.1.0" 1027 | babel-preset-jest "^24.6.0" 1028 | chalk "^2.4.2" 1029 | slash "^2.0.0" 1030 | 1031 | babel-plugin-istanbul@^5.1.0: 1032 | version "5.1.4" 1033 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/babel-plugin-istanbul/-/babel-plugin-istanbul-5.1.4.tgz#841d16b9a58eeb407a0ddce622ba02fe87a752ba" 1034 | integrity sha1-hB0WuaWO60B6DdzmIroC/oenUro= 1035 | dependencies: 1036 | find-up "^3.0.0" 1037 | istanbul-lib-instrument "^3.3.0" 1038 | test-exclude "^5.2.3" 1039 | 1040 | babel-plugin-jest-hoist@^24.6.0: 1041 | version "24.6.0" 1042 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-24.6.0.tgz#f7f7f7ad150ee96d7a5e8e2c5da8319579e78019" 1043 | integrity sha1-9/f3rRUO6W16Xo4sXagxlXnngBk= 1044 | dependencies: 1045 | "@types/babel__traverse" "^7.0.6" 1046 | 1047 | babel-preset-jest@^24.6.0: 1048 | version "24.6.0" 1049 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/babel-preset-jest/-/babel-preset-jest-24.6.0.tgz#66f06136eefce87797539c0d63f1769cc3915984" 1050 | integrity sha1-ZvBhNu786HeXU5wNY/F2nMORWYQ= 1051 | dependencies: 1052 | "@babel/plugin-syntax-object-rest-spread" "^7.0.0" 1053 | babel-plugin-jest-hoist "^24.6.0" 1054 | 1055 | balanced-match@^1.0.0: 1056 | version "1.0.0" 1057 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 1058 | integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= 1059 | 1060 | base@^0.11.1: 1061 | version "0.11.2" 1062 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 1063 | integrity sha1-e95c7RRbbVUakNuH+DxVi060io8= 1064 | dependencies: 1065 | cache-base "^1.0.1" 1066 | class-utils "^0.3.5" 1067 | component-emitter "^1.2.1" 1068 | define-property "^1.0.0" 1069 | isobject "^3.0.1" 1070 | mixin-deep "^1.2.0" 1071 | pascalcase "^0.1.1" 1072 | 1073 | bcrypt-pbkdf@^1.0.0: 1074 | version "1.0.2" 1075 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" 1076 | integrity sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4= 1077 | dependencies: 1078 | tweetnacl "^0.14.3" 1079 | 1080 | bindings@~1.2.1: 1081 | version "1.2.1" 1082 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/bindings/-/bindings-1.2.1.tgz#14ad6113812d2d37d72e67b4cacb4bb726505f11" 1083 | integrity sha1-FK1hE4EtLTfXLme0ystLtyZQXxE= 1084 | 1085 | brace-expansion@^1.1.7: 1086 | version "1.1.11" 1087 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 1088 | integrity sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0= 1089 | dependencies: 1090 | balanced-match "^1.0.0" 1091 | concat-map "0.0.1" 1092 | 1093 | braces@^2.3.1: 1094 | version "2.3.2" 1095 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" 1096 | integrity sha1-WXn9PxTNUxVl5fot8av/8d+u5yk= 1097 | dependencies: 1098 | arr-flatten "^1.1.0" 1099 | array-unique "^0.3.2" 1100 | extend-shallow "^2.0.1" 1101 | fill-range "^4.0.0" 1102 | isobject "^3.0.1" 1103 | repeat-element "^1.1.2" 1104 | snapdragon "^0.8.1" 1105 | snapdragon-node "^2.0.1" 1106 | split-string "^3.0.2" 1107 | to-regex "^3.0.1" 1108 | 1109 | browser-process-hrtime@^0.1.2: 1110 | version "0.1.3" 1111 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/browser-process-hrtime/-/browser-process-hrtime-0.1.3.tgz#616f00faef1df7ec1b5bf9cfe2bdc3170f26c7b4" 1112 | integrity sha1-YW8A+u8d9+wbW/nP4r3DFw8mx7Q= 1113 | 1114 | browser-resolve@^1.11.3: 1115 | version "1.11.3" 1116 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/browser-resolve/-/browser-resolve-1.11.3.tgz#9b7cbb3d0f510e4cb86bdbd796124d28b5890af6" 1117 | integrity sha1-m3y7PQ9RDky4a9vXlhJNKLWJCvY= 1118 | dependencies: 1119 | resolve "1.1.7" 1120 | 1121 | browserslist@^4.6.0, browserslist@^4.6.2: 1122 | version "4.6.3" 1123 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/browserslist/-/browserslist-4.6.3.tgz#0530cbc6ab0c1f3fc8c819c72377ba55cf647f05" 1124 | integrity sha1-BTDLxqsMHz/IyBnHI3e6Vc9kfwU= 1125 | dependencies: 1126 | caniuse-lite "^1.0.30000975" 1127 | electron-to-chromium "^1.3.164" 1128 | node-releases "^1.1.23" 1129 | 1130 | bser@^2.0.0: 1131 | version "2.1.0" 1132 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/bser/-/bser-2.1.0.tgz#65fc784bf7f87c009b973c12db6546902fa9c7b5" 1133 | integrity sha1-Zfx4S/f4fACblzwS22VGkC+px7U= 1134 | dependencies: 1135 | node-int64 "^0.4.0" 1136 | 1137 | buffer-from@^1.0.0: 1138 | version "1.1.1" 1139 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 1140 | integrity sha1-MnE7wCj3XAL9txDXx7zsHyxgcO8= 1141 | 1142 | builtin-modules@^3.1.0: 1143 | version "3.1.0" 1144 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/builtin-modules/-/builtin-modules-3.1.0.tgz#aad97c15131eb76b65b50ef208e7584cd76a7484" 1145 | integrity sha1-qtl8FRMet2tltQ7yCOdYTNdqdIQ= 1146 | 1147 | cache-base@^1.0.1: 1148 | version "1.0.1" 1149 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 1150 | integrity sha1-Cn9GQWgxyLZi7jb+TnxZ129marI= 1151 | dependencies: 1152 | collection-visit "^1.0.0" 1153 | component-emitter "^1.2.1" 1154 | get-value "^2.0.6" 1155 | has-value "^1.0.0" 1156 | isobject "^3.0.1" 1157 | set-value "^2.0.0" 1158 | to-object-path "^0.3.0" 1159 | union-value "^1.0.0" 1160 | unset-value "^1.0.0" 1161 | 1162 | callsites@^3.0.0: 1163 | version "3.1.0" 1164 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 1165 | integrity sha1-s2MKvYlDQy9Us/BRkjjjPNffL3M= 1166 | 1167 | camelcase@^5.0.0: 1168 | version "5.3.1" 1169 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" 1170 | integrity sha1-48mzFWnhBoEd8kL3FXJaH0xJQyA= 1171 | 1172 | caniuse-lite@^1.0.30000975: 1173 | version "1.0.30000977" 1174 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/caniuse-lite/-/caniuse-lite-1.0.30000977.tgz#7da2ca14cae2fddb368c05c57ab4a529afd658ff" 1175 | integrity sha1-faLKFMri/ds2jAXFerSlKa/WWP8= 1176 | 1177 | capture-exit@^2.0.0: 1178 | version "2.0.0" 1179 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/capture-exit/-/capture-exit-2.0.0.tgz#fb953bfaebeb781f62898239dabb426d08a509a4" 1180 | integrity sha1-+5U7+uvreB9iiYI52rtCbQilCaQ= 1181 | dependencies: 1182 | rsvp "^4.8.4" 1183 | 1184 | caseless@~0.12.0: 1185 | version "0.12.0" 1186 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 1187 | integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw= 1188 | 1189 | chalk@^2.0.0, chalk@^2.0.1, chalk@^2.4.2: 1190 | version "2.4.2" 1191 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 1192 | integrity sha1-zUJUFnelQzPPVBpJEIwUMrRMlCQ= 1193 | dependencies: 1194 | ansi-styles "^3.2.1" 1195 | escape-string-regexp "^1.0.5" 1196 | supports-color "^5.3.0" 1197 | 1198 | chownr@^1.1.1: 1199 | version "1.1.1" 1200 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/chownr/-/chownr-1.1.1.tgz#54726b8b8fff4df053c42187e801fb4412df1494" 1201 | integrity sha1-VHJri4//TfBTxCGH6AH7RBLfFJQ= 1202 | 1203 | ci-info@^2.0.0: 1204 | version "2.0.0" 1205 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" 1206 | integrity sha1-Z6npZL4xpR4V5QENWObxKDQAL0Y= 1207 | 1208 | class-utils@^0.3.5: 1209 | version "0.3.6" 1210 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 1211 | integrity sha1-+TNprouafOAv1B+q0MqDAzGQxGM= 1212 | dependencies: 1213 | arr-union "^3.1.0" 1214 | define-property "^0.2.5" 1215 | isobject "^3.0.0" 1216 | static-extend "^0.1.1" 1217 | 1218 | cliui@^4.0.0: 1219 | version "4.1.0" 1220 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49" 1221 | integrity sha1-NIQi2+gtgAswIu709qwQvy5NG0k= 1222 | dependencies: 1223 | string-width "^2.1.1" 1224 | strip-ansi "^4.0.0" 1225 | wrap-ansi "^2.0.0" 1226 | 1227 | co@^4.6.0: 1228 | version "4.6.0" 1229 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 1230 | integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ= 1231 | 1232 | code-point-at@^1.0.0: 1233 | version "1.1.0" 1234 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 1235 | integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= 1236 | 1237 | collection-visit@^1.0.0: 1238 | version "1.0.0" 1239 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 1240 | integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA= 1241 | dependencies: 1242 | map-visit "^1.0.0" 1243 | object-visit "^1.0.0" 1244 | 1245 | color-convert@^1.9.0: 1246 | version "1.9.3" 1247 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 1248 | integrity sha1-u3GFBpDh8TZWfeYp0tVHHe2kweg= 1249 | dependencies: 1250 | color-name "1.1.3" 1251 | 1252 | color-name@1.1.3: 1253 | version "1.1.3" 1254 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 1255 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 1256 | 1257 | combined-stream@^1.0.6, combined-stream@~1.0.6: 1258 | version "1.0.8" 1259 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" 1260 | integrity sha1-w9RaizT9cwYxoRCoolIGgrMdWn8= 1261 | dependencies: 1262 | delayed-stream "~1.0.0" 1263 | 1264 | commander@~2.20.0: 1265 | version "2.20.0" 1266 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/commander/-/commander-2.20.0.tgz#d58bb2b5c1ee8f87b0d340027e9e94e222c5a422" 1267 | integrity sha1-1YuytcHuj4ew00ACfp6U4iLFpCI= 1268 | 1269 | component-emitter@^1.2.1: 1270 | version "1.3.0" 1271 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" 1272 | integrity sha1-FuQHD7qK4ptnnyIVhT7hgasuq8A= 1273 | 1274 | concat-map@0.0.1: 1275 | version "0.0.1" 1276 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1277 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 1278 | 1279 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1280 | version "1.1.0" 1281 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1282 | integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= 1283 | 1284 | convert-source-map@^1.1.0, convert-source-map@^1.4.0: 1285 | version "1.6.0" 1286 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20" 1287 | integrity sha1-UbU3qMQ+DwTewZk7/83VBOdYrCA= 1288 | dependencies: 1289 | safe-buffer "~5.1.1" 1290 | 1291 | copy-descriptor@^0.1.0: 1292 | version "0.1.1" 1293 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 1294 | integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= 1295 | 1296 | core-js-compat@^3.1.1: 1297 | version "3.1.4" 1298 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/core-js-compat/-/core-js-compat-3.1.4.tgz#e4d0c40fbd01e65b1d457980fe4112d4358a7408" 1299 | integrity sha1-5NDED70B5lsdRXmA/kES1DWKdAg= 1300 | dependencies: 1301 | browserslist "^4.6.2" 1302 | core-js-pure "3.1.4" 1303 | semver "^6.1.1" 1304 | 1305 | core-js-pure@3.1.4: 1306 | version "3.1.4" 1307 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/core-js-pure/-/core-js-pure-3.1.4.tgz#5fa17dc77002a169a3566cc48dc774d2e13e3769" 1308 | integrity sha1-X6F9x3ACoWmjVmzEjcd00uE+N2k= 1309 | 1310 | core-util-is@1.0.2, core-util-is@~1.0.0: 1311 | version "1.0.2" 1312 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1313 | integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= 1314 | 1315 | cross-spawn@^6.0.0: 1316 | version "6.0.5" 1317 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" 1318 | integrity sha1-Sl7Hxk364iw6FBJNus3uhG2Ay8Q= 1319 | dependencies: 1320 | nice-try "^1.0.4" 1321 | path-key "^2.0.1" 1322 | semver "^5.5.0" 1323 | shebang-command "^1.2.0" 1324 | which "^1.2.9" 1325 | 1326 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 1327 | version "0.3.6" 1328 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/cssom/-/cssom-0.3.6.tgz#f85206cee04efa841f3c5982a74ba96ab20d65ad" 1329 | integrity sha1-+FIGzuBO+oQfPFmCp0uparINZa0= 1330 | 1331 | cssstyle@^1.0.0: 1332 | version "1.2.2" 1333 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/cssstyle/-/cssstyle-1.2.2.tgz#427ea4d585b18624f6fdbf9de7a2a1a3ba713077" 1334 | integrity sha1-Qn6k1YWxhiT2/b+d56Kho7pxMHc= 1335 | dependencies: 1336 | cssom "0.3.x" 1337 | 1338 | dashdash@^1.12.0: 1339 | version "1.14.1" 1340 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1341 | integrity sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA= 1342 | dependencies: 1343 | assert-plus "^1.0.0" 1344 | 1345 | data-urls@^1.0.0: 1346 | version "1.1.0" 1347 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/data-urls/-/data-urls-1.1.0.tgz#15ee0582baa5e22bb59c77140da8f9c76963bbfe" 1348 | integrity sha1-Fe4Fgrql4iu1nHcUDaj5x2lju/4= 1349 | dependencies: 1350 | abab "^2.0.0" 1351 | whatwg-mimetype "^2.2.0" 1352 | whatwg-url "^7.0.0" 1353 | 1354 | deasync@^0.1.15: 1355 | version "0.1.15" 1356 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/deasync/-/deasync-0.1.15.tgz#788c4bbe6d32521233b28d23936de1bbadd2e112" 1357 | integrity sha1-eIxLvm0yUhIzso0jk23hu63S4RI= 1358 | dependencies: 1359 | bindings "~1.2.1" 1360 | node-addon-api "^1.6.0" 1361 | 1362 | debug@^2.2.0, debug@^2.3.3: 1363 | version "2.6.9" 1364 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1365 | integrity sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8= 1366 | dependencies: 1367 | ms "2.0.0" 1368 | 1369 | debug@^3.2.6: 1370 | version "3.2.6" 1371 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" 1372 | integrity sha1-6D0X3hbYp++3cX7b5fsQE17uYps= 1373 | dependencies: 1374 | ms "^2.1.1" 1375 | 1376 | debug@^4.1.0, debug@^4.1.1: 1377 | version "4.1.1" 1378 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" 1379 | integrity sha1-O3ImAlUQnGtYnO4FDx1RYTlmR5E= 1380 | dependencies: 1381 | ms "^2.1.1" 1382 | 1383 | decamelize@^1.2.0: 1384 | version "1.2.0" 1385 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1386 | integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= 1387 | 1388 | decode-uri-component@^0.2.0: 1389 | version "0.2.0" 1390 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 1391 | integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= 1392 | 1393 | deep-extend@^0.6.0: 1394 | version "0.6.0" 1395 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 1396 | integrity sha1-xPp8lUBKF6nD6Mp+FTcxK3NjMKw= 1397 | 1398 | deep-is@~0.1.3: 1399 | version "0.1.3" 1400 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1401 | integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= 1402 | 1403 | define-properties@^1.1.2: 1404 | version "1.1.3" 1405 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 1406 | integrity sha1-z4jabL7ib+bbcJT2HYcMvYTO6fE= 1407 | dependencies: 1408 | object-keys "^1.0.12" 1409 | 1410 | define-property@^0.2.5: 1411 | version "0.2.5" 1412 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 1413 | integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY= 1414 | dependencies: 1415 | is-descriptor "^0.1.0" 1416 | 1417 | define-property@^1.0.0: 1418 | version "1.0.0" 1419 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 1420 | integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY= 1421 | dependencies: 1422 | is-descriptor "^1.0.0" 1423 | 1424 | define-property@^2.0.2: 1425 | version "2.0.2" 1426 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 1427 | integrity sha1-1Flono1lS6d+AqgX+HENcCyxbp0= 1428 | dependencies: 1429 | is-descriptor "^1.0.2" 1430 | isobject "^3.0.1" 1431 | 1432 | delayed-stream@~1.0.0: 1433 | version "1.0.0" 1434 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1435 | integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= 1436 | 1437 | delegates@^1.0.0: 1438 | version "1.0.0" 1439 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1440 | integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= 1441 | 1442 | detect-libc@^1.0.2: 1443 | version "1.0.3" 1444 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 1445 | integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups= 1446 | 1447 | detect-newline@^2.1.0: 1448 | version "2.1.0" 1449 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2" 1450 | integrity sha1-9B8cEL5LAOh7XxPaaAdZ8sW/0+I= 1451 | 1452 | diff-sequences@^24.3.0: 1453 | version "24.3.0" 1454 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/diff-sequences/-/diff-sequences-24.3.0.tgz#0f20e8a1df1abddaf4d9c226680952e64118b975" 1455 | integrity sha1-DyDood8avdr02cImaAlS5kEYuXU= 1456 | 1457 | domexception@^1.0.1: 1458 | version "1.0.1" 1459 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90" 1460 | integrity sha1-k3RCZEymoxJh7zbj7Gd/6AVYLJA= 1461 | dependencies: 1462 | webidl-conversions "^4.0.2" 1463 | 1464 | ecc-jsbn@~0.1.1: 1465 | version "0.1.2" 1466 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" 1467 | integrity sha1-OoOpBOVDUyh4dMVkt1SThoSamMk= 1468 | dependencies: 1469 | jsbn "~0.1.0" 1470 | safer-buffer "^2.1.0" 1471 | 1472 | electron-to-chromium@^1.3.164: 1473 | version "1.3.173" 1474 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/electron-to-chromium/-/electron-to-chromium-1.3.173.tgz#275b9ba235447b95fc3204d32ca2c5a8bf2ca599" 1475 | integrity sha1-J1ubojVEe5X8MgTTLKLFqL8spZk= 1476 | 1477 | end-of-stream@^1.1.0: 1478 | version "1.4.1" 1479 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/end-of-stream/-/end-of-stream-1.4.1.tgz#ed29634d19baba463b6ce6b80a37213eab71ec43" 1480 | integrity sha1-7SljTRm6ukY7bOa4CjchPqtx7EM= 1481 | dependencies: 1482 | once "^1.4.0" 1483 | 1484 | error-ex@^1.3.1: 1485 | version "1.3.2" 1486 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 1487 | integrity sha1-tKxAZIEH/c3PriQvQovqihTU8b8= 1488 | dependencies: 1489 | is-arrayish "^0.2.1" 1490 | 1491 | es-abstract@^1.5.1: 1492 | version "1.13.0" 1493 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/es-abstract/-/es-abstract-1.13.0.tgz#ac86145fdd5099d8dd49558ccba2eaf9b88e24e9" 1494 | integrity sha1-rIYUX91QmdjdSVWMy6Lq+biOJOk= 1495 | dependencies: 1496 | es-to-primitive "^1.2.0" 1497 | function-bind "^1.1.1" 1498 | has "^1.0.3" 1499 | is-callable "^1.1.4" 1500 | is-regex "^1.0.4" 1501 | object-keys "^1.0.12" 1502 | 1503 | es-to-primitive@^1.2.0: 1504 | version "1.2.0" 1505 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/es-to-primitive/-/es-to-primitive-1.2.0.tgz#edf72478033456e8dda8ef09e00ad9650707f377" 1506 | integrity sha1-7fckeAM0VujdqO8J4ArZZQcH83c= 1507 | dependencies: 1508 | is-callable "^1.1.4" 1509 | is-date-object "^1.0.1" 1510 | is-symbol "^1.0.2" 1511 | 1512 | escape-string-regexp@^1.0.5: 1513 | version "1.0.5" 1514 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1515 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 1516 | 1517 | escodegen@^1.9.1: 1518 | version "1.11.1" 1519 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/escodegen/-/escodegen-1.11.1.tgz#c485ff8d6b4cdb89e27f4a856e91f118401ca510" 1520 | integrity sha1-xIX/jWtM24nif0qFbpHxGEAcpRA= 1521 | dependencies: 1522 | esprima "^3.1.3" 1523 | estraverse "^4.2.0" 1524 | esutils "^2.0.2" 1525 | optionator "^0.8.1" 1526 | optionalDependencies: 1527 | source-map "~0.6.1" 1528 | 1529 | esprima@^3.1.3: 1530 | version "3.1.3" 1531 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1532 | integrity sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM= 1533 | 1534 | estraverse@^4.2.0: 1535 | version "4.2.0" 1536 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1537 | integrity sha1-De4/7TH81GlhjOc0IJn8GvoL2xM= 1538 | 1539 | estree-walker@^0.6.1: 1540 | version "0.6.1" 1541 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/estree-walker/-/estree-walker-0.6.1.tgz#53049143f40c6eb918b23671d1fe3219f3a1b362" 1542 | integrity sha1-UwSRQ/QMbrkYsjZx0f4yGfOhs2I= 1543 | 1544 | esutils@^2.0.2: 1545 | version "2.0.2" 1546 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1547 | integrity sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs= 1548 | 1549 | exec-sh@^0.3.2: 1550 | version "0.3.2" 1551 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/exec-sh/-/exec-sh-0.3.2.tgz#6738de2eb7c8e671d0366aea0b0db8c6f7d7391b" 1552 | integrity sha1-ZzjeLrfI5nHQNmrqCw24xvfXORs= 1553 | 1554 | execa@^1.0.0: 1555 | version "1.0.0" 1556 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" 1557 | integrity sha1-xiNqW7TfbW8V6I5/AXeYIWdJ3dg= 1558 | dependencies: 1559 | cross-spawn "^6.0.0" 1560 | get-stream "^4.0.0" 1561 | is-stream "^1.1.0" 1562 | npm-run-path "^2.0.0" 1563 | p-finally "^1.0.0" 1564 | signal-exit "^3.0.0" 1565 | strip-eof "^1.0.0" 1566 | 1567 | exit@^0.1.2: 1568 | version "0.1.2" 1569 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" 1570 | integrity sha1-BjJjj42HfMghB9MKD/8aF8uhzQw= 1571 | 1572 | expand-brackets@^2.1.4: 1573 | version "2.1.4" 1574 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 1575 | integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI= 1576 | dependencies: 1577 | debug "^2.3.3" 1578 | define-property "^0.2.5" 1579 | extend-shallow "^2.0.1" 1580 | posix-character-classes "^0.1.0" 1581 | regex-not "^1.0.0" 1582 | snapdragon "^0.8.1" 1583 | to-regex "^3.0.1" 1584 | 1585 | expect@^24.8.0: 1586 | version "24.8.0" 1587 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/expect/-/expect-24.8.0.tgz#471f8ec256b7b6129ca2524b2a62f030df38718d" 1588 | integrity sha1-Rx+Owla3thKcolJLKmLwMN84cY0= 1589 | dependencies: 1590 | "@jest/types" "^24.8.0" 1591 | ansi-styles "^3.2.0" 1592 | jest-get-type "^24.8.0" 1593 | jest-matcher-utils "^24.8.0" 1594 | jest-message-util "^24.8.0" 1595 | jest-regex-util "^24.3.0" 1596 | 1597 | extend-shallow@^2.0.1: 1598 | version "2.0.1" 1599 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 1600 | integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8= 1601 | dependencies: 1602 | is-extendable "^0.1.0" 1603 | 1604 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 1605 | version "3.0.2" 1606 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 1607 | integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg= 1608 | dependencies: 1609 | assign-symbols "^1.0.0" 1610 | is-extendable "^1.0.1" 1611 | 1612 | extend@~3.0.2: 1613 | version "3.0.2" 1614 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 1615 | integrity sha1-+LETa0Bx+9jrFAr/hYsQGewpFfo= 1616 | 1617 | extglob@^2.0.4: 1618 | version "2.0.4" 1619 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 1620 | integrity sha1-rQD+TcYSqSMuhxhxHcXLWrAoVUM= 1621 | dependencies: 1622 | array-unique "^0.3.2" 1623 | define-property "^1.0.0" 1624 | expand-brackets "^2.1.4" 1625 | extend-shallow "^2.0.1" 1626 | fragment-cache "^0.2.1" 1627 | regex-not "^1.0.0" 1628 | snapdragon "^0.8.1" 1629 | to-regex "^3.0.1" 1630 | 1631 | extsprintf@1.3.0: 1632 | version "1.3.0" 1633 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1634 | integrity sha1-lpGEQOMEGnpBT4xS48V06zw+HgU= 1635 | 1636 | extsprintf@^1.2.0: 1637 | version "1.4.0" 1638 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 1639 | integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8= 1640 | 1641 | fast-deep-equal@^2.0.1: 1642 | version "2.0.1" 1643 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" 1644 | integrity sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk= 1645 | 1646 | fast-json-stable-stringify@^2.0.0: 1647 | version "2.0.0" 1648 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1649 | integrity sha1-1RQsDK7msRifh9OnYREGT4bIu/I= 1650 | 1651 | fast-levenshtein@~2.0.4: 1652 | version "2.0.6" 1653 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1654 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= 1655 | 1656 | fb-watchman@^2.0.0: 1657 | version "2.0.0" 1658 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 1659 | integrity sha1-VOmr99+i8mzZsWNsWIwa/AXeXVg= 1660 | dependencies: 1661 | bser "^2.0.0" 1662 | 1663 | fill-range@^4.0.0: 1664 | version "4.0.0" 1665 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 1666 | integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc= 1667 | dependencies: 1668 | extend-shallow "^2.0.1" 1669 | is-number "^3.0.0" 1670 | repeat-string "^1.6.1" 1671 | to-regex-range "^2.1.0" 1672 | 1673 | find-up@^3.0.0: 1674 | version "3.0.0" 1675 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" 1676 | integrity sha1-SRafHXmTQwZG2mHsxa41XCHJe3M= 1677 | dependencies: 1678 | locate-path "^3.0.0" 1679 | 1680 | for-in@^1.0.2: 1681 | version "1.0.2" 1682 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1683 | integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= 1684 | 1685 | forever-agent@~0.6.1: 1686 | version "0.6.1" 1687 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1688 | integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE= 1689 | 1690 | form-data@~2.3.2: 1691 | version "2.3.3" 1692 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" 1693 | integrity sha1-3M5SwF9kTymManq5Nr1yTO/786Y= 1694 | dependencies: 1695 | asynckit "^0.4.0" 1696 | combined-stream "^1.0.6" 1697 | mime-types "^2.1.12" 1698 | 1699 | fragment-cache@^0.2.1: 1700 | version "0.2.1" 1701 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 1702 | integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk= 1703 | dependencies: 1704 | map-cache "^0.2.2" 1705 | 1706 | fs-minipass@^1.2.5: 1707 | version "1.2.6" 1708 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/fs-minipass/-/fs-minipass-1.2.6.tgz#2c5cc30ded81282bfe8a0d7c7c1853ddeb102c07" 1709 | integrity sha1-LFzDDe2BKCv+ig18fBhT3esQLAc= 1710 | dependencies: 1711 | minipass "^2.2.1" 1712 | 1713 | fs.realpath@^1.0.0: 1714 | version "1.0.0" 1715 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1716 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 1717 | 1718 | fsevents@^1.2.7: 1719 | version "1.2.9" 1720 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/fsevents/-/fsevents-1.2.9.tgz#3f5ed66583ccd6f400b5a00db6f7e861363e388f" 1721 | integrity sha1-P17WZYPM1vQAtaANtvfoYTY+OI8= 1722 | dependencies: 1723 | nan "^2.12.1" 1724 | node-pre-gyp "^0.12.0" 1725 | 1726 | function-bind@^1.1.1: 1727 | version "1.1.1" 1728 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1729 | integrity sha1-pWiZ0+o8m6uHS7l3O3xe3pL0iV0= 1730 | 1731 | gauge@~2.7.3: 1732 | version "2.7.4" 1733 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1734 | integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c= 1735 | dependencies: 1736 | aproba "^1.0.3" 1737 | console-control-strings "^1.0.0" 1738 | has-unicode "^2.0.0" 1739 | object-assign "^4.1.0" 1740 | signal-exit "^3.0.0" 1741 | string-width "^1.0.1" 1742 | strip-ansi "^3.0.1" 1743 | wide-align "^1.1.0" 1744 | 1745 | get-caller-file@^1.0.1: 1746 | version "1.0.3" 1747 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" 1748 | integrity sha1-+Xj6TJDR3+f/LWvtoqUV5xO9z0o= 1749 | 1750 | get-stream@^4.0.0: 1751 | version "4.1.0" 1752 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" 1753 | integrity sha1-wbJVV189wh1Zv8ec09K0axw6VLU= 1754 | dependencies: 1755 | pump "^3.0.0" 1756 | 1757 | get-value@^2.0.3, get-value@^2.0.6: 1758 | version "2.0.6" 1759 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 1760 | integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg= 1761 | 1762 | getpass@^0.1.1: 1763 | version "0.1.7" 1764 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1765 | integrity sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo= 1766 | dependencies: 1767 | assert-plus "^1.0.0" 1768 | 1769 | glob@^7.1.1, glob@^7.1.2, glob@^7.1.3: 1770 | version "7.1.4" 1771 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/glob/-/glob-7.1.4.tgz#aa608a2f6c577ad357e1ae5a5c26d9a8d1969255" 1772 | integrity sha1-qmCKL2xXetNX4a5aXCbZqNGWklU= 1773 | dependencies: 1774 | fs.realpath "^1.0.0" 1775 | inflight "^1.0.4" 1776 | inherits "2" 1777 | minimatch "^3.0.4" 1778 | once "^1.3.0" 1779 | path-is-absolute "^1.0.0" 1780 | 1781 | globals@^11.1.0: 1782 | version "11.12.0" 1783 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 1784 | integrity sha1-q4eVM4hooLq9hSV1gBjCp+uVxC4= 1785 | 1786 | graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2: 1787 | version "4.1.15" 1788 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00" 1789 | integrity sha1-/7cD4QZuig7qpMi4C6klPu77+wA= 1790 | 1791 | growly@^1.3.0: 1792 | version "1.3.0" 1793 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1794 | integrity sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE= 1795 | 1796 | handlebars@^4.1.2: 1797 | version "4.1.2" 1798 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/handlebars/-/handlebars-4.1.2.tgz#b6b37c1ced0306b221e094fc7aca3ec23b131b67" 1799 | integrity sha1-trN8HO0DBrIh4JT8eso+wjsTG2c= 1800 | dependencies: 1801 | neo-async "^2.6.0" 1802 | optimist "^0.6.1" 1803 | source-map "^0.6.1" 1804 | optionalDependencies: 1805 | uglify-js "^3.1.4" 1806 | 1807 | har-schema@^2.0.0: 1808 | version "2.0.0" 1809 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 1810 | integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI= 1811 | 1812 | har-validator@~5.1.0: 1813 | version "5.1.3" 1814 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/har-validator/-/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080" 1815 | integrity sha1-HvievT5JllV2de7ZiTEQ3DUPoIA= 1816 | dependencies: 1817 | ajv "^6.5.5" 1818 | har-schema "^2.0.0" 1819 | 1820 | has-flag@^3.0.0: 1821 | version "3.0.0" 1822 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1823 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 1824 | 1825 | has-symbols@^1.0.0: 1826 | version "1.0.0" 1827 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" 1828 | integrity sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q= 1829 | 1830 | has-unicode@^2.0.0: 1831 | version "2.0.1" 1832 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1833 | integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk= 1834 | 1835 | has-value@^0.3.1: 1836 | version "0.3.1" 1837 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 1838 | integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8= 1839 | dependencies: 1840 | get-value "^2.0.3" 1841 | has-values "^0.1.4" 1842 | isobject "^2.0.0" 1843 | 1844 | has-value@^1.0.0: 1845 | version "1.0.0" 1846 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 1847 | integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc= 1848 | dependencies: 1849 | get-value "^2.0.6" 1850 | has-values "^1.0.0" 1851 | isobject "^3.0.0" 1852 | 1853 | has-values@^0.1.4: 1854 | version "0.1.4" 1855 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 1856 | integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E= 1857 | 1858 | has-values@^1.0.0: 1859 | version "1.0.0" 1860 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 1861 | integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8= 1862 | dependencies: 1863 | is-number "^3.0.0" 1864 | kind-of "^4.0.0" 1865 | 1866 | has@^1.0.1, has@^1.0.3: 1867 | version "1.0.3" 1868 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1869 | integrity sha1-ci18v8H2qoJB8W3YFOAR4fQeh5Y= 1870 | dependencies: 1871 | function-bind "^1.1.1" 1872 | 1873 | hosted-git-info@^2.1.4: 1874 | version "2.7.1" 1875 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/hosted-git-info/-/hosted-git-info-2.7.1.tgz#97f236977bd6e125408930ff6de3eec6281ec047" 1876 | integrity sha1-l/I2l3vW4SVAiTD/bePuxigewEc= 1877 | 1878 | html-encoding-sniffer@^1.0.2: 1879 | version "1.0.2" 1880 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8" 1881 | integrity sha1-5w2EuU2lOqN14R/jo1G+ZkLKRvg= 1882 | dependencies: 1883 | whatwg-encoding "^1.0.1" 1884 | 1885 | http-signature@~1.2.0: 1886 | version "1.2.0" 1887 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 1888 | integrity sha1-muzZJRFHcvPZW2WmCruPfBj7rOE= 1889 | dependencies: 1890 | assert-plus "^1.0.0" 1891 | jsprim "^1.2.2" 1892 | sshpk "^1.7.0" 1893 | 1894 | iconv-lite@0.4.24, iconv-lite@^0.4.4: 1895 | version "0.4.24" 1896 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 1897 | integrity sha1-ICK0sl+93CHS9SSXSkdKr+czkIs= 1898 | dependencies: 1899 | safer-buffer ">= 2.1.2 < 3" 1900 | 1901 | ignore-walk@^3.0.1: 1902 | version "3.0.1" 1903 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" 1904 | integrity sha1-qD5i59JyrA47VRqqgoMaGbafgvg= 1905 | dependencies: 1906 | minimatch "^3.0.4" 1907 | 1908 | import-local@^2.0.0: 1909 | version "2.0.0" 1910 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/import-local/-/import-local-2.0.0.tgz#55070be38a5993cf18ef6db7e961f5bee5c5a09d" 1911 | integrity sha1-VQcL44pZk88Y72236WH1vuXFoJ0= 1912 | dependencies: 1913 | pkg-dir "^3.0.0" 1914 | resolve-cwd "^2.0.0" 1915 | 1916 | imurmurhash@^0.1.4: 1917 | version "0.1.4" 1918 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1919 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 1920 | 1921 | inflight@^1.0.4: 1922 | version "1.0.6" 1923 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1924 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 1925 | dependencies: 1926 | once "^1.3.0" 1927 | wrappy "1" 1928 | 1929 | inherits@2, inherits@~2.0.3: 1930 | version "2.0.4" 1931 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1932 | integrity sha1-D6LGT5MpF8NDOg3tVTY6rjdBa3w= 1933 | 1934 | ini@~1.3.0: 1935 | version "1.3.5" 1936 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1937 | integrity sha1-7uJfVtscnsYIXgwid4CD9Zar+Sc= 1938 | 1939 | invariant@^2.2.2, invariant@^2.2.4: 1940 | version "2.2.4" 1941 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" 1942 | integrity sha1-YQ88ksk1nOHbYW5TgAjSP/NRWOY= 1943 | dependencies: 1944 | loose-envify "^1.0.0" 1945 | 1946 | invert-kv@^2.0.0: 1947 | version "2.0.0" 1948 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/invert-kv/-/invert-kv-2.0.0.tgz#7393f5afa59ec9ff5f67a27620d11c226e3eec02" 1949 | integrity sha1-c5P1r6Weyf9fZ6J2INEcIm4+7AI= 1950 | 1951 | is-accessor-descriptor@^0.1.6: 1952 | version "0.1.6" 1953 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 1954 | integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY= 1955 | dependencies: 1956 | kind-of "^3.0.2" 1957 | 1958 | is-accessor-descriptor@^1.0.0: 1959 | version "1.0.0" 1960 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 1961 | integrity sha1-FpwvbT3x+ZJhgHI2XJsOofaHhlY= 1962 | dependencies: 1963 | kind-of "^6.0.0" 1964 | 1965 | is-arrayish@^0.2.1: 1966 | version "0.2.1" 1967 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1968 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 1969 | 1970 | is-buffer@^1.1.5: 1971 | version "1.1.6" 1972 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1973 | integrity sha1-76ouqdqg16suoTqXsritUf776L4= 1974 | 1975 | is-callable@^1.1.4: 1976 | version "1.1.4" 1977 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75" 1978 | integrity sha1-HhrfIZ4e62hNaR+dagX/DTCiTXU= 1979 | 1980 | is-ci@^2.0.0: 1981 | version "2.0.0" 1982 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c" 1983 | integrity sha1-a8YzQYGBDgS1wis9WJ/cpVAmQEw= 1984 | dependencies: 1985 | ci-info "^2.0.0" 1986 | 1987 | is-data-descriptor@^0.1.4: 1988 | version "0.1.4" 1989 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 1990 | integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y= 1991 | dependencies: 1992 | kind-of "^3.0.2" 1993 | 1994 | is-data-descriptor@^1.0.0: 1995 | version "1.0.0" 1996 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 1997 | integrity sha1-2Eh2Mh0Oet0DmQQGq7u9NrqSaMc= 1998 | dependencies: 1999 | kind-of "^6.0.0" 2000 | 2001 | is-date-object@^1.0.1: 2002 | version "1.0.1" 2003 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 2004 | integrity sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY= 2005 | 2006 | is-descriptor@^0.1.0: 2007 | version "0.1.6" 2008 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 2009 | integrity sha1-Nm2CQN3kh8pRgjsaufB6EKeCUco= 2010 | dependencies: 2011 | is-accessor-descriptor "^0.1.6" 2012 | is-data-descriptor "^0.1.4" 2013 | kind-of "^5.0.0" 2014 | 2015 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 2016 | version "1.0.2" 2017 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 2018 | integrity sha1-OxWXRqZmBLBPjIFSS6NlxfFNhuw= 2019 | dependencies: 2020 | is-accessor-descriptor "^1.0.0" 2021 | is-data-descriptor "^1.0.0" 2022 | kind-of "^6.0.2" 2023 | 2024 | is-extendable@^0.1.0, is-extendable@^0.1.1: 2025 | version "0.1.1" 2026 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 2027 | integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik= 2028 | 2029 | is-extendable@^1.0.1: 2030 | version "1.0.1" 2031 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 2032 | integrity sha1-p0cPnkJnM9gb2B4RVSZOOjUHyrQ= 2033 | dependencies: 2034 | is-plain-object "^2.0.4" 2035 | 2036 | is-fullwidth-code-point@^1.0.0: 2037 | version "1.0.0" 2038 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 2039 | integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs= 2040 | dependencies: 2041 | number-is-nan "^1.0.0" 2042 | 2043 | is-fullwidth-code-point@^2.0.0: 2044 | version "2.0.0" 2045 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 2046 | integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= 2047 | 2048 | is-generator-fn@^2.0.0: 2049 | version "2.1.0" 2050 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" 2051 | integrity sha1-fRQK3DiarzARqPKipM+m+q3/sRg= 2052 | 2053 | is-module@^1.0.0: 2054 | version "1.0.0" 2055 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591" 2056 | integrity sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE= 2057 | 2058 | is-number@^3.0.0: 2059 | version "3.0.0" 2060 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 2061 | integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU= 2062 | dependencies: 2063 | kind-of "^3.0.2" 2064 | 2065 | is-plain-object@^2.0.3, is-plain-object@^2.0.4: 2066 | version "2.0.4" 2067 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 2068 | integrity sha1-LBY7P6+xtgbZ0Xko8FwqHDjgdnc= 2069 | dependencies: 2070 | isobject "^3.0.1" 2071 | 2072 | is-regex@^1.0.4: 2073 | version "1.0.4" 2074 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 2075 | integrity sha1-VRdIm1RwkbCTDglWVM7SXul+lJE= 2076 | dependencies: 2077 | has "^1.0.1" 2078 | 2079 | is-stream@^1.1.0: 2080 | version "1.1.0" 2081 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2082 | integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= 2083 | 2084 | is-symbol@^1.0.2: 2085 | version "1.0.2" 2086 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/is-symbol/-/is-symbol-1.0.2.tgz#a055f6ae57192caee329e7a860118b497a950f38" 2087 | integrity sha1-oFX2rlcZLK7jKeeoYBGLSXqVDzg= 2088 | dependencies: 2089 | has-symbols "^1.0.0" 2090 | 2091 | is-typedarray@~1.0.0: 2092 | version "1.0.0" 2093 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2094 | integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= 2095 | 2096 | is-windows@^1.0.2: 2097 | version "1.0.2" 2098 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 2099 | integrity sha1-0YUOuXkezRjmGCzhKjDzlmNLsZ0= 2100 | 2101 | is-wsl@^1.1.0: 2102 | version "1.1.0" 2103 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" 2104 | integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0= 2105 | 2106 | isarray@1.0.0, isarray@~1.0.0: 2107 | version "1.0.0" 2108 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2109 | integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= 2110 | 2111 | isexe@^2.0.0: 2112 | version "2.0.0" 2113 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2114 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 2115 | 2116 | isobject@^2.0.0: 2117 | version "2.1.0" 2118 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2119 | integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk= 2120 | dependencies: 2121 | isarray "1.0.0" 2122 | 2123 | isobject@^3.0.0, isobject@^3.0.1: 2124 | version "3.0.1" 2125 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 2126 | integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= 2127 | 2128 | isstream@~0.1.2: 2129 | version "0.1.2" 2130 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2131 | integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= 2132 | 2133 | istanbul-lib-coverage@^2.0.2, istanbul-lib-coverage@^2.0.5: 2134 | version "2.0.5" 2135 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz#675f0ab69503fad4b1d849f736baaca803344f49" 2136 | integrity sha1-Z18KtpUD+tSx2En3NrqsqAM0T0k= 2137 | 2138 | istanbul-lib-instrument@^3.0.1, istanbul-lib-instrument@^3.3.0: 2139 | version "3.3.0" 2140 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/istanbul-lib-instrument/-/istanbul-lib-instrument-3.3.0.tgz#a5f63d91f0bbc0c3e479ef4c5de027335ec6d630" 2141 | integrity sha1-pfY9kfC7wMPkee9MXeAnM17G1jA= 2142 | dependencies: 2143 | "@babel/generator" "^7.4.0" 2144 | "@babel/parser" "^7.4.3" 2145 | "@babel/template" "^7.4.0" 2146 | "@babel/traverse" "^7.4.3" 2147 | "@babel/types" "^7.4.0" 2148 | istanbul-lib-coverage "^2.0.5" 2149 | semver "^6.0.0" 2150 | 2151 | istanbul-lib-report@^2.0.4: 2152 | version "2.0.8" 2153 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/istanbul-lib-report/-/istanbul-lib-report-2.0.8.tgz#5a8113cd746d43c4889eba36ab10e7d50c9b4f33" 2154 | integrity sha1-WoETzXRtQ8SInro2qxDn1QybTzM= 2155 | dependencies: 2156 | istanbul-lib-coverage "^2.0.5" 2157 | make-dir "^2.1.0" 2158 | supports-color "^6.1.0" 2159 | 2160 | istanbul-lib-source-maps@^3.0.1: 2161 | version "3.0.6" 2162 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/istanbul-lib-source-maps/-/istanbul-lib-source-maps-3.0.6.tgz#284997c48211752ec486253da97e3879defba8c8" 2163 | integrity sha1-KEmXxIIRdS7EhiU9qX44ed77qMg= 2164 | dependencies: 2165 | debug "^4.1.1" 2166 | istanbul-lib-coverage "^2.0.5" 2167 | make-dir "^2.1.0" 2168 | rimraf "^2.6.3" 2169 | source-map "^0.6.1" 2170 | 2171 | istanbul-reports@^2.1.1: 2172 | version "2.2.6" 2173 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/istanbul-reports/-/istanbul-reports-2.2.6.tgz#7b4f2660d82b29303a8fe6091f8ca4bf058da1af" 2174 | integrity sha1-e08mYNgrKTA6j+YJH4ykvwWNoa8= 2175 | dependencies: 2176 | handlebars "^4.1.2" 2177 | 2178 | jest-changed-files@^24.8.0: 2179 | version "24.8.0" 2180 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/jest-changed-files/-/jest-changed-files-24.8.0.tgz#7e7eb21cf687587a85e50f3d249d1327e15b157b" 2181 | integrity sha1-fn6yHPaHWHqF5Q89JJ0TJ+FbFXs= 2182 | dependencies: 2183 | "@jest/types" "^24.8.0" 2184 | execa "^1.0.0" 2185 | throat "^4.0.0" 2186 | 2187 | jest-cli@^24.8.0: 2188 | version "24.8.0" 2189 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/jest-cli/-/jest-cli-24.8.0.tgz#b075ac914492ed114fa338ade7362a301693e989" 2190 | integrity sha1-sHWskUSS7RFPozit5zYqMBaT6Yk= 2191 | dependencies: 2192 | "@jest/core" "^24.8.0" 2193 | "@jest/test-result" "^24.8.0" 2194 | "@jest/types" "^24.8.0" 2195 | chalk "^2.0.1" 2196 | exit "^0.1.2" 2197 | import-local "^2.0.0" 2198 | is-ci "^2.0.0" 2199 | jest-config "^24.8.0" 2200 | jest-util "^24.8.0" 2201 | jest-validate "^24.8.0" 2202 | prompts "^2.0.1" 2203 | realpath-native "^1.1.0" 2204 | yargs "^12.0.2" 2205 | 2206 | jest-config@^24.8.0: 2207 | version "24.8.0" 2208 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/jest-config/-/jest-config-24.8.0.tgz#77db3d265a6f726294687cbbccc36f8a76ee0f4f" 2209 | integrity sha1-d9s9JlpvcmKUaHy7zMNvinbuD08= 2210 | dependencies: 2211 | "@babel/core" "^7.1.0" 2212 | "@jest/test-sequencer" "^24.8.0" 2213 | "@jest/types" "^24.8.0" 2214 | babel-jest "^24.8.0" 2215 | chalk "^2.0.1" 2216 | glob "^7.1.1" 2217 | jest-environment-jsdom "^24.8.0" 2218 | jest-environment-node "^24.8.0" 2219 | jest-get-type "^24.8.0" 2220 | jest-jasmine2 "^24.8.0" 2221 | jest-regex-util "^24.3.0" 2222 | jest-resolve "^24.8.0" 2223 | jest-util "^24.8.0" 2224 | jest-validate "^24.8.0" 2225 | micromatch "^3.1.10" 2226 | pretty-format "^24.8.0" 2227 | realpath-native "^1.1.0" 2228 | 2229 | jest-diff@^24.8.0: 2230 | version "24.8.0" 2231 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/jest-diff/-/jest-diff-24.8.0.tgz#146435e7d1e3ffdf293d53ff97e193f1d1546172" 2232 | integrity sha1-FGQ159Hj/98pPVP/l+GT8dFUYXI= 2233 | dependencies: 2234 | chalk "^2.0.1" 2235 | diff-sequences "^24.3.0" 2236 | jest-get-type "^24.8.0" 2237 | pretty-format "^24.8.0" 2238 | 2239 | jest-docblock@^24.3.0: 2240 | version "24.3.0" 2241 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/jest-docblock/-/jest-docblock-24.3.0.tgz#b9c32dac70f72e4464520d2ba4aec02ab14db5dd" 2242 | integrity sha1-ucMtrHD3LkRkUg0rpK7AKrFNtd0= 2243 | dependencies: 2244 | detect-newline "^2.1.0" 2245 | 2246 | jest-each@^24.8.0: 2247 | version "24.8.0" 2248 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/jest-each/-/jest-each-24.8.0.tgz#a05fd2bf94ddc0b1da66c6d13ec2457f35e52775" 2249 | integrity sha1-oF/Sv5TdwLHaZsbRPsJFfzXlJ3U= 2250 | dependencies: 2251 | "@jest/types" "^24.8.0" 2252 | chalk "^2.0.1" 2253 | jest-get-type "^24.8.0" 2254 | jest-util "^24.8.0" 2255 | pretty-format "^24.8.0" 2256 | 2257 | jest-environment-jsdom@^24.8.0: 2258 | version "24.8.0" 2259 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/jest-environment-jsdom/-/jest-environment-jsdom-24.8.0.tgz#300f6949a146cabe1c9357ad9e9ecf9f43f38857" 2260 | integrity sha1-MA9pSaFGyr4ck1etnp7Pn0PziFc= 2261 | dependencies: 2262 | "@jest/environment" "^24.8.0" 2263 | "@jest/fake-timers" "^24.8.0" 2264 | "@jest/types" "^24.8.0" 2265 | jest-mock "^24.8.0" 2266 | jest-util "^24.8.0" 2267 | jsdom "^11.5.1" 2268 | 2269 | jest-environment-node@^24.8.0: 2270 | version "24.8.0" 2271 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/jest-environment-node/-/jest-environment-node-24.8.0.tgz#d3f726ba8bc53087a60e7a84ca08883a4c892231" 2272 | integrity sha1-0/cmuovFMIemDnqEygiIOkyJIjE= 2273 | dependencies: 2274 | "@jest/environment" "^24.8.0" 2275 | "@jest/fake-timers" "^24.8.0" 2276 | "@jest/types" "^24.8.0" 2277 | jest-mock "^24.8.0" 2278 | jest-util "^24.8.0" 2279 | 2280 | jest-get-type@^24.8.0: 2281 | version "24.8.0" 2282 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/jest-get-type/-/jest-get-type-24.8.0.tgz#a7440de30b651f5a70ea3ed7ff073a32dfe646fc" 2283 | integrity sha1-p0QN4wtlH1pw6j7X/wc6Mt/mRvw= 2284 | 2285 | jest-haste-map@^24.8.0: 2286 | version "24.8.1" 2287 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/jest-haste-map/-/jest-haste-map-24.8.1.tgz#f39cc1d2b1d907e014165b4bd5a957afcb992982" 2288 | integrity sha1-85zB0rHZB+AUFltL1alXr8uZKYI= 2289 | dependencies: 2290 | "@jest/types" "^24.8.0" 2291 | anymatch "^2.0.0" 2292 | fb-watchman "^2.0.0" 2293 | graceful-fs "^4.1.15" 2294 | invariant "^2.2.4" 2295 | jest-serializer "^24.4.0" 2296 | jest-util "^24.8.0" 2297 | jest-worker "^24.6.0" 2298 | micromatch "^3.1.10" 2299 | sane "^4.0.3" 2300 | walker "^1.0.7" 2301 | optionalDependencies: 2302 | fsevents "^1.2.7" 2303 | 2304 | jest-jasmine2@^24.8.0: 2305 | version "24.8.0" 2306 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/jest-jasmine2/-/jest-jasmine2-24.8.0.tgz#a9c7e14c83dd77d8b15e820549ce8987cc8cd898" 2307 | integrity sha1-qcfhTIPdd9ixXoIFSc6Jh8yM2Jg= 2308 | dependencies: 2309 | "@babel/traverse" "^7.1.0" 2310 | "@jest/environment" "^24.8.0" 2311 | "@jest/test-result" "^24.8.0" 2312 | "@jest/types" "^24.8.0" 2313 | chalk "^2.0.1" 2314 | co "^4.6.0" 2315 | expect "^24.8.0" 2316 | is-generator-fn "^2.0.0" 2317 | jest-each "^24.8.0" 2318 | jest-matcher-utils "^24.8.0" 2319 | jest-message-util "^24.8.0" 2320 | jest-runtime "^24.8.0" 2321 | jest-snapshot "^24.8.0" 2322 | jest-util "^24.8.0" 2323 | pretty-format "^24.8.0" 2324 | throat "^4.0.0" 2325 | 2326 | jest-leak-detector@^24.8.0: 2327 | version "24.8.0" 2328 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/jest-leak-detector/-/jest-leak-detector-24.8.0.tgz#c0086384e1f650c2d8348095df769f29b48e6980" 2329 | integrity sha1-wAhjhOH2UMLYNICV33afKbSOaYA= 2330 | dependencies: 2331 | pretty-format "^24.8.0" 2332 | 2333 | jest-localstorage-mock@^2.4.0: 2334 | version "2.4.0" 2335 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/jest-localstorage-mock/-/jest-localstorage-mock-2.4.0.tgz#c6073810735dd3af74020ea6c3885ec1cc6d0d13" 2336 | integrity sha1-xgc4EHNd0690Ag6mw4hewcxtDRM= 2337 | 2338 | jest-matcher-utils@^24.8.0: 2339 | version "24.8.0" 2340 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/jest-matcher-utils/-/jest-matcher-utils-24.8.0.tgz#2bce42204c9af12bde46f83dc839efe8be832495" 2341 | integrity sha1-K85CIEya8SveRvg9yDnv6L6DJJU= 2342 | dependencies: 2343 | chalk "^2.0.1" 2344 | jest-diff "^24.8.0" 2345 | jest-get-type "^24.8.0" 2346 | pretty-format "^24.8.0" 2347 | 2348 | jest-message-util@^24.8.0: 2349 | version "24.8.0" 2350 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/jest-message-util/-/jest-message-util-24.8.0.tgz#0d6891e72a4beacc0292b638685df42e28d6218b" 2351 | integrity sha1-DWiR5ypL6swCkrY4aF30LijWIYs= 2352 | dependencies: 2353 | "@babel/code-frame" "^7.0.0" 2354 | "@jest/test-result" "^24.8.0" 2355 | "@jest/types" "^24.8.0" 2356 | "@types/stack-utils" "^1.0.1" 2357 | chalk "^2.0.1" 2358 | micromatch "^3.1.10" 2359 | slash "^2.0.0" 2360 | stack-utils "^1.0.1" 2361 | 2362 | jest-mock@^24.8.0: 2363 | version "24.8.0" 2364 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/jest-mock/-/jest-mock-24.8.0.tgz#2f9d14d37699e863f1febf4e4d5a33b7fdbbde56" 2365 | integrity sha1-L50U03aZ6GPx/r9OTVozt/273lY= 2366 | dependencies: 2367 | "@jest/types" "^24.8.0" 2368 | 2369 | jest-pnp-resolver@^1.2.1: 2370 | version "1.2.1" 2371 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/jest-pnp-resolver/-/jest-pnp-resolver-1.2.1.tgz#ecdae604c077a7fbc70defb6d517c3c1c898923a" 2372 | integrity sha1-7NrmBMB3p/vHDe+21RfDwciYkjo= 2373 | 2374 | jest-regex-util@^24.3.0: 2375 | version "24.3.0" 2376 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/jest-regex-util/-/jest-regex-util-24.3.0.tgz#d5a65f60be1ae3e310d5214a0307581995227b36" 2377 | integrity sha1-1aZfYL4a4+MQ1SFKAwdYGZUiezY= 2378 | 2379 | jest-resolve-dependencies@^24.8.0: 2380 | version "24.8.0" 2381 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/jest-resolve-dependencies/-/jest-resolve-dependencies-24.8.0.tgz#19eec3241f2045d3f990dba331d0d7526acff8e0" 2382 | integrity sha1-Ge7DJB8gRdP5kNujMdDXUmrP+OA= 2383 | dependencies: 2384 | "@jest/types" "^24.8.0" 2385 | jest-regex-util "^24.3.0" 2386 | jest-snapshot "^24.8.0" 2387 | 2388 | jest-resolve@^24.8.0: 2389 | version "24.8.0" 2390 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/jest-resolve/-/jest-resolve-24.8.0.tgz#84b8e5408c1f6a11539793e2b5feb1b6e722439f" 2391 | integrity sha1-hLjlQIwfahFTl5Pitf6xtuciQ58= 2392 | dependencies: 2393 | "@jest/types" "^24.8.0" 2394 | browser-resolve "^1.11.3" 2395 | chalk "^2.0.1" 2396 | jest-pnp-resolver "^1.2.1" 2397 | realpath-native "^1.1.0" 2398 | 2399 | jest-runner@^24.8.0: 2400 | version "24.8.0" 2401 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/jest-runner/-/jest-runner-24.8.0.tgz#4f9ae07b767db27b740d7deffad0cf67ccb4c5bb" 2402 | integrity sha1-T5rge3Z9snt0DX3v+tDPZ8y0xbs= 2403 | dependencies: 2404 | "@jest/console" "^24.7.1" 2405 | "@jest/environment" "^24.8.0" 2406 | "@jest/test-result" "^24.8.0" 2407 | "@jest/types" "^24.8.0" 2408 | chalk "^2.4.2" 2409 | exit "^0.1.2" 2410 | graceful-fs "^4.1.15" 2411 | jest-config "^24.8.0" 2412 | jest-docblock "^24.3.0" 2413 | jest-haste-map "^24.8.0" 2414 | jest-jasmine2 "^24.8.0" 2415 | jest-leak-detector "^24.8.0" 2416 | jest-message-util "^24.8.0" 2417 | jest-resolve "^24.8.0" 2418 | jest-runtime "^24.8.0" 2419 | jest-util "^24.8.0" 2420 | jest-worker "^24.6.0" 2421 | source-map-support "^0.5.6" 2422 | throat "^4.0.0" 2423 | 2424 | jest-runtime@^24.8.0: 2425 | version "24.8.0" 2426 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/jest-runtime/-/jest-runtime-24.8.0.tgz#05f94d5b05c21f6dc54e427cd2e4980923350620" 2427 | integrity sha1-BflNWwXCH23FTkJ80uSYCSM1BiA= 2428 | dependencies: 2429 | "@jest/console" "^24.7.1" 2430 | "@jest/environment" "^24.8.0" 2431 | "@jest/source-map" "^24.3.0" 2432 | "@jest/transform" "^24.8.0" 2433 | "@jest/types" "^24.8.0" 2434 | "@types/yargs" "^12.0.2" 2435 | chalk "^2.0.1" 2436 | exit "^0.1.2" 2437 | glob "^7.1.3" 2438 | graceful-fs "^4.1.15" 2439 | jest-config "^24.8.0" 2440 | jest-haste-map "^24.8.0" 2441 | jest-message-util "^24.8.0" 2442 | jest-mock "^24.8.0" 2443 | jest-regex-util "^24.3.0" 2444 | jest-resolve "^24.8.0" 2445 | jest-snapshot "^24.8.0" 2446 | jest-util "^24.8.0" 2447 | jest-validate "^24.8.0" 2448 | realpath-native "^1.1.0" 2449 | slash "^2.0.0" 2450 | strip-bom "^3.0.0" 2451 | yargs "^12.0.2" 2452 | 2453 | jest-serializer@^24.4.0: 2454 | version "24.4.0" 2455 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/jest-serializer/-/jest-serializer-24.4.0.tgz#f70c5918c8ea9235ccb1276d232e459080588db3" 2456 | integrity sha1-9wxZGMjqkjXMsSdtIy5FkIBYjbM= 2457 | 2458 | jest-snapshot@^24.8.0: 2459 | version "24.8.0" 2460 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/jest-snapshot/-/jest-snapshot-24.8.0.tgz#3bec6a59da2ff7bc7d097a853fb67f9d415cb7c6" 2461 | integrity sha1-O+xqWdov97x9CXqFP7Z/nUFct8Y= 2462 | dependencies: 2463 | "@babel/types" "^7.0.0" 2464 | "@jest/types" "^24.8.0" 2465 | chalk "^2.0.1" 2466 | expect "^24.8.0" 2467 | jest-diff "^24.8.0" 2468 | jest-matcher-utils "^24.8.0" 2469 | jest-message-util "^24.8.0" 2470 | jest-resolve "^24.8.0" 2471 | mkdirp "^0.5.1" 2472 | natural-compare "^1.4.0" 2473 | pretty-format "^24.8.0" 2474 | semver "^5.5.0" 2475 | 2476 | jest-transform-svelte@^2.0.2: 2477 | version "2.0.2" 2478 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/jest-transform-svelte/-/jest-transform-svelte-2.0.2.tgz#21fce344754eb57e7a99879709a07bdcf7f453aa" 2479 | integrity sha1-IfzjRHVOtX56mYeXCaB73Pf0U6o= 2480 | dependencies: 2481 | deasync "^0.1.15" 2482 | rollup "^1.11.1" 2483 | rollup-plugin-node-resolve "^4.2.3" 2484 | rollup-plugin-svelte "^5.0.3" 2485 | svelte "^3.1.0" 2486 | 2487 | jest-util@^24.8.0: 2488 | version "24.8.0" 2489 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/jest-util/-/jest-util-24.8.0.tgz#41f0e945da11df44cc76d64ffb915d0716f46cd1" 2490 | integrity sha1-QfDpRdoR30TMdtZP+5FdBxb0bNE= 2491 | dependencies: 2492 | "@jest/console" "^24.7.1" 2493 | "@jest/fake-timers" "^24.8.0" 2494 | "@jest/source-map" "^24.3.0" 2495 | "@jest/test-result" "^24.8.0" 2496 | "@jest/types" "^24.8.0" 2497 | callsites "^3.0.0" 2498 | chalk "^2.0.1" 2499 | graceful-fs "^4.1.15" 2500 | is-ci "^2.0.0" 2501 | mkdirp "^0.5.1" 2502 | slash "^2.0.0" 2503 | source-map "^0.6.0" 2504 | 2505 | jest-validate@^24.8.0: 2506 | version "24.8.0" 2507 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/jest-validate/-/jest-validate-24.8.0.tgz#624c41533e6dfe356ffadc6e2423a35c2d3b4849" 2508 | integrity sha1-YkxBUz5t/jVv+txuJCOjXC07SEk= 2509 | dependencies: 2510 | "@jest/types" "^24.8.0" 2511 | camelcase "^5.0.0" 2512 | chalk "^2.0.1" 2513 | jest-get-type "^24.8.0" 2514 | leven "^2.1.0" 2515 | pretty-format "^24.8.0" 2516 | 2517 | jest-watcher@^24.8.0: 2518 | version "24.8.0" 2519 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/jest-watcher/-/jest-watcher-24.8.0.tgz#58d49915ceddd2de85e238f6213cef1c93715de4" 2520 | integrity sha1-WNSZFc7d0t6F4jj2ITzvHJNxXeQ= 2521 | dependencies: 2522 | "@jest/test-result" "^24.8.0" 2523 | "@jest/types" "^24.8.0" 2524 | "@types/yargs" "^12.0.9" 2525 | ansi-escapes "^3.0.0" 2526 | chalk "^2.0.1" 2527 | jest-util "^24.8.0" 2528 | string-length "^2.0.0" 2529 | 2530 | jest-worker@^24.6.0: 2531 | version "24.6.0" 2532 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/jest-worker/-/jest-worker-24.6.0.tgz#7f81ceae34b7cde0c9827a6980c35b7cdc0161b3" 2533 | integrity sha1-f4HOrjS3zeDJgnppgMNbfNwBYbM= 2534 | dependencies: 2535 | merge-stream "^1.0.1" 2536 | supports-color "^6.1.0" 2537 | 2538 | jest@^24.8.0: 2539 | version "24.8.0" 2540 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/jest/-/jest-24.8.0.tgz#d5dff1984d0d1002196e9b7f12f75af1b2809081" 2541 | integrity sha1-1d/xmE0NEAIZbpt/Evda8bKAkIE= 2542 | dependencies: 2543 | import-local "^2.0.0" 2544 | jest-cli "^24.8.0" 2545 | 2546 | js-levenshtein@^1.1.3: 2547 | version "1.1.6" 2548 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/js-levenshtein/-/js-levenshtein-1.1.6.tgz#c6cee58eb3550372df8deb85fad5ce66ce01d59d" 2549 | integrity sha1-xs7ljrNVA3LfjeuF+tXOZs4B1Z0= 2550 | 2551 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: 2552 | version "4.0.0" 2553 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 2554 | integrity sha1-GSA/tZmR35jjoocFDUZHzerzJJk= 2555 | 2556 | jsbn@~0.1.0: 2557 | version "0.1.1" 2558 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2559 | integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM= 2560 | 2561 | jsdom@^11.5.1: 2562 | version "11.12.0" 2563 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/jsdom/-/jsdom-11.12.0.tgz#1a80d40ddd378a1de59656e9e6dc5a3ba8657bc8" 2564 | integrity sha1-GoDUDd03ih3lllbp5txaO6hle8g= 2565 | dependencies: 2566 | abab "^2.0.0" 2567 | acorn "^5.5.3" 2568 | acorn-globals "^4.1.0" 2569 | array-equal "^1.0.0" 2570 | cssom ">= 0.3.2 < 0.4.0" 2571 | cssstyle "^1.0.0" 2572 | data-urls "^1.0.0" 2573 | domexception "^1.0.1" 2574 | escodegen "^1.9.1" 2575 | html-encoding-sniffer "^1.0.2" 2576 | left-pad "^1.3.0" 2577 | nwsapi "^2.0.7" 2578 | parse5 "4.0.0" 2579 | pn "^1.1.0" 2580 | request "^2.87.0" 2581 | request-promise-native "^1.0.5" 2582 | sax "^1.2.4" 2583 | symbol-tree "^3.2.2" 2584 | tough-cookie "^2.3.4" 2585 | w3c-hr-time "^1.0.1" 2586 | webidl-conversions "^4.0.2" 2587 | whatwg-encoding "^1.0.3" 2588 | whatwg-mimetype "^2.1.0" 2589 | whatwg-url "^6.4.1" 2590 | ws "^5.2.0" 2591 | xml-name-validator "^3.0.0" 2592 | 2593 | jsesc@^2.5.1: 2594 | version "2.5.2" 2595 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" 2596 | integrity sha1-gFZNLkg9rPbo7yCWUKZ98/DCg6Q= 2597 | 2598 | jsesc@~0.5.0: 2599 | version "0.5.0" 2600 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2601 | integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0= 2602 | 2603 | json-parse-better-errors@^1.0.1: 2604 | version "1.0.2" 2605 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" 2606 | integrity sha1-u4Z8+zRQ5pEHwTHRxRS6s9yLyqk= 2607 | 2608 | json-schema-traverse@^0.4.1: 2609 | version "0.4.1" 2610 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 2611 | integrity sha1-afaofZUTq4u4/mO9sJecRI5oRmA= 2612 | 2613 | json-schema@0.2.3: 2614 | version "0.2.3" 2615 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2616 | integrity sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM= 2617 | 2618 | json-stringify-safe@~5.0.1: 2619 | version "5.0.1" 2620 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2621 | integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= 2622 | 2623 | json5@^2.1.0: 2624 | version "2.1.0" 2625 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/json5/-/json5-2.1.0.tgz#e7a0c62c48285c628d20a10b85c89bb807c32850" 2626 | integrity sha1-56DGLEgoXGKNIKELhcibuAfDKFA= 2627 | dependencies: 2628 | minimist "^1.2.0" 2629 | 2630 | jsprim@^1.2.2: 2631 | version "1.4.1" 2632 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 2633 | integrity sha1-MT5mvB5cwG5Di8G3SZwuXFastqI= 2634 | dependencies: 2635 | assert-plus "1.0.0" 2636 | extsprintf "1.3.0" 2637 | json-schema "0.2.3" 2638 | verror "1.10.0" 2639 | 2640 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 2641 | version "3.2.2" 2642 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2643 | integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ= 2644 | dependencies: 2645 | is-buffer "^1.1.5" 2646 | 2647 | kind-of@^4.0.0: 2648 | version "4.0.0" 2649 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2650 | integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc= 2651 | dependencies: 2652 | is-buffer "^1.1.5" 2653 | 2654 | kind-of@^5.0.0: 2655 | version "5.1.0" 2656 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 2657 | integrity sha1-cpyR4thXt6QZofmqZWhcTDP1hF0= 2658 | 2659 | kind-of@^6.0.0, kind-of@^6.0.2: 2660 | version "6.0.2" 2661 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 2662 | integrity sha1-ARRrNqYhjmTljzqNZt5df8b20FE= 2663 | 2664 | kleur@^3.0.2: 2665 | version "3.0.3" 2666 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" 2667 | integrity sha1-p5yezIbuHOP6YgbRIWxQHxR/wH4= 2668 | 2669 | lcid@^2.0.0: 2670 | version "2.0.0" 2671 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/lcid/-/lcid-2.0.0.tgz#6ef5d2df60e52f82eb228a4c373e8d1f397253cf" 2672 | integrity sha1-bvXS32DlL4LrIopMNz6NHzlyU88= 2673 | dependencies: 2674 | invert-kv "^2.0.0" 2675 | 2676 | left-pad@^1.3.0: 2677 | version "1.3.0" 2678 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/left-pad/-/left-pad-1.3.0.tgz#5b8a3a7765dfe001261dde915589e782f8c94d1e" 2679 | integrity sha1-W4o6d2Xf4AEmHd6RVYnngvjJTR4= 2680 | 2681 | leven@^2.1.0: 2682 | version "2.1.0" 2683 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 2684 | integrity sha1-wuep93IJTe6dNCAq6KzORoeHVYA= 2685 | 2686 | levn@~0.3.0: 2687 | version "0.3.0" 2688 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2689 | integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= 2690 | dependencies: 2691 | prelude-ls "~1.1.2" 2692 | type-check "~0.3.2" 2693 | 2694 | load-json-file@^4.0.0: 2695 | version "4.0.0" 2696 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" 2697 | integrity sha1-L19Fq5HjMhYjT9U62rZo607AmTs= 2698 | dependencies: 2699 | graceful-fs "^4.1.2" 2700 | parse-json "^4.0.0" 2701 | pify "^3.0.0" 2702 | strip-bom "^3.0.0" 2703 | 2704 | locate-path@^3.0.0: 2705 | version "3.0.0" 2706 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" 2707 | integrity sha1-2+w7OrdZdYBxtY/ln8QYca8hQA4= 2708 | dependencies: 2709 | p-locate "^3.0.0" 2710 | path-exists "^3.0.0" 2711 | 2712 | lodash.sortby@^4.7.0: 2713 | version "4.7.0" 2714 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" 2715 | integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg= 2716 | 2717 | lodash@^4.17.11: 2718 | version "4.17.15" 2719 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" 2720 | integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A== 2721 | 2722 | loose-envify@^1.0.0: 2723 | version "1.4.0" 2724 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 2725 | integrity sha1-ce5R+nvkyuwaY4OffmgtgTLTDK8= 2726 | dependencies: 2727 | js-tokens "^3.0.0 || ^4.0.0" 2728 | 2729 | make-dir@^2.1.0: 2730 | version "2.1.0" 2731 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" 2732 | integrity sha1-XwMQ4YuL6JjMBwCSlaMK5B6R5vU= 2733 | dependencies: 2734 | pify "^4.0.1" 2735 | semver "^5.6.0" 2736 | 2737 | makeerror@1.0.x: 2738 | version "1.0.11" 2739 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 2740 | integrity sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw= 2741 | dependencies: 2742 | tmpl "1.0.x" 2743 | 2744 | map-age-cleaner@^0.1.1: 2745 | version "0.1.3" 2746 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a" 2747 | integrity sha1-fVg6cwZDTAVf5HSw9FB45uG0uSo= 2748 | dependencies: 2749 | p-defer "^1.0.0" 2750 | 2751 | map-cache@^0.2.2: 2752 | version "0.2.2" 2753 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 2754 | integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= 2755 | 2756 | map-visit@^1.0.0: 2757 | version "1.0.0" 2758 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 2759 | integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48= 2760 | dependencies: 2761 | object-visit "^1.0.0" 2762 | 2763 | mem@^4.0.0: 2764 | version "4.3.0" 2765 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/mem/-/mem-4.3.0.tgz#461af497bc4ae09608cdb2e60eefb69bff744178" 2766 | integrity sha1-Rhr0l7xK4JYIzbLmDu+2m/90QXg= 2767 | dependencies: 2768 | map-age-cleaner "^0.1.1" 2769 | mimic-fn "^2.0.0" 2770 | p-is-promise "^2.0.0" 2771 | 2772 | merge-stream@^1.0.1: 2773 | version "1.0.1" 2774 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1" 2775 | integrity sha1-QEEgLVCKNCugAXQAjfDCUbjBNeE= 2776 | dependencies: 2777 | readable-stream "^2.0.1" 2778 | 2779 | micromatch@^3.1.10, micromatch@^3.1.4: 2780 | version "3.1.10" 2781 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 2782 | integrity sha1-cIWbyVyYQJUvNZoGij/En57PrCM= 2783 | dependencies: 2784 | arr-diff "^4.0.0" 2785 | array-unique "^0.3.2" 2786 | braces "^2.3.1" 2787 | define-property "^2.0.2" 2788 | extend-shallow "^3.0.2" 2789 | extglob "^2.0.4" 2790 | fragment-cache "^0.2.1" 2791 | kind-of "^6.0.2" 2792 | nanomatch "^1.2.9" 2793 | object.pick "^1.3.0" 2794 | regex-not "^1.0.0" 2795 | snapdragon "^0.8.1" 2796 | to-regex "^3.0.2" 2797 | 2798 | mime-db@1.40.0: 2799 | version "1.40.0" 2800 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/mime-db/-/mime-db-1.40.0.tgz#a65057e998db090f732a68f6c276d387d4126c32" 2801 | integrity sha1-plBX6ZjbCQ9zKmj2wnbTh9QSbDI= 2802 | 2803 | mime-types@^2.1.12, mime-types@~2.1.19: 2804 | version "2.1.24" 2805 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/mime-types/-/mime-types-2.1.24.tgz#b6f8d0b3e951efb77dedeca194cff6d16f676f81" 2806 | integrity sha1-tvjQs+lR77d97eyhlM/20W9nb4E= 2807 | dependencies: 2808 | mime-db "1.40.0" 2809 | 2810 | mimic-fn@^2.0.0: 2811 | version "2.1.0" 2812 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" 2813 | integrity sha1-ftLCzMyvhNP/y3pptXcR/CCDQBs= 2814 | 2815 | minimatch@^3.0.4: 2816 | version "3.0.4" 2817 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2818 | integrity sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM= 2819 | dependencies: 2820 | brace-expansion "^1.1.7" 2821 | 2822 | minimist@0.0.8: 2823 | version "0.0.8" 2824 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2825 | integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0= 2826 | 2827 | minimist@^1.1.1, minimist@^1.2.0: 2828 | version "1.2.0" 2829 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2830 | integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ= 2831 | 2832 | minimist@~0.0.1: 2833 | version "0.0.10" 2834 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 2835 | integrity sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8= 2836 | 2837 | minipass@^2.2.1, minipass@^2.3.5: 2838 | version "2.3.5" 2839 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/minipass/-/minipass-2.3.5.tgz#cacebe492022497f656b0f0f51e2682a9ed2d848" 2840 | integrity sha1-ys6+SSAiSX9law8PUeJoKp7S2Eg= 2841 | dependencies: 2842 | safe-buffer "^5.1.2" 2843 | yallist "^3.0.0" 2844 | 2845 | minizlib@^1.2.1: 2846 | version "1.2.1" 2847 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/minizlib/-/minizlib-1.2.1.tgz#dd27ea6136243c7c880684e8672bb3a45fd9b614" 2848 | integrity sha1-3SfqYTYkPHyIBoToZyuzpF/ZthQ= 2849 | dependencies: 2850 | minipass "^2.2.1" 2851 | 2852 | mixin-deep@^1.2.0: 2853 | version "1.3.2" 2854 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" 2855 | integrity sha1-ESC0PcNZp4Xc5ltVuC4lfM9HlWY= 2856 | dependencies: 2857 | for-in "^1.0.2" 2858 | is-extendable "^1.0.1" 2859 | 2860 | mkdirp@^0.5.0, mkdirp@^0.5.1: 2861 | version "0.5.1" 2862 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2863 | integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM= 2864 | dependencies: 2865 | minimist "0.0.8" 2866 | 2867 | ms@2.0.0: 2868 | version "2.0.0" 2869 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2870 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 2871 | 2872 | ms@^2.1.1: 2873 | version "2.1.2" 2874 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 2875 | integrity sha1-0J0fNXtEP0kzgqjrPM0YOHKuYAk= 2876 | 2877 | nan@^2.12.1: 2878 | version "2.14.0" 2879 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/nan/-/nan-2.14.0.tgz#7818f722027b2459a86f0295d434d1fc2336c52c" 2880 | integrity sha1-eBj3IgJ7JFmobwKV1DTR/CM2xSw= 2881 | 2882 | nanomatch@^1.2.9: 2883 | version "1.2.13" 2884 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" 2885 | integrity sha1-uHqKpPwN6P5r6IiVs4mD/yZb0Rk= 2886 | dependencies: 2887 | arr-diff "^4.0.0" 2888 | array-unique "^0.3.2" 2889 | define-property "^2.0.2" 2890 | extend-shallow "^3.0.2" 2891 | fragment-cache "^0.2.1" 2892 | is-windows "^1.0.2" 2893 | kind-of "^6.0.2" 2894 | object.pick "^1.3.0" 2895 | regex-not "^1.0.0" 2896 | snapdragon "^0.8.1" 2897 | to-regex "^3.0.1" 2898 | 2899 | natural-compare@^1.4.0: 2900 | version "1.4.0" 2901 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2902 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= 2903 | 2904 | needle@^2.2.1: 2905 | version "2.4.0" 2906 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/needle/-/needle-2.4.0.tgz#6833e74975c444642590e15a750288c5f939b57c" 2907 | integrity sha1-aDPnSXXERGQlkOFadQKIxfk5tXw= 2908 | dependencies: 2909 | debug "^3.2.6" 2910 | iconv-lite "^0.4.4" 2911 | sax "^1.2.4" 2912 | 2913 | neo-async@^2.6.0: 2914 | version "2.6.1" 2915 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c" 2916 | integrity sha1-rCetpmFn+ohJpq3dg39rGJrSCBw= 2917 | 2918 | nice-try@^1.0.4: 2919 | version "1.0.5" 2920 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" 2921 | integrity sha1-ozeKdpbOfSI+iPybdkvX7xCJ42Y= 2922 | 2923 | node-addon-api@^1.6.0: 2924 | version "1.6.3" 2925 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/node-addon-api/-/node-addon-api-1.6.3.tgz#3998d4593e2dca2ea82114670a4eb003386a9fe1" 2926 | integrity sha1-OZjUWT4tyi6oIRRnCk6wAzhqn+E= 2927 | 2928 | node-int64@^0.4.0: 2929 | version "0.4.0" 2930 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2931 | integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs= 2932 | 2933 | node-modules-regexp@^1.0.0: 2934 | version "1.0.0" 2935 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40" 2936 | integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA= 2937 | 2938 | node-notifier@^5.2.1: 2939 | version "5.4.0" 2940 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/node-notifier/-/node-notifier-5.4.0.tgz#7b455fdce9f7de0c63538297354f3db468426e6a" 2941 | integrity sha1-e0Vf3On33gxjU4KXNU89tGhCbmo= 2942 | dependencies: 2943 | growly "^1.3.0" 2944 | is-wsl "^1.1.0" 2945 | semver "^5.5.0" 2946 | shellwords "^0.1.1" 2947 | which "^1.3.0" 2948 | 2949 | node-pre-gyp@^0.12.0: 2950 | version "0.12.0" 2951 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/node-pre-gyp/-/node-pre-gyp-0.12.0.tgz#39ba4bb1439da030295f899e3b520b7785766149" 2952 | integrity sha1-ObpLsUOdoDApX4meO1ILd4V2YUk= 2953 | dependencies: 2954 | detect-libc "^1.0.2" 2955 | mkdirp "^0.5.1" 2956 | needle "^2.2.1" 2957 | nopt "^4.0.1" 2958 | npm-packlist "^1.1.6" 2959 | npmlog "^4.0.2" 2960 | rc "^1.2.7" 2961 | rimraf "^2.6.1" 2962 | semver "^5.3.0" 2963 | tar "^4" 2964 | 2965 | node-releases@^1.1.23: 2966 | version "1.1.23" 2967 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/node-releases/-/node-releases-1.1.23.tgz#de7409f72de044a2fa59c097f436ba89c39997f0" 2968 | integrity sha1-3nQJ9y3gRKL6WcCX9Da6icOZl/A= 2969 | dependencies: 2970 | semver "^5.3.0" 2971 | 2972 | nopt@^4.0.1: 2973 | version "4.0.1" 2974 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2975 | integrity sha1-0NRoWv1UFRk8jHUFYC0NF81kR00= 2976 | dependencies: 2977 | abbrev "1" 2978 | osenv "^0.1.4" 2979 | 2980 | normalize-package-data@^2.3.2: 2981 | version "2.5.0" 2982 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" 2983 | integrity sha1-5m2xg4sgDB38IzIl0SyzZSDiNKg= 2984 | dependencies: 2985 | hosted-git-info "^2.1.4" 2986 | resolve "^1.10.0" 2987 | semver "2 || 3 || 4 || 5" 2988 | validate-npm-package-license "^3.0.1" 2989 | 2990 | normalize-path@^2.1.1: 2991 | version "2.1.1" 2992 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2993 | integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk= 2994 | dependencies: 2995 | remove-trailing-separator "^1.0.1" 2996 | 2997 | npm-bundled@^1.0.1: 2998 | version "1.0.6" 2999 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/npm-bundled/-/npm-bundled-1.0.6.tgz#e7ba9aadcef962bb61248f91721cd932b3fe6bdd" 3000 | integrity sha1-57qarc75YrthJI+RchzZMrP+a90= 3001 | 3002 | npm-packlist@^1.1.6: 3003 | version "1.4.1" 3004 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/npm-packlist/-/npm-packlist-1.4.1.tgz#19064cdf988da80ea3cee45533879d90192bbfbc" 3005 | integrity sha1-GQZM35iNqA6jzuRVM4edkBkrv7w= 3006 | dependencies: 3007 | ignore-walk "^3.0.1" 3008 | npm-bundled "^1.0.1" 3009 | 3010 | npm-run-path@^2.0.0: 3011 | version "2.0.2" 3012 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 3013 | integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8= 3014 | dependencies: 3015 | path-key "^2.0.0" 3016 | 3017 | npmlog@^4.0.2: 3018 | version "4.1.2" 3019 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 3020 | integrity sha1-CKfyqL9zRgR3mp76StXMcXq7lUs= 3021 | dependencies: 3022 | are-we-there-yet "~1.1.2" 3023 | console-control-strings "~1.1.0" 3024 | gauge "~2.7.3" 3025 | set-blocking "~2.0.0" 3026 | 3027 | number-is-nan@^1.0.0: 3028 | version "1.0.1" 3029 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 3030 | integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= 3031 | 3032 | nwsapi@^2.0.7: 3033 | version "2.1.4" 3034 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/nwsapi/-/nwsapi-2.1.4.tgz#e006a878db23636f8e8a67d33ca0e4edf61a842f" 3035 | integrity sha1-4AaoeNsjY2+OimfTPKDk7fYahC8= 3036 | 3037 | oauth-sign@~0.9.0: 3038 | version "0.9.0" 3039 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" 3040 | integrity sha1-R6ewFrqmi1+g7PPe4IqFxnmsZFU= 3041 | 3042 | object-assign@^4.1.0: 3043 | version "4.1.1" 3044 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 3045 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 3046 | 3047 | object-copy@^0.1.0: 3048 | version "0.1.0" 3049 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 3050 | integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw= 3051 | dependencies: 3052 | copy-descriptor "^0.1.0" 3053 | define-property "^0.2.5" 3054 | kind-of "^3.0.3" 3055 | 3056 | object-keys@^1.0.12: 3057 | version "1.1.1" 3058 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 3059 | integrity sha1-HEfyct8nfzsdrwYWd9nILiMixg4= 3060 | 3061 | object-visit@^1.0.0: 3062 | version "1.0.1" 3063 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 3064 | integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs= 3065 | dependencies: 3066 | isobject "^3.0.0" 3067 | 3068 | object.getownpropertydescriptors@^2.0.3: 3069 | version "2.0.3" 3070 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16" 3071 | integrity sha1-h1jIRvW0B62rDyNuCYbxSwUcqhY= 3072 | dependencies: 3073 | define-properties "^1.1.2" 3074 | es-abstract "^1.5.1" 3075 | 3076 | object.pick@^1.3.0: 3077 | version "1.3.0" 3078 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 3079 | integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c= 3080 | dependencies: 3081 | isobject "^3.0.1" 3082 | 3083 | once@^1.3.0, once@^1.3.1, once@^1.4.0: 3084 | version "1.4.0" 3085 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 3086 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 3087 | dependencies: 3088 | wrappy "1" 3089 | 3090 | optimist@^0.6.1: 3091 | version "0.6.1" 3092 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 3093 | integrity sha1-2j6nRob6IaGaERwybpDrFaAZZoY= 3094 | dependencies: 3095 | minimist "~0.0.1" 3096 | wordwrap "~0.0.2" 3097 | 3098 | optionator@^0.8.1: 3099 | version "0.8.2" 3100 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 3101 | integrity sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q= 3102 | dependencies: 3103 | deep-is "~0.1.3" 3104 | fast-levenshtein "~2.0.4" 3105 | levn "~0.3.0" 3106 | prelude-ls "~1.1.2" 3107 | type-check "~0.3.2" 3108 | wordwrap "~1.0.0" 3109 | 3110 | os-homedir@^1.0.0: 3111 | version "1.0.2" 3112 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 3113 | integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= 3114 | 3115 | os-locale@^3.0.0: 3116 | version "3.1.0" 3117 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/os-locale/-/os-locale-3.1.0.tgz#a802a6ee17f24c10483ab9935719cef4ed16bf1a" 3118 | integrity sha1-qAKm7hfyTBBIOrmTVxnO9O0Wvxo= 3119 | dependencies: 3120 | execa "^1.0.0" 3121 | lcid "^2.0.0" 3122 | mem "^4.0.0" 3123 | 3124 | os-tmpdir@^1.0.0: 3125 | version "1.0.2" 3126 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 3127 | integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= 3128 | 3129 | osenv@^0.1.4: 3130 | version "0.1.5" 3131 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 3132 | integrity sha1-hc36+uso6Gd/QW4odZK18/SepBA= 3133 | dependencies: 3134 | os-homedir "^1.0.0" 3135 | os-tmpdir "^1.0.0" 3136 | 3137 | p-defer@^1.0.0: 3138 | version "1.0.0" 3139 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c" 3140 | integrity sha1-n26xgvbJqozXQwBKfU+WsZaw+ww= 3141 | 3142 | p-each-series@^1.0.0: 3143 | version "1.0.0" 3144 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/p-each-series/-/p-each-series-1.0.0.tgz#930f3d12dd1f50e7434457a22cd6f04ac6ad7f71" 3145 | integrity sha1-kw89Et0fUOdDRFeiLNbwSsatf3E= 3146 | dependencies: 3147 | p-reduce "^1.0.0" 3148 | 3149 | p-finally@^1.0.0: 3150 | version "1.0.0" 3151 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 3152 | integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= 3153 | 3154 | p-is-promise@^2.0.0: 3155 | version "2.1.0" 3156 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/p-is-promise/-/p-is-promise-2.1.0.tgz#918cebaea248a62cf7ffab8e3bca8c5f882fc42e" 3157 | integrity sha1-kYzrrqJIpiz3/6uOO8qMX4gvxC4= 3158 | 3159 | p-limit@^2.0.0: 3160 | version "2.2.0" 3161 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/p-limit/-/p-limit-2.2.0.tgz#417c9941e6027a9abcba5092dd2904e255b5fbc2" 3162 | integrity sha1-QXyZQeYCepq8ulCS3SkE4lW1+8I= 3163 | dependencies: 3164 | p-try "^2.0.0" 3165 | 3166 | p-locate@^3.0.0: 3167 | version "3.0.0" 3168 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" 3169 | integrity sha1-Mi1poFwCZLJZl9n0DNiokasAZKQ= 3170 | dependencies: 3171 | p-limit "^2.0.0" 3172 | 3173 | p-reduce@^1.0.0: 3174 | version "1.0.0" 3175 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/p-reduce/-/p-reduce-1.0.0.tgz#18c2b0dd936a4690a529f8231f58a0fdb6a47dfa" 3176 | integrity sha1-GMKw3ZNqRpClKfgjH1ig/bakffo= 3177 | 3178 | p-try@^2.0.0: 3179 | version "2.2.0" 3180 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" 3181 | integrity sha1-yyhoVA4xPWHeWPr741zpAE1VQOY= 3182 | 3183 | parse-json@^4.0.0: 3184 | version "4.0.0" 3185 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" 3186 | integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA= 3187 | dependencies: 3188 | error-ex "^1.3.1" 3189 | json-parse-better-errors "^1.0.1" 3190 | 3191 | parse5@4.0.0: 3192 | version "4.0.0" 3193 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608" 3194 | integrity sha1-bXhlbj2o14tOwLkG98CO8d/j9gg= 3195 | 3196 | pascalcase@^0.1.1: 3197 | version "0.1.1" 3198 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 3199 | integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ= 3200 | 3201 | path-exists@^3.0.0: 3202 | version "3.0.0" 3203 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 3204 | integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= 3205 | 3206 | path-is-absolute@^1.0.0: 3207 | version "1.0.1" 3208 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 3209 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 3210 | 3211 | path-key@^2.0.0, path-key@^2.0.1: 3212 | version "2.0.1" 3213 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 3214 | integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= 3215 | 3216 | path-parse@^1.0.6: 3217 | version "1.0.6" 3218 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" 3219 | integrity sha1-1i27VnlAXXLEc37FhgDp3c8G0kw= 3220 | 3221 | path-type@^3.0.0: 3222 | version "3.0.0" 3223 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" 3224 | integrity sha1-zvMdyOCho7sNEFwM2Xzzv0f0428= 3225 | dependencies: 3226 | pify "^3.0.0" 3227 | 3228 | performance-now@^2.1.0: 3229 | version "2.1.0" 3230 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 3231 | integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= 3232 | 3233 | pify@^3.0.0: 3234 | version "3.0.0" 3235 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 3236 | integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY= 3237 | 3238 | pify@^4.0.1: 3239 | version "4.0.1" 3240 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" 3241 | integrity sha1-SyzSXFDVmHNcUCkiJP2MbfQeMjE= 3242 | 3243 | pirates@^4.0.1: 3244 | version "4.0.1" 3245 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/pirates/-/pirates-4.0.1.tgz#643a92caf894566f91b2b986d2c66950a8e2fb87" 3246 | integrity sha1-ZDqSyviUVm+RsrmG0sZpUKji+4c= 3247 | dependencies: 3248 | node-modules-regexp "^1.0.0" 3249 | 3250 | pkg-dir@^3.0.0: 3251 | version "3.0.0" 3252 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3" 3253 | integrity sha1-J0kCDyOe2ZCIGx9xIQ1R62UjvqM= 3254 | dependencies: 3255 | find-up "^3.0.0" 3256 | 3257 | pn@^1.1.0: 3258 | version "1.1.0" 3259 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb" 3260 | integrity sha1-4vTO8OIZ9GPBeas3Rj5OHs3Muvs= 3261 | 3262 | posix-character-classes@^0.1.0: 3263 | version "0.1.1" 3264 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 3265 | integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= 3266 | 3267 | prelude-ls@~1.1.2: 3268 | version "1.1.2" 3269 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 3270 | integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= 3271 | 3272 | pretty-format@^24.8.0: 3273 | version "24.8.0" 3274 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/pretty-format/-/pretty-format-24.8.0.tgz#8dae7044f58db7cb8be245383b565a963e3c27f2" 3275 | integrity sha1-ja5wRPWNt8uL4kU4O1Zalj48J/I= 3276 | dependencies: 3277 | "@jest/types" "^24.8.0" 3278 | ansi-regex "^4.0.0" 3279 | ansi-styles "^3.2.0" 3280 | react-is "^16.8.4" 3281 | 3282 | private@^0.1.6: 3283 | version "0.1.8" 3284 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 3285 | integrity sha1-I4Hts2ifelPWUxkAYPz4ItLzaP8= 3286 | 3287 | process-nextick-args@~2.0.0: 3288 | version "2.0.1" 3289 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" 3290 | integrity sha1-eCDZsWEgzFXKmud5JoCufbptf+I= 3291 | 3292 | prompts@^2.0.1: 3293 | version "2.1.0" 3294 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/prompts/-/prompts-2.1.0.tgz#bf90bc71f6065d255ea2bdc0fe6520485c1b45db" 3295 | integrity sha1-v5C8cfYGXSVeor3A/mUgSFwbRds= 3296 | dependencies: 3297 | kleur "^3.0.2" 3298 | sisteransi "^1.0.0" 3299 | 3300 | psl@^1.1.24, psl@^1.1.28: 3301 | version "1.1.33" 3302 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/psl/-/psl-1.1.33.tgz#5533d9384ca7aab86425198e10e8053ebfeab661" 3303 | integrity sha1-VTPZOEynqrhkJRmOEOgFPr/qtmE= 3304 | 3305 | pump@^3.0.0: 3306 | version "3.0.0" 3307 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" 3308 | integrity sha1-tKIRaBW94vTh6mAjVOjHVWUQemQ= 3309 | dependencies: 3310 | end-of-stream "^1.1.0" 3311 | once "^1.3.1" 3312 | 3313 | punycode@^1.4.1: 3314 | version "1.4.1" 3315 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 3316 | integrity sha1-wNWmOycYgArY4esPpSachN1BhF4= 3317 | 3318 | punycode@^2.1.0, punycode@^2.1.1: 3319 | version "2.1.1" 3320 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 3321 | integrity sha1-tYsBCsQMIsVldhbI0sLALHv0eew= 3322 | 3323 | qs@~6.5.2: 3324 | version "6.5.2" 3325 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" 3326 | integrity sha1-yzroBuh0BERYTvFUzo7pjUA/PjY= 3327 | 3328 | rc@^1.2.7: 3329 | version "1.2.8" 3330 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 3331 | integrity sha1-zZJL9SAKB1uDwYjNa54hG3/A0+0= 3332 | dependencies: 3333 | deep-extend "^0.6.0" 3334 | ini "~1.3.0" 3335 | minimist "^1.2.0" 3336 | strip-json-comments "~2.0.1" 3337 | 3338 | react-is@^16.8.4: 3339 | version "16.8.6" 3340 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/react-is/-/react-is-16.8.6.tgz#5bbc1e2d29141c9fbdfed456343fe2bc430a6a16" 3341 | integrity sha1-W7weLSkUHJ+9/tRWND/ivEMKahY= 3342 | 3343 | read-pkg-up@^4.0.0: 3344 | version "4.0.0" 3345 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/read-pkg-up/-/read-pkg-up-4.0.0.tgz#1b221c6088ba7799601c808f91161c66e58f8978" 3346 | integrity sha1-GyIcYIi6d5lgHICPkRYcZuWPiXg= 3347 | dependencies: 3348 | find-up "^3.0.0" 3349 | read-pkg "^3.0.0" 3350 | 3351 | read-pkg@^3.0.0: 3352 | version "3.0.0" 3353 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" 3354 | integrity sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k= 3355 | dependencies: 3356 | load-json-file "^4.0.0" 3357 | normalize-package-data "^2.3.2" 3358 | path-type "^3.0.0" 3359 | 3360 | readable-stream@^2.0.1, readable-stream@^2.0.6: 3361 | version "2.3.6" 3362 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 3363 | integrity sha1-sRwn2IuP8fvgcGQ8+UsMea4bCq8= 3364 | dependencies: 3365 | core-util-is "~1.0.0" 3366 | inherits "~2.0.3" 3367 | isarray "~1.0.0" 3368 | process-nextick-args "~2.0.0" 3369 | safe-buffer "~5.1.1" 3370 | string_decoder "~1.1.1" 3371 | util-deprecate "~1.0.1" 3372 | 3373 | realpath-native@^1.1.0: 3374 | version "1.1.0" 3375 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/realpath-native/-/realpath-native-1.1.0.tgz#2003294fea23fb0672f2476ebe22fcf498a2d65c" 3376 | integrity sha1-IAMpT+oj+wZy8kduviL89Jii1lw= 3377 | dependencies: 3378 | util.promisify "^1.0.0" 3379 | 3380 | regenerate-unicode-properties@^8.0.2: 3381 | version "8.1.0" 3382 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/regenerate-unicode-properties/-/regenerate-unicode-properties-8.1.0.tgz#ef51e0f0ea4ad424b77bf7cb41f3e015c70a3f0e" 3383 | integrity sha1-71Hg8OpK1CS3e/fLQfPgFccKPw4= 3384 | dependencies: 3385 | regenerate "^1.4.0" 3386 | 3387 | regenerate@^1.4.0: 3388 | version "1.4.0" 3389 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" 3390 | integrity sha1-SoVuxLVuQHfFV1icroXnpMiGmhE= 3391 | 3392 | regenerator-transform@^0.14.0: 3393 | version "0.14.0" 3394 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/regenerator-transform/-/regenerator-transform-0.14.0.tgz#2ca9aaf7a2c239dd32e4761218425b8c7a86ecaf" 3395 | integrity sha1-LKmq96LCOd0y5HYSGEJbjHqG7K8= 3396 | dependencies: 3397 | private "^0.1.6" 3398 | 3399 | regex-not@^1.0.0, regex-not@^1.0.2: 3400 | version "1.0.2" 3401 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 3402 | integrity sha1-H07OJ+ALC2XgJHpoEOaoXYOldSw= 3403 | dependencies: 3404 | extend-shallow "^3.0.2" 3405 | safe-regex "^1.1.0" 3406 | 3407 | regexp-tree@^0.1.6: 3408 | version "0.1.10" 3409 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/regexp-tree/-/regexp-tree-0.1.10.tgz#d837816a039c7af8a8d64d7a7c3cf6a1d93450bc" 3410 | integrity sha1-2DeBagOcevio1k16fDz2odk0ULw= 3411 | 3412 | regexpu-core@^4.5.4: 3413 | version "4.5.4" 3414 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/regexpu-core/-/regexpu-core-4.5.4.tgz#080d9d02289aa87fe1667a4f5136bc98a6aebaae" 3415 | integrity sha1-CA2dAiiaqH/hZnpPUTa8mKauuq4= 3416 | dependencies: 3417 | regenerate "^1.4.0" 3418 | regenerate-unicode-properties "^8.0.2" 3419 | regjsgen "^0.5.0" 3420 | regjsparser "^0.6.0" 3421 | unicode-match-property-ecmascript "^1.0.4" 3422 | unicode-match-property-value-ecmascript "^1.1.0" 3423 | 3424 | regjsgen@^0.5.0: 3425 | version "0.5.0" 3426 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/regjsgen/-/regjsgen-0.5.0.tgz#a7634dc08f89209c2049adda3525711fb97265dd" 3427 | integrity sha1-p2NNwI+JIJwgSa3aNSVxH7lyZd0= 3428 | 3429 | regjsparser@^0.6.0: 3430 | version "0.6.0" 3431 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/regjsparser/-/regjsparser-0.6.0.tgz#f1e6ae8b7da2bae96c99399b868cd6c933a2ba9c" 3432 | integrity sha1-8eaui32iuulsmTmbhozWyTOiupw= 3433 | dependencies: 3434 | jsesc "~0.5.0" 3435 | 3436 | remove-trailing-separator@^1.0.1: 3437 | version "1.1.0" 3438 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 3439 | integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8= 3440 | 3441 | repeat-element@^1.1.2: 3442 | version "1.1.3" 3443 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" 3444 | integrity sha1-eC4NglwMWjuzlzH4Tv7mt0Lmsc4= 3445 | 3446 | repeat-string@^1.6.1: 3447 | version "1.6.1" 3448 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3449 | integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= 3450 | 3451 | request-promise-core@1.1.2: 3452 | version "1.1.2" 3453 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/request-promise-core/-/request-promise-core-1.1.2.tgz#339f6aababcafdb31c799ff158700336301d3346" 3454 | integrity sha1-M59qq6vK/bMceZ/xWHADNjAdM0Y= 3455 | dependencies: 3456 | lodash "^4.17.11" 3457 | 3458 | request-promise-native@^1.0.5: 3459 | version "1.0.7" 3460 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/request-promise-native/-/request-promise-native-1.0.7.tgz#a49868a624bdea5069f1251d0a836e0d89aa2c59" 3461 | integrity sha1-pJhopiS96lBp8SUdCoNuDYmqLFk= 3462 | dependencies: 3463 | request-promise-core "1.1.2" 3464 | stealthy-require "^1.1.1" 3465 | tough-cookie "^2.3.3" 3466 | 3467 | request@^2.87.0: 3468 | version "2.88.0" 3469 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/request/-/request-2.88.0.tgz#9c2fca4f7d35b592efe57c7f0a55e81052124fef" 3470 | integrity sha1-nC/KT301tZLv5Xx/ClXoEFIST+8= 3471 | dependencies: 3472 | aws-sign2 "~0.7.0" 3473 | aws4 "^1.8.0" 3474 | caseless "~0.12.0" 3475 | combined-stream "~1.0.6" 3476 | extend "~3.0.2" 3477 | forever-agent "~0.6.1" 3478 | form-data "~2.3.2" 3479 | har-validator "~5.1.0" 3480 | http-signature "~1.2.0" 3481 | is-typedarray "~1.0.0" 3482 | isstream "~0.1.2" 3483 | json-stringify-safe "~5.0.1" 3484 | mime-types "~2.1.19" 3485 | oauth-sign "~0.9.0" 3486 | performance-now "^2.1.0" 3487 | qs "~6.5.2" 3488 | safe-buffer "^5.1.2" 3489 | tough-cookie "~2.4.3" 3490 | tunnel-agent "^0.6.0" 3491 | uuid "^3.3.2" 3492 | 3493 | require-directory@^2.1.1: 3494 | version "2.1.1" 3495 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3496 | integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= 3497 | 3498 | require-main-filename@^1.0.1: 3499 | version "1.0.1" 3500 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3501 | integrity sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE= 3502 | 3503 | require-main-filename@^2.0.0: 3504 | version "2.0.0" 3505 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" 3506 | integrity sha1-0LMp7MfMD2Fkn2IhW+aa9UqomJs= 3507 | 3508 | require-relative@^0.8.7: 3509 | version "0.8.7" 3510 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/require-relative/-/require-relative-0.8.7.tgz#7999539fc9e047a37928fa196f8e1563dabd36de" 3511 | integrity sha1-eZlTn8ngR6N5KPoZb44VY9q9Nt4= 3512 | 3513 | resolve-cwd@^2.0.0: 3514 | version "2.0.0" 3515 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a" 3516 | integrity sha1-AKn3OHVW4nA46uIyyqNypqWbZlo= 3517 | dependencies: 3518 | resolve-from "^3.0.0" 3519 | 3520 | resolve-from@^3.0.0: 3521 | version "3.0.0" 3522 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" 3523 | integrity sha1-six699nWiBvItuZTM17rywoYh0g= 3524 | 3525 | resolve-url@^0.2.1: 3526 | version "0.2.1" 3527 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 3528 | integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= 3529 | 3530 | resolve@1.1.7: 3531 | version "1.1.7" 3532 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 3533 | integrity sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs= 3534 | 3535 | resolve@^1.10.0, resolve@^1.3.2: 3536 | version "1.11.1" 3537 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/resolve/-/resolve-1.11.1.tgz#ea10d8110376982fef578df8fc30b9ac30a07a3e" 3538 | integrity sha1-6hDYEQN2mC/vV434/DC5rDCgej4= 3539 | dependencies: 3540 | path-parse "^1.0.6" 3541 | 3542 | ret@~0.1.10: 3543 | version "0.1.15" 3544 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 3545 | integrity sha1-uKSCXVvbH8P29Twrwz+BOIaBx7w= 3546 | 3547 | rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.3: 3548 | version "2.6.3" 3549 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" 3550 | integrity sha1-stEE/g2Psnz54KHNqCYt04M8bKs= 3551 | dependencies: 3552 | glob "^7.1.3" 3553 | 3554 | rollup-plugin-node-resolve@^4.2.3: 3555 | version "4.2.4" 3556 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/rollup-plugin-node-resolve/-/rollup-plugin-node-resolve-4.2.4.tgz#7d370f8d6fd3031006a0032c38262dd9be3c6250" 3557 | integrity sha1-fTcPjW/TAxAGoAMsOCYt2b48YlA= 3558 | dependencies: 3559 | "@types/resolve" "0.0.8" 3560 | builtin-modules "^3.1.0" 3561 | is-module "^1.0.0" 3562 | resolve "^1.10.0" 3563 | 3564 | rollup-plugin-svelte@^5.0.3: 3565 | version "5.1.0" 3566 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/rollup-plugin-svelte/-/rollup-plugin-svelte-5.1.0.tgz#6c2d3998db9141a934343a0e7298499994aadd25" 3567 | integrity sha1-bC05mNuRQak0NDoOcphJmZSq3SU= 3568 | dependencies: 3569 | require-relative "^0.8.7" 3570 | rollup-pluginutils "^2.3.3" 3571 | sourcemap-codec "^1.4.4" 3572 | 3573 | rollup-pluginutils@^2.3.3: 3574 | version "2.8.1" 3575 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/rollup-pluginutils/-/rollup-pluginutils-2.8.1.tgz#8fa6dd0697344938ef26c2c09d2488ce9e33ce97" 3576 | integrity sha1-j6bdBpc0STjvJsLAnSSIzp4zzpc= 3577 | dependencies: 3578 | estree-walker "^0.6.1" 3579 | 3580 | rollup@^1.11.1: 3581 | version "1.16.2" 3582 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/rollup/-/rollup-1.16.2.tgz#959aeae4b06c8e540749bac442d6d37aefb9217d" 3583 | integrity sha1-lZrq5LBsjlQHSbrEQtbTeu+5IX0= 3584 | dependencies: 3585 | "@types/estree" "0.0.39" 3586 | "@types/node" "^12.0.8" 3587 | acorn "^6.1.1" 3588 | 3589 | rsvp@^4.8.4: 3590 | version "4.8.5" 3591 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/rsvp/-/rsvp-4.8.5.tgz#c8f155311d167f68f21e168df71ec5b083113734" 3592 | integrity sha1-yPFVMR0Wf2jyHhaN9x7FsIMRNzQ= 3593 | 3594 | safe-buffer@^5.0.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 3595 | version "5.1.2" 3596 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 3597 | integrity sha1-mR7GnSluAxN0fVm9/St0XDX4go0= 3598 | 3599 | safe-regex@^1.1.0: 3600 | version "1.1.0" 3601 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 3602 | integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4= 3603 | dependencies: 3604 | ret "~0.1.10" 3605 | 3606 | "safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: 3607 | version "2.1.2" 3608 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 3609 | integrity sha1-RPoWGwGHuVSd2Eu5GAL5vYOFzWo= 3610 | 3611 | sane@^4.0.3: 3612 | version "4.1.0" 3613 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/sane/-/sane-4.1.0.tgz#ed881fd922733a6c461bc189dc2b6c006f3ffded" 3614 | integrity sha1-7Ygf2SJzOmxGG8GJ3CtsAG8//e0= 3615 | dependencies: 3616 | "@cnakazawa/watch" "^1.0.3" 3617 | anymatch "^2.0.0" 3618 | capture-exit "^2.0.0" 3619 | exec-sh "^0.3.2" 3620 | execa "^1.0.0" 3621 | fb-watchman "^2.0.0" 3622 | micromatch "^3.1.4" 3623 | minimist "^1.1.1" 3624 | walker "~1.0.5" 3625 | 3626 | sax@^1.2.4: 3627 | version "1.2.4" 3628 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 3629 | integrity sha1-KBYjTiN4vdxOU1T6tcqold9xANk= 3630 | 3631 | "semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.6.0: 3632 | version "5.7.0" 3633 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/semver/-/semver-5.7.0.tgz#790a7cf6fea5459bac96110b29b60412dc8ff96b" 3634 | integrity sha1-eQp89v6lRZuslhELKbYEEtyP+Ws= 3635 | 3636 | semver@^6.0.0, semver@^6.1.1: 3637 | version "6.1.2" 3638 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/semver/-/semver-6.1.2.tgz#079960381376a3db62eb2edc8a3bfb10c7cfe318" 3639 | integrity sha1-B5lgOBN2o9ti6y7cijv7EMfP4xg= 3640 | 3641 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3642 | version "2.0.0" 3643 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3644 | integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= 3645 | 3646 | set-value@^2.0.0, set-value@^2.0.1: 3647 | version "2.0.1" 3648 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b" 3649 | integrity sha1-oY1AUw5vB95CKMfe/kInr4ytAFs= 3650 | dependencies: 3651 | extend-shallow "^2.0.1" 3652 | is-extendable "^0.1.1" 3653 | is-plain-object "^2.0.3" 3654 | split-string "^3.0.1" 3655 | 3656 | shebang-command@^1.2.0: 3657 | version "1.2.0" 3658 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 3659 | integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= 3660 | dependencies: 3661 | shebang-regex "^1.0.0" 3662 | 3663 | shebang-regex@^1.0.0: 3664 | version "1.0.0" 3665 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3666 | integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= 3667 | 3668 | shellwords@^0.1.1: 3669 | version "0.1.1" 3670 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" 3671 | integrity sha1-1rkYHBpI05cyTISHHvvPxz/AZUs= 3672 | 3673 | signal-exit@^3.0.0, signal-exit@^3.0.2: 3674 | version "3.0.2" 3675 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3676 | integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0= 3677 | 3678 | sisteransi@^1.0.0: 3679 | version "1.0.0" 3680 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/sisteransi/-/sisteransi-1.0.0.tgz#77d9622ff909080f1c19e5f4a1df0c1b0a27b88c" 3681 | integrity sha1-d9liL/kJCA8cGeX0od8MGwonuIw= 3682 | 3683 | slash@^2.0.0: 3684 | version "2.0.0" 3685 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44" 3686 | integrity sha1-3lUoUaF1nfOo8gZTVEL17E3eq0Q= 3687 | 3688 | snapdragon-node@^2.0.1: 3689 | version "2.1.1" 3690 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 3691 | integrity sha1-bBdfhv8UvbByRWPo88GwIaKGhTs= 3692 | dependencies: 3693 | define-property "^1.0.0" 3694 | isobject "^3.0.0" 3695 | snapdragon-util "^3.0.1" 3696 | 3697 | snapdragon-util@^3.0.1: 3698 | version "3.0.1" 3699 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 3700 | integrity sha1-+VZHlIbyrNeXAGk/b3uAXkWrVuI= 3701 | dependencies: 3702 | kind-of "^3.2.0" 3703 | 3704 | snapdragon@^0.8.1: 3705 | version "0.8.2" 3706 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" 3707 | integrity sha1-ZJIufFZbDhQgS6GqfWlkJ40lGC0= 3708 | dependencies: 3709 | base "^0.11.1" 3710 | debug "^2.2.0" 3711 | define-property "^0.2.5" 3712 | extend-shallow "^2.0.1" 3713 | map-cache "^0.2.2" 3714 | source-map "^0.5.6" 3715 | source-map-resolve "^0.5.0" 3716 | use "^3.1.0" 3717 | 3718 | source-map-resolve@^0.5.0: 3719 | version "0.5.2" 3720 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" 3721 | integrity sha1-cuLMNAlVQ+Q7LGKyxMENSpBU8lk= 3722 | dependencies: 3723 | atob "^2.1.1" 3724 | decode-uri-component "^0.2.0" 3725 | resolve-url "^0.2.1" 3726 | source-map-url "^0.4.0" 3727 | urix "^0.1.0" 3728 | 3729 | source-map-support@^0.5.6: 3730 | version "0.5.12" 3731 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/source-map-support/-/source-map-support-0.5.12.tgz#b4f3b10d51857a5af0138d3ce8003b201613d599" 3732 | integrity sha1-tPOxDVGFelrwE4086AA7IBYT1Zk= 3733 | dependencies: 3734 | buffer-from "^1.0.0" 3735 | source-map "^0.6.0" 3736 | 3737 | source-map-url@^0.4.0: 3738 | version "0.4.0" 3739 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 3740 | integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM= 3741 | 3742 | source-map@^0.5.0, source-map@^0.5.6: 3743 | version "0.5.7" 3744 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 3745 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= 3746 | 3747 | source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: 3748 | version "0.6.1" 3749 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 3750 | integrity sha1-dHIq8y6WFOnCh6jQu95IteLxomM= 3751 | 3752 | sourcemap-codec@^1.4.4: 3753 | version "1.4.4" 3754 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/sourcemap-codec/-/sourcemap-codec-1.4.4.tgz#c63ea927c029dd6bd9a2b7fa03b3fec02ad56e9f" 3755 | integrity sha1-xj6pJ8Ap3WvZorf6A7P+wCrVbp8= 3756 | 3757 | spdx-correct@^3.0.0: 3758 | version "3.1.0" 3759 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4" 3760 | integrity sha1-+4PlBERSaPFUsHTiGMh8ADzTHfQ= 3761 | dependencies: 3762 | spdx-expression-parse "^3.0.0" 3763 | spdx-license-ids "^3.0.0" 3764 | 3765 | spdx-exceptions@^2.1.0: 3766 | version "2.2.0" 3767 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz#2ea450aee74f2a89bfb94519c07fcd6f41322977" 3768 | integrity sha1-LqRQrudPKom/uUUZwH/Nb0EyKXc= 3769 | 3770 | spdx-expression-parse@^3.0.0: 3771 | version "3.0.0" 3772 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" 3773 | integrity sha1-meEZt6XaAOBUkcn6M4t5BII7QdA= 3774 | dependencies: 3775 | spdx-exceptions "^2.1.0" 3776 | spdx-license-ids "^3.0.0" 3777 | 3778 | spdx-license-ids@^3.0.0: 3779 | version "3.0.4" 3780 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/spdx-license-ids/-/spdx-license-ids-3.0.4.tgz#75ecd1a88de8c184ef015eafb51b5b48bfd11bb1" 3781 | integrity sha1-dezRqI3owYTvAV6vtRtbSL/RG7E= 3782 | 3783 | split-string@^3.0.1, split-string@^3.0.2: 3784 | version "3.1.0" 3785 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 3786 | integrity sha1-fLCd2jqGWFcFxks5pkZgOGguj+I= 3787 | dependencies: 3788 | extend-shallow "^3.0.0" 3789 | 3790 | sshpk@^1.7.0: 3791 | version "1.16.1" 3792 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877" 3793 | integrity sha1-+2YcC+8ps520B2nuOfpwCT1vaHc= 3794 | dependencies: 3795 | asn1 "~0.2.3" 3796 | assert-plus "^1.0.0" 3797 | bcrypt-pbkdf "^1.0.0" 3798 | dashdash "^1.12.0" 3799 | ecc-jsbn "~0.1.1" 3800 | getpass "^0.1.1" 3801 | jsbn "~0.1.0" 3802 | safer-buffer "^2.0.2" 3803 | tweetnacl "~0.14.0" 3804 | 3805 | stack-utils@^1.0.1: 3806 | version "1.0.2" 3807 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/stack-utils/-/stack-utils-1.0.2.tgz#33eba3897788558bebfc2db059dc158ec36cebb8" 3808 | integrity sha1-M+ujiXeIVYvr/C2wWdwVjsNs67g= 3809 | 3810 | static-extend@^0.1.1: 3811 | version "0.1.2" 3812 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 3813 | integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY= 3814 | dependencies: 3815 | define-property "^0.2.5" 3816 | object-copy "^0.1.0" 3817 | 3818 | stealthy-require@^1.1.1: 3819 | version "1.1.1" 3820 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" 3821 | integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks= 3822 | 3823 | string-length@^2.0.0: 3824 | version "2.0.0" 3825 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed" 3826 | integrity sha1-1A27aGo6zpYMHP/KVivyxF+DY+0= 3827 | dependencies: 3828 | astral-regex "^1.0.0" 3829 | strip-ansi "^4.0.0" 3830 | 3831 | string-width@^1.0.1: 3832 | version "1.0.2" 3833 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3834 | integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= 3835 | dependencies: 3836 | code-point-at "^1.0.0" 3837 | is-fullwidth-code-point "^1.0.0" 3838 | strip-ansi "^3.0.0" 3839 | 3840 | "string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.1: 3841 | version "2.1.1" 3842 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3843 | integrity sha1-q5Pyeo3BPSjKyBXEYhQ6bZASrp4= 3844 | dependencies: 3845 | is-fullwidth-code-point "^2.0.0" 3846 | strip-ansi "^4.0.0" 3847 | 3848 | string_decoder@~1.1.1: 3849 | version "1.1.1" 3850 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 3851 | integrity sha1-nPFhG6YmhdcDCunkujQUnDrwP8g= 3852 | dependencies: 3853 | safe-buffer "~5.1.0" 3854 | 3855 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3856 | version "3.0.1" 3857 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3858 | integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= 3859 | dependencies: 3860 | ansi-regex "^2.0.0" 3861 | 3862 | strip-ansi@^4.0.0: 3863 | version "4.0.0" 3864 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3865 | integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= 3866 | dependencies: 3867 | ansi-regex "^3.0.0" 3868 | 3869 | strip-ansi@^5.0.0: 3870 | version "5.2.0" 3871 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" 3872 | integrity sha1-jJpTb+tq/JYr36WxBKUJHBrZwK4= 3873 | dependencies: 3874 | ansi-regex "^4.1.0" 3875 | 3876 | strip-bom@^3.0.0: 3877 | version "3.0.0" 3878 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3879 | integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= 3880 | 3881 | strip-eof@^1.0.0: 3882 | version "1.0.0" 3883 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3884 | integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= 3885 | 3886 | strip-json-comments@~2.0.1: 3887 | version "2.0.1" 3888 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3889 | integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= 3890 | 3891 | supports-color@^5.3.0: 3892 | version "5.5.0" 3893 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 3894 | integrity sha1-4uaaRKyHcveKHsCzW2id9lMO/I8= 3895 | dependencies: 3896 | has-flag "^3.0.0" 3897 | 3898 | supports-color@^6.1.0: 3899 | version "6.1.0" 3900 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3" 3901 | integrity sha1-B2Srxpxj1ayELdSGfo0CXogN+PM= 3902 | dependencies: 3903 | has-flag "^3.0.0" 3904 | 3905 | svelte@^3.1.0: 3906 | version "3.5.4" 3907 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/svelte/-/svelte-3.5.4.tgz#000574e7f05ca84acea3d8dc9ec91b5491ca6b2c" 3908 | integrity sha1-AAV05/BcqErOo9jcnskbVJHKayw= 3909 | 3910 | svelte@^3.6.0: 3911 | version "3.12.1" 3912 | resolved "https://registry.yarnpkg.com/svelte/-/svelte-3.12.1.tgz#ddfacd43272ac3255907c682b74ee7d3d8b06b0c" 3913 | integrity sha512-t29WJNjHIqfrdMcVXqIyRfgLEaNz7MihKXTpb8qHlbzvf0WyOOIhIlwIGvl6ahJ9+9CLJwz0sjhFNAmPgo8BHg== 3914 | 3915 | symbol-tree@^3.2.2: 3916 | version "3.2.4" 3917 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" 3918 | integrity sha1-QwY30ki6d+B4iDlR+5qg7tfGP6I= 3919 | 3920 | tar@^4: 3921 | version "4.4.10" 3922 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/tar/-/tar-4.4.10.tgz#946b2810b9a5e0b26140cf78bea6b0b0d689eba1" 3923 | integrity sha1-lGsoELml4LJhQM94vqawsNaJ66E= 3924 | dependencies: 3925 | chownr "^1.1.1" 3926 | fs-minipass "^1.2.5" 3927 | minipass "^2.3.5" 3928 | minizlib "^1.2.1" 3929 | mkdirp "^0.5.0" 3930 | safe-buffer "^5.1.2" 3931 | yallist "^3.0.3" 3932 | 3933 | test-exclude@^5.2.3: 3934 | version "5.2.3" 3935 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/test-exclude/-/test-exclude-5.2.3.tgz#c3d3e1e311eb7ee405e092dac10aefd09091eac0" 3936 | integrity sha1-w9Ph4xHrfuQF4JLawQrv0JCR6sA= 3937 | dependencies: 3938 | glob "^7.1.3" 3939 | minimatch "^3.0.4" 3940 | read-pkg-up "^4.0.0" 3941 | require-main-filename "^2.0.0" 3942 | 3943 | throat@^4.0.0: 3944 | version "4.1.0" 3945 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a" 3946 | integrity sha1-iQN8vJLFarGJJua6TLsgDhVnKmo= 3947 | 3948 | tmpl@1.0.x: 3949 | version "1.0.4" 3950 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 3951 | integrity sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE= 3952 | 3953 | to-fast-properties@^2.0.0: 3954 | version "2.0.0" 3955 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 3956 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= 3957 | 3958 | to-object-path@^0.3.0: 3959 | version "0.3.0" 3960 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 3961 | integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68= 3962 | dependencies: 3963 | kind-of "^3.0.2" 3964 | 3965 | to-regex-range@^2.1.0: 3966 | version "2.1.1" 3967 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 3968 | integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg= 3969 | dependencies: 3970 | is-number "^3.0.0" 3971 | repeat-string "^1.6.1" 3972 | 3973 | to-regex@^3.0.1, to-regex@^3.0.2: 3974 | version "3.0.2" 3975 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 3976 | integrity sha1-E8/dmzNlUvMLUfM6iuG0Knp1mc4= 3977 | dependencies: 3978 | define-property "^2.0.2" 3979 | extend-shallow "^3.0.2" 3980 | regex-not "^1.0.2" 3981 | safe-regex "^1.1.0" 3982 | 3983 | tough-cookie@^2.3.3, tough-cookie@^2.3.4: 3984 | version "2.5.0" 3985 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" 3986 | integrity sha1-zZ+yoKodWhK0c72fuW+j3P9lreI= 3987 | dependencies: 3988 | psl "^1.1.28" 3989 | punycode "^2.1.1" 3990 | 3991 | tough-cookie@~2.4.3: 3992 | version "2.4.3" 3993 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/tough-cookie/-/tough-cookie-2.4.3.tgz#53f36da3f47783b0925afa06ff9f3b165280f781" 3994 | integrity sha1-U/Nto/R3g7CSWvoG/587FlKA94E= 3995 | dependencies: 3996 | psl "^1.1.24" 3997 | punycode "^1.4.1" 3998 | 3999 | tr46@^1.0.1: 4000 | version "1.0.1" 4001 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" 4002 | integrity sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk= 4003 | dependencies: 4004 | punycode "^2.1.0" 4005 | 4006 | trim-right@^1.0.1: 4007 | version "1.0.1" 4008 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 4009 | integrity sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM= 4010 | 4011 | tunnel-agent@^0.6.0: 4012 | version "0.6.0" 4013 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 4014 | integrity sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0= 4015 | dependencies: 4016 | safe-buffer "^5.0.1" 4017 | 4018 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 4019 | version "0.14.5" 4020 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 4021 | integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q= 4022 | 4023 | type-check@~0.3.2: 4024 | version "0.3.2" 4025 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 4026 | integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= 4027 | dependencies: 4028 | prelude-ls "~1.1.2" 4029 | 4030 | uglify-js@^3.1.4: 4031 | version "3.6.0" 4032 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/uglify-js/-/uglify-js-3.6.0.tgz#704681345c53a8b2079fb6cec294b05ead242ff5" 4033 | integrity sha1-cEaBNFxTqLIHn7bOwpSwXq0kL/U= 4034 | dependencies: 4035 | commander "~2.20.0" 4036 | source-map "~0.6.1" 4037 | 4038 | unicode-canonical-property-names-ecmascript@^1.0.4: 4039 | version "1.0.4" 4040 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818" 4041 | integrity sha1-JhmADEyCWADv3YNDr33Zkzy+KBg= 4042 | 4043 | unicode-match-property-ecmascript@^1.0.4: 4044 | version "1.0.4" 4045 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c" 4046 | integrity sha1-jtKjJWmWG86SJ9Cc0/+7j+1fAgw= 4047 | dependencies: 4048 | unicode-canonical-property-names-ecmascript "^1.0.4" 4049 | unicode-property-aliases-ecmascript "^1.0.4" 4050 | 4051 | unicode-match-property-value-ecmascript@^1.1.0: 4052 | version "1.1.0" 4053 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.1.0.tgz#5b4b426e08d13a80365e0d657ac7a6c1ec46a277" 4054 | integrity sha1-W0tCbgjROoA2Xg1lesemwexGonc= 4055 | 4056 | unicode-property-aliases-ecmascript@^1.0.4: 4057 | version "1.0.5" 4058 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.5.tgz#a9cc6cc7ce63a0a3023fc99e341b94431d405a57" 4059 | integrity sha1-qcxsx85joKMCP8meNBuUQx1AWlc= 4060 | 4061 | union-value@^1.0.0: 4062 | version "1.0.1" 4063 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847" 4064 | integrity sha1-C2/nuDWuzaYcbqTU8CwUIh4QmEc= 4065 | dependencies: 4066 | arr-union "^3.1.0" 4067 | get-value "^2.0.6" 4068 | is-extendable "^0.1.1" 4069 | set-value "^2.0.1" 4070 | 4071 | unset-value@^1.0.0: 4072 | version "1.0.0" 4073 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 4074 | integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk= 4075 | dependencies: 4076 | has-value "^0.3.1" 4077 | isobject "^3.0.0" 4078 | 4079 | uri-js@^4.2.2: 4080 | version "4.2.2" 4081 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" 4082 | integrity sha1-lMVA4f93KVbiKZUHwBCupsiDjrA= 4083 | dependencies: 4084 | punycode "^2.1.0" 4085 | 4086 | urix@^0.1.0: 4087 | version "0.1.0" 4088 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 4089 | integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= 4090 | 4091 | use@^3.1.0: 4092 | version "3.1.1" 4093 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" 4094 | integrity sha1-1QyMrHmhn7wg8pEfVuuXP04QBw8= 4095 | 4096 | util-deprecate@~1.0.1: 4097 | version "1.0.2" 4098 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 4099 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= 4100 | 4101 | util.promisify@^1.0.0: 4102 | version "1.0.0" 4103 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" 4104 | integrity sha1-RA9xZaRZyaFtwUXrjnLzVocJcDA= 4105 | dependencies: 4106 | define-properties "^1.1.2" 4107 | object.getownpropertydescriptors "^2.0.3" 4108 | 4109 | uuid@^3.3.2: 4110 | version "3.3.2" 4111 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131" 4112 | integrity sha1-G0r0lV6zB3xQHCOHL8ZROBFYcTE= 4113 | 4114 | validate-npm-package-license@^3.0.1: 4115 | version "3.0.4" 4116 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" 4117 | integrity sha1-/JH2uce6FchX9MssXe/uw51PQQo= 4118 | dependencies: 4119 | spdx-correct "^3.0.0" 4120 | spdx-expression-parse "^3.0.0" 4121 | 4122 | verror@1.10.0: 4123 | version "1.10.0" 4124 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 4125 | integrity sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA= 4126 | dependencies: 4127 | assert-plus "^1.0.0" 4128 | core-util-is "1.0.2" 4129 | extsprintf "^1.2.0" 4130 | 4131 | w3c-hr-time@^1.0.1: 4132 | version "1.0.1" 4133 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz#82ac2bff63d950ea9e3189a58a65625fedf19045" 4134 | integrity sha1-gqwr/2PZUOqeMYmlimViX+3xkEU= 4135 | dependencies: 4136 | browser-process-hrtime "^0.1.2" 4137 | 4138 | walker@^1.0.7, walker@~1.0.5: 4139 | version "1.0.7" 4140 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 4141 | integrity sha1-L3+bj9ENZ3JisYqITijRlhjgKPs= 4142 | dependencies: 4143 | makeerror "1.0.x" 4144 | 4145 | webidl-conversions@^4.0.2: 4146 | version "4.0.2" 4147 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" 4148 | integrity sha1-qFWYCx8LazWbodXZ+zmulB+qY60= 4149 | 4150 | whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.3: 4151 | version "1.0.5" 4152 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0" 4153 | integrity sha1-WrrPd3wyFmpR0IXWtPPn0nET3bA= 4154 | dependencies: 4155 | iconv-lite "0.4.24" 4156 | 4157 | whatwg-mimetype@^2.1.0, whatwg-mimetype@^2.2.0: 4158 | version "2.3.0" 4159 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" 4160 | integrity sha1-PUseAxLSB5h5+Cav8Y2+7KWWD78= 4161 | 4162 | whatwg-url@^6.4.1: 4163 | version "6.5.0" 4164 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/whatwg-url/-/whatwg-url-6.5.0.tgz#f2df02bff176fd65070df74ad5ccbb5a199965a8" 4165 | integrity sha1-8t8Cv/F2/WUHDfdK1cy7WhmZZag= 4166 | dependencies: 4167 | lodash.sortby "^4.7.0" 4168 | tr46 "^1.0.1" 4169 | webidl-conversions "^4.0.2" 4170 | 4171 | whatwg-url@^7.0.0: 4172 | version "7.0.0" 4173 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/whatwg-url/-/whatwg-url-7.0.0.tgz#fde926fa54a599f3adf82dff25a9f7be02dc6edd" 4174 | integrity sha1-/ekm+lSlmfOt+C3/Jan3vgLcbt0= 4175 | dependencies: 4176 | lodash.sortby "^4.7.0" 4177 | tr46 "^1.0.1" 4178 | webidl-conversions "^4.0.2" 4179 | 4180 | which-module@^2.0.0: 4181 | version "2.0.0" 4182 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 4183 | integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= 4184 | 4185 | which@^1.2.9, which@^1.3.0: 4186 | version "1.3.1" 4187 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 4188 | integrity sha1-pFBD1U9YBTFtqNYvn1CRjT2nCwo= 4189 | dependencies: 4190 | isexe "^2.0.0" 4191 | 4192 | wide-align@^1.1.0: 4193 | version "1.1.3" 4194 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" 4195 | integrity sha1-rgdOa9wMFKQx6ATmJFScYzsABFc= 4196 | dependencies: 4197 | string-width "^1.0.2 || 2" 4198 | 4199 | wordwrap@~0.0.2: 4200 | version "0.0.3" 4201 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 4202 | integrity sha1-o9XabNXAvAAI03I0u68b7WMFkQc= 4203 | 4204 | wordwrap@~1.0.0: 4205 | version "1.0.0" 4206 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 4207 | integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus= 4208 | 4209 | wrap-ansi@^2.0.0: 4210 | version "2.1.0" 4211 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 4212 | integrity sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU= 4213 | dependencies: 4214 | string-width "^1.0.1" 4215 | strip-ansi "^3.0.1" 4216 | 4217 | wrappy@1: 4218 | version "1.0.2" 4219 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 4220 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 4221 | 4222 | write-file-atomic@2.4.1: 4223 | version "2.4.1" 4224 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/write-file-atomic/-/write-file-atomic-2.4.1.tgz#d0b05463c188ae804396fd5ab2a370062af87529" 4225 | integrity sha1-0LBUY8GIroBDlv1asqNwBir4dSk= 4226 | dependencies: 4227 | graceful-fs "^4.1.11" 4228 | imurmurhash "^0.1.4" 4229 | signal-exit "^3.0.2" 4230 | 4231 | ws@^5.2.0: 4232 | version "5.2.2" 4233 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/ws/-/ws-5.2.2.tgz#dffef14866b8e8dc9133582514d1befaf96e980f" 4234 | integrity sha1-3/7xSGa46NyRM1glFNG++vlumA8= 4235 | dependencies: 4236 | async-limiter "~1.0.0" 4237 | 4238 | xml-name-validator@^3.0.0: 4239 | version "3.0.0" 4240 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" 4241 | integrity sha1-auc+Bt5NjG5H+fsYH3jWSK1FfGo= 4242 | 4243 | "y18n@^3.2.1 || ^4.0.0": 4244 | version "4.0.0" 4245 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" 4246 | integrity sha1-le+U+F7MgdAHwmThkKEg8KPIVms= 4247 | 4248 | yallist@^3.0.0, yallist@^3.0.3: 4249 | version "3.0.3" 4250 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/yallist/-/yallist-3.0.3.tgz#b4b049e314be545e3ce802236d6cd22cd91c3de9" 4251 | integrity sha1-tLBJ4xS+VF486AIjbWzSLNkcPek= 4252 | 4253 | yargs-parser@^11.1.1: 4254 | version "11.1.1" 4255 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/yargs-parser/-/yargs-parser-11.1.1.tgz#879a0865973bca9f6bab5cbdf3b1c67ec7d3bcf4" 4256 | integrity sha1-h5oIZZc7yp9rq1y987HGfsfTvPQ= 4257 | dependencies: 4258 | camelcase "^5.0.0" 4259 | decamelize "^1.2.0" 4260 | 4261 | yargs@^12.0.2: 4262 | version "12.0.5" 4263 | resolved "http://artifactory.internal.smartadserver.com:8081/artifactory/api/npm/npm/yargs/-/yargs-12.0.5.tgz#05f5997b609647b64f66b81e3b4b10a368e7ad13" 4264 | integrity sha1-BfWZe2CWR7ZPZrgeO0sQo2jnrRM= 4265 | dependencies: 4266 | cliui "^4.0.0" 4267 | decamelize "^1.2.0" 4268 | find-up "^3.0.0" 4269 | get-caller-file "^1.0.1" 4270 | os-locale "^3.0.0" 4271 | require-directory "^2.1.1" 4272 | require-main-filename "^1.0.1" 4273 | set-blocking "^2.0.0" 4274 | string-width "^2.0.0" 4275 | which-module "^2.0.0" 4276 | y18n "^3.2.1 || ^4.0.0" 4277 | yargs-parser "^11.1.1" 4278 | --------------------------------------------------------------------------------