├── .gitignore ├── LICENSE ├── README.md ├── images ├── amcharts.png ├── amp.png ├── angular.png ├── angularjs.png ├── anime.png ├── aurelia.png ├── backbone.png ├── bootstrap.png ├── chartjs.png ├── clojurescript.png ├── cyclejs.png ├── d3.png ├── dio.png ├── dojo.png ├── echarts.png ├── elm.png ├── ember.png ├── emotion.png ├── enyo.png ├── epoch.png ├── extjs.png ├── foundation.png ├── gatsby.png ├── glamorous.png ├── handlebars.png ├── highcharts.png ├── icon.png ├── icon128.png ├── icon16.png ├── icon48.png ├── immutable.png ├── inferno.png ├── jquery.png ├── jqueryui.png ├── kendoui.png ├── knockback.png ├── knockout.png ├── lodash.png ├── maquette.png ├── marionette.png ├── marko.png ├── materialize.png ├── meteor.png ├── mithril.png ├── mobx.png ├── modernizr.png ├── moment.png ├── moon.png ├── mootools.png ├── nextjs.png ├── p5.png ├── phaser.png ├── pixijs.png ├── polymer.png ├── preact.png ├── purescript.png ├── ractive.png ├── radium.png ├── raphael.png ├── react.png ├── reason.png ├── requirejs.png ├── riot.png ├── scalajs.png ├── semanticui.png ├── socketio.png ├── styledcomponents.png ├── svelte.png ├── ui5.png ├── uikit.png ├── vue.png ├── webix.png ├── webpack.png ├── whsjs.png ├── yalla.png └── yui.png ├── manifest.json ├── package.json ├── src ├── checker.ts ├── checks │ ├── doesAnyElement.ts │ ├── errorHiding.ts │ ├── index.ts │ ├── isObjectWithProperties.ts │ └── types.ts ├── content.ts ├── popup.html └── popup.ts ├── tsconfig.json ├── webpack.config.js ├── webpack.config.production.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Stanislav Iliev 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | ui stack logo 3 |
4 |

5 |

:mag: A Chrome extension that lets you inspect a website's framework and libraries

6 | 7 |

8 | example screenshot 9 |
10 |

11 | 12 | # How to install? 13 | 14 | [![Install from chrome web store](https://developer.chrome.com/webstore/images/ChromeWebStore_Badge_v2_340x96.png)](https://chrome.google.com/webstore/detail/ui-stack/ijagbooglignnjecmjnmdfapfbgblkdk) 15 | 16 | You can install the extension from the [Chrome Web Store](https://chrome.google.com/webstore/detail/ui-stack/ijagbooglignnjecmjnmdfapfbgblkdk) 17 | 18 | You can also install it locally by cloning this repo and following the [official tutorial](https://developer.chrome.com/extensions/getstarted#unpacked) 19 | 20 | # Contribution 21 | 22 | 1. Clone this repository 23 | 2. Run `yarn install` to fetch dependencies and `yarn build` to start the build script 24 | 3. Open the `src/checks/index.ts` file and add your own checker function 25 | 4. Open `src/checker.ts` and add your function to the list 26 | 5. Make sure your code works 27 | 6. Make a pull request :rocket: 28 | 29 | # Support 30 | 31 |

32 | amcharts 33 | amp 34 | angular 35 | angularjs 36 | anime 37 | aurelia 38 | backbone 39 | bootstrap 40 | chartjs 41 | clojurescript 42 | cyclejs 43 | d3 44 | dio 45 | dojo 46 | echarts 47 | elm 48 | ember 49 | emotion 50 | enyo 51 | epoch 52 | extjs 53 | foundation 54 | gatsby 55 | glamorous 56 | handlebars 57 | highcharts 58 | immutable 59 | inferno 60 | jquery 61 | jqueryui 62 | kendoui 63 | knockback 64 | knockout 65 | lodash 66 | maquette 67 | marionette 68 | marko 69 | materialize 70 | meteor 71 | mithril 72 | mobx 73 | modernizr 74 | moment 75 | moon 76 | mootools 77 | nextjs 78 | p5 79 | phaser 80 | pixijs 81 | polymer 82 | preact 83 | purescript 84 | ractive 85 | radium 86 | raphael 87 | react 88 | reason 89 | requirejs 90 | riot 91 | scalajs 92 | semanticui 93 | socketio 94 | styledcomponents 95 | svelte 96 | ui5 97 | uikit 98 | vue 99 | webix 100 | webpack 101 | whsjs 102 | yalla 103 | yui 104 |
105 |

