├── src ├── lib │ ├── helpers │ │ └── camel-to-kebab-case.ts │ └── directives │ │ └── set-element.ts ├── lit-element.ts ├── lit-element-extended.ts ├── lit-decorators.ts └── lit-lite.ts ├── .eslintrc.js ├── .travis.yml ├── test ├── index.html ├── server.js ├── selenium.js └── lit-element_test.js ├── gulpfile.js ├── .gitignore ├── package.json ├── README.md ├── tsconfig.json ├── LICENSE └── yarn.lock /src/lib/helpers/camel-to-kebab-case.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Coverts a camelCase string to kebab-case. 3 | * 4 | * @export 5 | * @param {string} str The camelCaseString 6 | * @returns {string} The kebab-version of the string 7 | */ 8 | export function camelCaseToKebab(str: string): string { 9 | const sub = str.substring(1, str.length); 10 | return str[0].toLowerCase() + sub.replace(/([A-Z])/g, '-$1').toLowerCase(); 11 | } -------------------------------------------------------------------------------- /src/lit-element.ts: -------------------------------------------------------------------------------- 1 | import { html, svg, render, TemplateResult } from '../node_modules/lit-html/lit-html.js'; 2 | import { LitLite, HTMLCollectionByID, Data, PropConfig, Properties, camelCaseToKebab, MethodsToCall } from './lit-lite.js'; 3 | 4 | export const LitElement = (superclass = HTMLElement) => LitLite(superclass, render); 5 | 6 | export { html, svg, TemplateResult }; 7 | export { HTMLCollectionByID, Data, PropConfig, Properties, camelCaseToKebab }; -------------------------------------------------------------------------------- /src/lit-element-extended.ts: -------------------------------------------------------------------------------- 1 | import { svg, TemplateResult } from '../node_modules/lit-html/lit-html.js'; 2 | import { html, render } from '../node_modules/lit-html/lib/lit-extended.js'; 3 | import { LitLite, HTMLCollectionByID, Data, PropConfig, Properties, camelCaseToKebab, MethodsToCall } from './lit-lite.js'; 4 | 5 | export const LitElementExtended = (superclass = HTMLElement) => LitLite(superclass, render); 6 | 7 | export { html, svg, TemplateResult }; 8 | export { HTMLCollectionByID, Data, PropConfig, Properties, camelCaseToKebab, MethodsToCall }; -------------------------------------------------------------------------------- /src/lit-decorators.ts: -------------------------------------------------------------------------------- 1 | import { createProperty, PropConfig } from './lit-lite.js' 2 | 3 | export function property(config: PropConfig = { type: String }) { 4 | return (prototype: any, propName: string) => { 5 | createProperty(propName, prototype, config); 6 | } 7 | } 8 | 9 | export function attribute(config: PropConfig = { type: String, reflectToAttribute: true }) { 10 | if (!('reflectToAttribute' in config)) 11 | config.reflectToAttribute = true; 12 | return (prototype: any, propName: string) => { 13 | createProperty(propName, prototype, config); 14 | } 15 | } -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | "env": { 3 | "browser": true, 4 | "es6": true 5 | }, 6 | "extends": "eslint:recommended", 7 | "parserOptions": { 8 | "sourceType": "module" 9 | }, 10 | "rules": { 11 | "indent": [ 12 | "error", 13 | "tab" 14 | ], 15 | "linebreak-style": [ 16 | "error", 17 | "unix" 18 | ], 19 | "quotes": [ 20 | "error", 21 | "single" 22 | ], 23 | "semi": [ 24 | "error", 25 | "always" 26 | ] 27 | }, 28 | "plugins": [ 29 | "html" 30 | ] 31 | }; -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "node" 4 | addons: # get google-chrome-stable 5 | chrome: stable 6 | install: # Install ChromeDriver (64bits; replace 64 with 32 for 32bits). 7 | - wget -N http://chromedriver.storage.googleapis.com/2.30/chromedriver_linux64.zip -P ~/ 8 | - unzip ~/chromedriver_linux64.zip -d ~/ 9 | - rm ~/chromedriver_linux64.zip 10 | - sudo mv -f ~/chromedriver /usr/local/share/ 11 | - sudo chmod +x /usr/local/share/chromedriver 12 | - sudo ln -s /usr/local/share/chromedriver /usr/local/bin/chromedriver 13 | - npm install 14 | before_script: 15 | - export DISPLAY=:99.0 16 | - sh -e /etc/init.d/xvfb start 17 | - sleep 3 18 | - nvm install 9.4.0 19 | -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Mocha Tests 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /src/lib/directives/set-element.ts: -------------------------------------------------------------------------------- 1 | import { directive } from '../../../node_modules/lit-html/lit-html.js'; 2 | 3 | /** 4 | * Sets the part to a new element of the type selector with the given props, attributes and innerHTML 5 | * 6 | * @param {string} selector 7 | * @param {any} [{ props={}, attributes={}, innerHTML = '' }={}] 8 | */ 9 | export const setElement = (selector: string, { props={}, attributes={}, innerHTML = '' } = {}) => directive((part: any) => { 10 | const elem = document.createElement(selector); 11 | for(const prop in props) 12 | (elem as any)[prop] = (props as any)[prop]; 13 | for(const attr in attributes) 14 | elem.setAttribute(attr, (attributes as any)[attr]); 15 | elem.innerHTML = innerHTML; 16 | part.setValue(elem); 17 | }) -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- 1 | const gulp = require('gulp'); 2 | const replace = require('gulp-replace-path'); 3 | const typescript = require('gulp-tsc'); 4 | 5 | const config = { 6 | "target": "ES2015", 7 | "module": "es2015", 8 | "lib": ["dom", "dom.iterable", "es2017", "es6"], 9 | "declaration": true, 10 | "sourceMap": true, 11 | "outDir": "./", 12 | "strict": true, 13 | "noUnusedLocals": true, 14 | "noUnusedParameters": true, 15 | "noImplicitReturns": true, 16 | "noFallthroughCasesInSwitch": true, 17 | "inlineSources": true, 18 | "experimentalDecorators": true, 19 | } 20 | 21 | gulp.task('build', () => { 22 | gulp.src(['src/**/*.ts']) 23 | .pipe(typescript(config)) 24 | .pipe(replace(/..\/node_modules/g, '..')) 25 | .pipe(gulp.dest('.')); 26 | }); 27 | 28 | gulp.task('default', ['build']) -------------------------------------------------------------------------------- /test/server.js: -------------------------------------------------------------------------------- 1 | const app = require('express')(); 2 | const path = require('path'); 3 | 4 | (() => { 5 | app.get('/favicon.ico', (req, res) => res.sendStatus(200)) 6 | 7 | app.get('/node_modules*', (req, res) => { 8 | res.sendFile(path.join(__dirname.slice(0, __dirname.lastIndexOf('/')) + req.url)) 9 | }); 10 | 11 | app.get('/lit-element.js', (req, res) => res.sendFile(path.join(__dirname.slice(0, __dirname.lastIndexOf('/')) + '/lit-element.js'))); 12 | app.get('/lit-lite.js', (req, res) => res.sendFile(path.join(__dirname.slice(0, __dirname.lastIndexOf('/')) + '/lit-lite.js'))); 13 | 14 | app.get('/lib*', (req, res) => res.sendFile(path.join(__dirname.slice(0, __dirname.lastIndexOf('/')) + req.url))); 15 | 16 | app.get('/lit-html/*', (req, res) => res.sendFile(path.join(__dirname.slice(0, __dirname.lastIndexOf('/')) + '/node_modules' + req.url))); 17 | 18 | app.get('*', (req, res) => res.sendFile(path.join(__dirname, req.url))); 19 | 20 | app.listen(3000); 21 | 22 | })(); -------------------------------------------------------------------------------- /test/selenium.js: -------------------------------------------------------------------------------- 1 | const { Builder, By, Key, until } = require('selenium-webdriver'); 2 | require('chromedriver'); 3 | require('./server.js'); 4 | 5 | (() => { 6 | let driver = new Builder().forBrowser('chrome').build(); 7 | let failure; 8 | driver.get('http://localhost:3000') 9 | //.then(() => driver.wait(() => driver.executeScript(() => typeof window.mochaResults !== undefined), 200) 10 | .then(() => driver.sleep(2000)) 11 | .then(() => driver.executeScript(() => window.mochaResults)) 12 | .then(res => { 13 | const passes = res.passes; 14 | const failed = res.failures; 15 | console.log(''); 16 | console.log(`${passes} tests passed and ${failed} tests failed.`); 17 | console.log(''); 18 | failure = failed != 0; 19 | }).then(f => driver.quit()) 20 | .then(() => { 21 | if(failure) { 22 | throw 'Tests failed' 23 | return process.exit(1); 24 | } 25 | return process.exit(0); 26 | }); 27 | })(); -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | # Runtime data 9 | pids 10 | *.pid 11 | *.seed 12 | *.pid.lock 13 | 14 | # Directory for instrumented libs generated by jscoverage/JSCover 15 | lib-cov 16 | 17 | # Coverage directory used by tools like istanbul 18 | coverage 19 | 20 | # nyc test coverage 21 | .nyc_output 22 | 23 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 24 | .grunt 25 | 26 | # Bower dependency directory (https://bower.io/) 27 | bower_components 28 | 29 | # node-waf configuration 30 | .lock-wscript 31 | 32 | # Compiled binary addons (http://nodejs.org/api/addons.html) 33 | build/Release 34 | 35 | # Dependency directories 36 | node_modules/ 37 | jspm_packages/ 38 | 39 | # Typescript v1 declaration files 40 | typings/ 41 | 42 | # Optional npm cache directory 43 | .npm 44 | 45 | # Optional eslint cache 46 | .eslintcache 47 | 48 | # Optional REPL history 49 | .node_repl_history 50 | 51 | # Output of 'npm pack' 52 | *.tgz 53 | 54 | # Yarn Integrity file 55 | .yarn-integrity 56 | 57 | # dotenv environment variables file 58 | .env 59 | 60 | # Compiler Output 61 | /lit-* 62 | /lib/* -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "lit-html": "^0.10.0" 4 | }, 5 | "name": "lit-element", 6 | "version": "0.4.12", 7 | "description": "Implements lit-html via a LitElement class. Made for custom Elements.", 8 | "main": "lit-element.js", 9 | "repository": "https://github.com/DiiLord/lit-element.git", 10 | "author": "DiiLord ", 11 | "license": "MIT", 12 | "keywords": [ 13 | "web components", 14 | "lit-html" 15 | ], 16 | "devDependencies": { 17 | "chai": "^4.1.2", 18 | "chromedriver": "^2.34.1", 19 | "eslint": "^4.9.0", 20 | "eslint-plugin-html": "^4.0.2", 21 | "express": "^4.16.2", 22 | "gulp": "^3.9.1", 23 | "gulp-replace-path": "^0.4.0", 24 | "gulp-tsc": "^1.3.2", 25 | "mocha": "^5.0.0", 26 | "selenium-webdriver": "^4.0.0-alpha.1", 27 | "tslint": "^5.9.1", 28 | "typescript": "^2.8.3", 29 | "uglify-es": "^3.1.9" 30 | }, 31 | "scripts": { 32 | "checksize": "uglifyjs lit-lite.js -mc --toplevel | gzip -9 | wc -c", 33 | "build": "gulp", 34 | "test": "npm run build && node test/selenium.js" 35 | }, 36 | "files": [ 37 | "src", 38 | "LICENSE", 39 | "README.md", 40 | "lit-element.js", 41 | "lit-element.d.ts", 42 | "lit-element.js.map", 43 | "lit-lite.js", 44 | "lit-lite.d.ts", 45 | "lit-lite.js.map", 46 | "lit-element-extended.js", 47 | "lit-element-extended.d.ts", 48 | "lit-element-extended.js.map" 49 | ] 50 | } 51 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # lit-element 2 | 3 | ## This project has now changed into [MoleculeJS](https://github.com/Molecule-JS/MoleculeJS) with a lot of additional features. 4 | 5 | [![Greenkeeper badge](https://badges.greenkeeper.io/DiiLord/lit-element.svg)](https://greenkeeper.io/) 6 | Implements [lit-html](https://github.com/PolymerLabs/lit-html) via a LitElement class. Made for custom Elements. 7 | 8 | [![Build Status](https://travis-ci.org/DiiLord/lit-element.svg?branch=master)](https://travis-ci.org/DiiLord/lit-element) 9 | 10 | ## New in 0.4.0 11 | - We now allow you to switch out the standard lit-html `render` and `html` functions 12 | - You can now use `lit-html-extended` via `lit-element-extended.js` 13 | - Added `notify` option for properties, which will fire an event, if the value changes 14 | - A lot of bug fixes 15 | 16 | ## New in 0.3.0 17 | - You can now set any property of your element to a promise and LitElement will set the property to the resolved value of the promise. (credit: [depeele](https://github.com/depeele)) 18 | - Attributes of properties with `reflectToAttribute: true` are now transformed to kebab-case. (credit: [depeele](https://github.com/depeele)) 19 | - Codebase moved to TypeScript. 20 | 21 | ## Installation 22 | 23 | You can get it through npm or yarn 24 | 25 | ``` 26 | npm install lit-element 27 | ``` 28 | ``` 29 | yarn add lit-element 30 | ``` 31 | 32 | ## Default Usage 33 | 34 | ```javascript 35 | // import lit-element 36 | import {LitElement, html} from '../node_modules/lit-element/lit-element.js' 37 | 38 | // define Custom Element 39 | class MyElement extends LitElement(HTMLElement) { 40 | 41 | // define properties similiar to Polymer 2/3 42 | static get properties() { 43 | return { 44 | title: String, 45 | body: { 46 | type: String, 47 | value: 'That is a cool LitElement', 48 | observer: '_bodyChanged', 49 | reflectToAttribute: true, 50 | notify: true 51 | } 52 | } 53 | } 54 | 55 | // define your template in render 56 | render() { 57 | this.title = 'This is lit'; 58 | return html` 59 |

${this.title}

60 |

${this.body} 61 | `; 62 | } 63 | 64 | // observer callback 65 | _bodyChanged(newValue) { 66 | console.log(`Body updated to ${newValue}`); 67 | } 68 | 69 | // If you want work done after the first render, like accessing elements with ids, do it here 70 | afterRender(isFirstRender) { 71 | if(isFirstRender) { 72 | // access the element with id 'title' 73 | this.$.title.classList.add('title--main'); 74 | this.addEventListener('body-changed', e => { 75 | const body = e.detail; 76 | ... 77 | }) 78 | } 79 | } 80 | } 81 | ``` 82 | 83 | ## Declaring properties 84 | Properties of your element are set through a static getter of `properties`, as seen above. 85 | 86 | Properties can be set with the following options: 87 | - type: The type function of this property. Must be set! 88 | - reflectToAttribute: Keeps the property in sync with the attribute of the same name, konverted to kebab-case (myProp <-> my-prop) 89 | - value: The initial value of the property. If it should be an array or an object, set value to a function returning that object, to keep it unique for each instance of the element 90 | - observer: The name of the method that should be called whenever the property changes. 91 | - notify: Dispatch an event on property-change. The event name follows the pattern `my-prop-changed`. The new value is in `event.detail`. 92 | 93 | 94 | ## Notes 95 | 96 | - This Element does not use Polymer, just Polymer-like syntax for properties. 97 | - Currently only `type`, `reflectToAttribute`, `observer`, `value` and `notify` are supported for properties. 98 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | /* Basic Options */ 4 | "target": "ES2015", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', or 'ESNEXT'. */ 5 | "module": "es2015", /* Specify module code generation: 'none', commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */ 6 | "lib": ["dom", "dom.iterable", "es2017", "es6"], /* Specify library files to be included in the compilation: */ 7 | // "allowJs": true, /* Allow javascript files to be compiled. */ 8 | // "checkJs": true, /* Report errors in .js files. */ 9 | // "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */ 10 | "declaration": true, /* Generates corresponding '.d.ts' file. */ 11 | "sourceMap": true, /* Generates corresponding '.map' file. */ 12 | // "outFile": "./", /* Concatenate and emit output to single file. */ 13 | "outDir": "./", /* Redirect output structure to the directory. */ 14 | // "rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */ 15 | // "removeComments": true, /* Do not emit comments to output. */ 16 | // "noEmit": true, /* Do not emit outputs. */ 17 | // "importHelpers": true, /* Import emit helpers from 'tslib'. */ 18 | // "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */ 19 | // "isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */ 20 | 21 | /* Strict Type-Checking Options */ 22 | "strict": true, /* Enable all strict type-checking options. */ 23 | // "noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */ 24 | // "strictNullChecks": true, /* Enable strict null checks. */ 25 | // "noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */ 26 | // "alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */ 27 | 28 | /* Additional Checks */ 29 | "noUnusedLocals": true, /* Report errors on unused locals. */ 30 | "noUnusedParameters": true, /* Report errors on unused parameters. */ 31 | "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */ 32 | "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */ 33 | 34 | /* Module Resolution Options */ 35 | // "moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */ 36 | // "baseUrl": "./", /* Base directory to resolve non-absolute module names. */ 37 | // "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */ 38 | // "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */ 39 | // "typeRoots": [], /* List of folders to include type definitions from. */ 40 | // "types": [], /* Type declaration files to be included in compilation. */ 41 | // "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */ 42 | // "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */ 43 | 44 | /* Source Map Options */ 45 | // "sourceRoot": "./", /* Specify the location where debugger should locate TypeScript files instead of source locations. */ 46 | // "mapRoot": "./", /* Specify the location where debugger should locate map files instead of generated locations. */ 47 | // "inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */ 48 | "inlineSources": true, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */ 49 | 50 | /* Experimental Options */ 51 | "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */ 52 | // "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */ 53 | }, 54 | "include": [ 55 | "src/**/*.ts", 56 | "src/**/**/*.ts" 57 | ], 58 | "exclude": [ 59 | "node_modules" 60 | ] 61 | } -------------------------------------------------------------------------------- /test/lit-element_test.js: -------------------------------------------------------------------------------- 1 | import { LitElement, html } from '/lit-element.js'; 2 | 3 | const {expect} = chai; 4 | //mocha.setup('bdd'); 5 | 6 | describe('lit-element', () => { 7 | let testElement; 8 | let observerVals 9 | before(() => { 10 | observerVals = new Map; 11 | testElement = document.getElementById('test-el'); 12 | 13 | class TestElement extends LitElement() { 14 | static get properties() { 15 | return { 16 | shortBool: Boolean, 17 | longBool: { 18 | type: Boolean, 19 | value: true, 20 | reflectToAttribute: true, 21 | observer: 'boolObserver', 22 | notify: true 23 | }, 24 | shortNumber: Number, 25 | longNumber: { 26 | type: Number, 27 | value: 123, 28 | reflectToAttribute: true, 29 | observer: 'numberObserver', 30 | notify: true 31 | }, 32 | stringProp: { 33 | type: String, 34 | value: 'StringProp' 35 | } 36 | } 37 | } 38 | 39 | render() { 40 | return html`

