├── .gitignore ├── .npmignore ├── .travis.yml ├── AUTHORS ├── README.md ├── chunk-webpack-plugin.js ├── lib ├── Tools.js └── util.js ├── package.json ├── spec ├── buildSpec.js ├── fixtures │ ├── async.js │ ├── common.js │ ├── fake_modules │ │ └── a.js │ └── index.js ├── optionsSpec.js ├── support │ └── jasmine.json └── utils │ └── webpackBuild.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | node_modules 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | * 2 | !lib/**/*.js 3 | !chunk-webpack-plugin.js 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "node" 4 | - "4.3" 5 | env: 6 | - CXX=g++-4.8 7 | addons: 8 | apt: 9 | sources: 10 | - ubuntu-toolchain-r-test 11 | packages: 12 | - g++-4.8 13 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | nezed 2 | levp 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Webpack split chunks plugin   [![Build Status](https://travis-ci.org/nezed/webpack-split-chunks.svg?branch=master)](https://travis-ci.org/nezed/webpack-split-chunks) 2 | 3 | This plugin transfers modules whose absolute path matches your condition from a list of chunks into a single 4 | target chunk. 5 | 6 | ### Benefits 7 | 8 | Using this on external bundles can increase dev re-builds performance and optimize clients browser cache in production, because it includes a lot of modules that you have no intention of changing. 9 | 10 | ## Usage 11 | ```js 12 | // webpack.config.js 13 | const webpack = require('webpack'); 14 | const ChunksPlugin = require('webpack-split-chunks'); 15 | 16 | module.exports = { 17 | entry: { 18 | bundle: './src', 19 | }, 20 | output: { 21 | path: './build' 22 | }, 23 | plugins: [ 24 | new ChunksPlugin({ 25 | to: 'vendor', 26 | test: /node_modules/ // or an array of regex 27 | }) 28 | ] 29 | }; 30 | ``` 31 | With this configuration all the modules that were `require`'d in the `bundle` chunk whose **absolute path** contains the 32 | substring `"node_modules"` would be instead added to the `vendor` chunk – and not into the `bundle` chunk where they 33 | would otherwise be. 34 | 35 | ### Webpack `2.x` and `1.x` compatibility 36 | The `latest` version of this plugin is capable with `Webpack@^2.0.0` and `Webpack@^1.5.0`.
37 | Earlier versions of `Webpack` are not supported anymore. 38 | 39 | ## API 40 | ```js 41 | new ChunksPlugin(options) 42 | ``` 43 | 44 | **options**: `Object` (required) 45 | * **from**: `string | Array[string]` (optional)
46 | Specifies name(s) of chunks which will be processed. 47 | If omitted, all chunks will be processed. 48 | > Note: omit this param if you want `webpack-split-chunks` to process your AMD-defined chunks 49 | 50 | * **to**: `string` (required)
51 | The name of target chunk. 52 | 53 | * **test**: `Function | RegExp | Array[RegExp]` (required)
54 | The chunks whose **absolute path** meets any of regexp will be moved to target chunk. 55 | 56 | You can provide your own tester function, every module will be applied to it. 57 | ``` 58 | test: (resource, module) => boolean 59 | ``` 60 | Where: 61 | * **resource**: `string`
62 | The absolute path to module 63 | 64 | * **module**: `Object`
65 | Webpack's [`Module`](https://github.com/webpack/webpack/blob/master/lib/Module.js) object with module meta-info 66 | 67 | 68 | ## Examples 69 | ##### Search for multiple path masks and combine into single chunk 70 | ```js 71 | new ChunksPlugin({ 72 | to: 'vendor', 73 | test: /node_modules|bower_components/ 74 | // or 75 | test: [/node_modules/, /bower_components/] 76 | }) 77 | ``` 78 | 79 | ##### Move all modules bigger than `10KB` to `large-chunk.js` 80 | ```js 81 | new ChunksPlugin({ 82 | to: 'large-chunk', 83 | test(path, module) { 84 | const source = source 85 | if(source) { 86 | const size = Buffer.byteLength(source) 87 | return size > 10 * 1024 * 8 88 | } 89 | } 90 | }) 91 | ``` 92 | ##### Provide specific chunks/entries to extract from 93 | ```js 94 | module.exports = { 95 | entry: { 96 | portal: './src', 97 | admin: './src/admin', 98 | app: './src/app' 99 | }, 100 | output: { 101 | path: './build' 102 | }, 103 | plugins: [ 104 | new ChunksPlugin({ 105 | from: ['portal', 'admin'] 106 | to: 'vendor', 107 | test: /node_modules/ // or an array of regex 108 | }) 109 | ] 110 | }; 111 | ``` 112 | 113 | ## License 114 | 115 | [ISC](https://opensource.org/licenses/ISC) 116 | -------------------------------------------------------------------------------- /chunk-webpack-plugin.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const CommonsChunkPlugin = require('webpack').optimize.CommonsChunkPlugin; 4 | const util = require('./lib/util'); 5 | const Tools = require('./lib/Tools'); 6 | 7 | class ChunkWebpackPlugin extends CommonsChunkPlugin { 8 | constructor(options) { 9 | if (typeof options !== 'object') 10 | throw new TypeError('Argument `options` must be an object.'); 11 | if (options.from && !util.typeOrArrayOf(options.from, 'string')) 12 | throw new Error('Option `from` must be either a string or an array of strings'); 13 | if (!util.checkType(options.to, 'string')) 14 | throw new Error('Option `to` must be a string.'); 15 | if (!util.typeOrArrayOf(options.test, RegExp) && !util.checkType(options.test, 'function')) 16 | throw new Error('Option `test` must be either a funtion, RegExp or an array of RegExp`s.'); 17 | 18 | const targetChunkName = options.to; 19 | let fromChunkNameList = null; 20 | let testers; 21 | 22 | if (Array.isArray(options.from)) { 23 | fromChunkNameList = options.from 24 | } else if (typeof options.from === 'string') { 25 | fromChunkNameList = [options.from] 26 | } 27 | 28 | if (Array.isArray(options.test)) { 29 | testers = options.test 30 | } else if (typeof options.test === 'function') { 31 | testers = options.test 32 | } else { 33 | testers = [options.test] 34 | } 35 | 36 | 37 | if (fromChunkNameList && fromChunkNameList.indexOf(targetChunkName) !== -1) { 38 | // yeah, if this happened something is wrong 39 | throw new Error('The name of the target ("to") chunk cannot also be in the "from" chunk name list.'); 40 | } 41 | 42 | super({ name: targetChunkName }); 43 | this.targetChunkName = targetChunkName; 44 | this.fromChunkNameList = fromChunkNameList; 45 | this.minChunks = Infinity; 46 | this.testers = testers; 47 | } 48 | 49 | apply(compiler) { 50 | const self = this; // i lost my lambdas ;_; 51 | 52 | compiler.plugin('compilation', function (compilation) { 53 | const tools = new Tools(compilation); 54 | 55 | compilation.plugin('optimize-chunks', function (chunkList) { 56 | if (tools.compilationOptimized) 57 | return; 58 | tools.compilationOptimized = true; 59 | 60 | // 1. find the target chunk (and ensure it exists) before we take anything from other chunks 61 | let targetChunk = tools.findExistingChunk(chunkList, self.targetChunkName); 62 | if (!targetChunk) { 63 | // Create a new child chunk 64 | targetChunk = tools.createChildChunk(this, self.targetChunkName, chunkList) 65 | } 66 | if (!targetChunk) { 67 | // Fatality! 68 | throw new Error('Target (to) chunk "' + self.targetChunkName + '" wasn\'t found.'); 69 | } 70 | 71 | // 2. filter out chunks we shouldn't be touching 72 | if (self.fromChunkNameList) { 73 | chunkList = chunkList.filter(function (chunk) { 74 | return self.fromChunkNameList.indexOf(chunk.name) !== -1; 75 | }); 76 | } 77 | 78 | // 3. take all the modules that pass any of our test regex 79 | const takenModules = tools.takeMatchingModules(chunkList, self.testers); 80 | 81 | // 4. insert all taken modules into our target chunk 82 | tools.insertModulesIntoChunk(targetChunk, takenModules); 83 | }); 84 | }); 85 | super.apply.apply(this, arguments); 86 | } 87 | } 88 | 89 | module.exports = ChunkWebpackPlugin; 90 | -------------------------------------------------------------------------------- /lib/Tools.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var util = require('./util'); 4 | 5 | function Tools(compiler) { 6 | this.compilationOptimized = false 7 | } 8 | 9 | Tools.prototype.takeMatchingModules = takeMatchingModules 10 | Tools.prototype.findExistingChunk = findExistingChunk 11 | Tools.prototype.insertModulesIntoChunk = insertModulesIntoChunk 12 | Tools.prototype.findEntryChunk = findEntryChunk 13 | Tools.prototype.createChildChunk = createChildChunk 14 | 15 | module.exports = Tools 16 | 17 | function takeMatchingModules(chunkList, testers) { 18 | var takenModules = []; 19 | for (var i = 0; i < chunkList.length; i++) { 20 | var chunk = chunkList[i]; 21 | var moduleList = chunk.modules; 22 | ///////////////////////////////////////////////////// 23 | for (var k = 0; k < moduleList.length; k++) { 24 | var module = moduleList[k]; 25 | 26 | // if module doesn't match any of the test criteria; ignore it 27 | if( !module.resource ) { 28 | continue; 29 | } else if( typeof testers === 'function' ) { 30 | if( !testers(module.resource, module) ) 31 | continue; 32 | } else if (!util.testAny(testers, module.resource)) { 33 | continue; 34 | } 35 | 36 | // take the module from the chunk 37 | chunk.removeModule(module); 38 | k--; // (forgetting this won't be pretty) 39 | // ..and add to our list 40 | takenModules.push(module); 41 | } 42 | ///////////////////////////////////////////////////// 43 | } 44 | return takenModules; 45 | } 46 | 47 | function findExistingChunk(chunkList, targetChunkName) { 48 | for (var i = 0; i < chunkList.length; i++) { 49 | if (chunkList[i].name === targetChunkName) { 50 | // found it! 51 | return chunkList[i]; 52 | } 53 | } 54 | // not found 55 | return null; 56 | } 57 | function findEntryChunk(chunkList) { 58 | for (var i = 0; i < chunkList.length; i++) { 59 | if (chunkList[i].hasRuntime()) { 60 | return chunkList[i]; 61 | } 62 | } 63 | // not found 64 | return chunkList[0]; 65 | } 66 | 67 | function createChildChunk(compilerContext, chunkName, chunkList, parentChunk) { 68 | parentChunk = parentChunk || this.findEntryChunk(chunkList) 69 | var chunk = compilerContext.addChunk(chunkName) 70 | 71 | chunk.extraAsync = true 72 | chunk.addParent(parentChunk) 73 | parentChunk.addChunk(chunk) 74 | 75 | return chunk; 76 | } 77 | 78 | function insertModulesIntoChunk(targetChunk, moduleList) { 79 | // dump all stolen modules into chunk 80 | for (var i = 0; i < moduleList.length; i++) { 81 | var module = moduleList[i]; 82 | targetChunk.addModule(module); 83 | } 84 | // clear the array just in case 85 | moduleList.length = 0; 86 | } 87 | -------------------------------------------------------------------------------- /lib/util.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | checkType: checkType, 5 | typeOrArrayOf: typeOrArrayOf, 6 | testAny: testAny 7 | }; 8 | 9 | /** 10 | * Checks if a value is of the specified type (See code for more details). 11 | * @param {*} value The value to check. 12 | * @param {string|function} type The checked type of the value. 13 | */ 14 | function checkType(value, type) { 15 | return (typeof type === 'string') 16 | ? (typeof value === type) 17 | : (value instanceof type); 18 | } 19 | 20 | /** 21 | * Checks if a value is of the specified type OR is an array of objects all of which are of the specified type. 22 | * (See `checkType()` for mor details) 23 | * @param {*|[]} object The value or array of values to check. 24 | * @param {string|function} type The checked type of the value. 25 | */ 26 | function typeOrArrayOf(object, type) { 27 | if (!Array.isArray(object)) { 28 | // not an array 29 | return checkType(object, type); 30 | } 31 | 32 | // object is an array 33 | for (var i = 0; i < object.length; i++) { 34 | var element = object[i]; 35 | if (!checkType(element, type)) { 36 | return false; 37 | } 38 | } 39 | return true; 40 | } 41 | 42 | /** 43 | * Checks if a string tests true for at least one of a specified array of RegExp objects. 44 | * @param {RegExp[]} regexArray Array of regex objects to test against. 45 | * @param {string} testString String to test. 46 | */ 47 | function testAny(regexArray, testString) { 48 | for (var i = 0; i < regexArray.length; i++) { 49 | if (regexArray[i].test(testString)) { 50 | return true; 51 | } 52 | } 53 | return false; 54 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "webpack-split-chunks", 3 | "version": "0.2.1", 4 | "description": "Improving build speed and giving more control over chunk splitting", 5 | "main": "chunk-webpack-plugin.js", 6 | "scripts": { 7 | "test": "jasmine", 8 | "postversion": "git push && git push --tags" 9 | }, 10 | "repository": { 11 | "type": "git", 12 | "url": "git+https://github.com/nezed/webpack-split-chunks.git" 13 | }, 14 | "bugs": { 15 | "url": "https://github.com/nezed/webpack-split-chunks/issues" 16 | }, 17 | "homepage": "https://github.com/nezed/webpack-split-chunks#readme", 18 | "author": "nezed ", 19 | "contributors": [ 20 | "nezed ", 21 | "levp " 22 | ], 23 | "license": "ISC", 24 | "devDependencies": { 25 | "jasmine": "^2.5.3", 26 | "memory-fs": "^0.4.1", 27 | "webpack": "^2.2.1" 28 | }, 29 | "peerDependencies": { 30 | "webpack": "^1.5.0 || ^2.0.0" 31 | }, 32 | "keywords": [ 33 | "webpack", 34 | "build", 35 | "speed", 36 | "performance", 37 | "manage", 38 | "control", 39 | "chunk", 40 | "chunks", 41 | "size", 42 | "split" 43 | ] 44 | } 45 | -------------------------------------------------------------------------------- /spec/buildSpec.js: -------------------------------------------------------------------------------- 1 | const webpackBuild = require('./utils/webpackBuild') 2 | const path = require('path') 3 | const ChunksPlugin = require('../chunk-webpack-plugin') 4 | 5 | const baseConfig = { 6 | entry: path.join(__dirname, 'fixtures/index'), 7 | output: { 8 | filename: '[name]_bundle.js', 9 | chunkFilename: '[id]_chunk.js' 10 | } 11 | } 12 | 13 | describe('Plugin options', () => { 14 | it('should not recompile if files are not changed', done => { 15 | const config = Object.assign({ 16 | plugins: [ 17 | new ChunksPlugin({ 18 | to: 'vendor', 19 | test: /fake_modules/, 20 | }) 21 | ] 22 | }, baseConfig) 23 | 24 | const compiler = webpackBuild(config) 25 | 26 | compiler.run() 27 | .then(() => ( 28 | compiler.run() 29 | )) 30 | .then(stats => { 31 | const compiledModules = stats.toJson().modules.filter(module => module.built) 32 | 33 | expect(compiledModules.length).toEqual(0) 34 | }) 35 | .then(done) 36 | }) 37 | 38 | it('should split async chunks', done => { 39 | const config = Object.assign({}, baseConfig, { 40 | entry: path.join(__dirname, 'fixtures/async'), 41 | plugins: [ 42 | new ChunksPlugin({ 43 | to: 'vendor', 44 | test: /fake_modules/, 45 | }) 46 | ] 47 | }) 48 | 49 | webpackBuild(config) 50 | .willEmit({ 51 | '0_chunk': /module-common/, 52 | vendor_bundle: /module-a/, 53 | }) 54 | .then(done) 55 | }) 56 | }) 57 | -------------------------------------------------------------------------------- /spec/fixtures/async.js: -------------------------------------------------------------------------------- 1 | import('./fake_modules/a') 2 | import('./common') 3 | import('./index') 4 | -------------------------------------------------------------------------------- /spec/fixtures/common.js: -------------------------------------------------------------------------------- 1 | module.exports = 'module-common' 2 | -------------------------------------------------------------------------------- /spec/fixtures/fake_modules/a.js: -------------------------------------------------------------------------------- 1 | module.exports = 'module-a' 2 | -------------------------------------------------------------------------------- /spec/fixtures/index.js: -------------------------------------------------------------------------------- 1 | require('./fake_modules/a') 2 | require('./common') 3 | -------------------------------------------------------------------------------- /spec/optionsSpec.js: -------------------------------------------------------------------------------- 1 | const webpackBuild = require('./utils/webpackBuild') 2 | const path = require('path') 3 | const ChunksPlugin = require('../chunk-webpack-plugin') 4 | 5 | const baseConfig = { 6 | entry: path.join(__dirname, 'fixtures/index'), 7 | output: { 8 | filename: '[name]_bundle.js' 9 | } 10 | } 11 | 12 | describe('Plugin options', () => { 13 | it('should extract synchronous chunk', done => { 14 | const config = Object.assign({ 15 | plugins: [ 16 | new ChunksPlugin({ 17 | to: 'vendor', 18 | test: /fake_modules/, 19 | }) 20 | ] 21 | }, baseConfig) 22 | 23 | webpackBuild(config) 24 | .willEmit({ 25 | main_bundle: /module-common/, 26 | vendor_bundle: /module-a/, 27 | }) 28 | .then(done) 29 | }) 30 | 31 | it('should process array of chunks regexp', done => { 32 | const config = Object.assign({ 33 | plugins: [ 34 | new ChunksPlugin({ 35 | to: 'vendor', 36 | test: [ 37 | /fake_modules/, 38 | /common/, 39 | ] 40 | }) 41 | ] 42 | }, baseConfig) 43 | 44 | webpackBuild(config) 45 | .willEmit({ 46 | vendor_bundle: [ 47 | /module-common/, 48 | /module-a/, 49 | ] 50 | }) 51 | .then(done) 52 | }) 53 | 54 | it('should split chunks by checker function', done => { 55 | const config = Object.assign({ 56 | plugins: [ 57 | new ChunksPlugin({ 58 | to: 'common', 59 | test(path, module) { 60 | const source = module._source && module._source._value 61 | if(source) { 62 | return source.indexOf('module-common') !== -1 63 | } 64 | } 65 | }) 66 | ] 67 | }, baseConfig) 68 | 69 | webpackBuild(config) 70 | .willEmit({ 71 | main_bundle: /module-a/, 72 | common_bundle: /module-common/, 73 | }) 74 | .then(done) 75 | }) 76 | }) 77 | -------------------------------------------------------------------------------- /spec/support/jasmine.json: -------------------------------------------------------------------------------- 1 | { 2 | "spec_dir": "spec", 3 | "spec_files": [ 4 | "**/*[sS]pec.js" 5 | ], 6 | "stopSpecOnExpectationFailure": false 7 | } 8 | -------------------------------------------------------------------------------- /spec/utils/webpackBuild.js: -------------------------------------------------------------------------------- 1 | const path = require('path') 2 | const MemoryFS = require('memory-fs') 3 | const webpack = require('webpack') 4 | 5 | const VIRTUAL_PATH = '/dist' 6 | 7 | jasmine.getEnv().defaultTimeoutInterval = 10000; 8 | 9 | function verifyExpectedContent(actualContent, expectedContent) { 10 | if(Array.isArray(expectedContent)) { 11 | expectedContent.forEach(expectation => ( 12 | verifyExpectedContent(actualContent, expectation) 13 | )) 14 | } else if(expectedContent instanceof RegExp) { 15 | expect(actualContent).toMatch(expectedContent) 16 | } else { 17 | expect(actualContent).toContain(expectedContent) 18 | } 19 | } 20 | 21 | module.exports = function verifyWebpackBuild(webpackConfig) { 22 | webpackConfig = Object.assign({}, webpackConfig, { 23 | output: Object.assign({}, webpackConfig.output, { 24 | path: VIRTUAL_PATH 25 | }) 26 | }) 27 | 28 | const fs = new MemoryFS() 29 | 30 | const compiler = webpack(webpackConfig) 31 | compiler.outputFileSystem = fs 32 | 33 | const run = () => (new Promise((resolve, reject) => { 34 | compiler.run((err, stats) => { 35 | if(err) { 36 | reject(err) 37 | } 38 | expect(err).toBeFalsy() 39 | 40 | resolve(stats) 41 | }) 42 | })) 43 | 44 | const willEmit = (expectations) => { 45 | expectations || (expectations = {}) 46 | 47 | return run().then((stats) => { 48 | const emitedFiles = Object.keys(stats.compilation.assets) 49 | 50 | for(const outputFile of Object.keys(expectations)) { 51 | const emitedFileName = emitedFiles.find(file => file.indexOf(outputFile) !== -1) 52 | expect(emitedFileName).not.toBeUndefined(`Expected file "${ outputFile }" are not emited`) 53 | 54 | const emitedFilePath = path.join(webpackConfig.output.path, emitedFileName) 55 | expect(fs.existsSync(emitedFilePath)).toBeTruthy(`Expected file "${ emitedFilePath }" are not exist on FS`) 56 | 57 | const expectedContent = expectations[outputFile] 58 | if(expectedContent !== null) { 59 | const actualContent = fs.readFileSync(emitedFilePath, 'utf-8') 60 | verifyExpectedContent(actualContent, expectedContent) 61 | } 62 | } 63 | 64 | return stats 65 | }) 66 | } 67 | 68 | return { 69 | run: run, 70 | willEmit: willEmit, 71 | } 72 | } 73 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | abbrev@1: 4 | version "1.1.0" 5 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 6 | 7 | acorn-dynamic-import@^2.0.0: 8 | version "2.0.2" 9 | resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz#c752bd210bef679501b6c6cb7fc84f8f47158cc4" 10 | dependencies: 11 | acorn "^4.0.3" 12 | 13 | acorn@^4.0.3, acorn@^4.0.4: 14 | version "4.0.11" 15 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.11.tgz#edcda3bd937e7556410d42ed5860f67399c794c0" 16 | 17 | ajv-keywords@^1.1.1: 18 | version "1.5.1" 19 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 20 | 21 | ajv@^4.7.0, ajv@^4.9.1: 22 | version "4.11.4" 23 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.4.tgz#ebf3a55d4b132ea60ff5847ae85d2ef069960b45" 24 | dependencies: 25 | co "^4.6.0" 26 | json-stable-stringify "^1.0.1" 27 | 28 | align-text@^0.1.1, align-text@^0.1.3: 29 | version "0.1.4" 30 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 31 | dependencies: 32 | kind-of "^3.0.2" 33 | longest "^1.0.1" 34 | repeat-string "^1.5.2" 35 | 36 | ansi-regex@^2.0.0: 37 | version "2.1.1" 38 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 39 | 40 | anymatch@^1.3.0: 41 | version "1.3.0" 42 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 43 | dependencies: 44 | arrify "^1.0.0" 45 | micromatch "^2.1.5" 46 | 47 | aproba@^1.0.3: 48 | version "1.1.1" 49 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.1.tgz#95d3600f07710aa0e9298c726ad5ecf2eacbabab" 50 | 51 | are-we-there-yet@~1.1.2: 52 | version "1.1.2" 53 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" 54 | dependencies: 55 | delegates "^1.0.0" 56 | readable-stream "^2.0.0 || ^1.1.13" 57 | 58 | arr-diff@^2.0.0: 59 | version "2.0.0" 60 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 61 | dependencies: 62 | arr-flatten "^1.0.1" 63 | 64 | arr-flatten@^1.0.1: 65 | version "1.0.1" 66 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 67 | 68 | array-unique@^0.2.1: 69 | version "0.2.1" 70 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 71 | 72 | arrify@^1.0.0: 73 | version "1.0.1" 74 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 75 | 76 | asn1.js@^4.0.0: 77 | version "4.9.1" 78 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.1.tgz#48ba240b45a9280e94748990ba597d216617fd40" 79 | dependencies: 80 | bn.js "^4.0.0" 81 | inherits "^2.0.1" 82 | minimalistic-assert "^1.0.0" 83 | 84 | asn1@~0.2.3: 85 | version "0.2.3" 86 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 87 | 88 | assert-plus@^0.2.0: 89 | version "0.2.0" 90 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 91 | 92 | assert-plus@^1.0.0: 93 | version "1.0.0" 94 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 95 | 96 | assert@^1.1.1: 97 | version "1.4.1" 98 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" 99 | dependencies: 100 | util "0.10.3" 101 | 102 | async-each@^1.0.0: 103 | version "1.0.1" 104 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 105 | 106 | async@^2.1.2: 107 | version "2.1.5" 108 | resolved "https://registry.yarnpkg.com/async/-/async-2.1.5.tgz#e587c68580994ac67fc56ff86d3ac56bdbe810bc" 109 | dependencies: 110 | lodash "^4.14.0" 111 | 112 | asynckit@^0.4.0: 113 | version "0.4.0" 114 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 115 | 116 | aws-sign2@~0.6.0: 117 | version "0.6.0" 118 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 119 | 120 | aws4@^1.2.1: 121 | version "1.6.0" 122 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 123 | 124 | balanced-match@^0.4.1: 125 | version "0.4.2" 126 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 127 | 128 | base64-js@^1.0.2: 129 | version "1.2.0" 130 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.0.tgz#a39992d723584811982be5e290bb6a53d86700f1" 131 | 132 | bcrypt-pbkdf@^1.0.0: 133 | version "1.0.1" 134 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 135 | dependencies: 136 | tweetnacl "^0.14.3" 137 | 138 | big.js@^3.1.3: 139 | version "3.1.3" 140 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.1.3.tgz#4cada2193652eb3ca9ec8e55c9015669c9806978" 141 | 142 | binary-extensions@^1.0.0: 143 | version "1.8.0" 144 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 145 | 146 | block-stream@*: 147 | version "0.0.9" 148 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 149 | dependencies: 150 | inherits "~2.0.0" 151 | 152 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: 153 | version "4.11.6" 154 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.6.tgz#53344adb14617a13f6e8dd2ce28905d1c0ba3215" 155 | 156 | boom@2.x.x: 157 | version "2.10.1" 158 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 159 | dependencies: 160 | hoek "2.x.x" 161 | 162 | brace-expansion@^1.0.0: 163 | version "1.1.6" 164 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 165 | dependencies: 166 | balanced-match "^0.4.1" 167 | concat-map "0.0.1" 168 | 169 | braces@^1.8.2: 170 | version "1.8.5" 171 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 172 | dependencies: 173 | expand-range "^1.8.1" 174 | preserve "^0.2.0" 175 | repeat-element "^1.1.2" 176 | 177 | brorand@^1.0.1: 178 | version "1.1.0" 179 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 180 | 181 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: 182 | version "1.0.6" 183 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.0.6.tgz#5e7725dbdef1fd5930d4ebab48567ce451c48a0a" 184 | dependencies: 185 | buffer-xor "^1.0.2" 186 | cipher-base "^1.0.0" 187 | create-hash "^1.1.0" 188 | evp_bytestokey "^1.0.0" 189 | inherits "^2.0.1" 190 | 191 | browserify-cipher@^1.0.0: 192 | version "1.0.0" 193 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" 194 | dependencies: 195 | browserify-aes "^1.0.4" 196 | browserify-des "^1.0.0" 197 | evp_bytestokey "^1.0.0" 198 | 199 | browserify-des@^1.0.0: 200 | version "1.0.0" 201 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" 202 | dependencies: 203 | cipher-base "^1.0.1" 204 | des.js "^1.0.0" 205 | inherits "^2.0.1" 206 | 207 | browserify-rsa@^4.0.0: 208 | version "4.0.1" 209 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" 210 | dependencies: 211 | bn.js "^4.1.0" 212 | randombytes "^2.0.1" 213 | 214 | browserify-sign@^4.0.0: 215 | version "4.0.0" 216 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.0.tgz#10773910c3c206d5420a46aad8694f820b85968f" 217 | dependencies: 218 | bn.js "^4.1.1" 219 | browserify-rsa "^4.0.0" 220 | create-hash "^1.1.0" 221 | create-hmac "^1.1.2" 222 | elliptic "^6.0.0" 223 | inherits "^2.0.1" 224 | parse-asn1 "^5.0.0" 225 | 226 | browserify-zlib@^0.1.4: 227 | version "0.1.4" 228 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d" 229 | dependencies: 230 | pako "~0.2.0" 231 | 232 | buffer-shims@^1.0.0: 233 | version "1.0.0" 234 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 235 | 236 | buffer-xor@^1.0.2: 237 | version "1.0.3" 238 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 239 | 240 | buffer@^4.3.0: 241 | version "4.9.1" 242 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" 243 | dependencies: 244 | base64-js "^1.0.2" 245 | ieee754 "^1.1.4" 246 | isarray "^1.0.0" 247 | 248 | builtin-modules@^1.0.0: 249 | version "1.1.1" 250 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 251 | 252 | builtin-status-codes@^3.0.0: 253 | version "3.0.0" 254 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" 255 | 256 | camelcase@^1.0.2: 257 | version "1.2.1" 258 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 259 | 260 | camelcase@^3.0.0: 261 | version "3.0.0" 262 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 263 | 264 | caseless@~0.12.0: 265 | version "0.12.0" 266 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 267 | 268 | center-align@^0.1.1: 269 | version "0.1.3" 270 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 271 | dependencies: 272 | align-text "^0.1.3" 273 | lazy-cache "^1.0.3" 274 | 275 | chokidar@^1.4.3: 276 | version "1.6.1" 277 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" 278 | dependencies: 279 | anymatch "^1.3.0" 280 | async-each "^1.0.0" 281 | glob-parent "^2.0.0" 282 | inherits "^2.0.1" 283 | is-binary-path "^1.0.0" 284 | is-glob "^2.0.0" 285 | path-is-absolute "^1.0.0" 286 | readdirp "^2.0.0" 287 | optionalDependencies: 288 | fsevents "^1.0.0" 289 | 290 | cipher-base@^1.0.0, cipher-base@^1.0.1: 291 | version "1.0.3" 292 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.3.tgz#eeabf194419ce900da3018c207d212f2a6df0a07" 293 | dependencies: 294 | inherits "^2.0.1" 295 | 296 | cliui@^2.1.0: 297 | version "2.1.0" 298 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 299 | dependencies: 300 | center-align "^0.1.1" 301 | right-align "^0.1.1" 302 | wordwrap "0.0.2" 303 | 304 | cliui@^3.2.0: 305 | version "3.2.0" 306 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 307 | dependencies: 308 | string-width "^1.0.1" 309 | strip-ansi "^3.0.1" 310 | wrap-ansi "^2.0.0" 311 | 312 | co@^4.6.0: 313 | version "4.6.0" 314 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 315 | 316 | code-point-at@^1.0.0: 317 | version "1.1.0" 318 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 319 | 320 | combined-stream@^1.0.5, combined-stream@~1.0.5: 321 | version "1.0.5" 322 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 323 | dependencies: 324 | delayed-stream "~1.0.0" 325 | 326 | concat-map@0.0.1: 327 | version "0.0.1" 328 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 329 | 330 | console-browserify@^1.1.0: 331 | version "1.1.0" 332 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" 333 | dependencies: 334 | date-now "^0.1.4" 335 | 336 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 337 | version "1.1.0" 338 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 339 | 340 | constants-browserify@^1.0.0: 341 | version "1.0.0" 342 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" 343 | 344 | core-util-is@~1.0.0: 345 | version "1.0.2" 346 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 347 | 348 | create-ecdh@^4.0.0: 349 | version "4.0.0" 350 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" 351 | dependencies: 352 | bn.js "^4.1.0" 353 | elliptic "^6.0.0" 354 | 355 | create-hash@^1.1.0, create-hash@^1.1.1: 356 | version "1.1.2" 357 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.2.tgz#51210062d7bb7479f6c65bb41a92208b1d61abad" 358 | dependencies: 359 | cipher-base "^1.0.1" 360 | inherits "^2.0.1" 361 | ripemd160 "^1.0.0" 362 | sha.js "^2.3.6" 363 | 364 | create-hmac@^1.1.0, create-hmac@^1.1.2: 365 | version "1.1.4" 366 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.4.tgz#d3fb4ba253eb8b3f56e39ea2fbcb8af747bd3170" 367 | dependencies: 368 | create-hash "^1.1.0" 369 | inherits "^2.0.1" 370 | 371 | cryptiles@2.x.x: 372 | version "2.0.5" 373 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 374 | dependencies: 375 | boom "2.x.x" 376 | 377 | crypto-browserify@^3.11.0: 378 | version "3.11.0" 379 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.11.0.tgz#3652a0906ab9b2a7e0c3ce66a408e957a2485522" 380 | dependencies: 381 | browserify-cipher "^1.0.0" 382 | browserify-sign "^4.0.0" 383 | create-ecdh "^4.0.0" 384 | create-hash "^1.1.0" 385 | create-hmac "^1.1.0" 386 | diffie-hellman "^5.0.0" 387 | inherits "^2.0.1" 388 | pbkdf2 "^3.0.3" 389 | public-encrypt "^4.0.0" 390 | randombytes "^2.0.0" 391 | 392 | dashdash@^1.12.0: 393 | version "1.14.1" 394 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 395 | dependencies: 396 | assert-plus "^1.0.0" 397 | 398 | date-now@^0.1.4: 399 | version "0.1.4" 400 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 401 | 402 | debug@~2.2.0: 403 | version "2.2.0" 404 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 405 | dependencies: 406 | ms "0.7.1" 407 | 408 | decamelize@^1.0.0, decamelize@^1.1.1: 409 | version "1.2.0" 410 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 411 | 412 | deep-extend@~0.4.0: 413 | version "0.4.1" 414 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 415 | 416 | delayed-stream@~1.0.0: 417 | version "1.0.0" 418 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 419 | 420 | delegates@^1.0.0: 421 | version "1.0.0" 422 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 423 | 424 | des.js@^1.0.0: 425 | version "1.0.0" 426 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" 427 | dependencies: 428 | inherits "^2.0.1" 429 | minimalistic-assert "^1.0.0" 430 | 431 | diffie-hellman@^5.0.0: 432 | version "5.0.2" 433 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" 434 | dependencies: 435 | bn.js "^4.1.0" 436 | miller-rabin "^4.0.0" 437 | randombytes "^2.0.0" 438 | 439 | domain-browser@^1.1.1: 440 | version "1.1.7" 441 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" 442 | 443 | ecc-jsbn@~0.1.1: 444 | version "0.1.1" 445 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 446 | dependencies: 447 | jsbn "~0.1.0" 448 | 449 | elliptic@^6.0.0: 450 | version "6.4.0" 451 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df" 452 | dependencies: 453 | bn.js "^4.4.0" 454 | brorand "^1.0.1" 455 | hash.js "^1.0.0" 456 | hmac-drbg "^1.0.0" 457 | inherits "^2.0.1" 458 | minimalistic-assert "^1.0.0" 459 | minimalistic-crypto-utils "^1.0.0" 460 | 461 | emojis-list@^2.0.0: 462 | version "2.1.0" 463 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" 464 | 465 | enhanced-resolve@^3.0.0: 466 | version "3.1.0" 467 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.1.0.tgz#9f4b626f577245edcf4b2ad83d86e17f4f421dec" 468 | dependencies: 469 | graceful-fs "^4.1.2" 470 | memory-fs "^0.4.0" 471 | object-assign "^4.0.1" 472 | tapable "^0.2.5" 473 | 474 | errno@^0.1.3: 475 | version "0.1.4" 476 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 477 | dependencies: 478 | prr "~0.0.0" 479 | 480 | error-ex@^1.2.0: 481 | version "1.3.1" 482 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 483 | dependencies: 484 | is-arrayish "^0.2.1" 485 | 486 | events@^1.0.0: 487 | version "1.1.1" 488 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 489 | 490 | evp_bytestokey@^1.0.0: 491 | version "1.0.0" 492 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.0.tgz#497b66ad9fef65cd7c08a6180824ba1476b66e53" 493 | dependencies: 494 | create-hash "^1.1.1" 495 | 496 | exit@^0.1.2: 497 | version "0.1.2" 498 | resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" 499 | 500 | expand-brackets@^0.1.4: 501 | version "0.1.5" 502 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 503 | dependencies: 504 | is-posix-bracket "^0.1.0" 505 | 506 | expand-range@^1.8.1: 507 | version "1.8.2" 508 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 509 | dependencies: 510 | fill-range "^2.1.0" 511 | 512 | extend@~3.0.0: 513 | version "3.0.0" 514 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 515 | 516 | extglob@^0.3.1: 517 | version "0.3.2" 518 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 519 | dependencies: 520 | is-extglob "^1.0.0" 521 | 522 | extsprintf@1.0.2: 523 | version "1.0.2" 524 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 525 | 526 | filename-regex@^2.0.0: 527 | version "2.0.0" 528 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 529 | 530 | fill-range@^2.1.0: 531 | version "2.2.3" 532 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 533 | dependencies: 534 | is-number "^2.1.0" 535 | isobject "^2.0.0" 536 | randomatic "^1.1.3" 537 | repeat-element "^1.1.2" 538 | repeat-string "^1.5.2" 539 | 540 | find-up@^1.0.0: 541 | version "1.1.2" 542 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 543 | dependencies: 544 | path-exists "^2.0.0" 545 | pinkie-promise "^2.0.0" 546 | 547 | for-in@^1.0.1: 548 | version "1.0.2" 549 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 550 | 551 | for-own@^0.1.4: 552 | version "0.1.5" 553 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 554 | dependencies: 555 | for-in "^1.0.1" 556 | 557 | forever-agent@~0.6.1: 558 | version "0.6.1" 559 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 560 | 561 | form-data@~2.1.1: 562 | version "2.1.2" 563 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4" 564 | dependencies: 565 | asynckit "^0.4.0" 566 | combined-stream "^1.0.5" 567 | mime-types "^2.1.12" 568 | 569 | fs.realpath@^1.0.0: 570 | version "1.0.0" 571 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 572 | 573 | fsevents@^1.0.0: 574 | version "1.1.1" 575 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.1.tgz#f19fd28f43eeaf761680e519a203c4d0b3d31aff" 576 | dependencies: 577 | nan "^2.3.0" 578 | node-pre-gyp "^0.6.29" 579 | 580 | fstream-ignore@~1.0.5: 581 | version "1.0.5" 582 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 583 | dependencies: 584 | fstream "^1.0.0" 585 | inherits "2" 586 | minimatch "^3.0.0" 587 | 588 | fstream@^1.0.0, fstream@^1.0.2, fstream@~1.0.10: 589 | version "1.0.10" 590 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.10.tgz#604e8a92fe26ffd9f6fae30399d4984e1ab22822" 591 | dependencies: 592 | graceful-fs "^4.1.2" 593 | inherits "~2.0.0" 594 | mkdirp ">=0.5 0" 595 | rimraf "2" 596 | 597 | gauge@~2.7.1: 598 | version "2.7.3" 599 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.3.tgz#1c23855f962f17b3ad3d0dc7443f304542edfe09" 600 | dependencies: 601 | aproba "^1.0.3" 602 | console-control-strings "^1.0.0" 603 | has-unicode "^2.0.0" 604 | object-assign "^4.1.0" 605 | signal-exit "^3.0.0" 606 | string-width "^1.0.1" 607 | strip-ansi "^3.0.1" 608 | wide-align "^1.1.0" 609 | 610 | get-caller-file@^1.0.1: 611 | version "1.0.2" 612 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 613 | 614 | getpass@^0.1.1: 615 | version "0.1.6" 616 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 617 | dependencies: 618 | assert-plus "^1.0.0" 619 | 620 | glob-base@^0.3.0: 621 | version "0.3.0" 622 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 623 | dependencies: 624 | glob-parent "^2.0.0" 625 | is-glob "^2.0.0" 626 | 627 | glob-parent@^2.0.0: 628 | version "2.0.0" 629 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 630 | dependencies: 631 | is-glob "^2.0.0" 632 | 633 | glob@^7.0.5, glob@^7.0.6: 634 | version "7.1.1" 635 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 636 | dependencies: 637 | fs.realpath "^1.0.0" 638 | inflight "^1.0.4" 639 | inherits "2" 640 | minimatch "^3.0.2" 641 | once "^1.3.0" 642 | path-is-absolute "^1.0.0" 643 | 644 | graceful-fs@^4.1.2: 645 | version "4.1.11" 646 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 647 | 648 | har-schema@^1.0.5: 649 | version "1.0.5" 650 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 651 | 652 | har-validator@~4.2.0: 653 | version "4.2.1" 654 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 655 | dependencies: 656 | ajv "^4.9.1" 657 | har-schema "^1.0.5" 658 | 659 | has-flag@^1.0.0: 660 | version "1.0.0" 661 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 662 | 663 | has-unicode@^2.0.0: 664 | version "2.0.1" 665 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 666 | 667 | hash.js@^1.0.0, hash.js@^1.0.3: 668 | version "1.0.3" 669 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.0.3.tgz#1332ff00156c0a0ffdd8236013d07b77a0451573" 670 | dependencies: 671 | inherits "^2.0.1" 672 | 673 | hawk@~3.1.3: 674 | version "3.1.3" 675 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 676 | dependencies: 677 | boom "2.x.x" 678 | cryptiles "2.x.x" 679 | hoek "2.x.x" 680 | sntp "1.x.x" 681 | 682 | hmac-drbg@^1.0.0: 683 | version "1.0.0" 684 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.0.tgz#3db471f45aae4a994a0688322171f51b8b91bee5" 685 | dependencies: 686 | hash.js "^1.0.3" 687 | minimalistic-assert "^1.0.0" 688 | minimalistic-crypto-utils "^1.0.1" 689 | 690 | hoek@2.x.x: 691 | version "2.16.3" 692 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 693 | 694 | hosted-git-info@^2.1.4: 695 | version "2.2.0" 696 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.2.0.tgz#7a0d097863d886c0fabbdcd37bf1758d8becf8a5" 697 | 698 | http-signature@~1.1.0: 699 | version "1.1.1" 700 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 701 | dependencies: 702 | assert-plus "^0.2.0" 703 | jsprim "^1.2.2" 704 | sshpk "^1.7.0" 705 | 706 | https-browserify@0.0.1: 707 | version "0.0.1" 708 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82" 709 | 710 | ieee754@^1.1.4: 711 | version "1.1.8" 712 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 713 | 714 | indexof@0.0.1: 715 | version "0.0.1" 716 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 717 | 718 | inflight@^1.0.4: 719 | version "1.0.6" 720 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 721 | dependencies: 722 | once "^1.3.0" 723 | wrappy "1" 724 | 725 | inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1, inherits@2: 726 | version "2.0.3" 727 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 728 | 729 | inherits@2.0.1: 730 | version "2.0.1" 731 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 732 | 733 | ini@~1.3.0: 734 | version "1.3.4" 735 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 736 | 737 | interpret@^1.0.0: 738 | version "1.0.1" 739 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.1.tgz#d579fb7f693b858004947af39fa0db49f795602c" 740 | 741 | invert-kv@^1.0.0: 742 | version "1.0.0" 743 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 744 | 745 | is-arrayish@^0.2.1: 746 | version "0.2.1" 747 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 748 | 749 | is-binary-path@^1.0.0: 750 | version "1.0.1" 751 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 752 | dependencies: 753 | binary-extensions "^1.0.0" 754 | 755 | is-buffer@^1.0.2: 756 | version "1.1.4" 757 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b" 758 | 759 | is-builtin-module@^1.0.0: 760 | version "1.0.0" 761 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 762 | dependencies: 763 | builtin-modules "^1.0.0" 764 | 765 | is-dotfile@^1.0.0: 766 | version "1.0.2" 767 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 768 | 769 | is-equal-shallow@^0.1.3: 770 | version "0.1.3" 771 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 772 | dependencies: 773 | is-primitive "^2.0.0" 774 | 775 | is-extendable@^0.1.1: 776 | version "0.1.1" 777 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 778 | 779 | is-extglob@^1.0.0: 780 | version "1.0.0" 781 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 782 | 783 | is-fullwidth-code-point@^1.0.0: 784 | version "1.0.0" 785 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 786 | dependencies: 787 | number-is-nan "^1.0.0" 788 | 789 | is-glob@^2.0.0, is-glob@^2.0.1: 790 | version "2.0.1" 791 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 792 | dependencies: 793 | is-extglob "^1.0.0" 794 | 795 | is-number@^2.0.2, is-number@^2.1.0: 796 | version "2.1.0" 797 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 798 | dependencies: 799 | kind-of "^3.0.2" 800 | 801 | is-posix-bracket@^0.1.0: 802 | version "0.1.1" 803 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 804 | 805 | is-primitive@^2.0.0: 806 | version "2.0.0" 807 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 808 | 809 | is-typedarray@~1.0.0: 810 | version "1.0.0" 811 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 812 | 813 | is-utf8@^0.2.0: 814 | version "0.2.1" 815 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 816 | 817 | isarray@^1.0.0, isarray@~1.0.0, isarray@1.0.0: 818 | version "1.0.0" 819 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 820 | 821 | isobject@^2.0.0: 822 | version "2.1.0" 823 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 824 | dependencies: 825 | isarray "1.0.0" 826 | 827 | isstream@~0.1.2: 828 | version "0.1.2" 829 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 830 | 831 | jasmine: 832 | version "2.5.3" 833 | resolved "https://registry.yarnpkg.com/jasmine/-/jasmine-2.5.3.tgz#5441f254e1fc2269deb1dfd93e0e57d565ff4d22" 834 | dependencies: 835 | exit "^0.1.2" 836 | glob "^7.0.6" 837 | jasmine-core "~2.5.2" 838 | 839 | jasmine-core@~2.5.2: 840 | version "2.5.2" 841 | resolved "https://registry.yarnpkg.com/jasmine-core/-/jasmine-core-2.5.2.tgz#6f61bd79061e27f43e6f9355e44b3c6cab6ff297" 842 | 843 | jodid25519@^1.0.0: 844 | version "1.0.2" 845 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 846 | dependencies: 847 | jsbn "~0.1.0" 848 | 849 | jsbn@~0.1.0: 850 | version "0.1.1" 851 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 852 | 853 | json-loader@^0.5.4: 854 | version "0.5.4" 855 | resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.4.tgz#8baa1365a632f58a3c46d20175fc6002c96e37de" 856 | 857 | json-schema@0.2.3: 858 | version "0.2.3" 859 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 860 | 861 | json-stable-stringify@^1.0.1: 862 | version "1.0.1" 863 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 864 | dependencies: 865 | jsonify "~0.0.0" 866 | 867 | json-stringify-safe@~5.0.1: 868 | version "5.0.1" 869 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 870 | 871 | json5@^0.5.0: 872 | version "0.5.1" 873 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 874 | 875 | jsonify@~0.0.0: 876 | version "0.0.0" 877 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 878 | 879 | jsprim@^1.2.2: 880 | version "1.3.1" 881 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.3.1.tgz#2a7256f70412a29ee3670aaca625994c4dcff252" 882 | dependencies: 883 | extsprintf "1.0.2" 884 | json-schema "0.2.3" 885 | verror "1.3.6" 886 | 887 | kind-of@^3.0.2: 888 | version "3.1.0" 889 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47" 890 | dependencies: 891 | is-buffer "^1.0.2" 892 | 893 | lazy-cache@^1.0.3: 894 | version "1.0.4" 895 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 896 | 897 | lcid@^1.0.0: 898 | version "1.0.0" 899 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 900 | dependencies: 901 | invert-kv "^1.0.0" 902 | 903 | load-json-file@^1.0.0: 904 | version "1.1.0" 905 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 906 | dependencies: 907 | graceful-fs "^4.1.2" 908 | parse-json "^2.2.0" 909 | pify "^2.0.0" 910 | pinkie-promise "^2.0.0" 911 | strip-bom "^2.0.0" 912 | 913 | loader-runner@^2.3.0: 914 | version "2.3.0" 915 | resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.3.0.tgz#f482aea82d543e07921700d5a46ef26fdac6b8a2" 916 | 917 | loader-utils@^0.2.16: 918 | version "0.2.17" 919 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.17.tgz#f86e6374d43205a6e6c60e9196f17c0299bfb348" 920 | dependencies: 921 | big.js "^3.1.3" 922 | emojis-list "^2.0.0" 923 | json5 "^0.5.0" 924 | object-assign "^4.0.1" 925 | 926 | lodash@^4.14.0: 927 | version "4.17.4" 928 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 929 | 930 | longest@^1.0.1: 931 | version "1.0.1" 932 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 933 | 934 | memory-fs, memory-fs@^0.4.0, memory-fs@~0.4.1: 935 | version "0.4.1" 936 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" 937 | dependencies: 938 | errno "^0.1.3" 939 | readable-stream "^2.0.1" 940 | 941 | micromatch@^2.1.5: 942 | version "2.3.11" 943 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 944 | dependencies: 945 | arr-diff "^2.0.0" 946 | array-unique "^0.2.1" 947 | braces "^1.8.2" 948 | expand-brackets "^0.1.4" 949 | extglob "^0.3.1" 950 | filename-regex "^2.0.0" 951 | is-extglob "^1.0.0" 952 | is-glob "^2.0.1" 953 | kind-of "^3.0.2" 954 | normalize-path "^2.0.1" 955 | object.omit "^2.0.0" 956 | parse-glob "^3.0.4" 957 | regex-cache "^0.4.2" 958 | 959 | miller-rabin@^4.0.0: 960 | version "4.0.0" 961 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.0.tgz#4a62fb1d42933c05583982f4c716f6fb9e6c6d3d" 962 | dependencies: 963 | bn.js "^4.0.0" 964 | brorand "^1.0.1" 965 | 966 | mime-db@~1.26.0: 967 | version "1.26.0" 968 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.26.0.tgz#eaffcd0e4fc6935cf8134da246e2e6c35305adff" 969 | 970 | mime-types@^2.1.12, mime-types@~2.1.7: 971 | version "2.1.14" 972 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.14.tgz#f7ef7d97583fcaf3b7d282b6f8b5679dab1e94ee" 973 | dependencies: 974 | mime-db "~1.26.0" 975 | 976 | minimalistic-assert@^1.0.0: 977 | version "1.0.0" 978 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" 979 | 980 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: 981 | version "1.0.1" 982 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 983 | 984 | minimatch@^3.0.0, minimatch@^3.0.2: 985 | version "3.0.3" 986 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 987 | dependencies: 988 | brace-expansion "^1.0.0" 989 | 990 | minimist@^1.2.0: 991 | version "1.2.0" 992 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 993 | 994 | minimist@0.0.8: 995 | version "0.0.8" 996 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 997 | 998 | "mkdirp@>=0.5 0", mkdirp@~0.5.0, mkdirp@~0.5.1: 999 | version "0.5.1" 1000 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1001 | dependencies: 1002 | minimist "0.0.8" 1003 | 1004 | ms@0.7.1: 1005 | version "0.7.1" 1006 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 1007 | 1008 | nan@^2.3.0: 1009 | version "2.5.1" 1010 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.5.1.tgz#d5b01691253326a97a2bbee9e61c55d8d60351e2" 1011 | 1012 | node-libs-browser@^2.0.0: 1013 | version "2.0.0" 1014 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.0.0.tgz#a3a59ec97024985b46e958379646f96c4b616646" 1015 | dependencies: 1016 | assert "^1.1.1" 1017 | browserify-zlib "^0.1.4" 1018 | buffer "^4.3.0" 1019 | console-browserify "^1.1.0" 1020 | constants-browserify "^1.0.0" 1021 | crypto-browserify "^3.11.0" 1022 | domain-browser "^1.1.1" 1023 | events "^1.0.0" 1024 | https-browserify "0.0.1" 1025 | os-browserify "^0.2.0" 1026 | path-browserify "0.0.0" 1027 | process "^0.11.0" 1028 | punycode "^1.2.4" 1029 | querystring-es3 "^0.2.0" 1030 | readable-stream "^2.0.5" 1031 | stream-browserify "^2.0.1" 1032 | stream-http "^2.3.1" 1033 | string_decoder "^0.10.25" 1034 | timers-browserify "^2.0.2" 1035 | tty-browserify "0.0.0" 1036 | url "^0.11.0" 1037 | util "^0.10.3" 1038 | vm-browserify "0.0.4" 1039 | 1040 | node-pre-gyp@^0.6.29: 1041 | version "0.6.33" 1042 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.33.tgz#640ac55198f6a925972e0c16c4ac26a034d5ecc9" 1043 | dependencies: 1044 | mkdirp "~0.5.1" 1045 | nopt "~3.0.6" 1046 | npmlog "^4.0.1" 1047 | rc "~1.1.6" 1048 | request "^2.79.0" 1049 | rimraf "~2.5.4" 1050 | semver "~5.3.0" 1051 | tar "~2.2.1" 1052 | tar-pack "~3.3.0" 1053 | 1054 | nopt@~3.0.6: 1055 | version "3.0.6" 1056 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 1057 | dependencies: 1058 | abbrev "1" 1059 | 1060 | normalize-package-data@^2.3.2: 1061 | version "2.3.5" 1062 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.5.tgz#8d924f142960e1777e7ffe170543631cc7cb02df" 1063 | dependencies: 1064 | hosted-git-info "^2.1.4" 1065 | is-builtin-module "^1.0.0" 1066 | semver "2 || 3 || 4 || 5" 1067 | validate-npm-package-license "^3.0.1" 1068 | 1069 | normalize-path@^2.0.1: 1070 | version "2.0.1" 1071 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a" 1072 | 1073 | npmlog@^4.0.1: 1074 | version "4.0.2" 1075 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.2.tgz#d03950e0e78ce1527ba26d2a7592e9348ac3e75f" 1076 | dependencies: 1077 | are-we-there-yet "~1.1.2" 1078 | console-control-strings "~1.1.0" 1079 | gauge "~2.7.1" 1080 | set-blocking "~2.0.0" 1081 | 1082 | number-is-nan@^1.0.0: 1083 | version "1.0.1" 1084 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1085 | 1086 | oauth-sign@~0.8.1: 1087 | version "0.8.2" 1088 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1089 | 1090 | object-assign@^4.0.1, object-assign@^4.1.0: 1091 | version "4.1.1" 1092 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1093 | 1094 | object.omit@^2.0.0: 1095 | version "2.0.1" 1096 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1097 | dependencies: 1098 | for-own "^0.1.4" 1099 | is-extendable "^0.1.1" 1100 | 1101 | once@^1.3.0: 1102 | version "1.4.0" 1103 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1104 | dependencies: 1105 | wrappy "1" 1106 | 1107 | once@~1.3.3: 1108 | version "1.3.3" 1109 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 1110 | dependencies: 1111 | wrappy "1" 1112 | 1113 | os-browserify@^0.2.0: 1114 | version "0.2.1" 1115 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.2.1.tgz#63fc4ccee5d2d7763d26bbf8601078e6c2e0044f" 1116 | 1117 | os-locale@^1.4.0: 1118 | version "1.4.0" 1119 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 1120 | dependencies: 1121 | lcid "^1.0.0" 1122 | 1123 | pako@~0.2.0: 1124 | version "0.2.9" 1125 | resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" 1126 | 1127 | parse-asn1@^5.0.0: 1128 | version "5.0.0" 1129 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.0.0.tgz#35060f6d5015d37628c770f4e091a0b5a278bc23" 1130 | dependencies: 1131 | asn1.js "^4.0.0" 1132 | browserify-aes "^1.0.0" 1133 | create-hash "^1.1.0" 1134 | evp_bytestokey "^1.0.0" 1135 | pbkdf2 "^3.0.3" 1136 | 1137 | parse-glob@^3.0.4: 1138 | version "3.0.4" 1139 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1140 | dependencies: 1141 | glob-base "^0.3.0" 1142 | is-dotfile "^1.0.0" 1143 | is-extglob "^1.0.0" 1144 | is-glob "^2.0.0" 1145 | 1146 | parse-json@^2.2.0: 1147 | version "2.2.0" 1148 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1149 | dependencies: 1150 | error-ex "^1.2.0" 1151 | 1152 | path-browserify@0.0.0: 1153 | version "0.0.0" 1154 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" 1155 | 1156 | path-exists@^2.0.0: 1157 | version "2.1.0" 1158 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1159 | dependencies: 1160 | pinkie-promise "^2.0.0" 1161 | 1162 | path-is-absolute@^1.0.0: 1163 | version "1.0.1" 1164 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1165 | 1166 | path-type@^1.0.0: 1167 | version "1.1.0" 1168 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 1169 | dependencies: 1170 | graceful-fs "^4.1.2" 1171 | pify "^2.0.0" 1172 | pinkie-promise "^2.0.0" 1173 | 1174 | pbkdf2@^3.0.3: 1175 | version "3.0.9" 1176 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.9.tgz#f2c4b25a600058b3c3773c086c37dbbee1ffe693" 1177 | dependencies: 1178 | create-hmac "^1.1.2" 1179 | 1180 | performance-now@^0.2.0: 1181 | version "0.2.0" 1182 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 1183 | 1184 | pify@^2.0.0: 1185 | version "2.3.0" 1186 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1187 | 1188 | pinkie-promise@^2.0.0: 1189 | version "2.0.1" 1190 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1191 | dependencies: 1192 | pinkie "^2.0.0" 1193 | 1194 | pinkie@^2.0.0: 1195 | version "2.0.4" 1196 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1197 | 1198 | preserve@^0.2.0: 1199 | version "0.2.0" 1200 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1201 | 1202 | process-nextick-args@~1.0.6: 1203 | version "1.0.7" 1204 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1205 | 1206 | process@^0.11.0: 1207 | version "0.11.9" 1208 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.9.tgz#7bd5ad21aa6253e7da8682264f1e11d11c0318c1" 1209 | 1210 | prr@~0.0.0: 1211 | version "0.0.0" 1212 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 1213 | 1214 | public-encrypt@^4.0.0: 1215 | version "4.0.0" 1216 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" 1217 | dependencies: 1218 | bn.js "^4.1.0" 1219 | browserify-rsa "^4.0.0" 1220 | create-hash "^1.1.0" 1221 | parse-asn1 "^5.0.0" 1222 | randombytes "^2.0.1" 1223 | 1224 | punycode@^1.2.4, punycode@^1.4.1: 1225 | version "1.4.1" 1226 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1227 | 1228 | punycode@1.3.2: 1229 | version "1.3.2" 1230 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 1231 | 1232 | qs@~6.3.0: 1233 | version "6.3.2" 1234 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.2.tgz#e75bd5f6e268122a2a0e0bda630b2550c166502c" 1235 | 1236 | querystring-es3@^0.2.0: 1237 | version "0.2.1" 1238 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 1239 | 1240 | querystring@0.2.0: 1241 | version "0.2.0" 1242 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 1243 | 1244 | randomatic@^1.1.3: 1245 | version "1.1.6" 1246 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 1247 | dependencies: 1248 | is-number "^2.0.2" 1249 | kind-of "^3.0.2" 1250 | 1251 | randombytes@^2.0.0, randombytes@^2.0.1: 1252 | version "2.0.3" 1253 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.3.tgz#674c99760901c3c4112771a31e521dc349cc09ec" 1254 | 1255 | rc@~1.1.6: 1256 | version "1.1.7" 1257 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.1.7.tgz#c5ea564bb07aff9fd3a5b32e906c1d3a65940fea" 1258 | dependencies: 1259 | deep-extend "~0.4.0" 1260 | ini "~1.3.0" 1261 | minimist "^1.2.0" 1262 | strip-json-comments "~2.0.1" 1263 | 1264 | read-pkg-up@^1.0.1: 1265 | version "1.0.1" 1266 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 1267 | dependencies: 1268 | find-up "^1.0.0" 1269 | read-pkg "^1.0.0" 1270 | 1271 | read-pkg@^1.0.0: 1272 | version "1.1.0" 1273 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 1274 | dependencies: 1275 | load-json-file "^1.0.0" 1276 | normalize-package-data "^2.3.2" 1277 | path-type "^1.0.0" 1278 | 1279 | "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.1.0: 1280 | version "2.2.3" 1281 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.3.tgz#9cf49463985df016c8ae8813097a9293a9b33729" 1282 | dependencies: 1283 | buffer-shims "^1.0.0" 1284 | core-util-is "~1.0.0" 1285 | inherits "~2.0.1" 1286 | isarray "~1.0.0" 1287 | process-nextick-args "~1.0.6" 1288 | string_decoder "~0.10.x" 1289 | util-deprecate "~1.0.1" 1290 | 1291 | readable-stream@~2.1.4: 1292 | version "2.1.5" 1293 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0" 1294 | dependencies: 1295 | buffer-shims "^1.0.0" 1296 | core-util-is "~1.0.0" 1297 | inherits "~2.0.1" 1298 | isarray "~1.0.0" 1299 | process-nextick-args "~1.0.6" 1300 | string_decoder "~0.10.x" 1301 | util-deprecate "~1.0.1" 1302 | 1303 | readdirp@^2.0.0: 1304 | version "2.1.0" 1305 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 1306 | dependencies: 1307 | graceful-fs "^4.1.2" 1308 | minimatch "^3.0.2" 1309 | readable-stream "^2.0.2" 1310 | set-immediate-shim "^1.0.1" 1311 | 1312 | regex-cache@^0.4.2: 1313 | version "0.4.3" 1314 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 1315 | dependencies: 1316 | is-equal-shallow "^0.1.3" 1317 | is-primitive "^2.0.0" 1318 | 1319 | repeat-element@^1.1.2: 1320 | version "1.1.2" 1321 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1322 | 1323 | repeat-string@^1.5.2: 1324 | version "1.6.1" 1325 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1326 | 1327 | request@^2.79.0: 1328 | version "2.80.0" 1329 | resolved "https://registry.yarnpkg.com/request/-/request-2.80.0.tgz#8cc162d76d79381cdefdd3505d76b80b60589bd0" 1330 | dependencies: 1331 | aws-sign2 "~0.6.0" 1332 | aws4 "^1.2.1" 1333 | caseless "~0.12.0" 1334 | combined-stream "~1.0.5" 1335 | extend "~3.0.0" 1336 | forever-agent "~0.6.1" 1337 | form-data "~2.1.1" 1338 | har-validator "~4.2.0" 1339 | hawk "~3.1.3" 1340 | http-signature "~1.1.0" 1341 | is-typedarray "~1.0.0" 1342 | isstream "~0.1.2" 1343 | json-stringify-safe "~5.0.1" 1344 | mime-types "~2.1.7" 1345 | oauth-sign "~0.8.1" 1346 | performance-now "^0.2.0" 1347 | qs "~6.3.0" 1348 | stringstream "~0.0.4" 1349 | tough-cookie "~2.3.0" 1350 | tunnel-agent "~0.4.1" 1351 | uuid "^3.0.0" 1352 | 1353 | require-directory@^2.1.1: 1354 | version "2.1.1" 1355 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 1356 | 1357 | require-main-filename@^1.0.1: 1358 | version "1.0.1" 1359 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 1360 | 1361 | right-align@^0.1.1: 1362 | version "0.1.3" 1363 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 1364 | dependencies: 1365 | align-text "^0.1.1" 1366 | 1367 | rimraf@~2.5.1, rimraf@~2.5.4: 1368 | version "2.5.4" 1369 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" 1370 | dependencies: 1371 | glob "^7.0.5" 1372 | 1373 | rimraf@2: 1374 | version "2.6.1" 1375 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 1376 | dependencies: 1377 | glob "^7.0.5" 1378 | 1379 | ripemd160@^1.0.0: 1380 | version "1.0.1" 1381 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-1.0.1.tgz#93a4bbd4942bc574b69a8fa57c71de10ecca7d6e" 1382 | 1383 | semver@~5.3.0, "semver@2 || 3 || 4 || 5": 1384 | version "5.3.0" 1385 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 1386 | 1387 | set-blocking@^2.0.0, set-blocking@~2.0.0: 1388 | version "2.0.0" 1389 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1390 | 1391 | set-immediate-shim@^1.0.1: 1392 | version "1.0.1" 1393 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 1394 | 1395 | setimmediate@^1.0.4: 1396 | version "1.0.5" 1397 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 1398 | 1399 | sha.js@^2.3.6: 1400 | version "2.4.8" 1401 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.8.tgz#37068c2c476b6baf402d14a49c67f597921f634f" 1402 | dependencies: 1403 | inherits "^2.0.1" 1404 | 1405 | signal-exit@^3.0.0: 1406 | version "3.0.2" 1407 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 1408 | 1409 | sntp@1.x.x: 1410 | version "1.0.9" 1411 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 1412 | dependencies: 1413 | hoek "2.x.x" 1414 | 1415 | source-list-map@~0.1.7: 1416 | version "0.1.8" 1417 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-0.1.8.tgz#c550b2ab5427f6b3f21f5afead88c4f5587b2106" 1418 | 1419 | source-map@^0.5.3, source-map@~0.5.1, source-map@~0.5.3: 1420 | version "0.5.6" 1421 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 1422 | 1423 | spdx-correct@~1.0.0: 1424 | version "1.0.2" 1425 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 1426 | dependencies: 1427 | spdx-license-ids "^1.0.2" 1428 | 1429 | spdx-expression-parse@~1.0.0: 1430 | version "1.0.4" 1431 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 1432 | 1433 | spdx-license-ids@^1.0.2: 1434 | version "1.2.2" 1435 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 1436 | 1437 | sshpk@^1.7.0: 1438 | version "1.11.0" 1439 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.11.0.tgz#2d8d5ebb4a6fab28ffba37fa62a90f4a3ea59d77" 1440 | dependencies: 1441 | asn1 "~0.2.3" 1442 | assert-plus "^1.0.0" 1443 | dashdash "^1.12.0" 1444 | getpass "^0.1.1" 1445 | optionalDependencies: 1446 | bcrypt-pbkdf "^1.0.0" 1447 | ecc-jsbn "~0.1.1" 1448 | jodid25519 "^1.0.0" 1449 | jsbn "~0.1.0" 1450 | tweetnacl "~0.14.0" 1451 | 1452 | stream-browserify@^2.0.1: 1453 | version "2.0.1" 1454 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" 1455 | dependencies: 1456 | inherits "~2.0.1" 1457 | readable-stream "^2.0.2" 1458 | 1459 | stream-http@^2.3.1: 1460 | version "2.6.3" 1461 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.6.3.tgz#4c3ddbf9635968ea2cfd4e48d43de5def2625ac3" 1462 | dependencies: 1463 | builtin-status-codes "^3.0.0" 1464 | inherits "^2.0.1" 1465 | readable-stream "^2.1.0" 1466 | to-arraybuffer "^1.0.0" 1467 | xtend "^4.0.0" 1468 | 1469 | string_decoder@^0.10.25, string_decoder@~0.10.x: 1470 | version "0.10.31" 1471 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 1472 | 1473 | string-width@^1.0.1, string-width@^1.0.2: 1474 | version "1.0.2" 1475 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1476 | dependencies: 1477 | code-point-at "^1.0.0" 1478 | is-fullwidth-code-point "^1.0.0" 1479 | strip-ansi "^3.0.0" 1480 | 1481 | stringstream@~0.0.4: 1482 | version "0.0.5" 1483 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 1484 | 1485 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 1486 | version "3.0.1" 1487 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1488 | dependencies: 1489 | ansi-regex "^2.0.0" 1490 | 1491 | strip-bom@^2.0.0: 1492 | version "2.0.0" 1493 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 1494 | dependencies: 1495 | is-utf8 "^0.2.0" 1496 | 1497 | strip-json-comments@~2.0.1: 1498 | version "2.0.1" 1499 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 1500 | 1501 | supports-color@^3.1.0: 1502 | version "3.2.3" 1503 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 1504 | dependencies: 1505 | has-flag "^1.0.0" 1506 | 1507 | tapable@^0.2.5, tapable@~0.2.5: 1508 | version "0.2.6" 1509 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.6.tgz#206be8e188860b514425375e6f1ae89bfb01fd8d" 1510 | 1511 | tar-pack@~3.3.0: 1512 | version "3.3.0" 1513 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.3.0.tgz#30931816418f55afc4d21775afdd6720cee45dae" 1514 | dependencies: 1515 | debug "~2.2.0" 1516 | fstream "~1.0.10" 1517 | fstream-ignore "~1.0.5" 1518 | once "~1.3.3" 1519 | readable-stream "~2.1.4" 1520 | rimraf "~2.5.1" 1521 | tar "~2.2.1" 1522 | uid-number "~0.0.6" 1523 | 1524 | tar@~2.2.1: 1525 | version "2.2.1" 1526 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 1527 | dependencies: 1528 | block-stream "*" 1529 | fstream "^1.0.2" 1530 | inherits "2" 1531 | 1532 | timers-browserify@^2.0.2: 1533 | version "2.0.2" 1534 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.2.tgz#ab4883cf597dcd50af211349a00fbca56ac86b86" 1535 | dependencies: 1536 | setimmediate "^1.0.4" 1537 | 1538 | to-arraybuffer@^1.0.0: 1539 | version "1.0.1" 1540 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" 1541 | 1542 | tough-cookie@~2.3.0: 1543 | version "2.3.2" 1544 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 1545 | dependencies: 1546 | punycode "^1.4.1" 1547 | 1548 | tty-browserify@0.0.0: 1549 | version "0.0.0" 1550 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 1551 | 1552 | tunnel-agent@~0.4.1: 1553 | version "0.4.3" 1554 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 1555 | 1556 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 1557 | version "0.14.5" 1558 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 1559 | 1560 | uglify-js@^2.7.5: 1561 | version "2.8.8" 1562 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.8.tgz#1a5cd145eb528b606fa2b86e578885272b597cd7" 1563 | dependencies: 1564 | source-map "~0.5.1" 1565 | uglify-to-browserify "~1.0.0" 1566 | yargs "~3.10.0" 1567 | 1568 | uglify-to-browserify@~1.0.0: 1569 | version "1.0.2" 1570 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 1571 | 1572 | uid-number@~0.0.6: 1573 | version "0.0.6" 1574 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 1575 | 1576 | url@^0.11.0: 1577 | version "0.11.0" 1578 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 1579 | dependencies: 1580 | punycode "1.3.2" 1581 | querystring "0.2.0" 1582 | 1583 | util-deprecate@~1.0.1: 1584 | version "1.0.2" 1585 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1586 | 1587 | util@^0.10.3, util@0.10.3: 1588 | version "0.10.3" 1589 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 1590 | dependencies: 1591 | inherits "2.0.1" 1592 | 1593 | uuid@^3.0.0: 1594 | version "3.0.1" 1595 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 1596 | 1597 | validate-npm-package-license@^3.0.1: 1598 | version "3.0.1" 1599 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 1600 | dependencies: 1601 | spdx-correct "~1.0.0" 1602 | spdx-expression-parse "~1.0.0" 1603 | 1604 | verror@1.3.6: 1605 | version "1.3.6" 1606 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 1607 | dependencies: 1608 | extsprintf "1.0.2" 1609 | 1610 | vm-browserify@0.0.4: 1611 | version "0.0.4" 1612 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" 1613 | dependencies: 1614 | indexof "0.0.1" 1615 | 1616 | watchpack@^1.2.0: 1617 | version "1.3.1" 1618 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.3.1.tgz#7d8693907b28ce6013e7f3610aa2a1acf07dad87" 1619 | dependencies: 1620 | async "^2.1.2" 1621 | chokidar "^1.4.3" 1622 | graceful-fs "^4.1.2" 1623 | 1624 | webpack: 1625 | version "2.2.1" 1626 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-2.2.1.tgz#7bb1d72ae2087dd1a4af526afec15eed17dda475" 1627 | dependencies: 1628 | acorn "^4.0.4" 1629 | acorn-dynamic-import "^2.0.0" 1630 | ajv "^4.7.0" 1631 | ajv-keywords "^1.1.1" 1632 | async "^2.1.2" 1633 | enhanced-resolve "^3.0.0" 1634 | interpret "^1.0.0" 1635 | json-loader "^0.5.4" 1636 | loader-runner "^2.3.0" 1637 | loader-utils "^0.2.16" 1638 | memory-fs "~0.4.1" 1639 | mkdirp "~0.5.0" 1640 | node-libs-browser "^2.0.0" 1641 | source-map "^0.5.3" 1642 | supports-color "^3.1.0" 1643 | tapable "~0.2.5" 1644 | uglify-js "^2.7.5" 1645 | watchpack "^1.2.0" 1646 | webpack-sources "^0.1.4" 1647 | yargs "^6.0.0" 1648 | 1649 | webpack-sources@^0.1.4: 1650 | version "0.1.5" 1651 | resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-0.1.5.tgz#aa1f3abf0f0d74db7111c40e500b84f966640750" 1652 | dependencies: 1653 | source-list-map "~0.1.7" 1654 | source-map "~0.5.3" 1655 | 1656 | which-module@^1.0.0: 1657 | version "1.0.0" 1658 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 1659 | 1660 | wide-align@^1.1.0: 1661 | version "1.1.0" 1662 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 1663 | dependencies: 1664 | string-width "^1.0.1" 1665 | 1666 | window-size@0.1.0: 1667 | version "0.1.0" 1668 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 1669 | 1670 | wordwrap@0.0.2: 1671 | version "0.0.2" 1672 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 1673 | 1674 | wrap-ansi@^2.0.0: 1675 | version "2.1.0" 1676 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 1677 | dependencies: 1678 | string-width "^1.0.1" 1679 | strip-ansi "^3.0.1" 1680 | 1681 | wrappy@1: 1682 | version "1.0.2" 1683 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1684 | 1685 | xtend@^4.0.0: 1686 | version "4.0.1" 1687 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 1688 | 1689 | y18n@^3.2.1: 1690 | version "3.2.1" 1691 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 1692 | 1693 | yargs-parser@^4.2.0: 1694 | version "4.2.1" 1695 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" 1696 | dependencies: 1697 | camelcase "^3.0.0" 1698 | 1699 | yargs@^6.0.0: 1700 | version "6.6.0" 1701 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" 1702 | dependencies: 1703 | camelcase "^3.0.0" 1704 | cliui "^3.2.0" 1705 | decamelize "^1.1.1" 1706 | get-caller-file "^1.0.1" 1707 | os-locale "^1.4.0" 1708 | read-pkg-up "^1.0.1" 1709 | require-directory "^2.1.1" 1710 | require-main-filename "^1.0.1" 1711 | set-blocking "^2.0.0" 1712 | string-width "^1.0.2" 1713 | which-module "^1.0.0" 1714 | y18n "^3.2.1" 1715 | yargs-parser "^4.2.0" 1716 | 1717 | yargs@~3.10.0: 1718 | version "3.10.0" 1719 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 1720 | dependencies: 1721 | camelcase "^1.0.2" 1722 | cliui "^2.1.0" 1723 | decamelize "^1.0.0" 1724 | window-size "0.1.0" 1725 | 1726 | --------------------------------------------------------------------------------