106 | -------------------------------------------------------------------------------- /images/amcharts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/amcharts.png -------------------------------------------------------------------------------- /images/amp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/amp.png -------------------------------------------------------------------------------- /images/angular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/angular.png -------------------------------------------------------------------------------- /images/angularjs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/angularjs.png -------------------------------------------------------------------------------- /images/anime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/anime.png -------------------------------------------------------------------------------- /images/aurelia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/aurelia.png -------------------------------------------------------------------------------- /images/backbone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/backbone.png -------------------------------------------------------------------------------- /images/bootstrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/bootstrap.png -------------------------------------------------------------------------------- /images/chartjs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/chartjs.png -------------------------------------------------------------------------------- /images/clojurescript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/clojurescript.png -------------------------------------------------------------------------------- /images/cyclejs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/cyclejs.png -------------------------------------------------------------------------------- /images/d3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/d3.png -------------------------------------------------------------------------------- /images/dio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/dio.png -------------------------------------------------------------------------------- /images/dojo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/dojo.png -------------------------------------------------------------------------------- /images/echarts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/echarts.png -------------------------------------------------------------------------------- /images/elm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/elm.png -------------------------------------------------------------------------------- /images/ember.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/ember.png -------------------------------------------------------------------------------- /images/emotion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/emotion.png -------------------------------------------------------------------------------- /images/enyo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/enyo.png -------------------------------------------------------------------------------- /images/epoch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/epoch.png -------------------------------------------------------------------------------- /images/extjs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/extjs.png -------------------------------------------------------------------------------- /images/foundation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/foundation.png -------------------------------------------------------------------------------- /images/gatsby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/gatsby.png -------------------------------------------------------------------------------- /images/glamorous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/glamorous.png -------------------------------------------------------------------------------- /images/handlebars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/handlebars.png -------------------------------------------------------------------------------- /images/highcharts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/highcharts.png -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/icon.png -------------------------------------------------------------------------------- /images/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/icon128.png -------------------------------------------------------------------------------- /images/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/icon16.png -------------------------------------------------------------------------------- /images/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/icon48.png -------------------------------------------------------------------------------- /images/immutable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/immutable.png -------------------------------------------------------------------------------- /images/inferno.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/inferno.png -------------------------------------------------------------------------------- /images/jquery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/jquery.png -------------------------------------------------------------------------------- /images/jqueryui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/jqueryui.png -------------------------------------------------------------------------------- /images/kendoui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/kendoui.png -------------------------------------------------------------------------------- /images/knockback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/knockback.png -------------------------------------------------------------------------------- /images/knockout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/knockout.png -------------------------------------------------------------------------------- /images/lodash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/lodash.png -------------------------------------------------------------------------------- /images/maquette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/maquette.png -------------------------------------------------------------------------------- /images/marionette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/marionette.png -------------------------------------------------------------------------------- /images/marko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/marko.png -------------------------------------------------------------------------------- /images/materialize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/materialize.png -------------------------------------------------------------------------------- /images/meteor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/meteor.png -------------------------------------------------------------------------------- /images/mithril.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/mithril.png -------------------------------------------------------------------------------- /images/mobx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/mobx.png -------------------------------------------------------------------------------- /images/modernizr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/modernizr.png -------------------------------------------------------------------------------- /images/moment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/moment.png -------------------------------------------------------------------------------- /images/moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/moon.png -------------------------------------------------------------------------------- /images/mootools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/mootools.png -------------------------------------------------------------------------------- /images/nextjs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/nextjs.png -------------------------------------------------------------------------------- /images/p5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/p5.png -------------------------------------------------------------------------------- /images/phaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/phaser.png -------------------------------------------------------------------------------- /images/pixijs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/pixijs.png -------------------------------------------------------------------------------- /images/polymer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/polymer.png -------------------------------------------------------------------------------- /images/preact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/preact.png -------------------------------------------------------------------------------- /images/purescript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/purescript.png -------------------------------------------------------------------------------- /images/ractive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/ractive.png -------------------------------------------------------------------------------- /images/radium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/radium.png -------------------------------------------------------------------------------- /images/raphael.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/raphael.png -------------------------------------------------------------------------------- /images/react.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/react.png -------------------------------------------------------------------------------- /images/reason.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/reason.png -------------------------------------------------------------------------------- /images/requirejs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/requirejs.png -------------------------------------------------------------------------------- /images/riot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/riot.png -------------------------------------------------------------------------------- /images/scalajs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/scalajs.png -------------------------------------------------------------------------------- /images/semanticui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/semanticui.png -------------------------------------------------------------------------------- /images/socketio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/socketio.png -------------------------------------------------------------------------------- /images/styledcomponents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/styledcomponents.png -------------------------------------------------------------------------------- /images/svelte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/svelte.png -------------------------------------------------------------------------------- /images/ui5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/ui5.png -------------------------------------------------------------------------------- /images/uikit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/uikit.png -------------------------------------------------------------------------------- /images/vue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/vue.png -------------------------------------------------------------------------------- /images/webix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/webix.png -------------------------------------------------------------------------------- /images/webpack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/webpack.png -------------------------------------------------------------------------------- /images/whsjs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/whsjs.png -------------------------------------------------------------------------------- /images/yalla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/yalla.png -------------------------------------------------------------------------------- /images/yui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigobyte/ui-stack/2b37367941dfc4251a8f54a0739cf5ccc24aaadc/images/yui.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "manifest_version": 2, 3 | "name": "UI Stack", 4 | "description": "A Chrome extension that lets you see a website's framework and libraries", 5 | "version": "1.3", 6 | "author": "Stanislav Iliev", 7 | "permissions": ["activeTab", "storage", "tabs"], 8 | "browser_action": { 9 | "default_icon": "images/icon.png", 10 | "default_popup": "src/popup.html" 11 | }, 12 | "content_scripts": [ 13 | { 14 | "matches": [""], 15 | "js": ["build/content.js"] 16 | } 17 | ], 18 | "web_accessible_resources": ["build/checker.js"], 19 | "icons": { 20 | "16": "images/icon16.png", 21 | "48": "images/icon48.png", 22 | "128": "images/icon128.png" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "devDependencies": { 3 | "ts-loader": "^3.1.0", 4 | "typescript": "^2.5.3", 5 | "webpack": "^3.8.1" 6 | }, 7 | "name": "ui-stack", 8 | "version": "1.0.0", 9 | "main": "index.js", 10 | "repository": "https://github.com/gigobyte/ui-stack.git", 11 | "author": "gigobyte ", 12 | "license": "MIT", 13 | "scripts": { 14 | "build": "webpack -w", 15 | "build-release": "webpack --config webpack.config.production.js" 16 | }, 17 | "dependencies": { 18 | "@types/chrome": "^0.0.50" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/checker.ts: -------------------------------------------------------------------------------- 1 | import * as checks from './checks/index' 2 | import { Library } from './checks/types' 3 | 4 | let appendedLibs = false 5 | 6 | const runCheck = () => { 7 | const body = document.getElementsByTagName('body')[0] 8 | 9 | const libs = [ 10 | // languages 11 | checks.elm(), 12 | checks.scalajs(), 13 | checks.reason(), 14 | checks.purescript(), 15 | checks.clojurescript(), 16 | 17 | // frameworks 18 | checks.angular(), 19 | checks.react(), 20 | checks.vue(), 21 | checks.angularjs(), 22 | checks.backbone(), 23 | checks.knockout(), 24 | checks.ember(), 25 | checks.knockback(), 26 | checks.polymer(), 27 | checks.mithril(), 28 | checks.aurelia(), 29 | checks.dojo(), 30 | checks.meteor(), 31 | checks.kendoui(), 32 | checks.nextjs(), 33 | checks.gatsby(), 34 | checks.ui5(), 35 | checks.marko(), 36 | checks.svelte(), 37 | checks.marionette(), 38 | checks.inferno(), 39 | checks.dio(), 40 | checks.extjs(), 41 | checks.yui(), 42 | checks.enyo(), 43 | checks.riot(), 44 | checks.phaser(), 45 | checks.webix(), 46 | checks.preact(), 47 | checks.amp(), 48 | checks.uikit(), 49 | checks.ractive(), 50 | checks.semantic(), 51 | checks.bootstrap(), 52 | checks.foundation(), 53 | 54 | // libraries 55 | checks.jquery(), 56 | checks.moment(), 57 | checks.socketio(), 58 | checks.cyclejs(), 59 | checks.styledComponents(), 60 | checks.emotion(), 61 | checks.glamorous(), 62 | checks.radium(), 63 | checks.modernizr(), 64 | checks.mobx(), 65 | checks.materialize(), 66 | checks.d3(), 67 | checks.whitestormjs(), 68 | checks.mootools(), 69 | checks.p5(), 70 | checks.pixijs(), 71 | checks.immutable(), 72 | checks.jqueryui(), 73 | checks.moon(), 74 | checks.chartjs(), 75 | checks.raphael(), 76 | checks.amcharts(), 77 | checks.echarts(), 78 | checks.lodash(), 79 | checks.highcharts(), 80 | checks.handlebars(), 81 | checks.anime(), 82 | checks.yalla(), 83 | checks.epoch(), 84 | checks.maquette(), 85 | 86 | // tools 87 | checks.require(), 88 | checks.webpack() 89 | ].filter(Boolean) as Library[] 90 | 91 | if (libs.length === 0) { 92 | appendedLibs = true 93 | 94 | const noLibEl = document.createElement('div') 95 | noLibEl.className = 'ui-stack-no-libs' 96 | body.appendChild(noLibEl) 97 | } else { 98 | appendedLibs = true 99 | 100 | libs.forEach(x => { 101 | const libEl = document.createElement('div') 102 | libEl.setAttribute('data-title', x.title) 103 | libEl.setAttribute('data-slug', x.slug) 104 | libEl.setAttribute('data-version', x.version || '') 105 | libEl.setAttribute('data-website', x.website || '') 106 | libEl.className = 'ui-stack-lib' 107 | body.appendChild(libEl) 108 | }) 109 | } 110 | } 111 | 112 | runCheck() 113 | 114 | setInterval(() => { 115 | if (appendedLibs) { 116 | const libElementAdded = Boolean( 117 | document.querySelector('.ui-stack-lib, .ui-stack-no-libs') 118 | ) 119 | 120 | if (!libElementAdded) { 121 | appendedLibs = false 122 | runCheck() 123 | } 124 | } 125 | }, 1500) 126 | -------------------------------------------------------------------------------- /src/checks/doesAnyElement.ts: -------------------------------------------------------------------------------- 1 | const doesAnyElement = ( 2 | document: Document, 3 | predicate: (el: HTMLElement) => boolean 4 | ): boolean => { 5 | return ([...(document.querySelectorAll('*') as any)] as HTMLElement[]).some( 6 | predicate 7 | ) 8 | } 9 | 10 | export default doesAnyElement 11 | -------------------------------------------------------------------------------- /src/checks/errorHiding.ts: -------------------------------------------------------------------------------- 1 | export const safeCall = (fn?: Function, ...args) => { 2 | try { 3 | if (fn && typeof fn === 'function') { 4 | return fn(...args) 5 | } 6 | } catch {} 7 | } 8 | 9 | export const safeGet = (object: Object, ...path: string[]): any => { 10 | return path.reduce((value, getter) => { 11 | try { 12 | if (!value) { 13 | return value 14 | } 15 | 16 | return value[getter] 17 | } catch {} 18 | }, object) 19 | } 20 | 21 | export const safeGetValues = (object: Object): any => { 22 | try { 23 | return Object.values(object) 24 | } catch {} 25 | } 26 | 27 | export const safeRequire = (window: Window, requiredPackage: string): any => { 28 | try { 29 | return window['require'] && window['require'](requiredPackage) 30 | } catch {} 31 | } 32 | -------------------------------------------------------------------------------- /src/checks/index.ts: -------------------------------------------------------------------------------- 1 | import { Check } from './types' 2 | import { safeGet, safeCall, safeRequire, safeGetValues } from './errorHiding' 3 | import isObjectWithProperties from './isObjectWithProperties' 4 | import doesAnyElement from './doesAnyElement' 5 | 6 | export const angularjs: Check = () => { 7 | const ANGULARJS_SELECTOR = 8 | '[ng-app],[ng-model],[ng-controller],[ng-scope],.ng-hide' 9 | 10 | if (document.querySelector(ANGULARJS_SELECTOR)) { 11 | return { 12 | title: 'AngularJS', 13 | slug: 'angularjs', 14 | website: 'https://angularjs.org/', 15 | version: safeGet(window, 'angular', 'version', 'full') 16 | } 17 | } 18 | } 19 | 20 | export const jquery: Check = () => { 21 | const jqKey = Object.getOwnPropertyNames(window).find(x => 22 | safeGet(window, x, 'fn', 'jquery') 23 | ) 24 | 25 | if (jqKey) { 26 | return { 27 | title: 'jQuery', 28 | slug: 'jquery', 29 | website: 'https://jquery.com/', 30 | version: safeGet(window, jqKey, 'fn', 'jquery').split(' ')[0] 31 | } 32 | } 33 | } 34 | 35 | export const react: Check = () => { 36 | const REACT_SELECTOR = '[data-reactroot],[data-reactid]' 37 | const importedReact = 38 | window['React'] || 39 | safeRequire(window, 'React') || 40 | safeRequire(window, 'react') 41 | const isReactFound = doesAnyElement(document, el => 42 | Object.keys(el).some(key => key.startsWith('__react')) 43 | ) 44 | 45 | if (document.querySelector(REACT_SELECTOR) || importedReact || isReactFound) { 46 | return { 47 | title: 'React', 48 | slug: 'react', 49 | website: 'https://reactjs.org/', 50 | version: safeGet(importedReact, 'version') 51 | } 52 | } 53 | } 54 | 55 | export const angular: Check = () => { 56 | const ANGULAR_SELECTOR = '[_nghost-c0],[_ngcontent-c0],[ng-version],[ng-for]' 57 | const angularVersionEl = document.querySelector('[ng-version]') 58 | 59 | if (document.querySelector(ANGULAR_SELECTOR)) { 60 | return { 61 | title: 'Angular', 62 | slug: 'angular', 63 | website: 'https://angular.io/', 64 | version: 65 | (angularVersionEl && angularVersionEl.getAttribute('ng-version')) || 66 | undefined 67 | } 68 | } 69 | } 70 | 71 | export const vue: Check = () => { 72 | const isVueFound = doesAnyElement(document, el => { 73 | const attributes = Array.from(el.attributes).map(attr => attr.nodeName) 74 | const vueAttr = attributes.find(x => x.startsWith('data-v-')) 75 | 76 | if (el['__vue__'] || (vueAttr && !el.getAttribute(vueAttr))) { 77 | return true 78 | } 79 | 80 | return false 81 | }) 82 | 83 | if (window['Vue'] || isVueFound) { 84 | return { 85 | title: 'Vue.js', 86 | slug: 'vue', 87 | website: 'https://vuejs.org/' 88 | } 89 | } 90 | } 91 | 92 | export const moment: Check = () => { 93 | if (safeGet(window, 'moment', 'version')) { 94 | return { 95 | title: 'Moment.js', 96 | slug: 'moment', 97 | website: 'https://momentjs.com/', 98 | version: safeGet(window, 'moment', 'version') 99 | } 100 | } 101 | } 102 | 103 | export const backbone: Check = () => { 104 | const backbone = 105 | safeGet(window, 'Backbone') || safeRequire(window, 'backbone') 106 | 107 | if (safeGet(backbone, 'VERSION')) { 108 | return { 109 | title: 'Backbone.js', 110 | slug: 'backbone', 111 | website: 'http://backbonejs.org/', 112 | version: safeGet(backbone, 'VERSION') 113 | } 114 | } 115 | } 116 | 117 | export const knockout: Check = () => { 118 | const knockout = safeGet(window, 'ko') || safeRequire(window, 'knockout') 119 | 120 | if (safeGet(knockout, 'version')) { 121 | return { 122 | title: 'Knockout', 123 | slug: 'knockout', 124 | website: 'http://knockoutjs.com/', 125 | version: safeGet(knockout, 'version') 126 | } 127 | } 128 | } 129 | 130 | export const ember: Check = () => { 131 | const version = safeGet(window, 'Ember', 'VERSION') 132 | 133 | if (version || document.querySelector('.ember-application')) { 134 | return { 135 | title: 'Ember.js', 136 | slug: 'ember', 137 | website: 'https://www.emberjs.com/', 138 | version 139 | } 140 | } 141 | } 142 | 143 | export const knockback: Check = () => { 144 | const version = safeGet(window, 'kb', 'VERSION') 145 | 146 | if (document.querySelectorAll('[kb-inject]').length > 0 || version) { 147 | return { 148 | title: 'Knockback.js', 149 | slug: 'knockback', 150 | website: 'http://kmalakoff.github.io/knockback/', 151 | version 152 | } 153 | } 154 | } 155 | 156 | export const require: Check = () => { 157 | if ( 158 | typeof window['require'] === 'function' && 159 | typeof window['requirejs'] === 'function' 160 | ) { 161 | return { 162 | title: 'RequireJS', 163 | slug: 'requirejs', 164 | website: 'http://requirejs.org/', 165 | version: safeGet(window, 'require', 'version') 166 | } 167 | } 168 | } 169 | 170 | export const webpack: Check = () => { 171 | if (window['webpackJsonp']) { 172 | return { 173 | title: 'Webpack', 174 | slug: 'webpack', 175 | website: 'https://webpack.js.org/' 176 | } 177 | } 178 | } 179 | 180 | export const polymer: Check = () => { 181 | if (safeGet(window, 'Polymer', 'version')) { 182 | return { 183 | title: 'Polymer', 184 | slug: 'polymer', 185 | website: 'https://www.polymer-project.org/', 186 | version: safeGet(window, 'Polymer', 'version') 187 | } 188 | } 189 | } 190 | 191 | export const mithril: Check = () => { 192 | const isMithrilObject = x => 193 | isObjectWithProperties(window[x], ['component', 'render', 'route', 'prop']) 194 | const mKey = Object.getOwnPropertyNames(window).find(isMithrilObject) 195 | 196 | if (mKey) { 197 | return { 198 | title: 'Mithril', 199 | slug: 'mithril', 200 | website: 'https://mithril.js.org/' 201 | } 202 | } 203 | } 204 | 205 | export const aurelia: Check = () => { 206 | if (document.querySelector('[aurelia-app]')) { 207 | return { 208 | title: 'Aurelia', 209 | slug: 'aurelia', 210 | website: 'http://aurelia.io/' 211 | } 212 | } 213 | } 214 | 215 | export const dojo: Check = () => { 216 | const version = safeGet(window, 'dojo', 'version', 'toString') 217 | 218 | if (version) { 219 | return { 220 | title: 'Dojo', 221 | slug: 'dojo', 222 | website: 'https://dojotoolkit.org/', 223 | version: version() 224 | } 225 | } 226 | } 227 | 228 | export const socketio: Check = () => { 229 | const isSocketIoObject = x => 230 | isObjectWithProperties(window[x], [ 231 | 'Manager', 232 | 'Socket', 233 | 'connect', 234 | 'managers' 235 | ]) 236 | const ioKey = Object.getOwnPropertyNames(window).find(isSocketIoObject) 237 | 238 | if (ioKey) { 239 | return { 240 | title: 'socket.io', 241 | slug: 'socketio', 242 | website: 'https://socket.io/' 243 | } 244 | } 245 | } 246 | 247 | export const cyclejs: Check = () => { 248 | if (safeGet(window, 'Cyclejs', 'sinks')) { 249 | return { 250 | title: 'Cycle.js', 251 | slug: 'cyclejs', 252 | website: 'https://cycle.js.org/' 253 | } 254 | } 255 | } 256 | 257 | export const meteor: Check = () => { 258 | const version = safeGet(window, 'Meteor', 'release') 259 | 260 | if (version) { 261 | return { 262 | title: 'Meteor', 263 | slug: 'meteor', 264 | website: 'https://www.meteor.com/', 265 | version: version.split('@').pop() 266 | } 267 | } 268 | } 269 | 270 | export const kendoui: Check = () => { 271 | if (safeGet(window, 'kendo', 'version')) { 272 | return { 273 | title: 'KendoUI', 274 | slug: 'kendoui', 275 | website: 'https://www.telerik.com/kendo-ui', 276 | version: safeGet(window, 'kendo', 'version') 277 | } 278 | } 279 | } 280 | 281 | export const styledComponents: Check = () => { 282 | if (document.querySelector('style[data-styled-components]')) { 283 | return { 284 | title: 'styled-components', 285 | slug: 'styledcomponents', 286 | website: 'https://www.styled-components.com/' 287 | } 288 | } 289 | } 290 | 291 | export const emotion: Check = () => { 292 | if (document.querySelector('style[data-emotion]')) { 293 | return { 294 | title: 'emotion', 295 | slug: 'emotion', 296 | website: 'https://emotion.sh/' 297 | } 298 | } 299 | } 300 | 301 | export const glamorous: Check = () => { 302 | if (document.querySelector('style[data-glamor]')) { 303 | return { 304 | title: 'glamorous', 305 | slug: 'glamorous', 306 | website: 'https://glamorous.rocks/' 307 | } 308 | } 309 | } 310 | 311 | export const radium: Check = () => { 312 | if (document.querySelector('[data-radium]')) { 313 | return { 314 | title: 'Radium', 315 | slug: 'radium', 316 | website: 'http://formidable.com/open-source/radium/' 317 | } 318 | } 319 | } 320 | 321 | export const nextjs: Check = () => { 322 | if ( 323 | safeGet(window, 'next', 'ErrorComponent') || 324 | safeGet(window, '__NEXT_DATA__') 325 | ) { 326 | return { 327 | title: 'Next.js', 328 | slug: 'nextjs', 329 | website: 'https://zeit.co/next' 330 | } 331 | } 332 | } 333 | 334 | export const elm: Check = () => { 335 | if (typeof window['Elm'] === 'object') { 336 | return { 337 | title: 'Elm', 338 | slug: 'elm', 339 | website: 'http://elm-lang.org/' 340 | } 341 | } 342 | } 343 | 344 | export const scalajs: Check = () => { 345 | if (window['__ScalaJSExportsNamespace']) { 346 | return { 347 | title: 'Scala.js', 348 | slug: 'scalajs', 349 | website: 'https://www.scala-js.org/' 350 | } 351 | } 352 | } 353 | 354 | export const reason: Check = () => { 355 | if (safeGet(window, 'ocaml', 'version')) { 356 | return { 357 | title: 'Reason', 358 | slug: 'reason', 359 | website: 'https://reasonml.github.io/', 360 | version: safeGet(window, 'ocaml', 'version') 361 | } 362 | } 363 | } 364 | 365 | export const gatsby: Check = () => { 366 | if (document.querySelector('#___gatsby')) { 367 | return { 368 | title: 'Gatsby', 369 | slug: 'gatsby', 370 | website: 'https://www.gatsbyjs.org/' 371 | } 372 | } 373 | } 374 | 375 | export const modernizr: Check = () => { 376 | if (safeGet(window, 'Modernizr', '_version')) { 377 | return { 378 | title: 'Modernizr', 379 | slug: 'modernizr', 380 | website: 'https://modernizr.com/', 381 | version: safeGet(window, 'Modernizr', '_version') 382 | } 383 | } 384 | } 385 | 386 | export const mobx: Check = () => { 387 | const isStore = x => safeGet(x, '$mobx') 388 | const isRootStore = x => 389 | window[x] && 390 | safeGetValues(window[x]) && 391 | safeGetValues(window[x]).some(isStore) 392 | const mobxKey = Object.getOwnPropertyNames(window).find(isRootStore) 393 | 394 | if ( 395 | mobxKey || 396 | safeRequire(window, 'mobx') || 397 | window['__mobxInstanceCount'] || 398 | window['__mobxGlobal'] 399 | ) { 400 | return { 401 | title: 'MobX', 402 | slug: 'mobx', 403 | website: 'https://mobx.js.org/' 404 | } 405 | } 406 | } 407 | 408 | export const materialize: Check = () => { 409 | if (typeof window['Materialize'] === 'object') { 410 | return { 411 | title: 'Materialize', 412 | slug: 'materialize', 413 | website: 'http://materializecss.com/' 414 | } 415 | } 416 | } 417 | 418 | export const d3: Check = () => { 419 | if (safeGet(window, 'd3', 'version')) { 420 | return { 421 | title: 'D3.js', 422 | slug: 'd3', 423 | website: 'https://d3js.org/', 424 | version: safeGet(window, 'd3', 'version') 425 | } 426 | } 427 | } 428 | 429 | export const whitestormjs: Check = () => { 430 | if (typeof window['WHS'] === 'object') { 431 | return { 432 | title: 'whs.js', 433 | slug: 'whsjs', 434 | website: 'https://whs.io/' 435 | } 436 | } 437 | } 438 | 439 | export const purescript: Check = () => { 440 | if (safeGet(window, 'PS', 'Main')) { 441 | return { 442 | title: 'PureScript', 443 | slug: 'purescript', 444 | website: 'http://www.purescript.org/' 445 | } 446 | } 447 | } 448 | 449 | export const mootools: Check = () => { 450 | if (safeGet(window, 'MooTools', 'version')) { 451 | return { 452 | title: 'MooTools', 453 | slug: 'mootools', 454 | website: 'https://mootools.net/', 455 | version: safeGet(window, 'MooTools', 'version') 456 | } 457 | } 458 | } 459 | 460 | export const clojurescript: Check = () => { 461 | if (safeGet(window, 'cljs', 'core')) { 462 | return { 463 | title: 'ClojureScript', 464 | slug: 'clojurescript', 465 | website: 'https://clojurescript.org/' 466 | } 467 | } 468 | } 469 | 470 | export const p5: Check = () => { 471 | if (typeof window['p5'] === 'function') { 472 | return { 473 | title: 'p5.js', 474 | slug: 'p5', 475 | website: 'https://p5js.org/' 476 | } 477 | } 478 | } 479 | 480 | export const pixijs: Check = () => { 481 | if (safeGet(window, 'PIXI', 'VERSION')) { 482 | return { 483 | title: 'PixiJS', 484 | slug: 'pixijs', 485 | website: 'http://www.pixijs.com/', 486 | version: safeGet(window, 'PIXI', 'VERSION') 487 | } 488 | } 489 | } 490 | 491 | export const ui5: Check = () => { 492 | if (safeGet(window, 'sap', 'ui', 'version')) { 493 | return { 494 | title: 'UI5', 495 | slug: 'ui5', 496 | website: 'http://openui5.org/', 497 | version: safeGet(window, 'sap', 'ui', 'version') 498 | } 499 | } 500 | } 501 | 502 | export const marko: Check = () => { 503 | if (document.querySelector('[data-marko],[data-marko-key]')) { 504 | return { 505 | title: 'Marko', 506 | slug: 'marko', 507 | website: 'https://markojs.com/' 508 | } 509 | } 510 | } 511 | 512 | export const svelte: Check = () => { 513 | if (safeGet(window, 'svelte', 'VERSION')) { 514 | return { 515 | title: 'Svelte', 516 | slug: 'svelte', 517 | website: 'https://svelte.technology/', 518 | version: safeGet(window, 'svelte', 'VERSION') 519 | } 520 | } 521 | } 522 | 523 | export const marionette: Check = () => { 524 | if (safeGet(window, 'Marionette', 'VERSION')) { 525 | return { 526 | title: 'Marionette', 527 | slug: 'marionette', 528 | website: 'https://marionettejs.com/', 529 | version: safeGet(window, 'Marionette', 'VERSION') 530 | } 531 | } 532 | } 533 | 534 | export const inferno: Check = () => { 535 | if (safeGet(window, 'Inferno', 'version')) { 536 | return { 537 | title: 'Inferno', 538 | slug: 'inferno', 539 | website: 'https://infernojs.org/', 540 | version: safeGet(window, 'Inferno', 'version') 541 | } 542 | } 543 | } 544 | 545 | export const dio: Check = () => { 546 | if (safeGet(window, 'dio', 'version')) { 547 | return { 548 | title: 'DIO', 549 | slug: 'dio', 550 | website: 'https://dio.js.org/', 551 | version: safeGet(window, 'dio', 'version') 552 | } 553 | } 554 | } 555 | 556 | export const extjs: Check = () => { 557 | if (safeGet(window, 'Ext', 'version')) { 558 | return { 559 | title: 'Ext JS', 560 | slug: 'extjs', 561 | website: 'https://www.sencha.com/products/extjs/', 562 | version: safeGet(window, 'Ext', 'version') 563 | } 564 | } 565 | } 566 | 567 | export const yui: Check = () => { 568 | if (safeGet(window, 'YUI', 'version')) { 569 | return { 570 | title: 'YUI', 571 | slug: 'yui', 572 | website: 'https://yuilibrary.com/', 573 | version: safeGet(window, 'YUI', 'version') 574 | } 575 | } 576 | } 577 | 578 | export const enyo: Check = () => { 579 | const enyo = safeGet(window, 'enyo') 580 | const enyoRequire = safeGet(enyo, 'require') 581 | 582 | if (enyo || safeGet(window, 'EnyoJS')) { 583 | return { 584 | title: 'Enyo', 585 | slug: 'enyo', 586 | website: 'http://enyojs.com/', 587 | version: 588 | safeGet(enyo, 'version') || 589 | safeGet(enyo, 'version', 'enyo') || 590 | safeGet(safeCall(enyoRequire, 'enyo'), 'version') 591 | } 592 | } 593 | } 594 | 595 | export const immutable: Check = () => { 596 | const im = safeGet(window, 'Immutable') || safeRequire(window, 'immutable') 597 | 598 | if (im) { 599 | return { 600 | title: 'Immutable.js', 601 | slug: 'immutable', 602 | website: 'https://facebook.github.io/immutable-js/', 603 | version: safeGet(im, 'version') 604 | } 605 | } 606 | } 607 | 608 | export const jqueryui: Check = () => { 609 | const jqKey = Object.getOwnPropertyNames(window).find(x => 610 | safeGet(window, x, 'ui', 'version') 611 | ) 612 | 613 | if (jqKey) { 614 | return { 615 | title: 'jQuery UI', 616 | slug: 'jqueryui', 617 | website: 'https://jqueryui.com/', 618 | version: safeGet(window, jqKey, 'ui', 'version') 619 | } 620 | } 621 | } 622 | 623 | export const moon: Check = () => { 624 | const m = safeGet(window, 'Moon') || safeRequire(window, 'moonjs') 625 | if (m) { 626 | return { 627 | title: 'Moon', 628 | slug: 'moon', 629 | website: 'http://moonjs.ga/', 630 | version: safeGet(m, 'version') 631 | } 632 | } 633 | } 634 | 635 | export const riot: Check = () => { 636 | const r = safeGet(window, 'riot') || safeRequire(window, 'riot') 637 | 638 | if (r) { 639 | return { 640 | title: 'Riot', 641 | slug: 'riot', 642 | website: 'http://riotjs.com/', 643 | version: safeGet(r, 'version') 644 | } 645 | } 646 | } 647 | 648 | export const phaser: Check = () => { 649 | if (safeGet(window, 'Phaser', 'VERSION')) { 650 | return { 651 | title: 'Phaser', 652 | slug: 'phaser', 653 | website: 'https://phaser.io/', 654 | version: safeGet(window, 'Phaser', 'VERSION') 655 | } 656 | } 657 | } 658 | 659 | export const webix: Check = () => { 660 | if (safeGet(window, 'webix', 'version')) { 661 | return { 662 | title: 'webix', 663 | slug: 'webix', 664 | website: 'https://webix.com/', 665 | version: safeGet(window, 'webix', 'version') 666 | } 667 | } 668 | } 669 | 670 | export const preact: Check = () => { 671 | const preact = safeGet(window, 'preact') || safeRequire(window, 'preact') 672 | const isPreactFound = doesAnyElement( 673 | document, 674 | el => el[Symbol.for('preactattr')] || el['__preactattr_'] 675 | ) 676 | 677 | if (preact || isPreactFound) { 678 | return { 679 | title: 'Preact', 680 | slug: 'preact', 681 | website: 'https://preactjs.com/', 682 | version: safeGet(preact, 'version') 683 | } 684 | } 685 | } 686 | 687 | export const chartjs: Check = () => { 688 | if (safeGet(window, 'Chart', 'instances')) { 689 | return { 690 | title: 'Chart.js', 691 | slug: 'chartjs', 692 | website: 'http://www.chartjs.org/' 693 | } 694 | } 695 | } 696 | 697 | export const raphael: Check = () => { 698 | if (safeGet(window, 'Raphael', 'version')) { 699 | return { 700 | title: 'Raphaël', 701 | slug: 'raphael', 702 | website: 'http://www.raphaeljs.com/', 703 | version: safeGet(window, 'Raphael', 'version') 704 | } 705 | } 706 | } 707 | 708 | export const amcharts: Check = () => { 709 | if (safeGet(window, 'AmCharts') || safeGet(window, 'amcharts2')) { 710 | return { 711 | title: 'amCharts', 712 | slug: 'amcharts', 713 | website: 'https://www.amcharts.com/' 714 | } 715 | } 716 | } 717 | 718 | export const echarts: Check = () => { 719 | if (safeGet(window, 'echarts', 'version')) { 720 | return { 721 | title: 'ECharts', 722 | slug: 'echarts', 723 | website: 'http://echarts.baidu.com/', 724 | version: safeGet(window, 'echarts', 'version') 725 | } 726 | } 727 | } 728 | 729 | export const lodash: Check = () => { 730 | if (safeGet(window, '_', 'VERSION')) { 731 | return { 732 | title: 'Lodash', 733 | slug: 'lodash', 734 | website: 'https://lodash.com/', 735 | version: safeGet(window, '_', 'VERSION') 736 | } 737 | } 738 | } 739 | 740 | export const amp: Check = () => { 741 | if ( 742 | safeGet(window, 'AMP') || 743 | safeGet(window, 'AMP_TAG') || 744 | safeGet(window, 'AMP_MODE') 745 | ) { 746 | return { 747 | title: 'AMP', 748 | slug: 'amp', 749 | website: 'https://www.ampproject.org/', 750 | version: safeGet(window, 'AMP_MODE', 'version') 751 | } 752 | } 753 | } 754 | 755 | export const highcharts: Check = () => { 756 | if (safeGet(window, 'Highcharts', 'version')) { 757 | return { 758 | title: 'Highscharts', 759 | slug: 'highcharts', 760 | website: 'https://www.highcharts.com/', 761 | version: safeGet(window, 'Highcharts', 'version') 762 | } 763 | } 764 | } 765 | 766 | export const handlebars: Check = () => { 767 | if (safeGet(window, 'Handlebars', 'VERSION')) { 768 | return { 769 | title: 'Handlebars', 770 | slug: 'handlebars', 771 | website: 'http://handlebarsjs.com/', 772 | version: safeGet(window, 'Handlebars', 'VERSION') 773 | } 774 | } 775 | } 776 | 777 | export const anime: Check = () => { 778 | if (safeGet(window, 'anime', 'version')) { 779 | return { 780 | title: 'anime', 781 | slug: 'anime', 782 | website: 'http://animejs.com/', 783 | version: safeGet(window, 'anime', 'version') 784 | } 785 | } 786 | } 787 | 788 | export const uikit: Check = () => { 789 | if (safeGet(window, 'UIkit', 'version')) { 790 | return { 791 | title: 'UIkit', 792 | slug: 'uikit', 793 | website: 'https://getuikit.com/', 794 | version: safeGet(window, 'UIkit', 'version') 795 | } 796 | } 797 | } 798 | 799 | export const yalla: Check = () => { 800 | if (safeGet(window, 'yalla')) { 801 | return { 802 | title: 'YallaJS', 803 | slug: 'yalla', 804 | website: 'http://yallajs.io/' 805 | } 806 | } 807 | } 808 | 809 | export const epoch: Check = () => { 810 | if (safeGet(window, 'Epoch')) { 811 | return { 812 | title: 'Epoch', 813 | slug: 'epoch', 814 | website: 'https://epochjs.github.io/epoch/' 815 | } 816 | } 817 | } 818 | 819 | export const ractive: Check = () => { 820 | if (safeGet(window, 'Ractive')) { 821 | return { 822 | title: 'Ractive', 823 | slug: 'ractive', 824 | website: 'https://ractive.js.org/', 825 | version: safeGet(window, 'Ractive', 'VERSION') 826 | } 827 | } 828 | } 829 | 830 | export const semantic: Check = () => { 831 | if (safeGet(window, 'semantic')) { 832 | return { 833 | title: 'Semantic UI', 834 | slug: 'semanticui', 835 | website: 'https://semantic-ui.com/' 836 | } 837 | } 838 | } 839 | 840 | export const bootstrap: Check = () => { 841 | if (safeGet(window, 'bootstrap')) { 842 | return { 843 | title: 'Bootstrap', 844 | slug: 'bootstrap', 845 | website: 'https://getbootstrap.com/' 846 | } 847 | } 848 | } 849 | 850 | export const foundation: Check = () => { 851 | if (safeGet(window, 'Foundation')) { 852 | return { 853 | title: 'Foundation', 854 | slug: 'foundation', 855 | website: 'https://foundation.zurb.com/', 856 | version: safeGet(window, 'Foundation', 'version') 857 | } 858 | } 859 | } 860 | 861 | export const maquette: Check = () => { 862 | if (safeGet(window, 'maquette')) { 863 | return { 864 | title: 'Мaquette', 865 | slug: 'maquette', 866 | website: 'https://maquettejs.org/' 867 | } 868 | } 869 | } 870 | -------------------------------------------------------------------------------- /src/checks/isObjectWithProperties.ts: -------------------------------------------------------------------------------- 1 | const isObjectWithProperties = (object: any, props: string[]) => { 2 | return ( 3 | object && props.every(x => Object.getOwnPropertyNames(object).includes(x)) 4 | ) 5 | } 6 | 7 | export default isObjectWithProperties 8 | -------------------------------------------------------------------------------- /src/checks/types.ts: -------------------------------------------------------------------------------- 1 | export interface Library { 2 | readonly title: string 3 | readonly slug: string 4 | readonly website: string 5 | readonly version?: string 6 | } 7 | 8 | export type Check = () => Library | undefined 9 | -------------------------------------------------------------------------------- /src/content.ts: -------------------------------------------------------------------------------- 1 | const injectScript = (file: string, node: string) => { 2 | const th = document.getElementsByTagName(node)[0] 3 | const s = document.createElement('script') 4 | s.setAttribute('type', 'text/javascript') 5 | s.setAttribute('src', file) 6 | th.appendChild(s) 7 | } 8 | 9 | let cachedResult 10 | 11 | chrome.runtime.onMessage.addListener((request, _, sendResponse) => { 12 | if (request.type === 'GET_STACK') { 13 | if (!cachedResult) { 14 | injectScript(chrome.extension.getURL('./build/checker.js'), 'body') 15 | 16 | const libInterval = setInterval(() => { 17 | const libs = ([ 18 | ...(document.querySelectorAll('.ui-stack-lib') as any) 19 | ] as HTMLElement[]).map(x => ({ ...x.dataset })) 20 | const noLibsFound = Boolean(document.querySelector('.ui-stack-no-libs')) 21 | 22 | if (noLibsFound) { 23 | cachedResult = [] 24 | sendResponse([]) 25 | clearInterval(libInterval) 26 | } 27 | 28 | if (libs.length !== 0) { 29 | cachedResult = libs 30 | sendResponse(libs) 31 | clearInterval(libInterval) 32 | } 33 | }, 1000) 34 | } else { 35 | sendResponse(cachedResult) 36 | } 37 | } 38 | 39 | return true 40 | }) 41 | -------------------------------------------------------------------------------- /src/popup.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 66 | 67 | 68 |
69 |
70 |
71 | 72 | -------------------------------------------------------------------------------- /src/popup.ts: -------------------------------------------------------------------------------- 1 | import { Library } from './checks/types' 2 | 3 | const sendRequest = () => { 4 | chrome.tabs.query({ currentWindow: true, active: true }, tabs => { 5 | if (tabs[0] && tabs[0].id) { 6 | chrome.tabs.sendMessage( 7 | tabs[0].id as number, 8 | { type: 'GET_STACK' }, 9 | renderStack 10 | ) 11 | 12 | const $message = document.querySelector('.message') 13 | 14 | if ($message) { 15 | $message.textContent = 'Loading...' 16 | } 17 | } 18 | }) 19 | } 20 | 21 | const renderStack = (libs: Library[]): void => { 22 | if (!libs) { 23 | sendRequest() 24 | return 25 | } 26 | 27 | const $container = document.querySelector('.container') as HTMLElement 28 | 29 | if (libs.length === 0) { 30 | $container.innerHTML = ` 31 |
Nothing found. Try again
32 | ` 33 | 34 | const $tryAgain = document.querySelector('.try-again') 35 | 36 | if ($tryAgain) { 37 | $tryAgain.addEventListener('click', sendRequest) 38 | } 39 | } else { 40 | $container.innerHTML = libs.reduce( 41 | (html, library) => ` 42 | ${html} 43 |
44 | 49 |
50 |
${library.title}
51 | ${library.website && 52 | `${library.website}`} 53 |
${library.version || ''}
54 |
55 |
56 | `, 57 | '' 58 | ) 59 | } 60 | 61 | ;[...(document.querySelectorAll('.website') as any)].forEach(el => { 62 | el.addEventListener('click', e => { 63 | chrome.tabs.create({ url: e.target.dataset.href }) 64 | }) 65 | }) 66 | } 67 | 68 | sendRequest() 69 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es6", 4 | "removeComments": true, 5 | "lib": ["es2015", "es2017", "dom"], 6 | "strictNullChecks": true, 7 | "noImplicitThis": true, 8 | "noUnusedLocals": true, 9 | "noUnusedParameters": true, 10 | "alwaysStrict": true, 11 | "noFallthroughCasesInSwitch": true, 12 | "baseUrl": "./src", 13 | "experimentalDecorators": true, 14 | "emitDecoratorMetadata": true, 15 | "types": [ 16 | "chrome" 17 | ] 18 | }, 19 | "exclude": [ 20 | "node_modules" 21 | ] 22 | } 23 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- 1 | const path = require('path') 2 | 3 | module.exports = { 4 | devtool: 'inline-sourcemap', 5 | entry: { 6 | content: path.resolve(__dirname, 'src', 'content.ts'), 7 | popup: path.resolve(__dirname, 'src', 'popup.ts'), 8 | checker: path.resolve(__dirname, 'src', 'checker.ts') 9 | }, 10 | output: { 11 | path: path.resolve(__dirname, 'build'), 12 | filename: '[name].js' 13 | }, 14 | module: { 15 | rules: [ 16 | { 17 | test: /\.ts$/, 18 | exclude: /node_modules/, 19 | loader: 'ts-loader' 20 | } 21 | ] 22 | }, 23 | resolve: { 24 | modules: [ 25 | path.resolve(__dirname, 'src') 26 | ], 27 | extensions: ['.js', '.ts'] 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /webpack.config.production.js: -------------------------------------------------------------------------------- 1 | const path = require('path') 2 | const webpack = require('webpack') 3 | 4 | module.exports = { 5 | entry: { 6 | content: path.resolve(__dirname, 'src', 'content.ts'), 7 | popup: path.resolve(__dirname, 'src', 'popup.ts'), 8 | checker: path.resolve(__dirname, 'src', 'checker.ts') 9 | }, 10 | output: { 11 | path: path.resolve(__dirname, 'build'), 12 | filename: '[name].js' 13 | }, 14 | module: { 15 | rules: [ 16 | { 17 | test: /\.ts$/, 18 | exclude: /node_modules/, 19 | loader: 'ts-loader' 20 | } 21 | ] 22 | }, 23 | resolve: { 24 | modules: [ 25 | path.resolve(__dirname, 'src') 26 | ], 27 | extensions: ['.js', '.ts'] 28 | }, 29 | plugins: [ 30 | new webpack.DefinePlugin({ 31 | 'process.env.NODE_ENV': JSON.stringify('production') 32 | }), 33 | new webpack.optimize.AggressiveMergingPlugin() 34 | ] 35 | } 36 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@types/chrome@^0.0.50": 6 | version "0.0.50" 7 | resolved "https://registry.yarnpkg.com/@types/chrome/-/chrome-0.0.50.tgz#864086a08a9e47b4ff51d2910731dba92d5a20dc" 8 | dependencies: 9 | "@types/filesystem" "*" 10 | 11 | "@types/filesystem@*": 12 | version "0.0.28" 13 | resolved "https://registry.yarnpkg.com/@types/filesystem/-/filesystem-0.0.28.tgz#3fd7735830f2c7413cb5ac45780bc45904697b0e" 14 | dependencies: 15 | "@types/filewriter" "*" 16 | 17 | "@types/filewriter@*": 18 | version "0.0.28" 19 | resolved "https://registry.yarnpkg.com/@types/filewriter/-/filewriter-0.0.28.tgz#c054e8af4d9dd75db4e63abc76f885168714d4b3" 20 | 21 | abbrev@1: 22 | version "1.1.1" 23 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 24 | 25 | acorn-dynamic-import@^2.0.0: 26 | version "2.0.2" 27 | resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz#c752bd210bef679501b6c6cb7fc84f8f47158cc4" 28 | dependencies: 29 | acorn "^4.0.3" 30 | 31 | acorn@^4.0.3: 32 | version "4.0.13" 33 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 34 | 35 | acorn@^5.0.0: 36 | version "5.1.2" 37 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.1.2.tgz#911cb53e036807cf0fa778dc5d370fbd864246d7" 38 | 39 | ajv-keywords@^2.0.0: 40 | version "2.1.0" 41 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.0.tgz#a296e17f7bfae7c1ce4f7e0de53d29cb32162df0" 42 | 43 | ajv@^4.9.1: 44 | version "4.11.8" 45 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 46 | dependencies: 47 | co "^4.6.0" 48 | json-stable-stringify "^1.0.1" 49 | 50 | ajv@^5.1.5: 51 | version "5.3.0" 52 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.3.0.tgz#4414ff74a50879c208ee5fdc826e32c303549eda" 53 | dependencies: 54 | co "^4.6.0" 55 | fast-deep-equal "^1.0.0" 56 | fast-json-stable-stringify "^2.0.0" 57 | json-schema-traverse "^0.3.0" 58 | 59 | align-text@^0.1.1, align-text@^0.1.3: 60 | version "0.1.4" 61 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 62 | dependencies: 63 | kind-of "^3.0.2" 64 | longest "^1.0.1" 65 | repeat-string "^1.5.2" 66 | 67 | ansi-regex@^2.0.0: 68 | version "2.1.1" 69 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 70 | 71 | ansi-regex@^3.0.0: 72 | version "3.0.0" 73 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 74 | 75 | ansi-styles@^3.1.0: 76 | version "3.2.0" 77 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 78 | dependencies: 79 | color-convert "^1.9.0" 80 | 81 | anymatch@^1.3.0: 82 | version "1.3.2" 83 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 84 | dependencies: 85 | micromatch "^2.1.5" 86 | normalize-path "^2.0.0" 87 | 88 | aproba@^1.0.3: 89 | version "1.2.0" 90 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 91 | 92 | are-we-there-yet@~1.1.2: 93 | version "1.1.4" 94 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 95 | dependencies: 96 | delegates "^1.0.0" 97 | readable-stream "^2.0.6" 98 | 99 | arr-diff@^2.0.0: 100 | version "2.0.0" 101 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 102 | dependencies: 103 | arr-flatten "^1.0.1" 104 | 105 | arr-flatten@^1.0.1: 106 | version "1.1.0" 107 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 108 | 109 | array-unique@^0.2.1: 110 | version "0.2.1" 111 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 112 | 113 | asn1.js@^4.0.0: 114 | version "4.9.1" 115 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.1.tgz#48ba240b45a9280e94748990ba597d216617fd40" 116 | dependencies: 117 | bn.js "^4.0.0" 118 | inherits "^2.0.1" 119 | minimalistic-assert "^1.0.0" 120 | 121 | asn1@~0.2.3: 122 | version "0.2.4" 123 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" 124 | dependencies: 125 | safer-buffer "~2.1.0" 126 | 127 | assert-plus@1.0.0, assert-plus@^1.0.0: 128 | version "1.0.0" 129 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 130 | 131 | assert-plus@^0.2.0: 132 | version "0.2.0" 133 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 134 | 135 | assert@^1.1.1: 136 | version "1.4.1" 137 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" 138 | dependencies: 139 | util "0.10.3" 140 | 141 | async-each@^1.0.0: 142 | version "1.0.1" 143 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 144 | 145 | async@^2.1.2: 146 | version "2.5.0" 147 | resolved "https://registry.yarnpkg.com/async/-/async-2.5.0.tgz#843190fd6b7357a0b9e1c956edddd5ec8462b54d" 148 | dependencies: 149 | lodash "^4.14.0" 150 | 151 | asynckit@^0.4.0: 152 | version "0.4.0" 153 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 154 | 155 | aws-sign2@~0.6.0: 156 | version "0.6.0" 157 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 158 | 159 | aws4@^1.2.1: 160 | version "1.6.0" 161 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 162 | 163 | balanced-match@^1.0.0: 164 | version "1.0.0" 165 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 166 | 167 | base64-js@^1.0.2: 168 | version "1.2.1" 169 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.1.tgz#a91947da1f4a516ea38e5b4ec0ec3773675e0886" 170 | 171 | bcrypt-pbkdf@^1.0.0: 172 | version "1.0.2" 173 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" 174 | dependencies: 175 | tweetnacl "^0.14.3" 176 | 177 | big.js@^3.1.3: 178 | version "3.2.0" 179 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.2.0.tgz#a5fc298b81b9e0dca2e458824784b65c52ba588e" 180 | 181 | binary-extensions@^1.0.0: 182 | version "1.10.0" 183 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.10.0.tgz#9aeb9a6c5e88638aad171e167f5900abe24835d0" 184 | 185 | block-stream@*: 186 | version "0.0.9" 187 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 188 | dependencies: 189 | inherits "~2.0.0" 190 | 191 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: 192 | version "4.11.9" 193 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.9.tgz#26d556829458f9d1e81fc48952493d0ba3507828" 194 | 195 | boom@2.x.x: 196 | version "2.10.1" 197 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 198 | dependencies: 199 | hoek "2.x.x" 200 | 201 | brace-expansion@^1.1.7: 202 | version "1.1.11" 203 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 204 | dependencies: 205 | balanced-match "^1.0.0" 206 | concat-map "0.0.1" 207 | 208 | braces@^1.8.2: 209 | version "1.8.5" 210 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 211 | dependencies: 212 | expand-range "^1.8.1" 213 | preserve "^0.2.0" 214 | repeat-element "^1.1.2" 215 | 216 | brorand@^1.0.1: 217 | version "1.1.0" 218 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 219 | 220 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: 221 | version "1.1.1" 222 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.1.1.tgz#38b7ab55edb806ff2dcda1a7f1620773a477c49f" 223 | dependencies: 224 | buffer-xor "^1.0.3" 225 | cipher-base "^1.0.0" 226 | create-hash "^1.1.0" 227 | evp_bytestokey "^1.0.3" 228 | inherits "^2.0.1" 229 | safe-buffer "^5.0.1" 230 | 231 | browserify-cipher@^1.0.0: 232 | version "1.0.0" 233 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" 234 | dependencies: 235 | browserify-aes "^1.0.4" 236 | browserify-des "^1.0.0" 237 | evp_bytestokey "^1.0.0" 238 | 239 | browserify-des@^1.0.0: 240 | version "1.0.0" 241 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" 242 | dependencies: 243 | cipher-base "^1.0.1" 244 | des.js "^1.0.0" 245 | inherits "^2.0.1" 246 | 247 | browserify-rsa@^4.0.0: 248 | version "4.0.1" 249 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" 250 | dependencies: 251 | bn.js "^4.1.0" 252 | randombytes "^2.0.1" 253 | 254 | browserify-sign@^4.0.0: 255 | version "4.0.4" 256 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" 257 | dependencies: 258 | bn.js "^4.1.1" 259 | browserify-rsa "^4.0.0" 260 | create-hash "^1.1.0" 261 | create-hmac "^1.1.2" 262 | elliptic "^6.0.0" 263 | inherits "^2.0.1" 264 | parse-asn1 "^5.0.0" 265 | 266 | browserify-zlib@^0.1.4: 267 | version "0.1.4" 268 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d" 269 | dependencies: 270 | pako "~0.2.0" 271 | 272 | buffer-xor@^1.0.3: 273 | version "1.0.3" 274 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 275 | 276 | buffer@^4.3.0: 277 | version "4.9.1" 278 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" 279 | dependencies: 280 | base64-js "^1.0.2" 281 | ieee754 "^1.1.4" 282 | isarray "^1.0.0" 283 | 284 | builtin-modules@^1.0.0: 285 | version "1.1.1" 286 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 287 | 288 | builtin-status-codes@^3.0.0: 289 | version "3.0.0" 290 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" 291 | 292 | camelcase@^1.0.2: 293 | version "1.2.1" 294 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 295 | 296 | camelcase@^4.1.0: 297 | version "4.1.0" 298 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 299 | 300 | caseless@~0.12.0: 301 | version "0.12.0" 302 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 303 | 304 | center-align@^0.1.1: 305 | version "0.1.3" 306 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 307 | dependencies: 308 | align-text "^0.1.3" 309 | lazy-cache "^1.0.3" 310 | 311 | chalk@^2.3.0: 312 | version "2.3.0" 313 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba" 314 | dependencies: 315 | ansi-styles "^3.1.0" 316 | escape-string-regexp "^1.0.5" 317 | supports-color "^4.0.0" 318 | 319 | chokidar@^1.7.0: 320 | version "1.7.0" 321 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 322 | dependencies: 323 | anymatch "^1.3.0" 324 | async-each "^1.0.0" 325 | glob-parent "^2.0.0" 326 | inherits "^2.0.1" 327 | is-binary-path "^1.0.0" 328 | is-glob "^2.0.0" 329 | path-is-absolute "^1.0.0" 330 | readdirp "^2.0.0" 331 | optionalDependencies: 332 | fsevents "^1.0.0" 333 | 334 | cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: 335 | version "1.0.4" 336 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" 337 | dependencies: 338 | inherits "^2.0.1" 339 | safe-buffer "^5.0.1" 340 | 341 | cliui@^2.1.0: 342 | version "2.1.0" 343 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 344 | dependencies: 345 | center-align "^0.1.1" 346 | right-align "^0.1.1" 347 | wordwrap "0.0.2" 348 | 349 | cliui@^3.2.0: 350 | version "3.2.0" 351 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 352 | dependencies: 353 | string-width "^1.0.1" 354 | strip-ansi "^3.0.1" 355 | wrap-ansi "^2.0.0" 356 | 357 | co@^4.6.0: 358 | version "4.6.0" 359 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 360 | 361 | code-point-at@^1.0.0: 362 | version "1.1.0" 363 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 364 | 365 | color-convert@^1.9.0: 366 | version "1.9.0" 367 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 368 | dependencies: 369 | color-name "^1.1.1" 370 | 371 | color-name@^1.1.1: 372 | version "1.1.3" 373 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 374 | 375 | combined-stream@^1.0.5, combined-stream@~1.0.5: 376 | version "1.0.5" 377 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 378 | dependencies: 379 | delayed-stream "~1.0.0" 380 | 381 | concat-map@0.0.1: 382 | version "0.0.1" 383 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 384 | 385 | console-browserify@^1.1.0: 386 | version "1.1.0" 387 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" 388 | dependencies: 389 | date-now "^0.1.4" 390 | 391 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 392 | version "1.1.0" 393 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 394 | 395 | constants-browserify@^1.0.0: 396 | version "1.0.0" 397 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" 398 | 399 | core-util-is@1.0.2, core-util-is@~1.0.0: 400 | version "1.0.2" 401 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 402 | 403 | create-ecdh@^4.0.0: 404 | version "4.0.0" 405 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" 406 | dependencies: 407 | bn.js "^4.1.0" 408 | elliptic "^6.0.0" 409 | 410 | create-hash@^1.1.0, create-hash@^1.1.2: 411 | version "1.1.3" 412 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.3.tgz#606042ac8b9262750f483caddab0f5819172d8fd" 413 | dependencies: 414 | cipher-base "^1.0.1" 415 | inherits "^2.0.1" 416 | ripemd160 "^2.0.0" 417 | sha.js "^2.4.0" 418 | 419 | create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: 420 | version "1.1.6" 421 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.6.tgz#acb9e221a4e17bdb076e90657c42b93e3726cf06" 422 | dependencies: 423 | cipher-base "^1.0.3" 424 | create-hash "^1.1.0" 425 | inherits "^2.0.1" 426 | ripemd160 "^2.0.0" 427 | safe-buffer "^5.0.1" 428 | sha.js "^2.4.8" 429 | 430 | cross-spawn@^5.0.1: 431 | version "5.1.0" 432 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 433 | dependencies: 434 | lru-cache "^4.0.1" 435 | shebang-command "^1.2.0" 436 | which "^1.2.9" 437 | 438 | cryptiles@2.x.x: 439 | version "2.0.5" 440 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 441 | dependencies: 442 | boom "2.x.x" 443 | 444 | crypto-browserify@^3.11.0: 445 | version "3.11.1" 446 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.11.1.tgz#948945efc6757a400d6e5e5af47194d10064279f" 447 | dependencies: 448 | browserify-cipher "^1.0.0" 449 | browserify-sign "^4.0.0" 450 | create-ecdh "^4.0.0" 451 | create-hash "^1.1.0" 452 | create-hmac "^1.1.0" 453 | diffie-hellman "^5.0.0" 454 | inherits "^2.0.1" 455 | pbkdf2 "^3.0.3" 456 | public-encrypt "^4.0.0" 457 | randombytes "^2.0.0" 458 | 459 | d@1: 460 | version "1.0.0" 461 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 462 | dependencies: 463 | es5-ext "^0.10.9" 464 | 465 | dashdash@^1.12.0: 466 | version "1.14.1" 467 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 468 | dependencies: 469 | assert-plus "^1.0.0" 470 | 471 | date-now@^0.1.4: 472 | version "0.1.4" 473 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 474 | 475 | debug@^2.2.0: 476 | version "2.6.9" 477 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 478 | dependencies: 479 | ms "2.0.0" 480 | 481 | decamelize@^1.0.0, decamelize@^1.1.1: 482 | version "1.2.0" 483 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 484 | 485 | deep-extend@~0.4.0: 486 | version "0.4.2" 487 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 488 | 489 | delayed-stream@~1.0.0: 490 | version "1.0.0" 491 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 492 | 493 | delegates@^1.0.0: 494 | version "1.0.0" 495 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 496 | 497 | des.js@^1.0.0: 498 | version "1.0.0" 499 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" 500 | dependencies: 501 | inherits "^2.0.1" 502 | minimalistic-assert "^1.0.0" 503 | 504 | diffie-hellman@^5.0.0: 505 | version "5.0.2" 506 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" 507 | dependencies: 508 | bn.js "^4.1.0" 509 | miller-rabin "^4.0.0" 510 | randombytes "^2.0.0" 511 | 512 | domain-browser@^1.1.1: 513 | version "1.1.7" 514 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" 515 | 516 | ecc-jsbn@~0.1.1: 517 | version "0.1.2" 518 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" 519 | dependencies: 520 | jsbn "~0.1.0" 521 | safer-buffer "^2.1.0" 522 | 523 | elliptic@^6.0.0: 524 | version "6.5.3" 525 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.3.tgz#cb59eb2efdaf73a0bd78ccd7015a62ad6e0f93d6" 526 | dependencies: 527 | bn.js "^4.4.0" 528 | brorand "^1.0.1" 529 | hash.js "^1.0.0" 530 | hmac-drbg "^1.0.0" 531 | inherits "^2.0.1" 532 | minimalistic-assert "^1.0.0" 533 | minimalistic-crypto-utils "^1.0.0" 534 | 535 | emojis-list@^2.0.0: 536 | version "2.1.0" 537 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" 538 | 539 | enhanced-resolve@^3.0.0, enhanced-resolve@^3.4.0: 540 | version "3.4.1" 541 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz#0421e339fd71419b3da13d129b3979040230476e" 542 | dependencies: 543 | graceful-fs "^4.1.2" 544 | memory-fs "^0.4.0" 545 | object-assign "^4.0.1" 546 | tapable "^0.2.7" 547 | 548 | errno@^0.1.3: 549 | version "0.1.4" 550 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 551 | dependencies: 552 | prr "~0.0.0" 553 | 554 | error-ex@^1.2.0: 555 | version "1.3.1" 556 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 557 | dependencies: 558 | is-arrayish "^0.2.1" 559 | 560 | es5-ext@^0.10.14, es5-ext@^0.10.35, es5-ext@^0.10.9, es5-ext@~0.10.14: 561 | version "0.10.35" 562 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.35.tgz#18ee858ce6a3c45c7d79e91c15fcca9ec568494f" 563 | dependencies: 564 | es6-iterator "~2.0.1" 565 | es6-symbol "~3.1.1" 566 | 567 | es6-iterator@^2.0.1, es6-iterator@~2.0.1: 568 | version "2.0.3" 569 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" 570 | dependencies: 571 | d "1" 572 | es5-ext "^0.10.35" 573 | es6-symbol "^3.1.1" 574 | 575 | es6-map@^0.1.3: 576 | version "0.1.5" 577 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" 578 | dependencies: 579 | d "1" 580 | es5-ext "~0.10.14" 581 | es6-iterator "~2.0.1" 582 | es6-set "~0.1.5" 583 | es6-symbol "~3.1.1" 584 | event-emitter "~0.3.5" 585 | 586 | es6-set@~0.1.5: 587 | version "0.1.5" 588 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" 589 | dependencies: 590 | d "1" 591 | es5-ext "~0.10.14" 592 | es6-iterator "~2.0.1" 593 | es6-symbol "3.1.1" 594 | event-emitter "~0.3.5" 595 | 596 | es6-symbol@3.1.1, es6-symbol@^3.1.1, es6-symbol@~3.1.1: 597 | version "3.1.1" 598 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 599 | dependencies: 600 | d "1" 601 | es5-ext "~0.10.14" 602 | 603 | es6-weak-map@^2.0.1: 604 | version "2.0.2" 605 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" 606 | dependencies: 607 | d "1" 608 | es5-ext "^0.10.14" 609 | es6-iterator "^2.0.1" 610 | es6-symbol "^3.1.1" 611 | 612 | escape-string-regexp@^1.0.5: 613 | version "1.0.5" 614 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 615 | 616 | escope@^3.6.0: 617 | version "3.6.0" 618 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 619 | dependencies: 620 | es6-map "^0.1.3" 621 | es6-weak-map "^2.0.1" 622 | esrecurse "^4.1.0" 623 | estraverse "^4.1.1" 624 | 625 | esrecurse@^4.1.0: 626 | version "4.2.0" 627 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163" 628 | dependencies: 629 | estraverse "^4.1.0" 630 | object-assign "^4.0.1" 631 | 632 | estraverse@^4.1.0, estraverse@^4.1.1: 633 | version "4.2.0" 634 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 635 | 636 | event-emitter@~0.3.5: 637 | version "0.3.5" 638 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 639 | dependencies: 640 | d "1" 641 | es5-ext "~0.10.14" 642 | 643 | events@^1.0.0: 644 | version "1.1.1" 645 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 646 | 647 | evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: 648 | version "1.0.3" 649 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" 650 | dependencies: 651 | md5.js "^1.3.4" 652 | safe-buffer "^5.1.1" 653 | 654 | execa@^0.7.0: 655 | version "0.7.0" 656 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 657 | dependencies: 658 | cross-spawn "^5.0.1" 659 | get-stream "^3.0.0" 660 | is-stream "^1.1.0" 661 | npm-run-path "^2.0.0" 662 | p-finally "^1.0.0" 663 | signal-exit "^3.0.0" 664 | strip-eof "^1.0.0" 665 | 666 | expand-brackets@^0.1.4: 667 | version "0.1.5" 668 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 669 | dependencies: 670 | is-posix-bracket "^0.1.0" 671 | 672 | expand-range@^1.8.1: 673 | version "1.8.2" 674 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 675 | dependencies: 676 | fill-range "^2.1.0" 677 | 678 | extend@~3.0.0: 679 | version "3.0.2" 680 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 681 | 682 | extglob@^0.3.1: 683 | version "0.3.2" 684 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 685 | dependencies: 686 | is-extglob "^1.0.0" 687 | 688 | extsprintf@1.3.0, extsprintf@^1.2.0: 689 | version "1.3.0" 690 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 691 | 692 | fast-deep-equal@^1.0.0: 693 | version "1.0.0" 694 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 695 | 696 | fast-json-stable-stringify@^2.0.0: 697 | version "2.0.0" 698 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 699 | 700 | filename-regex@^2.0.0: 701 | version "2.0.1" 702 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 703 | 704 | fill-range@^2.1.0: 705 | version "2.2.3" 706 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 707 | dependencies: 708 | is-number "^2.1.0" 709 | isobject "^2.0.0" 710 | randomatic "^1.1.3" 711 | repeat-element "^1.1.2" 712 | repeat-string "^1.5.2" 713 | 714 | find-up@^2.0.0: 715 | version "2.1.0" 716 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 717 | dependencies: 718 | locate-path "^2.0.0" 719 | 720 | for-in@^1.0.1: 721 | version "1.0.2" 722 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 723 | 724 | for-own@^0.1.4: 725 | version "0.1.5" 726 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 727 | dependencies: 728 | for-in "^1.0.1" 729 | 730 | forever-agent@~0.6.1: 731 | version "0.6.1" 732 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 733 | 734 | form-data@~2.1.1: 735 | version "2.1.4" 736 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 737 | dependencies: 738 | asynckit "^0.4.0" 739 | combined-stream "^1.0.5" 740 | mime-types "^2.1.12" 741 | 742 | fs.realpath@^1.0.0: 743 | version "1.0.0" 744 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 745 | 746 | fsevents@^1.0.0: 747 | version "1.1.2" 748 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4" 749 | dependencies: 750 | nan "^2.3.0" 751 | node-pre-gyp "^0.6.36" 752 | 753 | fstream-ignore@^1.0.5: 754 | version "1.0.5" 755 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 756 | dependencies: 757 | fstream "^1.0.0" 758 | inherits "2" 759 | minimatch "^3.0.0" 760 | 761 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 762 | version "1.0.12" 763 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.12.tgz#4e8ba8ee2d48be4f7d0de505455548eae5932045" 764 | dependencies: 765 | graceful-fs "^4.1.2" 766 | inherits "~2.0.0" 767 | mkdirp ">=0.5 0" 768 | rimraf "2" 769 | 770 | gauge@~2.7.3: 771 | version "2.7.4" 772 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 773 | dependencies: 774 | aproba "^1.0.3" 775 | console-control-strings "^1.0.0" 776 | has-unicode "^2.0.0" 777 | object-assign "^4.1.0" 778 | signal-exit "^3.0.0" 779 | string-width "^1.0.1" 780 | strip-ansi "^3.0.1" 781 | wide-align "^1.1.0" 782 | 783 | get-caller-file@^1.0.1: 784 | version "1.0.2" 785 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 786 | 787 | get-stream@^3.0.0: 788 | version "3.0.0" 789 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 790 | 791 | getpass@^0.1.1: 792 | version "0.1.7" 793 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 794 | dependencies: 795 | assert-plus "^1.0.0" 796 | 797 | glob-base@^0.3.0: 798 | version "0.3.0" 799 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 800 | dependencies: 801 | glob-parent "^2.0.0" 802 | is-glob "^2.0.0" 803 | 804 | glob-parent@^2.0.0: 805 | version "2.0.0" 806 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 807 | dependencies: 808 | is-glob "^2.0.0" 809 | 810 | glob@^7.1.3: 811 | version "7.1.5" 812 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.5.tgz#6714c69bee20f3c3e64c4dd905553e532b40cdc0" 813 | dependencies: 814 | fs.realpath "^1.0.0" 815 | inflight "^1.0.4" 816 | inherits "2" 817 | minimatch "^3.0.4" 818 | once "^1.3.0" 819 | path-is-absolute "^1.0.0" 820 | 821 | graceful-fs@^4.1.2: 822 | version "4.2.3" 823 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.3.tgz#4a12ff1b60376ef09862c2093edd908328be8423" 824 | 825 | har-schema@^1.0.5: 826 | version "1.0.5" 827 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 828 | 829 | har-validator@~4.2.1: 830 | version "4.2.1" 831 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 832 | dependencies: 833 | ajv "^4.9.1" 834 | har-schema "^1.0.5" 835 | 836 | has-flag@^2.0.0: 837 | version "2.0.0" 838 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 839 | 840 | has-unicode@^2.0.0: 841 | version "2.0.1" 842 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 843 | 844 | hash-base@^2.0.0: 845 | version "2.0.2" 846 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-2.0.2.tgz#66ea1d856db4e8a5470cadf6fce23ae5244ef2e1" 847 | dependencies: 848 | inherits "^2.0.1" 849 | 850 | hash-base@^3.0.0: 851 | version "3.0.4" 852 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" 853 | dependencies: 854 | inherits "^2.0.1" 855 | safe-buffer "^5.0.1" 856 | 857 | hash.js@^1.0.0, hash.js@^1.0.3: 858 | version "1.1.7" 859 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" 860 | dependencies: 861 | inherits "^2.0.3" 862 | minimalistic-assert "^1.0.1" 863 | 864 | hawk@3.1.3, hawk@~3.1.3: 865 | version "3.1.3" 866 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 867 | dependencies: 868 | boom "2.x.x" 869 | cryptiles "2.x.x" 870 | hoek "2.x.x" 871 | sntp "1.x.x" 872 | 873 | hmac-drbg@^1.0.0: 874 | version "1.0.1" 875 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" 876 | dependencies: 877 | hash.js "^1.0.3" 878 | minimalistic-assert "^1.0.0" 879 | minimalistic-crypto-utils "^1.0.1" 880 | 881 | hoek@2.x.x: 882 | version "2.16.3" 883 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 884 | 885 | hosted-git-info@^2.1.4: 886 | version "2.5.0" 887 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 888 | 889 | http-signature@~1.1.0: 890 | version "1.1.1" 891 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 892 | dependencies: 893 | assert-plus "^0.2.0" 894 | jsprim "^1.2.2" 895 | sshpk "^1.7.0" 896 | 897 | https-browserify@0.0.1: 898 | version "0.0.1" 899 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82" 900 | 901 | ieee754@^1.1.4: 902 | version "1.1.8" 903 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 904 | 905 | indexof@0.0.1: 906 | version "0.0.1" 907 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 908 | 909 | inflight@^1.0.4: 910 | version "1.0.6" 911 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 912 | dependencies: 913 | once "^1.3.0" 914 | wrappy "1" 915 | 916 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: 917 | version "2.0.4" 918 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 919 | 920 | inherits@2.0.1: 921 | version "2.0.1" 922 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 923 | 924 | ini@~1.3.0: 925 | version "1.3.4" 926 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 927 | 928 | interpret@^1.0.0: 929 | version "1.0.4" 930 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.4.tgz#820cdd588b868ffb191a809506d6c9c8f212b1b0" 931 | 932 | invert-kv@^1.0.0: 933 | version "1.0.0" 934 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 935 | 936 | is-arrayish@^0.2.1: 937 | version "0.2.1" 938 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 939 | 940 | is-binary-path@^1.0.0: 941 | version "1.0.1" 942 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 943 | dependencies: 944 | binary-extensions "^1.0.0" 945 | 946 | is-buffer@^1.1.5: 947 | version "1.1.6" 948 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 949 | 950 | is-builtin-module@^1.0.0: 951 | version "1.0.0" 952 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 953 | dependencies: 954 | builtin-modules "^1.0.0" 955 | 956 | is-dotfile@^1.0.0: 957 | version "1.0.3" 958 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 959 | 960 | is-equal-shallow@^0.1.3: 961 | version "0.1.3" 962 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 963 | dependencies: 964 | is-primitive "^2.0.0" 965 | 966 | is-extendable@^0.1.1: 967 | version "0.1.1" 968 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 969 | 970 | is-extglob@^1.0.0: 971 | version "1.0.0" 972 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 973 | 974 | is-fullwidth-code-point@^1.0.0: 975 | version "1.0.0" 976 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 977 | dependencies: 978 | number-is-nan "^1.0.0" 979 | 980 | is-fullwidth-code-point@^2.0.0: 981 | version "2.0.0" 982 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 983 | 984 | is-glob@^2.0.0, is-glob@^2.0.1: 985 | version "2.0.1" 986 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 987 | dependencies: 988 | is-extglob "^1.0.0" 989 | 990 | is-number@^2.1.0: 991 | version "2.1.0" 992 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 993 | dependencies: 994 | kind-of "^3.0.2" 995 | 996 | is-number@^3.0.0: 997 | version "3.0.0" 998 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 999 | dependencies: 1000 | kind-of "^3.0.2" 1001 | 1002 | is-posix-bracket@^0.1.0: 1003 | version "0.1.1" 1004 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1005 | 1006 | is-primitive@^2.0.0: 1007 | version "2.0.0" 1008 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1009 | 1010 | is-stream@^1.1.0: 1011 | version "1.1.0" 1012 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1013 | 1014 | is-typedarray@~1.0.0: 1015 | version "1.0.0" 1016 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1017 | 1018 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1019 | version "1.0.0" 1020 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1021 | 1022 | isexe@^2.0.0: 1023 | version "2.0.0" 1024 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1025 | 1026 | isobject@^2.0.0: 1027 | version "2.1.0" 1028 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1029 | dependencies: 1030 | isarray "1.0.0" 1031 | 1032 | isstream@~0.1.2: 1033 | version "0.1.2" 1034 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1035 | 1036 | jsbn@~0.1.0: 1037 | version "0.1.1" 1038 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1039 | 1040 | json-loader@^0.5.4: 1041 | version "0.5.7" 1042 | resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.7.tgz#dca14a70235ff82f0ac9a3abeb60d337a365185d" 1043 | 1044 | json-schema-traverse@^0.3.0: 1045 | version "0.3.1" 1046 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 1047 | 1048 | json-schema@0.2.3: 1049 | version "0.2.3" 1050 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1051 | 1052 | json-stable-stringify@^1.0.1: 1053 | version "1.0.1" 1054 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1055 | dependencies: 1056 | jsonify "~0.0.0" 1057 | 1058 | json-stringify-safe@~5.0.1: 1059 | version "5.0.1" 1060 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1061 | 1062 | json5@^0.5.0, json5@^0.5.1: 1063 | version "0.5.1" 1064 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1065 | 1066 | jsonify@~0.0.0: 1067 | version "0.0.0" 1068 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1069 | 1070 | jsprim@^1.2.2: 1071 | version "1.4.1" 1072 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1073 | dependencies: 1074 | assert-plus "1.0.0" 1075 | extsprintf "1.3.0" 1076 | json-schema "0.2.3" 1077 | verror "1.10.0" 1078 | 1079 | kind-of@^3.0.2: 1080 | version "3.2.2" 1081 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1082 | dependencies: 1083 | is-buffer "^1.1.5" 1084 | 1085 | kind-of@^4.0.0: 1086 | version "4.0.0" 1087 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1088 | dependencies: 1089 | is-buffer "^1.1.5" 1090 | 1091 | lazy-cache@^1.0.3: 1092 | version "1.0.4" 1093 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1094 | 1095 | lcid@^1.0.0: 1096 | version "1.0.0" 1097 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1098 | dependencies: 1099 | invert-kv "^1.0.0" 1100 | 1101 | load-json-file@^2.0.0: 1102 | version "2.0.0" 1103 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 1104 | dependencies: 1105 | graceful-fs "^4.1.2" 1106 | parse-json "^2.2.0" 1107 | pify "^2.0.0" 1108 | strip-bom "^3.0.0" 1109 | 1110 | loader-runner@^2.3.0: 1111 | version "2.3.0" 1112 | resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.3.0.tgz#f482aea82d543e07921700d5a46ef26fdac6b8a2" 1113 | 1114 | loader-utils@^1.0.2, loader-utils@^1.1.0: 1115 | version "1.1.0" 1116 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd" 1117 | dependencies: 1118 | big.js "^3.1.3" 1119 | emojis-list "^2.0.0" 1120 | json5 "^0.5.0" 1121 | 1122 | locate-path@^2.0.0: 1123 | version "2.0.0" 1124 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1125 | dependencies: 1126 | p-locate "^2.0.0" 1127 | path-exists "^3.0.0" 1128 | 1129 | lodash@^4.14.0: 1130 | version "4.17.19" 1131 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.19.tgz#e48ddedbe30b3321783c5b4301fbd353bc1e4a4b" 1132 | 1133 | longest@^1.0.1: 1134 | version "1.0.1" 1135 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 1136 | 1137 | lru-cache@^4.0.1: 1138 | version "4.1.1" 1139 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 1140 | dependencies: 1141 | pseudomap "^1.0.2" 1142 | yallist "^2.1.2" 1143 | 1144 | md5.js@^1.3.4: 1145 | version "1.3.4" 1146 | resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.4.tgz#e9bdbde94a20a5ac18b04340fc5764d5b09d901d" 1147 | dependencies: 1148 | hash-base "^3.0.0" 1149 | inherits "^2.0.1" 1150 | 1151 | mem@^1.1.0: 1152 | version "1.1.0" 1153 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 1154 | dependencies: 1155 | mimic-fn "^1.0.0" 1156 | 1157 | memory-fs@^0.4.0, memory-fs@~0.4.1: 1158 | version "0.4.1" 1159 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" 1160 | dependencies: 1161 | errno "^0.1.3" 1162 | readable-stream "^2.0.1" 1163 | 1164 | micromatch@^2.1.5: 1165 | version "2.3.11" 1166 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1167 | dependencies: 1168 | arr-diff "^2.0.0" 1169 | array-unique "^0.2.1" 1170 | braces "^1.8.2" 1171 | expand-brackets "^0.1.4" 1172 | extglob "^0.3.1" 1173 | filename-regex "^2.0.0" 1174 | is-extglob "^1.0.0" 1175 | is-glob "^2.0.1" 1176 | kind-of "^3.0.2" 1177 | normalize-path "^2.0.1" 1178 | object.omit "^2.0.0" 1179 | parse-glob "^3.0.4" 1180 | regex-cache "^0.4.2" 1181 | 1182 | miller-rabin@^4.0.0: 1183 | version "4.0.1" 1184 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" 1185 | dependencies: 1186 | bn.js "^4.0.0" 1187 | brorand "^1.0.1" 1188 | 1189 | mime-db@~1.30.0: 1190 | version "1.30.0" 1191 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 1192 | 1193 | mime-types@^2.1.12, mime-types@~2.1.7: 1194 | version "2.1.17" 1195 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 1196 | dependencies: 1197 | mime-db "~1.30.0" 1198 | 1199 | mimic-fn@^1.0.0: 1200 | version "1.1.0" 1201 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 1202 | 1203 | minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: 1204 | version "1.0.1" 1205 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" 1206 | 1207 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: 1208 | version "1.0.1" 1209 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 1210 | 1211 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 1212 | version "3.0.4" 1213 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1214 | dependencies: 1215 | brace-expansion "^1.1.7" 1216 | 1217 | minimist@0.0.8: 1218 | version "0.0.8" 1219 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1220 | 1221 | minimist@^1.2.0: 1222 | version "1.2.0" 1223 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1224 | 1225 | "mkdirp@>=0.5 0", mkdirp@^0.5.1, mkdirp@~0.5.0: 1226 | version "0.5.1" 1227 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1228 | dependencies: 1229 | minimist "0.0.8" 1230 | 1231 | ms@2.0.0: 1232 | version "2.0.0" 1233 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1234 | 1235 | nan@^2.3.0: 1236 | version "2.7.0" 1237 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.7.0.tgz#d95bf721ec877e08db276ed3fc6eb78f9083ad46" 1238 | 1239 | node-libs-browser@^2.0.0: 1240 | version "2.0.0" 1241 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.0.0.tgz#a3a59ec97024985b46e958379646f96c4b616646" 1242 | dependencies: 1243 | assert "^1.1.1" 1244 | browserify-zlib "^0.1.4" 1245 | buffer "^4.3.0" 1246 | console-browserify "^1.1.0" 1247 | constants-browserify "^1.0.0" 1248 | crypto-browserify "^3.11.0" 1249 | domain-browser "^1.1.1" 1250 | events "^1.0.0" 1251 | https-browserify "0.0.1" 1252 | os-browserify "^0.2.0" 1253 | path-browserify "0.0.0" 1254 | process "^0.11.0" 1255 | punycode "^1.2.4" 1256 | querystring-es3 "^0.2.0" 1257 | readable-stream "^2.0.5" 1258 | stream-browserify "^2.0.1" 1259 | stream-http "^2.3.1" 1260 | string_decoder "^0.10.25" 1261 | timers-browserify "^2.0.2" 1262 | tty-browserify "0.0.0" 1263 | url "^0.11.0" 1264 | util "^0.10.3" 1265 | vm-browserify "0.0.4" 1266 | 1267 | node-pre-gyp@^0.6.36: 1268 | version "0.6.38" 1269 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.38.tgz#e92a20f83416415bb4086f6d1fb78b3da73d113d" 1270 | dependencies: 1271 | hawk "3.1.3" 1272 | mkdirp "^0.5.1" 1273 | nopt "^4.0.1" 1274 | npmlog "^4.0.2" 1275 | rc "^1.1.7" 1276 | request "2.81.0" 1277 | rimraf "^2.6.1" 1278 | semver "^5.3.0" 1279 | tar "^2.2.1" 1280 | tar-pack "^3.4.0" 1281 | 1282 | nopt@^4.0.1: 1283 | version "4.0.1" 1284 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1285 | dependencies: 1286 | abbrev "1" 1287 | osenv "^0.1.4" 1288 | 1289 | normalize-package-data@^2.3.2: 1290 | version "2.4.0" 1291 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 1292 | dependencies: 1293 | hosted-git-info "^2.1.4" 1294 | is-builtin-module "^1.0.0" 1295 | semver "2 || 3 || 4 || 5" 1296 | validate-npm-package-license "^3.0.1" 1297 | 1298 | normalize-path@^2.0.0, normalize-path@^2.0.1: 1299 | version "2.1.1" 1300 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1301 | dependencies: 1302 | remove-trailing-separator "^1.0.1" 1303 | 1304 | npm-run-path@^2.0.0: 1305 | version "2.0.2" 1306 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 1307 | dependencies: 1308 | path-key "^2.0.0" 1309 | 1310 | npmlog@^4.0.2: 1311 | version "4.1.2" 1312 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 1313 | dependencies: 1314 | are-we-there-yet "~1.1.2" 1315 | console-control-strings "~1.1.0" 1316 | gauge "~2.7.3" 1317 | set-blocking "~2.0.0" 1318 | 1319 | number-is-nan@^1.0.0: 1320 | version "1.0.1" 1321 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1322 | 1323 | oauth-sign@~0.8.1: 1324 | version "0.8.2" 1325 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1326 | 1327 | object-assign@^4.0.1, object-assign@^4.1.0: 1328 | version "4.1.1" 1329 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1330 | 1331 | object.omit@^2.0.0: 1332 | version "2.0.1" 1333 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1334 | dependencies: 1335 | for-own "^0.1.4" 1336 | is-extendable "^0.1.1" 1337 | 1338 | once@^1.3.0, once@^1.3.3: 1339 | version "1.4.0" 1340 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1341 | dependencies: 1342 | wrappy "1" 1343 | 1344 | os-browserify@^0.2.0: 1345 | version "0.2.1" 1346 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.2.1.tgz#63fc4ccee5d2d7763d26bbf8601078e6c2e0044f" 1347 | 1348 | os-homedir@^1.0.0: 1349 | version "1.0.2" 1350 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1351 | 1352 | os-locale@^2.0.0: 1353 | version "2.1.0" 1354 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 1355 | dependencies: 1356 | execa "^0.7.0" 1357 | lcid "^1.0.0" 1358 | mem "^1.1.0" 1359 | 1360 | os-tmpdir@^1.0.0: 1361 | version "1.0.2" 1362 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1363 | 1364 | osenv@^0.1.4: 1365 | version "0.1.4" 1366 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 1367 | dependencies: 1368 | os-homedir "^1.0.0" 1369 | os-tmpdir "^1.0.0" 1370 | 1371 | p-finally@^1.0.0: 1372 | version "1.0.0" 1373 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 1374 | 1375 | p-limit@^1.1.0: 1376 | version "1.1.0" 1377 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 1378 | 1379 | p-locate@^2.0.0: 1380 | version "2.0.0" 1381 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1382 | dependencies: 1383 | p-limit "^1.1.0" 1384 | 1385 | pako@~0.2.0: 1386 | version "0.2.9" 1387 | resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" 1388 | 1389 | parse-asn1@^5.0.0: 1390 | version "5.1.0" 1391 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712" 1392 | dependencies: 1393 | asn1.js "^4.0.0" 1394 | browserify-aes "^1.0.0" 1395 | create-hash "^1.1.0" 1396 | evp_bytestokey "^1.0.0" 1397 | pbkdf2 "^3.0.3" 1398 | 1399 | parse-glob@^3.0.4: 1400 | version "3.0.4" 1401 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1402 | dependencies: 1403 | glob-base "^0.3.0" 1404 | is-dotfile "^1.0.0" 1405 | is-extglob "^1.0.0" 1406 | is-glob "^2.0.0" 1407 | 1408 | parse-json@^2.2.0: 1409 | version "2.2.0" 1410 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1411 | dependencies: 1412 | error-ex "^1.2.0" 1413 | 1414 | path-browserify@0.0.0: 1415 | version "0.0.0" 1416 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" 1417 | 1418 | path-exists@^3.0.0: 1419 | version "3.0.0" 1420 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1421 | 1422 | path-is-absolute@^1.0.0: 1423 | version "1.0.1" 1424 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1425 | 1426 | path-key@^2.0.0: 1427 | version "2.0.1" 1428 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 1429 | 1430 | path-type@^2.0.0: 1431 | version "2.0.0" 1432 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 1433 | dependencies: 1434 | pify "^2.0.0" 1435 | 1436 | pbkdf2@^3.0.3: 1437 | version "3.0.14" 1438 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.14.tgz#a35e13c64799b06ce15320f459c230e68e73bade" 1439 | dependencies: 1440 | create-hash "^1.1.2" 1441 | create-hmac "^1.1.4" 1442 | ripemd160 "^2.0.1" 1443 | safe-buffer "^5.0.1" 1444 | sha.js "^2.4.8" 1445 | 1446 | performance-now@^0.2.0: 1447 | version "0.2.0" 1448 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 1449 | 1450 | pify@^2.0.0: 1451 | version "2.3.0" 1452 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1453 | 1454 | preserve@^0.2.0: 1455 | version "0.2.0" 1456 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1457 | 1458 | process-nextick-args@~1.0.6: 1459 | version "1.0.7" 1460 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1461 | 1462 | process@^0.11.0: 1463 | version "0.11.10" 1464 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" 1465 | 1466 | prr@~0.0.0: 1467 | version "0.0.0" 1468 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 1469 | 1470 | pseudomap@^1.0.2: 1471 | version "1.0.2" 1472 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 1473 | 1474 | public-encrypt@^4.0.0: 1475 | version "4.0.0" 1476 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" 1477 | dependencies: 1478 | bn.js "^4.1.0" 1479 | browserify-rsa "^4.0.0" 1480 | create-hash "^1.1.0" 1481 | parse-asn1 "^5.0.0" 1482 | randombytes "^2.0.1" 1483 | 1484 | punycode@1.3.2: 1485 | version "1.3.2" 1486 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 1487 | 1488 | punycode@^1.2.4, punycode@^1.4.1: 1489 | version "1.4.1" 1490 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1491 | 1492 | qs@~6.4.0: 1493 | version "6.4.0" 1494 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 1495 | 1496 | querystring-es3@^0.2.0: 1497 | version "0.2.1" 1498 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 1499 | 1500 | querystring@0.2.0: 1501 | version "0.2.0" 1502 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 1503 | 1504 | randomatic@^1.1.3: 1505 | version "1.1.7" 1506 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 1507 | dependencies: 1508 | is-number "^3.0.0" 1509 | kind-of "^4.0.0" 1510 | 1511 | randombytes@^2.0.0, randombytes@^2.0.1: 1512 | version "2.0.5" 1513 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.5.tgz#dc009a246b8d09a177b4b7a0ae77bc570f4b1b79" 1514 | dependencies: 1515 | safe-buffer "^5.1.0" 1516 | 1517 | rc@^1.1.7: 1518 | version "1.2.2" 1519 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.2.tgz#d8ce9cb57e8d64d9c7badd9876c7c34cbe3c7077" 1520 | dependencies: 1521 | deep-extend "~0.4.0" 1522 | ini "~1.3.0" 1523 | minimist "^1.2.0" 1524 | strip-json-comments "~2.0.1" 1525 | 1526 | read-pkg-up@^2.0.0: 1527 | version "2.0.0" 1528 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 1529 | dependencies: 1530 | find-up "^2.0.0" 1531 | read-pkg "^2.0.0" 1532 | 1533 | read-pkg@^2.0.0: 1534 | version "2.0.0" 1535 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 1536 | dependencies: 1537 | load-json-file "^2.0.0" 1538 | normalize-package-data "^2.3.2" 1539 | path-type "^2.0.0" 1540 | 1541 | readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.6: 1542 | version "2.3.3" 1543 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 1544 | dependencies: 1545 | core-util-is "~1.0.0" 1546 | inherits "~2.0.3" 1547 | isarray "~1.0.0" 1548 | process-nextick-args "~1.0.6" 1549 | safe-buffer "~5.1.1" 1550 | string_decoder "~1.0.3" 1551 | util-deprecate "~1.0.1" 1552 | 1553 | readdirp@^2.0.0: 1554 | version "2.1.0" 1555 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 1556 | dependencies: 1557 | graceful-fs "^4.1.2" 1558 | minimatch "^3.0.2" 1559 | readable-stream "^2.0.2" 1560 | set-immediate-shim "^1.0.1" 1561 | 1562 | regex-cache@^0.4.2: 1563 | version "0.4.4" 1564 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 1565 | dependencies: 1566 | is-equal-shallow "^0.1.3" 1567 | 1568 | remove-trailing-separator@^1.0.1: 1569 | version "1.1.0" 1570 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 1571 | 1572 | repeat-element@^1.1.2: 1573 | version "1.1.2" 1574 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1575 | 1576 | repeat-string@^1.5.2: 1577 | version "1.6.1" 1578 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1579 | 1580 | request@2.81.0: 1581 | version "2.81.0" 1582 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 1583 | dependencies: 1584 | aws-sign2 "~0.6.0" 1585 | aws4 "^1.2.1" 1586 | caseless "~0.12.0" 1587 | combined-stream "~1.0.5" 1588 | extend "~3.0.0" 1589 | forever-agent "~0.6.1" 1590 | form-data "~2.1.1" 1591 | har-validator "~4.2.1" 1592 | hawk "~3.1.3" 1593 | http-signature "~1.1.0" 1594 | is-typedarray "~1.0.0" 1595 | isstream "~0.1.2" 1596 | json-stringify-safe "~5.0.1" 1597 | mime-types "~2.1.7" 1598 | oauth-sign "~0.8.1" 1599 | performance-now "^0.2.0" 1600 | qs "~6.4.0" 1601 | safe-buffer "^5.0.1" 1602 | stringstream "~0.0.4" 1603 | tough-cookie "~2.3.0" 1604 | tunnel-agent "^0.6.0" 1605 | uuid "^3.0.0" 1606 | 1607 | require-directory@^2.1.1: 1608 | version "2.1.1" 1609 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 1610 | 1611 | require-main-filename@^1.0.1: 1612 | version "1.0.1" 1613 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 1614 | 1615 | right-align@^0.1.1: 1616 | version "0.1.3" 1617 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 1618 | dependencies: 1619 | align-text "^0.1.1" 1620 | 1621 | rimraf@2, rimraf@^2.5.1, rimraf@^2.6.1: 1622 | version "2.7.1" 1623 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" 1624 | dependencies: 1625 | glob "^7.1.3" 1626 | 1627 | ripemd160@^2.0.0, ripemd160@^2.0.1: 1628 | version "2.0.1" 1629 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.1.tgz#0f4584295c53a3628af7e6d79aca21ce57d1c6e7" 1630 | dependencies: 1631 | hash-base "^2.0.0" 1632 | inherits "^2.0.1" 1633 | 1634 | safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 1635 | version "5.1.1" 1636 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 1637 | 1638 | safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: 1639 | version "2.1.2" 1640 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 1641 | 1642 | "semver@2 || 3 || 4 || 5", semver@^5.0.1, semver@^5.3.0: 1643 | version "5.4.1" 1644 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 1645 | 1646 | set-blocking@^2.0.0, set-blocking@~2.0.0: 1647 | version "2.0.0" 1648 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1649 | 1650 | set-immediate-shim@^1.0.1: 1651 | version "1.0.1" 1652 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 1653 | 1654 | setimmediate@^1.0.4: 1655 | version "1.0.5" 1656 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 1657 | 1658 | sha.js@^2.4.0, sha.js@^2.4.8: 1659 | version "2.4.9" 1660 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.9.tgz#98f64880474b74f4a38b8da9d3c0f2d104633e7d" 1661 | dependencies: 1662 | inherits "^2.0.1" 1663 | safe-buffer "^5.0.1" 1664 | 1665 | shebang-command@^1.2.0: 1666 | version "1.2.0" 1667 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 1668 | dependencies: 1669 | shebang-regex "^1.0.0" 1670 | 1671 | shebang-regex@^1.0.0: 1672 | version "1.0.0" 1673 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 1674 | 1675 | signal-exit@^3.0.0: 1676 | version "3.0.2" 1677 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 1678 | 1679 | sntp@1.x.x: 1680 | version "1.0.9" 1681 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 1682 | dependencies: 1683 | hoek "2.x.x" 1684 | 1685 | source-list-map@^2.0.0: 1686 | version "2.0.0" 1687 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.0.tgz#aaa47403f7b245a92fbc97ea08f250d6087ed085" 1688 | 1689 | source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1, source-map@~0.5.3: 1690 | version "0.5.7" 1691 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 1692 | 1693 | spdx-correct@~1.0.0: 1694 | version "1.0.2" 1695 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 1696 | dependencies: 1697 | spdx-license-ids "^1.0.2" 1698 | 1699 | spdx-expression-parse@~1.0.0: 1700 | version "1.0.4" 1701 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 1702 | 1703 | spdx-license-ids@^1.0.2: 1704 | version "1.2.2" 1705 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 1706 | 1707 | sshpk@^1.7.0: 1708 | version "1.16.1" 1709 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877" 1710 | dependencies: 1711 | asn1 "~0.2.3" 1712 | assert-plus "^1.0.0" 1713 | bcrypt-pbkdf "^1.0.0" 1714 | dashdash "^1.12.0" 1715 | ecc-jsbn "~0.1.1" 1716 | getpass "^0.1.1" 1717 | jsbn "~0.1.0" 1718 | safer-buffer "^2.0.2" 1719 | tweetnacl "~0.14.0" 1720 | 1721 | stream-browserify@^2.0.1: 1722 | version "2.0.1" 1723 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" 1724 | dependencies: 1725 | inherits "~2.0.1" 1726 | readable-stream "^2.0.2" 1727 | 1728 | stream-http@^2.3.1: 1729 | version "2.7.2" 1730 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.7.2.tgz#40a050ec8dc3b53b33d9909415c02c0bf1abfbad" 1731 | dependencies: 1732 | builtin-status-codes "^3.0.0" 1733 | inherits "^2.0.1" 1734 | readable-stream "^2.2.6" 1735 | to-arraybuffer "^1.0.0" 1736 | xtend "^4.0.0" 1737 | 1738 | string-width@^1.0.1, string-width@^1.0.2: 1739 | version "1.0.2" 1740 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1741 | dependencies: 1742 | code-point-at "^1.0.0" 1743 | is-fullwidth-code-point "^1.0.0" 1744 | strip-ansi "^3.0.0" 1745 | 1746 | string-width@^2.0.0: 1747 | version "2.1.1" 1748 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 1749 | dependencies: 1750 | is-fullwidth-code-point "^2.0.0" 1751 | strip-ansi "^4.0.0" 1752 | 1753 | string_decoder@^0.10.25: 1754 | version "0.10.31" 1755 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 1756 | 1757 | string_decoder@~1.0.3: 1758 | version "1.0.3" 1759 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 1760 | dependencies: 1761 | safe-buffer "~5.1.0" 1762 | 1763 | stringstream@~0.0.4: 1764 | version "0.0.6" 1765 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.6.tgz#7880225b0d4ad10e30927d167a1d6f2fd3b33a72" 1766 | 1767 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 1768 | version "3.0.1" 1769 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1770 | dependencies: 1771 | ansi-regex "^2.0.0" 1772 | 1773 | strip-ansi@^4.0.0: 1774 | version "4.0.0" 1775 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 1776 | dependencies: 1777 | ansi-regex "^3.0.0" 1778 | 1779 | strip-bom@^3.0.0: 1780 | version "3.0.0" 1781 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 1782 | 1783 | strip-eof@^1.0.0: 1784 | version "1.0.0" 1785 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 1786 | 1787 | strip-json-comments@~2.0.1: 1788 | version "2.0.1" 1789 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 1790 | 1791 | supports-color@^4.0.0, supports-color@^4.2.1: 1792 | version "4.5.0" 1793 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" 1794 | dependencies: 1795 | has-flag "^2.0.0" 1796 | 1797 | tapable@^0.2.7: 1798 | version "0.2.8" 1799 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.8.tgz#99372a5c999bf2df160afc0d74bed4f47948cd22" 1800 | 1801 | tar-pack@^3.4.0: 1802 | version "3.4.1" 1803 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" 1804 | dependencies: 1805 | debug "^2.2.0" 1806 | fstream "^1.0.10" 1807 | fstream-ignore "^1.0.5" 1808 | once "^1.3.3" 1809 | readable-stream "^2.1.4" 1810 | rimraf "^2.5.1" 1811 | tar "^2.2.1" 1812 | uid-number "^0.0.6" 1813 | 1814 | tar@^2.2.1: 1815 | version "2.2.1" 1816 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 1817 | dependencies: 1818 | block-stream "*" 1819 | fstream "^1.0.2" 1820 | inherits "2" 1821 | 1822 | timers-browserify@^2.0.2: 1823 | version "2.0.4" 1824 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.4.tgz#96ca53f4b794a5e7c0e1bd7cc88a372298fa01e6" 1825 | dependencies: 1826 | setimmediate "^1.0.4" 1827 | 1828 | to-arraybuffer@^1.0.0: 1829 | version "1.0.1" 1830 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" 1831 | 1832 | tough-cookie@~2.3.0: 1833 | version "2.3.3" 1834 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 1835 | dependencies: 1836 | punycode "^1.4.1" 1837 | 1838 | ts-loader@^3.1.0: 1839 | version "3.1.0" 1840 | resolved "https://registry.yarnpkg.com/ts-loader/-/ts-loader-3.1.0.tgz#d59bed512ee1dfc2636184f437714baad08c7ca1" 1841 | dependencies: 1842 | chalk "^2.3.0" 1843 | enhanced-resolve "^3.0.0" 1844 | loader-utils "^1.0.2" 1845 | semver "^5.0.1" 1846 | 1847 | tty-browserify@0.0.0: 1848 | version "0.0.0" 1849 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 1850 | 1851 | tunnel-agent@^0.6.0: 1852 | version "0.6.0" 1853 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 1854 | dependencies: 1855 | safe-buffer "^5.0.1" 1856 | 1857 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 1858 | version "0.14.5" 1859 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 1860 | 1861 | typescript@^2.5.3: 1862 | version "2.5.3" 1863 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.5.3.tgz#df3dcdc38f3beb800d4bc322646b04a3f6ca7f0d" 1864 | 1865 | uglify-js@^2.8.29: 1866 | version "2.8.29" 1867 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 1868 | dependencies: 1869 | source-map "~0.5.1" 1870 | yargs "~3.10.0" 1871 | optionalDependencies: 1872 | uglify-to-browserify "~1.0.0" 1873 | 1874 | uglify-to-browserify@~1.0.0: 1875 | version "1.0.2" 1876 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 1877 | 1878 | uglifyjs-webpack-plugin@^0.4.6: 1879 | version "0.4.6" 1880 | resolved "https://registry.yarnpkg.com/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.4.6.tgz#b951f4abb6bd617e66f63eb891498e391763e309" 1881 | dependencies: 1882 | source-map "^0.5.6" 1883 | uglify-js "^2.8.29" 1884 | webpack-sources "^1.0.1" 1885 | 1886 | uid-number@^0.0.6: 1887 | version "0.0.6" 1888 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 1889 | 1890 | url@^0.11.0: 1891 | version "0.11.0" 1892 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 1893 | dependencies: 1894 | punycode "1.3.2" 1895 | querystring "0.2.0" 1896 | 1897 | util-deprecate@~1.0.1: 1898 | version "1.0.2" 1899 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1900 | 1901 | util@0.10.3, util@^0.10.3: 1902 | version "0.10.3" 1903 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 1904 | dependencies: 1905 | inherits "2.0.1" 1906 | 1907 | uuid@^3.0.0: 1908 | version "3.1.0" 1909 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 1910 | 1911 | validate-npm-package-license@^3.0.1: 1912 | version "3.0.1" 1913 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 1914 | dependencies: 1915 | spdx-correct "~1.0.0" 1916 | spdx-expression-parse "~1.0.0" 1917 | 1918 | verror@1.10.0: 1919 | version "1.10.0" 1920 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 1921 | dependencies: 1922 | assert-plus "^1.0.0" 1923 | core-util-is "1.0.2" 1924 | extsprintf "^1.2.0" 1925 | 1926 | vm-browserify@0.0.4: 1927 | version "0.0.4" 1928 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" 1929 | dependencies: 1930 | indexof "0.0.1" 1931 | 1932 | watchpack@^1.4.0: 1933 | version "1.4.0" 1934 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.4.0.tgz#4a1472bcbb952bd0a9bb4036801f954dfb39faac" 1935 | dependencies: 1936 | async "^2.1.2" 1937 | chokidar "^1.7.0" 1938 | graceful-fs "^4.1.2" 1939 | 1940 | webpack-sources@^1.0.1: 1941 | version "1.0.1" 1942 | resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.0.1.tgz#c7356436a4d13123be2e2426a05d1dad9cbe65cf" 1943 | dependencies: 1944 | source-list-map "^2.0.0" 1945 | source-map "~0.5.3" 1946 | 1947 | webpack@^3.8.1: 1948 | version "3.8.1" 1949 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-3.8.1.tgz#b16968a81100abe61608b0153c9159ef8bb2bd83" 1950 | dependencies: 1951 | acorn "^5.0.0" 1952 | acorn-dynamic-import "^2.0.0" 1953 | ajv "^5.1.5" 1954 | ajv-keywords "^2.0.0" 1955 | async "^2.1.2" 1956 | enhanced-resolve "^3.4.0" 1957 | escope "^3.6.0" 1958 | interpret "^1.0.0" 1959 | json-loader "^0.5.4" 1960 | json5 "^0.5.1" 1961 | loader-runner "^2.3.0" 1962 | loader-utils "^1.1.0" 1963 | memory-fs "~0.4.1" 1964 | mkdirp "~0.5.0" 1965 | node-libs-browser "^2.0.0" 1966 | source-map "^0.5.3" 1967 | supports-color "^4.2.1" 1968 | tapable "^0.2.7" 1969 | uglifyjs-webpack-plugin "^0.4.6" 1970 | watchpack "^1.4.0" 1971 | webpack-sources "^1.0.1" 1972 | yargs "^8.0.2" 1973 | 1974 | which-module@^2.0.0: 1975 | version "2.0.0" 1976 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 1977 | 1978 | which@^1.2.9: 1979 | version "1.3.0" 1980 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 1981 | dependencies: 1982 | isexe "^2.0.0" 1983 | 1984 | wide-align@^1.1.0: 1985 | version "1.1.2" 1986 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 1987 | dependencies: 1988 | string-width "^1.0.2" 1989 | 1990 | window-size@0.1.0: 1991 | version "0.1.0" 1992 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 1993 | 1994 | wordwrap@0.0.2: 1995 | version "0.0.2" 1996 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 1997 | 1998 | wrap-ansi@^2.0.0: 1999 | version "2.1.0" 2000 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 2001 | dependencies: 2002 | string-width "^1.0.1" 2003 | strip-ansi "^3.0.1" 2004 | 2005 | wrappy@1: 2006 | version "1.0.2" 2007 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2008 | 2009 | xtend@^4.0.0: 2010 | version "4.0.1" 2011 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2012 | 2013 | y18n@^3.2.1: 2014 | version "3.2.1" 2015 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 2016 | 2017 | yallist@^2.1.2: 2018 | version "2.1.2" 2019 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 2020 | 2021 | yargs-parser@^7.0.0: 2022 | version "7.0.0" 2023 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" 2024 | dependencies: 2025 | camelcase "^4.1.0" 2026 | 2027 | yargs@^8.0.2: 2028 | version "8.0.2" 2029 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360" 2030 | dependencies: 2031 | camelcase "^4.1.0" 2032 | cliui "^3.2.0" 2033 | decamelize "^1.1.1" 2034 | get-caller-file "^1.0.1" 2035 | os-locale "^2.0.0" 2036 | read-pkg-up "^2.0.0" 2037 | require-directory "^2.1.1" 2038 | require-main-filename "^1.0.1" 2039 | set-blocking "^2.0.0" 2040 | string-width "^2.0.0" 2041 | which-module "^2.0.0" 2042 | y18n "^3.2.1" 2043 | yargs-parser "^7.0.0" 2044 | 2045 | yargs@~3.10.0: 2046 | version "3.10.0" 2047 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 2048 | dependencies: 2049 | camelcase "^1.0.2" 2050 | cliui "^2.1.0" 2051 | decamelize "^1.0.0" 2052 | window-size "0.1.0" 2053 | --------------------------------------------------------------------------------