├── .editorconfig ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── abcompiler-logo.png ├── package.json ├── resources └── AssetBundleCompiler.cs ├── src ├── assets_bundler.ts ├── build_context.ts ├── build_targets.ts ├── index.ts ├── stream_maker.ts ├── unity_invoker.ts └── unity_project.ts ├── test ├── assets_bundler.test.ts ├── index.test.ts └── stream_maker.test.ts ├── tsconfig.json ├── tslint.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | end_of_line = lf 5 | insert_final_newline = true 6 | 7 | [*.{js,ts}] 8 | indent_style = space 9 | indent_size = 4 10 | 11 | [*.json] 12 | indent_style = space 13 | indent_size = 2 14 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .idea 2 | src/* 3 | .editorconfig 4 | .gitignore 5 | .npmignore 6 | .travis.yml 7 | abcompiler-logo.png 8 | tsconfig.json 9 | tslint.json 10 | webpack.config.js 11 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | cache: 4 | directories: 5 | - node_modules 6 | 7 | notifications: 8 | email: false 9 | 10 | node_js: 11 | - '6' 12 | - '8' 13 | 14 | before_script: 15 | - yarn build 16 | 17 | after_success: 18 | - yarn travis-deploy-once "yarn semantic-release" 19 | 20 | branches: 21 | except: 22 | - /^v\d+\.\d+\.\d+$/ 23 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Morgan Touverey-Quilling 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | AssetBundleCompiler logo 2 | 3 | # [AssetBundle](https://docs.unity3d.com/Manual/AssetBundlesIntro.html)Compiler 4 | 5 | [![npm version](https://img.shields.io/npm/v/@mitm/assetbundlecompiler.svg?style=flat-square)](https://www.npmjs.com/package/@mitm/assetbundlecompiler) ![license](https://img.shields.io/github/license/mitmadness/AssetBundleCompiler.svg?style=flat-square) [![Travis Build](https://img.shields.io/travis/mitmadness/AssetBundleCompiler.svg?style=flat-square)](https://travis-ci.org/mitmadness/AssetBundleCompiler) ![npm total downloads](https://img.shields.io/npm/dt/@mitm/assetbundlecompiler.svg?style=flat-square) 6 | 7 | Node.js wrapper around Unity3D's BuildPipeline to create AssetBundles programmatically from any files, in order to simplify and automatize your workflow. 8 | 9 | From the [documentation](https://docs.unity3d.com/Manual/AssetBundlesIntro.html): 10 | 11 | > AssetBundles are files which you can export from Unity to contain Assets of your choice, [that] can be loaded on demand by your application. This allows you to stream content, such as models, Textures, audio clips, or even entire Scenes [...]. 12 | 13 | *:point_right: See also: [@mitm/chuck](https://github.com/mitmadness/chuck), a fully-featured webservice that builds asset bundles.* 14 | 15 | ---------------- 16 | 17 | Build automation with Unity's CLI and generating asset bundles gives headaches. If you are integrating asset bundle generation in a Node.js server or want a simple tool to do it, AssetBundleCompiler may satisfy you: 18 | 19 | ```typescript 20 | await bundle(...assets).targeting(WebGL).to('/path/to/asset.bundle'); 21 | ``` 22 | 23 | - [Installation & Usage](#package-installation--usage) 24 | - [Simple, fluent API](#link-simple-fluent-api) 25 | - Notes: 26 | [Error handling](#error-handling), [Changing Unity's executable path](#changing-unitys-executable-path), [Unity activation](#unity-activation), [Future scope](https://github.com/mitmadness/AssetBundleCompiler/projects/1) 27 | 28 | ---------------- 29 | 30 | ## :package: Installation & Usage 31 | 32 | **Requirements:** 33 | 34 | - Node.js, version 7 preferred 35 | - :warning: **An _activated_ installation of Unity on the machine** :warning: 36 | - If Unity is not installed in the standard path, read [Changing Unity's executable path](#changing-unitys-executable-path) 37 | - You must activate Unity if not already done, even with a free plan, read [Unity activation](#unity-activation) 38 | 39 | Install it via the npm registry: 40 | 41 | ``` 42 | yarn add @mitm/assetbundlecompiler 43 | ``` 44 | 45 | ## :link: Simple, fluent API 46 | 47 | ```typescript 48 | import { BuildTargets, bundle } from '@mitm/assetbundlecompiler'; 49 | 50 | const { WebGL } = BuildTargets; 51 | 52 | // bundle() is the entry function to the API. 53 | // Pass a list of assets to bundle into the resulting asset bundle. 54 | // Those assets could be anywhere on the filesystem. 55 | // To pass an array of paths, use bundle(...paths) syntax. 56 | await bundle('/abs/path/to/fbx', '/abs/path/to/texture', /* ... */) 57 | // .targeting() is mandatory and tells the library what platform your asset bundle targets. 58 | // You can either pass a predefined constant in BuildTargets, or a string, 59 | // matching the name of a member of the UnityEditor.BuildTarget enum. 60 | // @see https://docs.unity3d.com/ScriptReference/BuildTarget.html 61 | .targeting(WebGL) 62 | 63 | // Lets you install custom Editor scripts before asset bundle generation. 64 | // This is very useful, for example, to create an Asset Postprocessor to customize how 65 | // your resources are imported into the asset bundle, using AssetImporters for example. 66 | // @see https://docs.unity3d.com/ScriptReference/AssetPostprocessor.html 67 | .includingEditorScripts('/abs/path/to/script.dll', '/abs/path/to/script.cs') 68 | 69 | // Lets you define build options. Those are always flags, and the key names represent 70 | // member names of the UnityEditor.BuildAssetBundleOptions enum. 71 | // @see https://docs.unity3d.com/ScriptReference/BuildAssetBundleOptions.html 72 | .withBuildOptions({ chunkBasedCompression: true, strictMode: true, /* etc */ }) 73 | 74 | // This lets you define a simple logger to get simple text updates about the conversion. 75 | .withLogger(message => console.log(message)) 76 | 77 | // This lets you define a logger for the real-time output of Unity (stdout+stderr). 78 | // Beware, it's very verbose :) 79 | .withUnityLogger(message => console.log(`Unity: ${message}`)) 80 | 81 | // This is the "run" function and marks the termination of the fluent calls 82 | // by returning a Promise that resolves when the asset bundle generation ends. 83 | // Give it a path to the asset bundle name or a fs.WriteStream. 84 | .to('/abs/path/to/resources.assetbundle'); 85 | ``` 86 | 87 | You can also retrieve the manifest Unity generates during the build - the manifest contains informations about the asset bundle: 88 | 89 | ```typescript 90 | // The promise gets resolved with the manifest as a plain JS object 91 | const manifest = await bundle('...').to('...'); 92 | 93 | /* manifest = { 94 | CRC: 2924050344, 95 | Assets: ['Assets/CopiedAssets/MyAsset.jpg'], 96 | ...etc... 97 | } */ 98 | ``` 99 | 100 | You can also dump the original manifest file (a YAML file) alongside the assetbundle: 101 | 102 | ```typescript 103 | const manifest = await bundle('...') 104 | // manifestFile can take a path or a fs.WriteStream too 105 | .to('/path/to/resources.assetbundle', { manifestFile: '/path/to/resources.assetbundle.manifest' }); 106 | ``` 107 | 108 | ## :bulb: Notes 109 | 110 | ### Error handling 111 | 112 | > What could possibly go wrong? 113 | 114 | _AssetBundleCompiler_ will catch abnormal Unity process termination and throw an error in that case (and performs a rapid cleanup). 115 | The error is an instance of `UnityCrashError` (exported on the main module) and its prototype looks like: 116 | 117 | ```typescript 118 | class UnityCrashError extends Error { 119 | public readonly message: string; // Exception message 120 | public readonly unityLog: string; // Unity Editor log (contains crash information) 121 | } 122 | ``` 123 | 124 | The logs will also be dumped to you system temporary folder (ie. /tmp) in a file named `unity_crash.abcompiler.log` (the complete path will be reported in the error's message). 125 | 126 | Please note that SIGINT and SIGTERM signals are also catched and the same cleanup is performed. 127 | 128 | ### Changing Unity's executable path 129 | 130 | By default, _AssetBundleCompiler_ will try to find Unity's executable on the expected locations. The library will look at the following paths: 131 | 132 | - `/opt/Unity/Editor/Unity` – Debian / Ubuntu [with the official .deb package](https://forum.unity3d.com/threads/unity-on-linux-release-notes-and-known-issues.350256/) 133 | - `/Applications/Unity/Unity.app/Contents/MacOS/Unity` – MacOS 134 | - `C:\Program Files (x86)\Unity\Editor\Unity.exe` – Windows, Unity x86 135 | - `C:\Program Files\Unity\Editor\Unity.exe` – Windows, Unity x64 136 | 137 | If you have a custom installation of Unity on a "non-standard" path (ie. you have multiple versions installed), you can tell _AssetBundleCompiler_ where to look: 138 | 139 | ```typescript 140 | import { setUnityPath } from '@mitm/assetbundlecompiler'; 141 | 142 | // given that you define the environment variable UNITY_EDITOR_PATH, to avoid hardcoded path: 143 | setUnityPath(process.env.UNITY_EDITOR_PATH); 144 | ``` 145 | 146 | ### Unity activation 147 | 148 | Unity is a proprietary software that requires to be activated with a valid account, even if that's not necessary for building asset bundles. This library does not handle activation, meaning that you _must_ already have an activated version of Unity on the machine. 149 | 150 | **Building asset bundles, does not requires a paid account.** You can log in with your free _Personal_ license. 151 | 152 | Activation via Unity's CLI is possible too (for automating installation for example) but is somewhat broken from times to times, and **does not works with personal licenses**. So, given you have a paid accound, you can do: 153 | 154 | ``` 155 | ~$ /path/to/Unity -quit -batchmode -serial SB-XXXX-XXXX-XXXX-XXXX-XXXX -username 'JoeBloggs@example.com' -password 'MyPassw0rd' 156 | ``` 157 | -------------------------------------------------------------------------------- /abcompiler-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitmadness/AssetBundleCompiler/40cee7abcb54ec0e81f9ce1489fdbcdeb50bb1a3/abcompiler-logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@mitm/assetbundlecompiler", 3 | "version": "0.0.0-semantic-release", 4 | "description": "Node.js wrapper around Unity3D's BuildPipeline to create AssetBundles from any files", 5 | "repository": "git@github.com:mitmadness/AssetBundleCompiler.git", 6 | "author": "Morgan Touverey Quilling ", 7 | "license": "MIT", 8 | "main": "dist/src/index.js", 9 | "types": "dist/src/index.d.ts", 10 | "scripts": { 11 | "build": "yarn lint && tsc", 12 | "watch": "tsc -w", 13 | "semantic-release": "semantic-release", 14 | "test": "mocha \"dist/test/**/*.js\"", 15 | "lint": "tslint -t verbose \"src/**/*.ts\" \"test/**/*.ts\"", 16 | "travis-deploy-once": "travis-deploy-once" 17 | }, 18 | "devDependencies": { 19 | "@types/chai": "^4.1.0", 20 | "@types/fs-extra": "^5.0.0", 21 | "@types/js-yaml": "^3.10.1", 22 | "@types/mocha": "^2.2.40", 23 | "@types/node": "^9.3.0", 24 | "chai": "^4.1.2", 25 | "mocha": "^4.1.0", 26 | "semantic-release": "^11.0.2", 27 | "tslint": "^5.2.0", 28 | "typescript": "~2.6.2", 29 | "travis-deploy-once": "^4.3.1" 30 | }, 31 | "dependencies": { 32 | "@mitm/unityinvoker": "^1.0.0", 33 | "fs-extra": "^5.0.0", 34 | "js-yaml": "^3.10.0" 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /resources/AssetBundleCompiler.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.IO; 4 | using System.Linq; 5 | using UnityEditor; 6 | 7 | // ReSharper disable once UnusedMember.Global, CheckNamespace 8 | public static class AssetBundleCompiler 9 | { 10 | public static void Convert() 11 | { 12 | //=> Retrieve CLI arguments 13 | var args = GetCommandLineArgs(); 14 | 15 | var assetNames = args["cAssetNames"]; 16 | var assetBundleDirectory = args["cAssetBundleDirectory"][0]; 17 | var assetBundleName = args["cAssetBundleName"][0]; 18 | var assetBundleBuildOptions = args["cAssetBundleBuildOptions"]; 19 | var assetBundleTargetName = args["cAssetBundleTarget"][0]; 20 | 21 | //=> Parametrize our build 22 | var ds = Path.DirectorySeparatorChar; 23 | 24 | var build = new AssetBundleBuild { 25 | assetBundleName = assetBundleName, 26 | assetNames = assetNames.Select(assetName => "Assets" + ds + "CopiedAssets" + ds + assetName).ToArray() 27 | }; 28 | 29 | var builds = new[] { build }; 30 | 31 | //=> Convert build options strings to a BuildAssetBundleOptions mask 32 | var buildOptions = GetBuildOptionsMaskFromStrings(assetBundleBuildOptions); 33 | 34 | //=> Convert build target name to Unity's BuildTarget enum 35 | var buildTarget = StringToEnum(assetBundleTargetName); 36 | 37 | //=> Start asset bundling 38 | BuildPipeline.BuildAssetBundles(assetBundleDirectory, builds, buildOptions, buildTarget); 39 | } 40 | 41 | private static BuildAssetBundleOptions GetBuildOptionsMaskFromStrings(IEnumerable options) 42 | { 43 | return options.Aggregate( 44 | BuildAssetBundleOptions.None, 45 | (current, option) => current | StringToEnum(option) 46 | ); 47 | } 48 | 49 | private static T StringToEnum(string enumMemberName) 50 | { 51 | try { 52 | return (T)Enum.Parse(typeof(T), enumMemberName, true); 53 | } catch (ArgumentException ex) { 54 | throw new Exception("Invalid member name " + enumMemberName + " for enum " + typeof(T).Name, ex); 55 | } 56 | } 57 | 58 | private static Dictionary> GetCommandLineArgs() 59 | { 60 | var args = Environment.GetCommandLineArgs(); 61 | var argsDict = new Dictionary>(); 62 | 63 | for (var i = 0; i < args.Length; i++) { 64 | if (!args[i].StartsWith("-")) continue; 65 | 66 | var argName = args[i].Substring(1); 67 | var argValues = new List(); 68 | 69 | argsDict[argName] = argValues; 70 | 71 | while (i + 1 < args.Length && !args[i + 1].StartsWith("-")) { 72 | argValues.Add(args[++i]); 73 | } 74 | } 75 | 76 | return argsDict; 77 | } 78 | } 79 | -------------------------------------------------------------------------------- /src/assets_bundler.ts: -------------------------------------------------------------------------------- 1 | import { logger } from '@mitm/unityinvoker'; 2 | import * as fs from 'fs-extra'; 3 | import * as path from 'path'; 4 | import { BuildContext } from './build_context'; 5 | import * as streamMaker from './stream_maker'; 6 | import * as unityproj from './unity_project'; 7 | 8 | enum BundlerState { Configuring, Bundling, Dead } 9 | 10 | export interface IBuildOptionsMap { 11 | /** Allows custom build options (ie. Unity adds enum members and the lib is not in sync) */ 12 | [enumMemberName: string]: boolean | undefined; 13 | /** Build assetBundle without any special option. */ 14 | none?: boolean; 15 | /** Don't compress the data when creating the asset bundle. */ 16 | uncompressedAssetBundle?: boolean; 17 | /** Do not include type information within the AssetBundle. */ 18 | disableWriteTypeTree?: boolean; 19 | /** Builds an asset bundle using a hash for the id of the object stored in the asset bundle. */ 20 | deterministicAssetBundle?: boolean; 21 | /** Force rebuild the assetBundles. */ 22 | forceRebuildAssetBundle?: boolean; 23 | /** Ignore the type tree changes when doing the incremental build check. */ 24 | ignoreTypeTreeChanges?: boolean; 25 | /** Append the hash to the assetBundle name. */ 26 | appendHashToAssetBundleName?: boolean; 27 | /** Use chunk-based LZ4 compression when creating the AssetBundle. */ 28 | chunkBasedCompression?: boolean; 29 | /** Do not allow the build to succeed if any errors are reporting during it. */ 30 | strictMode?: boolean; 31 | /** Do a dry run build. */ 32 | dryRunBuild?: boolean; 33 | /** Disables Asset Bundle LoadAsset by file name. */ 34 | disableLoadAssetByFileName?: boolean; 35 | /** Disables Asset Bundle LoadAsset by file name with extension. */ 36 | disableLoadAssetByFileNameWithExtension?: boolean; 37 | } 38 | 39 | export interface IExportOptions { 40 | overwrite?: boolean; 41 | manifestFile?: streamMaker.WritableFileInput; 42 | } 43 | 44 | export class AssetsBundler { 45 | private logger: logger.SimpleLogger = logger.noopLogger; 46 | private unityLogger: logger.SimpleLogger = logger.noopLogger; 47 | private editorScriptsStreams: fs.ReadStream[] = []; 48 | private assetsStreams: fs.ReadStream[] = []; 49 | private buildOptions = new Set(); 50 | private buildTarget: unityproj.BuildTarget; 51 | private state = BundlerState.Configuring; 52 | 53 | public includingAssets(...assets: streamMaker.ReadableFileInput[]): this { 54 | this.checkBundlerIsntAlreadyConfigured(); 55 | 56 | assets.map(streamMaker.normalizeReadStream).forEach(stream => this.assetsStreams.push(stream)); 57 | 58 | return this; 59 | } 60 | 61 | public targeting(buildTarget: unityproj.BuildTarget): this { 62 | this.checkBundlerIsntAlreadyConfigured(); 63 | 64 | if (typeof buildTarget !== 'string') { 65 | throw new Error('buildTarget must be a string (member name of an UnityEngine.BuildTarget enum).'); 66 | } 67 | 68 | this.buildTarget = buildTarget; 69 | 70 | return this; 71 | } 72 | 73 | public withLogger(loggerFn: logger.SimpleLogger): this { 74 | this.checkBundlerIsntAlreadyConfigured(); 75 | this.checkLoggerType(loggerFn); 76 | 77 | this.logger = loggerFn; 78 | 79 | return this; 80 | } 81 | 82 | public withUnityLogger(unityLogger: logger.SimpleLogger): this { 83 | this.checkBundlerIsntAlreadyConfigured(); 84 | this.checkLoggerType(unityLogger); 85 | 86 | this.unityLogger = unityLogger; 87 | 88 | return this; 89 | } 90 | 91 | public withBuildOptions(buildOptions: IBuildOptionsMap): this { 92 | this.checkBundlerIsntAlreadyConfigured(); 93 | 94 | Object.keys(buildOptions) 95 | .filter(key => buildOptions[key]) 96 | .forEach(key => this.buildOptions.add(key)); 97 | 98 | return this; 99 | } 100 | 101 | public includingEditorScripts(...scripts: streamMaker.ReadableFileInput[]): this { 102 | this.checkBundlerIsntAlreadyConfigured(); 103 | 104 | scripts.map(streamMaker.normalizeReadStream).forEach(stream => this.editorScriptsStreams.push(stream)); 105 | 106 | return this; 107 | } 108 | 109 | public async to( 110 | file: streamMaker.WritableFileInput, 111 | options: IExportOptions = {}): Promise { 112 | 113 | if (!this.buildTarget) { 114 | throw new Error('You must set a build target by calling targeting() before calling to().'); 115 | } 116 | 117 | const defaultedOptions = { overwrite: true, ...options }; 118 | 119 | this.state = BundlerState.Bundling; 120 | 121 | //=> Normalize destinations to writable streams 122 | const fileStream = streamMaker.normalizeWriteStream(file); 123 | const fileName = path.basename(fileStream.path.toString()); 124 | 125 | const hasManifest = !!defaultedOptions.manifestFile; 126 | const manifestStream = hasManifest ? streamMaker.normalizeWriteStream(defaultedOptions.manifestFile!) : null; 127 | 128 | //=> Create the build context (contains infos about the paths used by the current build) 129 | const buildContext = new BuildContext(fileName); 130 | 131 | //=> Handle abrupt process terminations 132 | const signalCleanup = this.signalCleanup.bind(this, buildContext); 133 | process.on('SIGINT', signalCleanup); 134 | process.on('SIGTERM', signalCleanup); 135 | 136 | let manifest: unityproj.IAssetBundleManifest; 137 | 138 | try { 139 | //=> Create project and temporary "sub project" 140 | //--------------------------------------------- 141 | this.logger(`Preparing Unity project in ${buildContext.projectRootDir}`); 142 | 143 | await unityproj.cleanupProject(buildContext); 144 | await unityproj.warmupProject(buildContext); 145 | 146 | //=> Copy original assets and scripts into the project (Unity limitation) 147 | //----------------------------------------------------------------------- 148 | this.logger(`Copying assets to ${buildContext.assetsDir}`); 149 | 150 | await unityproj.copyAssetsInProject(buildContext, this.assetsStreams); 151 | 152 | this.logger(`Copying custom editor scripts to ${buildContext.editorScriptsDir}`); 153 | 154 | await unityproj.copyEditorScriptsInProject(buildContext, this.editorScriptsStreams); 155 | 156 | //=> Generate the asset bundle 157 | //---------------------------- 158 | this.logger(`Generating asset bundle in ${buildContext.assetBundleDir}`); 159 | 160 | manifest = await unityproj.generateAssetBundle( 161 | buildContext, 162 | this.assetsStreams, 163 | this.buildOptions, 164 | this.buildTarget, 165 | this.unityLogger, 166 | assetPath => this.logger(`Updating resource: ${assetPath}`) 167 | ); 168 | 169 | //=> Move the generated asset bundle to the final dest 170 | //---------------------------------------------------- 171 | this.logger(`Moving asset bundle to target destination`); 172 | 173 | await unityproj.moveGeneratedAssetBundle( 174 | buildContext, 175 | fileStream, manifestStream, 176 | defaultedOptions.overwrite 177 | ); 178 | } finally { 179 | //=> Success or error doesn't matter, we have to cleanup! 180 | //------------------------------------------------------- 181 | process.removeListener('SIGINT', signalCleanup); 182 | process.removeListener('SIGTERM', signalCleanup); 183 | 184 | await this.cleanup(buildContext); 185 | } 186 | 187 | //=> OK. 188 | //------ 189 | this.state = BundlerState.Dead; 190 | this.logger('Done.'); 191 | 192 | return manifest; 193 | } 194 | 195 | private async cleanup(context: BuildContext): Promise { 196 | this.logger('Cleaning up the Unity project'); 197 | 198 | await unityproj.cleanupProject(context); 199 | } 200 | 201 | private async signalCleanup(context: BuildContext): Promise { 202 | await this.logger('AssetBundle conversion cancelled by user!'); 203 | 204 | await this.cleanup(context); 205 | 206 | process.exit(0); 207 | } 208 | 209 | private checkLoggerType(loggerFn: logger.SimpleLogger): void { 210 | if (typeof loggerFn !== 'function') { 211 | throw new Error('Logger must be a function of type (message?: string) => void.'); 212 | } 213 | } 214 | 215 | private checkBundlerIsntAlreadyConfigured(): void { 216 | if (this.state !== BundlerState.Configuring) { 217 | throw new Error('Cannot configure the bundler after the AssetBundle build has started!'); 218 | } 219 | } 220 | } 221 | -------------------------------------------------------------------------------- /src/build_context.ts: -------------------------------------------------------------------------------- 1 | import * as path from 'path'; 2 | import { ProjectDirectory } from './unity_project'; 3 | 4 | export class BuildContext { 5 | public readonly projectRootDir: string; 6 | public readonly assetsDir: string; 7 | public readonly editorScriptsDir: string; 8 | public readonly assetBundleDir: string; 9 | public readonly assetBundlePath: string; 10 | public readonly assetBundleManifestPath: string; 11 | 12 | public constructor(public readonly assetBundleName: string) { 13 | this.projectRootDir = ProjectDirectory; 14 | this.assetsDir = path.resolve(`${ProjectDirectory}/Assets/CopiedAssets`); 15 | this.editorScriptsDir = path.resolve(`${ProjectDirectory}/Assets/Editor/CopiedScripts`); 16 | this.assetBundleDir = path.resolve(`${ProjectDirectory}/GeneratedAssetBundles`); 17 | this.assetBundlePath = path.resolve(`${this.assetBundleDir}/${assetBundleName}`); 18 | this.assetBundleManifestPath = path.resolve(`${this.assetBundlePath}.manifest`); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/build_targets.ts: -------------------------------------------------------------------------------- 1 | export const StandaloneOSX = 'StandaloneOSXUniversal'; 2 | export const StandaloneOSXUniversal = 'StandaloneOSXUniversal'; // @UnityVersion remove when 5.x support is dropped 3 | export const StandaloneOSXIntel = 'StandaloneOSXIntel'; // @UnityVersion remove when 5.x support is dropped 4 | export const StandaloneWindows = 'StandaloneWindows'; 5 | export const iOS = 'iOS'; 6 | export const Android = 'Android'; 7 | export const StandaloneLinux = 'StandaloneLinux'; 8 | export const StandaloneWindows64 = 'StandaloneWindows64'; 9 | export const WebGL = 'WebGL'; 10 | export const WSAPlayer = 'WSAPlayer'; 11 | export const StandaloneLinux64 = 'StandaloneLinux64'; 12 | export const StandaloneLinuxUniversal = 'StandaloneLinuxUniversal'; 13 | export const StandaloneOSXIntel64 = 'StandaloneOSXIntel64'; // @UnityVersion remove when 5.x support is dropped 14 | export const Tizen = 'Tizen'; 15 | export const PSP2 = 'PSP2'; 16 | export const PS4 = 'PS4'; 17 | export const XboxOne = 'XboxOne'; 18 | export const SamsungTV = 'SamsungTV'; // @UnityVersion remove when 5.x support is dropped 19 | export const N3DS = 'N3DS'; 20 | export const WiiU = 'WiiU'; 21 | export const tvOS = 'tvOS'; 22 | export const Switch = 'Switch'; 23 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | import { AssetsBundler } from './assets_bundler'; 2 | import * as BuildTargets from './build_targets'; 3 | import { ReadableFileInput } from './stream_maker'; 4 | 5 | export { setUnityPath, UnityCrashError } from '@mitm/unityinvoker'; 6 | export * from './assets_bundler'; 7 | export { BuildTargets }; 8 | 9 | export function bundle(...assets: ReadableFileInput[]): AssetsBundler { 10 | return new AssetsBundler().includingAssets(...assets); 11 | } 12 | -------------------------------------------------------------------------------- /src/stream_maker.ts: -------------------------------------------------------------------------------- 1 | import * as fs from 'fs'; 2 | 3 | export type ReadableFileInput = string | fs.ReadStream; 4 | export type WritableFileInput = string | fs.WriteStream; 5 | 6 | export function normalizeReadStream(file: ReadableFileInput) { 7 | if (typeof file === 'string') { 8 | file = fs.createReadStream(file); 9 | } else if (!isReadStream(file)) { 10 | throw new Error(`Expected file path or fs.ReadStream, got ${file}.`); 11 | } 12 | 13 | return file; 14 | } 15 | 16 | export function normalizeWriteStream(file: WritableFileInput) { 17 | if (typeof file === 'string') { 18 | file = fs.createWriteStream(file); 19 | } else if (!isWriteStream(file)) { 20 | throw new Error(`Expected file path or fs.WriteStream, got ${file}.`); 21 | } 22 | 23 | return file; 24 | } 25 | 26 | export function isReadStream(file: ReadableFileInput): file is fs.ReadStream { 27 | const stream = file as fs.ReadStream; 28 | return !!(stream && stream.path !== undefined && stream.bytesRead !== undefined); 29 | } 30 | 31 | export function isWriteStream(file: WritableFileInput): file is fs.WriteStream { 32 | const stream = file as fs.WriteStream; 33 | return !!(stream && stream.path !== undefined && stream.bytesWritten !== undefined); 34 | } 35 | -------------------------------------------------------------------------------- /src/unity_invoker.ts: -------------------------------------------------------------------------------- 1 | import { invokeHeadlessUnity, logger } from '@mitm/unityinvoker'; 2 | 3 | export async function createProject(directory: string): Promise { 4 | await invokeHeadlessUnity().createProject(directory).run(); 5 | } 6 | 7 | export async function generateAssetBundle( 8 | directory: string, 9 | cAssetNames: string[], 10 | cAssetBundleDirectory: string, 11 | cAssetBundleName: string, 12 | cAssetBundleBuildOptions: Set, 13 | cAssetBundleTarget: string, 14 | unityLogger: logger.SimpleLogger = logger.noopLogger, 15 | signalAssetProcessed: logger.SimpleLogger = logger.noopLogger 16 | ) { 17 | const scriptOptions = { 18 | cAssetNames, cAssetBundleDirectory, cAssetBundleName, 19 | cAssetBundleBuildOptions: Array.from(cAssetBundleBuildOptions), 20 | cAssetBundleTarget 21 | }; 22 | 23 | let compilerError: Error | null = null; 24 | 25 | function handleLogLine(message: string): void { 26 | unityLogger(message); 27 | 28 | const updatingAsset = getUpdatingAsset(message); 29 | const unrecogAsset = getUnrecognizedAsset(message); 30 | 31 | if (updatingAsset) { 32 | signalAssetProcessed(updatingAsset); 33 | } else if (unrecogAsset) { 34 | compilerError = new Error(`File "${unrecogAsset}" is not processable by Unity, this is not a valid asset.`); 35 | } 36 | } 37 | 38 | await invokeHeadlessUnity() 39 | .projectPath(directory) 40 | .executeMethod('AssetBundleCompiler.Convert') 41 | .withOptions(scriptOptions) 42 | .run(handleLogLine); 43 | 44 | //=> For now we rethrow the last encountered error, sometimes long after it has been encoutered. 45 | // @todo make it better. 46 | if (compilerError) { 47 | throw compilerError; 48 | } 49 | } 50 | 51 | function getUpdatingAsset(message: string): string | null { 52 | const updateMessage = /^Updating Assets\/CopiedAssets\/(.+?)(?= - GUID)/; 53 | const matches = message.match(updateMessage); 54 | 55 | return matches !== null ? matches[1] : null; 56 | } 57 | 58 | function getUnrecognizedAsset(message: string): string | null { 59 | const unrecogMessage = /^Unrecognized assets cannot be included in AssetBundles?: "Assets\/CopiedAssets\/(.+?)"/; 60 | const matches = message.match(unrecogMessage); 61 | 62 | return matches !== null ? matches[1] : null; 63 | } 64 | -------------------------------------------------------------------------------- /src/unity_project.ts: -------------------------------------------------------------------------------- 1 | import { logger } from '@mitm/unityinvoker'; 2 | import * as fs from 'fs'; 3 | import * as fsx from 'fs-extra'; 4 | import * as jsyaml from 'js-yaml'; 5 | import * as os from 'os'; 6 | import * as path from 'path'; 7 | import { BuildContext } from './build_context'; 8 | import * as buildTargets from './build_targets'; 9 | import * as unity from './unity_invoker'; 10 | 11 | export type BuildTarget = (keyof typeof buildTargets) | string; 12 | 13 | export interface IAssetBundleManifest { 14 | ManifestFileVersion: number; 15 | CRC: number; 16 | Hashes: { 17 | [HashType: string]: { 18 | serializedVersion: number; 19 | Hash: string; 20 | }; 21 | }; 22 | HashAppended: number; 23 | ClassTypes: Array<{ Class: number, Script: any }>; 24 | Assets: string[]; 25 | Dependencies: any[]; 26 | } 27 | 28 | export const ProjectDirectory = path.join(os.tmpdir(), 'AssetBundleCompiler'); 29 | const CompilerScriptSource = path.resolve(`${__dirname}/../../resources/AssetBundleCompiler.cs`); 30 | const CompilerScriptDest = path.resolve(`${ProjectDirectory}/Assets/Editor/AssetBundleCompiler.cs`); 31 | 32 | export async function shouldCreateProject(): Promise { 33 | try { 34 | await fsx.access(ProjectDirectory, fsx.constants.R_OK | fsx.constants.W_OK); 35 | return false; 36 | } catch (err) { 37 | return true; 38 | } 39 | } 40 | 41 | export async function copyEditorScript(): Promise { 42 | await fsx.mkdirp(path.dirname(CompilerScriptDest)); 43 | await fsx.copy(CompilerScriptSource, CompilerScriptDest); 44 | } 45 | 46 | export async function warmupProject(context: BuildContext): Promise { 47 | if (await shouldCreateProject()) { 48 | await unity.createProject(ProjectDirectory); 49 | await copyEditorScript(); 50 | } 51 | 52 | await fsx.mkdir(context.editorScriptsDir); 53 | await fsx.mkdir(context.assetsDir); 54 | await fsx.mkdir(context.assetBundleDir); 55 | } 56 | 57 | export async function copyEditorScriptsInProject( 58 | context: BuildContext, 59 | scriptsStreams: fs.ReadStream[] 60 | ): Promise { 61 | await copyStreamsInDirectory(scriptsStreams, context.editorScriptsDir); 62 | } 63 | 64 | export async function copyAssetsInProject( 65 | context: BuildContext, 66 | assetStreams: fs.ReadStream[] 67 | ): Promise { 68 | await copyStreamsInDirectory(assetStreams, context.assetsDir); 69 | } 70 | 71 | export async function generateAssetBundle( 72 | context: BuildContext, 73 | fileStreams: fs.ReadStream[], 74 | buildOptions: Set, 75 | buildTarget: BuildTarget, 76 | unityLogger?: logger.SimpleLogger, 77 | signalAssetProcessed?: logger.SimpleLogger 78 | ): Promise { 79 | const assetNames = fileStreams.map(fileStream => path.basename(fileStream.path as string)); 80 | 81 | await unity.generateAssetBundle( 82 | ProjectDirectory, 83 | assetNames, 84 | context.assetBundleDir, 85 | context.assetBundleName, 86 | buildOptions, 87 | buildTarget, 88 | unityLogger, 89 | signalAssetProcessed 90 | ); 91 | 92 | const manifestBuf = await fsx.readFile(context.assetBundleManifestPath); 93 | 94 | return jsyaml.safeLoad(manifestBuf.toString()); 95 | } 96 | 97 | export async function moveGeneratedAssetBundle( 98 | context: BuildContext, 99 | finalDest: fs.WriteStream, 100 | finalManifestDest: fs.WriteStream | null, 101 | overwrite: boolean 102 | ): Promise { 103 | if (!overwrite) { 104 | try { 105 | await fsx.access(finalDest.path); 106 | throw new Error(`File ${finalDest.path} already exists, overwrite option is false, aborting.`); 107 | } finally { /* pass */ } 108 | } 109 | 110 | const tasks: Array> = []; 111 | 112 | const assetBundleStream = fsx.createReadStream(context.assetBundlePath); 113 | tasks.push(copyReadableToWritableStream(assetBundleStream, finalDest)); 114 | 115 | if (finalManifestDest) { 116 | const manifestStream = fsx.createReadStream(context.assetBundleManifestPath); 117 | tasks.push(copyReadableToWritableStream(manifestStream, finalManifestDest)); 118 | } 119 | 120 | await Promise.all(tasks); 121 | } 122 | 123 | export async function cleanupProject(context: BuildContext): Promise { 124 | await fsx.remove(context.editorScriptsDir); 125 | await fsx.remove(context.editorScriptsDir + '.meta'); 126 | await fsx.remove(context.assetsDir); 127 | await fsx.remove(context.assetsDir + '.meta'); 128 | await fsx.remove(context.assetBundleDir); 129 | } 130 | 131 | function copyStreamInDirectory(fileStream: fs.ReadStream, directory: string): Promise { 132 | return new Promise((resolve, reject) => { 133 | const fileName = path.basename(fileStream.path as string); 134 | const fileDestStream = fsx.createWriteStream(path.join(directory, fileName)); 135 | 136 | fileStream.pipe(fileDestStream); 137 | 138 | fileDestStream.on('finish', resolve); 139 | fileDestStream.on('error', reject); 140 | }); 141 | } 142 | 143 | async function copyStreamsInDirectory(fileStreams: fs.ReadStream[], directory: string): Promise { 144 | const copyTasks = fileStreams.map(stream => copyStreamInDirectory(stream, directory)); 145 | 146 | await Promise.all(copyTasks); 147 | } 148 | 149 | function copyReadableToWritableStream(readable: fs.ReadStream, writable: fs.WriteStream): Promise { 150 | return new Promise((resolve, reject) => { 151 | readable.pipe(writable) 152 | .on('finish', () => resolve()) 153 | .on('error', (err: Error) => reject(err)); 154 | }); 155 | } 156 | -------------------------------------------------------------------------------- /test/assets_bundler.test.ts: -------------------------------------------------------------------------------- 1 | import { expect } from 'chai'; 2 | import * as fs from 'fs-extra'; 3 | import * as os from 'os'; 4 | import * as path from 'path'; 5 | import * as assetsBundler from '../src/assets_bundler'; 6 | 7 | describe('AssetsBundler', () => { 8 | const tmpFilePath = path.normalize(`${os.tmpdir()}/test.empty`); 9 | let bundler: assetsBundler.AssetsBundler; 10 | 11 | before(() => fs.createFileSync(tmpFilePath)); 12 | 13 | beforeEach(() => bundler = new assetsBundler.AssetsBundler()); 14 | 15 | describe('#includingAssets()', () => { 16 | it('should take path strings or read streams', () => { 17 | expect(bundler.includingAssets(tmpFilePath)).to.equal(bundler); 18 | expect(bundler.includingAssets(fs.createReadStream(tmpFilePath))).to.equal(bundler); 19 | }); 20 | 21 | it('should throw when passing something other than a string or read stream', () => { 22 | expect(() => { bundler.includingAssets(null as any); }).to.throw(); 23 | expect(() => { bundler.includingAssets(5 as any); }).to.throw(); 24 | expect(() => { bundler.includingAssets(fs.createWriteStream(tmpFilePath) as any); }).to.throw(); 25 | }); 26 | }); 27 | 28 | describe('#targeting()', () => { 29 | it('should take strings', () => { 30 | expect(bundler.targeting('EnumMemberName')).to.equal(bundler); 31 | }); 32 | 33 | it('should throw when passing something other than a string', () => { 34 | expect(() => { bundler.targeting(null as any); }).to.throw(); 35 | expect(() => { bundler.targeting(5 as any); }).to.throw(); 36 | }); 37 | }); 38 | }); 39 | -------------------------------------------------------------------------------- /test/index.test.ts: -------------------------------------------------------------------------------- 1 | import { expect } from 'chai'; 2 | import * as assetsBundler from '../src/assets_bundler'; 3 | import * as index from '../src/index'; 4 | 5 | describe('index', () => { 6 | describe('bundle()', () => { 7 | it('should return an AssetsBundler', () => { 8 | expect(index.bundle()).to.be.an.instanceof(assetsBundler.AssetsBundler); 9 | }); 10 | }); 11 | }); 12 | -------------------------------------------------------------------------------- /test/stream_maker.test.ts: -------------------------------------------------------------------------------- 1 | import { expect } from 'chai'; 2 | import * as fs from 'fs-extra'; 3 | import * as os from 'os'; 4 | import * as path from 'path'; 5 | import * as streamMaker from '../src/stream_maker'; 6 | 7 | describe('stream_maker', () => { 8 | const tmpFilePath = path.normalize(`${os.tmpdir()}/test.empty`); 9 | 10 | describe('isWriteStream()', () => { 11 | it('should recognize WriteStreams', () => { 12 | const stream = fs.createWriteStream(tmpFilePath); 13 | expect(streamMaker.isWriteStream(stream)).to.be.true; 14 | }); 15 | 16 | it('should return false for non-WriteStreams', () => { 17 | const stream = fs.createReadStream(tmpFilePath); 18 | expect(streamMaker.isWriteStream(stream as any)).to.be.false; 19 | expect(streamMaker.isWriteStream(null as any)).to.be.false; 20 | }); 21 | }); 22 | 23 | describe('isReadStream()', () => { 24 | it('should recognize ReadStreams', () => { 25 | const stream = fs.createReadStream(tmpFilePath); 26 | expect(streamMaker.isReadStream(stream)).to.be.true; 27 | }); 28 | 29 | it('should return false for non-ReadStreams', () => { 30 | const stream = fs.createWriteStream(tmpFilePath); 31 | expect(streamMaker.isReadStream(stream as any)).to.be.false; 32 | expect(streamMaker.isReadStream(null as any)).to.be.false; 33 | }); 34 | }); 35 | 36 | describe('normalizeWriteStream()', () => { 37 | it('should convert paths to write streams', () => { 38 | const stream = streamMaker.normalizeWriteStream(tmpFilePath); 39 | expect(streamMaker.isWriteStream(stream)).to.be.true; 40 | }); 41 | 42 | it('should return write streams as-is', () => { 43 | const stream = fs.createWriteStream(tmpFilePath); 44 | expect(streamMaker.normalizeWriteStream(stream)).to.equal(stream); 45 | }); 46 | 47 | it('should throw when encountering something other than a string or write stream', () => { 48 | expect(() => { streamMaker.normalizeWriteStream(null as any); }).to.throw(); 49 | expect(() => { streamMaker.normalizeWriteStream(42 as any); }).to.throw(); 50 | expect(() => { streamMaker.normalizeWriteStream(String as any); }).to.throw(); 51 | }); 52 | }); 53 | 54 | describe('normalizeReadStream()', () => { 55 | it('should convert paths to read streams', () => { 56 | const stream = streamMaker.normalizeReadStream(tmpFilePath); 57 | expect(streamMaker.isReadStream(stream)).to.be.true; 58 | }); 59 | 60 | it('should return read streams as-is', () => { 61 | const stream = fs.createReadStream(tmpFilePath); 62 | expect(streamMaker.normalizeReadStream(stream)).to.equal(stream); 63 | }); 64 | 65 | it('should throw when encountering something other than a string or read stream', () => { 66 | expect(() => { streamMaker.normalizeReadStream(null as any); }).to.throw(); 67 | expect(() => { streamMaker.normalizeReadStream(42 as any); }).to.throw(); 68 | expect(() => { streamMaker.normalizeReadStream(String as any); }).to.throw(); 69 | }); 70 | }); 71 | 72 | after(() => fs.removeSync(tmpFilePath)); 73 | }); 74 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "outDir": "dist", 4 | "module": "commonjs", 5 | "target": "es2016", 6 | "emitDecoratorMetadata": true, 7 | "experimentalDecorators": true, 8 | "declaration": true, 9 | "moduleResolution": "node", 10 | "strict": true, 11 | "noUnusedLocals": false, 12 | "lib": ["es7"] 13 | }, 14 | "exclude": ["node_modules", "dist"] 15 | } 16 | -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "tslint:latest", 3 | "rules": { 4 | "quotemark": ["single"], 5 | "trailing-comma": false, 6 | "object-literal-sort-keys": false, 7 | "arrow-parens": false, 8 | "no-unused-expression": false, 9 | "no-bitwise": false, 10 | "comment-format": false, 11 | "no-implicit-dependencies": [true, "dev"] 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@mitm/unityinvoker@^1.0.0": 6 | version "1.0.2" 7 | resolved "https://registry.yarnpkg.com/@mitm/unityinvoker/-/unityinvoker-1.0.2.tgz#e1a37ade92b30da1bc00436bcd42c1cd7a7aa3c8" 8 | dependencies: 9 | mocha "^3.2.0" 10 | pify "^2.3.0" 11 | 12 | "@semantic-release/commit-analyzer@^5.0.0": 13 | version "5.0.0" 14 | resolved "https://registry.yarnpkg.com/@semantic-release/commit-analyzer/-/commit-analyzer-5.0.0.tgz#767a2055b5cd0a67421b1d504f3ca7db97055c42" 15 | dependencies: 16 | conventional-changelog-angular "^1.4.0" 17 | conventional-commits-parser "^2.0.0" 18 | debug "^3.1.0" 19 | import-from "^2.1.0" 20 | lodash "^4.17.4" 21 | 22 | "@semantic-release/condition-travis@^7.0.0": 23 | version "7.1.4" 24 | resolved "https://registry.yarnpkg.com/@semantic-release/condition-travis/-/condition-travis-7.1.4.tgz#8251fb3d5a6c2e2711f4948450d8622d53e083c0" 25 | dependencies: 26 | "@semantic-release/error" "^2.0.0" 27 | github "^13.0.1" 28 | parse-github-url "^1.0.1" 29 | travis-deploy-once "^4.0.0" 30 | 31 | "@semantic-release/error@^2.0.0", "@semantic-release/error@^2.1.0": 32 | version "2.1.0" 33 | resolved "https://registry.yarnpkg.com/@semantic-release/error/-/error-2.1.0.tgz#44771f676f5b148da309111285a97901aa95a6e0" 34 | 35 | "@semantic-release/github@^2.0.0": 36 | version "2.2.3" 37 | resolved "https://registry.yarnpkg.com/@semantic-release/github/-/github-2.2.3.tgz#2323d6c9f6ba602fea1eda4f7efdc8ec96333ac0" 38 | dependencies: 39 | "@semantic-release/error" "^2.1.0" 40 | debug "^3.1.0" 41 | fs-extra "^5.0.0" 42 | github "^13.0.0" 43 | globby "^7.1.1" 44 | lodash "^4.17.4" 45 | mime "^2.0.3" 46 | p-reduce "^1.0.0" 47 | parse-github-url "^1.0.1" 48 | url-join "^2.0.2" 49 | 50 | "@semantic-release/npm@^2.0.0": 51 | version "2.6.2" 52 | resolved "https://registry.yarnpkg.com/@semantic-release/npm/-/npm-2.6.2.tgz#6c2c19fb9b5ab63379d64b0e7b7aaf54736d0e66" 53 | dependencies: 54 | "@semantic-release/error" "^2.1.0" 55 | debug "^3.1.0" 56 | execa "^0.9.0" 57 | fs-extra "^5.0.0" 58 | lodash "^4.17.4" 59 | nerf-dart "^1.0.0" 60 | npm-conf "^1.1.3" 61 | npm-registry-client "^8.5.0" 62 | read-pkg "^3.0.0" 63 | registry-auth-token "^3.3.1" 64 | 65 | "@semantic-release/release-notes-generator@^6.0.0": 66 | version "6.0.3" 67 | resolved "https://registry.yarnpkg.com/@semantic-release/release-notes-generator/-/release-notes-generator-6.0.3.tgz#c52bea12479a648bcb585d95940b4d72e57c5b71" 68 | dependencies: 69 | conventional-changelog-angular "^1.4.0" 70 | conventional-changelog-writer "^2.0.1" 71 | conventional-commits-parser "^2.0.0" 72 | debug "^3.1.0" 73 | get-stream "^3.0.0" 74 | git-url-parse "^7.0.1" 75 | import-from "^2.1.0" 76 | into-stream "^3.1.0" 77 | lodash "^4.17.4" 78 | 79 | "@sindresorhus/is@^0.6.0": 80 | version "0.6.0" 81 | resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.6.0.tgz#383f456b26bc96c7889f0332079f4358b16c58dc" 82 | 83 | "@types/chai@^4.1.0": 84 | version "4.1.0" 85 | resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.1.0.tgz#d9008fa4c06f6801f93396d121f0227cd4244ac6" 86 | 87 | "@types/fs-extra@^5.0.0": 88 | version "5.0.0" 89 | resolved "https://registry.yarnpkg.com/@types/fs-extra/-/fs-extra-5.0.0.tgz#d3e225b35eb5c6d3a5a782c28219df365c781413" 90 | dependencies: 91 | "@types/node" "*" 92 | 93 | "@types/js-yaml@^3.10.1": 94 | version "3.10.1" 95 | resolved "https://registry.yarnpkg.com/@types/js-yaml/-/js-yaml-3.10.1.tgz#a4ddaf67fec34151e620cdbdd22e40b64217f577" 96 | 97 | "@types/mocha@^2.2.40": 98 | version "2.2.46" 99 | resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-2.2.46.tgz#b04713f7759d1cf752effdaae7b3969e285ebc16" 100 | 101 | "@types/node@*", "@types/node@^9.3.0": 102 | version "9.3.0" 103 | resolved "https://registry.yarnpkg.com/@types/node/-/node-9.3.0.tgz#3a129cda7c4e5df2409702626892cb4b96546dd5" 104 | 105 | JSONStream@^1.0.4: 106 | version "1.3.2" 107 | resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.2.tgz#c102371b6ec3a7cf3b847ca00c20bb0fce4c6dea" 108 | dependencies: 109 | jsonparse "^1.2.0" 110 | through ">=2.2.7 <3" 111 | 112 | agent-base@^4.1.0: 113 | version "4.1.2" 114 | resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-4.1.2.tgz#80fa6cde440f4dcf9af2617cf246099b5d99f0c8" 115 | dependencies: 116 | es6-promisify "^5.0.0" 117 | 118 | ajv@^5.1.0: 119 | version "5.5.2" 120 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 121 | dependencies: 122 | co "^4.6.0" 123 | fast-deep-equal "^1.0.0" 124 | fast-json-stable-stringify "^2.0.0" 125 | json-schema-traverse "^0.3.0" 126 | 127 | align-text@^0.1.1, align-text@^0.1.3: 128 | version "0.1.4" 129 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 130 | dependencies: 131 | kind-of "^3.0.2" 132 | longest "^1.0.1" 133 | repeat-string "^1.5.2" 134 | 135 | amdefine@>=0.0.4: 136 | version "1.0.1" 137 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 138 | 139 | ansi-align@^2.0.0: 140 | version "2.0.0" 141 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" 142 | dependencies: 143 | string-width "^2.0.0" 144 | 145 | ansi-regex@^2.0.0: 146 | version "2.1.1" 147 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 148 | 149 | ansi-regex@^3.0.0: 150 | version "3.0.0" 151 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 152 | 153 | ansi-styles@^2.2.1: 154 | version "2.2.1" 155 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 156 | 157 | ansi-styles@^3.1.0: 158 | version "3.2.0" 159 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 160 | dependencies: 161 | color-convert "^1.9.0" 162 | 163 | ansicolors@~0.2.1: 164 | version "0.2.1" 165 | resolved "https://registry.yarnpkg.com/ansicolors/-/ansicolors-0.2.1.tgz#be089599097b74a5c9c4a84a0cdbcdb62bd87aef" 166 | 167 | aproba@^1.0.3: 168 | version "1.2.0" 169 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 170 | 171 | are-we-there-yet@~1.1.2: 172 | version "1.1.4" 173 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 174 | dependencies: 175 | delegates "^1.0.0" 176 | readable-stream "^2.0.6" 177 | 178 | argparse@^1.0.7: 179 | version "1.0.9" 180 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 181 | dependencies: 182 | sprintf-js "~1.0.2" 183 | 184 | argv-formatter@~1.0.0: 185 | version "1.0.0" 186 | resolved "https://registry.yarnpkg.com/argv-formatter/-/argv-formatter-1.0.0.tgz#a0ca0cbc29a5b73e836eebe1cbf6c5e0e4eb82f9" 187 | 188 | array-find-index@^1.0.1: 189 | version "1.0.2" 190 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 191 | 192 | array-ify@^1.0.0: 193 | version "1.0.0" 194 | resolved "https://registry.yarnpkg.com/array-ify/-/array-ify-1.0.0.tgz#9e528762b4a9066ad163a6962a364418e9626ece" 195 | 196 | array-union@^1.0.1: 197 | version "1.0.2" 198 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 199 | dependencies: 200 | array-uniq "^1.0.1" 201 | 202 | array-uniq@^1.0.1: 203 | version "1.0.3" 204 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 205 | 206 | arrify@^1.0.1: 207 | version "1.0.1" 208 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 209 | 210 | asn1@~0.2.3: 211 | version "0.2.3" 212 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 213 | 214 | assert-plus@1.0.0, assert-plus@^1.0.0: 215 | version "1.0.0" 216 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 217 | 218 | assertion-error@^1.0.1: 219 | version "1.1.0" 220 | resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.1.0.tgz#e60b6b0e8f301bd97e5375215bda406c85118c0b" 221 | 222 | async@^1.4.0: 223 | version "1.5.2" 224 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 225 | 226 | asynckit@^0.4.0: 227 | version "0.4.0" 228 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 229 | 230 | aws-sign2@~0.7.0: 231 | version "0.7.0" 232 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 233 | 234 | aws4@^1.6.0: 235 | version "1.6.0" 236 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 237 | 238 | babel-code-frame@^6.22.0, babel-code-frame@^6.26.0: 239 | version "6.26.0" 240 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 241 | dependencies: 242 | chalk "^1.1.3" 243 | esutils "^2.0.2" 244 | js-tokens "^3.0.2" 245 | 246 | babel-core@^6.26.0: 247 | version "6.26.0" 248 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 249 | dependencies: 250 | babel-code-frame "^6.26.0" 251 | babel-generator "^6.26.0" 252 | babel-helpers "^6.24.1" 253 | babel-messages "^6.23.0" 254 | babel-register "^6.26.0" 255 | babel-runtime "^6.26.0" 256 | babel-template "^6.26.0" 257 | babel-traverse "^6.26.0" 258 | babel-types "^6.26.0" 259 | babylon "^6.18.0" 260 | convert-source-map "^1.5.0" 261 | debug "^2.6.8" 262 | json5 "^0.5.1" 263 | lodash "^4.17.4" 264 | minimatch "^3.0.4" 265 | path-is-absolute "^1.0.1" 266 | private "^0.1.7" 267 | slash "^1.0.0" 268 | source-map "^0.5.6" 269 | 270 | babel-generator@^6.26.0: 271 | version "6.26.0" 272 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" 273 | dependencies: 274 | babel-messages "^6.23.0" 275 | babel-runtime "^6.26.0" 276 | babel-types "^6.26.0" 277 | detect-indent "^4.0.0" 278 | jsesc "^1.3.0" 279 | lodash "^4.17.4" 280 | source-map "^0.5.6" 281 | trim-right "^1.0.1" 282 | 283 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 284 | version "6.24.1" 285 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 286 | dependencies: 287 | babel-helper-explode-assignable-expression "^6.24.1" 288 | babel-runtime "^6.22.0" 289 | babel-types "^6.24.1" 290 | 291 | babel-helper-call-delegate@^6.24.1: 292 | version "6.24.1" 293 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 294 | dependencies: 295 | babel-helper-hoist-variables "^6.24.1" 296 | babel-runtime "^6.22.0" 297 | babel-traverse "^6.24.1" 298 | babel-types "^6.24.1" 299 | 300 | babel-helper-define-map@^6.24.1: 301 | version "6.26.0" 302 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 303 | dependencies: 304 | babel-helper-function-name "^6.24.1" 305 | babel-runtime "^6.26.0" 306 | babel-types "^6.26.0" 307 | lodash "^4.17.4" 308 | 309 | babel-helper-explode-assignable-expression@^6.24.1: 310 | version "6.24.1" 311 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 312 | dependencies: 313 | babel-runtime "^6.22.0" 314 | babel-traverse "^6.24.1" 315 | babel-types "^6.24.1" 316 | 317 | babel-helper-function-name@^6.24.1: 318 | version "6.24.1" 319 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 320 | dependencies: 321 | babel-helper-get-function-arity "^6.24.1" 322 | babel-runtime "^6.22.0" 323 | babel-template "^6.24.1" 324 | babel-traverse "^6.24.1" 325 | babel-types "^6.24.1" 326 | 327 | babel-helper-get-function-arity@^6.24.1: 328 | version "6.24.1" 329 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 330 | dependencies: 331 | babel-runtime "^6.22.0" 332 | babel-types "^6.24.1" 333 | 334 | babel-helper-hoist-variables@^6.24.1: 335 | version "6.24.1" 336 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 337 | dependencies: 338 | babel-runtime "^6.22.0" 339 | babel-types "^6.24.1" 340 | 341 | babel-helper-optimise-call-expression@^6.24.1: 342 | version "6.24.1" 343 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 344 | dependencies: 345 | babel-runtime "^6.22.0" 346 | babel-types "^6.24.1" 347 | 348 | babel-helper-regex@^6.24.1: 349 | version "6.26.0" 350 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 351 | dependencies: 352 | babel-runtime "^6.26.0" 353 | babel-types "^6.26.0" 354 | lodash "^4.17.4" 355 | 356 | babel-helper-remap-async-to-generator@^6.24.1: 357 | version "6.24.1" 358 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 359 | dependencies: 360 | babel-helper-function-name "^6.24.1" 361 | babel-runtime "^6.22.0" 362 | babel-template "^6.24.1" 363 | babel-traverse "^6.24.1" 364 | babel-types "^6.24.1" 365 | 366 | babel-helper-replace-supers@^6.24.1: 367 | version "6.24.1" 368 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 369 | dependencies: 370 | babel-helper-optimise-call-expression "^6.24.1" 371 | babel-messages "^6.23.0" 372 | babel-runtime "^6.22.0" 373 | babel-template "^6.24.1" 374 | babel-traverse "^6.24.1" 375 | babel-types "^6.24.1" 376 | 377 | babel-helpers@^6.24.1: 378 | version "6.24.1" 379 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 380 | dependencies: 381 | babel-runtime "^6.22.0" 382 | babel-template "^6.24.1" 383 | 384 | babel-messages@^6.23.0: 385 | version "6.23.0" 386 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 387 | dependencies: 388 | babel-runtime "^6.22.0" 389 | 390 | babel-plugin-check-es2015-constants@^6.22.0: 391 | version "6.22.0" 392 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 393 | dependencies: 394 | babel-runtime "^6.22.0" 395 | 396 | babel-plugin-syntax-async-functions@^6.8.0: 397 | version "6.13.0" 398 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 399 | 400 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 401 | version "6.13.0" 402 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 403 | 404 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 405 | version "6.22.0" 406 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 407 | 408 | babel-plugin-transform-async-to-generator@^6.22.0: 409 | version "6.24.1" 410 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 411 | dependencies: 412 | babel-helper-remap-async-to-generator "^6.24.1" 413 | babel-plugin-syntax-async-functions "^6.8.0" 414 | babel-runtime "^6.22.0" 415 | 416 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 417 | version "6.22.0" 418 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 419 | dependencies: 420 | babel-runtime "^6.22.0" 421 | 422 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 423 | version "6.22.0" 424 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 425 | dependencies: 426 | babel-runtime "^6.22.0" 427 | 428 | babel-plugin-transform-es2015-block-scoping@^6.23.0: 429 | version "6.26.0" 430 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 431 | dependencies: 432 | babel-runtime "^6.26.0" 433 | babel-template "^6.26.0" 434 | babel-traverse "^6.26.0" 435 | babel-types "^6.26.0" 436 | lodash "^4.17.4" 437 | 438 | babel-plugin-transform-es2015-classes@^6.23.0: 439 | version "6.24.1" 440 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 441 | dependencies: 442 | babel-helper-define-map "^6.24.1" 443 | babel-helper-function-name "^6.24.1" 444 | babel-helper-optimise-call-expression "^6.24.1" 445 | babel-helper-replace-supers "^6.24.1" 446 | babel-messages "^6.23.0" 447 | babel-runtime "^6.22.0" 448 | babel-template "^6.24.1" 449 | babel-traverse "^6.24.1" 450 | babel-types "^6.24.1" 451 | 452 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 453 | version "6.24.1" 454 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 455 | dependencies: 456 | babel-runtime "^6.22.0" 457 | babel-template "^6.24.1" 458 | 459 | babel-plugin-transform-es2015-destructuring@^6.23.0: 460 | version "6.23.0" 461 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 462 | dependencies: 463 | babel-runtime "^6.22.0" 464 | 465 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 466 | version "6.24.1" 467 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 468 | dependencies: 469 | babel-runtime "^6.22.0" 470 | babel-types "^6.24.1" 471 | 472 | babel-plugin-transform-es2015-for-of@^6.23.0: 473 | version "6.23.0" 474 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 475 | dependencies: 476 | babel-runtime "^6.22.0" 477 | 478 | babel-plugin-transform-es2015-function-name@^6.22.0: 479 | version "6.24.1" 480 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 481 | dependencies: 482 | babel-helper-function-name "^6.24.1" 483 | babel-runtime "^6.22.0" 484 | babel-types "^6.24.1" 485 | 486 | babel-plugin-transform-es2015-literals@^6.22.0: 487 | version "6.22.0" 488 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 489 | dependencies: 490 | babel-runtime "^6.22.0" 491 | 492 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: 493 | version "6.24.1" 494 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 495 | dependencies: 496 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 497 | babel-runtime "^6.22.0" 498 | babel-template "^6.24.1" 499 | 500 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 501 | version "6.26.0" 502 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" 503 | dependencies: 504 | babel-plugin-transform-strict-mode "^6.24.1" 505 | babel-runtime "^6.26.0" 506 | babel-template "^6.26.0" 507 | babel-types "^6.26.0" 508 | 509 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0: 510 | version "6.24.1" 511 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 512 | dependencies: 513 | babel-helper-hoist-variables "^6.24.1" 514 | babel-runtime "^6.22.0" 515 | babel-template "^6.24.1" 516 | 517 | babel-plugin-transform-es2015-modules-umd@^6.23.0: 518 | version "6.24.1" 519 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 520 | dependencies: 521 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 522 | babel-runtime "^6.22.0" 523 | babel-template "^6.24.1" 524 | 525 | babel-plugin-transform-es2015-object-super@^6.22.0: 526 | version "6.24.1" 527 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 528 | dependencies: 529 | babel-helper-replace-supers "^6.24.1" 530 | babel-runtime "^6.22.0" 531 | 532 | babel-plugin-transform-es2015-parameters@^6.23.0: 533 | version "6.24.1" 534 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 535 | dependencies: 536 | babel-helper-call-delegate "^6.24.1" 537 | babel-helper-get-function-arity "^6.24.1" 538 | babel-runtime "^6.22.0" 539 | babel-template "^6.24.1" 540 | babel-traverse "^6.24.1" 541 | babel-types "^6.24.1" 542 | 543 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 544 | version "6.24.1" 545 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 546 | dependencies: 547 | babel-runtime "^6.22.0" 548 | babel-types "^6.24.1" 549 | 550 | babel-plugin-transform-es2015-spread@^6.22.0: 551 | version "6.22.0" 552 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 553 | dependencies: 554 | babel-runtime "^6.22.0" 555 | 556 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 557 | version "6.24.1" 558 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 559 | dependencies: 560 | babel-helper-regex "^6.24.1" 561 | babel-runtime "^6.22.0" 562 | babel-types "^6.24.1" 563 | 564 | babel-plugin-transform-es2015-template-literals@^6.22.0: 565 | version "6.22.0" 566 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 567 | dependencies: 568 | babel-runtime "^6.22.0" 569 | 570 | babel-plugin-transform-es2015-typeof-symbol@^6.23.0: 571 | version "6.23.0" 572 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 573 | dependencies: 574 | babel-runtime "^6.22.0" 575 | 576 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 577 | version "6.24.1" 578 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 579 | dependencies: 580 | babel-helper-regex "^6.24.1" 581 | babel-runtime "^6.22.0" 582 | regexpu-core "^2.0.0" 583 | 584 | babel-plugin-transform-exponentiation-operator@^6.22.0: 585 | version "6.24.1" 586 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 587 | dependencies: 588 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 589 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 590 | babel-runtime "^6.22.0" 591 | 592 | babel-plugin-transform-regenerator@^6.22.0: 593 | version "6.26.0" 594 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 595 | dependencies: 596 | regenerator-transform "^0.10.0" 597 | 598 | babel-plugin-transform-strict-mode@^6.24.1: 599 | version "6.24.1" 600 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 601 | dependencies: 602 | babel-runtime "^6.22.0" 603 | babel-types "^6.24.1" 604 | 605 | babel-polyfill@^6.26.0: 606 | version "6.26.0" 607 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" 608 | dependencies: 609 | babel-runtime "^6.26.0" 610 | core-js "^2.5.0" 611 | regenerator-runtime "^0.10.5" 612 | 613 | babel-preset-env@^1.6.1: 614 | version "1.6.1" 615 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.6.1.tgz#a18b564cc9b9afdf4aae57ae3c1b0d99188e6f48" 616 | dependencies: 617 | babel-plugin-check-es2015-constants "^6.22.0" 618 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 619 | babel-plugin-transform-async-to-generator "^6.22.0" 620 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 621 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 622 | babel-plugin-transform-es2015-block-scoping "^6.23.0" 623 | babel-plugin-transform-es2015-classes "^6.23.0" 624 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 625 | babel-plugin-transform-es2015-destructuring "^6.23.0" 626 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 627 | babel-plugin-transform-es2015-for-of "^6.23.0" 628 | babel-plugin-transform-es2015-function-name "^6.22.0" 629 | babel-plugin-transform-es2015-literals "^6.22.0" 630 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 631 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0" 632 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0" 633 | babel-plugin-transform-es2015-modules-umd "^6.23.0" 634 | babel-plugin-transform-es2015-object-super "^6.22.0" 635 | babel-plugin-transform-es2015-parameters "^6.23.0" 636 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 637 | babel-plugin-transform-es2015-spread "^6.22.0" 638 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 639 | babel-plugin-transform-es2015-template-literals "^6.22.0" 640 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0" 641 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 642 | babel-plugin-transform-exponentiation-operator "^6.22.0" 643 | babel-plugin-transform-regenerator "^6.22.0" 644 | browserslist "^2.1.2" 645 | invariant "^2.2.2" 646 | semver "^5.3.0" 647 | 648 | babel-register@^6.26.0: 649 | version "6.26.0" 650 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 651 | dependencies: 652 | babel-core "^6.26.0" 653 | babel-runtime "^6.26.0" 654 | core-js "^2.5.0" 655 | home-or-tmp "^2.0.0" 656 | lodash "^4.17.4" 657 | mkdirp "^0.5.1" 658 | source-map-support "^0.4.15" 659 | 660 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 661 | version "6.26.0" 662 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 663 | dependencies: 664 | core-js "^2.4.0" 665 | regenerator-runtime "^0.11.0" 666 | 667 | babel-template@^6.24.1, babel-template@^6.26.0: 668 | version "6.26.0" 669 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 670 | dependencies: 671 | babel-runtime "^6.26.0" 672 | babel-traverse "^6.26.0" 673 | babel-types "^6.26.0" 674 | babylon "^6.18.0" 675 | lodash "^4.17.4" 676 | 677 | babel-traverse@^6.24.1, babel-traverse@^6.26.0: 678 | version "6.26.0" 679 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 680 | dependencies: 681 | babel-code-frame "^6.26.0" 682 | babel-messages "^6.23.0" 683 | babel-runtime "^6.26.0" 684 | babel-types "^6.26.0" 685 | babylon "^6.18.0" 686 | debug "^2.6.8" 687 | globals "^9.18.0" 688 | invariant "^2.2.2" 689 | lodash "^4.17.4" 690 | 691 | babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: 692 | version "6.26.0" 693 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 694 | dependencies: 695 | babel-runtime "^6.26.0" 696 | esutils "^2.0.2" 697 | lodash "^4.17.4" 698 | to-fast-properties "^1.0.3" 699 | 700 | babylon@^6.18.0: 701 | version "6.18.0" 702 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 703 | 704 | balanced-match@^1.0.0: 705 | version "1.0.0" 706 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 707 | 708 | bcrypt-pbkdf@^1.0.0: 709 | version "1.0.1" 710 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 711 | dependencies: 712 | tweetnacl "^0.14.3" 713 | 714 | boom@4.x.x: 715 | version "4.3.1" 716 | resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31" 717 | dependencies: 718 | hoek "4.x.x" 719 | 720 | boom@5.x.x: 721 | version "5.2.0" 722 | resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02" 723 | dependencies: 724 | hoek "4.x.x" 725 | 726 | boxen@^1.2.1: 727 | version "1.3.0" 728 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.3.0.tgz#55c6c39a8ba58d9c61ad22cd877532deb665a20b" 729 | dependencies: 730 | ansi-align "^2.0.0" 731 | camelcase "^4.0.0" 732 | chalk "^2.0.1" 733 | cli-boxes "^1.0.0" 734 | string-width "^2.0.0" 735 | term-size "^1.2.0" 736 | widest-line "^2.0.0" 737 | 738 | brace-expansion@^1.1.7: 739 | version "1.1.8" 740 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 741 | dependencies: 742 | balanced-match "^1.0.0" 743 | concat-map "0.0.1" 744 | 745 | browser-stdout@1.3.0: 746 | version "1.3.0" 747 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f" 748 | 749 | browserslist@^2.1.2: 750 | version "2.11.1" 751 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.11.1.tgz#02fda29d9a2164b879100126e7b0d0b57e43a7bb" 752 | dependencies: 753 | caniuse-lite "^1.0.30000789" 754 | electron-to-chromium "^1.3.30" 755 | 756 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 757 | version "1.1.1" 758 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 759 | 760 | builtins@^1.0.3: 761 | version "1.0.3" 762 | resolved "https://registry.yarnpkg.com/builtins/-/builtins-1.0.3.tgz#cb94faeb61c8696451db36534e1422f94f0aee88" 763 | 764 | cacheable-request@^2.1.1: 765 | version "2.1.4" 766 | resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-2.1.4.tgz#0d808801b6342ad33c91df9d0b44dc09b91e5c3d" 767 | dependencies: 768 | clone-response "1.0.2" 769 | get-stream "3.0.0" 770 | http-cache-semantics "3.8.1" 771 | keyv "3.0.0" 772 | lowercase-keys "1.0.0" 773 | normalize-url "2.0.1" 774 | responselike "1.0.2" 775 | 776 | camelcase-keys@^2.0.0: 777 | version "2.1.0" 778 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 779 | dependencies: 780 | camelcase "^2.0.0" 781 | map-obj "^1.0.0" 782 | 783 | camelcase@^1.0.2: 784 | version "1.2.1" 785 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 786 | 787 | camelcase@^2.0.0: 788 | version "2.1.1" 789 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 790 | 791 | camelcase@^4.0.0, camelcase@^4.1.0: 792 | version "4.1.0" 793 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 794 | 795 | caniuse-lite@^1.0.30000789: 796 | version "1.0.30000791" 797 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000791.tgz#8e35745efd483a3e23bb7d350990326d2319fc16" 798 | 799 | capture-stack-trace@^1.0.0: 800 | version "1.0.0" 801 | resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d" 802 | 803 | cardinal@^1.0.0: 804 | version "1.0.0" 805 | resolved "https://registry.yarnpkg.com/cardinal/-/cardinal-1.0.0.tgz#50e21c1b0aa37729f9377def196b5a9cec932ee9" 806 | dependencies: 807 | ansicolors "~0.2.1" 808 | redeyed "~1.0.0" 809 | 810 | caseless@~0.12.0: 811 | version "0.12.0" 812 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 813 | 814 | center-align@^0.1.1: 815 | version "0.1.3" 816 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 817 | dependencies: 818 | align-text "^0.1.3" 819 | lazy-cache "^1.0.3" 820 | 821 | chai@^4.1.2: 822 | version "4.1.2" 823 | resolved "https://registry.yarnpkg.com/chai/-/chai-4.1.2.tgz#0f64584ba642f0f2ace2806279f4f06ca23ad73c" 824 | dependencies: 825 | assertion-error "^1.0.1" 826 | check-error "^1.0.1" 827 | deep-eql "^3.0.0" 828 | get-func-name "^2.0.0" 829 | pathval "^1.0.0" 830 | type-detect "^4.0.0" 831 | 832 | chalk@^1.1.3: 833 | version "1.1.3" 834 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 835 | dependencies: 836 | ansi-styles "^2.2.1" 837 | escape-string-regexp "^1.0.2" 838 | has-ansi "^2.0.0" 839 | strip-ansi "^3.0.0" 840 | supports-color "^2.0.0" 841 | 842 | chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.0: 843 | version "2.3.0" 844 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba" 845 | dependencies: 846 | ansi-styles "^3.1.0" 847 | escape-string-regexp "^1.0.5" 848 | supports-color "^4.0.0" 849 | 850 | check-error@^1.0.1: 851 | version "1.0.2" 852 | resolved "https://registry.yarnpkg.com/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82" 853 | 854 | cli-boxes@^1.0.0: 855 | version "1.0.0" 856 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" 857 | 858 | cli-table@^0.3.1: 859 | version "0.3.1" 860 | resolved "https://registry.yarnpkg.com/cli-table/-/cli-table-0.3.1.tgz#f53b05266a8b1a0b934b3d0821e6e2dc5914ae23" 861 | dependencies: 862 | colors "1.0.3" 863 | 864 | cliui@^2.1.0: 865 | version "2.1.0" 866 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 867 | dependencies: 868 | center-align "^0.1.1" 869 | right-align "^0.1.1" 870 | wordwrap "0.0.2" 871 | 872 | cliui@^4.0.0: 873 | version "4.0.0" 874 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.0.0.tgz#743d4650e05f36d1ed2575b59638d87322bfbbcc" 875 | dependencies: 876 | string-width "^2.1.1" 877 | strip-ansi "^4.0.0" 878 | wrap-ansi "^2.0.0" 879 | 880 | clone-response@1.0.2: 881 | version "1.0.2" 882 | resolved "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.2.tgz#d1dc973920314df67fbeb94223b4ee350239e96b" 883 | dependencies: 884 | mimic-response "^1.0.0" 885 | 886 | co@^4.6.0: 887 | version "4.6.0" 888 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 889 | 890 | code-point-at@^1.0.0: 891 | version "1.1.0" 892 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 893 | 894 | color-convert@^1.9.0: 895 | version "1.9.1" 896 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" 897 | dependencies: 898 | color-name "^1.1.1" 899 | 900 | color-name@^1.1.1: 901 | version "1.1.3" 902 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 903 | 904 | colors@1.0.3: 905 | version "1.0.3" 906 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.0.3.tgz#0433f44d809680fdeb60ed260f1b0c262e82a40b" 907 | 908 | combined-stream@^1.0.5, combined-stream@~1.0.5: 909 | version "1.0.5" 910 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 911 | dependencies: 912 | delayed-stream "~1.0.0" 913 | 914 | commander@2.11.0: 915 | version "2.11.0" 916 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563" 917 | 918 | commander@2.9.0: 919 | version "2.9.0" 920 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 921 | dependencies: 922 | graceful-readlink ">= 1.0.0" 923 | 924 | commander@^2.11.0, commander@^2.12.1: 925 | version "2.13.0" 926 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.13.0.tgz#6964bca67685df7c1f1430c584f07d7597885b9c" 927 | 928 | compare-func@^1.3.1: 929 | version "1.3.2" 930 | resolved "https://registry.yarnpkg.com/compare-func/-/compare-func-1.3.2.tgz#99dd0ba457e1f9bc722b12c08ec33eeab31fa648" 931 | dependencies: 932 | array-ify "^1.0.0" 933 | dot-prop "^3.0.0" 934 | 935 | concat-map@0.0.1: 936 | version "0.0.1" 937 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 938 | 939 | concat-stream@^1.5.2: 940 | version "1.6.0" 941 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 942 | dependencies: 943 | inherits "^2.0.3" 944 | readable-stream "^2.2.2" 945 | typedarray "^0.0.6" 946 | 947 | config-chain@^1.1.11: 948 | version "1.1.11" 949 | resolved "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.11.tgz#aba09747dfbe4c3e70e766a6e41586e1859fc6f2" 950 | dependencies: 951 | ini "^1.3.4" 952 | proto-list "~1.2.1" 953 | 954 | configstore@^3.0.0: 955 | version "3.1.1" 956 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.1.tgz#094ee662ab83fad9917678de114faaea8fcdca90" 957 | dependencies: 958 | dot-prop "^4.1.0" 959 | graceful-fs "^4.1.2" 960 | make-dir "^1.0.0" 961 | unique-string "^1.0.0" 962 | write-file-atomic "^2.0.0" 963 | xdg-basedir "^3.0.0" 964 | 965 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 966 | version "1.1.0" 967 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 968 | 969 | conventional-changelog-angular@^1.4.0: 970 | version "1.6.0" 971 | resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-1.6.0.tgz#0a26a071f2c9fcfcf2b86ba0cfbf6e6301b75bfa" 972 | dependencies: 973 | compare-func "^1.3.1" 974 | q "^1.4.1" 975 | 976 | conventional-changelog-writer@^2.0.1: 977 | version "2.0.3" 978 | resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-2.0.3.tgz#073b0c39f1cc8fc0fd9b1566e93833f51489c81c" 979 | dependencies: 980 | compare-func "^1.3.1" 981 | conventional-commits-filter "^1.1.1" 982 | dateformat "^1.0.11" 983 | handlebars "^4.0.2" 984 | json-stringify-safe "^5.0.1" 985 | lodash "^4.0.0" 986 | meow "^3.3.0" 987 | semver "^5.0.1" 988 | split "^1.0.0" 989 | through2 "^2.0.0" 990 | 991 | conventional-commits-filter@^1.1.1: 992 | version "1.1.1" 993 | resolved "https://registry.yarnpkg.com/conventional-commits-filter/-/conventional-commits-filter-1.1.1.tgz#72172319c0c88328a015b30686b55527b3a5e54a" 994 | dependencies: 995 | is-subset "^0.1.1" 996 | modify-values "^1.0.0" 997 | 998 | conventional-commits-parser@^2.0.0: 999 | version "2.1.0" 1000 | resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-2.1.0.tgz#9b4b7c91124bf2a1a9a2cc1c72760d382cbbb229" 1001 | dependencies: 1002 | JSONStream "^1.0.4" 1003 | is-text-path "^1.0.0" 1004 | lodash "^4.2.1" 1005 | meow "^3.3.0" 1006 | split2 "^2.0.0" 1007 | through2 "^2.0.0" 1008 | trim-off-newlines "^1.0.0" 1009 | 1010 | convert-source-map@^1.5.0: 1011 | version "1.5.1" 1012 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 1013 | 1014 | core-js@^2.4.0, core-js@^2.5.0: 1015 | version "2.5.3" 1016 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.3.tgz#8acc38345824f16d8365b7c9b4259168e8ed603e" 1017 | 1018 | core-util-is@1.0.2, core-util-is@~1.0.0: 1019 | version "1.0.2" 1020 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1021 | 1022 | cosmiconfig@^3.1.0: 1023 | version "3.1.0" 1024 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-3.1.0.tgz#640a94bf9847f321800403cd273af60665c73397" 1025 | dependencies: 1026 | is-directory "^0.3.1" 1027 | js-yaml "^3.9.0" 1028 | parse-json "^3.0.0" 1029 | require-from-string "^2.0.1" 1030 | 1031 | create-error-class@^3.0.0: 1032 | version "3.0.2" 1033 | resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" 1034 | dependencies: 1035 | capture-stack-trace "^1.0.0" 1036 | 1037 | cross-spawn@^5.0.1: 1038 | version "5.1.0" 1039 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 1040 | dependencies: 1041 | lru-cache "^4.0.1" 1042 | shebang-command "^1.2.0" 1043 | which "^1.2.9" 1044 | 1045 | cryptiles@3.x.x: 1046 | version "3.1.2" 1047 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe" 1048 | dependencies: 1049 | boom "5.x.x" 1050 | 1051 | crypto-random-string@^1.0.0: 1052 | version "1.0.0" 1053 | resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" 1054 | 1055 | currently-unhandled@^0.4.1: 1056 | version "0.4.1" 1057 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 1058 | dependencies: 1059 | array-find-index "^1.0.1" 1060 | 1061 | dashdash@^1.12.0: 1062 | version "1.14.1" 1063 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1064 | dependencies: 1065 | assert-plus "^1.0.0" 1066 | 1067 | dateformat@^1.0.11: 1068 | version "1.0.12" 1069 | resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-1.0.12.tgz#9f124b67594c937ff706932e4a642cca8dbbfee9" 1070 | dependencies: 1071 | get-stdin "^4.0.1" 1072 | meow "^3.3.0" 1073 | 1074 | debug@2.6.8: 1075 | version "2.6.8" 1076 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 1077 | dependencies: 1078 | ms "2.0.0" 1079 | 1080 | debug@3.1.0, debug@^3.1.0: 1081 | version "3.1.0" 1082 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 1083 | dependencies: 1084 | ms "2.0.0" 1085 | 1086 | debug@^2.6.8: 1087 | version "2.6.9" 1088 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1089 | dependencies: 1090 | ms "2.0.0" 1091 | 1092 | decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: 1093 | version "1.2.0" 1094 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1095 | 1096 | decode-uri-component@^0.2.0: 1097 | version "0.2.0" 1098 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 1099 | 1100 | decompress-response@^3.3.0: 1101 | version "3.3.0" 1102 | resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3" 1103 | dependencies: 1104 | mimic-response "^1.0.0" 1105 | 1106 | deep-eql@^3.0.0: 1107 | version "3.0.1" 1108 | resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-3.0.1.tgz#dfc9404400ad1c8fe023e7da1df1c147c4b444df" 1109 | dependencies: 1110 | type-detect "^4.0.0" 1111 | 1112 | deep-extend@~0.4.0: 1113 | version "0.4.2" 1114 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 1115 | 1116 | delayed-stream@~1.0.0: 1117 | version "1.0.0" 1118 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1119 | 1120 | delegates@^1.0.0: 1121 | version "1.0.0" 1122 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1123 | 1124 | detect-indent@^4.0.0: 1125 | version "4.0.0" 1126 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1127 | dependencies: 1128 | repeating "^2.0.0" 1129 | 1130 | diff@3.2.0: 1131 | version "3.2.0" 1132 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 1133 | 1134 | diff@3.3.1: 1135 | version "3.3.1" 1136 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.3.1.tgz#aa8567a6eed03c531fc89d3f711cd0e5259dec75" 1137 | 1138 | diff@^3.2.0: 1139 | version "3.4.0" 1140 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.4.0.tgz#b1d85507daf3964828de54b37d0d73ba67dda56c" 1141 | 1142 | dir-glob@^2.0.0: 1143 | version "2.0.0" 1144 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-2.0.0.tgz#0b205d2b6aef98238ca286598a8204d29d0a0034" 1145 | dependencies: 1146 | arrify "^1.0.1" 1147 | path-type "^3.0.0" 1148 | 1149 | dot-prop@^3.0.0: 1150 | version "3.0.0" 1151 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-3.0.0.tgz#1b708af094a49c9a0e7dbcad790aba539dac1177" 1152 | dependencies: 1153 | is-obj "^1.0.0" 1154 | 1155 | dot-prop@^4.1.0: 1156 | version "4.2.0" 1157 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57" 1158 | dependencies: 1159 | is-obj "^1.0.0" 1160 | 1161 | dotenv@^4.0.0: 1162 | version "4.0.0" 1163 | resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-4.0.0.tgz#864ef1379aced55ce6f95debecdce179f7a0cd1d" 1164 | 1165 | duplexer2@~0.1.0: 1166 | version "0.1.4" 1167 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" 1168 | dependencies: 1169 | readable-stream "^2.0.2" 1170 | 1171 | duplexer3@^0.1.4: 1172 | version "0.1.4" 1173 | resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" 1174 | 1175 | ecc-jsbn@~0.1.1: 1176 | version "0.1.1" 1177 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1178 | dependencies: 1179 | jsbn "~0.1.0" 1180 | 1181 | electron-releases@^2.1.0: 1182 | version "2.1.0" 1183 | resolved "https://registry.yarnpkg.com/electron-releases/-/electron-releases-2.1.0.tgz#c5614bf811f176ce3c836e368a0625782341fd4e" 1184 | 1185 | electron-to-chromium@^1.3.30: 1186 | version "1.3.30" 1187 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.30.tgz#9666f532a64586651fc56a72513692e820d06a80" 1188 | dependencies: 1189 | electron-releases "^2.1.0" 1190 | 1191 | error-ex@^1.2.0, error-ex@^1.3.1: 1192 | version "1.3.1" 1193 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1194 | dependencies: 1195 | is-arrayish "^0.2.1" 1196 | 1197 | es6-promise@^4.0.3: 1198 | version "4.2.2" 1199 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.2.2.tgz#f722d7769af88bd33bc13ec6605e1f92966b82d9" 1200 | 1201 | es6-promisify@^5.0.0: 1202 | version "5.0.0" 1203 | resolved "https://registry.yarnpkg.com/es6-promisify/-/es6-promisify-5.0.0.tgz#5109d62f3e56ea967c4b63505aef08291c8a5203" 1204 | dependencies: 1205 | es6-promise "^4.0.3" 1206 | 1207 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1208 | version "1.0.5" 1209 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1210 | 1211 | esprima@^4.0.0: 1212 | version "4.0.0" 1213 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 1214 | 1215 | esprima@~3.0.0: 1216 | version "3.0.0" 1217 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.0.0.tgz#53cf247acda77313e551c3aa2e73342d3fb4f7d9" 1218 | 1219 | esutils@^2.0.2: 1220 | version "2.0.2" 1221 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1222 | 1223 | execa@^0.7.0: 1224 | version "0.7.0" 1225 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1226 | dependencies: 1227 | cross-spawn "^5.0.1" 1228 | get-stream "^3.0.0" 1229 | is-stream "^1.1.0" 1230 | npm-run-path "^2.0.0" 1231 | p-finally "^1.0.0" 1232 | signal-exit "^3.0.0" 1233 | strip-eof "^1.0.0" 1234 | 1235 | execa@^0.8.0: 1236 | version "0.8.0" 1237 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.8.0.tgz#d8d76bbc1b55217ed190fd6dd49d3c774ecfc8da" 1238 | dependencies: 1239 | cross-spawn "^5.0.1" 1240 | get-stream "^3.0.0" 1241 | is-stream "^1.1.0" 1242 | npm-run-path "^2.0.0" 1243 | p-finally "^1.0.0" 1244 | signal-exit "^3.0.0" 1245 | strip-eof "^1.0.0" 1246 | 1247 | execa@^0.9.0: 1248 | version "0.9.0" 1249 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.9.0.tgz#adb7ce62cf985071f60580deb4a88b9e34712d01" 1250 | dependencies: 1251 | cross-spawn "^5.0.1" 1252 | get-stream "^3.0.0" 1253 | is-stream "^1.1.0" 1254 | npm-run-path "^2.0.0" 1255 | p-finally "^1.0.0" 1256 | signal-exit "^3.0.0" 1257 | strip-eof "^1.0.0" 1258 | 1259 | extend@~3.0.1: 1260 | version "3.0.1" 1261 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1262 | 1263 | extsprintf@1.3.0: 1264 | version "1.3.0" 1265 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1266 | 1267 | extsprintf@^1.2.0: 1268 | version "1.4.0" 1269 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 1270 | 1271 | fast-deep-equal@^1.0.0: 1272 | version "1.0.0" 1273 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 1274 | 1275 | fast-json-stable-stringify@^2.0.0: 1276 | version "2.0.0" 1277 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1278 | 1279 | find-up@^1.0.0: 1280 | version "1.1.2" 1281 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1282 | dependencies: 1283 | path-exists "^2.0.0" 1284 | pinkie-promise "^2.0.0" 1285 | 1286 | find-up@^2.0.0, find-up@^2.1.0: 1287 | version "2.1.0" 1288 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1289 | dependencies: 1290 | locate-path "^2.0.0" 1291 | 1292 | forever-agent@~0.6.1: 1293 | version "0.6.1" 1294 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1295 | 1296 | form-data@~2.3.1: 1297 | version "2.3.1" 1298 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.1.tgz#6fb94fbd71885306d73d15cc497fe4cc4ecd44bf" 1299 | dependencies: 1300 | asynckit "^0.4.0" 1301 | combined-stream "^1.0.5" 1302 | mime-types "^2.1.12" 1303 | 1304 | from2@^2.1.1: 1305 | version "2.3.0" 1306 | resolved "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af" 1307 | dependencies: 1308 | inherits "^2.0.1" 1309 | readable-stream "^2.0.0" 1310 | 1311 | fs-extra@^5.0.0: 1312 | version "5.0.0" 1313 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-5.0.0.tgz#414d0110cdd06705734d055652c5411260c31abd" 1314 | dependencies: 1315 | graceful-fs "^4.1.2" 1316 | jsonfile "^4.0.0" 1317 | universalify "^0.1.0" 1318 | 1319 | fs.realpath@^1.0.0: 1320 | version "1.0.0" 1321 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1322 | 1323 | gauge@~2.7.3: 1324 | version "2.7.4" 1325 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1326 | dependencies: 1327 | aproba "^1.0.3" 1328 | console-control-strings "^1.0.0" 1329 | has-unicode "^2.0.0" 1330 | object-assign "^4.1.0" 1331 | signal-exit "^3.0.0" 1332 | string-width "^1.0.1" 1333 | strip-ansi "^3.0.1" 1334 | wide-align "^1.1.0" 1335 | 1336 | get-caller-file@^1.0.1: 1337 | version "1.0.2" 1338 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1339 | 1340 | get-func-name@^2.0.0: 1341 | version "2.0.0" 1342 | resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41" 1343 | 1344 | get-stdin@^4.0.1: 1345 | version "4.0.1" 1346 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 1347 | 1348 | get-stream@3.0.0, get-stream@^3.0.0: 1349 | version "3.0.0" 1350 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1351 | 1352 | getpass@^0.1.1: 1353 | version "0.1.7" 1354 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1355 | dependencies: 1356 | assert-plus "^1.0.0" 1357 | 1358 | git-log-parser@^1.2.0: 1359 | version "1.2.0" 1360 | resolved "https://registry.yarnpkg.com/git-log-parser/-/git-log-parser-1.2.0.tgz#2e6a4c1b13fc00028207ba795a7ac31667b9fd4a" 1361 | dependencies: 1362 | argv-formatter "~1.0.0" 1363 | spawn-error-forwarder "~1.0.0" 1364 | split2 "~1.0.0" 1365 | stream-combiner2 "~1.1.1" 1366 | through2 "~2.0.0" 1367 | traverse "~0.6.6" 1368 | 1369 | git-up@^2.0.0: 1370 | version "2.0.10" 1371 | resolved "https://registry.yarnpkg.com/git-up/-/git-up-2.0.10.tgz#20fe6bafbef4384cae253dc4f463c49a0c3bd2ec" 1372 | dependencies: 1373 | is-ssh "^1.3.0" 1374 | parse-url "^1.3.0" 1375 | 1376 | git-url-parse@^7.0.1: 1377 | version "7.0.2" 1378 | resolved "https://registry.yarnpkg.com/git-url-parse/-/git-url-parse-7.0.2.tgz#75fc7ae08e5daa90edc59043cdfa8da57c5a8715" 1379 | dependencies: 1380 | git-up "^2.0.0" 1381 | 1382 | github@^13.0.0, github@^13.0.1: 1383 | version "13.1.0" 1384 | resolved "https://registry.yarnpkg.com/github/-/github-13.1.0.tgz#fc925950beebdff0cb0583197598b86f41bedaa4" 1385 | dependencies: 1386 | debug "^3.1.0" 1387 | dotenv "^4.0.0" 1388 | https-proxy-agent "^2.1.0" 1389 | is-stream "^1.1.0" 1390 | lodash "^4.17.4" 1391 | proxy-from-env "^1.0.0" 1392 | url-template "^2.0.8" 1393 | 1394 | glob@7.1.1: 1395 | version "7.1.1" 1396 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1397 | dependencies: 1398 | fs.realpath "^1.0.0" 1399 | inflight "^1.0.4" 1400 | inherits "2" 1401 | minimatch "^3.0.2" 1402 | once "^1.3.0" 1403 | path-is-absolute "^1.0.0" 1404 | 1405 | glob@7.1.2, glob@^7.1.1, glob@^7.1.2: 1406 | version "7.1.2" 1407 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1408 | dependencies: 1409 | fs.realpath "^1.0.0" 1410 | inflight "^1.0.4" 1411 | inherits "2" 1412 | minimatch "^3.0.4" 1413 | once "^1.3.0" 1414 | path-is-absolute "^1.0.0" 1415 | 1416 | global-dirs@^0.1.0: 1417 | version "0.1.1" 1418 | resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445" 1419 | dependencies: 1420 | ini "^1.3.4" 1421 | 1422 | globals@^9.18.0: 1423 | version "9.18.0" 1424 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1425 | 1426 | globby@^7.1.1: 1427 | version "7.1.1" 1428 | resolved "https://registry.yarnpkg.com/globby/-/globby-7.1.1.tgz#fb2ccff9401f8600945dfada97440cca972b8680" 1429 | dependencies: 1430 | array-union "^1.0.1" 1431 | dir-glob "^2.0.0" 1432 | glob "^7.1.2" 1433 | ignore "^3.3.5" 1434 | pify "^3.0.0" 1435 | slash "^1.0.0" 1436 | 1437 | got@^6.7.1: 1438 | version "6.7.1" 1439 | resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0" 1440 | dependencies: 1441 | create-error-class "^3.0.0" 1442 | duplexer3 "^0.1.4" 1443 | get-stream "^3.0.0" 1444 | is-redirect "^1.0.0" 1445 | is-retry-allowed "^1.0.0" 1446 | is-stream "^1.0.0" 1447 | lowercase-keys "^1.0.0" 1448 | safe-buffer "^5.0.1" 1449 | timed-out "^4.0.0" 1450 | unzip-response "^2.0.1" 1451 | url-parse-lax "^1.0.0" 1452 | 1453 | got@^8.0.1: 1454 | version "8.0.1" 1455 | resolved "https://registry.yarnpkg.com/got/-/got-8.0.1.tgz#6d7f8bb3eb99e5af912efe26a104476441e08e7f" 1456 | dependencies: 1457 | "@sindresorhus/is" "^0.6.0" 1458 | cacheable-request "^2.1.1" 1459 | decompress-response "^3.3.0" 1460 | duplexer3 "^0.1.4" 1461 | get-stream "^3.0.0" 1462 | into-stream "^3.1.0" 1463 | is-retry-allowed "^1.1.0" 1464 | isurl "^1.0.0-alpha5" 1465 | lowercase-keys "^1.0.0" 1466 | mimic-response "^1.0.0" 1467 | p-cancelable "^0.3.0" 1468 | p-timeout "^2.0.1" 1469 | pify "^3.0.0" 1470 | safe-buffer "^5.1.1" 1471 | timed-out "^4.0.1" 1472 | url-parse-lax "^3.0.0" 1473 | url-to-options "^1.0.1" 1474 | 1475 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6: 1476 | version "4.1.11" 1477 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1478 | 1479 | "graceful-readlink@>= 1.0.0": 1480 | version "1.0.1" 1481 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1482 | 1483 | growl@1.10.3: 1484 | version "1.10.3" 1485 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.10.3.tgz#1926ba90cf3edfe2adb4927f5880bc22c66c790f" 1486 | 1487 | growl@1.9.2: 1488 | version "1.9.2" 1489 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f" 1490 | 1491 | handlebars@^4.0.2: 1492 | version "4.0.11" 1493 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.11.tgz#630a35dfe0294bc281edae6ffc5d329fc7982dcc" 1494 | dependencies: 1495 | async "^1.4.0" 1496 | optimist "^0.6.1" 1497 | source-map "^0.4.4" 1498 | optionalDependencies: 1499 | uglify-js "^2.6" 1500 | 1501 | har-schema@^2.0.0: 1502 | version "2.0.0" 1503 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 1504 | 1505 | har-validator@~5.0.3: 1506 | version "5.0.3" 1507 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd" 1508 | dependencies: 1509 | ajv "^5.1.0" 1510 | har-schema "^2.0.0" 1511 | 1512 | has-ansi@^2.0.0: 1513 | version "2.0.0" 1514 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1515 | dependencies: 1516 | ansi-regex "^2.0.0" 1517 | 1518 | has-flag@^1.0.0: 1519 | version "1.0.0" 1520 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1521 | 1522 | has-flag@^2.0.0: 1523 | version "2.0.0" 1524 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1525 | 1526 | has-symbol-support-x@^1.4.1: 1527 | version "1.4.1" 1528 | resolved "https://registry.yarnpkg.com/has-symbol-support-x/-/has-symbol-support-x-1.4.1.tgz#66ec2e377e0c7d7ccedb07a3a84d77510ff1bc4c" 1529 | 1530 | has-to-string-tag-x@^1.2.0: 1531 | version "1.4.1" 1532 | resolved "https://registry.yarnpkg.com/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz#a045ab383d7b4b2012a00148ab0aa5f290044d4d" 1533 | dependencies: 1534 | has-symbol-support-x "^1.4.1" 1535 | 1536 | has-unicode@^2.0.0: 1537 | version "2.0.1" 1538 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1539 | 1540 | hawk@~6.0.2: 1541 | version "6.0.2" 1542 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038" 1543 | dependencies: 1544 | boom "4.x.x" 1545 | cryptiles "3.x.x" 1546 | hoek "4.x.x" 1547 | sntp "2.x.x" 1548 | 1549 | he@1.1.1: 1550 | version "1.1.1" 1551 | resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd" 1552 | 1553 | hoek@4.x.x: 1554 | version "4.2.0" 1555 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.0.tgz#72d9d0754f7fe25ca2d01ad8f8f9a9449a89526d" 1556 | 1557 | home-or-tmp@^2.0.0: 1558 | version "2.0.0" 1559 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1560 | dependencies: 1561 | os-homedir "^1.0.0" 1562 | os-tmpdir "^1.0.1" 1563 | 1564 | hosted-git-info@^2.1.4, hosted-git-info@^2.4.2: 1565 | version "2.5.0" 1566 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 1567 | 1568 | http-cache-semantics@3.8.1: 1569 | version "3.8.1" 1570 | resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz#39b0e16add9b605bf0a9ef3d9daaf4843b4cacd2" 1571 | 1572 | http-signature@~1.2.0: 1573 | version "1.2.0" 1574 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 1575 | dependencies: 1576 | assert-plus "^1.0.0" 1577 | jsprim "^1.2.2" 1578 | sshpk "^1.7.0" 1579 | 1580 | https-proxy-agent@^2.1.0: 1581 | version "2.1.1" 1582 | resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-2.1.1.tgz#a7ce4382a1ba8266ee848578778122d491260fd9" 1583 | dependencies: 1584 | agent-base "^4.1.0" 1585 | debug "^3.1.0" 1586 | 1587 | ignore@^3.3.5: 1588 | version "3.3.7" 1589 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.7.tgz#612289bfb3c220e186a58118618d5be8c1bab021" 1590 | 1591 | import-from@^2.1.0: 1592 | version "2.1.0" 1593 | resolved "https://registry.yarnpkg.com/import-from/-/import-from-2.1.0.tgz#335db7f2a7affd53aaa471d4b8021dee36b7f3b1" 1594 | dependencies: 1595 | resolve-from "^3.0.0" 1596 | 1597 | import-lazy@^2.1.0: 1598 | version "2.1.0" 1599 | resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" 1600 | 1601 | imurmurhash@^0.1.4: 1602 | version "0.1.4" 1603 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1604 | 1605 | indent-string@^2.1.0: 1606 | version "2.1.0" 1607 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 1608 | dependencies: 1609 | repeating "^2.0.0" 1610 | 1611 | inflight@^1.0.4: 1612 | version "1.0.6" 1613 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1614 | dependencies: 1615 | once "^1.3.0" 1616 | wrappy "1" 1617 | 1618 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.3: 1619 | version "2.0.3" 1620 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1621 | 1622 | ini@^1.3.4, ini@~1.3.0: 1623 | version "1.3.5" 1624 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1625 | 1626 | into-stream@^3.1.0: 1627 | version "3.1.0" 1628 | resolved "https://registry.yarnpkg.com/into-stream/-/into-stream-3.1.0.tgz#96fb0a936c12babd6ff1752a17d05616abd094c6" 1629 | dependencies: 1630 | from2 "^2.1.1" 1631 | p-is-promise "^1.1.0" 1632 | 1633 | invariant@^2.2.2: 1634 | version "2.2.2" 1635 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1636 | dependencies: 1637 | loose-envify "^1.0.0" 1638 | 1639 | invert-kv@^1.0.0: 1640 | version "1.0.0" 1641 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1642 | 1643 | is-arrayish@^0.2.1: 1644 | version "0.2.1" 1645 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1646 | 1647 | is-buffer@^1.1.5: 1648 | version "1.1.6" 1649 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1650 | 1651 | is-builtin-module@^1.0.0: 1652 | version "1.0.0" 1653 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1654 | dependencies: 1655 | builtin-modules "^1.0.0" 1656 | 1657 | is-directory@^0.3.1: 1658 | version "0.3.1" 1659 | resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" 1660 | 1661 | is-finite@^1.0.0: 1662 | version "1.0.2" 1663 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1664 | dependencies: 1665 | number-is-nan "^1.0.0" 1666 | 1667 | is-fullwidth-code-point@^1.0.0: 1668 | version "1.0.0" 1669 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1670 | dependencies: 1671 | number-is-nan "^1.0.0" 1672 | 1673 | is-fullwidth-code-point@^2.0.0: 1674 | version "2.0.0" 1675 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1676 | 1677 | is-installed-globally@^0.1.0: 1678 | version "0.1.0" 1679 | resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.1.0.tgz#0dfd98f5a9111716dd535dda6492f67bf3d25a80" 1680 | dependencies: 1681 | global-dirs "^0.1.0" 1682 | is-path-inside "^1.0.0" 1683 | 1684 | is-npm@^1.0.0: 1685 | version "1.0.0" 1686 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 1687 | 1688 | is-obj@^1.0.0: 1689 | version "1.0.1" 1690 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 1691 | 1692 | is-object@^1.0.1: 1693 | version "1.0.1" 1694 | resolved "https://registry.yarnpkg.com/is-object/-/is-object-1.0.1.tgz#8952688c5ec2ffd6b03ecc85e769e02903083470" 1695 | 1696 | is-path-inside@^1.0.0: 1697 | version "1.0.1" 1698 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" 1699 | dependencies: 1700 | path-is-inside "^1.0.1" 1701 | 1702 | is-plain-obj@^1.0.0: 1703 | version "1.1.0" 1704 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 1705 | 1706 | is-redirect@^1.0.0: 1707 | version "1.0.0" 1708 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 1709 | 1710 | is-retry-allowed@^1.0.0, is-retry-allowed@^1.1.0: 1711 | version "1.1.0" 1712 | resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" 1713 | 1714 | is-ssh@^1.3.0: 1715 | version "1.3.0" 1716 | resolved "https://registry.yarnpkg.com/is-ssh/-/is-ssh-1.3.0.tgz#ebea1169a2614da392a63740366c3ce049d8dff6" 1717 | dependencies: 1718 | protocols "^1.1.0" 1719 | 1720 | is-stream@^1.0.0, is-stream@^1.1.0: 1721 | version "1.1.0" 1722 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1723 | 1724 | is-subset@^0.1.1: 1725 | version "0.1.1" 1726 | resolved "https://registry.yarnpkg.com/is-subset/-/is-subset-0.1.1.tgz#8a59117d932de1de00f245fcdd39ce43f1e939a6" 1727 | 1728 | is-text-path@^1.0.0: 1729 | version "1.0.1" 1730 | resolved "https://registry.yarnpkg.com/is-text-path/-/is-text-path-1.0.1.tgz#4e1aa0fb51bfbcb3e92688001397202c1775b66e" 1731 | dependencies: 1732 | text-extensions "^1.0.0" 1733 | 1734 | is-typedarray@~1.0.0: 1735 | version "1.0.0" 1736 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1737 | 1738 | is-utf8@^0.2.0: 1739 | version "0.2.1" 1740 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1741 | 1742 | isarray@~1.0.0: 1743 | version "1.0.0" 1744 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1745 | 1746 | isexe@^2.0.0: 1747 | version "2.0.0" 1748 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1749 | 1750 | isstream@~0.1.2: 1751 | version "0.1.2" 1752 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1753 | 1754 | isurl@^1.0.0-alpha5: 1755 | version "1.0.0" 1756 | resolved "https://registry.yarnpkg.com/isurl/-/isurl-1.0.0.tgz#b27f4f49f3cdaa3ea44a0a5b7f3462e6edc39d67" 1757 | dependencies: 1758 | has-to-string-tag-x "^1.2.0" 1759 | is-object "^1.0.1" 1760 | 1761 | js-tokens@^3.0.0, js-tokens@^3.0.2: 1762 | version "3.0.2" 1763 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1764 | 1765 | js-yaml@^3.10.0, js-yaml@^3.7.0, js-yaml@^3.9.0: 1766 | version "3.10.0" 1767 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" 1768 | dependencies: 1769 | argparse "^1.0.7" 1770 | esprima "^4.0.0" 1771 | 1772 | jsbn@~0.1.0: 1773 | version "0.1.1" 1774 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1775 | 1776 | jsesc@^1.3.0: 1777 | version "1.3.0" 1778 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1779 | 1780 | jsesc@~0.5.0: 1781 | version "0.5.0" 1782 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1783 | 1784 | json-buffer@3.0.0: 1785 | version "3.0.0" 1786 | resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.0.tgz#5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898" 1787 | 1788 | json-parse-better-errors@^1.0.1: 1789 | version "1.0.1" 1790 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.1.tgz#50183cd1b2d25275de069e9e71b467ac9eab973a" 1791 | 1792 | json-schema-traverse@^0.3.0: 1793 | version "0.3.1" 1794 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 1795 | 1796 | json-schema@0.2.3: 1797 | version "0.2.3" 1798 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1799 | 1800 | json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.1: 1801 | version "5.0.1" 1802 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1803 | 1804 | json3@3.3.2: 1805 | version "3.3.2" 1806 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" 1807 | 1808 | json5@^0.5.1: 1809 | version "0.5.1" 1810 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1811 | 1812 | jsonfile@^4.0.0: 1813 | version "4.0.0" 1814 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" 1815 | optionalDependencies: 1816 | graceful-fs "^4.1.6" 1817 | 1818 | jsonparse@^1.2.0: 1819 | version "1.3.1" 1820 | resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" 1821 | 1822 | jsprim@^1.2.2: 1823 | version "1.4.1" 1824 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1825 | dependencies: 1826 | assert-plus "1.0.0" 1827 | extsprintf "1.3.0" 1828 | json-schema "0.2.3" 1829 | verror "1.10.0" 1830 | 1831 | keyv@3.0.0: 1832 | version "3.0.0" 1833 | resolved "https://registry.yarnpkg.com/keyv/-/keyv-3.0.0.tgz#44923ba39e68b12a7cec7df6c3268c031f2ef373" 1834 | dependencies: 1835 | json-buffer "3.0.0" 1836 | 1837 | kind-of@^3.0.2: 1838 | version "3.2.2" 1839 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1840 | dependencies: 1841 | is-buffer "^1.1.5" 1842 | 1843 | latest-version@^3.0.0: 1844 | version "3.1.0" 1845 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15" 1846 | dependencies: 1847 | package-json "^4.0.0" 1848 | 1849 | lazy-cache@^1.0.3: 1850 | version "1.0.4" 1851 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1852 | 1853 | lcid@^1.0.0: 1854 | version "1.0.0" 1855 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1856 | dependencies: 1857 | invert-kv "^1.0.0" 1858 | 1859 | load-json-file@^1.0.0: 1860 | version "1.1.0" 1861 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1862 | dependencies: 1863 | graceful-fs "^4.1.2" 1864 | parse-json "^2.2.0" 1865 | pify "^2.0.0" 1866 | pinkie-promise "^2.0.0" 1867 | strip-bom "^2.0.0" 1868 | 1869 | load-json-file@^4.0.0: 1870 | version "4.0.0" 1871 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" 1872 | dependencies: 1873 | graceful-fs "^4.1.2" 1874 | parse-json "^4.0.0" 1875 | pify "^3.0.0" 1876 | strip-bom "^3.0.0" 1877 | 1878 | locate-path@^2.0.0: 1879 | version "2.0.0" 1880 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1881 | dependencies: 1882 | p-locate "^2.0.0" 1883 | path-exists "^3.0.0" 1884 | 1885 | lodash._baseassign@^3.0.0: 1886 | version "3.2.0" 1887 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 1888 | dependencies: 1889 | lodash._basecopy "^3.0.0" 1890 | lodash.keys "^3.0.0" 1891 | 1892 | lodash._basecopy@^3.0.0: 1893 | version "3.0.1" 1894 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 1895 | 1896 | lodash._basecreate@^3.0.0: 1897 | version "3.0.3" 1898 | resolved "https://registry.yarnpkg.com/lodash._basecreate/-/lodash._basecreate-3.0.3.tgz#1bc661614daa7fc311b7d03bf16806a0213cf821" 1899 | 1900 | lodash._getnative@^3.0.0: 1901 | version "3.9.1" 1902 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 1903 | 1904 | lodash._isiterateecall@^3.0.0: 1905 | version "3.0.9" 1906 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 1907 | 1908 | lodash.assign@^4.2.0: 1909 | version "4.2.0" 1910 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" 1911 | 1912 | lodash.create@3.1.1: 1913 | version "3.1.1" 1914 | resolved "https://registry.yarnpkg.com/lodash.create/-/lodash.create-3.1.1.tgz#d7f2849f0dbda7e04682bb8cd72ab022461debe7" 1915 | dependencies: 1916 | lodash._baseassign "^3.0.0" 1917 | lodash._basecreate "^3.0.0" 1918 | lodash._isiterateecall "^3.0.0" 1919 | 1920 | lodash.isarguments@^3.0.0: 1921 | version "3.1.0" 1922 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 1923 | 1924 | lodash.isarray@^3.0.0: 1925 | version "3.0.4" 1926 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 1927 | 1928 | lodash.keys@^3.0.0: 1929 | version "3.1.2" 1930 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 1931 | dependencies: 1932 | lodash._getnative "^3.0.0" 1933 | lodash.isarguments "^3.0.0" 1934 | lodash.isarray "^3.0.0" 1935 | 1936 | lodash.toarray@^4.4.0: 1937 | version "4.4.0" 1938 | resolved "https://registry.yarnpkg.com/lodash.toarray/-/lodash.toarray-4.4.0.tgz#24c4bfcd6b2fba38bfd0594db1179d8e9b656561" 1939 | 1940 | lodash@^4.0.0, lodash@^4.17.4, lodash@^4.2.1: 1941 | version "4.17.4" 1942 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1943 | 1944 | longest@^1.0.1: 1945 | version "1.0.1" 1946 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 1947 | 1948 | loose-envify@^1.0.0: 1949 | version "1.3.1" 1950 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1951 | dependencies: 1952 | js-tokens "^3.0.0" 1953 | 1954 | loud-rejection@^1.0.0: 1955 | version "1.6.0" 1956 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 1957 | dependencies: 1958 | currently-unhandled "^0.4.1" 1959 | signal-exit "^3.0.0" 1960 | 1961 | lowercase-keys@1.0.0, lowercase-keys@^1.0.0: 1962 | version "1.0.0" 1963 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" 1964 | 1965 | lru-cache@^4.0.1: 1966 | version "4.1.1" 1967 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 1968 | dependencies: 1969 | pseudomap "^1.0.2" 1970 | yallist "^2.1.2" 1971 | 1972 | make-dir@^1.0.0: 1973 | version "1.1.0" 1974 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.1.0.tgz#19b4369fe48c116f53c2af95ad102c0e39e85d51" 1975 | dependencies: 1976 | pify "^3.0.0" 1977 | 1978 | map-obj@^1.0.0, map-obj@^1.0.1: 1979 | version "1.0.1" 1980 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 1981 | 1982 | marked-terminal@^2.0.0: 1983 | version "2.0.0" 1984 | resolved "https://registry.yarnpkg.com/marked-terminal/-/marked-terminal-2.0.0.tgz#5eaf568be66f686541afa52a558280310a31de2d" 1985 | dependencies: 1986 | cardinal "^1.0.0" 1987 | chalk "^1.1.3" 1988 | cli-table "^0.3.1" 1989 | lodash.assign "^4.2.0" 1990 | node-emoji "^1.4.1" 1991 | 1992 | marked@^0.3.6: 1993 | version "0.3.12" 1994 | resolved "https://registry.yarnpkg.com/marked/-/marked-0.3.12.tgz#7cf25ff2252632f3fe2406bde258e94eee927519" 1995 | 1996 | mem@^1.1.0: 1997 | version "1.1.0" 1998 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 1999 | dependencies: 2000 | mimic-fn "^1.0.0" 2001 | 2002 | meow@^3.3.0: 2003 | version "3.7.0" 2004 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 2005 | dependencies: 2006 | camelcase-keys "^2.0.0" 2007 | decamelize "^1.1.2" 2008 | loud-rejection "^1.0.0" 2009 | map-obj "^1.0.1" 2010 | minimist "^1.1.3" 2011 | normalize-package-data "^2.3.4" 2012 | object-assign "^4.0.1" 2013 | read-pkg-up "^1.0.1" 2014 | redent "^1.0.0" 2015 | trim-newlines "^1.0.0" 2016 | 2017 | mime-db@~1.30.0: 2018 | version "1.30.0" 2019 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 2020 | 2021 | mime-types@^2.1.12, mime-types@~2.1.17: 2022 | version "2.1.17" 2023 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 2024 | dependencies: 2025 | mime-db "~1.30.0" 2026 | 2027 | mime@^2.0.3: 2028 | version "2.2.0" 2029 | resolved "https://registry.yarnpkg.com/mime/-/mime-2.2.0.tgz#161e541965551d3b549fa1114391e3a3d55b923b" 2030 | 2031 | mimic-fn@^1.0.0: 2032 | version "1.1.0" 2033 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 2034 | 2035 | mimic-response@^1.0.0: 2036 | version "1.0.0" 2037 | resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.0.tgz#df3d3652a73fded6b9b0b24146e6fd052353458e" 2038 | 2039 | minimatch@^3.0.2, minimatch@^3.0.4: 2040 | version "3.0.4" 2041 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2042 | dependencies: 2043 | brace-expansion "^1.1.7" 2044 | 2045 | minimist@0.0.8: 2046 | version "0.0.8" 2047 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2048 | 2049 | minimist@^1.1.3, minimist@^1.2.0: 2050 | version "1.2.0" 2051 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2052 | 2053 | minimist@~0.0.1: 2054 | version "0.0.10" 2055 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 2056 | 2057 | mkdirp@0.5.1, mkdirp@^0.5.1: 2058 | version "0.5.1" 2059 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2060 | dependencies: 2061 | minimist "0.0.8" 2062 | 2063 | mocha@^3.2.0: 2064 | version "3.5.3" 2065 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-3.5.3.tgz#1e0480fe36d2da5858d1eb6acc38418b26eaa20d" 2066 | dependencies: 2067 | browser-stdout "1.3.0" 2068 | commander "2.9.0" 2069 | debug "2.6.8" 2070 | diff "3.2.0" 2071 | escape-string-regexp "1.0.5" 2072 | glob "7.1.1" 2073 | growl "1.9.2" 2074 | he "1.1.1" 2075 | json3 "3.3.2" 2076 | lodash.create "3.1.1" 2077 | mkdirp "0.5.1" 2078 | supports-color "3.1.2" 2079 | 2080 | mocha@^4.1.0: 2081 | version "4.1.0" 2082 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-4.1.0.tgz#7d86cfbcf35cb829e2754c32e17355ec05338794" 2083 | dependencies: 2084 | browser-stdout "1.3.0" 2085 | commander "2.11.0" 2086 | debug "3.1.0" 2087 | diff "3.3.1" 2088 | escape-string-regexp "1.0.5" 2089 | glob "7.1.2" 2090 | growl "1.10.3" 2091 | he "1.1.1" 2092 | mkdirp "0.5.1" 2093 | supports-color "4.4.0" 2094 | 2095 | modify-values@^1.0.0: 2096 | version "1.0.0" 2097 | resolved "https://registry.yarnpkg.com/modify-values/-/modify-values-1.0.0.tgz#e2b6cdeb9ce19f99317a53722f3dbf5df5eaaab2" 2098 | 2099 | ms@2.0.0: 2100 | version "2.0.0" 2101 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2102 | 2103 | nerf-dart@^1.0.0: 2104 | version "1.0.0" 2105 | resolved "https://registry.yarnpkg.com/nerf-dart/-/nerf-dart-1.0.0.tgz#e6dab7febf5ad816ea81cf5c629c5a0ebde72c1a" 2106 | 2107 | node-emoji@^1.4.1: 2108 | version "1.8.1" 2109 | resolved "https://registry.yarnpkg.com/node-emoji/-/node-emoji-1.8.1.tgz#6eec6bfb07421e2148c75c6bba72421f8530a826" 2110 | dependencies: 2111 | lodash.toarray "^4.4.0" 2112 | 2113 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, "normalize-package-data@~1.0.1 || ^2.0.0": 2114 | version "2.4.0" 2115 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 2116 | dependencies: 2117 | hosted-git-info "^2.1.4" 2118 | is-builtin-module "^1.0.0" 2119 | semver "2 || 3 || 4 || 5" 2120 | validate-npm-package-license "^3.0.1" 2121 | 2122 | normalize-url@2.0.1: 2123 | version "2.0.1" 2124 | resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-2.0.1.tgz#835a9da1551fa26f70e92329069a23aa6574d7e6" 2125 | dependencies: 2126 | prepend-http "^2.0.0" 2127 | query-string "^5.0.1" 2128 | sort-keys "^2.0.0" 2129 | 2130 | npm-conf@^1.1.3: 2131 | version "1.1.3" 2132 | resolved "https://registry.yarnpkg.com/npm-conf/-/npm-conf-1.1.3.tgz#256cc47bd0e218c259c4e9550bf413bc2192aff9" 2133 | dependencies: 2134 | config-chain "^1.1.11" 2135 | pify "^3.0.0" 2136 | 2137 | "npm-package-arg@^3.0.0 || ^4.0.0 || ^5.0.0": 2138 | version "5.1.2" 2139 | resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-5.1.2.tgz#fb18d17bb61e60900d6312619919bd753755ab37" 2140 | dependencies: 2141 | hosted-git-info "^2.4.2" 2142 | osenv "^0.1.4" 2143 | semver "^5.1.0" 2144 | validate-npm-package-name "^3.0.0" 2145 | 2146 | npm-registry-client@^8.5.0: 2147 | version "8.5.0" 2148 | resolved "https://registry.yarnpkg.com/npm-registry-client/-/npm-registry-client-8.5.0.tgz#4878fb6fa1f18a5dc08ae83acf94d0d0112d7ed0" 2149 | dependencies: 2150 | concat-stream "^1.5.2" 2151 | graceful-fs "^4.1.6" 2152 | normalize-package-data "~1.0.1 || ^2.0.0" 2153 | npm-package-arg "^3.0.0 || ^4.0.0 || ^5.0.0" 2154 | once "^1.3.3" 2155 | request "^2.74.0" 2156 | retry "^0.10.0" 2157 | semver "2 >=2.2.1 || 3.x || 4 || 5" 2158 | slide "^1.1.3" 2159 | ssri "^4.1.2" 2160 | optionalDependencies: 2161 | npmlog "2 || ^3.1.0 || ^4.0.0" 2162 | 2163 | npm-run-path@^2.0.0: 2164 | version "2.0.2" 2165 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2166 | dependencies: 2167 | path-key "^2.0.0" 2168 | 2169 | "npmlog@2 || ^3.1.0 || ^4.0.0": 2170 | version "4.1.2" 2171 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2172 | dependencies: 2173 | are-we-there-yet "~1.1.2" 2174 | console-control-strings "~1.1.0" 2175 | gauge "~2.7.3" 2176 | set-blocking "~2.0.0" 2177 | 2178 | number-is-nan@^1.0.0: 2179 | version "1.0.1" 2180 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2181 | 2182 | oauth-sign@~0.8.2: 2183 | version "0.8.2" 2184 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2185 | 2186 | object-assign@^4.0.1, object-assign@^4.1.0: 2187 | version "4.1.1" 2188 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2189 | 2190 | once@^1.3.0, once@^1.3.3: 2191 | version "1.4.0" 2192 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2193 | dependencies: 2194 | wrappy "1" 2195 | 2196 | optimist@^0.6.1: 2197 | version "0.6.1" 2198 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2199 | dependencies: 2200 | minimist "~0.0.1" 2201 | wordwrap "~0.0.2" 2202 | 2203 | os-homedir@^1.0.0: 2204 | version "1.0.2" 2205 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2206 | 2207 | os-locale@^2.0.0: 2208 | version "2.1.0" 2209 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 2210 | dependencies: 2211 | execa "^0.7.0" 2212 | lcid "^1.0.0" 2213 | mem "^1.1.0" 2214 | 2215 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 2216 | version "1.0.2" 2217 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2218 | 2219 | osenv@^0.1.4: 2220 | version "0.1.4" 2221 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2222 | dependencies: 2223 | os-homedir "^1.0.0" 2224 | os-tmpdir "^1.0.0" 2225 | 2226 | p-cancelable@^0.3.0: 2227 | version "0.3.0" 2228 | resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-0.3.0.tgz#b9e123800bcebb7ac13a479be195b507b98d30fa" 2229 | 2230 | p-finally@^1.0.0: 2231 | version "1.0.0" 2232 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2233 | 2234 | p-is-promise@^1.1.0: 2235 | version "1.1.0" 2236 | resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-1.1.0.tgz#9c9456989e9f6588017b0434d56097675c3da05e" 2237 | 2238 | p-limit@^1.1.0: 2239 | version "1.2.0" 2240 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.2.0.tgz#0e92b6bedcb59f022c13d0f1949dc82d15909f1c" 2241 | dependencies: 2242 | p-try "^1.0.0" 2243 | 2244 | p-locate@^2.0.0: 2245 | version "2.0.0" 2246 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2247 | dependencies: 2248 | p-limit "^1.1.0" 2249 | 2250 | p-reduce@^1.0.0: 2251 | version "1.0.0" 2252 | resolved "https://registry.yarnpkg.com/p-reduce/-/p-reduce-1.0.0.tgz#18c2b0dd936a4690a529f8231f58a0fdb6a47dfa" 2253 | 2254 | p-retry@^1.0.0: 2255 | version "1.0.0" 2256 | resolved "https://registry.yarnpkg.com/p-retry/-/p-retry-1.0.0.tgz#3927332a4b7d70269b535515117fc547da1a6968" 2257 | dependencies: 2258 | retry "^0.10.0" 2259 | 2260 | p-timeout@^2.0.1: 2261 | version "2.0.1" 2262 | resolved "https://registry.yarnpkg.com/p-timeout/-/p-timeout-2.0.1.tgz#d8dd1979595d2dc0139e1fe46b8b646cb3cdf038" 2263 | dependencies: 2264 | p-finally "^1.0.0" 2265 | 2266 | p-try@^1.0.0: 2267 | version "1.0.0" 2268 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 2269 | 2270 | package-json@^4.0.0: 2271 | version "4.0.1" 2272 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed" 2273 | dependencies: 2274 | got "^6.7.1" 2275 | registry-auth-token "^3.0.1" 2276 | registry-url "^3.0.3" 2277 | semver "^5.1.0" 2278 | 2279 | parse-github-url@^1.0.1: 2280 | version "1.0.2" 2281 | resolved "https://registry.yarnpkg.com/parse-github-url/-/parse-github-url-1.0.2.tgz#242d3b65cbcdda14bb50439e3242acf6971db395" 2282 | 2283 | parse-json@^2.2.0: 2284 | version "2.2.0" 2285 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2286 | dependencies: 2287 | error-ex "^1.2.0" 2288 | 2289 | parse-json@^3.0.0: 2290 | version "3.0.0" 2291 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-3.0.0.tgz#fa6f47b18e23826ead32f263e744d0e1e847fb13" 2292 | dependencies: 2293 | error-ex "^1.3.1" 2294 | 2295 | parse-json@^4.0.0: 2296 | version "4.0.0" 2297 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" 2298 | dependencies: 2299 | error-ex "^1.3.1" 2300 | json-parse-better-errors "^1.0.1" 2301 | 2302 | parse-url@^1.3.0: 2303 | version "1.3.11" 2304 | resolved "https://registry.yarnpkg.com/parse-url/-/parse-url-1.3.11.tgz#57c15428ab8a892b1f43869645c711d0e144b554" 2305 | dependencies: 2306 | is-ssh "^1.3.0" 2307 | protocols "^1.4.0" 2308 | 2309 | path-exists@^2.0.0: 2310 | version "2.1.0" 2311 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2312 | dependencies: 2313 | pinkie-promise "^2.0.0" 2314 | 2315 | path-exists@^3.0.0: 2316 | version "3.0.0" 2317 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2318 | 2319 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 2320 | version "1.0.1" 2321 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2322 | 2323 | path-is-inside@^1.0.1: 2324 | version "1.0.2" 2325 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2326 | 2327 | path-key@^2.0.0: 2328 | version "2.0.1" 2329 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2330 | 2331 | path-parse@^1.0.5: 2332 | version "1.0.5" 2333 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2334 | 2335 | path-type@^1.0.0: 2336 | version "1.1.0" 2337 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2338 | dependencies: 2339 | graceful-fs "^4.1.2" 2340 | pify "^2.0.0" 2341 | pinkie-promise "^2.0.0" 2342 | 2343 | path-type@^3.0.0: 2344 | version "3.0.0" 2345 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" 2346 | dependencies: 2347 | pify "^3.0.0" 2348 | 2349 | pathval@^1.0.0: 2350 | version "1.1.0" 2351 | resolved "https://registry.yarnpkg.com/pathval/-/pathval-1.1.0.tgz#b942e6d4bde653005ef6b71361def8727d0645e0" 2352 | 2353 | performance-now@^2.1.0: 2354 | version "2.1.0" 2355 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 2356 | 2357 | pify@^2.0.0, pify@^2.3.0: 2358 | version "2.3.0" 2359 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2360 | 2361 | pify@^3.0.0: 2362 | version "3.0.0" 2363 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 2364 | 2365 | pinkie-promise@^2.0.0: 2366 | version "2.0.1" 2367 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2368 | dependencies: 2369 | pinkie "^2.0.0" 2370 | 2371 | pinkie@^2.0.0: 2372 | version "2.0.4" 2373 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2374 | 2375 | prepend-http@^1.0.1: 2376 | version "1.0.4" 2377 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 2378 | 2379 | prepend-http@^2.0.0: 2380 | version "2.0.0" 2381 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897" 2382 | 2383 | private@^0.1.6, private@^0.1.7: 2384 | version "0.1.8" 2385 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 2386 | 2387 | process-nextick-args@~1.0.6: 2388 | version "1.0.7" 2389 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2390 | 2391 | proto-list@~1.2.1: 2392 | version "1.2.4" 2393 | resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849" 2394 | 2395 | protocols@^1.1.0, protocols@^1.4.0: 2396 | version "1.4.6" 2397 | resolved "https://registry.yarnpkg.com/protocols/-/protocols-1.4.6.tgz#f8bb263ea1b5fd7a7604d26b8be39bd77678bf8a" 2398 | 2399 | proxy-from-env@^1.0.0: 2400 | version "1.0.0" 2401 | resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.0.0.tgz#33c50398f70ea7eb96d21f7b817630a55791c7ee" 2402 | 2403 | pseudomap@^1.0.2: 2404 | version "1.0.2" 2405 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2406 | 2407 | punycode@^1.4.1: 2408 | version "1.4.1" 2409 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2410 | 2411 | q@^1.4.1: 2412 | version "1.5.1" 2413 | resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" 2414 | 2415 | qs@~6.5.1: 2416 | version "6.5.1" 2417 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8" 2418 | 2419 | query-string@^5.0.1: 2420 | version "5.0.1" 2421 | resolved "https://registry.yarnpkg.com/query-string/-/query-string-5.0.1.tgz#6e2b86fe0e08aef682ecbe86e85834765402bd88" 2422 | dependencies: 2423 | decode-uri-component "^0.2.0" 2424 | object-assign "^4.1.0" 2425 | strict-uri-encode "^1.0.0" 2426 | 2427 | rc@^1.0.1, rc@^1.1.6: 2428 | version "1.2.3" 2429 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.3.tgz#51575a900f8dd68381c710b4712c2154c3e2035b" 2430 | dependencies: 2431 | deep-extend "~0.4.0" 2432 | ini "~1.3.0" 2433 | minimist "^1.2.0" 2434 | strip-json-comments "~2.0.1" 2435 | 2436 | read-pkg-up@^1.0.1: 2437 | version "1.0.1" 2438 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2439 | dependencies: 2440 | find-up "^1.0.0" 2441 | read-pkg "^1.0.0" 2442 | 2443 | read-pkg-up@^3.0.0: 2444 | version "3.0.0" 2445 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-3.0.0.tgz#3ed496685dba0f8fe118d0691dc51f4a1ff96f07" 2446 | dependencies: 2447 | find-up "^2.0.0" 2448 | read-pkg "^3.0.0" 2449 | 2450 | read-pkg@^1.0.0: 2451 | version "1.1.0" 2452 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2453 | dependencies: 2454 | load-json-file "^1.0.0" 2455 | normalize-package-data "^2.3.2" 2456 | path-type "^1.0.0" 2457 | 2458 | read-pkg@^3.0.0: 2459 | version "3.0.0" 2460 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" 2461 | dependencies: 2462 | load-json-file "^4.0.0" 2463 | normalize-package-data "^2.3.2" 2464 | path-type "^3.0.0" 2465 | 2466 | readable-stream@^2.0.0, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2: 2467 | version "2.3.3" 2468 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 2469 | dependencies: 2470 | core-util-is "~1.0.0" 2471 | inherits "~2.0.3" 2472 | isarray "~1.0.0" 2473 | process-nextick-args "~1.0.6" 2474 | safe-buffer "~5.1.1" 2475 | string_decoder "~1.0.3" 2476 | util-deprecate "~1.0.1" 2477 | 2478 | redent@^1.0.0: 2479 | version "1.0.0" 2480 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 2481 | dependencies: 2482 | indent-string "^2.1.0" 2483 | strip-indent "^1.0.1" 2484 | 2485 | redeyed@~1.0.0: 2486 | version "1.0.1" 2487 | resolved "https://registry.yarnpkg.com/redeyed/-/redeyed-1.0.1.tgz#e96c193b40c0816b00aec842698e61185e55498a" 2488 | dependencies: 2489 | esprima "~3.0.0" 2490 | 2491 | regenerate@^1.2.1: 2492 | version "1.3.3" 2493 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f" 2494 | 2495 | regenerator-runtime@^0.10.5: 2496 | version "0.10.5" 2497 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 2498 | 2499 | regenerator-runtime@^0.11.0: 2500 | version "0.11.1" 2501 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 2502 | 2503 | regenerator-transform@^0.10.0: 2504 | version "0.10.1" 2505 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 2506 | dependencies: 2507 | babel-runtime "^6.18.0" 2508 | babel-types "^6.19.0" 2509 | private "^0.1.6" 2510 | 2511 | regexpu-core@^2.0.0: 2512 | version "2.0.0" 2513 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2514 | dependencies: 2515 | regenerate "^1.2.1" 2516 | regjsgen "^0.2.0" 2517 | regjsparser "^0.1.4" 2518 | 2519 | registry-auth-token@^3.0.1, registry-auth-token@^3.3.1: 2520 | version "3.3.1" 2521 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.1.tgz#fb0d3289ee0d9ada2cbb52af5dfe66cb070d3006" 2522 | dependencies: 2523 | rc "^1.1.6" 2524 | safe-buffer "^5.0.1" 2525 | 2526 | registry-url@^3.0.3: 2527 | version "3.1.0" 2528 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 2529 | dependencies: 2530 | rc "^1.0.1" 2531 | 2532 | regjsgen@^0.2.0: 2533 | version "0.2.0" 2534 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2535 | 2536 | regjsparser@^0.1.4: 2537 | version "0.1.5" 2538 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2539 | dependencies: 2540 | jsesc "~0.5.0" 2541 | 2542 | repeat-string@^1.5.2: 2543 | version "1.6.1" 2544 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2545 | 2546 | repeating@^2.0.0: 2547 | version "2.0.1" 2548 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2549 | dependencies: 2550 | is-finite "^1.0.0" 2551 | 2552 | request@^2.74.0: 2553 | version "2.83.0" 2554 | resolved "https://registry.yarnpkg.com/request/-/request-2.83.0.tgz#ca0b65da02ed62935887808e6f510381034e3356" 2555 | dependencies: 2556 | aws-sign2 "~0.7.0" 2557 | aws4 "^1.6.0" 2558 | caseless "~0.12.0" 2559 | combined-stream "~1.0.5" 2560 | extend "~3.0.1" 2561 | forever-agent "~0.6.1" 2562 | form-data "~2.3.1" 2563 | har-validator "~5.0.3" 2564 | hawk "~6.0.2" 2565 | http-signature "~1.2.0" 2566 | is-typedarray "~1.0.0" 2567 | isstream "~0.1.2" 2568 | json-stringify-safe "~5.0.1" 2569 | mime-types "~2.1.17" 2570 | oauth-sign "~0.8.2" 2571 | performance-now "^2.1.0" 2572 | qs "~6.5.1" 2573 | safe-buffer "^5.1.1" 2574 | stringstream "~0.0.5" 2575 | tough-cookie "~2.3.3" 2576 | tunnel-agent "^0.6.0" 2577 | uuid "^3.1.0" 2578 | 2579 | require-directory@^2.1.1: 2580 | version "2.1.1" 2581 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2582 | 2583 | require-from-string@^2.0.1: 2584 | version "2.0.1" 2585 | resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.1.tgz#c545233e9d7da6616e9d59adfb39fc9f588676ff" 2586 | 2587 | require-main-filename@^1.0.1: 2588 | version "1.0.1" 2589 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2590 | 2591 | resolve-from@^3.0.0: 2592 | version "3.0.0" 2593 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" 2594 | 2595 | resolve@^1.3.2: 2596 | version "1.5.0" 2597 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.5.0.tgz#1f09acce796c9a762579f31b2c1cc4c3cddf9f36" 2598 | dependencies: 2599 | path-parse "^1.0.5" 2600 | 2601 | responselike@1.0.2: 2602 | version "1.0.2" 2603 | resolved "https://registry.yarnpkg.com/responselike/-/responselike-1.0.2.tgz#918720ef3b631c5642be068f15ade5a46f4ba1e7" 2604 | dependencies: 2605 | lowercase-keys "^1.0.0" 2606 | 2607 | retry@^0.10.0: 2608 | version "0.10.1" 2609 | resolved "https://registry.yarnpkg.com/retry/-/retry-0.10.1.tgz#e76388d217992c252750241d3d3956fed98d8ff4" 2610 | 2611 | right-align@^0.1.1: 2612 | version "0.1.3" 2613 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2614 | dependencies: 2615 | align-text "^0.1.1" 2616 | 2617 | 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: 2618 | version "5.1.1" 2619 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2620 | 2621 | semantic-release@^11.0.2: 2622 | version "11.0.2" 2623 | resolved "https://registry.yarnpkg.com/semantic-release/-/semantic-release-11.0.2.tgz#2a09baa33a0e41926ac3290c8b110d22a5ba2a48" 2624 | dependencies: 2625 | "@semantic-release/commit-analyzer" "^5.0.0" 2626 | "@semantic-release/condition-travis" "^7.0.0" 2627 | "@semantic-release/error" "^2.1.0" 2628 | "@semantic-release/github" "^2.0.0" 2629 | "@semantic-release/npm" "^2.0.0" 2630 | "@semantic-release/release-notes-generator" "^6.0.0" 2631 | chalk "^2.3.0" 2632 | commander "^2.11.0" 2633 | cosmiconfig "^3.1.0" 2634 | debug "^3.1.0" 2635 | execa "^0.8.0" 2636 | get-stream "^3.0.0" 2637 | git-log-parser "^1.2.0" 2638 | import-from "^2.1.0" 2639 | lodash "^4.0.0" 2640 | marked "^0.3.6" 2641 | marked-terminal "^2.0.0" 2642 | p-reduce "^1.0.0" 2643 | read-pkg-up "^3.0.0" 2644 | semver "^5.4.1" 2645 | 2646 | semver-diff@^2.0.0: 2647 | version "2.1.0" 2648 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 2649 | dependencies: 2650 | semver "^5.0.3" 2651 | 2652 | "semver@2 >=2.2.1 || 3.x || 4 || 5", "semver@2 || 3 || 4 || 5", semver@^5.0.1, semver@^5.0.3, semver@^5.1.0, semver@^5.3.0, semver@^5.4.1: 2653 | version "5.4.1" 2654 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 2655 | 2656 | set-blocking@^2.0.0, set-blocking@~2.0.0: 2657 | version "2.0.0" 2658 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2659 | 2660 | shebang-command@^1.2.0: 2661 | version "1.2.0" 2662 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2663 | dependencies: 2664 | shebang-regex "^1.0.0" 2665 | 2666 | shebang-regex@^1.0.0: 2667 | version "1.0.0" 2668 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2669 | 2670 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2671 | version "3.0.2" 2672 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2673 | 2674 | slash@^1.0.0: 2675 | version "1.0.0" 2676 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2677 | 2678 | slide@^1.1.3: 2679 | version "1.1.6" 2680 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 2681 | 2682 | sntp@2.x.x: 2683 | version "2.1.0" 2684 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.1.0.tgz#2c6cec14fedc2222739caf9b5c3d85d1cc5a2cc8" 2685 | dependencies: 2686 | hoek "4.x.x" 2687 | 2688 | sort-keys@^2.0.0: 2689 | version "2.0.0" 2690 | resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-2.0.0.tgz#658535584861ec97d730d6cf41822e1f56684128" 2691 | dependencies: 2692 | is-plain-obj "^1.0.0" 2693 | 2694 | source-map-support@^0.4.15: 2695 | version "0.4.18" 2696 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 2697 | dependencies: 2698 | source-map "^0.5.6" 2699 | 2700 | source-map@^0.4.4: 2701 | version "0.4.4" 2702 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 2703 | dependencies: 2704 | amdefine ">=0.0.4" 2705 | 2706 | source-map@^0.5.6, source-map@~0.5.1: 2707 | version "0.5.7" 2708 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2709 | 2710 | spawn-error-forwarder@~1.0.0: 2711 | version "1.0.0" 2712 | resolved "https://registry.yarnpkg.com/spawn-error-forwarder/-/spawn-error-forwarder-1.0.0.tgz#1afd94738e999b0346d7b9fc373be55e07577029" 2713 | 2714 | spdx-correct@~1.0.0: 2715 | version "1.0.2" 2716 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2717 | dependencies: 2718 | spdx-license-ids "^1.0.2" 2719 | 2720 | spdx-expression-parse@~1.0.0: 2721 | version "1.0.4" 2722 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2723 | 2724 | spdx-license-ids@^1.0.2: 2725 | version "1.2.2" 2726 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2727 | 2728 | split2@^2.0.0: 2729 | version "2.2.0" 2730 | resolved "https://registry.yarnpkg.com/split2/-/split2-2.2.0.tgz#186b2575bcf83e85b7d18465756238ee4ee42493" 2731 | dependencies: 2732 | through2 "^2.0.2" 2733 | 2734 | split2@~1.0.0: 2735 | version "1.0.0" 2736 | resolved "https://registry.yarnpkg.com/split2/-/split2-1.0.0.tgz#52e2e221d88c75f9a73f90556e263ff96772b314" 2737 | dependencies: 2738 | through2 "~2.0.0" 2739 | 2740 | split@^1.0.0: 2741 | version "1.0.1" 2742 | resolved "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9" 2743 | dependencies: 2744 | through "2" 2745 | 2746 | sprintf-js@~1.0.2: 2747 | version "1.0.3" 2748 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2749 | 2750 | sshpk@^1.7.0: 2751 | version "1.13.1" 2752 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 2753 | dependencies: 2754 | asn1 "~0.2.3" 2755 | assert-plus "^1.0.0" 2756 | dashdash "^1.12.0" 2757 | getpass "^0.1.1" 2758 | optionalDependencies: 2759 | bcrypt-pbkdf "^1.0.0" 2760 | ecc-jsbn "~0.1.1" 2761 | jsbn "~0.1.0" 2762 | tweetnacl "~0.14.0" 2763 | 2764 | ssri@^4.1.2: 2765 | version "4.1.6" 2766 | resolved "https://registry.yarnpkg.com/ssri/-/ssri-4.1.6.tgz#0cb49b6ac84457e7bdd466cb730c3cb623e9a25b" 2767 | dependencies: 2768 | safe-buffer "^5.1.0" 2769 | 2770 | stream-combiner2@~1.1.1: 2771 | version "1.1.1" 2772 | resolved "https://registry.yarnpkg.com/stream-combiner2/-/stream-combiner2-1.1.1.tgz#fb4d8a1420ea362764e21ad4780397bebcb41cbe" 2773 | dependencies: 2774 | duplexer2 "~0.1.0" 2775 | readable-stream "^2.0.2" 2776 | 2777 | strict-uri-encode@^1.0.0: 2778 | version "1.1.0" 2779 | resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713" 2780 | 2781 | string-width@^1.0.1, string-width@^1.0.2: 2782 | version "1.0.2" 2783 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2784 | dependencies: 2785 | code-point-at "^1.0.0" 2786 | is-fullwidth-code-point "^1.0.0" 2787 | strip-ansi "^3.0.0" 2788 | 2789 | string-width@^2.0.0, string-width@^2.1.1: 2790 | version "2.1.1" 2791 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 2792 | dependencies: 2793 | is-fullwidth-code-point "^2.0.0" 2794 | strip-ansi "^4.0.0" 2795 | 2796 | string_decoder@~1.0.3: 2797 | version "1.0.3" 2798 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 2799 | dependencies: 2800 | safe-buffer "~5.1.0" 2801 | 2802 | stringstream@~0.0.5: 2803 | version "0.0.5" 2804 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2805 | 2806 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2807 | version "3.0.1" 2808 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2809 | dependencies: 2810 | ansi-regex "^2.0.0" 2811 | 2812 | strip-ansi@^4.0.0: 2813 | version "4.0.0" 2814 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 2815 | dependencies: 2816 | ansi-regex "^3.0.0" 2817 | 2818 | strip-bom@^2.0.0: 2819 | version "2.0.0" 2820 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2821 | dependencies: 2822 | is-utf8 "^0.2.0" 2823 | 2824 | strip-bom@^3.0.0: 2825 | version "3.0.0" 2826 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2827 | 2828 | strip-eof@^1.0.0: 2829 | version "1.0.0" 2830 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 2831 | 2832 | strip-indent@^1.0.1: 2833 | version "1.0.1" 2834 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 2835 | dependencies: 2836 | get-stdin "^4.0.1" 2837 | 2838 | strip-json-comments@~2.0.1: 2839 | version "2.0.1" 2840 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2841 | 2842 | supports-color@3.1.2: 2843 | version "3.1.2" 2844 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5" 2845 | dependencies: 2846 | has-flag "^1.0.0" 2847 | 2848 | supports-color@4.4.0: 2849 | version "4.4.0" 2850 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.4.0.tgz#883f7ddabc165142b2a61427f3352ded195d1a3e" 2851 | dependencies: 2852 | has-flag "^2.0.0" 2853 | 2854 | supports-color@^2.0.0: 2855 | version "2.0.0" 2856 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2857 | 2858 | supports-color@^4.0.0: 2859 | version "4.5.0" 2860 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" 2861 | dependencies: 2862 | has-flag "^2.0.0" 2863 | 2864 | term-size@^1.2.0: 2865 | version "1.2.0" 2866 | resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69" 2867 | dependencies: 2868 | execa "^0.7.0" 2869 | 2870 | text-extensions@^1.0.0: 2871 | version "1.7.0" 2872 | resolved "https://registry.yarnpkg.com/text-extensions/-/text-extensions-1.7.0.tgz#faaaba2625ed746d568a23e4d0aacd9bf08a8b39" 2873 | 2874 | through2@^2.0.0, through2@^2.0.2, through2@~2.0.0: 2875 | version "2.0.3" 2876 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 2877 | dependencies: 2878 | readable-stream "^2.1.5" 2879 | xtend "~4.0.1" 2880 | 2881 | through@2, "through@>=2.2.7 <3": 2882 | version "2.3.8" 2883 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 2884 | 2885 | timed-out@^4.0.0, timed-out@^4.0.1: 2886 | version "4.0.1" 2887 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" 2888 | 2889 | to-fast-properties@^1.0.3: 2890 | version "1.0.3" 2891 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 2892 | 2893 | tough-cookie@~2.3.3: 2894 | version "2.3.3" 2895 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 2896 | dependencies: 2897 | punycode "^1.4.1" 2898 | 2899 | traverse@~0.6.6: 2900 | version "0.6.6" 2901 | resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.6.6.tgz#cbdf560fd7b9af632502fed40f918c157ea97137" 2902 | 2903 | travis-deploy-once@^4.0.0: 2904 | version "4.3.1" 2905 | resolved "https://registry.yarnpkg.com/travis-deploy-once/-/travis-deploy-once-4.3.1.tgz#94fd3d3325acecc176798f35ee655bcd53f02fbb" 2906 | dependencies: 2907 | babel-polyfill "^6.26.0" 2908 | babel-preset-env "^1.6.1" 2909 | babel-register "^6.26.0" 2910 | chalk "^2.1.0" 2911 | execa "^0.9.0" 2912 | got "^8.0.1" 2913 | p-retry "^1.0.0" 2914 | semver "^5.4.1" 2915 | update-notifier "^2.3.0" 2916 | url-join "^2.0.2" 2917 | yargs "^10.0.3" 2918 | 2919 | trim-newlines@^1.0.0: 2920 | version "1.0.0" 2921 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 2922 | 2923 | trim-off-newlines@^1.0.0: 2924 | version "1.0.1" 2925 | resolved "https://registry.yarnpkg.com/trim-off-newlines/-/trim-off-newlines-1.0.1.tgz#9f9ba9d9efa8764c387698bcbfeb2c848f11adb3" 2926 | 2927 | trim-right@^1.0.1: 2928 | version "1.0.1" 2929 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2930 | 2931 | tslib@^1.8.0, tslib@^1.8.1: 2932 | version "1.8.1" 2933 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.8.1.tgz#6946af2d1d651a7b1863b531d6e5afa41aa44eac" 2934 | 2935 | tslint@^5.2.0: 2936 | version "5.9.1" 2937 | resolved "https://registry.yarnpkg.com/tslint/-/tslint-5.9.1.tgz#1255f87a3ff57eb0b0e1f0e610a8b4748046c9ae" 2938 | dependencies: 2939 | babel-code-frame "^6.22.0" 2940 | builtin-modules "^1.1.1" 2941 | chalk "^2.3.0" 2942 | commander "^2.12.1" 2943 | diff "^3.2.0" 2944 | glob "^7.1.1" 2945 | js-yaml "^3.7.0" 2946 | minimatch "^3.0.4" 2947 | resolve "^1.3.2" 2948 | semver "^5.3.0" 2949 | tslib "^1.8.0" 2950 | tsutils "^2.12.1" 2951 | 2952 | tsutils@^2.12.1: 2953 | version "2.16.0" 2954 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-2.16.0.tgz#ad8e83f47bef4f7d24d173cc6cd180990c831105" 2955 | dependencies: 2956 | tslib "^1.8.1" 2957 | 2958 | tunnel-agent@^0.6.0: 2959 | version "0.6.0" 2960 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2961 | dependencies: 2962 | safe-buffer "^5.0.1" 2963 | 2964 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2965 | version "0.14.5" 2966 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2967 | 2968 | type-detect@^4.0.0: 2969 | version "4.0.5" 2970 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.5.tgz#d70e5bc81db6de2a381bcaca0c6e0cbdc7635de2" 2971 | 2972 | typedarray@^0.0.6: 2973 | version "0.0.6" 2974 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 2975 | 2976 | typescript@~2.6.2: 2977 | version "2.6.2" 2978 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.6.2.tgz#3c5b6fd7f6de0914269027f03c0946758f7673a4" 2979 | 2980 | uglify-js@^2.6: 2981 | version "2.8.29" 2982 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 2983 | dependencies: 2984 | source-map "~0.5.1" 2985 | yargs "~3.10.0" 2986 | optionalDependencies: 2987 | uglify-to-browserify "~1.0.0" 2988 | 2989 | uglify-to-browserify@~1.0.0: 2990 | version "1.0.2" 2991 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 2992 | 2993 | unique-string@^1.0.0: 2994 | version "1.0.0" 2995 | resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" 2996 | dependencies: 2997 | crypto-random-string "^1.0.0" 2998 | 2999 | universalify@^0.1.0: 3000 | version "0.1.1" 3001 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.1.tgz#fa71badd4437af4c148841e3b3b165f9e9e590b7" 3002 | 3003 | unzip-response@^2.0.1: 3004 | version "2.0.1" 3005 | resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97" 3006 | 3007 | update-notifier@^2.3.0: 3008 | version "2.3.0" 3009 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.3.0.tgz#4e8827a6bb915140ab093559d7014e3ebb837451" 3010 | dependencies: 3011 | boxen "^1.2.1" 3012 | chalk "^2.0.1" 3013 | configstore "^3.0.0" 3014 | import-lazy "^2.1.0" 3015 | is-installed-globally "^0.1.0" 3016 | is-npm "^1.0.0" 3017 | latest-version "^3.0.0" 3018 | semver-diff "^2.0.0" 3019 | xdg-basedir "^3.0.0" 3020 | 3021 | url-join@^2.0.2: 3022 | version "2.0.5" 3023 | resolved "https://registry.yarnpkg.com/url-join/-/url-join-2.0.5.tgz#5af22f18c052a000a48d7b82c5e9c2e2feeda728" 3024 | 3025 | url-parse-lax@^1.0.0: 3026 | version "1.0.0" 3027 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" 3028 | dependencies: 3029 | prepend-http "^1.0.1" 3030 | 3031 | url-parse-lax@^3.0.0: 3032 | version "3.0.0" 3033 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-3.0.0.tgz#16b5cafc07dbe3676c1b1999177823d6503acb0c" 3034 | dependencies: 3035 | prepend-http "^2.0.0" 3036 | 3037 | url-template@^2.0.8: 3038 | version "2.0.8" 3039 | resolved "https://registry.yarnpkg.com/url-template/-/url-template-2.0.8.tgz#fc565a3cccbff7730c775f5641f9555791439f21" 3040 | 3041 | url-to-options@^1.0.1: 3042 | version "1.0.1" 3043 | resolved "https://registry.yarnpkg.com/url-to-options/-/url-to-options-1.0.1.tgz#1505a03a289a48cbd7a434efbaeec5055f5633a9" 3044 | 3045 | util-deprecate@~1.0.1: 3046 | version "1.0.2" 3047 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3048 | 3049 | uuid@^3.1.0: 3050 | version "3.1.0" 3051 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 3052 | 3053 | validate-npm-package-license@^3.0.1: 3054 | version "3.0.1" 3055 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3056 | dependencies: 3057 | spdx-correct "~1.0.0" 3058 | spdx-expression-parse "~1.0.0" 3059 | 3060 | validate-npm-package-name@^3.0.0: 3061 | version "3.0.0" 3062 | resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz#5fa912d81eb7d0c74afc140de7317f0ca7df437e" 3063 | dependencies: 3064 | builtins "^1.0.3" 3065 | 3066 | verror@1.10.0: 3067 | version "1.10.0" 3068 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 3069 | dependencies: 3070 | assert-plus "^1.0.0" 3071 | core-util-is "1.0.2" 3072 | extsprintf "^1.2.0" 3073 | 3074 | which-module@^2.0.0: 3075 | version "2.0.0" 3076 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 3077 | 3078 | which@^1.2.9: 3079 | version "1.3.0" 3080 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 3081 | dependencies: 3082 | isexe "^2.0.0" 3083 | 3084 | wide-align@^1.1.0: 3085 | version "1.1.2" 3086 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 3087 | dependencies: 3088 | string-width "^1.0.2" 3089 | 3090 | widest-line@^2.0.0: 3091 | version "2.0.0" 3092 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-2.0.0.tgz#0142a4e8a243f8882c0233aa0e0281aa76152273" 3093 | dependencies: 3094 | string-width "^2.1.1" 3095 | 3096 | window-size@0.1.0: 3097 | version "0.1.0" 3098 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3099 | 3100 | wordwrap@0.0.2: 3101 | version "0.0.2" 3102 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3103 | 3104 | wordwrap@~0.0.2: 3105 | version "0.0.3" 3106 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3107 | 3108 | wrap-ansi@^2.0.0: 3109 | version "2.1.0" 3110 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3111 | dependencies: 3112 | string-width "^1.0.1" 3113 | strip-ansi "^3.0.1" 3114 | 3115 | wrappy@1: 3116 | version "1.0.2" 3117 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3118 | 3119 | write-file-atomic@^2.0.0: 3120 | version "2.3.0" 3121 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" 3122 | dependencies: 3123 | graceful-fs "^4.1.11" 3124 | imurmurhash "^0.1.4" 3125 | signal-exit "^3.0.2" 3126 | 3127 | xdg-basedir@^3.0.0: 3128 | version "3.0.0" 3129 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" 3130 | 3131 | xtend@~4.0.1: 3132 | version "4.0.1" 3133 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3134 | 3135 | y18n@^3.2.1: 3136 | version "3.2.1" 3137 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3138 | 3139 | yallist@^2.1.2: 3140 | version "2.1.2" 3141 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3142 | 3143 | yargs-parser@^8.1.0: 3144 | version "8.1.0" 3145 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-8.1.0.tgz#f1376a33b6629a5d063782944da732631e966950" 3146 | dependencies: 3147 | camelcase "^4.1.0" 3148 | 3149 | yargs@^10.0.3: 3150 | version "10.1.1" 3151 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-10.1.1.tgz#5fe1ea306985a099b33492001fa19a1e61efe285" 3152 | dependencies: 3153 | cliui "^4.0.0" 3154 | decamelize "^1.1.1" 3155 | find-up "^2.1.0" 3156 | get-caller-file "^1.0.1" 3157 | os-locale "^2.0.0" 3158 | require-directory "^2.1.1" 3159 | require-main-filename "^1.0.1" 3160 | set-blocking "^2.0.0" 3161 | string-width "^2.0.0" 3162 | which-module "^2.0.0" 3163 | y18n "^3.2.1" 3164 | yargs-parser "^8.1.0" 3165 | 3166 | yargs@~3.10.0: 3167 | version "3.10.0" 3168 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3169 | dependencies: 3170 | camelcase "^1.0.2" 3171 | cliui "^2.1.0" 3172 | decamelize "^1.0.0" 3173 | window-size "0.1.0" 3174 | --------------------------------------------------------------------------------