├── .prettierrc ├── .gitignore ├── tslint.json ├── demo ├── screencast.gif └── index.html ├── trackless.ts ├── package.json ├── index.d.ts ├── tsconfig.json ├── index.test.ts ├── index.ts ├── README.md └── yarn.lock /.prettierrc: -------------------------------------------------------------------------------- 1 | tabWidth: 4 2 | proseWrap: always -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .cache 4 | .DS_Store -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["tslint-config-aerian"] 3 | } 4 | -------------------------------------------------------------------------------- /demo/screencast.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ascorbic/trackless/HEAD/demo/screencast.gif -------------------------------------------------------------------------------- /trackless.ts: -------------------------------------------------------------------------------- 1 | import { TracklassTask, Trackless } from "./index"; 2 | const w = window as Window & { TracklessQueue: TracklassTask[] }; 3 | Trackless.processQueue(w.TracklessQueue); 4 | w.TracklessQueue = []; 5 | -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 14 | 15 | 16 | 23 | Document 24 | 29 | 30 | 31 | 32 | 33 |

34 | 35 |

36 | 37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "trackless", 3 | "version": "1.0.4", 4 | "description": "Add a Google Analytics opt-out button to your site", 5 | "main": "dist/index.js", 6 | "types": "index.d.ts", 7 | "unpkg": "dist/trackless.js", 8 | "homepage": "https://github.com/ascorbic/trackless", 9 | "repository": "git@github.com:ascorbic/trackless.git", 10 | "author": "Matt Kane (https://mk.gg/)", 11 | "license": "MIT", 12 | "keywords": [ 13 | "analytics", 14 | "gdpr", 15 | "privacy" 16 | ], 17 | "dependencies": {}, 18 | "files": [ 19 | "dist", 20 | "*.ts", 21 | "demo" 22 | ], 23 | "devDependencies": { 24 | "@types/jest": "^22.2.3", 25 | "jest": "^23.0.0", 26 | "jest-localstorage-mock": "^2.2.0", 27 | "parceljs": "^0.0.1", 28 | "ts-jest": "^23.10.5", 29 | "tslint": "^5.10.0", 30 | "tslint-config-aerian": "^1.0.2", 31 | "typescript": "^3.2.2" 32 | }, 33 | "scripts": { 34 | "prepublishOnly": "npm run build", 35 | "build": "parcel build trackless.ts index.ts", 36 | "test": "jest", 37 | "build:doc": "jsdoc2md --files 'index.ts' --configure jsdoc2md.json > doc.md" 38 | }, 39 | "jest": { 40 | "transform": { 41 | "^.+\\.tsx?$": "ts-jest" 42 | }, 43 | "setupFiles": [ 44 | "jest-localstorage-mock" 45 | ], 46 | "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$", 47 | "moduleFileExtensions": [ 48 | "ts", 49 | "tsx", 50 | "js", 51 | "jsx", 52 | "json", 53 | "node" 54 | ] 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- 1 | export interface Options { 2 | /** 3 | * The text prompting the user to opt out. 4 | * Default is "Don't track me" 5 | */ 6 | optOutText: string; 7 | /** 8 | * The text prompting the user to opt in. 9 | * Default is "Enable tracking" 10 | */ 11 | optInText: string; 12 | /** 13 | * Your Google tracking ID 14 | */ 15 | trackingID: string; 16 | /** 17 | * Initial opt-out value if no preference is stored. Default is false (not opted-out). 18 | */ 19 | initialOptOut: boolean; 20 | /** 21 | * Override opt-out value. If true, sets the stored preference to the `initialOptOut` value. 22 | * Use this if, for example, you have a logged-in user and want to sync the preference between devices. 23 | * Default is false, meaning saved value. 24 | */ 25 | overrideOptOut?: boolean; 26 | /** 27 | * Called when opt-out value is changed. Passed the new opt-out value. 28 | */ 29 | callback?: (optOut: boolean) => void; 30 | /** 31 | * Invert the behaviour of checkboxes. By default, a checkbox is checked if the user is not opted-out. 32 | * Set this to true so that it is checked if the user is opted-out. 33 | */ 34 | invertCheckbox?: boolean; 35 | } 36 | export declare type TracklassTask = (tl: typeof Trackless) => void; 37 | export declare class Trackless { 38 | /** 39 | * Used by the async loader to process the command queue 40 | */ 41 | static processQueue: (queue?: TracklassTask[] | undefined) => void; 42 | /** 43 | * Whether this user has opted-out 44 | */ 45 | optedOut: boolean; 46 | private options; 47 | private boundElements; 48 | constructor(options?: Partial); 49 | /** 50 | * Pass a selector suitable for querySelectorAll. Default is ".trackless". 51 | */ 52 | bindElements: (selectors?: string) => void; 53 | /** 54 | * Unbinds all elements. 55 | */ 56 | unBindAllElements: () => void; 57 | setPreference: (optOut: boolean) => void; 58 | private setText; 59 | private bindElement; 60 | private getPreferenceFromStorage; 61 | private updateLabels; 62 | private setGAFlag; 63 | private togglePreference; 64 | private onClick; 65 | } 66 | export default Trackless; 67 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | /* Basic Options */ 4 | "target": 5 | "es5" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', or 'ESNEXT'. */, 6 | "module": 7 | "commonjs" /* Specify module code generation: 'none', commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */, 8 | "lib": [ 9 | "dom", 10 | "es5" 11 | ] /* Specify library files to be included in the compilation: */, 12 | // "allowJs": true, /* Allow javascript files to be compiled. */ 13 | // "checkJs": true, /* Report errors in .js files. */ 14 | // "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */ 15 | "declaration": true /* Generates corresponding '.d.ts' file. */, 16 | // "sourceMap": true /* Generates corresponding '.map' file. */, 17 | // "outFile": "./", /* Concatenate and emit output to single file. */ 18 | // "outDir": "./" /* Redirect output structure to the directory. */, 19 | // "rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */ 20 | // "removeComments": true, /* Do not emit comments to output. */ 21 | // "noEmit": true, /* Do not emit outputs. */ 22 | // "importHelpers": true, /* Import emit helpers from 'tslib'. */ 23 | // "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */ 24 | // "isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */ 25 | 26 | /* Strict Type-Checking Options */ 27 | "strict": true /* Enable all strict type-checking options. */ 28 | // "noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */ 29 | // "strictNullChecks": true, /* Enable strict null checks. */ 30 | // "noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */ 31 | // "alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */ 32 | 33 | /* Additional Checks */ 34 | // "noUnusedLocals": true, /* Report errors on unused locals. */ 35 | // "noUnusedParameters": true, /* Report errors on unused parameters. */ 36 | // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */ 37 | // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */ 38 | 39 | /* Module Resolution Options */ 40 | // "moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */ 41 | // "baseUrl": "./", /* Base directory to resolve non-absolute module names. */ 42 | // "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */ 43 | // "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */ 44 | // "typeRoots": [], /* List of folders to include type definitions from. */ 45 | // "types": [], /* Type declaration files to be included in compilation. */ 46 | // "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */ 47 | // "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */ 48 | 49 | /* Source Map Options */ 50 | // "sourceRoot": "./", /* Specify the location where debugger should locate TypeScript files instead of source locations. */ 51 | // "mapRoot": "./", /* Specify the location where debugger should locate map files instead of generated locations. */ 52 | // "inlineSourceMap": true /* Emit a single file with source maps instead of having a separate file. */ 53 | // "inlineSources": true /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */ 54 | 55 | /* Experimental Options */ 56 | // "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */ 57 | // "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */ 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /index.test.ts: -------------------------------------------------------------------------------- 1 | import { Trackless } from "./index"; 2 | 3 | describe("Trackless", () => { 4 | beforeEach(() => { 5 | localStorage.clear(); 6 | }); 7 | 8 | it("creates an object with standard options", () => { 9 | const trackless = new Trackless({ 10 | trackingID: "test", 11 | }); 12 | expect(trackless.optedOut).toBeFalsy(); 13 | }); 14 | 15 | it("gets the preference from localStorage", () => { 16 | window.localStorage.setItem("trackless", "true"); 17 | const trackless = new Trackless({ 18 | trackingID: "test", 19 | }); 20 | expect(window.localStorage.getItem).toBeCalledWith("trackless"); 21 | expect(trackless.optedOut).toBeTruthy(); 22 | }); 23 | 24 | it("saves the preference to localStorage", () => { 25 | const trackless = new Trackless({ 26 | trackingID: "test", 27 | }); 28 | 29 | trackless.setPreference(true); 30 | 31 | expect(window.localStorage.setItem).toBeCalledWith("trackless", "true"); 32 | }); 33 | 34 | it("sets the GA flag", () => { 35 | window.localStorage.setItem("trackless", "true"); 36 | const trackless = new Trackless({ 37 | trackingID: "test", 38 | }); 39 | expect((window as any)["ga-disable-test"]).toBeTruthy(); 40 | }); 41 | 42 | it("sets the default values of bound elements", () => { 43 | document.body.innerHTML = `

`; 44 | 45 | const trackless = new Trackless({ 46 | trackingID: "test", 47 | }); 48 | trackless.bindElements(); 49 | 50 | expect(document.querySelector("p")!.innerText).toBe("Don't track me"); 51 | }); 52 | 53 | it("sets the alternate values of bound elements", () => { 54 | document.body.innerHTML = `

`; 55 | 56 | const trackless = new Trackless({ 57 | trackingID: "test", 58 | initialOptOut: true, 59 | }); 60 | trackless.bindElements(); 61 | 62 | expect(document.querySelector("p")!.innerText).toBe("Enable tracking"); 63 | }); 64 | 65 | it("sets the custom values of bound elements", () => { 66 | document.body.innerHTML = `

`; 67 | 68 | const trackless = new Trackless({ 69 | trackingID: "test", 70 | optOutText: "OPTOUT", 71 | optInText: "OPTIN", 72 | }); 73 | trackless.bindElements(); 74 | 75 | expect(document.querySelector("p")!.innerText).toBe("OPTOUT"); 76 | 77 | trackless.setPreference(true); 78 | 79 | expect(document.querySelector("p")!.innerText).toBe("OPTIN"); 80 | }); 81 | 82 | it("changes the value on click", () => { 83 | document.body.innerHTML = `

`; 84 | 85 | const trackless = new Trackless({ 86 | trackingID: "test", 87 | }); 88 | trackless.bindElements(); 89 | 90 | expect(trackless.optedOut).toBeFalsy(); 91 | expect((window as any)["ga-disable-test"]).toBeFalsy(); 92 | 93 | document.querySelector("p")!.click(); 94 | 95 | expect(trackless.optedOut).toBeTruthy(); 96 | expect((window as any)["ga-disable-test"]).toBeTruthy(); 97 | }); 98 | 99 | it("sets the value of an input", () => { 100 | document.body.innerHTML = ``; 101 | 102 | const trackless = new Trackless({ 103 | trackingID: "test", 104 | initialOptOut: true, 105 | }); 106 | trackless.bindElements(); 107 | 108 | const input = document.querySelector("input"); 109 | 110 | expect(input!.value).toBe("Enable tracking"); 111 | 112 | trackless.setPreference(false); 113 | 114 | expect(input!.value).toBe("Don't track me"); 115 | }); 116 | 117 | it("sets the value of a checkbox", () => { 118 | document.body.innerHTML = ``; 119 | 120 | const trackless = new Trackless({ 121 | trackingID: "test", 122 | initialOptOut: true, 123 | }); 124 | trackless.bindElements(); 125 | 126 | const input = document.querySelector("input"); 127 | 128 | expect(input!.checked).toBeFalsy(); 129 | 130 | trackless.setPreference(false); 131 | 132 | expect(input!.checked).toBeTruthy(); 133 | }); 134 | 135 | it("sets the inverted value of a checkbox", () => { 136 | document.body.innerHTML = ``; 137 | 138 | const trackless = new Trackless({ 139 | trackingID: "test", 140 | initialOptOut: true, 141 | invertCheckbox: true, 142 | }); 143 | trackless.bindElements(); 144 | 145 | const input = document.querySelector("input"); 146 | 147 | expect(input!.checked).toBeTruthy(); 148 | 149 | trackless.setPreference(false); 150 | 151 | expect(input!.checked).toBeFalsy(); 152 | }); 153 | 154 | it("invokes a callback when the value changes", () => { 155 | document.body.innerHTML = `

`; 156 | 157 | const callback = jest.fn(); 158 | 159 | const trackless = new Trackless({ 160 | trackingID: "test", 161 | callback, 162 | }); 163 | 164 | trackless.setPreference(true); 165 | expect(callback).toBeCalledWith(true); 166 | 167 | trackless.setPreference(false); 168 | expect(callback).toBeCalledWith(false); 169 | }); 170 | }); 171 | -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- 1 | export interface Options { 2 | /** 3 | * The text prompting the user to opt out. 4 | * Default is "Don't track me" 5 | */ 6 | optOutText: string; 7 | 8 | /** 9 | * The text prompting the user to opt in. 10 | * Default is "Enable tracking" 11 | */ 12 | optInText: string; 13 | 14 | /** 15 | * Your Google tracking ID 16 | */ 17 | trackingID: string; 18 | 19 | /** 20 | * Initial opt-out value if no preference is stored. Default is false (not opted-out). 21 | */ 22 | initialOptOut: boolean; 23 | 24 | /** 25 | * Override opt-out value. If true, sets the stored preference to the `initialOptOut` value. 26 | * Use this if, for example, you have a logged-in user and want to sync the preference between devices. 27 | * Default is false, meaning saved value. 28 | */ 29 | 30 | overrideOptOut?: boolean; 31 | 32 | /** 33 | * Called when opt-out value is changed. Passed the new opt-out value. 34 | */ 35 | callback?: (optOut: boolean) => void; 36 | 37 | /** 38 | * Invert the behaviour of checkboxes. By default, a checkbox is checked if the user is not opted-out. 39 | * Set this to true so that it is checked if the user is opted-out. 40 | */ 41 | 42 | invertCheckbox?: boolean; 43 | } 44 | 45 | const DEFAULT_OPTIONS: Options = { 46 | optOutText: "Don't track me", 47 | optInText: "Enable tracking", 48 | initialOptOut: false, 49 | trackingID: "" 50 | }; 51 | 52 | function isInput(element: HTMLElement): element is HTMLInputElement { 53 | return element.tagName.toUpperCase() === "INPUT"; 54 | } 55 | export type TracklassTask = (tl: typeof Trackless) => void; 56 | export class Trackless { 57 | /** 58 | * Used by the async loader to process the command queue 59 | */ 60 | public static processQueue = (queue?: TracklassTask[]) => { 61 | if (queue && Array.isArray(queue)) { 62 | queue.map(c => c(Trackless)); 63 | } 64 | }; 65 | 66 | /** 67 | * Whether this user has opted-out 68 | */ 69 | public optedOut = false; 70 | 71 | private options: Options; 72 | private boundElements: HTMLElement[] = []; 73 | 74 | constructor(options: Partial = {}) { 75 | this.options = { ...DEFAULT_OPTIONS, ...options }; 76 | if (!this.options.trackingID) { 77 | console.error("Please set Google tracking id"); 78 | } 79 | if (this.options.overrideOptOut) { 80 | this.setPreference(this.options.initialOptOut); 81 | } else { 82 | this.getPreferenceFromStorage(); 83 | this.setGAFlag(); 84 | } 85 | } 86 | 87 | /** 88 | * Pass a selector suitable for querySelectorAll. Default is ".trackless". 89 | */ 90 | public bindElements = (selectors = ".trackless") => { 91 | Array.prototype.forEach.call( 92 | document.querySelectorAll(selectors), 93 | this.bindElement 94 | ); 95 | this.updateLabels(); 96 | }; 97 | 98 | /** 99 | * Unbinds all elements. 100 | */ 101 | public unBindAllElements = () => { 102 | this.boundElements.forEach(element => 103 | element.removeEventListener("click", this.onClick) 104 | ); 105 | 106 | this.boundElements = []; 107 | }; 108 | 109 | public setPreference = (optOut: boolean) => { 110 | this.optedOut = optOut; 111 | window.localStorage.setItem("trackless", optOut ? "true" : "false"); 112 | this.setGAFlag(); 113 | this.updateLabels(); 114 | if (this.options.callback) { 115 | this.options.callback(optOut); 116 | } 117 | }; 118 | 119 | private setText = (element: HTMLElement) => { 120 | const label = this.optedOut 121 | ? this.options.optInText 122 | : this.options.optOutText; 123 | 124 | if (isInput(element)) { 125 | if (element.getAttribute("type") === "checkbox") { 126 | element.checked = this.options.invertCheckbox 127 | ? this.optedOut 128 | : !this.optedOut; 129 | } else { 130 | element.value = label; 131 | } 132 | } else { 133 | element.innerText = label; 134 | } 135 | }; 136 | 137 | private bindElement = (element: HTMLElement) => { 138 | element.addEventListener("click", this.onClick); 139 | this.setText(element); 140 | this.boundElements.push(element); 141 | }; 142 | 143 | private getPreferenceFromStorage = () => { 144 | switch (window.localStorage.getItem("trackless")) { 145 | case "true": 146 | this.optedOut = true; 147 | break; 148 | 149 | case "false": 150 | this.optedOut = false; 151 | break; 152 | 153 | default: 154 | this.optedOut = this.options.initialOptOut; 155 | } 156 | 157 | return this.optedOut; 158 | }; 159 | 160 | private updateLabels = () => { 161 | this.boundElements.forEach(this.setText); 162 | }; 163 | 164 | private setGAFlag = () => { 165 | (window as any)[ 166 | `ga-disable-${this.options.trackingID}` 167 | ] = this.optedOut; 168 | }; 169 | 170 | private togglePreference = () => this.setPreference(!this.optedOut); 171 | 172 | private onClick = (event: Event) => { 173 | if ( 174 | event.currentTarget && 175 | (event.currentTarget as HTMLElement).getAttribute("type") !== 176 | "checkbox" 177 | ) { 178 | event.preventDefault(); 179 | } 180 | this.togglePreference(); 181 | }; 182 | } 183 | 184 | export default Trackless; 185 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Trackless 2 | 3 | ## Let your users opt-out of Google Analytics 4 | 5 | Google Analytics is super-useful, but lots of people don't like being tracked. 6 | The GDPR says that users should be able to choose whether they share personal 7 | information. This script lets you easily give your site visitors a way of 8 | opting-out of Google Analytics tracking. This preference is stored in the 9 | browser's localStorage. 10 | 11 | ![](demo/screencast.gif) 12 | 13 | Tracking is disabled by setting `window['ga-disable-GA_TRACKING_ID'] = true;`, 14 | as documented 15 | [here](https://developers.google.com/analytics/devguides/collection/gtagjs/user-opt-out). 16 | This needs to be done before the Google Analytics call is made, so the script 17 | should be loaded before the Google Analytics script. 18 | 19 | ## How to use 20 | 21 | [![npm](https://img.shields.io/npm/dt/trackless.svg)](https://www.npmjs.com/package/trackless) 22 | [![GitHub issues](https://img.shields.io/github/issues/ascorbic/trackless.svg)](https://github.com/ascorbic/trackless/issues) 23 | 24 | The script can either be loaded as a module if you are using a bundler, or 25 | directly from a script tag. 26 | 27 | To load as a package, install from NPM: 28 | 29 | ```sh 30 | npm install trackless 31 | ``` 32 | or 33 | ```sh 34 | yarn add trackless 35 | ``` 36 | Then in your source file: 37 | ```js 38 | import { Trackless } from "trackless"; 39 | 40 | const trackless = new Trackless({ trackingID: "MY_TRACKING_ID" }); 41 | trackless.bindElements(); 42 | ``` 43 | 44 | When loading from a script tag, place it in the head before your GA tag. We use 45 | the same method as GA for loading asynchronously, so its safe to load it in the 46 | head. You can either load it directly from unpkg.com, or [download the UMD file](https://unpkg.com/trackless) and host it yourself. 47 | 48 | ```html 49 | 50 | 58 | ``` 59 | 60 | By default it binds to all elements with the class "trackless". You can change 61 | this by passing a different selector to `bindElements()`. e.g. 62 | `bindElements("button.optOut")` will bind to all buttons with the class 63 | "optOut". You can click any bound element to toggle the preference. This will 64 | automatically update the setting in localStorage, as well as the label for 65 | itself and all other bound elements. For checkboxes, it updates the checked 66 | value. For other `` elements it sets the `value` property. For all other 67 | elements, it sets the innerText. 68 | 69 | [Demo](https://unpkg.com/trackless/demo/index.html) 70 | 71 | ## API 72 | 73 | ### Options 74 | 75 | The following options can be assed to the constructor. All fields are optional, except trackingID. 76 | 77 | | Param | Type | Default | Description | 78 | | -------------- | ---------- | ----------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | 79 | | trackingID | `string` | - | Your Google Analytics tracking ID. e.g. GA-XX-XXXXX | 80 | | optOutText | `string` | "Don't track me" | The text prompting the user to opt out. | 81 | | optInText | `string` | "Enable tracking" | The text prompting the user to opt in. | 82 | | initialOptOut | `boolean` | false | Initial opt-out value if no preference is stored. | 83 | | overrideOptOut | `boolean` | false | Override opt-out value. If true, sets the stored preference to the `initialOptOut` value. Use this if, for example, you have a logged-in user and want to sync the preference between devices. | 84 | | callback | `Function` | - | Called when opt-out value is changed. Passed the new opt-out value. | 85 | | invertCheckbox | `boolean` | false | Invert the behaviour of checkboxes. By default, a checkbox is checked if the user is not opted-out. Set this to true so that it is checked if the user is opted-out. | 86 | 87 | ### The Trackless object 88 | 89 | ### constructor(options) 90 | 91 | 92 | | Param | Type | Description | 93 | | ------- | --------- | ------------------ | 94 | | options | `Options` | An options object. | 95 | 96 | 97 | ### bindElements(selectors) 98 | Adds onClick listeners to the selected elements, and sets their value according to the current preferences. 99 | 100 | | Param | Type | Description | 101 | | --------- | -------- | ----------------------------------------------------------------------------------------------------------- | 102 | | selectors | `string` | The selectors of the elements to bind. Default is `".trackless"`, i.e. any element with `class="trackless"` | 103 | 104 | ### unBindAllElements() 105 | Unbinds all previously bound elements. 106 | 107 | ### setPreference(optOut) 108 | Sets the opt-out preference, stores the value in localStorage, and updates all elements. If `callback()` is set then it is invoked with the new value. 109 | 110 | | Param | Type | Description | 111 | | ------ | --------- | ---------------- | 112 | | optOut | `boolean` | The optOut value | 113 | 114 | 115 | ### `static` processQueue(queue) 116 | 117 | Used by the async loader to run queued commands. You shouldn't need to use this yourself unless you are handling your own queue. It should be an array of functions, which are passed the `Trackless` class. The UMD file looks for a `window.TracklessQueue` array, which it passes to this when the script has loaded. If you are loading it as a module you won't get this behaviour, so if you need async processing then this is the way to implement it. 118 | ```js 119 | Trackless.processQueue(window.TracklessQueue); 120 | ``` 121 | 122 | | Param | Type | Description | 123 | | ----- | ------- | ----------------------------------------------------------------------------------- | 124 | | queue | `array` | An array of callbacks. These are passed the `Trackless` class as the only argument. | 125 | 126 | ## FAQ 127 | - **Does this stop the Analytics script from loading?** 128 | No. The script still loads. However because the opt-out flag is set, Google does not set a cookie or track the visit. 129 | - **Should I default to opted-out?** I am not a lawyer, but if you want to be totally sure then yes, pass `initialOptOut: true` in the options and it will default to opted-out, and not track the user unless they positively opt in. 130 | - **Is this required by the GDPR?** I am not a lawyer. Google allows you to anonymise IP addresses in Analytics (which you should absolutely do), but it still tracks the user via a client ID. It could certainly be argued that this is PII (and I expect some lawyers will be doing just that). -------------------------------------------------------------------------------- /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-beta.35": 6 | version "7.0.0-beta.49" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0-beta.49.tgz#becd805482734440c9d137e46d77340e64d7f51b" 8 | dependencies: 9 | "@babel/highlight" "7.0.0-beta.49" 10 | 11 | "@babel/highlight@7.0.0-beta.49": 12 | version "7.0.0-beta.49" 13 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0-beta.49.tgz#96bdc6b43e13482012ba6691b1018492d39622cc" 14 | dependencies: 15 | chalk "^2.0.0" 16 | esutils "^2.0.2" 17 | js-tokens "^3.0.0" 18 | 19 | "@fimbul/bifrost@^0.6.0": 20 | version "0.6.0" 21 | resolved "https://registry.yarnpkg.com/@fimbul/bifrost/-/bifrost-0.6.0.tgz#5150302b63e1bd37ff95f561c3605949cb7e3770" 22 | dependencies: 23 | "@fimbul/ymir" "^0.6.0" 24 | get-caller-file "^1.0.2" 25 | tslib "^1.8.1" 26 | 27 | "@fimbul/ymir@^0.6.0": 28 | version "0.6.0" 29 | resolved "https://registry.yarnpkg.com/@fimbul/ymir/-/ymir-0.6.0.tgz#537cb15d361b7c993fe953b48c898ecdf4f671b8" 30 | dependencies: 31 | inversify "^4.10.0" 32 | reflect-metadata "^0.1.12" 33 | tslib "^1.8.1" 34 | 35 | "@types/jest@^22.2.3": 36 | version "22.2.3" 37 | resolved "https://registry.yarnpkg.com/@types/jest/-/jest-22.2.3.tgz#0157c0316dc3722c43a7b71de3fdf3acbccef10d" 38 | 39 | abab@^1.0.4: 40 | version "1.0.4" 41 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.4.tgz#5faad9c2c07f60dd76770f71cf025b62a63cfd4e" 42 | 43 | abbrev@1: 44 | version "1.1.1" 45 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 46 | 47 | acorn-globals@^4.1.0: 48 | version "4.1.0" 49 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.1.0.tgz#ab716025dbe17c54d3ef81d32ece2b2d99fe2538" 50 | dependencies: 51 | acorn "^5.0.0" 52 | 53 | acorn@^5.0.0, acorn@^5.3.0: 54 | version "5.5.3" 55 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.5.3.tgz#f473dd47e0277a08e28e9bec5aeeb04751f0b8c9" 56 | 57 | ajv@^5.1.0: 58 | version "5.5.2" 59 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 60 | dependencies: 61 | co "^4.6.0" 62 | fast-deep-equal "^1.0.0" 63 | fast-json-stable-stringify "^2.0.0" 64 | json-schema-traverse "^0.3.0" 65 | 66 | align-text@^0.1.1, align-text@^0.1.3: 67 | version "0.1.4" 68 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 69 | dependencies: 70 | kind-of "^3.0.2" 71 | longest "^1.0.1" 72 | repeat-string "^1.5.2" 73 | 74 | amdefine@>=0.0.4: 75 | version "1.0.1" 76 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 77 | 78 | ansi-escapes@^3.0.0: 79 | version "3.1.0" 80 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.1.0.tgz#f73207bb81207d75fd6c83f125af26eea378ca30" 81 | 82 | ansi-regex@^2.0.0: 83 | version "2.1.1" 84 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 85 | 86 | ansi-regex@^3.0.0: 87 | version "3.0.0" 88 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 89 | 90 | ansi-styles@^2.2.1: 91 | version "2.2.1" 92 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 93 | 94 | ansi-styles@^3.2.0, ansi-styles@^3.2.1: 95 | version "3.2.1" 96 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 97 | dependencies: 98 | color-convert "^1.9.0" 99 | 100 | anymatch@^2.0.0: 101 | version "2.0.0" 102 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" 103 | dependencies: 104 | micromatch "^3.1.4" 105 | normalize-path "^2.1.1" 106 | 107 | append-transform@^0.4.0: 108 | version "0.4.0" 109 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 110 | dependencies: 111 | default-require-extensions "^1.0.0" 112 | 113 | aproba@^1.0.3: 114 | version "1.2.0" 115 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 116 | 117 | are-we-there-yet@~1.1.2: 118 | version "1.1.5" 119 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" 120 | dependencies: 121 | delegates "^1.0.0" 122 | readable-stream "^2.0.6" 123 | 124 | argparse@^1.0.7: 125 | version "1.0.10" 126 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 127 | dependencies: 128 | sprintf-js "~1.0.2" 129 | 130 | arr-diff@^2.0.0: 131 | version "2.0.0" 132 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 133 | dependencies: 134 | arr-flatten "^1.0.1" 135 | 136 | arr-diff@^4.0.0: 137 | version "4.0.0" 138 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 139 | 140 | arr-flatten@^1.0.1, arr-flatten@^1.1.0: 141 | version "1.1.0" 142 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 143 | 144 | arr-union@^3.1.0: 145 | version "3.1.0" 146 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 147 | 148 | array-equal@^1.0.0: 149 | version "1.0.0" 150 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 151 | 152 | array-unique@^0.2.1: 153 | version "0.2.1" 154 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 155 | 156 | array-unique@^0.3.2: 157 | version "0.3.2" 158 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 159 | 160 | arrify@^1.0.1: 161 | version "1.0.1" 162 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 163 | 164 | asn1@~0.2.3: 165 | version "0.2.3" 166 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 167 | 168 | assert-plus@1.0.0, assert-plus@^1.0.0: 169 | version "1.0.0" 170 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 171 | 172 | assign-symbols@^1.0.0: 173 | version "1.0.0" 174 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 175 | 176 | astral-regex@^1.0.0: 177 | version "1.0.0" 178 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" 179 | 180 | async-limiter@~1.0.0: 181 | version "1.0.0" 182 | resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8" 183 | 184 | async@^1.4.0: 185 | version "1.5.2" 186 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 187 | 188 | async@^2.1.4: 189 | version "2.6.1" 190 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.1.tgz#b245a23ca71930044ec53fa46aa00a3e87c6a610" 191 | dependencies: 192 | lodash "^4.17.10" 193 | 194 | asynckit@^0.4.0: 195 | version "0.4.0" 196 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 197 | 198 | atob@^2.1.1: 199 | version "2.1.1" 200 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.1.tgz#ae2d5a729477f289d60dd7f96a6314a22dd6c22a" 201 | 202 | aws-sign2@~0.7.0: 203 | version "0.7.0" 204 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 205 | 206 | aws4@^1.6.0: 207 | version "1.7.0" 208 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.7.0.tgz#d4d0e9b9dbfca77bf08eeb0a8a471550fe39e289" 209 | 210 | babel-code-frame@^6.22.0, babel-code-frame@^6.26.0: 211 | version "6.26.0" 212 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 213 | dependencies: 214 | chalk "^1.1.3" 215 | esutils "^2.0.2" 216 | js-tokens "^3.0.2" 217 | 218 | babel-core@^6.0.0, babel-core@^6.26.0: 219 | version "6.26.3" 220 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.3.tgz#b2e2f09e342d0f0c88e2f02e067794125e75c207" 221 | dependencies: 222 | babel-code-frame "^6.26.0" 223 | babel-generator "^6.26.0" 224 | babel-helpers "^6.24.1" 225 | babel-messages "^6.23.0" 226 | babel-register "^6.26.0" 227 | babel-runtime "^6.26.0" 228 | babel-template "^6.26.0" 229 | babel-traverse "^6.26.0" 230 | babel-types "^6.26.0" 231 | babylon "^6.18.0" 232 | convert-source-map "^1.5.1" 233 | debug "^2.6.9" 234 | json5 "^0.5.1" 235 | lodash "^4.17.4" 236 | minimatch "^3.0.4" 237 | path-is-absolute "^1.0.1" 238 | private "^0.1.8" 239 | slash "^1.0.0" 240 | source-map "^0.5.7" 241 | 242 | babel-generator@^6.18.0, babel-generator@^6.26.0: 243 | version "6.26.1" 244 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" 245 | dependencies: 246 | babel-messages "^6.23.0" 247 | babel-runtime "^6.26.0" 248 | babel-types "^6.26.0" 249 | detect-indent "^4.0.0" 250 | jsesc "^1.3.0" 251 | lodash "^4.17.4" 252 | source-map "^0.5.7" 253 | trim-right "^1.0.1" 254 | 255 | babel-helpers@^6.24.1: 256 | version "6.24.1" 257 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 258 | dependencies: 259 | babel-runtime "^6.22.0" 260 | babel-template "^6.24.1" 261 | 262 | babel-jest@^23.0.0: 263 | version "23.0.0" 264 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-23.0.0.tgz#0e383a2aa6b3535e197db2929570a2182bd084e8" 265 | dependencies: 266 | babel-plugin-istanbul "^4.1.6" 267 | babel-preset-jest "^23.0.0" 268 | 269 | babel-messages@^6.23.0: 270 | version "6.23.0" 271 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 272 | dependencies: 273 | babel-runtime "^6.22.0" 274 | 275 | babel-plugin-istanbul@^4.1.6: 276 | version "4.1.6" 277 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.6.tgz#36c59b2192efce81c5b378321b74175add1c9a45" 278 | dependencies: 279 | babel-plugin-syntax-object-rest-spread "^6.13.0" 280 | find-up "^2.1.0" 281 | istanbul-lib-instrument "^1.10.1" 282 | test-exclude "^4.2.1" 283 | 284 | babel-plugin-jest-hoist@^23.0.0: 285 | version "23.0.0" 286 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-23.0.0.tgz#e61e68799f743391a1e6306ee270477aacf946c8" 287 | 288 | babel-plugin-syntax-object-rest-spread@^6.13.0: 289 | version "6.13.0" 290 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 291 | 292 | babel-preset-jest@^23.0.0: 293 | version "23.0.0" 294 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-23.0.0.tgz#49de0303f1b6875dcad6163eaa7eb8330d54824d" 295 | dependencies: 296 | babel-plugin-jest-hoist "^23.0.0" 297 | babel-plugin-syntax-object-rest-spread "^6.13.0" 298 | 299 | babel-register@^6.26.0: 300 | version "6.26.0" 301 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 302 | dependencies: 303 | babel-core "^6.26.0" 304 | babel-runtime "^6.26.0" 305 | core-js "^2.5.0" 306 | home-or-tmp "^2.0.0" 307 | lodash "^4.17.4" 308 | mkdirp "^0.5.1" 309 | source-map-support "^0.4.15" 310 | 311 | babel-runtime@^6.22.0, babel-runtime@^6.26.0: 312 | version "6.26.0" 313 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 314 | dependencies: 315 | core-js "^2.4.0" 316 | regenerator-runtime "^0.11.0" 317 | 318 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0: 319 | version "6.26.0" 320 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 321 | dependencies: 322 | babel-runtime "^6.26.0" 323 | babel-traverse "^6.26.0" 324 | babel-types "^6.26.0" 325 | babylon "^6.18.0" 326 | lodash "^4.17.4" 327 | 328 | babel-traverse@^6.18.0, babel-traverse@^6.26.0: 329 | version "6.26.0" 330 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 331 | dependencies: 332 | babel-code-frame "^6.26.0" 333 | babel-messages "^6.23.0" 334 | babel-runtime "^6.26.0" 335 | babel-types "^6.26.0" 336 | babylon "^6.18.0" 337 | debug "^2.6.8" 338 | globals "^9.18.0" 339 | invariant "^2.2.2" 340 | lodash "^4.17.4" 341 | 342 | babel-types@^6.18.0, babel-types@^6.26.0: 343 | version "6.26.0" 344 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 345 | dependencies: 346 | babel-runtime "^6.26.0" 347 | esutils "^2.0.2" 348 | lodash "^4.17.4" 349 | to-fast-properties "^1.0.3" 350 | 351 | babylon@^6.18.0: 352 | version "6.18.0" 353 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 354 | 355 | balanced-match@^1.0.0: 356 | version "1.0.0" 357 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 358 | 359 | base@^0.11.1: 360 | version "0.11.2" 361 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 362 | dependencies: 363 | cache-base "^1.0.1" 364 | class-utils "^0.3.5" 365 | component-emitter "^1.2.1" 366 | define-property "^1.0.0" 367 | isobject "^3.0.1" 368 | mixin-deep "^1.2.0" 369 | pascalcase "^0.1.1" 370 | 371 | bcrypt-pbkdf@^1.0.0: 372 | version "1.0.1" 373 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 374 | dependencies: 375 | tweetnacl "^0.14.3" 376 | 377 | brace-expansion@^1.1.7: 378 | version "1.1.11" 379 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 380 | dependencies: 381 | balanced-match "^1.0.0" 382 | concat-map "0.0.1" 383 | 384 | braces@^1.8.2: 385 | version "1.8.5" 386 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 387 | dependencies: 388 | expand-range "^1.8.1" 389 | preserve "^0.2.0" 390 | repeat-element "^1.1.2" 391 | 392 | braces@^2.3.1: 393 | version "2.3.2" 394 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" 395 | dependencies: 396 | arr-flatten "^1.1.0" 397 | array-unique "^0.3.2" 398 | extend-shallow "^2.0.1" 399 | fill-range "^4.0.0" 400 | isobject "^3.0.1" 401 | repeat-element "^1.1.2" 402 | snapdragon "^0.8.1" 403 | snapdragon-node "^2.0.1" 404 | split-string "^3.0.2" 405 | to-regex "^3.0.1" 406 | 407 | browser-process-hrtime@^0.1.2: 408 | version "0.1.2" 409 | resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-0.1.2.tgz#425d68a58d3447f02a04aa894187fce8af8b7b8e" 410 | 411 | browser-resolve@^1.11.2: 412 | version "1.11.2" 413 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 414 | dependencies: 415 | resolve "1.1.7" 416 | 417 | bs-logger@0.x: 418 | version "0.2.6" 419 | resolved "https://registry.yarnpkg.com/bs-logger/-/bs-logger-0.2.6.tgz#eb7d365307a72cf974cc6cda76b68354ad336bd8" 420 | dependencies: 421 | fast-json-stable-stringify "2.x" 422 | 423 | bser@^2.0.0: 424 | version "2.0.0" 425 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 426 | dependencies: 427 | node-int64 "^0.4.0" 428 | 429 | buffer-from@1.x: 430 | version "1.1.2" 431 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" 432 | 433 | buffer-from@^1.0.0: 434 | version "1.0.0" 435 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.0.0.tgz#4cb8832d23612589b0406e9e2956c17f06fdf531" 436 | 437 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 438 | version "1.1.1" 439 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 440 | 441 | cache-base@^1.0.1: 442 | version "1.0.1" 443 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 444 | dependencies: 445 | collection-visit "^1.0.0" 446 | component-emitter "^1.2.1" 447 | get-value "^2.0.6" 448 | has-value "^1.0.0" 449 | isobject "^3.0.1" 450 | set-value "^2.0.0" 451 | to-object-path "^0.3.0" 452 | union-value "^1.0.0" 453 | unset-value "^1.0.0" 454 | 455 | callsites@^2.0.0: 456 | version "2.0.0" 457 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 458 | 459 | camelcase@^1.0.2: 460 | version "1.2.1" 461 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 462 | 463 | camelcase@^4.1.0: 464 | version "4.1.0" 465 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 466 | 467 | capture-exit@^1.2.0: 468 | version "1.2.0" 469 | resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-1.2.0.tgz#1c5fcc489fd0ab00d4f1ac7ae1072e3173fbab6f" 470 | dependencies: 471 | rsvp "^3.3.3" 472 | 473 | caseless@~0.12.0: 474 | version "0.12.0" 475 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 476 | 477 | center-align@^0.1.1: 478 | version "0.1.3" 479 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 480 | dependencies: 481 | align-text "^0.1.3" 482 | lazy-cache "^1.0.3" 483 | 484 | chalk@^1.1.3: 485 | version "1.1.3" 486 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 487 | dependencies: 488 | ansi-styles "^2.2.1" 489 | escape-string-regexp "^1.0.2" 490 | has-ansi "^2.0.0" 491 | strip-ansi "^3.0.0" 492 | supports-color "^2.0.0" 493 | 494 | chalk@^2.0.0, chalk@^2.0.1, chalk@^2.3.0: 495 | version "2.4.1" 496 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e" 497 | dependencies: 498 | ansi-styles "^3.2.1" 499 | escape-string-regexp "^1.0.5" 500 | supports-color "^5.3.0" 501 | 502 | chownr@^1.1.1: 503 | version "1.1.4" 504 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" 505 | 506 | ci-info@^1.0.0: 507 | version "1.1.3" 508 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.3.tgz#710193264bb05c77b8c90d02f5aaf22216a667b2" 509 | 510 | class-utils@^0.3.5: 511 | version "0.3.6" 512 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 513 | dependencies: 514 | arr-union "^3.1.0" 515 | define-property "^0.2.5" 516 | isobject "^3.0.0" 517 | static-extend "^0.1.1" 518 | 519 | cliui@^2.1.0: 520 | version "2.1.0" 521 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 522 | dependencies: 523 | center-align "^0.1.1" 524 | right-align "^0.1.1" 525 | wordwrap "0.0.2" 526 | 527 | cliui@^4.0.0: 528 | version "4.1.0" 529 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49" 530 | dependencies: 531 | string-width "^2.1.1" 532 | strip-ansi "^4.0.0" 533 | wrap-ansi "^2.0.0" 534 | 535 | co@^4.6.0: 536 | version "4.6.0" 537 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 538 | 539 | code-point-at@^1.0.0: 540 | version "1.1.0" 541 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 542 | 543 | collection-visit@^1.0.0: 544 | version "1.0.0" 545 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 546 | dependencies: 547 | map-visit "^1.0.0" 548 | object-visit "^1.0.0" 549 | 550 | color-convert@^1.9.0: 551 | version "1.9.1" 552 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" 553 | dependencies: 554 | color-name "^1.1.1" 555 | 556 | color-name@^1.1.1: 557 | version "1.1.3" 558 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 559 | 560 | combined-stream@1.0.6, combined-stream@~1.0.5: 561 | version "1.0.6" 562 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818" 563 | dependencies: 564 | delayed-stream "~1.0.0" 565 | 566 | commander@^2.12.1: 567 | version "2.15.1" 568 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.15.1.tgz#df46e867d0fc2aec66a34662b406a9ccafff5b0f" 569 | 570 | compare-versions@^3.1.0: 571 | version "3.2.1" 572 | resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-3.2.1.tgz#a49eb7689d4caaf0b6db5220173fd279614000f7" 573 | 574 | component-emitter@^1.2.1: 575 | version "1.2.1" 576 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 577 | 578 | concat-map@0.0.1: 579 | version "0.0.1" 580 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 581 | 582 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 583 | version "1.1.0" 584 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 585 | 586 | convert-source-map@^1.4.0, convert-source-map@^1.5.1: 587 | version "1.5.1" 588 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 589 | 590 | copy-descriptor@^0.1.0: 591 | version "0.1.1" 592 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 593 | 594 | core-js@^2.4.0, core-js@^2.5.0: 595 | version "2.5.7" 596 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.7.tgz#f972608ff0cead68b841a16a932d0b183791814e" 597 | 598 | core-util-is@1.0.2, core-util-is@~1.0.0: 599 | version "1.0.2" 600 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 601 | 602 | cross-spawn@^5.0.1: 603 | version "5.1.0" 604 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 605 | dependencies: 606 | lru-cache "^4.0.1" 607 | shebang-command "^1.2.0" 608 | which "^1.2.9" 609 | 610 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 611 | version "0.3.2" 612 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 613 | 614 | "cssstyle@>= 0.3.1 < 0.4.0": 615 | version "0.3.1" 616 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.3.1.tgz#6da9b4cff1bc5d716e6e5fe8e04fcb1b50a49adf" 617 | dependencies: 618 | cssom "0.3.x" 619 | 620 | dashdash@^1.12.0: 621 | version "1.14.1" 622 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 623 | dependencies: 624 | assert-plus "^1.0.0" 625 | 626 | data-urls@^1.0.0: 627 | version "1.0.0" 628 | resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-1.0.0.tgz#24802de4e81c298ea8a9388bb0d8e461c774684f" 629 | dependencies: 630 | abab "^1.0.4" 631 | whatwg-mimetype "^2.0.0" 632 | whatwg-url "^6.4.0" 633 | 634 | debug@^2.1.2, debug@^2.2.0, debug@^2.3.3, debug@^2.6.8, debug@^2.6.9: 635 | version "2.6.9" 636 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 637 | dependencies: 638 | ms "2.0.0" 639 | 640 | debug@^3.1.0: 641 | version "3.1.0" 642 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 643 | dependencies: 644 | ms "2.0.0" 645 | 646 | decamelize@^1.0.0, decamelize@^1.1.1: 647 | version "1.2.0" 648 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 649 | 650 | decode-uri-component@^0.2.0: 651 | version "0.2.0" 652 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 653 | 654 | deep-extend@^0.5.1: 655 | version "0.5.1" 656 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.5.1.tgz#b894a9dd90d3023fbf1c55a394fb858eb2066f1f" 657 | 658 | deep-is@~0.1.3: 659 | version "0.1.3" 660 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 661 | 662 | default-require-extensions@^1.0.0: 663 | version "1.0.0" 664 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 665 | dependencies: 666 | strip-bom "^2.0.0" 667 | 668 | define-properties@^1.1.2: 669 | version "1.1.2" 670 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 671 | dependencies: 672 | foreach "^2.0.5" 673 | object-keys "^1.0.8" 674 | 675 | define-property@^0.2.5: 676 | version "0.2.5" 677 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 678 | dependencies: 679 | is-descriptor "^0.1.0" 680 | 681 | define-property@^1.0.0: 682 | version "1.0.0" 683 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 684 | dependencies: 685 | is-descriptor "^1.0.0" 686 | 687 | define-property@^2.0.2: 688 | version "2.0.2" 689 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 690 | dependencies: 691 | is-descriptor "^1.0.2" 692 | isobject "^3.0.1" 693 | 694 | delayed-stream@~1.0.0: 695 | version "1.0.0" 696 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 697 | 698 | delegates@^1.0.0: 699 | version "1.0.0" 700 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 701 | 702 | detect-indent@^4.0.0: 703 | version "4.0.0" 704 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 705 | dependencies: 706 | repeating "^2.0.0" 707 | 708 | detect-libc@^1.0.2: 709 | version "1.0.3" 710 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 711 | 712 | detect-newline@^2.1.0: 713 | version "2.1.0" 714 | resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2" 715 | 716 | diff@^3.2.0: 717 | version "3.5.0" 718 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" 719 | 720 | doctrine@0.7.2: 721 | version "0.7.2" 722 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-0.7.2.tgz#7cb860359ba3be90e040b26b729ce4bfa654c523" 723 | dependencies: 724 | esutils "^1.1.6" 725 | isarray "0.0.1" 726 | 727 | domexception@^1.0.0: 728 | version "1.0.1" 729 | resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90" 730 | dependencies: 731 | webidl-conversions "^4.0.2" 732 | 733 | ecc-jsbn@~0.1.1: 734 | version "0.1.1" 735 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 736 | dependencies: 737 | jsbn "~0.1.0" 738 | 739 | error-ex@^1.2.0: 740 | version "1.3.1" 741 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 742 | dependencies: 743 | is-arrayish "^0.2.1" 744 | 745 | es-abstract@^1.5.1: 746 | version "1.11.0" 747 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.11.0.tgz#cce87d518f0496893b1a30cd8461835535480681" 748 | dependencies: 749 | es-to-primitive "^1.1.1" 750 | function-bind "^1.1.1" 751 | has "^1.0.1" 752 | is-callable "^1.1.3" 753 | is-regex "^1.0.4" 754 | 755 | es-to-primitive@^1.1.1: 756 | version "1.1.1" 757 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 758 | dependencies: 759 | is-callable "^1.1.1" 760 | is-date-object "^1.0.1" 761 | is-symbol "^1.0.1" 762 | 763 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 764 | version "1.0.5" 765 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 766 | 767 | escodegen@^1.9.0: 768 | version "1.9.1" 769 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.9.1.tgz#dbae17ef96c8e4bedb1356f4504fa4cc2f7cb7e2" 770 | dependencies: 771 | esprima "^3.1.3" 772 | estraverse "^4.2.0" 773 | esutils "^2.0.2" 774 | optionator "^0.8.1" 775 | optionalDependencies: 776 | source-map "~0.6.1" 777 | 778 | esprima@^3.1.3: 779 | version "3.1.3" 780 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 781 | 782 | esprima@^4.0.0: 783 | version "4.0.0" 784 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 785 | 786 | estraverse@^4.2.0: 787 | version "4.2.0" 788 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 789 | 790 | esutils@^1.1.6: 791 | version "1.1.6" 792 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-1.1.6.tgz#c01ccaa9ae4b897c6d0c3e210ae52f3c7a844375" 793 | 794 | esutils@^2.0.2: 795 | version "2.0.2" 796 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 797 | 798 | exec-sh@^0.2.0: 799 | version "0.2.1" 800 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.1.tgz#163b98a6e89e6b65b47c2a28d215bc1f63989c38" 801 | dependencies: 802 | merge "^1.1.3" 803 | 804 | execa@^0.7.0: 805 | version "0.7.0" 806 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 807 | dependencies: 808 | cross-spawn "^5.0.1" 809 | get-stream "^3.0.0" 810 | is-stream "^1.1.0" 811 | npm-run-path "^2.0.0" 812 | p-finally "^1.0.0" 813 | signal-exit "^3.0.0" 814 | strip-eof "^1.0.0" 815 | 816 | exit@^0.1.2: 817 | version "0.1.2" 818 | resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" 819 | 820 | expand-brackets@^0.1.4: 821 | version "0.1.5" 822 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 823 | dependencies: 824 | is-posix-bracket "^0.1.0" 825 | 826 | expand-brackets@^2.1.4: 827 | version "2.1.4" 828 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 829 | dependencies: 830 | debug "^2.3.3" 831 | define-property "^0.2.5" 832 | extend-shallow "^2.0.1" 833 | posix-character-classes "^0.1.0" 834 | regex-not "^1.0.0" 835 | snapdragon "^0.8.1" 836 | to-regex "^3.0.1" 837 | 838 | expand-range@^1.8.1: 839 | version "1.8.2" 840 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 841 | dependencies: 842 | fill-range "^2.1.0" 843 | 844 | expect@^23.0.0: 845 | version "23.0.0" 846 | resolved "https://registry.yarnpkg.com/expect/-/expect-23.0.0.tgz#2c3ab0a44dae319e00a73e3561762768d03a2b27" 847 | dependencies: 848 | ansi-styles "^3.2.0" 849 | jest-diff "^23.0.0" 850 | jest-get-type "^22.1.0" 851 | jest-matcher-utils "^23.0.0" 852 | jest-message-util "^23.0.0" 853 | jest-regex-util "^23.0.0" 854 | 855 | extend-shallow@^2.0.1: 856 | version "2.0.1" 857 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 858 | dependencies: 859 | is-extendable "^0.1.0" 860 | 861 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 862 | version "3.0.2" 863 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 864 | dependencies: 865 | assign-symbols "^1.0.0" 866 | is-extendable "^1.0.1" 867 | 868 | extend@~3.0.1: 869 | version "3.0.1" 870 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 871 | 872 | extglob@^0.3.1: 873 | version "0.3.2" 874 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 875 | dependencies: 876 | is-extglob "^1.0.0" 877 | 878 | extglob@^2.0.4: 879 | version "2.0.4" 880 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 881 | dependencies: 882 | array-unique "^0.3.2" 883 | define-property "^1.0.0" 884 | expand-brackets "^2.1.4" 885 | extend-shallow "^2.0.1" 886 | fragment-cache "^0.2.1" 887 | regex-not "^1.0.0" 888 | snapdragon "^0.8.1" 889 | to-regex "^3.0.1" 890 | 891 | extsprintf@1.3.0: 892 | version "1.3.0" 893 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 894 | 895 | extsprintf@^1.2.0: 896 | version "1.4.0" 897 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 898 | 899 | fast-deep-equal@^1.0.0: 900 | version "1.1.0" 901 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614" 902 | 903 | fast-json-stable-stringify@2.x: 904 | version "2.1.0" 905 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 906 | 907 | fast-json-stable-stringify@^2.0.0: 908 | version "2.0.0" 909 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 910 | 911 | fast-levenshtein@~2.0.4: 912 | version "2.0.6" 913 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 914 | 915 | fb-watchman@^2.0.0: 916 | version "2.0.0" 917 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 918 | dependencies: 919 | bser "^2.0.0" 920 | 921 | filename-regex@^2.0.0: 922 | version "2.0.1" 923 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 924 | 925 | fileset@^2.0.2: 926 | version "2.0.3" 927 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 928 | dependencies: 929 | glob "^7.0.3" 930 | minimatch "^3.0.3" 931 | 932 | fill-range@^2.1.0: 933 | version "2.2.4" 934 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565" 935 | dependencies: 936 | is-number "^2.1.0" 937 | isobject "^2.0.0" 938 | randomatic "^3.0.0" 939 | repeat-element "^1.1.2" 940 | repeat-string "^1.5.2" 941 | 942 | fill-range@^4.0.0: 943 | version "4.0.0" 944 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 945 | dependencies: 946 | extend-shallow "^2.0.1" 947 | is-number "^3.0.0" 948 | repeat-string "^1.6.1" 949 | to-regex-range "^2.1.0" 950 | 951 | find-up@^1.0.0: 952 | version "1.1.2" 953 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 954 | dependencies: 955 | path-exists "^2.0.0" 956 | pinkie-promise "^2.0.0" 957 | 958 | find-up@^2.1.0: 959 | version "2.1.0" 960 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 961 | dependencies: 962 | locate-path "^2.0.0" 963 | 964 | for-in@^1.0.1, for-in@^1.0.2: 965 | version "1.0.2" 966 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 967 | 968 | for-own@^0.1.4: 969 | version "0.1.5" 970 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 971 | dependencies: 972 | for-in "^1.0.1" 973 | 974 | foreach@^2.0.5: 975 | version "2.0.5" 976 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 977 | 978 | forever-agent@~0.6.1: 979 | version "0.6.1" 980 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 981 | 982 | form-data@~2.3.1: 983 | version "2.3.2" 984 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.2.tgz#4970498be604c20c005d4f5c23aecd21d6b49099" 985 | dependencies: 986 | asynckit "^0.4.0" 987 | combined-stream "1.0.6" 988 | mime-types "^2.1.12" 989 | 990 | fragment-cache@^0.2.1: 991 | version "0.2.1" 992 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 993 | dependencies: 994 | map-cache "^0.2.2" 995 | 996 | fs-minipass@^1.2.5: 997 | version "1.2.7" 998 | resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.7.tgz#ccff8570841e7fe4265693da88936c55aed7f7c7" 999 | dependencies: 1000 | minipass "^2.6.0" 1001 | 1002 | fs.realpath@^1.0.0: 1003 | version "1.0.0" 1004 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1005 | 1006 | fsevents@^1.2.3: 1007 | version "1.2.4" 1008 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.4.tgz#f41dcb1af2582af3692da36fc55cbd8e1041c426" 1009 | dependencies: 1010 | nan "^2.9.2" 1011 | node-pre-gyp "^0.10.0" 1012 | 1013 | function-bind@^1.0.2, function-bind@^1.1.1: 1014 | version "1.1.1" 1015 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1016 | 1017 | gauge@~2.7.3: 1018 | version "2.7.4" 1019 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1020 | dependencies: 1021 | aproba "^1.0.3" 1022 | console-control-strings "^1.0.0" 1023 | has-unicode "^2.0.0" 1024 | object-assign "^4.1.0" 1025 | signal-exit "^3.0.0" 1026 | string-width "^1.0.1" 1027 | strip-ansi "^3.0.1" 1028 | wide-align "^1.1.0" 1029 | 1030 | get-caller-file@^1.0.1, get-caller-file@^1.0.2: 1031 | version "1.0.2" 1032 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1033 | 1034 | get-stream@^3.0.0: 1035 | version "3.0.0" 1036 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1037 | 1038 | get-value@^2.0.3, get-value@^2.0.6: 1039 | version "2.0.6" 1040 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 1041 | 1042 | getpass@^0.1.1: 1043 | version "0.1.7" 1044 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1045 | dependencies: 1046 | assert-plus "^1.0.0" 1047 | 1048 | glob-base@^0.3.0: 1049 | version "0.3.0" 1050 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1051 | dependencies: 1052 | glob-parent "^2.0.0" 1053 | is-glob "^2.0.0" 1054 | 1055 | glob-parent@^2.0.0: 1056 | version "2.0.0" 1057 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1058 | dependencies: 1059 | is-glob "^2.0.0" 1060 | 1061 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2: 1062 | version "7.1.2" 1063 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1064 | dependencies: 1065 | fs.realpath "^1.0.0" 1066 | inflight "^1.0.4" 1067 | inherits "2" 1068 | minimatch "^3.0.4" 1069 | once "^1.3.0" 1070 | path-is-absolute "^1.0.0" 1071 | 1072 | globals@^9.18.0: 1073 | version "9.18.0" 1074 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1075 | 1076 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 1077 | version "4.1.11" 1078 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1079 | 1080 | growly@^1.3.0: 1081 | version "1.3.0" 1082 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1083 | 1084 | handlebars@^4.0.3: 1085 | version "4.0.11" 1086 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.11.tgz#630a35dfe0294bc281edae6ffc5d329fc7982dcc" 1087 | dependencies: 1088 | async "^1.4.0" 1089 | optimist "^0.6.1" 1090 | source-map "^0.4.4" 1091 | optionalDependencies: 1092 | uglify-js "^2.6" 1093 | 1094 | har-schema@^2.0.0: 1095 | version "2.0.0" 1096 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 1097 | 1098 | har-validator@~5.0.3: 1099 | version "5.0.3" 1100 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd" 1101 | dependencies: 1102 | ajv "^5.1.0" 1103 | har-schema "^2.0.0" 1104 | 1105 | has-ansi@^2.0.0: 1106 | version "2.0.0" 1107 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1108 | dependencies: 1109 | ansi-regex "^2.0.0" 1110 | 1111 | has-flag@^1.0.0: 1112 | version "1.0.0" 1113 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1114 | 1115 | has-flag@^3.0.0: 1116 | version "3.0.0" 1117 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1118 | 1119 | has-unicode@^2.0.0: 1120 | version "2.0.1" 1121 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1122 | 1123 | has-value@^0.3.1: 1124 | version "0.3.1" 1125 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 1126 | dependencies: 1127 | get-value "^2.0.3" 1128 | has-values "^0.1.4" 1129 | isobject "^2.0.0" 1130 | 1131 | has-value@^1.0.0: 1132 | version "1.0.0" 1133 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 1134 | dependencies: 1135 | get-value "^2.0.6" 1136 | has-values "^1.0.0" 1137 | isobject "^3.0.0" 1138 | 1139 | has-values@^0.1.4: 1140 | version "0.1.4" 1141 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 1142 | 1143 | has-values@^1.0.0: 1144 | version "1.0.0" 1145 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 1146 | dependencies: 1147 | is-number "^3.0.0" 1148 | kind-of "^4.0.0" 1149 | 1150 | has@^1.0.1: 1151 | version "1.0.1" 1152 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1153 | dependencies: 1154 | function-bind "^1.0.2" 1155 | 1156 | has@^1.0.3: 1157 | version "1.0.3" 1158 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1159 | dependencies: 1160 | function-bind "^1.1.1" 1161 | 1162 | home-or-tmp@^2.0.0: 1163 | version "2.0.0" 1164 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1165 | dependencies: 1166 | os-homedir "^1.0.0" 1167 | os-tmpdir "^1.0.1" 1168 | 1169 | hosted-git-info@^2.1.4: 1170 | version "2.6.0" 1171 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.6.0.tgz#23235b29ab230c576aab0d4f13fc046b0b038222" 1172 | 1173 | html-encoding-sniffer@^1.0.2: 1174 | version "1.0.2" 1175 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8" 1176 | dependencies: 1177 | whatwg-encoding "^1.0.1" 1178 | 1179 | http-signature@~1.2.0: 1180 | version "1.2.0" 1181 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 1182 | dependencies: 1183 | assert-plus "^1.0.0" 1184 | jsprim "^1.2.2" 1185 | sshpk "^1.7.0" 1186 | 1187 | iconv-lite@0.4.19: 1188 | version "0.4.19" 1189 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 1190 | 1191 | iconv-lite@^0.4.4: 1192 | version "0.4.23" 1193 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.23.tgz#297871f63be507adcfbfca715d0cd0eed84e9a63" 1194 | dependencies: 1195 | safer-buffer ">= 2.1.2 < 3" 1196 | 1197 | ignore-walk@^3.0.1: 1198 | version "3.0.1" 1199 | resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" 1200 | dependencies: 1201 | minimatch "^3.0.4" 1202 | 1203 | import-local@^1.0.0: 1204 | version "1.0.0" 1205 | resolved "https://registry.yarnpkg.com/import-local/-/import-local-1.0.0.tgz#5e4ffdc03f4fe6c009c6729beb29631c2f8227bc" 1206 | dependencies: 1207 | pkg-dir "^2.0.0" 1208 | resolve-cwd "^2.0.0" 1209 | 1210 | imurmurhash@^0.1.4: 1211 | version "0.1.4" 1212 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1213 | 1214 | inflight@^1.0.4: 1215 | version "1.0.6" 1216 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1217 | dependencies: 1218 | once "^1.3.0" 1219 | wrappy "1" 1220 | 1221 | inherits@2, inherits@~2.0.3: 1222 | version "2.0.3" 1223 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1224 | 1225 | ini@~1.3.0: 1226 | version "1.3.5" 1227 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1228 | 1229 | invariant@^2.2.2: 1230 | version "2.2.4" 1231 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" 1232 | dependencies: 1233 | loose-envify "^1.0.0" 1234 | 1235 | inversify@^4.10.0: 1236 | version "4.13.0" 1237 | resolved "https://registry.yarnpkg.com/inversify/-/inversify-4.13.0.tgz#0ab40570bfa4474b04d5b919bbab3a4f682a72f5" 1238 | 1239 | invert-kv@^1.0.0: 1240 | version "1.0.0" 1241 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1242 | 1243 | is-accessor-descriptor@^0.1.6: 1244 | version "0.1.6" 1245 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 1246 | dependencies: 1247 | kind-of "^3.0.2" 1248 | 1249 | is-accessor-descriptor@^1.0.0: 1250 | version "1.0.0" 1251 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 1252 | dependencies: 1253 | kind-of "^6.0.0" 1254 | 1255 | is-arrayish@^0.2.1: 1256 | version "0.2.1" 1257 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1258 | 1259 | is-buffer@^1.1.5: 1260 | version "1.1.6" 1261 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1262 | 1263 | is-builtin-module@^1.0.0: 1264 | version "1.0.0" 1265 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1266 | dependencies: 1267 | builtin-modules "^1.0.0" 1268 | 1269 | is-callable@^1.1.1, is-callable@^1.1.3: 1270 | version "1.1.3" 1271 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 1272 | 1273 | is-ci@^1.0.10: 1274 | version "1.1.0" 1275 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.1.0.tgz#247e4162e7860cebbdaf30b774d6b0ac7dcfe7a5" 1276 | dependencies: 1277 | ci-info "^1.0.0" 1278 | 1279 | is-core-module@^2.2.0: 1280 | version "2.5.0" 1281 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.5.0.tgz#f754843617c70bfd29b7bd87327400cda5c18491" 1282 | dependencies: 1283 | has "^1.0.3" 1284 | 1285 | is-data-descriptor@^0.1.4: 1286 | version "0.1.4" 1287 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 1288 | dependencies: 1289 | kind-of "^3.0.2" 1290 | 1291 | is-data-descriptor@^1.0.0: 1292 | version "1.0.0" 1293 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 1294 | dependencies: 1295 | kind-of "^6.0.0" 1296 | 1297 | is-date-object@^1.0.1: 1298 | version "1.0.1" 1299 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 1300 | 1301 | is-descriptor@^0.1.0: 1302 | version "0.1.6" 1303 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 1304 | dependencies: 1305 | is-accessor-descriptor "^0.1.6" 1306 | is-data-descriptor "^0.1.4" 1307 | kind-of "^5.0.0" 1308 | 1309 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 1310 | version "1.0.2" 1311 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 1312 | dependencies: 1313 | is-accessor-descriptor "^1.0.0" 1314 | is-data-descriptor "^1.0.0" 1315 | kind-of "^6.0.2" 1316 | 1317 | is-dotfile@^1.0.0: 1318 | version "1.0.3" 1319 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1320 | 1321 | is-equal-shallow@^0.1.3: 1322 | version "0.1.3" 1323 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1324 | dependencies: 1325 | is-primitive "^2.0.0" 1326 | 1327 | is-extendable@^0.1.0, is-extendable@^0.1.1: 1328 | version "0.1.1" 1329 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1330 | 1331 | is-extendable@^1.0.1: 1332 | version "1.0.1" 1333 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 1334 | dependencies: 1335 | is-plain-object "^2.0.4" 1336 | 1337 | is-extglob@^1.0.0: 1338 | version "1.0.0" 1339 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1340 | 1341 | is-finite@^1.0.0: 1342 | version "1.0.2" 1343 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1344 | dependencies: 1345 | number-is-nan "^1.0.0" 1346 | 1347 | is-fullwidth-code-point@^1.0.0: 1348 | version "1.0.0" 1349 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1350 | dependencies: 1351 | number-is-nan "^1.0.0" 1352 | 1353 | is-fullwidth-code-point@^2.0.0: 1354 | version "2.0.0" 1355 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1356 | 1357 | is-generator-fn@^1.0.0: 1358 | version "1.0.0" 1359 | resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-1.0.0.tgz#969d49e1bb3329f6bb7f09089be26578b2ddd46a" 1360 | 1361 | is-glob@^2.0.0, is-glob@^2.0.1: 1362 | version "2.0.1" 1363 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1364 | dependencies: 1365 | is-extglob "^1.0.0" 1366 | 1367 | is-number@^2.1.0: 1368 | version "2.1.0" 1369 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1370 | dependencies: 1371 | kind-of "^3.0.2" 1372 | 1373 | is-number@^3.0.0: 1374 | version "3.0.0" 1375 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1376 | dependencies: 1377 | kind-of "^3.0.2" 1378 | 1379 | is-number@^4.0.0: 1380 | version "4.0.0" 1381 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" 1382 | 1383 | is-odd@^2.0.0: 1384 | version "2.0.0" 1385 | resolved "https://registry.yarnpkg.com/is-odd/-/is-odd-2.0.0.tgz#7646624671fd7ea558ccd9a2795182f2958f1b24" 1386 | dependencies: 1387 | is-number "^4.0.0" 1388 | 1389 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: 1390 | version "2.0.4" 1391 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 1392 | dependencies: 1393 | isobject "^3.0.1" 1394 | 1395 | is-posix-bracket@^0.1.0: 1396 | version "0.1.1" 1397 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1398 | 1399 | is-primitive@^2.0.0: 1400 | version "2.0.0" 1401 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1402 | 1403 | is-regex@^1.0.4: 1404 | version "1.0.4" 1405 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 1406 | dependencies: 1407 | has "^1.0.1" 1408 | 1409 | is-stream@^1.1.0: 1410 | version "1.1.0" 1411 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1412 | 1413 | is-symbol@^1.0.1: 1414 | version "1.0.1" 1415 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 1416 | 1417 | is-typedarray@~1.0.0: 1418 | version "1.0.0" 1419 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1420 | 1421 | is-utf8@^0.2.0: 1422 | version "0.2.1" 1423 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1424 | 1425 | is-windows@^1.0.2: 1426 | version "1.0.2" 1427 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 1428 | 1429 | isarray@0.0.1: 1430 | version "0.0.1" 1431 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 1432 | 1433 | isarray@1.0.0, isarray@~1.0.0: 1434 | version "1.0.0" 1435 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1436 | 1437 | isexe@^2.0.0: 1438 | version "2.0.0" 1439 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1440 | 1441 | isobject@^2.0.0: 1442 | version "2.1.0" 1443 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1444 | dependencies: 1445 | isarray "1.0.0" 1446 | 1447 | isobject@^3.0.0, isobject@^3.0.1: 1448 | version "3.0.1" 1449 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 1450 | 1451 | isstream@~0.1.2: 1452 | version "0.1.2" 1453 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1454 | 1455 | istanbul-api@^1.3.1: 1456 | version "1.3.1" 1457 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.3.1.tgz#4c3b05d18c0016d1022e079b98dc82c40f488954" 1458 | dependencies: 1459 | async "^2.1.4" 1460 | compare-versions "^3.1.0" 1461 | fileset "^2.0.2" 1462 | istanbul-lib-coverage "^1.2.0" 1463 | istanbul-lib-hook "^1.2.0" 1464 | istanbul-lib-instrument "^1.10.1" 1465 | istanbul-lib-report "^1.1.4" 1466 | istanbul-lib-source-maps "^1.2.4" 1467 | istanbul-reports "^1.3.0" 1468 | js-yaml "^3.7.0" 1469 | mkdirp "^0.5.1" 1470 | once "^1.4.0" 1471 | 1472 | istanbul-lib-coverage@^1.2.0: 1473 | version "1.2.0" 1474 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.2.0.tgz#f7d8f2e42b97e37fe796114cb0f9d68b5e3a4341" 1475 | 1476 | istanbul-lib-hook@^1.2.0: 1477 | version "1.2.0" 1478 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.2.0.tgz#ae556fd5a41a6e8efa0b1002b1e416dfeaf9816c" 1479 | dependencies: 1480 | append-transform "^0.4.0" 1481 | 1482 | istanbul-lib-instrument@^1.10.1: 1483 | version "1.10.1" 1484 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.10.1.tgz#724b4b6caceba8692d3f1f9d0727e279c401af7b" 1485 | dependencies: 1486 | babel-generator "^6.18.0" 1487 | babel-template "^6.16.0" 1488 | babel-traverse "^6.18.0" 1489 | babel-types "^6.18.0" 1490 | babylon "^6.18.0" 1491 | istanbul-lib-coverage "^1.2.0" 1492 | semver "^5.3.0" 1493 | 1494 | istanbul-lib-report@^1.1.4: 1495 | version "1.1.4" 1496 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.4.tgz#e886cdf505c4ebbd8e099e4396a90d0a28e2acb5" 1497 | dependencies: 1498 | istanbul-lib-coverage "^1.2.0" 1499 | mkdirp "^0.5.1" 1500 | path-parse "^1.0.5" 1501 | supports-color "^3.1.2" 1502 | 1503 | istanbul-lib-source-maps@^1.2.4: 1504 | version "1.2.4" 1505 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.4.tgz#cc7ccad61629f4efff8e2f78adb8c522c9976ec7" 1506 | dependencies: 1507 | debug "^3.1.0" 1508 | istanbul-lib-coverage "^1.2.0" 1509 | mkdirp "^0.5.1" 1510 | rimraf "^2.6.1" 1511 | source-map "^0.5.3" 1512 | 1513 | istanbul-reports@^1.3.0: 1514 | version "1.3.0" 1515 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.3.0.tgz#2f322e81e1d9520767597dca3c20a0cce89a3554" 1516 | dependencies: 1517 | handlebars "^4.0.3" 1518 | 1519 | jest-changed-files@^22.2.0: 1520 | version "22.4.3" 1521 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-22.4.3.tgz#8882181e022c38bd46a2e4d18d44d19d90a90fb2" 1522 | dependencies: 1523 | throat "^4.0.0" 1524 | 1525 | jest-cli@^23.0.0: 1526 | version "23.0.0" 1527 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-23.0.0.tgz#29287498c9d844dcda5aaf011a4c82f9a888836e" 1528 | dependencies: 1529 | ansi-escapes "^3.0.0" 1530 | chalk "^2.0.1" 1531 | exit "^0.1.2" 1532 | glob "^7.1.2" 1533 | graceful-fs "^4.1.11" 1534 | import-local "^1.0.0" 1535 | is-ci "^1.0.10" 1536 | istanbul-api "^1.3.1" 1537 | istanbul-lib-coverage "^1.2.0" 1538 | istanbul-lib-instrument "^1.10.1" 1539 | istanbul-lib-source-maps "^1.2.4" 1540 | jest-changed-files "^22.2.0" 1541 | jest-config "^23.0.0" 1542 | jest-environment-jsdom "^23.0.0" 1543 | jest-get-type "^22.1.0" 1544 | jest-haste-map "^23.0.0" 1545 | jest-message-util "^23.0.0" 1546 | jest-regex-util "^23.0.0" 1547 | jest-resolve-dependencies "^23.0.0" 1548 | jest-runner "^23.0.0" 1549 | jest-runtime "^23.0.0" 1550 | jest-snapshot "^23.0.0" 1551 | jest-util "^23.0.0" 1552 | jest-validate "^23.0.0" 1553 | jest-worker "^23.0.0" 1554 | micromatch "^2.3.11" 1555 | node-notifier "^5.2.1" 1556 | realpath-native "^1.0.0" 1557 | rimraf "^2.5.4" 1558 | slash "^1.0.0" 1559 | string-length "^2.0.0" 1560 | strip-ansi "^4.0.0" 1561 | which "^1.2.12" 1562 | yargs "^11.0.0" 1563 | 1564 | jest-config@^23.0.0: 1565 | version "23.0.0" 1566 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-23.0.0.tgz#9444d858873ad567376f8cfe139fd8828e8d494b" 1567 | dependencies: 1568 | babel-core "^6.0.0" 1569 | babel-jest "^23.0.0" 1570 | chalk "^2.0.1" 1571 | glob "^7.1.1" 1572 | jest-environment-jsdom "^23.0.0" 1573 | jest-environment-node "^23.0.0" 1574 | jest-get-type "^22.1.0" 1575 | jest-jasmine2 "^23.0.0" 1576 | jest-regex-util "^23.0.0" 1577 | jest-resolve "^23.0.0" 1578 | jest-util "^23.0.0" 1579 | jest-validate "^23.0.0" 1580 | pretty-format "^23.0.0" 1581 | 1582 | jest-diff@^23.0.0: 1583 | version "23.0.0" 1584 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-23.0.0.tgz#0a00b2157f518eec338121ccf8879c529269a88e" 1585 | dependencies: 1586 | chalk "^2.0.1" 1587 | diff "^3.2.0" 1588 | jest-get-type "^22.1.0" 1589 | pretty-format "^23.0.0" 1590 | 1591 | jest-docblock@^22.4.0: 1592 | version "22.4.3" 1593 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-22.4.3.tgz#50886f132b42b280c903c592373bb6e93bb68b19" 1594 | dependencies: 1595 | detect-newline "^2.1.0" 1596 | 1597 | jest-environment-jsdom@^23.0.0: 1598 | version "23.0.0" 1599 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-23.0.0.tgz#57b0f0dd263359a86d7952a4b712b3fabca1a625" 1600 | dependencies: 1601 | jest-mock "^23.0.0" 1602 | jest-util "^23.0.0" 1603 | jsdom "^11.5.1" 1604 | 1605 | jest-environment-node@^23.0.0: 1606 | version "23.0.0" 1607 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-23.0.0.tgz#ef93a414a612484cf585c8b32ccc5ae30ce6095c" 1608 | dependencies: 1609 | jest-mock "^23.0.0" 1610 | jest-util "^23.0.0" 1611 | 1612 | jest-get-type@^22.1.0: 1613 | version "22.4.3" 1614 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-22.4.3.tgz#e3a8504d8479342dd4420236b322869f18900ce4" 1615 | 1616 | jest-haste-map@^23.0.0: 1617 | version "23.0.0" 1618 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-23.0.0.tgz#09be1c9a37c16b2e2f25398864eb2806d309ca96" 1619 | dependencies: 1620 | fb-watchman "^2.0.0" 1621 | graceful-fs "^4.1.11" 1622 | jest-docblock "^22.4.0" 1623 | jest-serializer "^23.0.0" 1624 | jest-worker "^23.0.0" 1625 | micromatch "^2.3.11" 1626 | sane "^2.0.0" 1627 | 1628 | jest-jasmine2@^23.0.0: 1629 | version "23.0.0" 1630 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-23.0.0.tgz#ea26f87b5c223e1a70985032f0727d8f855e59df" 1631 | dependencies: 1632 | chalk "^2.0.1" 1633 | co "^4.6.0" 1634 | expect "^23.0.0" 1635 | is-generator-fn "^1.0.0" 1636 | jest-diff "^23.0.0" 1637 | jest-matcher-utils "^23.0.0" 1638 | jest-message-util "^23.0.0" 1639 | jest-snapshot "^23.0.0" 1640 | jest-util "^23.0.0" 1641 | pretty-format "^23.0.0" 1642 | 1643 | jest-leak-detector@^23.0.0: 1644 | version "23.0.0" 1645 | resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-23.0.0.tgz#ec93d755b21e8b2c4c4e59b8cccab1805a704ab3" 1646 | dependencies: 1647 | pretty-format "^23.0.0" 1648 | 1649 | jest-localstorage-mock@^2.2.0: 1650 | version "2.2.0" 1651 | resolved "https://registry.yarnpkg.com/jest-localstorage-mock/-/jest-localstorage-mock-2.2.0.tgz#ce9a9de01dfdde2ad8aa08adf73acc7e5cc394cf" 1652 | 1653 | jest-matcher-utils@^23.0.0: 1654 | version "23.0.0" 1655 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-23.0.0.tgz#ca2168fe5a7a416c0d7f2916e969e89dcce9d92a" 1656 | dependencies: 1657 | chalk "^2.0.1" 1658 | jest-get-type "^22.1.0" 1659 | pretty-format "^23.0.0" 1660 | 1661 | jest-message-util@^23.0.0: 1662 | version "23.0.0" 1663 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-23.0.0.tgz#073f3d76c701f7c718a4b9af1eb7f138792c4796" 1664 | dependencies: 1665 | "@babel/code-frame" "^7.0.0-beta.35" 1666 | chalk "^2.0.1" 1667 | micromatch "^2.3.11" 1668 | slash "^1.0.0" 1669 | stack-utils "^1.0.1" 1670 | 1671 | jest-mock@^23.0.0: 1672 | version "23.0.0" 1673 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-23.0.0.tgz#d9d897a1b74dc05c66a737213931496215897dd8" 1674 | 1675 | jest-regex-util@^23.0.0: 1676 | version "23.0.0" 1677 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-23.0.0.tgz#dd5c1fde0c46f4371314cf10f7a751a23f4e8f76" 1678 | 1679 | jest-resolve-dependencies@^23.0.0: 1680 | version "23.0.0" 1681 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-23.0.0.tgz#c3e1cfee0e543dee10e6ec0628df69cd239244c9" 1682 | dependencies: 1683 | jest-regex-util "^23.0.0" 1684 | jest-snapshot "^23.0.0" 1685 | 1686 | jest-resolve@^23.0.0: 1687 | version "23.0.0" 1688 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-23.0.0.tgz#f04362fd0531b4546399df76c55c3214a9f45e02" 1689 | dependencies: 1690 | browser-resolve "^1.11.2" 1691 | chalk "^2.0.1" 1692 | realpath-native "^1.0.0" 1693 | 1694 | jest-runner@^23.0.0: 1695 | version "23.0.0" 1696 | resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-23.0.0.tgz#b198a2dd78d57a2c0f3f8d7c7f97b62673922020" 1697 | dependencies: 1698 | exit "^0.1.2" 1699 | graceful-fs "^4.1.11" 1700 | jest-config "^23.0.0" 1701 | jest-docblock "^22.4.0" 1702 | jest-haste-map "^23.0.0" 1703 | jest-jasmine2 "^23.0.0" 1704 | jest-leak-detector "^23.0.0" 1705 | jest-message-util "^23.0.0" 1706 | jest-runtime "^23.0.0" 1707 | jest-util "^23.0.0" 1708 | jest-worker "^23.0.0" 1709 | source-map-support "^0.5.6" 1710 | throat "^4.0.0" 1711 | 1712 | jest-runtime@^23.0.0: 1713 | version "23.0.0" 1714 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-23.0.0.tgz#8619227fe2e01603d542b9101dd3e64ef4593f66" 1715 | dependencies: 1716 | babel-core "^6.0.0" 1717 | babel-plugin-istanbul "^4.1.6" 1718 | chalk "^2.0.1" 1719 | convert-source-map "^1.4.0" 1720 | exit "^0.1.2" 1721 | graceful-fs "^4.1.11" 1722 | jest-config "^23.0.0" 1723 | jest-haste-map "^23.0.0" 1724 | jest-message-util "^23.0.0" 1725 | jest-regex-util "^23.0.0" 1726 | jest-resolve "^23.0.0" 1727 | jest-snapshot "^23.0.0" 1728 | jest-util "^23.0.0" 1729 | jest-validate "^23.0.0" 1730 | json-stable-stringify "^1.0.1" 1731 | micromatch "^2.3.11" 1732 | realpath-native "^1.0.0" 1733 | slash "^1.0.0" 1734 | strip-bom "3.0.0" 1735 | write-file-atomic "^2.1.0" 1736 | yargs "^11.0.0" 1737 | 1738 | jest-serializer@^23.0.0: 1739 | version "23.0.0" 1740 | resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-23.0.0.tgz#263411ac92e1e3dde243858642bb04e8a986e8ca" 1741 | 1742 | jest-snapshot@^23.0.0: 1743 | version "23.0.0" 1744 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-23.0.0.tgz#49cdb92a69b9999dbf92e0634d5ba1e8a8586803" 1745 | dependencies: 1746 | chalk "^2.0.1" 1747 | jest-diff "^23.0.0" 1748 | jest-matcher-utils "^23.0.0" 1749 | mkdirp "^0.5.1" 1750 | natural-compare "^1.4.0" 1751 | pretty-format "^23.0.0" 1752 | 1753 | jest-util@^23.0.0: 1754 | version "23.0.0" 1755 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-23.0.0.tgz#86386800ffbe3fe17a06320e0cf9ca9b7868263b" 1756 | dependencies: 1757 | callsites "^2.0.0" 1758 | chalk "^2.0.1" 1759 | graceful-fs "^4.1.11" 1760 | is-ci "^1.0.10" 1761 | jest-message-util "^23.0.0" 1762 | mkdirp "^0.5.1" 1763 | source-map "^0.6.0" 1764 | 1765 | jest-validate@^23.0.0: 1766 | version "23.0.0" 1767 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-23.0.0.tgz#f88bc897b6cc376979aff0262d1025df1302d520" 1768 | dependencies: 1769 | chalk "^2.0.1" 1770 | jest-get-type "^22.1.0" 1771 | leven "^2.1.0" 1772 | pretty-format "^23.0.0" 1773 | 1774 | jest-worker@^23.0.0: 1775 | version "23.0.0" 1776 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-23.0.0.tgz#e6b1378b81f8e6a108f3be33a1faa830c22ea450" 1777 | dependencies: 1778 | merge-stream "^1.0.1" 1779 | 1780 | jest@^23.0.0: 1781 | version "23.0.0" 1782 | resolved "https://registry.yarnpkg.com/jest/-/jest-23.0.0.tgz#9282980309f5cde27aadc59ae583f1117c0e4430" 1783 | dependencies: 1784 | import-local "^1.0.0" 1785 | jest-cli "^23.0.0" 1786 | 1787 | js-tokens@^3.0.0, js-tokens@^3.0.2: 1788 | version "3.0.2" 1789 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1790 | 1791 | js-yaml@^3.7.0: 1792 | version "3.11.0" 1793 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.11.0.tgz#597c1a8bd57152f26d622ce4117851a51f5ebaef" 1794 | dependencies: 1795 | argparse "^1.0.7" 1796 | esprima "^4.0.0" 1797 | 1798 | jsbn@~0.1.0: 1799 | version "0.1.1" 1800 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1801 | 1802 | jsdom@^11.5.1: 1803 | version "11.11.0" 1804 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-11.11.0.tgz#df486efad41aee96c59ad7a190e2449c7eb1110e" 1805 | dependencies: 1806 | abab "^1.0.4" 1807 | acorn "^5.3.0" 1808 | acorn-globals "^4.1.0" 1809 | array-equal "^1.0.0" 1810 | cssom ">= 0.3.2 < 0.4.0" 1811 | cssstyle ">= 0.3.1 < 0.4.0" 1812 | data-urls "^1.0.0" 1813 | domexception "^1.0.0" 1814 | escodegen "^1.9.0" 1815 | html-encoding-sniffer "^1.0.2" 1816 | left-pad "^1.2.0" 1817 | nwsapi "^2.0.0" 1818 | parse5 "4.0.0" 1819 | pn "^1.1.0" 1820 | request "^2.83.0" 1821 | request-promise-native "^1.0.5" 1822 | sax "^1.2.4" 1823 | symbol-tree "^3.2.2" 1824 | tough-cookie "^2.3.3" 1825 | w3c-hr-time "^1.0.1" 1826 | webidl-conversions "^4.0.2" 1827 | whatwg-encoding "^1.0.3" 1828 | whatwg-mimetype "^2.1.0" 1829 | whatwg-url "^6.4.1" 1830 | ws "^4.0.0" 1831 | xml-name-validator "^3.0.0" 1832 | 1833 | jsesc@^1.3.0: 1834 | version "1.3.0" 1835 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1836 | 1837 | json-schema-traverse@^0.3.0: 1838 | version "0.3.1" 1839 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 1840 | 1841 | json-schema@0.2.3: 1842 | version "0.2.3" 1843 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1844 | 1845 | json-stable-stringify@^1.0.1: 1846 | version "1.0.1" 1847 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1848 | dependencies: 1849 | jsonify "~0.0.0" 1850 | 1851 | json-stringify-safe@~5.0.1: 1852 | version "5.0.1" 1853 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1854 | 1855 | json5@2.x: 1856 | version "2.2.0" 1857 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3" 1858 | dependencies: 1859 | minimist "^1.2.5" 1860 | 1861 | json5@^0.5.1: 1862 | version "0.5.1" 1863 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1864 | 1865 | jsonify@~0.0.0: 1866 | version "0.0.0" 1867 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1868 | 1869 | jsprim@^1.2.2: 1870 | version "1.4.1" 1871 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1872 | dependencies: 1873 | assert-plus "1.0.0" 1874 | extsprintf "1.3.0" 1875 | json-schema "0.2.3" 1876 | verror "1.10.0" 1877 | 1878 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 1879 | version "3.2.2" 1880 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1881 | dependencies: 1882 | is-buffer "^1.1.5" 1883 | 1884 | kind-of@^4.0.0: 1885 | version "4.0.0" 1886 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1887 | dependencies: 1888 | is-buffer "^1.1.5" 1889 | 1890 | kind-of@^5.0.0: 1891 | version "5.1.0" 1892 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 1893 | 1894 | kind-of@^6.0.0, kind-of@^6.0.2: 1895 | version "6.0.2" 1896 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 1897 | 1898 | lazy-cache@^1.0.3: 1899 | version "1.0.4" 1900 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1901 | 1902 | lcid@^1.0.0: 1903 | version "1.0.0" 1904 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1905 | dependencies: 1906 | invert-kv "^1.0.0" 1907 | 1908 | left-pad@^1.2.0: 1909 | version "1.3.0" 1910 | resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.3.0.tgz#5b8a3a7765dfe001261dde915589e782f8c94d1e" 1911 | 1912 | leven@^2.1.0: 1913 | version "2.1.0" 1914 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 1915 | 1916 | levn@~0.3.0: 1917 | version "0.3.0" 1918 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1919 | dependencies: 1920 | prelude-ls "~1.1.2" 1921 | type-check "~0.3.2" 1922 | 1923 | load-json-file@^1.0.0: 1924 | version "1.1.0" 1925 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1926 | dependencies: 1927 | graceful-fs "^4.1.2" 1928 | parse-json "^2.2.0" 1929 | pify "^2.0.0" 1930 | pinkie-promise "^2.0.0" 1931 | strip-bom "^2.0.0" 1932 | 1933 | locate-path@^2.0.0: 1934 | version "2.0.0" 1935 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1936 | dependencies: 1937 | p-locate "^2.0.0" 1938 | path-exists "^3.0.0" 1939 | 1940 | lodash.sortby@^4.7.0: 1941 | version "4.7.0" 1942 | resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" 1943 | 1944 | lodash@^4.13.1, lodash@^4.17.10, lodash@^4.17.4: 1945 | version "4.17.10" 1946 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7" 1947 | 1948 | longest@^1.0.1: 1949 | version "1.0.1" 1950 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 1951 | 1952 | loose-envify@^1.0.0: 1953 | version "1.3.1" 1954 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1955 | dependencies: 1956 | js-tokens "^3.0.0" 1957 | 1958 | lru-cache@^4.0.1: 1959 | version "4.1.3" 1960 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.3.tgz#a1175cf3496dfc8436c156c334b4955992bce69c" 1961 | dependencies: 1962 | pseudomap "^1.0.2" 1963 | yallist "^2.1.2" 1964 | 1965 | make-error@1.x: 1966 | version "1.3.6" 1967 | resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" 1968 | 1969 | makeerror@1.0.x: 1970 | version "1.0.11" 1971 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 1972 | dependencies: 1973 | tmpl "1.0.x" 1974 | 1975 | map-cache@^0.2.2: 1976 | version "0.2.2" 1977 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 1978 | 1979 | map-visit@^1.0.0: 1980 | version "1.0.0" 1981 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 1982 | dependencies: 1983 | object-visit "^1.0.0" 1984 | 1985 | math-random@^1.0.1: 1986 | version "1.0.1" 1987 | resolved "https://registry.yarnpkg.com/math-random/-/math-random-1.0.1.tgz#8b3aac588b8a66e4975e3cdea67f7bb329601fac" 1988 | 1989 | mem@^1.1.0: 1990 | version "1.1.0" 1991 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 1992 | dependencies: 1993 | mimic-fn "^1.0.0" 1994 | 1995 | merge-stream@^1.0.1: 1996 | version "1.0.1" 1997 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1" 1998 | dependencies: 1999 | readable-stream "^2.0.1" 2000 | 2001 | merge@^1.1.3: 2002 | version "1.2.0" 2003 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 2004 | 2005 | micromatch@^2.3.11: 2006 | version "2.3.11" 2007 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2008 | dependencies: 2009 | arr-diff "^2.0.0" 2010 | array-unique "^0.2.1" 2011 | braces "^1.8.2" 2012 | expand-brackets "^0.1.4" 2013 | extglob "^0.3.1" 2014 | filename-regex "^2.0.0" 2015 | is-extglob "^1.0.0" 2016 | is-glob "^2.0.1" 2017 | kind-of "^3.0.2" 2018 | normalize-path "^2.0.1" 2019 | object.omit "^2.0.0" 2020 | parse-glob "^3.0.4" 2021 | regex-cache "^0.4.2" 2022 | 2023 | micromatch@^3.1.4, micromatch@^3.1.8: 2024 | version "3.1.10" 2025 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 2026 | dependencies: 2027 | arr-diff "^4.0.0" 2028 | array-unique "^0.3.2" 2029 | braces "^2.3.1" 2030 | define-property "^2.0.2" 2031 | extend-shallow "^3.0.2" 2032 | extglob "^2.0.4" 2033 | fragment-cache "^0.2.1" 2034 | kind-of "^6.0.2" 2035 | nanomatch "^1.2.9" 2036 | object.pick "^1.3.0" 2037 | regex-not "^1.0.0" 2038 | snapdragon "^0.8.1" 2039 | to-regex "^3.0.2" 2040 | 2041 | mime-db@~1.33.0: 2042 | version "1.33.0" 2043 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.33.0.tgz#a3492050a5cb9b63450541e39d9788d2272783db" 2044 | 2045 | mime-types@^2.1.12, mime-types@~2.1.17: 2046 | version "2.1.18" 2047 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.18.tgz#6f323f60a83d11146f831ff11fd66e2fe5503bb8" 2048 | dependencies: 2049 | mime-db "~1.33.0" 2050 | 2051 | mimic-fn@^1.0.0: 2052 | version "1.2.0" 2053 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 2054 | 2055 | minimatch@^3.0.3, minimatch@^3.0.4: 2056 | version "3.0.4" 2057 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2058 | dependencies: 2059 | brace-expansion "^1.1.7" 2060 | 2061 | minimist@^1.1.1, minimist@^1.2.0: 2062 | version "1.2.0" 2063 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2064 | 2065 | minimist@^1.2.5: 2066 | version "1.2.5" 2067 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 2068 | 2069 | minimist@~0.0.1: 2070 | version "0.0.10" 2071 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 2072 | 2073 | minipass@^2.6.0, minipass@^2.8.6, minipass@^2.9.0: 2074 | version "2.9.0" 2075 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.9.0.tgz#e713762e7d3e32fed803115cf93e04bca9fcc9a6" 2076 | dependencies: 2077 | safe-buffer "^5.1.2" 2078 | yallist "^3.0.0" 2079 | 2080 | minizlib@^1.2.1: 2081 | version "1.3.3" 2082 | resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.3.3.tgz#2290de96818a34c29551c8a8d301216bd65a861d" 2083 | dependencies: 2084 | minipass "^2.9.0" 2085 | 2086 | mixin-deep@^1.2.0: 2087 | version "1.3.1" 2088 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe" 2089 | dependencies: 2090 | for-in "^1.0.2" 2091 | is-extendable "^1.0.1" 2092 | 2093 | mkdirp@0.x, mkdirp@^0.5.0, mkdirp@^0.5.1: 2094 | version "0.5.5" 2095 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" 2096 | dependencies: 2097 | minimist "^1.2.5" 2098 | 2099 | ms@2.0.0: 2100 | version "2.0.0" 2101 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2102 | 2103 | nan@^2.9.2: 2104 | version "2.10.0" 2105 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.10.0.tgz#96d0cd610ebd58d4b4de9cc0c6828cda99c7548f" 2106 | 2107 | nanomatch@^1.2.9: 2108 | version "1.2.9" 2109 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.9.tgz#879f7150cb2dab7a471259066c104eee6e0fa7c2" 2110 | dependencies: 2111 | arr-diff "^4.0.0" 2112 | array-unique "^0.3.2" 2113 | define-property "^2.0.2" 2114 | extend-shallow "^3.0.2" 2115 | fragment-cache "^0.2.1" 2116 | is-odd "^2.0.0" 2117 | is-windows "^1.0.2" 2118 | kind-of "^6.0.2" 2119 | object.pick "^1.3.0" 2120 | regex-not "^1.0.0" 2121 | snapdragon "^0.8.1" 2122 | to-regex "^3.0.1" 2123 | 2124 | natural-compare@^1.4.0: 2125 | version "1.4.0" 2126 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2127 | 2128 | needle@^2.2.0: 2129 | version "2.2.1" 2130 | resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.1.tgz#b5e325bd3aae8c2678902fa296f729455d1d3a7d" 2131 | dependencies: 2132 | debug "^2.1.2" 2133 | iconv-lite "^0.4.4" 2134 | sax "^1.2.4" 2135 | 2136 | node-int64@^0.4.0: 2137 | version "0.4.0" 2138 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2139 | 2140 | node-notifier@^5.2.1: 2141 | version "5.2.1" 2142 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.2.1.tgz#fa313dd08f5517db0e2502e5758d664ac69f9dea" 2143 | dependencies: 2144 | growly "^1.3.0" 2145 | semver "^5.4.1" 2146 | shellwords "^0.1.1" 2147 | which "^1.3.0" 2148 | 2149 | node-pre-gyp@^0.10.0: 2150 | version "0.10.0" 2151 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.10.0.tgz#6e4ef5bb5c5203c6552448828c852c40111aac46" 2152 | dependencies: 2153 | detect-libc "^1.0.2" 2154 | mkdirp "^0.5.1" 2155 | needle "^2.2.0" 2156 | nopt "^4.0.1" 2157 | npm-packlist "^1.1.6" 2158 | npmlog "^4.0.2" 2159 | rc "^1.1.7" 2160 | rimraf "^2.6.1" 2161 | semver "^5.3.0" 2162 | tar "^4" 2163 | 2164 | nopt@^4.0.1: 2165 | version "4.0.1" 2166 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2167 | dependencies: 2168 | abbrev "1" 2169 | osenv "^0.1.4" 2170 | 2171 | normalize-package-data@^2.3.2: 2172 | version "2.4.0" 2173 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 2174 | dependencies: 2175 | hosted-git-info "^2.1.4" 2176 | is-builtin-module "^1.0.0" 2177 | semver "2 || 3 || 4 || 5" 2178 | validate-npm-package-license "^3.0.1" 2179 | 2180 | normalize-path@^2.0.1, normalize-path@^2.1.1: 2181 | version "2.1.1" 2182 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2183 | dependencies: 2184 | remove-trailing-separator "^1.0.1" 2185 | 2186 | npm-bundled@^1.0.1: 2187 | version "1.0.3" 2188 | resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.3.tgz#7e71703d973af3370a9591bafe3a63aca0be2308" 2189 | 2190 | npm-packlist@^1.1.6: 2191 | version "1.1.10" 2192 | resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.1.10.tgz#1039db9e985727e464df066f4cf0ab6ef85c398a" 2193 | dependencies: 2194 | ignore-walk "^3.0.1" 2195 | npm-bundled "^1.0.1" 2196 | 2197 | npm-run-path@^2.0.0: 2198 | version "2.0.2" 2199 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2200 | dependencies: 2201 | path-key "^2.0.0" 2202 | 2203 | npmlog@^4.0.2: 2204 | version "4.1.2" 2205 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2206 | dependencies: 2207 | are-we-there-yet "~1.1.2" 2208 | console-control-strings "~1.1.0" 2209 | gauge "~2.7.3" 2210 | set-blocking "~2.0.0" 2211 | 2212 | number-is-nan@^1.0.0: 2213 | version "1.0.1" 2214 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2215 | 2216 | nwsapi@^2.0.0: 2217 | version "2.0.0" 2218 | resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.0.0.tgz#7c8faf4ad501e1d17a651ebc5547f966b547c5c7" 2219 | 2220 | oauth-sign@~0.8.2: 2221 | version "0.8.2" 2222 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2223 | 2224 | object-assign@^4.1.0: 2225 | version "4.1.1" 2226 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2227 | 2228 | object-copy@^0.1.0: 2229 | version "0.1.0" 2230 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 2231 | dependencies: 2232 | copy-descriptor "^0.1.0" 2233 | define-property "^0.2.5" 2234 | kind-of "^3.0.3" 2235 | 2236 | object-keys@^1.0.8: 2237 | version "1.0.11" 2238 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 2239 | 2240 | object-visit@^1.0.0: 2241 | version "1.0.1" 2242 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 2243 | dependencies: 2244 | isobject "^3.0.0" 2245 | 2246 | object.getownpropertydescriptors@^2.0.3: 2247 | version "2.0.3" 2248 | resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16" 2249 | dependencies: 2250 | define-properties "^1.1.2" 2251 | es-abstract "^1.5.1" 2252 | 2253 | object.omit@^2.0.0: 2254 | version "2.0.1" 2255 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2256 | dependencies: 2257 | for-own "^0.1.4" 2258 | is-extendable "^0.1.1" 2259 | 2260 | object.pick@^1.3.0: 2261 | version "1.3.0" 2262 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 2263 | dependencies: 2264 | isobject "^3.0.1" 2265 | 2266 | once@^1.3.0, once@^1.4.0: 2267 | version "1.4.0" 2268 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2269 | dependencies: 2270 | wrappy "1" 2271 | 2272 | optimist@^0.6.1: 2273 | version "0.6.1" 2274 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2275 | dependencies: 2276 | minimist "~0.0.1" 2277 | wordwrap "~0.0.2" 2278 | 2279 | optionator@^0.8.1: 2280 | version "0.8.2" 2281 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2282 | dependencies: 2283 | deep-is "~0.1.3" 2284 | fast-levenshtein "~2.0.4" 2285 | levn "~0.3.0" 2286 | prelude-ls "~1.1.2" 2287 | type-check "~0.3.2" 2288 | wordwrap "~1.0.0" 2289 | 2290 | os-homedir@^1.0.0: 2291 | version "1.0.2" 2292 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2293 | 2294 | os-locale@^2.0.0: 2295 | version "2.1.0" 2296 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 2297 | dependencies: 2298 | execa "^0.7.0" 2299 | lcid "^1.0.0" 2300 | mem "^1.1.0" 2301 | 2302 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 2303 | version "1.0.2" 2304 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2305 | 2306 | osenv@^0.1.4: 2307 | version "0.1.5" 2308 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 2309 | dependencies: 2310 | os-homedir "^1.0.0" 2311 | os-tmpdir "^1.0.0" 2312 | 2313 | p-finally@^1.0.0: 2314 | version "1.0.0" 2315 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2316 | 2317 | p-limit@^1.1.0: 2318 | version "1.2.0" 2319 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.2.0.tgz#0e92b6bedcb59f022c13d0f1949dc82d15909f1c" 2320 | dependencies: 2321 | p-try "^1.0.0" 2322 | 2323 | p-locate@^2.0.0: 2324 | version "2.0.0" 2325 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2326 | dependencies: 2327 | p-limit "^1.1.0" 2328 | 2329 | p-try@^1.0.0: 2330 | version "1.0.0" 2331 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 2332 | 2333 | parceljs@^0.0.1: 2334 | version "0.0.1" 2335 | resolved "https://registry.yarnpkg.com/parceljs/-/parceljs-0.0.1.tgz#70c596613e365fd4cd380316566b72990e19f58e" 2336 | 2337 | parse-glob@^3.0.4: 2338 | version "3.0.4" 2339 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2340 | dependencies: 2341 | glob-base "^0.3.0" 2342 | is-dotfile "^1.0.0" 2343 | is-extglob "^1.0.0" 2344 | is-glob "^2.0.0" 2345 | 2346 | parse-json@^2.2.0: 2347 | version "2.2.0" 2348 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2349 | dependencies: 2350 | error-ex "^1.2.0" 2351 | 2352 | parse5@4.0.0: 2353 | version "4.0.0" 2354 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608" 2355 | 2356 | pascalcase@^0.1.1: 2357 | version "0.1.1" 2358 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 2359 | 2360 | path-exists@^2.0.0: 2361 | version "2.1.0" 2362 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2363 | dependencies: 2364 | pinkie-promise "^2.0.0" 2365 | 2366 | path-exists@^3.0.0: 2367 | version "3.0.0" 2368 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2369 | 2370 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 2371 | version "1.0.1" 2372 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2373 | 2374 | path-key@^2.0.0: 2375 | version "2.0.1" 2376 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2377 | 2378 | path-parse@^1.0.5: 2379 | version "1.0.5" 2380 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2381 | 2382 | path-parse@^1.0.6: 2383 | version "1.0.7" 2384 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 2385 | 2386 | path-type@^1.0.0: 2387 | version "1.1.0" 2388 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2389 | dependencies: 2390 | graceful-fs "^4.1.2" 2391 | pify "^2.0.0" 2392 | pinkie-promise "^2.0.0" 2393 | 2394 | performance-now@^2.1.0: 2395 | version "2.1.0" 2396 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 2397 | 2398 | pify@^2.0.0: 2399 | version "2.3.0" 2400 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2401 | 2402 | pinkie-promise@^2.0.0: 2403 | version "2.0.1" 2404 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2405 | dependencies: 2406 | pinkie "^2.0.0" 2407 | 2408 | pinkie@^2.0.0: 2409 | version "2.0.4" 2410 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2411 | 2412 | pkg-dir@^2.0.0: 2413 | version "2.0.0" 2414 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" 2415 | dependencies: 2416 | find-up "^2.1.0" 2417 | 2418 | pn@^1.1.0: 2419 | version "1.1.0" 2420 | resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb" 2421 | 2422 | posix-character-classes@^0.1.0: 2423 | version "0.1.1" 2424 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 2425 | 2426 | prelude-ls@~1.1.2: 2427 | version "1.1.2" 2428 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2429 | 2430 | preserve@^0.2.0: 2431 | version "0.2.0" 2432 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2433 | 2434 | pretty-format@^23.0.0: 2435 | version "23.0.0" 2436 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-23.0.0.tgz#b66dc584a0907b1969783c4c20e4d1180b18ac75" 2437 | dependencies: 2438 | ansi-regex "^3.0.0" 2439 | ansi-styles "^3.2.0" 2440 | 2441 | private@^0.1.8: 2442 | version "0.1.8" 2443 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 2444 | 2445 | process-nextick-args@~2.0.0: 2446 | version "2.0.0" 2447 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 2448 | 2449 | pseudomap@^1.0.2: 2450 | version "1.0.2" 2451 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2452 | 2453 | punycode@^1.4.1: 2454 | version "1.4.1" 2455 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2456 | 2457 | punycode@^2.1.0: 2458 | version "2.1.1" 2459 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 2460 | 2461 | qs@~6.5.1: 2462 | version "6.5.2" 2463 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" 2464 | 2465 | randomatic@^3.0.0: 2466 | version "3.0.0" 2467 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-3.0.0.tgz#d35490030eb4f7578de292ce6dfb04a91a128923" 2468 | dependencies: 2469 | is-number "^4.0.0" 2470 | kind-of "^6.0.0" 2471 | math-random "^1.0.1" 2472 | 2473 | rc@^1.1.7: 2474 | version "1.2.7" 2475 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.7.tgz#8a10ca30d588d00464360372b890d06dacd02297" 2476 | dependencies: 2477 | deep-extend "^0.5.1" 2478 | ini "~1.3.0" 2479 | minimist "^1.2.0" 2480 | strip-json-comments "~2.0.1" 2481 | 2482 | read-pkg-up@^1.0.1: 2483 | version "1.0.1" 2484 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2485 | dependencies: 2486 | find-up "^1.0.0" 2487 | read-pkg "^1.0.0" 2488 | 2489 | read-pkg@^1.0.0: 2490 | version "1.1.0" 2491 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2492 | dependencies: 2493 | load-json-file "^1.0.0" 2494 | normalize-package-data "^2.3.2" 2495 | path-type "^1.0.0" 2496 | 2497 | readable-stream@^2.0.1, readable-stream@^2.0.6: 2498 | version "2.3.6" 2499 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 2500 | dependencies: 2501 | core-util-is "~1.0.0" 2502 | inherits "~2.0.3" 2503 | isarray "~1.0.0" 2504 | process-nextick-args "~2.0.0" 2505 | safe-buffer "~5.1.1" 2506 | string_decoder "~1.1.1" 2507 | util-deprecate "~1.0.1" 2508 | 2509 | realpath-native@^1.0.0: 2510 | version "1.0.0" 2511 | resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.0.0.tgz#7885721a83b43bd5327609f0ddecb2482305fdf0" 2512 | dependencies: 2513 | util.promisify "^1.0.0" 2514 | 2515 | reflect-metadata@^0.1.12: 2516 | version "0.1.12" 2517 | resolved "https://registry.yarnpkg.com/reflect-metadata/-/reflect-metadata-0.1.12.tgz#311bf0c6b63cd782f228a81abe146a2bfa9c56f2" 2518 | 2519 | regenerator-runtime@^0.11.0: 2520 | version "0.11.1" 2521 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 2522 | 2523 | regex-cache@^0.4.2: 2524 | version "0.4.4" 2525 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 2526 | dependencies: 2527 | is-equal-shallow "^0.1.3" 2528 | 2529 | regex-not@^1.0.0, regex-not@^1.0.2: 2530 | version "1.0.2" 2531 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 2532 | dependencies: 2533 | extend-shallow "^3.0.2" 2534 | safe-regex "^1.1.0" 2535 | 2536 | remove-trailing-separator@^1.0.1: 2537 | version "1.1.0" 2538 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2539 | 2540 | repeat-element@^1.1.2: 2541 | version "1.1.2" 2542 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2543 | 2544 | repeat-string@^1.5.2, repeat-string@^1.6.1: 2545 | version "1.6.1" 2546 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2547 | 2548 | repeating@^2.0.0: 2549 | version "2.0.1" 2550 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2551 | dependencies: 2552 | is-finite "^1.0.0" 2553 | 2554 | request-promise-core@1.1.1: 2555 | version "1.1.1" 2556 | resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.1.tgz#3eee00b2c5aa83239cfb04c5700da36f81cd08b6" 2557 | dependencies: 2558 | lodash "^4.13.1" 2559 | 2560 | request-promise-native@^1.0.5: 2561 | version "1.0.5" 2562 | resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.5.tgz#5281770f68e0c9719e5163fd3fab482215f4fda5" 2563 | dependencies: 2564 | request-promise-core "1.1.1" 2565 | stealthy-require "^1.1.0" 2566 | tough-cookie ">=2.3.3" 2567 | 2568 | request@^2.83.0: 2569 | version "2.87.0" 2570 | resolved "https://registry.yarnpkg.com/request/-/request-2.87.0.tgz#32f00235cd08d482b4d0d68db93a829c0ed5756e" 2571 | dependencies: 2572 | aws-sign2 "~0.7.0" 2573 | aws4 "^1.6.0" 2574 | caseless "~0.12.0" 2575 | combined-stream "~1.0.5" 2576 | extend "~3.0.1" 2577 | forever-agent "~0.6.1" 2578 | form-data "~2.3.1" 2579 | har-validator "~5.0.3" 2580 | http-signature "~1.2.0" 2581 | is-typedarray "~1.0.0" 2582 | isstream "~0.1.2" 2583 | json-stringify-safe "~5.0.1" 2584 | mime-types "~2.1.17" 2585 | oauth-sign "~0.8.2" 2586 | performance-now "^2.1.0" 2587 | qs "~6.5.1" 2588 | safe-buffer "^5.1.1" 2589 | tough-cookie "~2.3.3" 2590 | tunnel-agent "^0.6.0" 2591 | uuid "^3.1.0" 2592 | 2593 | require-directory@^2.1.1: 2594 | version "2.1.1" 2595 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2596 | 2597 | require-main-filename@^1.0.1: 2598 | version "1.0.1" 2599 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2600 | 2601 | resolve-cwd@^2.0.0: 2602 | version "2.0.0" 2603 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a" 2604 | dependencies: 2605 | resolve-from "^3.0.0" 2606 | 2607 | resolve-from@^3.0.0: 2608 | version "3.0.0" 2609 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" 2610 | 2611 | resolve-url@^0.2.1: 2612 | version "0.2.1" 2613 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 2614 | 2615 | resolve@1.1.7: 2616 | version "1.1.7" 2617 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2618 | 2619 | resolve@1.x: 2620 | version "1.20.0" 2621 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975" 2622 | dependencies: 2623 | is-core-module "^2.2.0" 2624 | path-parse "^1.0.6" 2625 | 2626 | resolve@^1.3.2: 2627 | version "1.7.1" 2628 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.7.1.tgz#aadd656374fd298aee895bc026b8297418677fd3" 2629 | dependencies: 2630 | path-parse "^1.0.5" 2631 | 2632 | ret@~0.1.10: 2633 | version "0.1.15" 2634 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 2635 | 2636 | right-align@^0.1.1: 2637 | version "0.1.3" 2638 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2639 | dependencies: 2640 | align-text "^0.1.1" 2641 | 2642 | rimraf@^2.5.4, rimraf@^2.6.1: 2643 | version "2.6.2" 2644 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2645 | dependencies: 2646 | glob "^7.0.5" 2647 | 2648 | rsvp@^3.3.3: 2649 | version "3.6.2" 2650 | resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-3.6.2.tgz#2e96491599a96cde1b515d5674a8f7a91452926a" 2651 | 2652 | safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@^5.1.2: 2653 | version "5.2.1" 2654 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" 2655 | 2656 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2657 | version "5.1.2" 2658 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 2659 | 2660 | safe-regex@^1.1.0: 2661 | version "1.1.0" 2662 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 2663 | dependencies: 2664 | ret "~0.1.10" 2665 | 2666 | "safer-buffer@>= 2.1.2 < 3": 2667 | version "2.1.2" 2668 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 2669 | 2670 | sane@^2.0.0: 2671 | version "2.5.2" 2672 | resolved "https://registry.yarnpkg.com/sane/-/sane-2.5.2.tgz#b4dc1861c21b427e929507a3e751e2a2cb8ab3fa" 2673 | dependencies: 2674 | anymatch "^2.0.0" 2675 | capture-exit "^1.2.0" 2676 | exec-sh "^0.2.0" 2677 | fb-watchman "^2.0.0" 2678 | micromatch "^3.1.4" 2679 | minimist "^1.1.1" 2680 | walker "~1.0.5" 2681 | watch "~0.18.0" 2682 | optionalDependencies: 2683 | fsevents "^1.2.3" 2684 | 2685 | sax@^1.2.4: 2686 | version "1.2.4" 2687 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 2688 | 2689 | "semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1: 2690 | version "5.5.0" 2691 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 2692 | 2693 | semver@^5.5: 2694 | version "5.7.1" 2695 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 2696 | 2697 | set-blocking@^2.0.0, set-blocking@~2.0.0: 2698 | version "2.0.0" 2699 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2700 | 2701 | set-value@^0.4.3: 2702 | version "0.4.3" 2703 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" 2704 | dependencies: 2705 | extend-shallow "^2.0.1" 2706 | is-extendable "^0.1.1" 2707 | is-plain-object "^2.0.1" 2708 | to-object-path "^0.3.0" 2709 | 2710 | set-value@^2.0.0: 2711 | version "2.0.0" 2712 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" 2713 | dependencies: 2714 | extend-shallow "^2.0.1" 2715 | is-extendable "^0.1.1" 2716 | is-plain-object "^2.0.3" 2717 | split-string "^3.0.1" 2718 | 2719 | shebang-command@^1.2.0: 2720 | version "1.2.0" 2721 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2722 | dependencies: 2723 | shebang-regex "^1.0.0" 2724 | 2725 | shebang-regex@^1.0.0: 2726 | version "1.0.0" 2727 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2728 | 2729 | shellwords@^0.1.1: 2730 | version "0.1.1" 2731 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" 2732 | 2733 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2734 | version "3.0.2" 2735 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2736 | 2737 | slash@^1.0.0: 2738 | version "1.0.0" 2739 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2740 | 2741 | snapdragon-node@^2.0.1: 2742 | version "2.1.1" 2743 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 2744 | dependencies: 2745 | define-property "^1.0.0" 2746 | isobject "^3.0.0" 2747 | snapdragon-util "^3.0.1" 2748 | 2749 | snapdragon-util@^3.0.1: 2750 | version "3.0.1" 2751 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 2752 | dependencies: 2753 | kind-of "^3.2.0" 2754 | 2755 | snapdragon@^0.8.1: 2756 | version "0.8.2" 2757 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" 2758 | dependencies: 2759 | base "^0.11.1" 2760 | debug "^2.2.0" 2761 | define-property "^0.2.5" 2762 | extend-shallow "^2.0.1" 2763 | map-cache "^0.2.2" 2764 | source-map "^0.5.6" 2765 | source-map-resolve "^0.5.0" 2766 | use "^3.1.0" 2767 | 2768 | source-map-resolve@^0.5.0: 2769 | version "0.5.2" 2770 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" 2771 | dependencies: 2772 | atob "^2.1.1" 2773 | decode-uri-component "^0.2.0" 2774 | resolve-url "^0.2.1" 2775 | source-map-url "^0.4.0" 2776 | urix "^0.1.0" 2777 | 2778 | source-map-support@^0.4.15: 2779 | version "0.4.18" 2780 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 2781 | dependencies: 2782 | source-map "^0.5.6" 2783 | 2784 | source-map-support@^0.5.6: 2785 | version "0.5.6" 2786 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.6.tgz#4435cee46b1aab62b8e8610ce60f788091c51c13" 2787 | dependencies: 2788 | buffer-from "^1.0.0" 2789 | source-map "^0.6.0" 2790 | 2791 | source-map-url@^0.4.0: 2792 | version "0.4.0" 2793 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 2794 | 2795 | source-map@^0.4.4: 2796 | version "0.4.4" 2797 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 2798 | dependencies: 2799 | amdefine ">=0.0.4" 2800 | 2801 | source-map@^0.5.3, source-map@^0.5.6, source-map@^0.5.7, source-map@~0.5.1: 2802 | version "0.5.7" 2803 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2804 | 2805 | source-map@^0.6.0, source-map@~0.6.1: 2806 | version "0.6.1" 2807 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 2808 | 2809 | spdx-correct@^3.0.0: 2810 | version "3.0.0" 2811 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.0.0.tgz#05a5b4d7153a195bc92c3c425b69f3b2a9524c82" 2812 | dependencies: 2813 | spdx-expression-parse "^3.0.0" 2814 | spdx-license-ids "^3.0.0" 2815 | 2816 | spdx-exceptions@^2.1.0: 2817 | version "2.1.0" 2818 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.1.0.tgz#2c7ae61056c714a5b9b9b2b2af7d311ef5c78fe9" 2819 | 2820 | spdx-expression-parse@^3.0.0: 2821 | version "3.0.0" 2822 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" 2823 | dependencies: 2824 | spdx-exceptions "^2.1.0" 2825 | spdx-license-ids "^3.0.0" 2826 | 2827 | spdx-license-ids@^3.0.0: 2828 | version "3.0.0" 2829 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.0.tgz#7a7cd28470cc6d3a1cfe6d66886f6bc430d3ac87" 2830 | 2831 | split-string@^3.0.1, split-string@^3.0.2: 2832 | version "3.1.0" 2833 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 2834 | dependencies: 2835 | extend-shallow "^3.0.0" 2836 | 2837 | sprintf-js@~1.0.2: 2838 | version "1.0.3" 2839 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2840 | 2841 | sshpk@^1.7.0: 2842 | version "1.14.1" 2843 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.14.1.tgz#130f5975eddad963f1d56f92b9ac6c51fa9f83eb" 2844 | dependencies: 2845 | asn1 "~0.2.3" 2846 | assert-plus "^1.0.0" 2847 | dashdash "^1.12.0" 2848 | getpass "^0.1.1" 2849 | optionalDependencies: 2850 | bcrypt-pbkdf "^1.0.0" 2851 | ecc-jsbn "~0.1.1" 2852 | jsbn "~0.1.0" 2853 | tweetnacl "~0.14.0" 2854 | 2855 | stack-utils@^1.0.1: 2856 | version "1.0.1" 2857 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.1.tgz#d4f33ab54e8e38778b0ca5cfd3b3afb12db68620" 2858 | 2859 | static-extend@^0.1.1: 2860 | version "0.1.2" 2861 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 2862 | dependencies: 2863 | define-property "^0.2.5" 2864 | object-copy "^0.1.0" 2865 | 2866 | stealthy-require@^1.1.0: 2867 | version "1.1.1" 2868 | resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" 2869 | 2870 | string-length@^2.0.0: 2871 | version "2.0.0" 2872 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed" 2873 | dependencies: 2874 | astral-regex "^1.0.0" 2875 | strip-ansi "^4.0.0" 2876 | 2877 | string-width@^1.0.1: 2878 | version "1.0.2" 2879 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2880 | dependencies: 2881 | code-point-at "^1.0.0" 2882 | is-fullwidth-code-point "^1.0.0" 2883 | strip-ansi "^3.0.0" 2884 | 2885 | "string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.1: 2886 | version "2.1.1" 2887 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 2888 | dependencies: 2889 | is-fullwidth-code-point "^2.0.0" 2890 | strip-ansi "^4.0.0" 2891 | 2892 | string_decoder@~1.1.1: 2893 | version "1.1.1" 2894 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 2895 | dependencies: 2896 | safe-buffer "~5.1.0" 2897 | 2898 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2899 | version "3.0.1" 2900 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2901 | dependencies: 2902 | ansi-regex "^2.0.0" 2903 | 2904 | strip-ansi@^4.0.0: 2905 | version "4.0.0" 2906 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 2907 | dependencies: 2908 | ansi-regex "^3.0.0" 2909 | 2910 | strip-bom@3.0.0: 2911 | version "3.0.0" 2912 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2913 | 2914 | strip-bom@^2.0.0: 2915 | version "2.0.0" 2916 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2917 | dependencies: 2918 | is-utf8 "^0.2.0" 2919 | 2920 | strip-eof@^1.0.0: 2921 | version "1.0.0" 2922 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 2923 | 2924 | strip-json-comments@~2.0.1: 2925 | version "2.0.1" 2926 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2927 | 2928 | supports-color@^2.0.0: 2929 | version "2.0.0" 2930 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2931 | 2932 | supports-color@^3.1.2: 2933 | version "3.2.3" 2934 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 2935 | dependencies: 2936 | has-flag "^1.0.0" 2937 | 2938 | supports-color@^5.3.0: 2939 | version "5.4.0" 2940 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.4.0.tgz#1c6b337402c2137605efe19f10fec390f6faab54" 2941 | dependencies: 2942 | has-flag "^3.0.0" 2943 | 2944 | symbol-tree@^3.2.2: 2945 | version "3.2.2" 2946 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 2947 | 2948 | tar@^4: 2949 | version "4.4.15" 2950 | resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.15.tgz#3caced4f39ebd46ddda4d6203d48493a919697f8" 2951 | dependencies: 2952 | chownr "^1.1.1" 2953 | fs-minipass "^1.2.5" 2954 | minipass "^2.8.6" 2955 | minizlib "^1.2.1" 2956 | mkdirp "^0.5.0" 2957 | safe-buffer "^5.1.2" 2958 | yallist "^3.0.3" 2959 | 2960 | test-exclude@^4.2.1: 2961 | version "4.2.1" 2962 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.2.1.tgz#dfa222f03480bca69207ca728b37d74b45f724fa" 2963 | dependencies: 2964 | arrify "^1.0.1" 2965 | micromatch "^3.1.8" 2966 | object-assign "^4.1.0" 2967 | read-pkg-up "^1.0.1" 2968 | require-main-filename "^1.0.1" 2969 | 2970 | throat@^4.0.0: 2971 | version "4.1.0" 2972 | resolved "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a" 2973 | 2974 | tmpl@1.0.x: 2975 | version "1.0.4" 2976 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 2977 | 2978 | to-fast-properties@^1.0.3: 2979 | version "1.0.3" 2980 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 2981 | 2982 | to-object-path@^0.3.0: 2983 | version "0.3.0" 2984 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 2985 | dependencies: 2986 | kind-of "^3.0.2" 2987 | 2988 | to-regex-range@^2.1.0: 2989 | version "2.1.1" 2990 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 2991 | dependencies: 2992 | is-number "^3.0.0" 2993 | repeat-string "^1.6.1" 2994 | 2995 | to-regex@^3.0.1, to-regex@^3.0.2: 2996 | version "3.0.2" 2997 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 2998 | dependencies: 2999 | define-property "^2.0.2" 3000 | extend-shallow "^3.0.2" 3001 | regex-not "^1.0.2" 3002 | safe-regex "^1.1.0" 3003 | 3004 | tough-cookie@>=2.3.3, tough-cookie@^2.3.3, tough-cookie@~2.3.3: 3005 | version "2.3.4" 3006 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655" 3007 | dependencies: 3008 | punycode "^1.4.1" 3009 | 3010 | tr46@^1.0.1: 3011 | version "1.0.1" 3012 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" 3013 | dependencies: 3014 | punycode "^2.1.0" 3015 | 3016 | trim-right@^1.0.1: 3017 | version "1.0.1" 3018 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3019 | 3020 | ts-jest@^23.10.5: 3021 | version "23.10.5" 3022 | resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-23.10.5.tgz#cdb550df4466a30489bf70ba867615799f388dd5" 3023 | dependencies: 3024 | bs-logger "0.x" 3025 | buffer-from "1.x" 3026 | fast-json-stable-stringify "2.x" 3027 | json5 "2.x" 3028 | make-error "1.x" 3029 | mkdirp "0.x" 3030 | resolve "1.x" 3031 | semver "^5.5" 3032 | yargs-parser "10.x" 3033 | 3034 | tslib@1.9.0: 3035 | version "1.9.0" 3036 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.0.tgz#e37a86fda8cbbaf23a057f473c9f4dc64e5fc2e8" 3037 | 3038 | tslib@^1.7.1, tslib@^1.8.0, tslib@^1.8.1: 3039 | version "1.9.1" 3040 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.1.tgz#a5d1f0532a49221c87755cfcc89ca37197242ba7" 3041 | 3042 | tslint-config-aerian@^1.0.2: 3043 | version "1.0.2" 3044 | resolved "https://registry.yarnpkg.com/tslint-config-aerian/-/tslint-config-aerian-1.0.2.tgz#cf5d5452a7be2153967d81479939c49cb3e3698f" 3045 | dependencies: 3046 | tslint-config-prettier "^1.12.0" 3047 | tslint-consistent-codestyle "^1.13.0" 3048 | tslint-eslint-rules "^5.2.0" 3049 | tslint-react "^3.6.0" 3050 | 3051 | tslint-config-prettier@^1.12.0: 3052 | version "1.13.0" 3053 | resolved "https://registry.yarnpkg.com/tslint-config-prettier/-/tslint-config-prettier-1.13.0.tgz#189e821931ad89e0364e4e292d5c44a14e90ecd6" 3054 | 3055 | tslint-consistent-codestyle@^1.13.0: 3056 | version "1.13.0" 3057 | resolved "https://registry.yarnpkg.com/tslint-consistent-codestyle/-/tslint-consistent-codestyle-1.13.0.tgz#82abf230bf39e01159b4e9af721d489dd5ae0e6c" 3058 | dependencies: 3059 | "@fimbul/bifrost" "^0.6.0" 3060 | tslib "^1.7.1" 3061 | tsutils "^2.24.0" 3062 | 3063 | tslint-eslint-rules@^5.2.0: 3064 | version "5.3.1" 3065 | resolved "https://registry.yarnpkg.com/tslint-eslint-rules/-/tslint-eslint-rules-5.3.1.tgz#10dec4361df0b3e4385d91ff8e0226bda4ec2ad4" 3066 | dependencies: 3067 | doctrine "0.7.2" 3068 | tslib "1.9.0" 3069 | tsutils "2.8.0" 3070 | 3071 | tslint-react@^3.6.0: 3072 | version "3.6.0" 3073 | resolved "https://registry.yarnpkg.com/tslint-react/-/tslint-react-3.6.0.tgz#7f462c95c4a0afaae82507f06517ff02942196a1" 3074 | dependencies: 3075 | tsutils "^2.13.1" 3076 | 3077 | tslint@^5.10.0: 3078 | version "5.10.0" 3079 | resolved "https://registry.yarnpkg.com/tslint/-/tslint-5.10.0.tgz#11e26bccb88afa02dd0d9956cae3d4540b5f54c3" 3080 | dependencies: 3081 | babel-code-frame "^6.22.0" 3082 | builtin-modules "^1.1.1" 3083 | chalk "^2.3.0" 3084 | commander "^2.12.1" 3085 | diff "^3.2.0" 3086 | glob "^7.1.1" 3087 | js-yaml "^3.7.0" 3088 | minimatch "^3.0.4" 3089 | resolve "^1.3.2" 3090 | semver "^5.3.0" 3091 | tslib "^1.8.0" 3092 | tsutils "^2.12.1" 3093 | 3094 | tsutils@2.8.0: 3095 | version "2.8.0" 3096 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-2.8.0.tgz#0160173729b3bf138628dd14a1537e00851d814a" 3097 | dependencies: 3098 | tslib "^1.7.1" 3099 | 3100 | tsutils@^2.12.1, tsutils@^2.13.1, tsutils@^2.24.0: 3101 | version "2.27.1" 3102 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-2.27.1.tgz#ab0276ac23664f36ce8fd4414daec4aebf4373ee" 3103 | dependencies: 3104 | tslib "^1.8.1" 3105 | 3106 | tunnel-agent@^0.6.0: 3107 | version "0.6.0" 3108 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3109 | dependencies: 3110 | safe-buffer "^5.0.1" 3111 | 3112 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3113 | version "0.14.5" 3114 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3115 | 3116 | type-check@~0.3.2: 3117 | version "0.3.2" 3118 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3119 | dependencies: 3120 | prelude-ls "~1.1.2" 3121 | 3122 | typescript@^3.2.2: 3123 | version "3.9.10" 3124 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.10.tgz#70f3910ac7a51ed6bef79da7800690b19bf778b8" 3125 | 3126 | uglify-js@^2.6: 3127 | version "2.8.29" 3128 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 3129 | dependencies: 3130 | source-map "~0.5.1" 3131 | yargs "~3.10.0" 3132 | optionalDependencies: 3133 | uglify-to-browserify "~1.0.0" 3134 | 3135 | uglify-to-browserify@~1.0.0: 3136 | version "1.0.2" 3137 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3138 | 3139 | union-value@^1.0.0: 3140 | version "1.0.0" 3141 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" 3142 | dependencies: 3143 | arr-union "^3.1.0" 3144 | get-value "^2.0.6" 3145 | is-extendable "^0.1.1" 3146 | set-value "^0.4.3" 3147 | 3148 | unset-value@^1.0.0: 3149 | version "1.0.0" 3150 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 3151 | dependencies: 3152 | has-value "^0.3.1" 3153 | isobject "^3.0.0" 3154 | 3155 | urix@^0.1.0: 3156 | version "0.1.0" 3157 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 3158 | 3159 | use@^3.1.0: 3160 | version "3.1.0" 3161 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.0.tgz#14716bf03fdfefd03040aef58d8b4b85f3a7c544" 3162 | dependencies: 3163 | kind-of "^6.0.2" 3164 | 3165 | util-deprecate@~1.0.1: 3166 | version "1.0.2" 3167 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3168 | 3169 | util.promisify@^1.0.0: 3170 | version "1.0.0" 3171 | resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" 3172 | dependencies: 3173 | define-properties "^1.1.2" 3174 | object.getownpropertydescriptors "^2.0.3" 3175 | 3176 | uuid@^3.1.0: 3177 | version "3.2.1" 3178 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14" 3179 | 3180 | validate-npm-package-license@^3.0.1: 3181 | version "3.0.3" 3182 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.3.tgz#81643bcbef1bdfecd4623793dc4648948ba98338" 3183 | dependencies: 3184 | spdx-correct "^3.0.0" 3185 | spdx-expression-parse "^3.0.0" 3186 | 3187 | verror@1.10.0: 3188 | version "1.10.0" 3189 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 3190 | dependencies: 3191 | assert-plus "^1.0.0" 3192 | core-util-is "1.0.2" 3193 | extsprintf "^1.2.0" 3194 | 3195 | w3c-hr-time@^1.0.1: 3196 | version "1.0.1" 3197 | resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz#82ac2bff63d950ea9e3189a58a65625fedf19045" 3198 | dependencies: 3199 | browser-process-hrtime "^0.1.2" 3200 | 3201 | walker@~1.0.5: 3202 | version "1.0.7" 3203 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 3204 | dependencies: 3205 | makeerror "1.0.x" 3206 | 3207 | watch@~0.18.0: 3208 | version "0.18.0" 3209 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.18.0.tgz#28095476c6df7c90c963138990c0a5423eb4b986" 3210 | dependencies: 3211 | exec-sh "^0.2.0" 3212 | minimist "^1.2.0" 3213 | 3214 | webidl-conversions@^4.0.2: 3215 | version "4.0.2" 3216 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" 3217 | 3218 | whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.3: 3219 | version "1.0.3" 3220 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.3.tgz#57c235bc8657e914d24e1a397d3c82daee0a6ba3" 3221 | dependencies: 3222 | iconv-lite "0.4.19" 3223 | 3224 | whatwg-mimetype@^2.0.0, whatwg-mimetype@^2.1.0: 3225 | version "2.1.0" 3226 | resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.1.0.tgz#f0f21d76cbba72362eb609dbed2a30cd17fcc7d4" 3227 | 3228 | whatwg-url@^6.4.0, whatwg-url@^6.4.1: 3229 | version "6.4.1" 3230 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-6.4.1.tgz#fdb94b440fd4ad836202c16e9737d511f012fd67" 3231 | dependencies: 3232 | lodash.sortby "^4.7.0" 3233 | tr46 "^1.0.1" 3234 | webidl-conversions "^4.0.2" 3235 | 3236 | which-module@^2.0.0: 3237 | version "2.0.0" 3238 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 3239 | 3240 | which@^1.2.12, which@^1.2.9, which@^1.3.0: 3241 | version "1.3.1" 3242 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 3243 | dependencies: 3244 | isexe "^2.0.0" 3245 | 3246 | wide-align@^1.1.0: 3247 | version "1.1.3" 3248 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" 3249 | dependencies: 3250 | string-width "^1.0.2 || 2" 3251 | 3252 | window-size@0.1.0: 3253 | version "0.1.0" 3254 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3255 | 3256 | wordwrap@0.0.2: 3257 | version "0.0.2" 3258 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3259 | 3260 | wordwrap@~0.0.2: 3261 | version "0.0.3" 3262 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3263 | 3264 | wordwrap@~1.0.0: 3265 | version "1.0.0" 3266 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3267 | 3268 | wrap-ansi@^2.0.0: 3269 | version "2.1.0" 3270 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3271 | dependencies: 3272 | string-width "^1.0.1" 3273 | strip-ansi "^3.0.1" 3274 | 3275 | wrappy@1: 3276 | version "1.0.2" 3277 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3278 | 3279 | write-file-atomic@^2.1.0: 3280 | version "2.3.0" 3281 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" 3282 | dependencies: 3283 | graceful-fs "^4.1.11" 3284 | imurmurhash "^0.1.4" 3285 | signal-exit "^3.0.2" 3286 | 3287 | ws@^4.0.0: 3288 | version "4.1.0" 3289 | resolved "https://registry.yarnpkg.com/ws/-/ws-4.1.0.tgz#a979b5d7d4da68bf54efe0408967c324869a7289" 3290 | dependencies: 3291 | async-limiter "~1.0.0" 3292 | safe-buffer "~5.1.0" 3293 | 3294 | xml-name-validator@^3.0.0: 3295 | version "3.0.0" 3296 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" 3297 | 3298 | y18n@^3.2.1: 3299 | version "3.2.1" 3300 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3301 | 3302 | yallist@^2.1.2: 3303 | version "2.1.2" 3304 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3305 | 3306 | yallist@^3.0.0, yallist@^3.0.3: 3307 | version "3.1.1" 3308 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" 3309 | 3310 | yargs-parser@10.x: 3311 | version "10.1.0" 3312 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-10.1.0.tgz#7202265b89f7e9e9f2e5765e0fe735a905edbaa8" 3313 | dependencies: 3314 | camelcase "^4.1.0" 3315 | 3316 | yargs-parser@^9.0.2: 3317 | version "9.0.2" 3318 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-9.0.2.tgz#9ccf6a43460fe4ed40a9bb68f48d43b8a68cc077" 3319 | dependencies: 3320 | camelcase "^4.1.0" 3321 | 3322 | yargs@^11.0.0: 3323 | version "11.0.0" 3324 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-11.0.0.tgz#c052931006c5eee74610e5fc0354bedfd08a201b" 3325 | dependencies: 3326 | cliui "^4.0.0" 3327 | decamelize "^1.1.1" 3328 | find-up "^2.1.0" 3329 | get-caller-file "^1.0.1" 3330 | os-locale "^2.0.0" 3331 | require-directory "^2.1.1" 3332 | require-main-filename "^1.0.1" 3333 | set-blocking "^2.0.0" 3334 | string-width "^2.0.0" 3335 | which-module "^2.0.0" 3336 | y18n "^3.2.1" 3337 | yargs-parser "^9.0.2" 3338 | 3339 | yargs@~3.10.0: 3340 | version "3.10.0" 3341 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3342 | dependencies: 3343 | camelcase "^1.0.2" 3344 | cliui "^2.1.0" 3345 | decamelize "^1.0.0" 3346 | window-size "0.1.0" 3347 | --------------------------------------------------------------------------------