41 | ${this.shortBool} 42 | ${this.longBool} 43 | 44 | ${this.shortNumber} 45 | ${this.longNumber} 46 |
` 47 | } 48 | 49 | boolObserver(bool) { 50 | observerVals.set('bool', bool); 51 | } 52 | 53 | numberObserver(num) { 54 | observerVals.set('number', num); 55 | } 56 | } 57 | 58 | customElements.define('test-element', TestElement); 59 | }); 60 | describe('properties', function () { 61 | it('correct type', () => { 62 | expect(testElement.longBool).to.be.a('boolean'); 63 | expect(testElement.longNumber).to.be.a('number'); 64 | expect(testElement.stringProp).to.be.a('string'); 65 | }); 66 | 67 | it('correct value', () => { 68 | expect(testElement.longBool).to.be.true; 69 | expect(testElement.longNumber).to.equal(123); 70 | expect(testElement.stringProp).to.equal('StringProp') 71 | }); 72 | 73 | it('changes the value', () => { 74 | testElement.longBool = false; 75 | expect(testElement.longBool).to.be.false; 76 | const random = Math.random() * 1000; 77 | testElement.longNumber = random; 78 | expect(testElement.longNumber).to.equal(random); 79 | }); 80 | 81 | it('calls observer', () => { 82 | expect(observerVals.get('bool')).to.equal(testElement.longBool); 83 | expect(observerVals.get('number')).to.equal(testElement.longNumber); 84 | }); 85 | }); 86 | 87 | describe('attributes', () => { 88 | it('sets attributes after property changes', () => { 89 | testElement.longNumber = 123; 90 | expect(testElement.getAttribute('long-number')).to.equal('123'); 91 | }); 92 | 93 | it('removes false boolean properties', () => { 94 | testElement.longBool = false; 95 | expect(testElement.hasAttribute('long-bool')).to.be.false; 96 | }); 97 | 98 | it('sets boolean attributes correctly', () => { 99 | testElement.longBool = true; 100 | expect(testElement.hasAttribute('long-bool')).to.be.true; 101 | expect(testElement.getAttribute('long-bool')).to.equal(''); 102 | }); 103 | 104 | it('changes the property', () => { 105 | testElement.setAttribute('long-number', '456'); 106 | expect(testElement.longNumber).to.equal(456); 107 | 108 | testElement.longBool = true; 109 | testElement.removeAttribute('long-bool'); 110 | expect(testElement.longBool).to.be.false; 111 | 112 | testElement.setAttribute('long-bool', ''); 113 | expect(testElement.longBool).to.be.true; 114 | }) 115 | }); 116 | 117 | describe('Handles async property setting', () => { 118 | it('Sets the resolved value of a Promise to a property', done => { 119 | testElement.longBool = false; 120 | testElement.longBool = new Promise((res, rej) => { 121 | setTimeout(res(true), 10); 122 | }); 123 | 124 | setTimeout(() => { 125 | expect(testElement.longBool).to.be.true; 126 | done(); 127 | }, 30); 128 | }) 129 | }) 130 | 131 | describe('events', () => { 132 | it('fires events', done => { 133 | const listener = e => eventFired = true; 134 | let eventFired = false; 135 | setTimeout(() => { 136 | expect(eventFired, 'custom event did not fire').to.be.true; 137 | testElement.removeEventListener('long-bool-changed', listener); 138 | done(); 139 | }, 20); 140 | 141 | testElement.addEventListener('long-bool-changed', listener); 142 | 143 | testElement.longBool = true; 144 | testElement.longBool = false; 145 | }); 146 | 147 | it('event has correct deatil', done => { 148 | const listener = ({ detail }) => { 149 | expect(detail).to.be.true; 150 | testElement.removeEventListener('long-bool-changed', listener); 151 | done(); 152 | }; 153 | testElement.addEventListener('long-bool-changed',listener); 154 | 155 | testElement.longBool = true; 156 | }); 157 | }); 158 | }); -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /src/lit-lite.ts: -------------------------------------------------------------------------------- 1 | import { camelCaseToKebab } from './lib/helpers/camel-to-kebab-case.js'; 2 | 3 | export { camelCaseToKebab }; 4 | 5 | export interface Properties { 6 | [propName: string]: PropConfig | Type; 7 | } 8 | 9 | export type Type = typeof String | typeof Number | typeof Boolean | typeof Array | typeof Object | typeof Date; 10 | 11 | export interface PropConfig { 12 | type: Type; 13 | reflectToAttribute?: boolean; 14 | value?: any; 15 | observer?: string; 16 | notify?: boolean; 17 | } 18 | 19 | export interface Data { 20 | [propName: string]: any; 21 | } 22 | 23 | export interface MethodsToCall { 24 | [propName: string]: (newValue: any, oldValue: any) => any; 25 | } 26 | 27 | export interface HTMLCollectionByID { 28 | [id: string]: HTMLElement | Element; 29 | } 30 | 31 | export interface LitEventInit extends EventInit { 32 | composed: boolean; 33 | } 34 | 35 | /** 36 | * 37 | * @param {string} prop The name of the property to create 38 | * @param {string} attr The name of the attribute 39 | * @param {any} context The context of the element 40 | * @param {PropConfig} info The configuration of the property 41 | */ 42 | export function createProperty(prop: string, context: any, info: PropConfig) { 43 | // get value that was already set on the property (if any) 44 | const setVal = context[prop]; 45 | Object.defineProperty(context, prop, { 46 | get() { 47 | return context.__data[prop]; 48 | }, 49 | async set(val: any) { 50 | const resolved: any = (val != null && val instanceof Promise 51 | ? await val 52 | : val); 53 | context.setProperty(prop, resolved); 54 | } 55 | }); 56 | 57 | if (info.reflectToAttribute && 58 | (info.type === Object || info.type === Array)) { 59 | console.warn('Rich Data shouldn\'t be set as attribte!') 60 | } 61 | if (info.observer) { 62 | if (context[info.observer]) { 63 | // Establish the property-change observer 64 | context.__methodsToCall[prop] = context[info.observer].bind(context); 65 | } else { 66 | console.warn(`Method ${info.observer} not defined!`); 67 | } 68 | } 69 | // Check, if the property was already set, set it accordingly 70 | if (setVal) { 71 | context[prop] = setVal; 72 | return; 73 | } 74 | if (info.value !== undefined) { 75 | // Initialize using the included value and the new setter() 76 | context[prop] = (typeof (info.value) === 'function' 77 | ? info.value.call(context) 78 | : info.value); 79 | 80 | } 81 | } 82 | 83 | /** 84 | * Returns a class with the Lit-Element features, that extends `superclass`. 85 | * @param superclass 86 | */ 87 | export const LitLite = 88 | (superclass = HTMLElement, 89 | renderFunction: (result: T, container: Element | DocumentFragment) => void) => 90 | class extends superclass { 91 | static properties: Properties; 92 | __renderCallbacks: Set = new Set(); 93 | __pendingRender: boolean = false; 94 | __data: Data = {}; 95 | __methodsToCall: MethodsToCall = {}; 96 | __wait: any; 97 | __firstRender: boolean = false; 98 | afterRender?: (isFirst: boolean) => void; 99 | shadowRoot!: ShadowRoot; 100 | __propAttr: Map = new Map(); // propertyName -> attribute-name 101 | __attrProp: Map = new Map(); // attribute-name -> propertyName 102 | [key: string]: any 103 | 104 | static get observedAttributes(): Array { 105 | let attrs: Array = []; 106 | for (const prop in this.properties) { 107 | if ((this.properties[prop]).reflectToAttribute) { 108 | attrs.push(camelCaseToKebab(prop)); 109 | } 110 | } 111 | return attrs; 112 | } 113 | 114 | protected constructor() { 115 | super(); 116 | this.attachShadow({ mode: 'open' }); 117 | 118 | for (let prop in (this.constructor as any).properties) { 119 | const attr = camelCaseToKebab(prop); 120 | this.__propAttr.set(prop, attr); 121 | this.__attrProp.set(attr, prop); 122 | } 123 | } 124 | 125 | connectedCallback() { 126 | const props = (this.constructor as any).properties; 127 | this.__wait = true; 128 | for (let prop in props) { 129 | if (typeof props[prop] === 'function') 130 | props[prop] = { type: props[prop] }; 131 | this.__makeGetterSetter(prop, props[prop]) 132 | } 133 | delete this.__wait; 134 | 135 | this.__firstRender = true; 136 | 137 | if (this.connected) 138 | this.connected.call(this); 139 | 140 | /* Perform the first render after connection immediately 141 | * without the delay of refresh() 142 | */ 143 | this.postponedRender(); 144 | } 145 | 146 | disconnectedCallback() { 147 | if (this.disconnected) 148 | this.disconnected.call(this); 149 | } 150 | 151 | /** 152 | * Creates the Propertyaccessors for the defined properties of the Element. 153 | * @param {string} prop 154 | * @param {PropConfig} info 155 | */ 156 | __makeGetterSetter(prop: string, info: PropConfig) { 157 | createProperty(prop, this, info); 158 | } 159 | 160 | /** 161 | * Gets called when the properties change and the Element should rerender. 162 | * 163 | * @param {string} prop 164 | * @param {any} newVal 165 | */ 166 | __propertiesChanged(prop: string, newVal: any) { 167 | if (this.__data[prop] !== newVal) { 168 | const oldVal = this.__data[prop]; 169 | let doRefresh = true; 170 | this.__data[prop] = newVal; 171 | 172 | if (this.__methodsToCall[prop]) { 173 | if (this.__methodsToCall[prop](newVal, oldVal) === false) { 174 | doRefresh = false; 175 | } 176 | } 177 | 178 | if (doRefresh) { 179 | this.refresh(); 180 | } 181 | } 182 | } 183 | /** 184 | * Set the prop to a new value, or signal that it changed 185 | * 186 | * @param {string} prop 187 | * @param {*} [newVal] 188 | */ 189 | setProperty(prop: string, newVal?: any) { 190 | if (arguments.length < 2) 191 | newVal = this[prop]; 192 | const info = (this.constructor as any).properties[prop]; 193 | const attr = this.__propAttr.get(prop); 194 | if (info.reflectToAttribute) { 195 | /* Set the new value by setting the observed attribute. 196 | * This will trigger attributeChangedCallback() which will 197 | * convert the attribute data to a property, 198 | * (this.__data[prop]) and trigger __propertiesChanged(). 199 | */ 200 | this.setAttribute(attr!, newVal); 201 | } else { 202 | /* Set the property directly and trigger 203 | * __propertiesChanged() 204 | */ 205 | this.__propertiesChanged(prop, newVal); 206 | } 207 | if (info.notify) { 208 | this.dispatchEvent(new CustomEvent(`${attr}-changed`, { 209 | bubbles: true, 210 | composed: true, 211 | detail: newVal 212 | })); 213 | } 214 | } 215 | 216 | /** 217 | * Gets called when an observed attribute changes. Calls `__propertiesChanged` 218 | * 219 | * @param {string} prop 220 | * @param {any} old 221 | * @param {any} val 222 | */ 223 | attributeChangedCallback(attr: string, old: any, val: any) { 224 | if (old === val) return; 225 | const prop = this.__attrProp.get(attr); 226 | if (this.__data[prop] !== val) { 227 | const { type } = (this.constructor as any).properties[prop]; 228 | let newVal = val; 229 | 230 | switch (type.name) { 231 | case 'Boolean': 232 | /* Ensure attribute values the indicate that absense of the 233 | * attribute actually cause the attribute to be absent. 234 | */ 235 | if (val === 'false' || val === 'null' || 236 | val === 'undefined' || 237 | val === false || val === null) { 238 | this.removeAttribute(attr); 239 | newVal = false; 240 | } else { 241 | newVal = this.hasAttribute(attr); 242 | if (newVal) 243 | this.setAttribute(attr, ''); 244 | } 245 | break; 246 | 247 | case 'String': 248 | /* If a String value is falsey or the explicit 'null' 249 | * or 'undefined' string, ensure that the attribute is 250 | * removed. 251 | */ 252 | if (!val || val === 'null' || val === 'undefined') { 253 | this.removeAttribute(attr); 254 | newVal = ''; 255 | 256 | } else { 257 | newVal = type(val); 258 | } 259 | break; 260 | 261 | default: 262 | newVal = type(val); 263 | break; 264 | } 265 | 266 | /* Pass along the new, more concrete *property* value instead of 267 | * the fuzzy attribute value. 268 | */ 269 | this.__propertiesChanged(prop, newVal); 270 | } 271 | } 272 | 273 | /** 274 | * Handle a postponed render. 275 | * @method postponedRender 276 | * 277 | * @return void 278 | */ 279 | postponedRender() { 280 | renderFunction(this.render({ ...this.__data }), this.shadowRoot) 281 | 282 | for (let callback of this.__renderCallbacks) { 283 | callback(); 284 | } 285 | this.__renderCallbacks.clear(); 286 | 287 | if (this.afterRender) { 288 | this.afterRender(this._firstRender); 289 | this._firstRender = false; 290 | } 291 | } 292 | 293 | /** 294 | * Refresh this element, re-rendering. 295 | * @method refresh 296 | * @param {function} callback 297 | * 298 | * @return void 299 | */ 300 | async refresh(callback?: () => any) { 301 | if (this._wait === true) { return } 302 | 303 | if (callback != null) { 304 | // Queue this render/refresh callback 305 | this.__renderCallbacks.add(callback); 306 | } 307 | 308 | if (!this.__pendingRender) { 309 | this.__pendingRender = true; 310 | /* Schedule the following as a microtask, which runs before 311 | * requestAnimationFrame. Any additional refresh() calls 312 | * will have any callback queued but otherwise will be 313 | * ignored. 314 | * 315 | * https://jakearchibald.com/2015/tasks-microtasks-queues-and-schedules/ 316 | */ 317 | this.__pendingRender = await false; 318 | this.postponedRender(); 319 | } 320 | } 321 | 322 | /** 323 | * Returns what lit-html should render. 324 | * 325 | * @returns 326 | */ 327 | render(data?: object): T { 328 | throw Error('render function not defined'); 329 | } 330 | 331 | /** 332 | * Gets all children with ids. 333 | * 334 | * @readonly 335 | */ 336 | get $(): HTMLCollectionByID { 337 | const arr = this.shadowRoot.querySelectorAll('[id]'); 338 | const obj: HTMLCollectionByID = {}; 339 | for (const el of arr) { 340 | obj[el.id] = el; 341 | } 342 | 343 | return obj; 344 | } 345 | } 346 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | JSONStream@^1.0.3: 6 | version "1.3.2" 7 | resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.2.tgz#c102371b6ec3a7cf3b847ca00c20bb0fce4c6dea" 8 | dependencies: 9 | jsonparse "^1.2.0" 10 | through ">=2.2.7 <3" 11 | 12 | abbrev@1: 13 | version "1.1.1" 14 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 15 | 16 | accepts@1.3.3: 17 | version "1.3.3" 18 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.3.tgz#c3ca7434938648c3e0d9c1e328dd68b622c284ca" 19 | dependencies: 20 | mime-types "~2.1.11" 21 | negotiator "0.6.1" 22 | 23 | accepts@~1.3.4: 24 | version "1.3.4" 25 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.4.tgz#86246758c7dd6d21a6474ff084a4740ec05eb21f" 26 | dependencies: 27 | mime-types "~2.1.16" 28 | negotiator "0.6.1" 29 | 30 | acorn-jsx@^3.0.0: 31 | version "3.0.1" 32 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 33 | dependencies: 34 | acorn "^3.0.4" 35 | 36 | acorn@^3.0.4: 37 | version "3.3.0" 38 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 39 | 40 | acorn@^4.0.3: 41 | version "4.0.13" 42 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 43 | 44 | acorn@^5.1.1: 45 | version "5.1.2" 46 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.1.2.tgz#911cb53e036807cf0fa778dc5d370fbd864246d7" 47 | 48 | acorn@^5.2.1: 49 | version "5.3.0" 50 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.3.0.tgz#7446d39459c54fb49a80e6ee6478149b940ec822" 51 | 52 | addressparser@1.0.1: 53 | version "1.0.1" 54 | resolved "https://registry.yarnpkg.com/addressparser/-/addressparser-1.0.1.tgz#47afbe1a2a9262191db6838e4fd1d39b40821746" 55 | 56 | adm-zip@~0.4.3: 57 | version "0.4.7" 58 | resolved "https://registry.yarnpkg.com/adm-zip/-/adm-zip-0.4.7.tgz#8606c2cbf1c426ce8c8ec00174447fd49b6eafc1" 59 | 60 | after@0.8.2: 61 | version "0.8.2" 62 | resolved "https://registry.yarnpkg.com/after/-/after-0.8.2.tgz#fedb394f9f0e02aa9768e702bda23b505fae7e1f" 63 | 64 | agent-base@2: 65 | version "2.1.1" 66 | resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-2.1.1.tgz#d6de10d5af6132d5bd692427d46fc538539094c7" 67 | dependencies: 68 | extend "~3.0.0" 69 | semver "~5.0.1" 70 | 71 | agent-base@^4.1.0: 72 | version "4.2.0" 73 | resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-4.2.0.tgz#9838b5c3392b962bad031e6a4c5e1024abec45ce" 74 | dependencies: 75 | es6-promisify "^5.0.0" 76 | 77 | ajv-keywords@^2.1.0: 78 | version "2.1.0" 79 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.0.tgz#a296e17f7bfae7c1ce4f7e0de53d29cb32162df0" 80 | 81 | ajv@^4.9.1: 82 | version "4.11.8" 83 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 84 | dependencies: 85 | co "^4.6.0" 86 | json-stable-stringify "^1.0.1" 87 | 88 | ajv@^5.1.0: 89 | version "5.5.2" 90 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 91 | dependencies: 92 | co "^4.6.0" 93 | fast-deep-equal "^1.0.0" 94 | fast-json-stable-stringify "^2.0.0" 95 | json-schema-traverse "^0.3.0" 96 | 97 | ajv@^5.2.0, ajv@^5.2.3: 98 | version "5.2.3" 99 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.2.3.tgz#c06f598778c44c6b161abafe3466b81ad1814ed2" 100 | dependencies: 101 | co "^4.6.0" 102 | fast-deep-equal "^1.0.0" 103 | json-schema-traverse "^0.3.0" 104 | json-stable-stringify "^1.0.1" 105 | 106 | amqplib@^0.5.2: 107 | version "0.5.2" 108 | resolved "https://registry.yarnpkg.com/amqplib/-/amqplib-0.5.2.tgz#d2d7313c7ffaa4d10bcf1e6252de4591b6cc7b63" 109 | dependencies: 110 | bitsyntax "~0.0.4" 111 | bluebird "^3.4.6" 112 | buffer-more-ints "0.0.2" 113 | readable-stream "1.x >=1.1.9" 114 | safe-buffer "^5.0.1" 115 | 116 | ansi-escapes@^3.0.0: 117 | version "3.0.0" 118 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92" 119 | 120 | ansi-regex@^2.0.0: 121 | version "2.1.1" 122 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 123 | 124 | ansi-regex@^3.0.0: 125 | version "3.0.0" 126 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 127 | 128 | ansi-styles@^2.2.1: 129 | version "2.2.1" 130 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 131 | 132 | ansi-styles@^3.1.0: 133 | version "3.2.0" 134 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 135 | dependencies: 136 | color-convert "^1.9.0" 137 | 138 | anymatch@^1.3.0: 139 | version "1.3.2" 140 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 141 | dependencies: 142 | micromatch "^2.1.5" 143 | normalize-path "^2.0.0" 144 | 145 | aproba@^1.0.3: 146 | version "1.2.0" 147 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 148 | 149 | archiver-utils@^1.3.0: 150 | version "1.3.0" 151 | resolved "https://registry.yarnpkg.com/archiver-utils/-/archiver-utils-1.3.0.tgz#e50b4c09c70bf3d680e32ff1b7994e9f9d895174" 152 | dependencies: 153 | glob "^7.0.0" 154 | graceful-fs "^4.1.0" 155 | lazystream "^1.0.0" 156 | lodash "^4.8.0" 157 | normalize-path "^2.0.0" 158 | readable-stream "^2.0.0" 159 | 160 | archiver@1.3.0: 161 | version "1.3.0" 162 | resolved "https://registry.yarnpkg.com/archiver/-/archiver-1.3.0.tgz#4f2194d6d8f99df3f531e6881f14f15d55faaf22" 163 | dependencies: 164 | archiver-utils "^1.3.0" 165 | async "^2.0.0" 166 | buffer-crc32 "^0.2.1" 167 | glob "^7.0.0" 168 | lodash "^4.8.0" 169 | readable-stream "^2.0.0" 170 | tar-stream "^1.5.0" 171 | walkdir "^0.0.11" 172 | zip-stream "^1.1.0" 173 | 174 | are-we-there-yet@~1.1.2: 175 | version "1.1.4" 176 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 177 | dependencies: 178 | delegates "^1.0.0" 179 | readable-stream "^2.0.6" 180 | 181 | argparse@^1.0.7: 182 | version "1.0.9" 183 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 184 | dependencies: 185 | sprintf-js "~1.0.2" 186 | 187 | arr-diff@^2.0.0: 188 | version "2.0.0" 189 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 190 | dependencies: 191 | arr-flatten "^1.0.1" 192 | 193 | arr-flatten@^1.0.1: 194 | version "1.1.0" 195 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 196 | 197 | array-filter@~0.0.0: 198 | version "0.0.1" 199 | resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec" 200 | 201 | array-flatten@1.1.1: 202 | version "1.1.1" 203 | resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" 204 | 205 | array-map@~0.0.0: 206 | version "0.0.0" 207 | resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662" 208 | 209 | array-reduce@~0.0.0: 210 | version "0.0.0" 211 | resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b" 212 | 213 | array-slice@^0.2.3: 214 | version "0.2.3" 215 | resolved "https://registry.yarnpkg.com/array-slice/-/array-slice-0.2.3.tgz#dd3cfb80ed7973a75117cdac69b0b99ec86186f5" 216 | 217 | array-union@^1.0.1: 218 | version "1.0.2" 219 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 220 | dependencies: 221 | array-uniq "^1.0.1" 222 | 223 | array-uniq@^1.0.1: 224 | version "1.0.3" 225 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 226 | 227 | array-unique@^0.2.1: 228 | version "0.2.1" 229 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 230 | 231 | arraybuffer.slice@~0.0.7: 232 | version "0.0.7" 233 | resolved "https://registry.yarnpkg.com/arraybuffer.slice/-/arraybuffer.slice-0.0.7.tgz#3bbc4275dd584cc1b10809b89d4e8b63a69e7675" 234 | 235 | arrify@^1.0.0: 236 | version "1.0.1" 237 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 238 | 239 | asn1.js@^4.0.0: 240 | version "4.9.2" 241 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.2.tgz#8117ef4f7ed87cd8f89044b5bff97ac243a16c9a" 242 | dependencies: 243 | bn.js "^4.0.0" 244 | inherits "^2.0.1" 245 | minimalistic-assert "^1.0.0" 246 | 247 | asn1@~0.2.3: 248 | version "0.2.3" 249 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 250 | 251 | assert-plus@1.0.0, assert-plus@^1.0.0: 252 | version "1.0.0" 253 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 254 | 255 | assert-plus@^0.2.0: 256 | version "0.2.0" 257 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 258 | 259 | assert@^1.4.0: 260 | version "1.4.1" 261 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" 262 | dependencies: 263 | util "0.10.3" 264 | 265 | assertion-error@^1.0.1: 266 | version "1.1.0" 267 | resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.1.0.tgz#e60b6b0e8f301bd97e5375215bda406c85118c0b" 268 | 269 | ast-types@0.x.x: 270 | version "0.10.1" 271 | resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.10.1.tgz#f52fca9715579a14f841d67d7f8d25432ab6a3dd" 272 | 273 | astw@^2.0.0: 274 | version "2.2.0" 275 | resolved "https://registry.yarnpkg.com/astw/-/astw-2.2.0.tgz#7bd41784d32493987aeb239b6b4e1c57a873b917" 276 | dependencies: 277 | acorn "^4.0.3" 278 | 279 | async-each@^1.0.0: 280 | version "1.0.1" 281 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 282 | 283 | async-limiter@~1.0.0: 284 | version "1.0.0" 285 | resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8" 286 | 287 | async@2.0.1: 288 | version "2.0.1" 289 | resolved "https://registry.yarnpkg.com/async/-/async-2.0.1.tgz#b709cc0280a9c36f09f4536be823c838a9049e25" 290 | dependencies: 291 | lodash "^4.8.0" 292 | 293 | async@^2.0.0, async@^2.1.2: 294 | version "2.6.0" 295 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.0.tgz#61a29abb6fcc026fea77e56d1c6ec53a795951f4" 296 | dependencies: 297 | lodash "^4.14.0" 298 | 299 | async@~2.1.2: 300 | version "2.1.5" 301 | resolved "https://registry.yarnpkg.com/async/-/async-2.1.5.tgz#e587c68580994ac67fc56ff86d3ac56bdbe810bc" 302 | dependencies: 303 | lodash "^4.14.0" 304 | 305 | asynckit@^0.4.0: 306 | version "0.4.0" 307 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 308 | 309 | aws-sign2@~0.6.0: 310 | version "0.6.0" 311 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 312 | 313 | aws-sign2@~0.7.0: 314 | version "0.7.0" 315 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 316 | 317 | aws4@^1.2.1, aws4@^1.6.0: 318 | version "1.6.0" 319 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 320 | 321 | axios@^0.15.3: 322 | version "0.15.3" 323 | resolved "https://registry.yarnpkg.com/axios/-/axios-0.15.3.tgz#2c9d638b2e191a08ea1d6cc988eadd6ba5bdc053" 324 | dependencies: 325 | follow-redirects "1.0.0" 326 | 327 | babel-code-frame@^6.22.0: 328 | version "6.26.0" 329 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 330 | dependencies: 331 | chalk "^1.1.3" 332 | esutils "^2.0.2" 333 | js-tokens "^3.0.2" 334 | 335 | backo2@1.0.2: 336 | version "1.0.2" 337 | resolved "https://registry.yarnpkg.com/backo2/-/backo2-1.0.2.tgz#31ab1ac8b129363463e35b3ebb69f4dfcfba7947" 338 | 339 | balanced-match@^1.0.0: 340 | version "1.0.0" 341 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 342 | 343 | base64-arraybuffer@0.1.5: 344 | version "0.1.5" 345 | resolved "https://registry.yarnpkg.com/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz#73926771923b5a19747ad666aa5cd4bf9c6e9ce8" 346 | 347 | base64-js@^1.0.2: 348 | version "1.2.1" 349 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.1.tgz#a91947da1f4a516ea38e5b4ec0ec3773675e0886" 350 | 351 | base64id@1.0.0: 352 | version "1.0.0" 353 | resolved "https://registry.yarnpkg.com/base64id/-/base64id-1.0.0.tgz#47688cb99bb6804f0e06d3e763b1c32e57d8e6b6" 354 | 355 | bcrypt-pbkdf@^1.0.0: 356 | version "1.0.1" 357 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 358 | dependencies: 359 | tweetnacl "^0.14.3" 360 | 361 | better-assert@~1.0.0: 362 | version "1.0.2" 363 | resolved "https://registry.yarnpkg.com/better-assert/-/better-assert-1.0.2.tgz#40866b9e1b9e0b55b481894311e68faffaebc522" 364 | dependencies: 365 | callsite "1.0.0" 366 | 367 | binary-extensions@^1.0.0: 368 | version "1.11.0" 369 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 370 | 371 | bitsyntax@~0.0.4: 372 | version "0.0.4" 373 | resolved "https://registry.yarnpkg.com/bitsyntax/-/bitsyntax-0.0.4.tgz#eb10cc6f82b8c490e3e85698f07e83d46e0cba82" 374 | dependencies: 375 | buffer-more-ints "0.0.2" 376 | 377 | bl@^1.0.0: 378 | version "1.2.1" 379 | resolved "https://registry.yarnpkg.com/bl/-/bl-1.2.1.tgz#cac328f7bee45730d404b692203fcb590e172d5e" 380 | dependencies: 381 | readable-stream "^2.0.5" 382 | 383 | bl@~1.1.2: 384 | version "1.1.2" 385 | resolved "https://registry.yarnpkg.com/bl/-/bl-1.1.2.tgz#fdca871a99713aa00d19e3bbba41c44787a65398" 386 | dependencies: 387 | readable-stream "~2.0.5" 388 | 389 | blob@0.0.4: 390 | version "0.0.4" 391 | resolved "https://registry.yarnpkg.com/blob/-/blob-0.0.4.tgz#bcf13052ca54463f30f9fc7e95b9a47630a94921" 392 | 393 | block-stream@*: 394 | version "0.0.9" 395 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 396 | dependencies: 397 | inherits "~2.0.0" 398 | 399 | bluebird@^3.3.0, bluebird@^3.4.6: 400 | version "3.5.1" 401 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.1.tgz#d9551f9de98f1fcda1e683d17ee91a0602ee2eb9" 402 | 403 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: 404 | version "4.11.8" 405 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" 406 | 407 | body-parser@1.18.2, body-parser@^1.16.1: 408 | version "1.18.2" 409 | resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.18.2.tgz#87678a19d84b47d859b83199bd59bce222b10454" 410 | dependencies: 411 | bytes "3.0.0" 412 | content-type "~1.0.4" 413 | debug "2.6.9" 414 | depd "~1.1.1" 415 | http-errors "~1.6.2" 416 | iconv-lite "0.4.19" 417 | on-finished "~2.3.0" 418 | qs "6.5.1" 419 | raw-body "2.3.2" 420 | type-is "~1.6.15" 421 | 422 | boom@2.x.x: 423 | version "2.10.1" 424 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 425 | dependencies: 426 | hoek "2.x.x" 427 | 428 | boom@4.x.x: 429 | version "4.3.1" 430 | resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31" 431 | dependencies: 432 | hoek "4.x.x" 433 | 434 | boom@5.x.x: 435 | version "5.2.0" 436 | resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02" 437 | dependencies: 438 | hoek "4.x.x" 439 | 440 | brace-expansion@^1.1.7: 441 | version "1.1.8" 442 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 443 | dependencies: 444 | balanced-match "^1.0.0" 445 | concat-map "0.0.1" 446 | 447 | braces@^0.1.2: 448 | version "0.1.5" 449 | resolved "https://registry.yarnpkg.com/braces/-/braces-0.1.5.tgz#c085711085291d8b75fdd74eab0f8597280711e6" 450 | dependencies: 451 | expand-range "^0.1.0" 452 | 453 | braces@^1.8.2: 454 | version "1.8.5" 455 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 456 | dependencies: 457 | expand-range "^1.8.1" 458 | preserve "^0.2.0" 459 | repeat-element "^1.1.2" 460 | 461 | brorand@^1.0.1: 462 | version "1.1.0" 463 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 464 | 465 | browser-pack@^6.0.1: 466 | version "6.0.3" 467 | resolved "https://registry.yarnpkg.com/browser-pack/-/browser-pack-6.0.3.tgz#91ca96518583ef580ab063a309de62e407767a39" 468 | dependencies: 469 | JSONStream "^1.0.3" 470 | combine-source-map "~0.8.0" 471 | defined "^1.0.0" 472 | safe-buffer "^5.1.1" 473 | through2 "^2.0.0" 474 | umd "^3.0.0" 475 | 476 | browser-resolve@^1.11.0, browser-resolve@^1.7.0: 477 | version "1.11.2" 478 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 479 | dependencies: 480 | resolve "1.1.7" 481 | 482 | browser-stdout@1.3.0: 483 | version "1.3.0" 484 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f" 485 | 486 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: 487 | version "1.1.1" 488 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.1.1.tgz#38b7ab55edb806ff2dcda1a7f1620773a477c49f" 489 | dependencies: 490 | buffer-xor "^1.0.3" 491 | cipher-base "^1.0.0" 492 | create-hash "^1.1.0" 493 | evp_bytestokey "^1.0.3" 494 | inherits "^2.0.1" 495 | safe-buffer "^5.0.1" 496 | 497 | browserify-cipher@^1.0.0: 498 | version "1.0.0" 499 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" 500 | dependencies: 501 | browserify-aes "^1.0.4" 502 | browserify-des "^1.0.0" 503 | evp_bytestokey "^1.0.0" 504 | 505 | browserify-des@^1.0.0: 506 | version "1.0.0" 507 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" 508 | dependencies: 509 | cipher-base "^1.0.1" 510 | des.js "^1.0.0" 511 | inherits "^2.0.1" 512 | 513 | browserify-rsa@^4.0.0: 514 | version "4.0.1" 515 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" 516 | dependencies: 517 | bn.js "^4.1.0" 518 | randombytes "^2.0.1" 519 | 520 | browserify-sign@^4.0.0: 521 | version "4.0.4" 522 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" 523 | dependencies: 524 | bn.js "^4.1.1" 525 | browserify-rsa "^4.0.0" 526 | create-hash "^1.1.0" 527 | create-hmac "^1.1.2" 528 | elliptic "^6.0.0" 529 | inherits "^2.0.1" 530 | parse-asn1 "^5.0.0" 531 | 532 | browserify-zlib@~0.2.0: 533 | version "0.2.0" 534 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" 535 | dependencies: 536 | pako "~1.0.5" 537 | 538 | browserify@^14.5.0: 539 | version "14.5.0" 540 | resolved "https://registry.yarnpkg.com/browserify/-/browserify-14.5.0.tgz#0bbbce521acd6e4d1d54d8e9365008efb85a9cc5" 541 | dependencies: 542 | JSONStream "^1.0.3" 543 | assert "^1.4.0" 544 | browser-pack "^6.0.1" 545 | browser-resolve "^1.11.0" 546 | browserify-zlib "~0.2.0" 547 | buffer "^5.0.2" 548 | cached-path-relative "^1.0.0" 549 | concat-stream "~1.5.1" 550 | console-browserify "^1.1.0" 551 | constants-browserify "~1.0.0" 552 | crypto-browserify "^3.0.0" 553 | defined "^1.0.0" 554 | deps-sort "^2.0.0" 555 | domain-browser "~1.1.0" 556 | duplexer2 "~0.1.2" 557 | events "~1.1.0" 558 | glob "^7.1.0" 559 | has "^1.0.0" 560 | htmlescape "^1.1.0" 561 | https-browserify "^1.0.0" 562 | inherits "~2.0.1" 563 | insert-module-globals "^7.0.0" 564 | labeled-stream-splicer "^2.0.0" 565 | module-deps "^4.0.8" 566 | os-browserify "~0.3.0" 567 | parents "^1.0.1" 568 | path-browserify "~0.0.0" 569 | process "~0.11.0" 570 | punycode "^1.3.2" 571 | querystring-es3 "~0.2.0" 572 | read-only-stream "^2.0.0" 573 | readable-stream "^2.0.2" 574 | resolve "^1.1.4" 575 | shasum "^1.0.0" 576 | shell-quote "^1.6.1" 577 | stream-browserify "^2.0.0" 578 | stream-http "^2.0.0" 579 | string_decoder "~1.0.0" 580 | subarg "^1.0.0" 581 | syntax-error "^1.1.1" 582 | through2 "^2.0.0" 583 | timers-browserify "^1.0.1" 584 | tty-browserify "~0.0.0" 585 | url "~0.11.0" 586 | util "~0.10.1" 587 | vm-browserify "~0.0.1" 588 | xtend "^4.0.0" 589 | 590 | buffer-crc32@^0.2.1: 591 | version "0.2.13" 592 | resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" 593 | 594 | buffer-more-ints@0.0.2: 595 | version "0.0.2" 596 | resolved "https://registry.yarnpkg.com/buffer-more-ints/-/buffer-more-ints-0.0.2.tgz#26b3885d10fa13db7fc01aae3aab870199e0124c" 597 | 598 | buffer-xor@^1.0.3: 599 | version "1.0.3" 600 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 601 | 602 | buffer@^5.0.2: 603 | version "5.0.8" 604 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.0.8.tgz#84daa52e7cf2fa8ce4195bc5cf0f7809e0930b24" 605 | dependencies: 606 | base64-js "^1.0.2" 607 | ieee754 "^1.1.4" 608 | 609 | buildmail@4.0.1: 610 | version "4.0.1" 611 | resolved "https://registry.yarnpkg.com/buildmail/-/buildmail-4.0.1.tgz#877f7738b78729871c9a105e3b837d2be11a7a72" 612 | dependencies: 613 | addressparser "1.0.1" 614 | libbase64 "0.1.0" 615 | libmime "3.0.0" 616 | libqp "1.1.0" 617 | nodemailer-fetch "1.6.0" 618 | nodemailer-shared "1.1.0" 619 | punycode "1.4.1" 620 | 621 | builtin-status-codes@^3.0.0: 622 | version "3.0.0" 623 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" 624 | 625 | bytes@3.0.0: 626 | version "3.0.0" 627 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" 628 | 629 | cached-path-relative@^1.0.0: 630 | version "1.0.1" 631 | resolved "https://registry.yarnpkg.com/cached-path-relative/-/cached-path-relative-1.0.1.tgz#d09c4b52800aa4c078e2dd81a869aac90d2e54e7" 632 | 633 | caller-path@^0.1.0: 634 | version "0.1.0" 635 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 636 | dependencies: 637 | callsites "^0.2.0" 638 | 639 | callsite@1.0.0: 640 | version "1.0.0" 641 | resolved "https://registry.yarnpkg.com/callsite/-/callsite-1.0.0.tgz#280398e5d664bd74038b6f0905153e6e8af1bc20" 642 | 643 | callsites@^0.2.0: 644 | version "0.2.0" 645 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 646 | 647 | caseless@~0.11.0: 648 | version "0.11.0" 649 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 650 | 651 | caseless@~0.12.0: 652 | version "0.12.0" 653 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 654 | 655 | chai@^4.1.2: 656 | version "4.1.2" 657 | resolved "https://registry.yarnpkg.com/chai/-/chai-4.1.2.tgz#0f64584ba642f0f2ace2806279f4f06ca23ad73c" 658 | dependencies: 659 | assertion-error "^1.0.1" 660 | check-error "^1.0.1" 661 | deep-eql "^3.0.0" 662 | get-func-name "^2.0.0" 663 | pathval "^1.0.0" 664 | type-detect "^4.0.0" 665 | 666 | chalk@^1.1.1, chalk@^1.1.3: 667 | version "1.1.3" 668 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 669 | dependencies: 670 | ansi-styles "^2.2.1" 671 | escape-string-regexp "^1.0.2" 672 | has-ansi "^2.0.0" 673 | strip-ansi "^3.0.0" 674 | supports-color "^2.0.0" 675 | 676 | chalk@^2.0.0, chalk@^2.1.0: 677 | version "2.1.0" 678 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.1.0.tgz#ac5becf14fa21b99c6c92ca7a7d7cfd5b17e743e" 679 | dependencies: 680 | ansi-styles "^3.1.0" 681 | escape-string-regexp "^1.0.5" 682 | supports-color "^4.0.0" 683 | 684 | check-error@^1.0.1: 685 | version "1.0.2" 686 | resolved "https://registry.yarnpkg.com/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82" 687 | 688 | chokidar@^1.4.1: 689 | version "1.7.0" 690 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 691 | dependencies: 692 | anymatch "^1.3.0" 693 | async-each "^1.0.0" 694 | glob-parent "^2.0.0" 695 | inherits "^2.0.1" 696 | is-binary-path "^1.0.0" 697 | is-glob "^2.0.0" 698 | path-is-absolute "^1.0.0" 699 | readdirp "^2.0.0" 700 | optionalDependencies: 701 | fsevents "^1.0.0" 702 | 703 | cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: 704 | version "1.0.4" 705 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" 706 | dependencies: 707 | inherits "^2.0.1" 708 | safe-buffer "^5.0.1" 709 | 710 | circular-json@^0.3.1: 711 | version "0.3.3" 712 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" 713 | 714 | circular-json@^0.5.1: 715 | version "0.5.1" 716 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.5.1.tgz#b8942a09e535863dc21b04417a91971e1d9cd91f" 717 | 718 | cli-cursor@^2.1.0: 719 | version "2.1.0" 720 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 721 | dependencies: 722 | restore-cursor "^2.0.0" 723 | 724 | cli-width@^2.0.0: 725 | version "2.2.0" 726 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 727 | 728 | co@^4.6.0: 729 | version "4.6.0" 730 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 731 | 732 | co@~3.0.6: 733 | version "3.0.6" 734 | resolved "https://registry.yarnpkg.com/co/-/co-3.0.6.tgz#1445f226c5eb956138e68c9ac30167ea7d2e6bda" 735 | 736 | code-point-at@^1.0.0: 737 | version "1.1.0" 738 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 739 | 740 | color-convert@^1.9.0: 741 | version "1.9.0" 742 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 743 | dependencies: 744 | color-name "^1.1.1" 745 | 746 | color-name@^1.1.1: 747 | version "1.1.3" 748 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 749 | 750 | colors@^1.1.0: 751 | version "1.1.2" 752 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" 753 | 754 | combine-lists@^1.0.0: 755 | version "1.0.1" 756 | resolved "https://registry.yarnpkg.com/combine-lists/-/combine-lists-1.0.1.tgz#458c07e09e0d900fc28b70a3fec2dacd1d2cb7f6" 757 | dependencies: 758 | lodash "^4.5.0" 759 | 760 | combine-source-map@~0.7.1: 761 | version "0.7.2" 762 | resolved "https://registry.yarnpkg.com/combine-source-map/-/combine-source-map-0.7.2.tgz#0870312856b307a87cc4ac486f3a9a62aeccc09e" 763 | dependencies: 764 | convert-source-map "~1.1.0" 765 | inline-source-map "~0.6.0" 766 | lodash.memoize "~3.0.3" 767 | source-map "~0.5.3" 768 | 769 | combine-source-map@~0.8.0: 770 | version "0.8.0" 771 | resolved "https://registry.yarnpkg.com/combine-source-map/-/combine-source-map-0.8.0.tgz#a58d0df042c186fcf822a8e8015f5450d2d79a8b" 772 | dependencies: 773 | convert-source-map "~1.1.0" 774 | inline-source-map "~0.6.0" 775 | lodash.memoize "~3.0.3" 776 | source-map "~0.5.3" 777 | 778 | combined-stream@^1.0.5, combined-stream@~1.0.5: 779 | version "1.0.5" 780 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 781 | dependencies: 782 | delayed-stream "~1.0.0" 783 | 784 | commander@2.11.0, commander@~2.11.0: 785 | version "2.11.0" 786 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563" 787 | 788 | commander@^2.9.0: 789 | version "2.13.0" 790 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.13.0.tgz#6964bca67685df7c1f1430c584f07d7597885b9c" 791 | 792 | component-bind@1.0.0: 793 | version "1.0.0" 794 | resolved "https://registry.yarnpkg.com/component-bind/-/component-bind-1.0.0.tgz#00c608ab7dcd93897c0009651b1d3a8e1e73bbd1" 795 | 796 | component-emitter@1.2.1: 797 | version "1.2.1" 798 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 799 | 800 | component-inherit@0.0.3: 801 | version "0.0.3" 802 | resolved "https://registry.yarnpkg.com/component-inherit/-/component-inherit-0.0.3.tgz#645fc4adf58b72b649d5cae65135619db26ff143" 803 | 804 | compress-commons@^1.2.0: 805 | version "1.2.2" 806 | resolved "https://registry.yarnpkg.com/compress-commons/-/compress-commons-1.2.2.tgz#524a9f10903f3a813389b0225d27c48bb751890f" 807 | dependencies: 808 | buffer-crc32 "^0.2.1" 809 | crc32-stream "^2.0.0" 810 | normalize-path "^2.0.0" 811 | readable-stream "^2.0.0" 812 | 813 | concat-map@0.0.1: 814 | version "0.0.1" 815 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 816 | 817 | concat-stream@1.6.0, concat-stream@^1.6.0: 818 | version "1.6.0" 819 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 820 | dependencies: 821 | inherits "^2.0.3" 822 | readable-stream "^2.2.2" 823 | typedarray "^0.0.6" 824 | 825 | concat-stream@~1.5.0, concat-stream@~1.5.1: 826 | version "1.5.2" 827 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.5.2.tgz#708978624d856af41a5a741defdd261da752c266" 828 | dependencies: 829 | inherits "~2.0.1" 830 | readable-stream "~2.0.0" 831 | typedarray "~0.0.5" 832 | 833 | connect@^3.6.0: 834 | version "3.6.5" 835 | resolved "https://registry.yarnpkg.com/connect/-/connect-3.6.5.tgz#fb8dde7ba0763877d0ec9df9dac0b4b40e72c7da" 836 | dependencies: 837 | debug "2.6.9" 838 | finalhandler "1.0.6" 839 | parseurl "~1.3.2" 840 | utils-merge "1.0.1" 841 | 842 | console-browserify@^1.1.0: 843 | version "1.1.0" 844 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" 845 | dependencies: 846 | date-now "^0.1.4" 847 | 848 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 849 | version "1.1.0" 850 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 851 | 852 | constants-browserify@~1.0.0: 853 | version "1.0.0" 854 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" 855 | 856 | content-disposition@0.5.2: 857 | version "0.5.2" 858 | resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4" 859 | 860 | content-type@~1.0.4: 861 | version "1.0.4" 862 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" 863 | 864 | convert-source-map@~1.1.0: 865 | version "1.1.3" 866 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.1.3.tgz#4829c877e9fe49b3161f3bf3673888e204699860" 867 | 868 | cookie-signature@1.0.6: 869 | version "1.0.6" 870 | resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" 871 | 872 | cookie@0.3.1: 873 | version "0.3.1" 874 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" 875 | 876 | core-js@^2.2.0: 877 | version "2.5.3" 878 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.3.tgz#8acc38345824f16d8365b7c9b4259168e8ed603e" 879 | 880 | core-util-is@1.0.2, core-util-is@~1.0.0: 881 | version "1.0.2" 882 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 883 | 884 | crc32-stream@^2.0.0: 885 | version "2.0.0" 886 | resolved "https://registry.yarnpkg.com/crc32-stream/-/crc32-stream-2.0.0.tgz#e3cdd3b4df3168dd74e3de3fbbcb7b297fe908f4" 887 | dependencies: 888 | crc "^3.4.4" 889 | readable-stream "^2.0.0" 890 | 891 | crc@^3.4.4: 892 | version "3.5.0" 893 | resolved "https://registry.yarnpkg.com/crc/-/crc-3.5.0.tgz#98b8ba7d489665ba3979f59b21381374101a1964" 894 | 895 | create-ecdh@^4.0.0: 896 | version "4.0.0" 897 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" 898 | dependencies: 899 | bn.js "^4.1.0" 900 | elliptic "^6.0.0" 901 | 902 | create-hash@^1.1.0, create-hash@^1.1.2: 903 | version "1.1.3" 904 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.3.tgz#606042ac8b9262750f483caddab0f5819172d8fd" 905 | dependencies: 906 | cipher-base "^1.0.1" 907 | inherits "^2.0.1" 908 | ripemd160 "^2.0.0" 909 | sha.js "^2.4.0" 910 | 911 | create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: 912 | version "1.1.6" 913 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.6.tgz#acb9e221a4e17bdb076e90657c42b93e3726cf06" 914 | dependencies: 915 | cipher-base "^1.0.3" 916 | create-hash "^1.1.0" 917 | inherits "^2.0.1" 918 | ripemd160 "^2.0.0" 919 | safe-buffer "^5.0.1" 920 | sha.js "^2.4.8" 921 | 922 | cross-spawn@^5.1.0: 923 | version "5.1.0" 924 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 925 | dependencies: 926 | lru-cache "^4.0.1" 927 | shebang-command "^1.2.0" 928 | which "^1.2.9" 929 | 930 | cryptiles@2.x.x: 931 | version "2.0.5" 932 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 933 | dependencies: 934 | boom "2.x.x" 935 | 936 | cryptiles@3.x.x: 937 | version "3.1.2" 938 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe" 939 | dependencies: 940 | boom "5.x.x" 941 | 942 | crypto-browserify@^3.0.0: 943 | version "3.12.0" 944 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" 945 | dependencies: 946 | browserify-cipher "^1.0.0" 947 | browserify-sign "^4.0.0" 948 | create-ecdh "^4.0.0" 949 | create-hash "^1.1.0" 950 | create-hmac "^1.1.0" 951 | diffie-hellman "^5.0.0" 952 | inherits "^2.0.1" 953 | pbkdf2 "^3.0.3" 954 | public-encrypt "^4.0.0" 955 | randombytes "^2.0.0" 956 | randomfill "^1.0.3" 957 | 958 | custom-event@~1.0.0: 959 | version "1.0.1" 960 | resolved "https://registry.yarnpkg.com/custom-event/-/custom-event-1.0.1.tgz#5d02a46850adf1b4a317946a3928fccb5bfd0425" 961 | 962 | dashdash@^1.12.0: 963 | version "1.14.1" 964 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 965 | dependencies: 966 | assert-plus "^1.0.0" 967 | 968 | data-uri-to-buffer@1: 969 | version "1.2.0" 970 | resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-1.2.0.tgz#77163ea9c20d8641b4707e8f18abdf9a78f34835" 971 | 972 | date-format@^1.2.0: 973 | version "1.2.0" 974 | resolved "https://registry.yarnpkg.com/date-format/-/date-format-1.2.0.tgz#615e828e233dd1ab9bb9ae0950e0ceccfa6ecad8" 975 | 976 | date-now@^0.1.4: 977 | version "0.1.4" 978 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 979 | 980 | debug@2, debug@2.6.9, debug@^2.2.0, debug@^2.6.8, debug@~2.6.4, debug@~2.6.6, debug@~2.6.9: 981 | version "2.6.9" 982 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 983 | dependencies: 984 | ms "2.0.0" 985 | 986 | debug@3.1.0, debug@^3.0.1, debug@^3.1.0: 987 | version "3.1.0" 988 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 989 | dependencies: 990 | ms "2.0.0" 991 | 992 | debug@~2.2.0: 993 | version "2.2.0" 994 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 995 | dependencies: 996 | ms "0.7.1" 997 | 998 | deep-eql@^3.0.0: 999 | version "3.0.1" 1000 | resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-3.0.1.tgz#dfc9404400ad1c8fe023e7da1df1c147c4b444df" 1001 | dependencies: 1002 | type-detect "^4.0.0" 1003 | 1004 | deep-extend@~0.4.0: 1005 | version "0.4.2" 1006 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 1007 | 1008 | deep-is@~0.1.3: 1009 | version "0.1.3" 1010 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1011 | 1012 | defined@^1.0.0: 1013 | version "1.0.0" 1014 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 1015 | 1016 | degenerator@~1.0.2: 1017 | version "1.0.4" 1018 | resolved "https://registry.yarnpkg.com/degenerator/-/degenerator-1.0.4.tgz#fcf490a37ece266464d9cc431ab98c5819ced095" 1019 | dependencies: 1020 | ast-types "0.x.x" 1021 | escodegen "1.x.x" 1022 | esprima "3.x.x" 1023 | 1024 | del@^2.0.2: 1025 | version "2.2.2" 1026 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 1027 | dependencies: 1028 | globby "^5.0.0" 1029 | is-path-cwd "^1.0.0" 1030 | is-path-in-cwd "^1.0.0" 1031 | object-assign "^4.0.1" 1032 | pify "^2.0.0" 1033 | pinkie-promise "^2.0.0" 1034 | rimraf "^2.2.8" 1035 | 1036 | delayed-stream@~1.0.0: 1037 | version "1.0.0" 1038 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1039 | 1040 | delegates@^1.0.0: 1041 | version "1.0.0" 1042 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1043 | 1044 | depd@1.1.1: 1045 | version "1.1.1" 1046 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.1.tgz#5783b4e1c459f06fa5ca27f991f3d06e7a310359" 1047 | 1048 | depd@~1.1.1: 1049 | version "1.1.2" 1050 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" 1051 | 1052 | deps-sort@^2.0.0: 1053 | version "2.0.0" 1054 | resolved "https://registry.yarnpkg.com/deps-sort/-/deps-sort-2.0.0.tgz#091724902e84658260eb910748cccd1af6e21fb5" 1055 | dependencies: 1056 | JSONStream "^1.0.3" 1057 | shasum "^1.0.0" 1058 | subarg "^1.0.0" 1059 | through2 "^2.0.0" 1060 | 1061 | des.js@^1.0.0: 1062 | version "1.0.0" 1063 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" 1064 | dependencies: 1065 | inherits "^2.0.1" 1066 | minimalistic-assert "^1.0.0" 1067 | 1068 | destroy@~1.0.4: 1069 | version "1.0.4" 1070 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 1071 | 1072 | detect-libc@^1.0.2: 1073 | version "1.0.3" 1074 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 1075 | 1076 | detective@^4.0.0: 1077 | version "4.7.1" 1078 | resolved "https://registry.yarnpkg.com/detective/-/detective-4.7.1.tgz#0eca7314338442febb6d65da54c10bb1c82b246e" 1079 | dependencies: 1080 | acorn "^5.2.1" 1081 | defined "^1.0.0" 1082 | 1083 | di@^0.0.1: 1084 | version "0.0.1" 1085 | resolved "https://registry.yarnpkg.com/di/-/di-0.0.1.tgz#806649326ceaa7caa3306d75d985ea2748ba913c" 1086 | 1087 | diff@3.3.1: 1088 | version "3.3.1" 1089 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.3.1.tgz#aa8567a6eed03c531fc89d3f711cd0e5259dec75" 1090 | 1091 | diffie-hellman@^5.0.0: 1092 | version "5.0.2" 1093 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" 1094 | dependencies: 1095 | bn.js "^4.1.0" 1096 | miller-rabin "^4.0.0" 1097 | randombytes "^2.0.0" 1098 | 1099 | doctrine@^2.0.0: 1100 | version "2.0.0" 1101 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" 1102 | dependencies: 1103 | esutils "^2.0.2" 1104 | isarray "^1.0.0" 1105 | 1106 | dom-serialize@^2.2.0: 1107 | version "2.2.1" 1108 | resolved "https://registry.yarnpkg.com/dom-serialize/-/dom-serialize-2.2.1.tgz#562ae8999f44be5ea3076f5419dcd59eb43ac95b" 1109 | dependencies: 1110 | custom-event "~1.0.0" 1111 | ent "~2.2.0" 1112 | extend "^3.0.0" 1113 | void-elements "^2.0.0" 1114 | 1115 | dom-serializer@0: 1116 | version "0.1.0" 1117 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82" 1118 | dependencies: 1119 | domelementtype "~1.1.1" 1120 | entities "~1.1.1" 1121 | 1122 | domain-browser@~1.1.0: 1123 | version "1.1.7" 1124 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" 1125 | 1126 | domelementtype@1, domelementtype@^1.3.0: 1127 | version "1.3.0" 1128 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.0.tgz#b17aed82e8ab59e52dd9c19b1756e0fc187204c2" 1129 | 1130 | domelementtype@~1.1.1: 1131 | version "1.1.3" 1132 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.1.3.tgz#bd28773e2642881aec51544924299c5cd822185b" 1133 | 1134 | domhandler@^2.3.0: 1135 | version "2.4.1" 1136 | resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.4.1.tgz#892e47000a99be55bbf3774ffea0561d8879c259" 1137 | dependencies: 1138 | domelementtype "1" 1139 | 1140 | domutils@^1.5.1: 1141 | version "1.6.2" 1142 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.6.2.tgz#1958cc0b4c9426e9ed367fb1c8e854891b0fa3ff" 1143 | dependencies: 1144 | dom-serializer "0" 1145 | domelementtype "1" 1146 | 1147 | double-ended-queue@^2.1.0-0: 1148 | version "2.1.0-0" 1149 | resolved "https://registry.yarnpkg.com/double-ended-queue/-/double-ended-queue-2.1.0-0.tgz#103d3527fd31528f40188130c841efdd78264e5c" 1150 | 1151 | duplexer2@^0.1.2, duplexer2@~0.1.0, duplexer2@~0.1.2: 1152 | version "0.1.4" 1153 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" 1154 | dependencies: 1155 | readable-stream "^2.0.2" 1156 | 1157 | ecc-jsbn@~0.1.1: 1158 | version "0.1.1" 1159 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1160 | dependencies: 1161 | jsbn "~0.1.0" 1162 | 1163 | ee-first@1.1.1: 1164 | version "1.1.1" 1165 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 1166 | 1167 | elliptic@^6.0.0: 1168 | version "6.4.0" 1169 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df" 1170 | dependencies: 1171 | bn.js "^4.4.0" 1172 | brorand "^1.0.1" 1173 | hash.js "^1.0.0" 1174 | hmac-drbg "^1.0.0" 1175 | inherits "^2.0.1" 1176 | minimalistic-assert "^1.0.0" 1177 | minimalistic-crypto-utils "^1.0.0" 1178 | 1179 | encodeurl@~1.0.1: 1180 | version "1.0.1" 1181 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20" 1182 | 1183 | end-of-stream@^1.0.0: 1184 | version "1.4.1" 1185 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.1.tgz#ed29634d19baba463b6ce6b80a37213eab71ec43" 1186 | dependencies: 1187 | once "^1.4.0" 1188 | 1189 | engine.io-client@~3.1.0: 1190 | version "3.1.4" 1191 | resolved "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-3.1.4.tgz#4fcf1370b47163bd2ce9be2733972430350d4ea1" 1192 | dependencies: 1193 | component-emitter "1.2.1" 1194 | component-inherit "0.0.3" 1195 | debug "~2.6.9" 1196 | engine.io-parser "~2.1.1" 1197 | has-cors "1.1.0" 1198 | indexof "0.0.1" 1199 | parseqs "0.0.5" 1200 | parseuri "0.0.5" 1201 | ws "~3.3.1" 1202 | xmlhttprequest-ssl "~1.5.4" 1203 | yeast "0.1.2" 1204 | 1205 | engine.io-parser@~2.1.0, engine.io-parser@~2.1.1: 1206 | version "2.1.2" 1207 | resolved "https://registry.yarnpkg.com/engine.io-parser/-/engine.io-parser-2.1.2.tgz#4c0f4cff79aaeecbbdcfdea66a823c6085409196" 1208 | dependencies: 1209 | after "0.8.2" 1210 | arraybuffer.slice "~0.0.7" 1211 | base64-arraybuffer "0.1.5" 1212 | blob "0.0.4" 1213 | has-binary2 "~1.0.2" 1214 | 1215 | engine.io@~3.1.0: 1216 | version "3.1.4" 1217 | resolved "https://registry.yarnpkg.com/engine.io/-/engine.io-3.1.4.tgz#3d0211b70a552ce841ffc7da8627b301a9a4162e" 1218 | dependencies: 1219 | accepts "1.3.3" 1220 | base64id "1.0.0" 1221 | cookie "0.3.1" 1222 | debug "~2.6.9" 1223 | engine.io-parser "~2.1.0" 1224 | ws "~3.3.1" 1225 | optionalDependencies: 1226 | uws "~0.14.4" 1227 | 1228 | ent@~2.2.0: 1229 | version "2.2.0" 1230 | resolved "https://registry.yarnpkg.com/ent/-/ent-2.2.0.tgz#e964219325a21d05f44466a2f686ed6ce5f5dd1d" 1231 | 1232 | entities@^1.1.1, entities@~1.1.1: 1233 | version "1.1.1" 1234 | resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0" 1235 | 1236 | es6-promise@^4.0.3: 1237 | version "4.2.2" 1238 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.2.2.tgz#f722d7769af88bd33bc13ec6605e1f92966b82d9" 1239 | 1240 | es6-promisify@^5.0.0: 1241 | version "5.0.0" 1242 | resolved "https://registry.yarnpkg.com/es6-promisify/-/es6-promisify-5.0.0.tgz#5109d62f3e56ea967c4b63505aef08291c8a5203" 1243 | dependencies: 1244 | es6-promise "^4.0.3" 1245 | 1246 | escape-html@~1.0.3: 1247 | version "1.0.3" 1248 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 1249 | 1250 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1251 | version "1.0.5" 1252 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1253 | 1254 | escodegen@1.x.x: 1255 | version "1.9.0" 1256 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.9.0.tgz#9811a2f265dc1cd3894420ee3717064b632b8852" 1257 | dependencies: 1258 | esprima "^3.1.3" 1259 | estraverse "^4.2.0" 1260 | esutils "^2.0.2" 1261 | optionator "^0.8.1" 1262 | optionalDependencies: 1263 | source-map "~0.5.6" 1264 | 1265 | eslint-plugin-html@^3.2.2: 1266 | version "3.2.2" 1267 | resolved "https://registry.yarnpkg.com/eslint-plugin-html/-/eslint-plugin-html-3.2.2.tgz#ef7093621d3a93de3206fd1f92f347ea9a1a4dfa" 1268 | dependencies: 1269 | htmlparser2 "^3.8.2" 1270 | semver "^5.4.1" 1271 | 1272 | eslint-scope@^3.7.1: 1273 | version "3.7.1" 1274 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" 1275 | dependencies: 1276 | esrecurse "^4.1.0" 1277 | estraverse "^4.1.1" 1278 | 1279 | eslint@^4.9.0: 1280 | version "4.9.0" 1281 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.9.0.tgz#76879d274068261b191fe0f2f56c74c2f4208e8b" 1282 | dependencies: 1283 | ajv "^5.2.0" 1284 | babel-code-frame "^6.22.0" 1285 | chalk "^2.1.0" 1286 | concat-stream "^1.6.0" 1287 | cross-spawn "^5.1.0" 1288 | debug "^3.0.1" 1289 | doctrine "^2.0.0" 1290 | eslint-scope "^3.7.1" 1291 | espree "^3.5.1" 1292 | esquery "^1.0.0" 1293 | estraverse "^4.2.0" 1294 | esutils "^2.0.2" 1295 | file-entry-cache "^2.0.0" 1296 | functional-red-black-tree "^1.0.1" 1297 | glob "^7.1.2" 1298 | globals "^9.17.0" 1299 | ignore "^3.3.3" 1300 | imurmurhash "^0.1.4" 1301 | inquirer "^3.0.6" 1302 | is-resolvable "^1.0.0" 1303 | js-yaml "^3.9.1" 1304 | json-stable-stringify "^1.0.1" 1305 | levn "^0.3.0" 1306 | lodash "^4.17.4" 1307 | minimatch "^3.0.2" 1308 | mkdirp "^0.5.1" 1309 | natural-compare "^1.4.0" 1310 | optionator "^0.8.2" 1311 | path-is-inside "^1.0.2" 1312 | pluralize "^7.0.0" 1313 | progress "^2.0.0" 1314 | require-uncached "^1.0.3" 1315 | semver "^5.3.0" 1316 | strip-ansi "^4.0.0" 1317 | strip-json-comments "~2.0.1" 1318 | table "^4.0.1" 1319 | text-table "~0.2.0" 1320 | 1321 | espree@^3.5.1: 1322 | version "3.5.1" 1323 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.1.tgz#0c988b8ab46db53100a1954ae4ba995ddd27d87e" 1324 | dependencies: 1325 | acorn "^5.1.1" 1326 | acorn-jsx "^3.0.0" 1327 | 1328 | esprima@3.x.x, esprima@^3.1.3: 1329 | version "3.1.3" 1330 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1331 | 1332 | esprima@^4.0.0: 1333 | version "4.0.0" 1334 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 1335 | 1336 | esquery@^1.0.0: 1337 | version "1.0.0" 1338 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 1339 | dependencies: 1340 | estraverse "^4.0.0" 1341 | 1342 | esrecurse@^4.1.0: 1343 | version "4.2.0" 1344 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163" 1345 | dependencies: 1346 | estraverse "^4.1.0" 1347 | object-assign "^4.0.1" 1348 | 1349 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: 1350 | version "4.2.0" 1351 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1352 | 1353 | esutils@^2.0.2: 1354 | version "2.0.2" 1355 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1356 | 1357 | etag@~1.8.1: 1358 | version "1.8.1" 1359 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" 1360 | 1361 | eventemitter3@1.x.x: 1362 | version "1.2.0" 1363 | resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-1.2.0.tgz#1c86991d816ad1e504750e73874224ecf3bec508" 1364 | 1365 | events@~1.1.0: 1366 | version "1.1.1" 1367 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 1368 | 1369 | evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: 1370 | version "1.0.3" 1371 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" 1372 | dependencies: 1373 | md5.js "^1.3.4" 1374 | safe-buffer "^5.1.1" 1375 | 1376 | expand-braces@^0.1.1: 1377 | version "0.1.2" 1378 | resolved "https://registry.yarnpkg.com/expand-braces/-/expand-braces-0.1.2.tgz#488b1d1d2451cb3d3a6b192cfc030f44c5855fea" 1379 | dependencies: 1380 | array-slice "^0.2.3" 1381 | array-unique "^0.2.1" 1382 | braces "^0.1.2" 1383 | 1384 | expand-brackets@^0.1.4: 1385 | version "0.1.5" 1386 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1387 | dependencies: 1388 | is-posix-bracket "^0.1.0" 1389 | 1390 | expand-range@^0.1.0: 1391 | version "0.1.1" 1392 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-0.1.1.tgz#4cb8eda0993ca56fa4f41fc42f3cbb4ccadff044" 1393 | dependencies: 1394 | is-number "^0.1.1" 1395 | repeat-string "^0.2.2" 1396 | 1397 | expand-range@^1.8.1: 1398 | version "1.8.2" 1399 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1400 | dependencies: 1401 | fill-range "^2.1.0" 1402 | 1403 | express@^4.16.2: 1404 | version "4.16.2" 1405 | resolved "https://registry.yarnpkg.com/express/-/express-4.16.2.tgz#e35c6dfe2d64b7dca0a5cd4f21781be3299e076c" 1406 | dependencies: 1407 | accepts "~1.3.4" 1408 | array-flatten "1.1.1" 1409 | body-parser "1.18.2" 1410 | content-disposition "0.5.2" 1411 | content-type "~1.0.4" 1412 | cookie "0.3.1" 1413 | cookie-signature "1.0.6" 1414 | debug "2.6.9" 1415 | depd "~1.1.1" 1416 | encodeurl "~1.0.1" 1417 | escape-html "~1.0.3" 1418 | etag "~1.8.1" 1419 | finalhandler "1.1.0" 1420 | fresh "0.5.2" 1421 | merge-descriptors "1.0.1" 1422 | methods "~1.1.2" 1423 | on-finished "~2.3.0" 1424 | parseurl "~1.3.2" 1425 | path-to-regexp "0.1.7" 1426 | proxy-addr "~2.0.2" 1427 | qs "6.5.1" 1428 | range-parser "~1.2.0" 1429 | safe-buffer "5.1.1" 1430 | send "0.16.1" 1431 | serve-static "1.13.1" 1432 | setprototypeof "1.1.0" 1433 | statuses "~1.3.1" 1434 | type-is "~1.6.15" 1435 | utils-merge "1.0.1" 1436 | vary "~1.1.2" 1437 | 1438 | extend@3, extend@^3.0.0, extend@~3.0.0, extend@~3.0.1: 1439 | version "3.0.1" 1440 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1441 | 1442 | external-editor@^2.0.4: 1443 | version "2.0.5" 1444 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.0.5.tgz#52c249a3981b9ba187c7cacf5beb50bf1d91a6bc" 1445 | dependencies: 1446 | iconv-lite "^0.4.17" 1447 | jschardet "^1.4.2" 1448 | tmp "^0.0.33" 1449 | 1450 | extglob@^0.3.1: 1451 | version "0.3.2" 1452 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1453 | dependencies: 1454 | is-extglob "^1.0.0" 1455 | 1456 | extract-zip@^1.6.5: 1457 | version "1.6.6" 1458 | resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-1.6.6.tgz#1290ede8d20d0872b429fd3f351ca128ec5ef85c" 1459 | dependencies: 1460 | concat-stream "1.6.0" 1461 | debug "2.6.9" 1462 | mkdirp "0.5.0" 1463 | yauzl "2.4.1" 1464 | 1465 | extsprintf@1.3.0: 1466 | version "1.3.0" 1467 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1468 | 1469 | extsprintf@^1.2.0: 1470 | version "1.4.0" 1471 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 1472 | 1473 | fast-deep-equal@^1.0.0: 1474 | version "1.0.0" 1475 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 1476 | 1477 | fast-json-stable-stringify@^2.0.0: 1478 | version "2.0.0" 1479 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1480 | 1481 | fast-levenshtein@~2.0.4: 1482 | version "2.0.6" 1483 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1484 | 1485 | fd-slicer@~1.0.1: 1486 | version "1.0.1" 1487 | resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.0.1.tgz#8b5bcbd9ec327c5041bf9ab023fd6750f1177e65" 1488 | dependencies: 1489 | pend "~1.2.0" 1490 | 1491 | figures@^2.0.0: 1492 | version "2.0.0" 1493 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1494 | dependencies: 1495 | escape-string-regexp "^1.0.5" 1496 | 1497 | file-entry-cache@^2.0.0: 1498 | version "2.0.0" 1499 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1500 | dependencies: 1501 | flat-cache "^1.2.1" 1502 | object-assign "^4.0.1" 1503 | 1504 | file-uri-to-path@1: 1505 | version "1.0.0" 1506 | resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" 1507 | 1508 | filename-regex@^2.0.0: 1509 | version "2.0.1" 1510 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1511 | 1512 | fill-range@^2.1.0: 1513 | version "2.2.3" 1514 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1515 | dependencies: 1516 | is-number "^2.1.0" 1517 | isobject "^2.0.0" 1518 | randomatic "^1.1.3" 1519 | repeat-element "^1.1.2" 1520 | repeat-string "^1.5.2" 1521 | 1522 | finalhandler@1.0.6: 1523 | version "1.0.6" 1524 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.0.6.tgz#007aea33d1a4d3e42017f624848ad58d212f814f" 1525 | dependencies: 1526 | debug "2.6.9" 1527 | encodeurl "~1.0.1" 1528 | escape-html "~1.0.3" 1529 | on-finished "~2.3.0" 1530 | parseurl "~1.3.2" 1531 | statuses "~1.3.1" 1532 | unpipe "~1.0.0" 1533 | 1534 | finalhandler@1.1.0: 1535 | version "1.1.0" 1536 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.0.tgz#ce0b6855b45853e791b2fcc680046d88253dd7f5" 1537 | dependencies: 1538 | debug "2.6.9" 1539 | encodeurl "~1.0.1" 1540 | escape-html "~1.0.3" 1541 | on-finished "~2.3.0" 1542 | parseurl "~1.3.2" 1543 | statuses "~1.3.1" 1544 | unpipe "~1.0.0" 1545 | 1546 | flat-cache@^1.2.1: 1547 | version "1.3.0" 1548 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.0.tgz#d3030b32b38154f4e3b7e9c709f490f7ef97c481" 1549 | dependencies: 1550 | circular-json "^0.3.1" 1551 | del "^2.0.2" 1552 | graceful-fs "^4.1.2" 1553 | write "^0.2.1" 1554 | 1555 | follow-redirects@1.0.0: 1556 | version "1.0.0" 1557 | resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.0.0.tgz#8e34298cbd2e176f254effec75a1c78cc849fd37" 1558 | dependencies: 1559 | debug "^2.2.0" 1560 | 1561 | for-in@^1.0.1: 1562 | version "1.0.2" 1563 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1564 | 1565 | for-own@^0.1.4: 1566 | version "0.1.5" 1567 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1568 | dependencies: 1569 | for-in "^1.0.1" 1570 | 1571 | forever-agent@~0.6.1: 1572 | version "0.6.1" 1573 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1574 | 1575 | form-data@~2.0.0: 1576 | version "2.0.0" 1577 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.0.0.tgz#6f0aebadcc5da16c13e1ecc11137d85f9b883b25" 1578 | dependencies: 1579 | asynckit "^0.4.0" 1580 | combined-stream "^1.0.5" 1581 | mime-types "^2.1.11" 1582 | 1583 | form-data@~2.1.1: 1584 | version "2.1.4" 1585 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1586 | dependencies: 1587 | asynckit "^0.4.0" 1588 | combined-stream "^1.0.5" 1589 | mime-types "^2.1.12" 1590 | 1591 | form-data@~2.3.1: 1592 | version "2.3.1" 1593 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.1.tgz#6fb94fbd71885306d73d15cc497fe4cc4ecd44bf" 1594 | dependencies: 1595 | asynckit "^0.4.0" 1596 | combined-stream "^1.0.5" 1597 | mime-types "^2.1.12" 1598 | 1599 | forwarded@~0.1.2: 1600 | version "0.1.2" 1601 | resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84" 1602 | 1603 | fresh@0.5.2: 1604 | version "0.5.2" 1605 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" 1606 | 1607 | fs-access@^1.0.0: 1608 | version "1.0.1" 1609 | resolved "https://registry.yarnpkg.com/fs-access/-/fs-access-1.0.1.tgz#d6a87f262271cefebec30c553407fb995da8777a" 1610 | dependencies: 1611 | null-check "^1.0.0" 1612 | 1613 | fs.realpath@^1.0.0: 1614 | version "1.0.0" 1615 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1616 | 1617 | fsevents@^1.0.0: 1618 | version "1.1.3" 1619 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8" 1620 | dependencies: 1621 | nan "^2.3.0" 1622 | node-pre-gyp "^0.6.39" 1623 | 1624 | fstream-ignore@^1.0.5: 1625 | version "1.0.5" 1626 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1627 | dependencies: 1628 | fstream "^1.0.0" 1629 | inherits "2" 1630 | minimatch "^3.0.0" 1631 | 1632 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1633 | version "1.0.11" 1634 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1635 | dependencies: 1636 | graceful-fs "^4.1.2" 1637 | inherits "~2.0.0" 1638 | mkdirp ">=0.5 0" 1639 | rimraf "2" 1640 | 1641 | ftp@~0.3.10: 1642 | version "0.3.10" 1643 | resolved "https://registry.yarnpkg.com/ftp/-/ftp-0.3.10.tgz#9197d861ad8142f3e63d5a83bfe4c59f7330885d" 1644 | dependencies: 1645 | readable-stream "1.1.x" 1646 | xregexp "2.0.0" 1647 | 1648 | function-bind@^1.0.2: 1649 | version "1.1.1" 1650 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1651 | 1652 | functional-red-black-tree@^1.0.1: 1653 | version "1.0.1" 1654 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 1655 | 1656 | gauge@~2.7.3: 1657 | version "2.7.4" 1658 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1659 | dependencies: 1660 | aproba "^1.0.3" 1661 | console-control-strings "^1.0.0" 1662 | has-unicode "^2.0.0" 1663 | object-assign "^4.1.0" 1664 | signal-exit "^3.0.0" 1665 | string-width "^1.0.1" 1666 | strip-ansi "^3.0.1" 1667 | wide-align "^1.1.0" 1668 | 1669 | generate-function@^2.0.0: 1670 | version "2.0.0" 1671 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1672 | 1673 | generate-object-property@^1.1.0: 1674 | version "1.2.0" 1675 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1676 | dependencies: 1677 | is-property "^1.0.0" 1678 | 1679 | get-func-name@^2.0.0: 1680 | version "2.0.0" 1681 | resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41" 1682 | 1683 | get-uri@2: 1684 | version "2.0.1" 1685 | resolved "https://registry.yarnpkg.com/get-uri/-/get-uri-2.0.1.tgz#dbdcacacd8c608a38316869368117697a1631c59" 1686 | dependencies: 1687 | data-uri-to-buffer "1" 1688 | debug "2" 1689 | extend "3" 1690 | file-uri-to-path "1" 1691 | ftp "~0.3.10" 1692 | readable-stream "2" 1693 | 1694 | getpass@^0.1.1: 1695 | version "0.1.7" 1696 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1697 | dependencies: 1698 | assert-plus "^1.0.0" 1699 | 1700 | glob-base@^0.3.0: 1701 | version "0.3.0" 1702 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1703 | dependencies: 1704 | glob-parent "^2.0.0" 1705 | is-glob "^2.0.0" 1706 | 1707 | glob-parent@^2.0.0: 1708 | version "2.0.0" 1709 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1710 | dependencies: 1711 | is-glob "^2.0.0" 1712 | 1713 | glob@7.1.2, glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.1.0, glob@^7.1.1, glob@^7.1.2: 1714 | version "7.1.2" 1715 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1716 | dependencies: 1717 | fs.realpath "^1.0.0" 1718 | inflight "^1.0.4" 1719 | inherits "2" 1720 | minimatch "^3.0.4" 1721 | once "^1.3.0" 1722 | path-is-absolute "^1.0.0" 1723 | 1724 | globals@^9.17.0: 1725 | version "9.18.0" 1726 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1727 | 1728 | globby@^5.0.0: 1729 | version "5.0.0" 1730 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1731 | dependencies: 1732 | array-union "^1.0.1" 1733 | arrify "^1.0.0" 1734 | glob "^7.0.3" 1735 | object-assign "^4.0.1" 1736 | pify "^2.0.0" 1737 | pinkie-promise "^2.0.0" 1738 | 1739 | graceful-fs@^4.1.0, graceful-fs@^4.1.2: 1740 | version "4.1.11" 1741 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1742 | 1743 | growl@1.10.3: 1744 | version "1.10.3" 1745 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.10.3.tgz#1926ba90cf3edfe2adb4927f5880bc22c66c790f" 1746 | 1747 | har-schema@^1.0.5: 1748 | version "1.0.5" 1749 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1750 | 1751 | har-schema@^2.0.0: 1752 | version "2.0.0" 1753 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 1754 | 1755 | har-validator@~2.0.6: 1756 | version "2.0.6" 1757 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 1758 | dependencies: 1759 | chalk "^1.1.1" 1760 | commander "^2.9.0" 1761 | is-my-json-valid "^2.12.4" 1762 | pinkie-promise "^2.0.0" 1763 | 1764 | har-validator@~4.2.1: 1765 | version "4.2.1" 1766 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1767 | dependencies: 1768 | ajv "^4.9.1" 1769 | har-schema "^1.0.5" 1770 | 1771 | har-validator@~5.0.3: 1772 | version "5.0.3" 1773 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd" 1774 | dependencies: 1775 | ajv "^5.1.0" 1776 | har-schema "^2.0.0" 1777 | 1778 | has-ansi@^2.0.0: 1779 | version "2.0.0" 1780 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1781 | dependencies: 1782 | ansi-regex "^2.0.0" 1783 | 1784 | has-binary2@~1.0.2: 1785 | version "1.0.2" 1786 | resolved "https://registry.yarnpkg.com/has-binary2/-/has-binary2-1.0.2.tgz#e83dba49f0b9be4d026d27365350d9f03f54be98" 1787 | dependencies: 1788 | isarray "2.0.1" 1789 | 1790 | has-cors@1.1.0: 1791 | version "1.1.0" 1792 | resolved "https://registry.yarnpkg.com/has-cors/-/has-cors-1.1.0.tgz#5e474793f7ea9843d1bb99c23eef49ff126fff39" 1793 | 1794 | has-flag@^2.0.0: 1795 | version "2.0.0" 1796 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1797 | 1798 | has-unicode@^2.0.0: 1799 | version "2.0.1" 1800 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1801 | 1802 | has@^1.0.0: 1803 | version "1.0.1" 1804 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1805 | dependencies: 1806 | function-bind "^1.0.2" 1807 | 1808 | hash-base@^2.0.0: 1809 | version "2.0.2" 1810 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-2.0.2.tgz#66ea1d856db4e8a5470cadf6fce23ae5244ef2e1" 1811 | dependencies: 1812 | inherits "^2.0.1" 1813 | 1814 | hash-base@^3.0.0: 1815 | version "3.0.4" 1816 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" 1817 | dependencies: 1818 | inherits "^2.0.1" 1819 | safe-buffer "^5.0.1" 1820 | 1821 | hash.js@^1.0.0, hash.js@^1.0.3: 1822 | version "1.1.3" 1823 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.3.tgz#340dedbe6290187151c1ea1d777a3448935df846" 1824 | dependencies: 1825 | inherits "^2.0.3" 1826 | minimalistic-assert "^1.0.0" 1827 | 1828 | hawk@3.1.3, hawk@~3.1.3: 1829 | version "3.1.3" 1830 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1831 | dependencies: 1832 | boom "2.x.x" 1833 | cryptiles "2.x.x" 1834 | hoek "2.x.x" 1835 | sntp "1.x.x" 1836 | 1837 | hawk@~6.0.2: 1838 | version "6.0.2" 1839 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038" 1840 | dependencies: 1841 | boom "4.x.x" 1842 | cryptiles "3.x.x" 1843 | hoek "4.x.x" 1844 | sntp "2.x.x" 1845 | 1846 | he@1.1.1: 1847 | version "1.1.1" 1848 | resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd" 1849 | 1850 | hipchat-notifier@^1.1.0: 1851 | version "1.1.0" 1852 | resolved "https://registry.yarnpkg.com/hipchat-notifier/-/hipchat-notifier-1.1.0.tgz#b6d249755437c191082367799d3ba9a0f23b231e" 1853 | dependencies: 1854 | lodash "^4.0.0" 1855 | request "^2.0.0" 1856 | 1857 | hmac-drbg@^1.0.0: 1858 | version "1.0.1" 1859 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" 1860 | dependencies: 1861 | hash.js "^1.0.3" 1862 | minimalistic-assert "^1.0.0" 1863 | minimalistic-crypto-utils "^1.0.1" 1864 | 1865 | hoek@2.x.x: 1866 | version "2.16.3" 1867 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1868 | 1869 | hoek@4.x.x: 1870 | version "4.2.0" 1871 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.0.tgz#72d9d0754f7fe25ca2d01ad8f8f9a9449a89526d" 1872 | 1873 | htmlescape@^1.1.0: 1874 | version "1.1.1" 1875 | resolved "https://registry.yarnpkg.com/htmlescape/-/htmlescape-1.1.1.tgz#3a03edc2214bca3b66424a3e7959349509cb0351" 1876 | 1877 | htmlparser2@^3.8.2: 1878 | version "3.9.2" 1879 | resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.9.2.tgz#1bdf87acca0f3f9e53fa4fcceb0f4b4cbb00b338" 1880 | dependencies: 1881 | domelementtype "^1.3.0" 1882 | domhandler "^2.3.0" 1883 | domutils "^1.5.1" 1884 | entities "^1.1.1" 1885 | inherits "^2.0.1" 1886 | readable-stream "^2.0.2" 1887 | 1888 | http-errors@1.6.2, http-errors@~1.6.2: 1889 | version "1.6.2" 1890 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.2.tgz#0a002cc85707192a7e7946ceedc11155f60ec736" 1891 | dependencies: 1892 | depd "1.1.1" 1893 | inherits "2.0.3" 1894 | setprototypeof "1.0.3" 1895 | statuses ">= 1.3.1 < 2" 1896 | 1897 | http-proxy-agent@1: 1898 | version "1.0.0" 1899 | resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-1.0.0.tgz#cc1ce38e453bf984a0f7702d2dd59c73d081284a" 1900 | dependencies: 1901 | agent-base "2" 1902 | debug "2" 1903 | extend "3" 1904 | 1905 | http-proxy@^1.13.0: 1906 | version "1.16.2" 1907 | resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.16.2.tgz#06dff292952bf64dbe8471fa9df73066d4f37742" 1908 | dependencies: 1909 | eventemitter3 "1.x.x" 1910 | requires-port "1.x.x" 1911 | 1912 | http-signature@~1.1.0: 1913 | version "1.1.1" 1914 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1915 | dependencies: 1916 | assert-plus "^0.2.0" 1917 | jsprim "^1.2.2" 1918 | sshpk "^1.7.0" 1919 | 1920 | http-signature@~1.2.0: 1921 | version "1.2.0" 1922 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 1923 | dependencies: 1924 | assert-plus "^1.0.0" 1925 | jsprim "^1.2.2" 1926 | sshpk "^1.7.0" 1927 | 1928 | httpntlm@1.6.1: 1929 | version "1.6.1" 1930 | resolved "https://registry.yarnpkg.com/httpntlm/-/httpntlm-1.6.1.tgz#ad01527143a2e8773cfae6a96f58656bb52a34b2" 1931 | dependencies: 1932 | httpreq ">=0.4.22" 1933 | underscore "~1.7.0" 1934 | 1935 | httpreq@>=0.4.22: 1936 | version "0.4.24" 1937 | resolved "https://registry.yarnpkg.com/httpreq/-/httpreq-0.4.24.tgz#4335ffd82cd969668a39465c929ac61d6393627f" 1938 | 1939 | https-browserify@^1.0.0: 1940 | version "1.0.0" 1941 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" 1942 | 1943 | https-proxy-agent@1, https-proxy-agent@^1.0.0, https-proxy-agent@~1.0.0: 1944 | version "1.0.0" 1945 | resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-1.0.0.tgz#35f7da6c48ce4ddbfa264891ac593ee5ff8671e6" 1946 | dependencies: 1947 | agent-base "2" 1948 | debug "2" 1949 | extend "3" 1950 | 1951 | https-proxy-agent@^2.1.0: 1952 | version "2.1.1" 1953 | resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-2.1.1.tgz#a7ce4382a1ba8266ee848578778122d491260fd9" 1954 | dependencies: 1955 | agent-base "^4.1.0" 1956 | debug "^3.1.0" 1957 | 1958 | iconv-lite@0.4.15: 1959 | version "0.4.15" 1960 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.15.tgz#fe265a218ac6a57cfe854927e9d04c19825eddeb" 1961 | 1962 | iconv-lite@0.4.19, iconv-lite@^0.4.17: 1963 | version "0.4.19" 1964 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 1965 | 1966 | ieee754@^1.1.4: 1967 | version "1.1.8" 1968 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 1969 | 1970 | ignore@^3.3.3: 1971 | version "3.3.5" 1972 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.5.tgz#c4e715455f6073a8d7e5dae72d2fc9d71663dba6" 1973 | 1974 | imurmurhash@^0.1.4: 1975 | version "0.1.4" 1976 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1977 | 1978 | indexof@0.0.1: 1979 | version "0.0.1" 1980 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 1981 | 1982 | inflection@~1.10.0: 1983 | version "1.10.0" 1984 | resolved "https://registry.yarnpkg.com/inflection/-/inflection-1.10.0.tgz#5bffcb1197ad3e81050f8e17e21668087ee9eb2f" 1985 | 1986 | inflection@~1.3.0: 1987 | version "1.3.8" 1988 | resolved "https://registry.yarnpkg.com/inflection/-/inflection-1.3.8.tgz#cbd160da9f75b14c3cc63578d4f396784bf3014e" 1989 | 1990 | inflight@^1.0.4: 1991 | version "1.0.6" 1992 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1993 | dependencies: 1994 | once "^1.3.0" 1995 | wrappy "1" 1996 | 1997 | inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: 1998 | version "2.0.3" 1999 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 2000 | 2001 | inherits@2.0.1: 2002 | version "2.0.1" 2003 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 2004 | 2005 | ini@~1.3.0: 2006 | version "1.3.5" 2007 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 2008 | 2009 | inline-source-map@~0.6.0: 2010 | version "0.6.2" 2011 | resolved "https://registry.yarnpkg.com/inline-source-map/-/inline-source-map-0.6.2.tgz#f9393471c18a79d1724f863fa38b586370ade2a5" 2012 | dependencies: 2013 | source-map "~0.5.3" 2014 | 2015 | inquirer@^3.0.6: 2016 | version "3.3.0" 2017 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" 2018 | dependencies: 2019 | ansi-escapes "^3.0.0" 2020 | chalk "^2.0.0" 2021 | cli-cursor "^2.1.0" 2022 | cli-width "^2.0.0" 2023 | external-editor "^2.0.4" 2024 | figures "^2.0.0" 2025 | lodash "^4.3.0" 2026 | mute-stream "0.0.7" 2027 | run-async "^2.2.0" 2028 | rx-lite "^4.0.8" 2029 | rx-lite-aggregates "^4.0.8" 2030 | string-width "^2.1.0" 2031 | strip-ansi "^4.0.0" 2032 | through "^2.3.6" 2033 | 2034 | insert-module-globals@^7.0.0: 2035 | version "7.0.1" 2036 | resolved "https://registry.yarnpkg.com/insert-module-globals/-/insert-module-globals-7.0.1.tgz#c03bf4e01cb086d5b5e5ace8ad0afe7889d638c3" 2037 | dependencies: 2038 | JSONStream "^1.0.3" 2039 | combine-source-map "~0.7.1" 2040 | concat-stream "~1.5.1" 2041 | is-buffer "^1.1.0" 2042 | lexical-scope "^1.2.0" 2043 | process "~0.11.0" 2044 | through2 "^2.0.0" 2045 | xtend "^4.0.0" 2046 | 2047 | ip@1.0.1: 2048 | version "1.0.1" 2049 | resolved "https://registry.yarnpkg.com/ip/-/ip-1.0.1.tgz#c7e356cdea225ae71b36d70f2e71a92ba4e42590" 2050 | 2051 | ip@^1.1.2, ip@^1.1.4: 2052 | version "1.1.5" 2053 | resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a" 2054 | 2055 | ipaddr.js@1.5.2: 2056 | version "1.5.2" 2057 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.5.2.tgz#d4b505bde9946987ccf0fc58d9010ff9607e3fa0" 2058 | 2059 | is-binary-path@^1.0.0: 2060 | version "1.0.1" 2061 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 2062 | dependencies: 2063 | binary-extensions "^1.0.0" 2064 | 2065 | is-buffer@^1.1.0, is-buffer@^1.1.5: 2066 | version "1.1.6" 2067 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 2068 | 2069 | is-dotfile@^1.0.0: 2070 | version "1.0.3" 2071 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 2072 | 2073 | is-equal-shallow@^0.1.3: 2074 | version "0.1.3" 2075 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 2076 | dependencies: 2077 | is-primitive "^2.0.0" 2078 | 2079 | is-extendable@^0.1.1: 2080 | version "0.1.1" 2081 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 2082 | 2083 | is-extglob@^1.0.0: 2084 | version "1.0.0" 2085 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 2086 | 2087 | is-fullwidth-code-point@^1.0.0: 2088 | version "1.0.0" 2089 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 2090 | dependencies: 2091 | number-is-nan "^1.0.0" 2092 | 2093 | is-fullwidth-code-point@^2.0.0: 2094 | version "2.0.0" 2095 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 2096 | 2097 | is-glob@^2.0.0, is-glob@^2.0.1: 2098 | version "2.0.1" 2099 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 2100 | dependencies: 2101 | is-extglob "^1.0.0" 2102 | 2103 | is-my-json-valid@^2.12.4: 2104 | version "2.17.1" 2105 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.17.1.tgz#3da98914a70a22f0a8563ef1511a246c6fc55471" 2106 | dependencies: 2107 | generate-function "^2.0.0" 2108 | generate-object-property "^1.1.0" 2109 | jsonpointer "^4.0.0" 2110 | xtend "^4.0.0" 2111 | 2112 | is-number@^0.1.1: 2113 | version "0.1.1" 2114 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-0.1.1.tgz#69a7af116963d47206ec9bd9b48a14216f1e3806" 2115 | 2116 | is-number@^2.1.0: 2117 | version "2.1.0" 2118 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 2119 | dependencies: 2120 | kind-of "^3.0.2" 2121 | 2122 | is-number@^3.0.0: 2123 | version "3.0.0" 2124 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 2125 | dependencies: 2126 | kind-of "^3.0.2" 2127 | 2128 | is-path-cwd@^1.0.0: 2129 | version "1.0.0" 2130 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 2131 | 2132 | is-path-in-cwd@^1.0.0: 2133 | version "1.0.0" 2134 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 2135 | dependencies: 2136 | is-path-inside "^1.0.0" 2137 | 2138 | is-path-inside@^1.0.0: 2139 | version "1.0.0" 2140 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 2141 | dependencies: 2142 | path-is-inside "^1.0.1" 2143 | 2144 | is-posix-bracket@^0.1.0: 2145 | version "0.1.1" 2146 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 2147 | 2148 | is-primitive@^2.0.0: 2149 | version "2.0.0" 2150 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 2151 | 2152 | is-promise@^2.1.0: 2153 | version "2.1.0" 2154 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 2155 | 2156 | is-property@^1.0.0: 2157 | version "1.0.2" 2158 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 2159 | 2160 | is-resolvable@^1.0.0: 2161 | version "1.0.0" 2162 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 2163 | dependencies: 2164 | tryit "^1.0.1" 2165 | 2166 | is-stream@^1.1.0: 2167 | version "1.1.0" 2168 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2169 | 2170 | is-typedarray@~1.0.0: 2171 | version "1.0.0" 2172 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2173 | 2174 | isarray@0.0.1, isarray@~0.0.1: 2175 | version "0.0.1" 2176 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 2177 | 2178 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 2179 | version "1.0.0" 2180 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2181 | 2182 | isarray@2.0.1: 2183 | version "2.0.1" 2184 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.1.tgz#a37d94ed9cda2d59865c9f76fe596ee1f338741e" 2185 | 2186 | isbinaryfile@^3.0.0: 2187 | version "3.0.2" 2188 | resolved "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-3.0.2.tgz#4a3e974ec0cba9004d3fc6cde7209ea69368a621" 2189 | 2190 | isexe@^2.0.0: 2191 | version "2.0.0" 2192 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2193 | 2194 | isobject@^2.0.0: 2195 | version "2.1.0" 2196 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2197 | dependencies: 2198 | isarray "1.0.0" 2199 | 2200 | isstream@~0.1.2: 2201 | version "0.1.2" 2202 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2203 | 2204 | js-tokens@^3.0.2: 2205 | version "3.0.2" 2206 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 2207 | 2208 | js-yaml@^3.9.1: 2209 | version "3.10.0" 2210 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" 2211 | dependencies: 2212 | argparse "^1.0.7" 2213 | esprima "^4.0.0" 2214 | 2215 | jsbn@~0.1.0: 2216 | version "0.1.1" 2217 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2218 | 2219 | jschardet@^1.4.2: 2220 | version "1.5.1" 2221 | resolved "https://registry.yarnpkg.com/jschardet/-/jschardet-1.5.1.tgz#c519f629f86b3a5bedba58a88d311309eec097f9" 2222 | 2223 | json-schema-traverse@^0.3.0: 2224 | version "0.3.1" 2225 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 2226 | 2227 | json-schema@0.2.3: 2228 | version "0.2.3" 2229 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2230 | 2231 | json-stable-stringify@^1.0.1: 2232 | version "1.0.1" 2233 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2234 | dependencies: 2235 | jsonify "~0.0.0" 2236 | 2237 | json-stable-stringify@~0.0.0: 2238 | version "0.0.1" 2239 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-0.0.1.tgz#611c23e814db375527df851193db59dd2af27f45" 2240 | dependencies: 2241 | jsonify "~0.0.0" 2242 | 2243 | json-stringify-safe@5.0.x, json-stringify-safe@~5.0.1: 2244 | version "5.0.1" 2245 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2246 | 2247 | jsonify@~0.0.0: 2248 | version "0.0.0" 2249 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2250 | 2251 | jsonparse@^1.2.0: 2252 | version "1.3.1" 2253 | resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" 2254 | 2255 | jsonpointer@^4.0.0: 2256 | version "4.0.1" 2257 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 2258 | 2259 | jsprim@^1.2.2: 2260 | version "1.4.1" 2261 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 2262 | dependencies: 2263 | assert-plus "1.0.0" 2264 | extsprintf "1.3.0" 2265 | json-schema "0.2.3" 2266 | verror "1.10.0" 2267 | 2268 | karma-chai@^0.1.0: 2269 | version "0.1.0" 2270 | resolved "https://registry.yarnpkg.com/karma-chai/-/karma-chai-0.1.0.tgz#bee5ad40400517811ae34bb945f762909108b79a" 2271 | 2272 | karma-chrome-launcher@^2.2.0: 2273 | version "2.2.0" 2274 | resolved "https://registry.yarnpkg.com/karma-chrome-launcher/-/karma-chrome-launcher-2.2.0.tgz#cf1b9d07136cc18fe239327d24654c3dbc368acf" 2275 | dependencies: 2276 | fs-access "^1.0.0" 2277 | which "^1.2.1" 2278 | 2279 | karma-html2js-preprocessor@^1.1.0: 2280 | version "1.1.0" 2281 | resolved "https://registry.yarnpkg.com/karma-html2js-preprocessor/-/karma-html2js-preprocessor-1.1.0.tgz#fc09edf04bbe2bb6eee9ba1968f826b7388020bd" 2282 | 2283 | karma-mocha@^1.3.0: 2284 | version "1.3.0" 2285 | resolved "https://registry.yarnpkg.com/karma-mocha/-/karma-mocha-1.3.0.tgz#eeaac7ffc0e201eb63c467440d2b69c7cf3778bf" 2286 | dependencies: 2287 | minimist "1.2.0" 2288 | 2289 | karma-sauce-launcher@^1.2.0: 2290 | version "1.2.0" 2291 | resolved "https://registry.yarnpkg.com/karma-sauce-launcher/-/karma-sauce-launcher-1.2.0.tgz#6f2558ddef3cf56879fa27540c8ae9f8bfd16bca" 2292 | dependencies: 2293 | q "^1.5.0" 2294 | sauce-connect-launcher "^1.2.2" 2295 | saucelabs "^1.4.0" 2296 | wd "^1.4.0" 2297 | 2298 | karma@^2.0.0: 2299 | version "2.0.0" 2300 | resolved "https://registry.yarnpkg.com/karma/-/karma-2.0.0.tgz#a02698dd7f0f05ff5eb66ab8f65582490b512e58" 2301 | dependencies: 2302 | bluebird "^3.3.0" 2303 | body-parser "^1.16.1" 2304 | browserify "^14.5.0" 2305 | chokidar "^1.4.1" 2306 | colors "^1.1.0" 2307 | combine-lists "^1.0.0" 2308 | connect "^3.6.0" 2309 | core-js "^2.2.0" 2310 | di "^0.0.1" 2311 | dom-serialize "^2.2.0" 2312 | expand-braces "^0.1.1" 2313 | glob "^7.1.1" 2314 | graceful-fs "^4.1.2" 2315 | http-proxy "^1.13.0" 2316 | isbinaryfile "^3.0.0" 2317 | lodash "^4.17.4" 2318 | log4js "^2.3.9" 2319 | mime "^1.3.4" 2320 | minimatch "^3.0.2" 2321 | optimist "^0.6.1" 2322 | qjobs "^1.1.4" 2323 | range-parser "^1.2.0" 2324 | rimraf "^2.6.0" 2325 | safe-buffer "^5.0.1" 2326 | socket.io "2.0.4" 2327 | source-map "^0.6.1" 2328 | tmp "0.0.33" 2329 | useragent "^2.1.12" 2330 | 2331 | kind-of@^3.0.2: 2332 | version "3.2.2" 2333 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2334 | dependencies: 2335 | is-buffer "^1.1.5" 2336 | 2337 | kind-of@^4.0.0: 2338 | version "4.0.0" 2339 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2340 | dependencies: 2341 | is-buffer "^1.1.5" 2342 | 2343 | labeled-stream-splicer@^2.0.0: 2344 | version "2.0.0" 2345 | resolved "https://registry.yarnpkg.com/labeled-stream-splicer/-/labeled-stream-splicer-2.0.0.tgz#a52e1d138024c00b86b1c0c91f677918b8ae0a59" 2346 | dependencies: 2347 | inherits "^2.0.1" 2348 | isarray "~0.0.1" 2349 | stream-splicer "^2.0.0" 2350 | 2351 | lazystream@^1.0.0: 2352 | version "1.0.0" 2353 | resolved "https://registry.yarnpkg.com/lazystream/-/lazystream-1.0.0.tgz#f6995fe0f820392f61396be89462407bb77168e4" 2354 | dependencies: 2355 | readable-stream "^2.0.5" 2356 | 2357 | levn@^0.3.0, levn@~0.3.0: 2358 | version "0.3.0" 2359 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2360 | dependencies: 2361 | prelude-ls "~1.1.2" 2362 | type-check "~0.3.2" 2363 | 2364 | lexical-scope@^1.2.0: 2365 | version "1.2.0" 2366 | resolved "https://registry.yarnpkg.com/lexical-scope/-/lexical-scope-1.2.0.tgz#fcea5edc704a4b3a8796cdca419c3a0afaf22df4" 2367 | dependencies: 2368 | astw "^2.0.0" 2369 | 2370 | libbase64@0.1.0: 2371 | version "0.1.0" 2372 | resolved "https://registry.yarnpkg.com/libbase64/-/libbase64-0.1.0.tgz#62351a839563ac5ff5bd26f12f60e9830bb751e6" 2373 | 2374 | libmime@3.0.0: 2375 | version "3.0.0" 2376 | resolved "https://registry.yarnpkg.com/libmime/-/libmime-3.0.0.tgz#51a1a9e7448ecbd32cda54421675bb21bc093da6" 2377 | dependencies: 2378 | iconv-lite "0.4.15" 2379 | libbase64 "0.1.0" 2380 | libqp "1.1.0" 2381 | 2382 | libqp@1.1.0: 2383 | version "1.1.0" 2384 | resolved "https://registry.yarnpkg.com/libqp/-/libqp-1.1.0.tgz#f5e6e06ad74b794fb5b5b66988bf728ef1dedbe8" 2385 | 2386 | lit-html@^0.7.1: 2387 | version "0.7.1" 2388 | resolved "https://registry.yarnpkg.com/lit-html/-/lit-html-0.7.1.tgz#61785045cf84f9ee955fa078c2985b52b765ad16" 2389 | 2390 | lodash.memoize@~3.0.3: 2391 | version "3.0.4" 2392 | resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-3.0.4.tgz#2dcbd2c287cbc0a55cc42328bd0c736150d53e3f" 2393 | 2394 | lodash@4.16.2: 2395 | version "4.16.2" 2396 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.16.2.tgz#3e626db827048a699281a8a125226326cfc0e652" 2397 | 2398 | lodash@^4.0.0, lodash@^4.14.0, lodash@^4.15.0, lodash@^4.16.6, lodash@^4.17.4, lodash@^4.3.0, lodash@^4.5.0, lodash@^4.8.0: 2399 | version "4.17.4" 2400 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2401 | 2402 | log4js@^2.3.9: 2403 | version "2.5.1" 2404 | resolved "https://registry.yarnpkg.com/log4js/-/log4js-2.5.1.tgz#5b4553ee2b2bcf220027bb05d8daafd48c8d5431" 2405 | dependencies: 2406 | circular-json "^0.5.1" 2407 | date-format "^1.2.0" 2408 | debug "^3.1.0" 2409 | semver "^5.3.0" 2410 | streamroller "^0.7.0" 2411 | optionalDependencies: 2412 | amqplib "^0.5.2" 2413 | axios "^0.15.3" 2414 | hipchat-notifier "^1.1.0" 2415 | loggly "^1.1.0" 2416 | mailgun-js "^0.7.0" 2417 | nodemailer "^2.5.0" 2418 | redis "^2.7.1" 2419 | slack-node "~0.2.0" 2420 | 2421 | loggly@^1.1.0: 2422 | version "1.1.1" 2423 | resolved "https://registry.yarnpkg.com/loggly/-/loggly-1.1.1.tgz#0a0fc1d3fa3a5ec44fdc7b897beba2a4695cebee" 2424 | dependencies: 2425 | json-stringify-safe "5.0.x" 2426 | request "2.75.x" 2427 | timespan "2.3.x" 2428 | 2429 | lru-cache@2.2.x: 2430 | version "2.2.4" 2431 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-2.2.4.tgz#6c658619becf14031d0d0b594b16042ce4dc063d" 2432 | 2433 | lru-cache@^4.0.1: 2434 | version "4.1.1" 2435 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 2436 | dependencies: 2437 | pseudomap "^1.0.2" 2438 | yallist "^2.1.2" 2439 | 2440 | lru-cache@~2.6.5: 2441 | version "2.6.5" 2442 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-2.6.5.tgz#e56d6354148ede8d7707b58d143220fd08df0fd5" 2443 | 2444 | mailcomposer@4.0.1: 2445 | version "4.0.1" 2446 | resolved "https://registry.yarnpkg.com/mailcomposer/-/mailcomposer-4.0.1.tgz#0e1c44b2a07cf740ee17dc149ba009f19cadfeb4" 2447 | dependencies: 2448 | buildmail "4.0.1" 2449 | libmime "3.0.0" 2450 | 2451 | mailgun-js@^0.7.0: 2452 | version "0.7.15" 2453 | resolved "https://registry.yarnpkg.com/mailgun-js/-/mailgun-js-0.7.15.tgz#ee366a20dac64c3c15c03d6c1b3e0ed795252abb" 2454 | dependencies: 2455 | async "~2.1.2" 2456 | debug "~2.2.0" 2457 | form-data "~2.1.1" 2458 | inflection "~1.10.0" 2459 | is-stream "^1.1.0" 2460 | path-proxy "~1.0.0" 2461 | proxy-agent "~2.0.0" 2462 | q "~1.4.0" 2463 | tsscmp "~1.0.0" 2464 | 2465 | md5.js@^1.3.4: 2466 | version "1.3.4" 2467 | resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.4.tgz#e9bdbde94a20a5ac18b04340fc5764d5b09d901d" 2468 | dependencies: 2469 | hash-base "^3.0.0" 2470 | inherits "^2.0.1" 2471 | 2472 | media-typer@0.3.0: 2473 | version "0.3.0" 2474 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 2475 | 2476 | merge-descriptors@1.0.1: 2477 | version "1.0.1" 2478 | resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" 2479 | 2480 | methods@~1.1.2: 2481 | version "1.1.2" 2482 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" 2483 | 2484 | micromatch@^2.1.5: 2485 | version "2.3.11" 2486 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2487 | dependencies: 2488 | arr-diff "^2.0.0" 2489 | array-unique "^0.2.1" 2490 | braces "^1.8.2" 2491 | expand-brackets "^0.1.4" 2492 | extglob "^0.3.1" 2493 | filename-regex "^2.0.0" 2494 | is-extglob "^1.0.0" 2495 | is-glob "^2.0.1" 2496 | kind-of "^3.0.2" 2497 | normalize-path "^2.0.1" 2498 | object.omit "^2.0.0" 2499 | parse-glob "^3.0.4" 2500 | regex-cache "^0.4.2" 2501 | 2502 | miller-rabin@^4.0.0: 2503 | version "4.0.1" 2504 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" 2505 | dependencies: 2506 | bn.js "^4.0.0" 2507 | brorand "^1.0.1" 2508 | 2509 | mime-db@~1.30.0: 2510 | version "1.30.0" 2511 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 2512 | 2513 | mime-types@^2.1.11, mime-types@^2.1.12, mime-types@~2.1.11, mime-types@~2.1.15, mime-types@~2.1.16, mime-types@~2.1.17, mime-types@~2.1.7: 2514 | version "2.1.17" 2515 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 2516 | dependencies: 2517 | mime-db "~1.30.0" 2518 | 2519 | mime@1.4.1: 2520 | version "1.4.1" 2521 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.4.1.tgz#121f9ebc49e3766f311a76e1fa1c8003c4b03aa6" 2522 | 2523 | mime@^1.3.4: 2524 | version "1.6.0" 2525 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" 2526 | 2527 | mimic-fn@^1.0.0: 2528 | version "1.1.0" 2529 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 2530 | 2531 | minimalistic-assert@^1.0.0: 2532 | version "1.0.0" 2533 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" 2534 | 2535 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: 2536 | version "1.0.1" 2537 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 2538 | 2539 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 2540 | version "3.0.4" 2541 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2542 | dependencies: 2543 | brace-expansion "^1.1.7" 2544 | 2545 | minimist@0.0.8: 2546 | version "0.0.8" 2547 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2548 | 2549 | minimist@1.2.0, minimist@^1.1.0, minimist@^1.2.0: 2550 | version "1.2.0" 2551 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2552 | 2553 | minimist@~0.0.1: 2554 | version "0.0.10" 2555 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 2556 | 2557 | mkdirp@0.5.0: 2558 | version "0.5.0" 2559 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.0.tgz#1d73076a6df986cd9344e15e71fcc05a4c9abf12" 2560 | dependencies: 2561 | minimist "0.0.8" 2562 | 2563 | mkdirp@0.5.1, "mkdirp@>=0.5 0", mkdirp@^0.5.1: 2564 | version "0.5.1" 2565 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2566 | dependencies: 2567 | minimist "0.0.8" 2568 | 2569 | mocha@^5.0.0: 2570 | version "5.0.0" 2571 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-5.0.0.tgz#cccac988b0bc5477119cba0e43de7af6d6ad8f4e" 2572 | dependencies: 2573 | browser-stdout "1.3.0" 2574 | commander "2.11.0" 2575 | debug "3.1.0" 2576 | diff "3.3.1" 2577 | escape-string-regexp "1.0.5" 2578 | glob "7.1.2" 2579 | growl "1.10.3" 2580 | he "1.1.1" 2581 | mkdirp "0.5.1" 2582 | supports-color "4.4.0" 2583 | 2584 | module-deps@^4.0.8: 2585 | version "4.1.1" 2586 | resolved "https://registry.yarnpkg.com/module-deps/-/module-deps-4.1.1.tgz#23215833f1da13fd606ccb8087b44852dcb821fd" 2587 | dependencies: 2588 | JSONStream "^1.0.3" 2589 | browser-resolve "^1.7.0" 2590 | cached-path-relative "^1.0.0" 2591 | concat-stream "~1.5.0" 2592 | defined "^1.0.0" 2593 | detective "^4.0.0" 2594 | duplexer2 "^0.1.2" 2595 | inherits "^2.0.1" 2596 | parents "^1.0.0" 2597 | readable-stream "^2.0.2" 2598 | resolve "^1.1.3" 2599 | stream-combiner2 "^1.1.1" 2600 | subarg "^1.0.0" 2601 | through2 "^2.0.0" 2602 | xtend "^4.0.0" 2603 | 2604 | ms@0.7.1: 2605 | version "0.7.1" 2606 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 2607 | 2608 | ms@2.0.0: 2609 | version "2.0.0" 2610 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2611 | 2612 | mute-stream@0.0.7: 2613 | version "0.0.7" 2614 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 2615 | 2616 | nan@^2.3.0: 2617 | version "2.8.0" 2618 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.8.0.tgz#ed715f3fe9de02b57a5e6252d90a96675e1f085a" 2619 | 2620 | natural-compare@^1.4.0: 2621 | version "1.4.0" 2622 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2623 | 2624 | negotiator@0.6.1: 2625 | version "0.6.1" 2626 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" 2627 | 2628 | netmask@~1.0.4: 2629 | version "1.0.6" 2630 | resolved "https://registry.yarnpkg.com/netmask/-/netmask-1.0.6.tgz#20297e89d86f6f6400f250d9f4f6b4c1945fcd35" 2631 | 2632 | node-pre-gyp@^0.6.39: 2633 | version "0.6.39" 2634 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" 2635 | dependencies: 2636 | detect-libc "^1.0.2" 2637 | hawk "3.1.3" 2638 | mkdirp "^0.5.1" 2639 | nopt "^4.0.1" 2640 | npmlog "^4.0.2" 2641 | rc "^1.1.7" 2642 | request "2.81.0" 2643 | rimraf "^2.6.1" 2644 | semver "^5.3.0" 2645 | tar "^2.2.1" 2646 | tar-pack "^3.4.0" 2647 | 2648 | node-uuid@~1.4.7: 2649 | version "1.4.8" 2650 | resolved "https://registry.yarnpkg.com/node-uuid/-/node-uuid-1.4.8.tgz#b040eb0923968afabf8d32fb1f17f1167fdab907" 2651 | 2652 | nodemailer-direct-transport@3.3.2: 2653 | version "3.3.2" 2654 | resolved "https://registry.yarnpkg.com/nodemailer-direct-transport/-/nodemailer-direct-transport-3.3.2.tgz#e96fafb90358560947e569017d97e60738a50a86" 2655 | dependencies: 2656 | nodemailer-shared "1.1.0" 2657 | smtp-connection "2.12.0" 2658 | 2659 | nodemailer-fetch@1.6.0: 2660 | version "1.6.0" 2661 | resolved "https://registry.yarnpkg.com/nodemailer-fetch/-/nodemailer-fetch-1.6.0.tgz#79c4908a1c0f5f375b73fe888da9828f6dc963a4" 2662 | 2663 | nodemailer-shared@1.1.0: 2664 | version "1.1.0" 2665 | resolved "https://registry.yarnpkg.com/nodemailer-shared/-/nodemailer-shared-1.1.0.tgz#cf5994e2fd268d00f5cf0fa767a08169edb07ec0" 2666 | dependencies: 2667 | nodemailer-fetch "1.6.0" 2668 | 2669 | nodemailer-smtp-pool@2.8.2: 2670 | version "2.8.2" 2671 | resolved "https://registry.yarnpkg.com/nodemailer-smtp-pool/-/nodemailer-smtp-pool-2.8.2.tgz#2eb94d6cf85780b1b4725ce853b9cbd5e8da8c72" 2672 | dependencies: 2673 | nodemailer-shared "1.1.0" 2674 | nodemailer-wellknown "0.1.10" 2675 | smtp-connection "2.12.0" 2676 | 2677 | nodemailer-smtp-transport@2.7.2: 2678 | version "2.7.2" 2679 | resolved "https://registry.yarnpkg.com/nodemailer-smtp-transport/-/nodemailer-smtp-transport-2.7.2.tgz#03d71c76314f14ac7dbc7bf033a6a6d16d67fb77" 2680 | dependencies: 2681 | nodemailer-shared "1.1.0" 2682 | nodemailer-wellknown "0.1.10" 2683 | smtp-connection "2.12.0" 2684 | 2685 | nodemailer-wellknown@0.1.10: 2686 | version "0.1.10" 2687 | resolved "https://registry.yarnpkg.com/nodemailer-wellknown/-/nodemailer-wellknown-0.1.10.tgz#586db8101db30cb4438eb546737a41aad0cf13d5" 2688 | 2689 | nodemailer@^2.5.0: 2690 | version "2.7.2" 2691 | resolved "https://registry.yarnpkg.com/nodemailer/-/nodemailer-2.7.2.tgz#f242e649aeeae39b6c7ed740ef7b061c404d30f9" 2692 | dependencies: 2693 | libmime "3.0.0" 2694 | mailcomposer "4.0.1" 2695 | nodemailer-direct-transport "3.3.2" 2696 | nodemailer-shared "1.1.0" 2697 | nodemailer-smtp-pool "2.8.2" 2698 | nodemailer-smtp-transport "2.7.2" 2699 | socks "1.1.9" 2700 | 2701 | nopt@^4.0.1: 2702 | version "4.0.1" 2703 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2704 | dependencies: 2705 | abbrev "1" 2706 | osenv "^0.1.4" 2707 | 2708 | normalize-path@^2.0.0, normalize-path@^2.0.1: 2709 | version "2.1.1" 2710 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2711 | dependencies: 2712 | remove-trailing-separator "^1.0.1" 2713 | 2714 | npmlog@^4.0.2: 2715 | version "4.1.2" 2716 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2717 | dependencies: 2718 | are-we-there-yet "~1.1.2" 2719 | console-control-strings "~1.1.0" 2720 | gauge "~2.7.3" 2721 | set-blocking "~2.0.0" 2722 | 2723 | null-check@^1.0.0: 2724 | version "1.0.0" 2725 | resolved "https://registry.yarnpkg.com/null-check/-/null-check-1.0.0.tgz#977dffd7176012b9ec30d2a39db5cf72a0439edd" 2726 | 2727 | number-is-nan@^1.0.0: 2728 | version "1.0.1" 2729 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2730 | 2731 | oauth-sign@~0.8.1, oauth-sign@~0.8.2: 2732 | version "0.8.2" 2733 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2734 | 2735 | object-assign@^4.0.1, object-assign@^4.1.0: 2736 | version "4.1.1" 2737 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2738 | 2739 | object-component@0.0.3: 2740 | version "0.0.3" 2741 | resolved "https://registry.yarnpkg.com/object-component/-/object-component-0.0.3.tgz#f0c69aa50efc95b866c186f400a33769cb2f1291" 2742 | 2743 | object.omit@^2.0.0: 2744 | version "2.0.1" 2745 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2746 | dependencies: 2747 | for-own "^0.1.4" 2748 | is-extendable "^0.1.1" 2749 | 2750 | on-finished@~2.3.0: 2751 | version "2.3.0" 2752 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 2753 | dependencies: 2754 | ee-first "1.1.1" 2755 | 2756 | once@^1.3.0, once@^1.3.3, once@^1.4.0: 2757 | version "1.4.0" 2758 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2759 | dependencies: 2760 | wrappy "1" 2761 | 2762 | onetime@^2.0.0: 2763 | version "2.0.1" 2764 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2765 | dependencies: 2766 | mimic-fn "^1.0.0" 2767 | 2768 | optimist@^0.6.1: 2769 | version "0.6.1" 2770 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2771 | dependencies: 2772 | minimist "~0.0.1" 2773 | wordwrap "~0.0.2" 2774 | 2775 | optionator@^0.8.1, optionator@^0.8.2: 2776 | version "0.8.2" 2777 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2778 | dependencies: 2779 | deep-is "~0.1.3" 2780 | fast-levenshtein "~2.0.4" 2781 | levn "~0.3.0" 2782 | prelude-ls "~1.1.2" 2783 | type-check "~0.3.2" 2784 | wordwrap "~1.0.0" 2785 | 2786 | os-browserify@~0.3.0: 2787 | version "0.3.0" 2788 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" 2789 | 2790 | os-homedir@^1.0.0: 2791 | version "1.0.2" 2792 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2793 | 2794 | os-tmpdir@^1.0.0, os-tmpdir@~1.0.2: 2795 | version "1.0.2" 2796 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2797 | 2798 | osenv@^0.1.4: 2799 | version "0.1.4" 2800 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2801 | dependencies: 2802 | os-homedir "^1.0.0" 2803 | os-tmpdir "^1.0.0" 2804 | 2805 | pac-proxy-agent@1: 2806 | version "1.1.0" 2807 | resolved "https://registry.yarnpkg.com/pac-proxy-agent/-/pac-proxy-agent-1.1.0.tgz#34a385dfdf61d2f0ecace08858c745d3e791fd4d" 2808 | dependencies: 2809 | agent-base "2" 2810 | debug "2" 2811 | extend "3" 2812 | get-uri "2" 2813 | http-proxy-agent "1" 2814 | https-proxy-agent "1" 2815 | pac-resolver "~2.0.0" 2816 | raw-body "2" 2817 | socks-proxy-agent "2" 2818 | 2819 | pac-resolver@~2.0.0: 2820 | version "2.0.0" 2821 | resolved "https://registry.yarnpkg.com/pac-resolver/-/pac-resolver-2.0.0.tgz#99b88d2f193fbdeefc1c9a529c1f3260ab5277cd" 2822 | dependencies: 2823 | co "~3.0.6" 2824 | degenerator "~1.0.2" 2825 | ip "1.0.1" 2826 | netmask "~1.0.4" 2827 | thunkify "~2.1.1" 2828 | 2829 | pako@~1.0.5: 2830 | version "1.0.6" 2831 | resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.6.tgz#0101211baa70c4bca4a0f63f2206e97b7dfaf258" 2832 | 2833 | parents@^1.0.0, parents@^1.0.1: 2834 | version "1.0.1" 2835 | resolved "https://registry.yarnpkg.com/parents/-/parents-1.0.1.tgz#fedd4d2bf193a77745fe71e371d73c3307d9c751" 2836 | dependencies: 2837 | path-platform "~0.11.15" 2838 | 2839 | parse-asn1@^5.0.0: 2840 | version "5.1.0" 2841 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712" 2842 | dependencies: 2843 | asn1.js "^4.0.0" 2844 | browserify-aes "^1.0.0" 2845 | create-hash "^1.1.0" 2846 | evp_bytestokey "^1.0.0" 2847 | pbkdf2 "^3.0.3" 2848 | 2849 | parse-glob@^3.0.4: 2850 | version "3.0.4" 2851 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2852 | dependencies: 2853 | glob-base "^0.3.0" 2854 | is-dotfile "^1.0.0" 2855 | is-extglob "^1.0.0" 2856 | is-glob "^2.0.0" 2857 | 2858 | parseqs@0.0.5: 2859 | version "0.0.5" 2860 | resolved "https://registry.yarnpkg.com/parseqs/-/parseqs-0.0.5.tgz#d5208a3738e46766e291ba2ea173684921a8b89d" 2861 | dependencies: 2862 | better-assert "~1.0.0" 2863 | 2864 | parseuri@0.0.5: 2865 | version "0.0.5" 2866 | resolved "https://registry.yarnpkg.com/parseuri/-/parseuri-0.0.5.tgz#80204a50d4dbb779bfdc6ebe2778d90e4bce320a" 2867 | dependencies: 2868 | better-assert "~1.0.0" 2869 | 2870 | parseurl@~1.3.2: 2871 | version "1.3.2" 2872 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.2.tgz#fc289d4ed8993119460c156253262cdc8de65bf3" 2873 | 2874 | path-browserify@~0.0.0: 2875 | version "0.0.0" 2876 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" 2877 | 2878 | path-is-absolute@^1.0.0: 2879 | version "1.0.1" 2880 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2881 | 2882 | path-is-inside@^1.0.1, path-is-inside@^1.0.2: 2883 | version "1.0.2" 2884 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2885 | 2886 | path-parse@^1.0.5: 2887 | version "1.0.5" 2888 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2889 | 2890 | path-platform@~0.11.15: 2891 | version "0.11.15" 2892 | resolved "https://registry.yarnpkg.com/path-platform/-/path-platform-0.11.15.tgz#e864217f74c36850f0852b78dc7bf7d4a5721bf2" 2893 | 2894 | path-proxy@~1.0.0: 2895 | version "1.0.0" 2896 | resolved "https://registry.yarnpkg.com/path-proxy/-/path-proxy-1.0.0.tgz#18e8a36859fc9d2f1a53b48dee138543c020de5e" 2897 | dependencies: 2898 | inflection "~1.3.0" 2899 | 2900 | path-to-regexp@0.1.7: 2901 | version "0.1.7" 2902 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" 2903 | 2904 | pathval@^1.0.0: 2905 | version "1.1.0" 2906 | resolved "https://registry.yarnpkg.com/pathval/-/pathval-1.1.0.tgz#b942e6d4bde653005ef6b71361def8727d0645e0" 2907 | 2908 | pbkdf2@^3.0.3: 2909 | version "3.0.14" 2910 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.14.tgz#a35e13c64799b06ce15320f459c230e68e73bade" 2911 | dependencies: 2912 | create-hash "^1.1.2" 2913 | create-hmac "^1.1.4" 2914 | ripemd160 "^2.0.1" 2915 | safe-buffer "^5.0.1" 2916 | sha.js "^2.4.8" 2917 | 2918 | pend@~1.2.0: 2919 | version "1.2.0" 2920 | resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" 2921 | 2922 | performance-now@^0.2.0: 2923 | version "0.2.0" 2924 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2925 | 2926 | performance-now@^2.1.0: 2927 | version "2.1.0" 2928 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 2929 | 2930 | pify@^2.0.0: 2931 | version "2.3.0" 2932 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2933 | 2934 | pinkie-promise@^2.0.0: 2935 | version "2.0.1" 2936 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2937 | dependencies: 2938 | pinkie "^2.0.0" 2939 | 2940 | pinkie@^2.0.0: 2941 | version "2.0.4" 2942 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2943 | 2944 | pluralize@^7.0.0: 2945 | version "7.0.0" 2946 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777" 2947 | 2948 | prelude-ls@~1.1.2: 2949 | version "1.1.2" 2950 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2951 | 2952 | preserve@^0.2.0: 2953 | version "0.2.0" 2954 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2955 | 2956 | process-nextick-args@~1.0.6: 2957 | version "1.0.7" 2958 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2959 | 2960 | process@~0.11.0: 2961 | version "0.11.10" 2962 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" 2963 | 2964 | progress@^2.0.0: 2965 | version "2.0.0" 2966 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" 2967 | 2968 | proxy-addr@~2.0.2: 2969 | version "2.0.2" 2970 | resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.2.tgz#6571504f47bb988ec8180253f85dd7e14952bdec" 2971 | dependencies: 2972 | forwarded "~0.1.2" 2973 | ipaddr.js "1.5.2" 2974 | 2975 | proxy-agent@~2.0.0: 2976 | version "2.0.0" 2977 | resolved "https://registry.yarnpkg.com/proxy-agent/-/proxy-agent-2.0.0.tgz#57eb5347aa805d74ec681cb25649dba39c933499" 2978 | dependencies: 2979 | agent-base "2" 2980 | debug "2" 2981 | extend "3" 2982 | http-proxy-agent "1" 2983 | https-proxy-agent "1" 2984 | lru-cache "~2.6.5" 2985 | pac-proxy-agent "1" 2986 | socks-proxy-agent "2" 2987 | 2988 | proxy-from-env@^1.0.0: 2989 | version "1.0.0" 2990 | resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.0.0.tgz#33c50398f70ea7eb96d21f7b817630a55791c7ee" 2991 | 2992 | pseudomap@^1.0.2: 2993 | version "1.0.2" 2994 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2995 | 2996 | public-encrypt@^4.0.0: 2997 | version "4.0.0" 2998 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" 2999 | dependencies: 3000 | bn.js "^4.1.0" 3001 | browserify-rsa "^4.0.0" 3002 | create-hash "^1.1.0" 3003 | parse-asn1 "^5.0.0" 3004 | randombytes "^2.0.1" 3005 | 3006 | punycode@1.3.2: 3007 | version "1.3.2" 3008 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 3009 | 3010 | punycode@1.4.1, punycode@^1.3.2, punycode@^1.4.1: 3011 | version "1.4.1" 3012 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 3013 | 3014 | puppeteer@^1.0.0: 3015 | version "1.0.0" 3016 | resolved "https://registry.yarnpkg.com/puppeteer/-/puppeteer-1.0.0.tgz#20f3bb6ad6c6778b4d1fb750e808a29fec0a88a4" 3017 | dependencies: 3018 | debug "^2.6.8" 3019 | extract-zip "^1.6.5" 3020 | https-proxy-agent "^2.1.0" 3021 | mime "^1.3.4" 3022 | progress "^2.0.0" 3023 | proxy-from-env "^1.0.0" 3024 | rimraf "^2.6.1" 3025 | ws "^3.0.0" 3026 | 3027 | q@1.4.1, q@~1.4.0: 3028 | version "1.4.1" 3029 | resolved "https://registry.yarnpkg.com/q/-/q-1.4.1.tgz#55705bcd93c5f3673530c2c2cbc0c2b3addc286e" 3030 | 3031 | q@^1.5.0: 3032 | version "1.5.1" 3033 | resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" 3034 | 3035 | qjobs@^1.1.4: 3036 | version "1.1.5" 3037 | resolved "https://registry.yarnpkg.com/qjobs/-/qjobs-1.1.5.tgz#659de9f2cf8dcc27a1481276f205377272382e73" 3038 | 3039 | qs@6.5.1, qs@~6.5.1: 3040 | version "6.5.1" 3041 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8" 3042 | 3043 | qs@~6.2.0: 3044 | version "6.2.3" 3045 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.2.3.tgz#1cfcb25c10a9b2b483053ff39f5dfc9233908cfe" 3046 | 3047 | qs@~6.3.0: 3048 | version "6.3.2" 3049 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.2.tgz#e75bd5f6e268122a2a0e0bda630b2550c166502c" 3050 | 3051 | qs@~6.4.0: 3052 | version "6.4.0" 3053 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 3054 | 3055 | querystring-es3@~0.2.0: 3056 | version "0.2.1" 3057 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 3058 | 3059 | querystring@0.2.0: 3060 | version "0.2.0" 3061 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 3062 | 3063 | randomatic@^1.1.3: 3064 | version "1.1.7" 3065 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 3066 | dependencies: 3067 | is-number "^3.0.0" 3068 | kind-of "^4.0.0" 3069 | 3070 | randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5: 3071 | version "2.0.6" 3072 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.6.tgz#d302c522948588848a8d300c932b44c24231da80" 3073 | dependencies: 3074 | safe-buffer "^5.1.0" 3075 | 3076 | randomfill@^1.0.3: 3077 | version "1.0.3" 3078 | resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.3.tgz#b96b7df587f01dd91726c418f30553b1418e3d62" 3079 | dependencies: 3080 | randombytes "^2.0.5" 3081 | safe-buffer "^5.1.0" 3082 | 3083 | range-parser@^1.2.0, range-parser@~1.2.0: 3084 | version "1.2.0" 3085 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" 3086 | 3087 | raw-body@2, raw-body@2.3.2: 3088 | version "2.3.2" 3089 | resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.3.2.tgz#bcd60c77d3eb93cde0050295c3f379389bc88f89" 3090 | dependencies: 3091 | bytes "3.0.0" 3092 | http-errors "1.6.2" 3093 | iconv-lite "0.4.19" 3094 | unpipe "1.0.0" 3095 | 3096 | rc@^1.1.7: 3097 | version "1.2.4" 3098 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.4.tgz#a0f606caae2a3b862bbd0ef85482c0125b315fa3" 3099 | dependencies: 3100 | deep-extend "~0.4.0" 3101 | ini "~1.3.0" 3102 | minimist "^1.2.0" 3103 | strip-json-comments "~2.0.1" 3104 | 3105 | read-only-stream@^2.0.0: 3106 | version "2.0.0" 3107 | resolved "https://registry.yarnpkg.com/read-only-stream/-/read-only-stream-2.0.0.tgz#2724fd6a8113d73764ac288d4386270c1dbf17f0" 3108 | dependencies: 3109 | readable-stream "^2.0.2" 3110 | 3111 | readable-stream@1.1.x, "readable-stream@1.x >=1.1.9": 3112 | version "1.1.14" 3113 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" 3114 | dependencies: 3115 | core-util-is "~1.0.0" 3116 | inherits "~2.0.1" 3117 | isarray "0.0.1" 3118 | string_decoder "~0.10.x" 3119 | 3120 | readable-stream@2, readable-stream@^2.0.0, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.0, readable-stream@^2.3.3: 3121 | version "2.3.3" 3122 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 3123 | dependencies: 3124 | core-util-is "~1.0.0" 3125 | inherits "~2.0.3" 3126 | isarray "~1.0.0" 3127 | process-nextick-args "~1.0.6" 3128 | safe-buffer "~5.1.1" 3129 | string_decoder "~1.0.3" 3130 | util-deprecate "~1.0.1" 3131 | 3132 | readable-stream@~2.0.0, readable-stream@~2.0.5: 3133 | version "2.0.6" 3134 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" 3135 | dependencies: 3136 | core-util-is "~1.0.0" 3137 | inherits "~2.0.1" 3138 | isarray "~1.0.0" 3139 | process-nextick-args "~1.0.6" 3140 | string_decoder "~0.10.x" 3141 | util-deprecate "~1.0.1" 3142 | 3143 | readdirp@^2.0.0: 3144 | version "2.1.0" 3145 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 3146 | dependencies: 3147 | graceful-fs "^4.1.2" 3148 | minimatch "^3.0.2" 3149 | readable-stream "^2.0.2" 3150 | set-immediate-shim "^1.0.1" 3151 | 3152 | redis-commands@^1.2.0: 3153 | version "1.3.1" 3154 | resolved "https://registry.yarnpkg.com/redis-commands/-/redis-commands-1.3.1.tgz#81d826f45fa9c8b2011f4cd7a0fe597d241d442b" 3155 | 3156 | redis-parser@^2.6.0: 3157 | version "2.6.0" 3158 | resolved "https://registry.yarnpkg.com/redis-parser/-/redis-parser-2.6.0.tgz#52ed09dacac108f1a631c07e9b69941e7a19504b" 3159 | 3160 | redis@^2.7.1: 3161 | version "2.8.0" 3162 | resolved "https://registry.yarnpkg.com/redis/-/redis-2.8.0.tgz#202288e3f58c49f6079d97af7a10e1303ae14b02" 3163 | dependencies: 3164 | double-ended-queue "^2.1.0-0" 3165 | redis-commands "^1.2.0" 3166 | redis-parser "^2.6.0" 3167 | 3168 | regex-cache@^0.4.2: 3169 | version "0.4.4" 3170 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 3171 | dependencies: 3172 | is-equal-shallow "^0.1.3" 3173 | 3174 | remove-trailing-separator@^1.0.1: 3175 | version "1.1.0" 3176 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 3177 | 3178 | repeat-element@^1.1.2: 3179 | version "1.1.2" 3180 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 3181 | 3182 | repeat-string@^0.2.2: 3183 | version "0.2.2" 3184 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-0.2.2.tgz#c7a8d3236068362059a7e4651fc6884e8b1fb4ae" 3185 | 3186 | repeat-string@^1.5.2: 3187 | version "1.6.1" 3188 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3189 | 3190 | request@2.75.x: 3191 | version "2.75.0" 3192 | resolved "https://registry.yarnpkg.com/request/-/request-2.75.0.tgz#d2b8268a286da13eaa5d01adf5d18cc90f657d93" 3193 | dependencies: 3194 | aws-sign2 "~0.6.0" 3195 | aws4 "^1.2.1" 3196 | bl "~1.1.2" 3197 | caseless "~0.11.0" 3198 | combined-stream "~1.0.5" 3199 | extend "~3.0.0" 3200 | forever-agent "~0.6.1" 3201 | form-data "~2.0.0" 3202 | har-validator "~2.0.6" 3203 | hawk "~3.1.3" 3204 | http-signature "~1.1.0" 3205 | is-typedarray "~1.0.0" 3206 | isstream "~0.1.2" 3207 | json-stringify-safe "~5.0.1" 3208 | mime-types "~2.1.7" 3209 | node-uuid "~1.4.7" 3210 | oauth-sign "~0.8.1" 3211 | qs "~6.2.0" 3212 | stringstream "~0.0.4" 3213 | tough-cookie "~2.3.0" 3214 | tunnel-agent "~0.4.1" 3215 | 3216 | request@2.79.0: 3217 | version "2.79.0" 3218 | resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" 3219 | dependencies: 3220 | aws-sign2 "~0.6.0" 3221 | aws4 "^1.2.1" 3222 | caseless "~0.11.0" 3223 | combined-stream "~1.0.5" 3224 | extend "~3.0.0" 3225 | forever-agent "~0.6.1" 3226 | form-data "~2.1.1" 3227 | har-validator "~2.0.6" 3228 | hawk "~3.1.3" 3229 | http-signature "~1.1.0" 3230 | is-typedarray "~1.0.0" 3231 | isstream "~0.1.2" 3232 | json-stringify-safe "~5.0.1" 3233 | mime-types "~2.1.7" 3234 | oauth-sign "~0.8.1" 3235 | qs "~6.3.0" 3236 | stringstream "~0.0.4" 3237 | tough-cookie "~2.3.0" 3238 | tunnel-agent "~0.4.1" 3239 | uuid "^3.0.0" 3240 | 3241 | request@2.81.0: 3242 | version "2.81.0" 3243 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 3244 | dependencies: 3245 | aws-sign2 "~0.6.0" 3246 | aws4 "^1.2.1" 3247 | caseless "~0.12.0" 3248 | combined-stream "~1.0.5" 3249 | extend "~3.0.0" 3250 | forever-agent "~0.6.1" 3251 | form-data "~2.1.1" 3252 | har-validator "~4.2.1" 3253 | hawk "~3.1.3" 3254 | http-signature "~1.1.0" 3255 | is-typedarray "~1.0.0" 3256 | isstream "~0.1.2" 3257 | json-stringify-safe "~5.0.1" 3258 | mime-types "~2.1.7" 3259 | oauth-sign "~0.8.1" 3260 | performance-now "^0.2.0" 3261 | qs "~6.4.0" 3262 | safe-buffer "^5.0.1" 3263 | stringstream "~0.0.4" 3264 | tough-cookie "~2.3.0" 3265 | tunnel-agent "^0.6.0" 3266 | uuid "^3.0.0" 3267 | 3268 | request@^2.0.0, request@^2.74.0: 3269 | version "2.83.0" 3270 | resolved "https://registry.yarnpkg.com/request/-/request-2.83.0.tgz#ca0b65da02ed62935887808e6f510381034e3356" 3271 | dependencies: 3272 | aws-sign2 "~0.7.0" 3273 | aws4 "^1.6.0" 3274 | caseless "~0.12.0" 3275 | combined-stream "~1.0.5" 3276 | extend "~3.0.1" 3277 | forever-agent "~0.6.1" 3278 | form-data "~2.3.1" 3279 | har-validator "~5.0.3" 3280 | hawk "~6.0.2" 3281 | http-signature "~1.2.0" 3282 | is-typedarray "~1.0.0" 3283 | isstream "~0.1.2" 3284 | json-stringify-safe "~5.0.1" 3285 | mime-types "~2.1.17" 3286 | oauth-sign "~0.8.2" 3287 | performance-now "^2.1.0" 3288 | qs "~6.5.1" 3289 | safe-buffer "^5.1.1" 3290 | stringstream "~0.0.5" 3291 | tough-cookie "~2.3.3" 3292 | tunnel-agent "^0.6.0" 3293 | uuid "^3.1.0" 3294 | 3295 | requestretry@^1.2.2: 3296 | version "1.12.2" 3297 | resolved "https://registry.yarnpkg.com/requestretry/-/requestretry-1.12.2.tgz#13ce38a4ce4e809f3c9ec6d4ca3b7b9ba4acf26c" 3298 | dependencies: 3299 | extend "^3.0.0" 3300 | lodash "^4.15.0" 3301 | request "^2.74.0" 3302 | when "^3.7.7" 3303 | 3304 | require-uncached@^1.0.3: 3305 | version "1.0.3" 3306 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 3307 | dependencies: 3308 | caller-path "^0.1.0" 3309 | resolve-from "^1.0.0" 3310 | 3311 | requires-port@1.x.x: 3312 | version "1.0.0" 3313 | resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" 3314 | 3315 | resolve-from@^1.0.0: 3316 | version "1.0.1" 3317 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 3318 | 3319 | resolve@1.1.7: 3320 | version "1.1.7" 3321 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 3322 | 3323 | resolve@^1.1.3, resolve@^1.1.4: 3324 | version "1.5.0" 3325 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.5.0.tgz#1f09acce796c9a762579f31b2c1cc4c3cddf9f36" 3326 | dependencies: 3327 | path-parse "^1.0.5" 3328 | 3329 | restore-cursor@^2.0.0: 3330 | version "2.0.0" 3331 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 3332 | dependencies: 3333 | onetime "^2.0.0" 3334 | signal-exit "^3.0.2" 3335 | 3336 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.5.4, rimraf@^2.6.0, rimraf@^2.6.1: 3337 | version "2.6.2" 3338 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 3339 | dependencies: 3340 | glob "^7.0.5" 3341 | 3342 | ripemd160@^2.0.0, ripemd160@^2.0.1: 3343 | version "2.0.1" 3344 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.1.tgz#0f4584295c53a3628af7e6d79aca21ce57d1c6e7" 3345 | dependencies: 3346 | hash-base "^2.0.0" 3347 | inherits "^2.0.1" 3348 | 3349 | run-async@^2.2.0: 3350 | version "2.3.0" 3351 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 3352 | dependencies: 3353 | is-promise "^2.1.0" 3354 | 3355 | rx-lite-aggregates@^4.0.8: 3356 | version "4.0.8" 3357 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 3358 | dependencies: 3359 | rx-lite "*" 3360 | 3361 | rx-lite@*, rx-lite@^4.0.8: 3362 | version "4.0.8" 3363 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 3364 | 3365 | safe-buffer@5.1.1, 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: 3366 | version "5.1.1" 3367 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 3368 | 3369 | sauce-connect-launcher@^1.2.2: 3370 | version "1.2.3" 3371 | resolved "https://registry.yarnpkg.com/sauce-connect-launcher/-/sauce-connect-launcher-1.2.3.tgz#d2f931ad7ae8fdabf1968a440e7b20417aca7f86" 3372 | dependencies: 3373 | adm-zip "~0.4.3" 3374 | async "^2.1.2" 3375 | https-proxy-agent "~1.0.0" 3376 | lodash "^4.16.6" 3377 | rimraf "^2.5.4" 3378 | 3379 | saucelabs@^1.4.0: 3380 | version "1.4.0" 3381 | resolved "https://registry.yarnpkg.com/saucelabs/-/saucelabs-1.4.0.tgz#b934a9af9da2874b3f40aae1fcde50a4466f5f38" 3382 | dependencies: 3383 | https-proxy-agent "^1.0.0" 3384 | 3385 | semver@^5.3.0, semver@^5.4.1: 3386 | version "5.4.1" 3387 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 3388 | 3389 | semver@~5.0.1: 3390 | version "5.0.3" 3391 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.0.3.tgz#77466de589cd5d3c95f138aa78bc569a3cb5d27a" 3392 | 3393 | send@0.16.1: 3394 | version "0.16.1" 3395 | resolved "https://registry.yarnpkg.com/send/-/send-0.16.1.tgz#a70e1ca21d1382c11d0d9f6231deb281080d7ab3" 3396 | dependencies: 3397 | debug "2.6.9" 3398 | depd "~1.1.1" 3399 | destroy "~1.0.4" 3400 | encodeurl "~1.0.1" 3401 | escape-html "~1.0.3" 3402 | etag "~1.8.1" 3403 | fresh "0.5.2" 3404 | http-errors "~1.6.2" 3405 | mime "1.4.1" 3406 | ms "2.0.0" 3407 | on-finished "~2.3.0" 3408 | range-parser "~1.2.0" 3409 | statuses "~1.3.1" 3410 | 3411 | serve-static@1.13.1: 3412 | version "1.13.1" 3413 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.13.1.tgz#4c57d53404a761d8f2e7c1e8a18a47dbf278a719" 3414 | dependencies: 3415 | encodeurl "~1.0.1" 3416 | escape-html "~1.0.3" 3417 | parseurl "~1.3.2" 3418 | send "0.16.1" 3419 | 3420 | set-blocking@~2.0.0: 3421 | version "2.0.0" 3422 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3423 | 3424 | set-immediate-shim@^1.0.1: 3425 | version "1.0.1" 3426 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3427 | 3428 | setprototypeof@1.0.3: 3429 | version "1.0.3" 3430 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.3.tgz#66567e37043eeb4f04d91bd658c0cbefb55b8e04" 3431 | 3432 | setprototypeof@1.1.0: 3433 | version "1.1.0" 3434 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656" 3435 | 3436 | sha.js@^2.4.0, sha.js@^2.4.8, sha.js@~2.4.4: 3437 | version "2.4.9" 3438 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.9.tgz#98f64880474b74f4a38b8da9d3c0f2d104633e7d" 3439 | dependencies: 3440 | inherits "^2.0.1" 3441 | safe-buffer "^5.0.1" 3442 | 3443 | shasum@^1.0.0: 3444 | version "1.0.2" 3445 | resolved "https://registry.yarnpkg.com/shasum/-/shasum-1.0.2.tgz#e7012310d8f417f4deb5712150e5678b87ae565f" 3446 | dependencies: 3447 | json-stable-stringify "~0.0.0" 3448 | sha.js "~2.4.4" 3449 | 3450 | shebang-command@^1.2.0: 3451 | version "1.2.0" 3452 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 3453 | dependencies: 3454 | shebang-regex "^1.0.0" 3455 | 3456 | shebang-regex@^1.0.0: 3457 | version "1.0.0" 3458 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3459 | 3460 | shell-quote@^1.6.1: 3461 | version "1.6.1" 3462 | resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767" 3463 | dependencies: 3464 | array-filter "~0.0.0" 3465 | array-map "~0.0.0" 3466 | array-reduce "~0.0.0" 3467 | jsonify "~0.0.0" 3468 | 3469 | signal-exit@^3.0.0, signal-exit@^3.0.2: 3470 | version "3.0.2" 3471 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3472 | 3473 | slack-node@~0.2.0: 3474 | version "0.2.0" 3475 | resolved "https://registry.yarnpkg.com/slack-node/-/slack-node-0.2.0.tgz#de4b8dddaa8b793f61dbd2938104fdabf37dfa30" 3476 | dependencies: 3477 | requestretry "^1.2.2" 3478 | 3479 | slice-ansi@1.0.0: 3480 | version "1.0.0" 3481 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d" 3482 | dependencies: 3483 | is-fullwidth-code-point "^2.0.0" 3484 | 3485 | smart-buffer@^1.0.13, smart-buffer@^1.0.4: 3486 | version "1.1.15" 3487 | resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-1.1.15.tgz#7f114b5b65fab3e2a35aa775bb12f0d1c649bf16" 3488 | 3489 | smtp-connection@2.12.0: 3490 | version "2.12.0" 3491 | resolved "https://registry.yarnpkg.com/smtp-connection/-/smtp-connection-2.12.0.tgz#d76ef9127cb23c2259edb1e8349c2e8d5e2d74c1" 3492 | dependencies: 3493 | httpntlm "1.6.1" 3494 | nodemailer-shared "1.1.0" 3495 | 3496 | sntp@1.x.x: 3497 | version "1.0.9" 3498 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3499 | dependencies: 3500 | hoek "2.x.x" 3501 | 3502 | sntp@2.x.x: 3503 | version "2.1.0" 3504 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.1.0.tgz#2c6cec14fedc2222739caf9b5c3d85d1cc5a2cc8" 3505 | dependencies: 3506 | hoek "4.x.x" 3507 | 3508 | socket.io-adapter@~1.1.0: 3509 | version "1.1.1" 3510 | resolved "https://registry.yarnpkg.com/socket.io-adapter/-/socket.io-adapter-1.1.1.tgz#2a805e8a14d6372124dd9159ad4502f8cb07f06b" 3511 | 3512 | socket.io-client@2.0.4: 3513 | version "2.0.4" 3514 | resolved "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-2.0.4.tgz#0918a552406dc5e540b380dcd97afc4a64332f8e" 3515 | dependencies: 3516 | backo2 "1.0.2" 3517 | base64-arraybuffer "0.1.5" 3518 | component-bind "1.0.0" 3519 | component-emitter "1.2.1" 3520 | debug "~2.6.4" 3521 | engine.io-client "~3.1.0" 3522 | has-cors "1.1.0" 3523 | indexof "0.0.1" 3524 | object-component "0.0.3" 3525 | parseqs "0.0.5" 3526 | parseuri "0.0.5" 3527 | socket.io-parser "~3.1.1" 3528 | to-array "0.1.4" 3529 | 3530 | socket.io-parser@~3.1.1: 3531 | version "3.1.2" 3532 | resolved "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-3.1.2.tgz#dbc2282151fc4faebbe40aeedc0772eba619f7f2" 3533 | dependencies: 3534 | component-emitter "1.2.1" 3535 | debug "~2.6.4" 3536 | has-binary2 "~1.0.2" 3537 | isarray "2.0.1" 3538 | 3539 | socket.io@2.0.4: 3540 | version "2.0.4" 3541 | resolved "https://registry.yarnpkg.com/socket.io/-/socket.io-2.0.4.tgz#c1a4590ceff87ecf13c72652f046f716b29e6014" 3542 | dependencies: 3543 | debug "~2.6.6" 3544 | engine.io "~3.1.0" 3545 | socket.io-adapter "~1.1.0" 3546 | socket.io-client "2.0.4" 3547 | socket.io-parser "~3.1.1" 3548 | 3549 | socks-proxy-agent@2: 3550 | version "2.1.1" 3551 | resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-2.1.1.tgz#86ebb07193258637870e13b7bd99f26c663df3d3" 3552 | dependencies: 3553 | agent-base "2" 3554 | extend "3" 3555 | socks "~1.1.5" 3556 | 3557 | socks@1.1.9: 3558 | version "1.1.9" 3559 | resolved "https://registry.yarnpkg.com/socks/-/socks-1.1.9.tgz#628d7e4d04912435445ac0b6e459376cb3e6d691" 3560 | dependencies: 3561 | ip "^1.1.2" 3562 | smart-buffer "^1.0.4" 3563 | 3564 | socks@~1.1.5: 3565 | version "1.1.10" 3566 | resolved "https://registry.yarnpkg.com/socks/-/socks-1.1.10.tgz#5b8b7fc7c8f341c53ed056e929b7bf4de8ba7b5a" 3567 | dependencies: 3568 | ip "^1.1.4" 3569 | smart-buffer "^1.0.13" 3570 | 3571 | source-map@^0.6.1, source-map@~0.6.1: 3572 | version "0.6.1" 3573 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 3574 | 3575 | source-map@~0.5.3, source-map@~0.5.6: 3576 | version "0.5.7" 3577 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 3578 | 3579 | sprintf-js@^1.0.3: 3580 | version "1.1.1" 3581 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.1.tgz#36be78320afe5801f6cea3ee78b6e5aab940ea0c" 3582 | 3583 | sprintf-js@~1.0.2: 3584 | version "1.0.3" 3585 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3586 | 3587 | sshpk@^1.7.0: 3588 | version "1.13.1" 3589 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 3590 | dependencies: 3591 | asn1 "~0.2.3" 3592 | assert-plus "^1.0.0" 3593 | dashdash "^1.12.0" 3594 | getpass "^0.1.1" 3595 | optionalDependencies: 3596 | bcrypt-pbkdf "^1.0.0" 3597 | ecc-jsbn "~0.1.1" 3598 | jsbn "~0.1.0" 3599 | tweetnacl "~0.14.0" 3600 | 3601 | "statuses@>= 1.3.1 < 2": 3602 | version "1.4.0" 3603 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.4.0.tgz#bb73d446da2796106efcc1b601a253d6c46bd087" 3604 | 3605 | statuses@~1.3.1: 3606 | version "1.3.1" 3607 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" 3608 | 3609 | stream-browserify@^2.0.0: 3610 | version "2.0.1" 3611 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" 3612 | dependencies: 3613 | inherits "~2.0.1" 3614 | readable-stream "^2.0.2" 3615 | 3616 | stream-combiner2@^1.1.1: 3617 | version "1.1.1" 3618 | resolved "https://registry.yarnpkg.com/stream-combiner2/-/stream-combiner2-1.1.1.tgz#fb4d8a1420ea362764e21ad4780397bebcb41cbe" 3619 | dependencies: 3620 | duplexer2 "~0.1.0" 3621 | readable-stream "^2.0.2" 3622 | 3623 | stream-http@^2.0.0: 3624 | version "2.8.0" 3625 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.0.tgz#fd86546dac9b1c91aff8fc5d287b98fafb41bc10" 3626 | dependencies: 3627 | builtin-status-codes "^3.0.0" 3628 | inherits "^2.0.1" 3629 | readable-stream "^2.3.3" 3630 | to-arraybuffer "^1.0.0" 3631 | xtend "^4.0.0" 3632 | 3633 | stream-splicer@^2.0.0: 3634 | version "2.0.0" 3635 | resolved "https://registry.yarnpkg.com/stream-splicer/-/stream-splicer-2.0.0.tgz#1b63be438a133e4b671cc1935197600175910d83" 3636 | dependencies: 3637 | inherits "^2.0.1" 3638 | readable-stream "^2.0.2" 3639 | 3640 | streamroller@^0.7.0: 3641 | version "0.7.0" 3642 | resolved "https://registry.yarnpkg.com/streamroller/-/streamroller-0.7.0.tgz#a1d1b7cf83d39afb0d63049a5acbf93493bdf64b" 3643 | dependencies: 3644 | date-format "^1.2.0" 3645 | debug "^3.1.0" 3646 | mkdirp "^0.5.1" 3647 | readable-stream "^2.3.0" 3648 | 3649 | string-width@^1.0.1, string-width@^1.0.2: 3650 | version "1.0.2" 3651 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3652 | dependencies: 3653 | code-point-at "^1.0.0" 3654 | is-fullwidth-code-point "^1.0.0" 3655 | strip-ansi "^3.0.0" 3656 | 3657 | string-width@^2.1.0, string-width@^2.1.1: 3658 | version "2.1.1" 3659 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3660 | dependencies: 3661 | is-fullwidth-code-point "^2.0.0" 3662 | strip-ansi "^4.0.0" 3663 | 3664 | string_decoder@~0.10.x: 3665 | version "0.10.31" 3666 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 3667 | 3668 | string_decoder@~1.0.0, string_decoder@~1.0.3: 3669 | version "1.0.3" 3670 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 3671 | dependencies: 3672 | safe-buffer "~5.1.0" 3673 | 3674 | stringstream@~0.0.4, stringstream@~0.0.5: 3675 | version "0.0.5" 3676 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3677 | 3678 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3679 | version "3.0.1" 3680 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3681 | dependencies: 3682 | ansi-regex "^2.0.0" 3683 | 3684 | strip-ansi@^4.0.0: 3685 | version "4.0.0" 3686 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3687 | dependencies: 3688 | ansi-regex "^3.0.0" 3689 | 3690 | strip-json-comments@~2.0.1: 3691 | version "2.0.1" 3692 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3693 | 3694 | subarg@^1.0.0: 3695 | version "1.0.0" 3696 | resolved "https://registry.yarnpkg.com/subarg/-/subarg-1.0.0.tgz#f62cf17581e996b48fc965699f54c06ae268b8d2" 3697 | dependencies: 3698 | minimist "^1.1.0" 3699 | 3700 | supports-color@4.4.0, supports-color@^4.0.0: 3701 | version "4.4.0" 3702 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.4.0.tgz#883f7ddabc165142b2a61427f3352ded195d1a3e" 3703 | dependencies: 3704 | has-flag "^2.0.0" 3705 | 3706 | supports-color@^2.0.0: 3707 | version "2.0.0" 3708 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3709 | 3710 | syntax-error@^1.1.1: 3711 | version "1.3.0" 3712 | resolved "https://registry.yarnpkg.com/syntax-error/-/syntax-error-1.3.0.tgz#1ed9266c4d40be75dc55bf9bb1cb77062bb96ca1" 3713 | dependencies: 3714 | acorn "^4.0.3" 3715 | 3716 | table@^4.0.1: 3717 | version "4.0.2" 3718 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36" 3719 | dependencies: 3720 | ajv "^5.2.3" 3721 | ajv-keywords "^2.1.0" 3722 | chalk "^2.1.0" 3723 | lodash "^4.17.4" 3724 | slice-ansi "1.0.0" 3725 | string-width "^2.1.1" 3726 | 3727 | tar-pack@^3.4.0: 3728 | version "3.4.1" 3729 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" 3730 | dependencies: 3731 | debug "^2.2.0" 3732 | fstream "^1.0.10" 3733 | fstream-ignore "^1.0.5" 3734 | once "^1.3.3" 3735 | readable-stream "^2.1.4" 3736 | rimraf "^2.5.1" 3737 | tar "^2.2.1" 3738 | uid-number "^0.0.6" 3739 | 3740 | tar-stream@^1.5.0: 3741 | version "1.5.5" 3742 | resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-1.5.5.tgz#5cad84779f45c83b1f2508d96b09d88c7218af55" 3743 | dependencies: 3744 | bl "^1.0.0" 3745 | end-of-stream "^1.0.0" 3746 | readable-stream "^2.0.0" 3747 | xtend "^4.0.0" 3748 | 3749 | tar@^2.2.1: 3750 | version "2.2.1" 3751 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3752 | dependencies: 3753 | block-stream "*" 3754 | fstream "^1.0.2" 3755 | inherits "2" 3756 | 3757 | text-table@~0.2.0: 3758 | version "0.2.0" 3759 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3760 | 3761 | through2@^2.0.0: 3762 | version "2.0.3" 3763 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 3764 | dependencies: 3765 | readable-stream "^2.1.5" 3766 | xtend "~4.0.1" 3767 | 3768 | "through@>=2.2.7 <3", through@^2.3.6: 3769 | version "2.3.8" 3770 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3771 | 3772 | thunkify@~2.1.1: 3773 | version "2.1.2" 3774 | resolved "https://registry.yarnpkg.com/thunkify/-/thunkify-2.1.2.tgz#faa0e9d230c51acc95ca13a361ac05ca7e04553d" 3775 | 3776 | timers-browserify@^1.0.1: 3777 | version "1.4.2" 3778 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-1.4.2.tgz#c9c58b575be8407375cb5e2462dacee74359f41d" 3779 | dependencies: 3780 | process "~0.11.0" 3781 | 3782 | timespan@2.3.x: 3783 | version "2.3.0" 3784 | resolved "https://registry.yarnpkg.com/timespan/-/timespan-2.3.0.tgz#4902ce040bd13d845c8f59b27e9d59bad6f39929" 3785 | 3786 | tmp@0.0.33, tmp@0.0.x, tmp@^0.0.33: 3787 | version "0.0.33" 3788 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 3789 | dependencies: 3790 | os-tmpdir "~1.0.2" 3791 | 3792 | to-array@0.1.4: 3793 | version "0.1.4" 3794 | resolved "https://registry.yarnpkg.com/to-array/-/to-array-0.1.4.tgz#17e6c11f73dd4f3d74cda7a4ff3238e9ad9bf890" 3795 | 3796 | to-arraybuffer@^1.0.0: 3797 | version "1.0.1" 3798 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" 3799 | 3800 | tough-cookie@~2.3.0, tough-cookie@~2.3.3: 3801 | version "2.3.3" 3802 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 3803 | dependencies: 3804 | punycode "^1.4.1" 3805 | 3806 | tryit@^1.0.1: 3807 | version "1.0.3" 3808 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 3809 | 3810 | tsscmp@~1.0.0: 3811 | version "1.0.5" 3812 | resolved "https://registry.yarnpkg.com/tsscmp/-/tsscmp-1.0.5.tgz#7dc4a33af71581ab4337da91d85ca5427ebd9a97" 3813 | 3814 | tty-browserify@~0.0.0: 3815 | version "0.0.0" 3816 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 3817 | 3818 | tunnel-agent@^0.6.0: 3819 | version "0.6.0" 3820 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3821 | dependencies: 3822 | safe-buffer "^5.0.1" 3823 | 3824 | tunnel-agent@~0.4.1: 3825 | version "0.4.3" 3826 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 3827 | 3828 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3829 | version "0.14.5" 3830 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3831 | 3832 | type-check@~0.3.2: 3833 | version "0.3.2" 3834 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3835 | dependencies: 3836 | prelude-ls "~1.1.2" 3837 | 3838 | type-detect@^4.0.0: 3839 | version "4.0.6" 3840 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.6.tgz#88cbce3d13bc675a63f840b3225c180f870786d7" 3841 | 3842 | type-is@~1.6.15: 3843 | version "1.6.15" 3844 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.15.tgz#cab10fb4909e441c82842eafe1ad646c81804410" 3845 | dependencies: 3846 | media-typer "0.3.0" 3847 | mime-types "~2.1.15" 3848 | 3849 | typedarray@^0.0.6, typedarray@~0.0.5: 3850 | version "0.0.6" 3851 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3852 | 3853 | typescript@^2.6.1: 3854 | version "2.6.1" 3855 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.6.1.tgz#ef39cdea27abac0b500242d6726ab90e0c846631" 3856 | 3857 | uglify-es@^3.1.9: 3858 | version "3.1.9" 3859 | resolved "https://registry.yarnpkg.com/uglify-es/-/uglify-es-3.1.9.tgz#6c82df628ac9eb7af9c61fd70c744a084abe6161" 3860 | dependencies: 3861 | commander "~2.11.0" 3862 | source-map "~0.6.1" 3863 | 3864 | uid-number@^0.0.6: 3865 | version "0.0.6" 3866 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3867 | 3868 | ultron@~1.1.0: 3869 | version "1.1.1" 3870 | resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.1.1.tgz#9fe1536a10a664a65266a1e3ccf85fd36302bc9c" 3871 | 3872 | umd@^3.0.0: 3873 | version "3.0.1" 3874 | resolved "https://registry.yarnpkg.com/umd/-/umd-3.0.1.tgz#8ae556e11011f63c2596708a8837259f01b3d60e" 3875 | 3876 | underscore.string@3.3.4: 3877 | version "3.3.4" 3878 | resolved "https://registry.yarnpkg.com/underscore.string/-/underscore.string-3.3.4.tgz#2c2a3f9f83e64762fdc45e6ceac65142864213db" 3879 | dependencies: 3880 | sprintf-js "^1.0.3" 3881 | util-deprecate "^1.0.2" 3882 | 3883 | underscore@~1.7.0: 3884 | version "1.7.0" 3885 | resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.7.0.tgz#6bbaf0877500d36be34ecaa584e0db9fef035209" 3886 | 3887 | unpipe@1.0.0, unpipe@~1.0.0: 3888 | version "1.0.0" 3889 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 3890 | 3891 | url@~0.11.0: 3892 | version "0.11.0" 3893 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 3894 | dependencies: 3895 | punycode "1.3.2" 3896 | querystring "0.2.0" 3897 | 3898 | useragent@^2.1.12: 3899 | version "2.2.1" 3900 | resolved "https://registry.yarnpkg.com/useragent/-/useragent-2.2.1.tgz#cf593ef4f2d175875e8bb658ea92e18a4fd06d8e" 3901 | dependencies: 3902 | lru-cache "2.2.x" 3903 | tmp "0.0.x" 3904 | 3905 | util-deprecate@^1.0.2, util-deprecate@~1.0.1: 3906 | version "1.0.2" 3907 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3908 | 3909 | util@0.10.3, util@~0.10.1: 3910 | version "0.10.3" 3911 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 3912 | dependencies: 3913 | inherits "2.0.1" 3914 | 3915 | utils-merge@1.0.1: 3916 | version "1.0.1" 3917 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" 3918 | 3919 | uuid@^3.0.0, uuid@^3.1.0: 3920 | version "3.2.1" 3921 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14" 3922 | 3923 | uws@~0.14.4: 3924 | version "0.14.5" 3925 | resolved "https://registry.yarnpkg.com/uws/-/uws-0.14.5.tgz#67aaf33c46b2a587a5f6666d00f7691328f149dc" 3926 | 3927 | vargs@0.1.0: 3928 | version "0.1.0" 3929 | resolved "https://registry.yarnpkg.com/vargs/-/vargs-0.1.0.tgz#6b6184da6520cc3204ce1b407cac26d92609ebff" 3930 | 3931 | vary@~1.1.2: 3932 | version "1.1.2" 3933 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" 3934 | 3935 | verror@1.10.0: 3936 | version "1.10.0" 3937 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 3938 | dependencies: 3939 | assert-plus "^1.0.0" 3940 | core-util-is "1.0.2" 3941 | extsprintf "^1.2.0" 3942 | 3943 | vm-browserify@~0.0.1: 3944 | version "0.0.4" 3945 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" 3946 | dependencies: 3947 | indexof "0.0.1" 3948 | 3949 | void-elements@^2.0.0: 3950 | version "2.0.1" 3951 | resolved "https://registry.yarnpkg.com/void-elements/-/void-elements-2.0.1.tgz#c066afb582bb1cb4128d60ea92392e94d5e9dbec" 3952 | 3953 | walkdir@^0.0.11: 3954 | version "0.0.11" 3955 | resolved "https://registry.yarnpkg.com/walkdir/-/walkdir-0.0.11.tgz#a16d025eb931bd03b52f308caed0f40fcebe9532" 3956 | 3957 | wd@^1.4.0: 3958 | version "1.5.0" 3959 | resolved "https://registry.yarnpkg.com/wd/-/wd-1.5.0.tgz#45c96a16ff9f8c0f9e7ca90f806a8b48bd0034d6" 3960 | dependencies: 3961 | archiver "1.3.0" 3962 | async "2.0.1" 3963 | lodash "4.16.2" 3964 | mkdirp "^0.5.1" 3965 | q "1.4.1" 3966 | request "2.79.0" 3967 | underscore.string "3.3.4" 3968 | vargs "0.1.0" 3969 | 3970 | when@^3.7.7: 3971 | version "3.7.8" 3972 | resolved "https://registry.yarnpkg.com/when/-/when-3.7.8.tgz#c7130b6a7ea04693e842cdc9e7a1f2aa39a39f82" 3973 | 3974 | which@^1.2.1, which@^1.2.9: 3975 | version "1.3.0" 3976 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 3977 | dependencies: 3978 | isexe "^2.0.0" 3979 | 3980 | wide-align@^1.1.0: 3981 | version "1.1.2" 3982 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 3983 | dependencies: 3984 | string-width "^1.0.2" 3985 | 3986 | wordwrap@~0.0.2: 3987 | version "0.0.3" 3988 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3989 | 3990 | wordwrap@~1.0.0: 3991 | version "1.0.0" 3992 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3993 | 3994 | wrappy@1: 3995 | version "1.0.2" 3996 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3997 | 3998 | write@^0.2.1: 3999 | version "0.2.1" 4000 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 4001 | dependencies: 4002 | mkdirp "^0.5.1" 4003 | 4004 | ws@^3.0.0, ws@~3.3.1: 4005 | version "3.3.3" 4006 | resolved "https://registry.yarnpkg.com/ws/-/ws-3.3.3.tgz#f1cf84fe2d5e901ebce94efaece785f187a228f2" 4007 | dependencies: 4008 | async-limiter "~1.0.0" 4009 | safe-buffer "~5.1.0" 4010 | ultron "~1.1.0" 4011 | 4012 | xmlhttprequest-ssl@~1.5.4: 4013 | version "1.5.5" 4014 | resolved "https://registry.yarnpkg.com/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.5.tgz#c2876b06168aadc40e57d97e81191ac8f4398b3e" 4015 | 4016 | xregexp@2.0.0: 4017 | version "2.0.0" 4018 | resolved "https://registry.yarnpkg.com/xregexp/-/xregexp-2.0.0.tgz#52a63e56ca0b84a7f3a5f3d61872f126ad7a5943" 4019 | 4020 | xtend@^4.0.0, xtend@~4.0.1: 4021 | version "4.0.1" 4022 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 4023 | 4024 | yallist@^2.1.2: 4025 | version "2.1.2" 4026 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 4027 | 4028 | yauzl@2.4.1: 4029 | version "2.4.1" 4030 | resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.4.1.tgz#9528f442dab1b2284e58b4379bb194e22e0c4005" 4031 | dependencies: 4032 | fd-slicer "~1.0.1" 4033 | 4034 | yeast@0.1.2: 4035 | version "0.1.2" 4036 | resolved "https://registry.yarnpkg.com/yeast/-/yeast-0.1.2.tgz#008e06d8094320c372dbc2f8ed76a0ca6c8ac419" 4037 | 4038 | zip-stream@^1.1.0: 4039 | version "1.2.0" 4040 | resolved "https://registry.yarnpkg.com/zip-stream/-/zip-stream-1.2.0.tgz#a8bc45f4c1b49699c6b90198baacaacdbcd4ba04" 4041 | dependencies: 4042 | archiver-utils "^1.3.0" 4043 | compress-commons "^1.2.0" 4044 | lodash "^4.8.0" 4045 | readable-stream "^2.0.0" 4046 | --------------------------------------------------------------------------------