├── .deployment ├── .gitignore ├── HttpTriggerTS ├── function.json ├── httpTriggerTS.test.ts ├── httpTriggerTS.ts ├── index.ts └── sample.dat ├── LICENSE ├── README.md ├── circle.yml ├── deploy.cmd ├── host.json ├── package.json ├── scripts └── publish.sh ├── tsconfig.json └── yarn.lock /.deployment: -------------------------------------------------------------------------------- 1 | [config] 2 | command = deploy.cmd -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | csx 4 | .vs 5 | edge 6 | Publish 7 | .vscode 8 | 9 | *.user 10 | *.suo 11 | *.cscfg 12 | *.Cache 13 | project.lock.json 14 | 15 | /packages 16 | /TestResults 17 | 18 | /tools/NuGet.exe 19 | /App_Data 20 | /secrets 21 | /data 22 | .secrets 23 | appsettings.json 24 | 25 | node_modules 26 | /**/*.js 27 | coverage 28 | -------------------------------------------------------------------------------- /HttpTriggerTS/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "disabled": false, 3 | "bindings": [ 4 | { 5 | "authLevel": "function", 6 | "type": "httpTrigger", 7 | "direction": "in", 8 | "name": "req" 9 | }, 10 | { 11 | "type": "http", 12 | "direction": "out", 13 | "name": "$return" 14 | } 15 | ] 16 | } -------------------------------------------------------------------------------- /HttpTriggerTS/httpTriggerTS.test.ts: -------------------------------------------------------------------------------- 1 | import { httpTriggerTS, HttpRequest, HttpResponse, Context } from '../HttpTriggerTS/httpTriggerTS'; 2 | import * as fs from 'fs'; 3 | import * as path from 'path'; 4 | 5 | const dataPath = path.join(__dirname, './sample.dat'); 6 | const sampleDat = fs.readFileSync(dataPath, { encoding: 'utf8' }); 7 | const data: { name: string } = JSON.parse(sampleDat); 8 | 9 | test('Http trigger with body success', () => { 10 | const mockContext: Context = { 11 | done: (err, response) => { 12 | // As everything is passed to the done function we can do our asserts here. 13 | expect(err).toBeNull(); // We never call the done function with a Error. 14 | 15 | expect(response.status).toBe(200); // When we succeed it should be 200. 16 | expect(response.body).toBe('Hello ' + data.name); // The response body built as in the function. 17 | }, 18 | log: () => { }, // We can use a jest mock here if the logs are important to us, but in this case it is not. 19 | }; 20 | 21 | // This is the request we will use to test our function. 22 | const mockRequest: HttpRequest = { 23 | body: data, // The data from sample.dat 24 | query: {}, 25 | }; 26 | 27 | // Call the function 28 | httpTriggerTS(mockContext, mockRequest); 29 | }); 30 | 31 | test('Http trigger with query success', () => { 32 | const mockContext: Context = { 33 | done: (err, response) => { 34 | expect(err).toBeNull(); 35 | 36 | expect(response.status).toBe(200); 37 | expect(response.body).toBe('Hello ' + data.name); 38 | }, 39 | log: () => { }, 40 | }; 41 | 42 | const mockRequest: HttpRequest = { 43 | body: {}, 44 | query: data, 45 | }; 46 | 47 | httpTriggerTS(mockContext, mockRequest); 48 | }); 49 | 50 | test('Http trigger fail', () => { 51 | const mockContext: Context = { 52 | done: (err, response) => { 53 | expect(err).toBeNull(); 54 | 55 | expect(response.status).toBe(400); 56 | expect(response.body).toBe("Please pass a name on the query string or in the request body"); 57 | }, 58 | log: () => { }, 59 | }; 60 | 61 | const mockRequest: HttpRequest = { 62 | body: {}, 63 | query: {}, 64 | }; 65 | 66 | httpTriggerTS(mockContext, mockRequest); 67 | }); 68 | -------------------------------------------------------------------------------- /HttpTriggerTS/httpTriggerTS.ts: -------------------------------------------------------------------------------- 1 | export interface HttpRequest { 2 | body: { 3 | name?: string, 4 | }; 5 | query: { 6 | name?: string, 7 | }; 8 | } 9 | 10 | export interface HttpResponse { 11 | status: number; 12 | body: string; 13 | } 14 | 15 | export interface Context { 16 | log: (...message: any[]) => void; 17 | done: (err: Error | null, res: HttpResponse) => void; 18 | } 19 | 20 | export function httpTriggerTS(context: Context, req: HttpRequest) { 21 | context.log('JavaScript HTTP trigger function processed a request.'); 22 | let res: HttpResponse | null = null; 23 | 24 | if (req.query.name || (req.body && req.body.name)) { 25 | res = { 26 | status: 200, 27 | body: "Hello " + (req.query.name || req.body.name) 28 | }; 29 | } 30 | else { 31 | res = { 32 | status: 400, 33 | body: "Please pass a name on the query string or in the request body" 34 | }; 35 | } 36 | context.done(null, res); 37 | }; 38 | -------------------------------------------------------------------------------- /HttpTriggerTS/index.ts: -------------------------------------------------------------------------------- 1 | import { httpTriggerTS } from './httpTriggerTS'; 2 | module.exports = httpTriggerTS; 3 | -------------------------------------------------------------------------------- /HttpTriggerTS/sample.dat: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Azure" 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Ulrik Strid 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 | # Use typescript in Azure functions 2 | 3 | [![CircleCI](https://circleci.com/gh/ulrikaugustsson/typescript-functions.svg?style=svg)](https://circleci.com/gh/ulrikaugustsson/typescript-functions) 4 | 5 | This repo is as companion repo for a series of blogposts. 6 | 7 | * The [first blog post](https://medium.com/p/ad20251b8aa) that gives a bit of background on why I created this. 8 | * The [second blog post](https://medium.com/p/2497903938d3) about adding tests and continous integration. 9 | -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- 1 | branches: 2 | ignore: 3 | - beta 4 | - production 5 | 6 | version: 2 7 | jobs: 8 | build: 9 | working_directory: ~/functions-blog 10 | 11 | docker: 12 | - image: node:6.10.0 13 | 14 | steps: 15 | - checkout 16 | 17 | - restore_cache: 18 | key: functions-blog-{{ .Branch }}-{{ checksum "package.json" }} 19 | 20 | - run: 21 | name: Install dependencies 22 | command: npm install 23 | 24 | - save_cache: 25 | key: functions-blog-{{ .Branch }}-{{ checksum "package.json" }} 26 | paths: 27 | - "node_modules" 28 | - run: 29 | name: Install Dependencies 30 | command: npm install 31 | - run: 32 | name: NPM Test 33 | command: npm test -- --coverage 34 | 35 | - store_artifacts: 36 | path: ~/functions-blog/coverage 37 | destination: coverage 38 | 39 | # Deploy production 40 | - deploy: 41 | command: | 42 | if [ "${CIRCLE_BRANCH}" == "master" ]; 43 | then ./scripts/publish.sh production; 44 | fi 45 | -------------------------------------------------------------------------------- /deploy.cmd: -------------------------------------------------------------------------------- 1 | @if "%SCM_TRACE_LEVEL%" NEQ "4" @echo off 2 | 3 | :: ---------------------- 4 | :: KUDU Deployment Script 5 | :: Version: 1.0.13 6 | :: ---------------------- 7 | 8 | :: Prerequisites 9 | :: ------------- 10 | 11 | :: Verify node.js installed 12 | where node 2>nul >nul 13 | IF %ERRORLEVEL% NEQ 0 ( 14 | echo Missing node.js executable, please install node.js, if already installed make sure it can be reached from current environment. 15 | goto error 16 | ) 17 | 18 | :: Setup 19 | :: ----- 20 | 21 | setlocal enabledelayedexpansion 22 | 23 | SET ARTIFACTS=%~dp0%..\artifacts 24 | 25 | IF NOT DEFINED DEPLOYMENT_SOURCE ( 26 | SET DEPLOYMENT_SOURCE=%~dp0%. 27 | ) 28 | 29 | IF NOT DEFINED DEPLOYMENT_TARGET ( 30 | SET DEPLOYMENT_TARGET=%ARTIFACTS%\wwwroot 31 | ) 32 | 33 | IF NOT DEFINED NEXT_MANIFEST_PATH ( 34 | SET NEXT_MANIFEST_PATH=%ARTIFACTS%\manifest 35 | 36 | IF NOT DEFINED PREVIOUS_MANIFEST_PATH ( 37 | SET PREVIOUS_MANIFEST_PATH=%ARTIFACTS%\manifest 38 | ) 39 | ) 40 | 41 | IF NOT DEFINED KUDU_SYNC_CMD ( 42 | :: Install kudu sync 43 | echo Installing Kudu Sync 44 | call npm install kudusync -g --silent 45 | IF !ERRORLEVEL! NEQ 0 goto error 46 | 47 | :: Locally just running "kuduSync" would also work 48 | SET KUDU_SYNC_CMD=%appdata%\npm\kuduSync.cmd 49 | ) 50 | 51 | :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: 52 | :: Deployment 53 | :: ---------- 54 | 55 | echo Handling function App deployment. 56 | 57 | :: 1. KuduSync 58 | IF /I "%IN_PLACE_DEPLOYMENT%" NEQ "1" ( 59 | call :ExecuteCmd "%KUDU_SYNC_CMD%" -v 50 -f "%DEPLOYMENT_SOURCE%" -t "%DEPLOYMENT_TARGET%" -n "%NEXT_MANIFEST_PATH%" -p "%PREVIOUS_MANIFEST_PATH%" -i ".git;.hg;.deployment;deploy.cmd" 60 | IF !ERRORLEVEL! NEQ 0 goto error 61 | ) 62 | 63 | :: 2. Install npm packages and run typescript 64 | IF EXIST "%DEPLOYMENT_TARGET%\package.json" ( 65 | pushd "%DEPLOYMENT_TARGET%" 66 | npm install 67 | IF !ERRORLEVEL! NEQ 0 goto error 68 | popd 69 | ) 70 | 71 | :: 3. Restore npm in each function 72 | FOR /F "tokens=*" %%i IN ('DIR /B %DEPLOYMENT_TARGET% /A:D') DO ( 73 | IF EXIST "%DEPLOYMENT_TARGET%\%%i\package.json" ( 74 | pushd "%DEPLOYMENT_TARGET%\%%i" 75 | npm install --production 76 | IF !ERRORLEVEL! NEQ 0 goto error 77 | popd 78 | ) 79 | ) 80 | 81 | :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: 82 | goto end 83 | 84 | :: Execute command routine that will echo out when error 85 | :ExecuteCmd 86 | setlocal 87 | set _CMD_=%* 88 | call %_CMD_% 89 | if "%ERRORLEVEL%" NEQ "0" echo Failed exitCode=%ERRORLEVEL%, command=%_CMD_% 90 | exit /b %ERRORLEVEL% 91 | 92 | :error 93 | endlocal 94 | echo An error has occurred during web site deployment. 95 | call :exitSetErrorLevel 96 | call :exitFromFunction 2>nul 97 | 98 | :exitSetErrorLevel 99 | exit /b 1 100 | 101 | :exitFromFunction 102 | () 103 | 104 | :end 105 | endlocal 106 | echo Finished successfully. 107 | -------------------------------------------------------------------------------- /host.json: -------------------------------------------------------------------------------- 1 | {"id":"a7f65160273844fdbb415e4ee0d25cc2"} -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "typescript-functions", 3 | "version": "1.0.0", 4 | "description": "Run typescript in azure functions", 5 | "main": "index.js", 6 | "repository": { 7 | "type": "git", 8 | "url": "git@github.com:ulrikaugustsson/typescript-functions.git" 9 | }, 10 | "author": "Ulrik Strid", 11 | "license": "MIT", 12 | "scripts": { 13 | "build": "tsc", 14 | "postinstall": "npm run build", 15 | "test": "jest" 16 | }, 17 | "dependencies": { 18 | "typescript": "^2.2.1" 19 | }, 20 | "devDependencies": { 21 | "@types/jest": "^19.2.2", 22 | "@types/node": "^7.0.8", 23 | "jest": "^19.0.2", 24 | "ts-jest": "^19.0.2" 25 | }, 26 | "jest": { 27 | "moduleFileExtensions": [ 28 | "ts", 29 | "js" 30 | ], 31 | "transform": { 32 | "^.+\\.(ts|tsx)$": "/node_modules/ts-jest/preprocessor.js" 33 | }, 34 | "testMatch": [ 35 | "**/*.test.ts" 36 | ] 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /scripts/publish.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | git config --global user.email "$USER_EMAIL" 3 | git config --global user.name "$USER_NAME" 4 | 5 | git checkout -b "$1" 6 | git merge master 7 | git commit -am "$CIRCLE_BRANCH build#$CIRCLE_BUILD_NUM" 8 | git push --force --set-upstream origin $1 9 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "module": "commonjs", 4 | "target": "es6", 5 | "noImplicitAny": true, 6 | "strictNullChecks": true 7 | }, 8 | "exclude": [ 9 | "node_modules", 10 | "**/__tests__/*" 11 | ], 12 | "include": [ 13 | "HttpTriggerTS" 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@types/jest@^19.2.2": 6 | version "19.2.2" 7 | resolved "https://registry.yarnpkg.com/@types/jest/-/jest-19.2.2.tgz#71f428be2fa6eb9f15bb0abc3cade67905f94839" 8 | 9 | "@types/node@^7.0.8": 10 | version "7.0.8" 11 | resolved "https://registry.yarnpkg.com/@types/node/-/node-7.0.8.tgz#25e4dd804b630c916ae671233e6d71f6ce18124a" 12 | 13 | abab@^1.0.3: 14 | version "1.0.3" 15 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.3.tgz#b81de5f7274ec4e756d797cd834f303642724e5d" 16 | 17 | abbrev@1, abbrev@1.0.x: 18 | version "1.0.9" 19 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135" 20 | 21 | acorn-globals@^3.1.0: 22 | version "3.1.0" 23 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" 24 | dependencies: 25 | acorn "^4.0.4" 26 | 27 | acorn@^4.0.4: 28 | version "4.0.11" 29 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.11.tgz#edcda3bd937e7556410d42ed5860f67399c794c0" 30 | 31 | ajv@^4.9.1: 32 | version "4.11.5" 33 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.5.tgz#b6ee74657b993a01dce44b7944d56f485828d5bd" 34 | dependencies: 35 | co "^4.6.0" 36 | json-stable-stringify "^1.0.1" 37 | 38 | align-text@^0.1.1, align-text@^0.1.3: 39 | version "0.1.4" 40 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 41 | dependencies: 42 | kind-of "^3.0.2" 43 | longest "^1.0.1" 44 | repeat-string "^1.5.2" 45 | 46 | amdefine@1.0.0, amdefine@>=0.0.4: 47 | version "1.0.0" 48 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.0.tgz#fd17474700cb5cc9c2b709f0be9d23ce3c198c33" 49 | 50 | ansi-escapes@^1.4.0: 51 | version "1.4.0" 52 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 53 | 54 | ansi-regex@^2.0.0: 55 | version "2.1.1" 56 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 57 | 58 | ansi-styles@^2.2.1: 59 | version "2.2.1" 60 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 61 | 62 | ansi-styles@^3.0.0: 63 | version "3.0.0" 64 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.0.0.tgz#5404e93a544c4fec7f048262977bebfe3155e0c1" 65 | dependencies: 66 | color-convert "^1.0.0" 67 | 68 | anymatch@^1.3.0: 69 | version "1.3.0" 70 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 71 | dependencies: 72 | arrify "^1.0.0" 73 | micromatch "^2.1.5" 74 | 75 | append-transform@^0.4.0: 76 | version "0.4.0" 77 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 78 | dependencies: 79 | default-require-extensions "^1.0.0" 80 | 81 | argparse@^1.0.7: 82 | version "1.0.9" 83 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 84 | dependencies: 85 | sprintf-js "~1.0.2" 86 | 87 | arr-diff@^2.0.0: 88 | version "2.0.0" 89 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 90 | dependencies: 91 | arr-flatten "^1.0.1" 92 | 93 | arr-flatten@^1.0.1: 94 | version "1.0.1" 95 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 96 | 97 | array-differ@^1.0.0: 98 | version "1.0.0" 99 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" 100 | 101 | array-equal@^1.0.0: 102 | version "1.0.0" 103 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 104 | 105 | array-find-index@^1.0.1: 106 | version "1.0.2" 107 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 108 | 109 | array-uniq@^1.0.2: 110 | version "1.0.3" 111 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 112 | 113 | array-unique@^0.2.1: 114 | version "0.2.1" 115 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 116 | 117 | arrify@^1.0.0, arrify@^1.0.1: 118 | version "1.0.1" 119 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 120 | 121 | asn1@~0.2.3: 122 | version "0.2.3" 123 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 124 | 125 | assert-plus@1.0.0, assert-plus@^1.0.0: 126 | version "1.0.0" 127 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 128 | 129 | assert-plus@^0.2.0: 130 | version "0.2.0" 131 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 132 | 133 | async@1.x, async@^1.4.0, async@^1.4.2: 134 | version "1.5.2" 135 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 136 | 137 | async@^2.1.4: 138 | version "2.1.5" 139 | resolved "https://registry.yarnpkg.com/async/-/async-2.1.5.tgz#e587c68580994ac67fc56ff86d3ac56bdbe810bc" 140 | dependencies: 141 | lodash "^4.14.0" 142 | 143 | asynckit@^0.4.0: 144 | version "0.4.0" 145 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 146 | 147 | aws-sign2@~0.6.0: 148 | version "0.6.0" 149 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 150 | 151 | aws4@^1.2.1: 152 | version "1.6.0" 153 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 154 | 155 | babel-code-frame@^6.22.0: 156 | version "6.22.0" 157 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 158 | dependencies: 159 | chalk "^1.1.0" 160 | esutils "^2.0.2" 161 | js-tokens "^3.0.0" 162 | 163 | babel-core@^6.0.0, babel-core@^6.24.0: 164 | version "6.24.0" 165 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.0.tgz#8f36a0a77f5c155aed6f920b844d23ba56742a02" 166 | dependencies: 167 | babel-code-frame "^6.22.0" 168 | babel-generator "^6.24.0" 169 | babel-helpers "^6.23.0" 170 | babel-messages "^6.23.0" 171 | babel-register "^6.24.0" 172 | babel-runtime "^6.22.0" 173 | babel-template "^6.23.0" 174 | babel-traverse "^6.23.1" 175 | babel-types "^6.23.0" 176 | babylon "^6.11.0" 177 | convert-source-map "^1.1.0" 178 | debug "^2.1.1" 179 | json5 "^0.5.0" 180 | lodash "^4.2.0" 181 | minimatch "^3.0.2" 182 | path-is-absolute "^1.0.0" 183 | private "^0.1.6" 184 | slash "^1.0.0" 185 | source-map "^0.5.0" 186 | 187 | babel-generator@^6.18.0, babel-generator@^6.24.0: 188 | version "6.24.0" 189 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.0.tgz#eba270a8cc4ce6e09a61be43465d7c62c1f87c56" 190 | dependencies: 191 | babel-messages "^6.23.0" 192 | babel-runtime "^6.22.0" 193 | babel-types "^6.23.0" 194 | detect-indent "^4.0.0" 195 | jsesc "^1.3.0" 196 | lodash "^4.2.0" 197 | source-map "^0.5.0" 198 | trim-right "^1.0.1" 199 | 200 | babel-helpers@^6.23.0: 201 | version "6.23.0" 202 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.23.0.tgz#4f8f2e092d0b6a8808a4bde79c27f1e2ecf0d992" 203 | dependencies: 204 | babel-runtime "^6.22.0" 205 | babel-template "^6.23.0" 206 | 207 | babel-jest@^19.0.0: 208 | version "19.0.0" 209 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-19.0.0.tgz#59323ced99a3a84d359da219ca881074ffc6ce3f" 210 | dependencies: 211 | babel-core "^6.0.0" 212 | babel-plugin-istanbul "^4.0.0" 213 | babel-preset-jest "^19.0.0" 214 | 215 | babel-messages@^6.23.0: 216 | version "6.23.0" 217 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 218 | dependencies: 219 | babel-runtime "^6.22.0" 220 | 221 | babel-plugin-istanbul@^4.0.0: 222 | version "4.1.1" 223 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.1.tgz#c12de0fc6fe42adfb16be56f1ad11e4a9782eca9" 224 | dependencies: 225 | find-up "^2.1.0" 226 | istanbul-lib-instrument "^1.6.2" 227 | test-exclude "^4.0.3" 228 | 229 | babel-plugin-jest-hoist@^19.0.0: 230 | version "19.0.0" 231 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-19.0.0.tgz#4ae2a04ea612a6e73651f3fde52c178991304bea" 232 | 233 | babel-preset-jest@^19.0.0: 234 | version "19.0.0" 235 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-19.0.0.tgz#22d67201d02324a195811288eb38294bb3cac396" 236 | dependencies: 237 | babel-plugin-jest-hoist "^19.0.0" 238 | 239 | babel-register@^6.24.0: 240 | version "6.24.0" 241 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.0.tgz#5e89f8463ba9970356d02eb07dabe3308b080cfd" 242 | dependencies: 243 | babel-core "^6.24.0" 244 | babel-runtime "^6.22.0" 245 | core-js "^2.4.0" 246 | home-or-tmp "^2.0.0" 247 | lodash "^4.2.0" 248 | mkdirp "^0.5.1" 249 | source-map-support "^0.4.2" 250 | 251 | babel-runtime@^6.22.0: 252 | version "6.23.0" 253 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 254 | dependencies: 255 | core-js "^2.4.0" 256 | regenerator-runtime "^0.10.0" 257 | 258 | babel-template@^6.16.0, babel-template@^6.23.0: 259 | version "6.23.0" 260 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.23.0.tgz#04d4f270adbb3aa704a8143ae26faa529238e638" 261 | dependencies: 262 | babel-runtime "^6.22.0" 263 | babel-traverse "^6.23.0" 264 | babel-types "^6.23.0" 265 | babylon "^6.11.0" 266 | lodash "^4.2.0" 267 | 268 | babel-traverse@^6.18.0, babel-traverse@^6.23.0, babel-traverse@^6.23.1: 269 | version "6.23.1" 270 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.23.1.tgz#d3cb59010ecd06a97d81310065f966b699e14f48" 271 | dependencies: 272 | babel-code-frame "^6.22.0" 273 | babel-messages "^6.23.0" 274 | babel-runtime "^6.22.0" 275 | babel-types "^6.23.0" 276 | babylon "^6.15.0" 277 | debug "^2.2.0" 278 | globals "^9.0.0" 279 | invariant "^2.2.0" 280 | lodash "^4.2.0" 281 | 282 | babel-types@^6.18.0, babel-types@^6.23.0: 283 | version "6.23.0" 284 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.23.0.tgz#bb17179d7538bad38cd0c9e115d340f77e7e9acf" 285 | dependencies: 286 | babel-runtime "^6.22.0" 287 | esutils "^2.0.2" 288 | lodash "^4.2.0" 289 | to-fast-properties "^1.0.1" 290 | 291 | babylon@^6.11.0, babylon@^6.13.0, babylon@^6.15.0: 292 | version "6.16.1" 293 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.16.1.tgz#30c5a22f481978a9e7f8cdfdf496b11d94b404d3" 294 | 295 | balanced-match@^0.4.1: 296 | version "0.4.2" 297 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 298 | 299 | bcrypt-pbkdf@^1.0.0: 300 | version "1.0.1" 301 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 302 | dependencies: 303 | tweetnacl "^0.14.3" 304 | 305 | beeper@^1.0.0: 306 | version "1.1.1" 307 | resolved "https://registry.yarnpkg.com/beeper/-/beeper-1.1.1.tgz#e6d5ea8c5dad001304a70b22638447f69cb2f809" 308 | 309 | boom@2.x.x: 310 | version "2.10.1" 311 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 312 | dependencies: 313 | hoek "2.x.x" 314 | 315 | brace-expansion@^1.0.0: 316 | version "1.1.6" 317 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 318 | dependencies: 319 | balanced-match "^0.4.1" 320 | concat-map "0.0.1" 321 | 322 | braces@^1.8.2: 323 | version "1.8.5" 324 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 325 | dependencies: 326 | expand-range "^1.8.1" 327 | preserve "^0.2.0" 328 | repeat-element "^1.1.2" 329 | 330 | browser-resolve@^1.11.2: 331 | version "1.11.2" 332 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 333 | dependencies: 334 | resolve "1.1.7" 335 | 336 | bser@1.0.2: 337 | version "1.0.2" 338 | resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" 339 | dependencies: 340 | node-int64 "^0.4.0" 341 | 342 | bser@^2.0.0: 343 | version "2.0.0" 344 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 345 | dependencies: 346 | node-int64 "^0.4.0" 347 | 348 | builtin-modules@^1.0.0: 349 | version "1.1.1" 350 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 351 | 352 | callsites@^2.0.0: 353 | version "2.0.0" 354 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 355 | 356 | camelcase-keys@^2.0.0: 357 | version "2.1.0" 358 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 359 | dependencies: 360 | camelcase "^2.0.0" 361 | map-obj "^1.0.0" 362 | 363 | camelcase@^1.0.2: 364 | version "1.2.1" 365 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 366 | 367 | camelcase@^2.0.0: 368 | version "2.1.1" 369 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 370 | 371 | camelcase@^3.0.0: 372 | version "3.0.0" 373 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 374 | 375 | caseless@~0.12.0: 376 | version "0.12.0" 377 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 378 | 379 | center-align@^0.1.1: 380 | version "0.1.3" 381 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 382 | dependencies: 383 | align-text "^0.1.3" 384 | lazy-cache "^1.0.3" 385 | 386 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 387 | version "1.1.3" 388 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 389 | dependencies: 390 | ansi-styles "^2.2.1" 391 | escape-string-regexp "^1.0.2" 392 | has-ansi "^2.0.0" 393 | strip-ansi "^3.0.0" 394 | supports-color "^2.0.0" 395 | 396 | ci-info@^1.0.0: 397 | version "1.0.0" 398 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 399 | 400 | cliui@^2.1.0: 401 | version "2.1.0" 402 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 403 | dependencies: 404 | center-align "^0.1.1" 405 | right-align "^0.1.1" 406 | wordwrap "0.0.2" 407 | 408 | cliui@^3.2.0: 409 | version "3.2.0" 410 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 411 | dependencies: 412 | string-width "^1.0.1" 413 | strip-ansi "^3.0.1" 414 | wrap-ansi "^2.0.0" 415 | 416 | clone-stats@^0.0.1: 417 | version "0.0.1" 418 | resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-0.0.1.tgz#b88f94a82cf38b8791d58046ea4029ad88ca99d1" 419 | 420 | clone@^1.0.0: 421 | version "1.0.2" 422 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149" 423 | 424 | co@^4.6.0: 425 | version "4.6.0" 426 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 427 | 428 | code-point-at@^1.0.0: 429 | version "1.1.0" 430 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 431 | 432 | color-convert@^1.0.0: 433 | version "1.9.0" 434 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 435 | dependencies: 436 | color-name "^1.1.1" 437 | 438 | color-name@^1.1.1: 439 | version "1.1.2" 440 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.2.tgz#5c8ab72b64bd2215d617ae9559ebb148475cf98d" 441 | 442 | combined-stream@^1.0.5, combined-stream@~1.0.5: 443 | version "1.0.5" 444 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 445 | dependencies: 446 | delayed-stream "~1.0.0" 447 | 448 | concat-map@0.0.1: 449 | version "0.0.1" 450 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 451 | 452 | content-type-parser@^1.0.1: 453 | version "1.0.1" 454 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 455 | 456 | convert-source-map@^1.1.0: 457 | version "1.4.0" 458 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.4.0.tgz#e3dad195bf61bfe13a7a3c73e9876ec14a0268f3" 459 | 460 | core-js@^2.4.0: 461 | version "2.4.1" 462 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 463 | 464 | core-util-is@~1.0.0: 465 | version "1.0.2" 466 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 467 | 468 | cryptiles@2.x.x: 469 | version "2.0.5" 470 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 471 | dependencies: 472 | boom "2.x.x" 473 | 474 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 475 | version "0.3.2" 476 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 477 | 478 | "cssstyle@>= 0.2.37 < 0.3.0": 479 | version "0.2.37" 480 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 481 | dependencies: 482 | cssom "0.3.x" 483 | 484 | currently-unhandled@^0.4.1: 485 | version "0.4.1" 486 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 487 | dependencies: 488 | array-find-index "^1.0.1" 489 | 490 | dashdash@^1.12.0: 491 | version "1.14.1" 492 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 493 | dependencies: 494 | assert-plus "^1.0.0" 495 | 496 | dateformat@^1.0.11: 497 | version "1.0.12" 498 | resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-1.0.12.tgz#9f124b67594c937ff706932e4a642cca8dbbfee9" 499 | dependencies: 500 | get-stdin "^4.0.1" 501 | meow "^3.3.0" 502 | 503 | debug@^2.1.1, debug@^2.2.0: 504 | version "2.6.3" 505 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.3.tgz#0f7eb8c30965ec08c72accfa0130c8b79984141d" 506 | dependencies: 507 | ms "0.7.2" 508 | 509 | decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: 510 | version "1.2.0" 511 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 512 | 513 | deep-is@~0.1.3: 514 | version "0.1.3" 515 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 516 | 517 | default-require-extensions@^1.0.0: 518 | version "1.0.0" 519 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 520 | dependencies: 521 | strip-bom "^2.0.0" 522 | 523 | delayed-stream@~1.0.0: 524 | version "1.0.0" 525 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 526 | 527 | detect-indent@^4.0.0: 528 | version "4.0.0" 529 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 530 | dependencies: 531 | repeating "^2.0.0" 532 | 533 | diff@^3.0.0: 534 | version "3.2.0" 535 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 536 | 537 | duplexer2@0.0.2: 538 | version "0.0.2" 539 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.0.2.tgz#c614dcf67e2fb14995a91711e5a617e8a60a31db" 540 | dependencies: 541 | readable-stream "~1.1.9" 542 | 543 | ecc-jsbn@~0.1.1: 544 | version "0.1.1" 545 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 546 | dependencies: 547 | jsbn "~0.1.0" 548 | 549 | "errno@>=0.1.1 <0.2.0-0": 550 | version "0.1.4" 551 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 552 | dependencies: 553 | prr "~0.0.0" 554 | 555 | error-ex@^1.2.0: 556 | version "1.3.1" 557 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 558 | dependencies: 559 | is-arrayish "^0.2.1" 560 | 561 | escape-string-regexp@^1.0.2: 562 | version "1.0.5" 563 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 564 | 565 | escodegen@1.8.x, escodegen@^1.6.1: 566 | version "1.8.1" 567 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 568 | dependencies: 569 | esprima "^2.7.1" 570 | estraverse "^1.9.1" 571 | esutils "^2.0.2" 572 | optionator "^0.8.1" 573 | optionalDependencies: 574 | source-map "~0.2.0" 575 | 576 | esprima@2.7.x, esprima@^2.7.1: 577 | version "2.7.3" 578 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 579 | 580 | esprima@^3.1.1: 581 | version "3.1.3" 582 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 583 | 584 | estraverse@^1.9.1: 585 | version "1.9.3" 586 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 587 | 588 | esutils@^2.0.2: 589 | version "2.0.2" 590 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 591 | 592 | exec-sh@^0.2.0: 593 | version "0.2.0" 594 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.0.tgz#14f75de3f20d286ef933099b2ce50a90359cef10" 595 | dependencies: 596 | merge "^1.1.3" 597 | 598 | expand-brackets@^0.1.4: 599 | version "0.1.5" 600 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 601 | dependencies: 602 | is-posix-bracket "^0.1.0" 603 | 604 | expand-range@^1.8.1: 605 | version "1.8.2" 606 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 607 | dependencies: 608 | fill-range "^2.1.0" 609 | 610 | extend@~3.0.0: 611 | version "3.0.0" 612 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 613 | 614 | extglob@^0.3.1: 615 | version "0.3.2" 616 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 617 | dependencies: 618 | is-extglob "^1.0.0" 619 | 620 | extsprintf@1.0.2: 621 | version "1.0.2" 622 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 623 | 624 | fancy-log@^1.1.0: 625 | version "1.3.0" 626 | resolved "https://registry.yarnpkg.com/fancy-log/-/fancy-log-1.3.0.tgz#45be17d02bb9917d60ccffd4995c999e6c8c9948" 627 | dependencies: 628 | chalk "^1.1.1" 629 | time-stamp "^1.0.0" 630 | 631 | fast-levenshtein@~2.0.4: 632 | version "2.0.6" 633 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 634 | 635 | fb-watchman@^1.8.0: 636 | version "1.9.2" 637 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-1.9.2.tgz#a24cf47827f82d38fb59a69ad70b76e3b6ae7383" 638 | dependencies: 639 | bser "1.0.2" 640 | 641 | fb-watchman@^2.0.0: 642 | version "2.0.0" 643 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 644 | dependencies: 645 | bser "^2.0.0" 646 | 647 | filename-regex@^2.0.0: 648 | version "2.0.0" 649 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 650 | 651 | fileset@^2.0.2: 652 | version "2.0.3" 653 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 654 | dependencies: 655 | glob "^7.0.3" 656 | minimatch "^3.0.3" 657 | 658 | fill-range@^2.1.0: 659 | version "2.2.3" 660 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 661 | dependencies: 662 | is-number "^2.1.0" 663 | isobject "^2.0.0" 664 | randomatic "^1.1.3" 665 | repeat-element "^1.1.2" 666 | repeat-string "^1.5.2" 667 | 668 | find-up@^1.0.0: 669 | version "1.1.2" 670 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 671 | dependencies: 672 | path-exists "^2.0.0" 673 | pinkie-promise "^2.0.0" 674 | 675 | find-up@^2.1.0: 676 | version "2.1.0" 677 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 678 | dependencies: 679 | locate-path "^2.0.0" 680 | 681 | for-in@^1.0.1: 682 | version "1.0.2" 683 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 684 | 685 | for-own@^0.1.4: 686 | version "0.1.5" 687 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 688 | dependencies: 689 | for-in "^1.0.1" 690 | 691 | forever-agent@~0.6.1: 692 | version "0.6.1" 693 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 694 | 695 | form-data@~2.1.1: 696 | version "2.1.2" 697 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4" 698 | dependencies: 699 | asynckit "^0.4.0" 700 | combined-stream "^1.0.5" 701 | mime-types "^2.1.12" 702 | 703 | fs-extra@^2.1.2: 704 | version "2.1.2" 705 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-2.1.2.tgz#046c70163cef9aad46b0e4a7fa467fb22d71de35" 706 | dependencies: 707 | graceful-fs "^4.1.2" 708 | jsonfile "^2.1.0" 709 | 710 | fs.realpath@^1.0.0: 711 | version "1.0.0" 712 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 713 | 714 | get-caller-file@^1.0.1: 715 | version "1.0.2" 716 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 717 | 718 | get-stdin@^4.0.1: 719 | version "4.0.1" 720 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 721 | 722 | getpass@^0.1.1: 723 | version "0.1.6" 724 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 725 | dependencies: 726 | assert-plus "^1.0.0" 727 | 728 | glob-all@^3.1.0: 729 | version "3.1.0" 730 | resolved "https://registry.yarnpkg.com/glob-all/-/glob-all-3.1.0.tgz#8913ddfb5ee1ac7812656241b03d5217c64b02ab" 731 | dependencies: 732 | glob "^7.0.5" 733 | yargs "~1.2.6" 734 | 735 | glob-base@^0.3.0: 736 | version "0.3.0" 737 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 738 | dependencies: 739 | glob-parent "^2.0.0" 740 | is-glob "^2.0.0" 741 | 742 | glob-parent@^2.0.0: 743 | version "2.0.0" 744 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 745 | dependencies: 746 | is-glob "^2.0.0" 747 | 748 | glob@^5.0.15: 749 | version "5.0.15" 750 | resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" 751 | dependencies: 752 | inflight "^1.0.4" 753 | inherits "2" 754 | minimatch "2 || 3" 755 | once "^1.3.0" 756 | path-is-absolute "^1.0.0" 757 | 758 | glob@^7.0.3, glob@^7.0.5: 759 | version "7.1.1" 760 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 761 | dependencies: 762 | fs.realpath "^1.0.0" 763 | inflight "^1.0.4" 764 | inherits "2" 765 | minimatch "^3.0.2" 766 | once "^1.3.0" 767 | path-is-absolute "^1.0.0" 768 | 769 | globals@^9.0.0: 770 | version "9.16.0" 771 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.16.0.tgz#63e903658171ec2d9f51b1d31de5e2b8dc01fb80" 772 | 773 | glogg@^1.0.0: 774 | version "1.0.0" 775 | resolved "https://registry.yarnpkg.com/glogg/-/glogg-1.0.0.tgz#7fe0f199f57ac906cf512feead8f90ee4a284fc5" 776 | dependencies: 777 | sparkles "^1.0.0" 778 | 779 | graceful-fs@^4.1.2, graceful-fs@^4.1.6: 780 | version "4.1.11" 781 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 782 | 783 | growly@^1.3.0: 784 | version "1.3.0" 785 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 786 | 787 | gulp-util@3.0.7: 788 | version "3.0.7" 789 | resolved "https://registry.yarnpkg.com/gulp-util/-/gulp-util-3.0.7.tgz#78925c4b8f8b49005ac01a011c557e6218941cbb" 790 | dependencies: 791 | array-differ "^1.0.0" 792 | array-uniq "^1.0.2" 793 | beeper "^1.0.0" 794 | chalk "^1.0.0" 795 | dateformat "^1.0.11" 796 | fancy-log "^1.1.0" 797 | gulplog "^1.0.0" 798 | has-gulplog "^0.1.0" 799 | lodash._reescape "^3.0.0" 800 | lodash._reevaluate "^3.0.0" 801 | lodash._reinterpolate "^3.0.0" 802 | lodash.template "^3.0.0" 803 | minimist "^1.1.0" 804 | multipipe "^0.1.2" 805 | object-assign "^3.0.0" 806 | replace-ext "0.0.1" 807 | through2 "^2.0.0" 808 | vinyl "^0.5.0" 809 | 810 | gulplog@^1.0.0: 811 | version "1.0.0" 812 | resolved "https://registry.yarnpkg.com/gulplog/-/gulplog-1.0.0.tgz#e28c4d45d05ecbbed818363ce8f9c5926229ffe5" 813 | dependencies: 814 | glogg "^1.0.0" 815 | 816 | handlebars@^4.0.1, handlebars@^4.0.3: 817 | version "4.0.6" 818 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.6.tgz#2ce4484850537f9c97a8026d5399b935c4ed4ed7" 819 | dependencies: 820 | async "^1.4.0" 821 | optimist "^0.6.1" 822 | source-map "^0.4.4" 823 | optionalDependencies: 824 | uglify-js "^2.6" 825 | 826 | har-schema@^1.0.5: 827 | version "1.0.5" 828 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 829 | 830 | har-validator@~4.2.1: 831 | version "4.2.1" 832 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 833 | dependencies: 834 | ajv "^4.9.1" 835 | har-schema "^1.0.5" 836 | 837 | has-ansi@^2.0.0: 838 | version "2.0.0" 839 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 840 | dependencies: 841 | ansi-regex "^2.0.0" 842 | 843 | has-flag@^1.0.0: 844 | version "1.0.0" 845 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 846 | 847 | has-gulplog@^0.1.0: 848 | version "0.1.0" 849 | resolved "https://registry.yarnpkg.com/has-gulplog/-/has-gulplog-0.1.0.tgz#6414c82913697da51590397dafb12f22967811ce" 850 | dependencies: 851 | sparkles "^1.0.0" 852 | 853 | hawk@~3.1.3: 854 | version "3.1.3" 855 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 856 | dependencies: 857 | boom "2.x.x" 858 | cryptiles "2.x.x" 859 | hoek "2.x.x" 860 | sntp "1.x.x" 861 | 862 | hoek@2.x.x: 863 | version "2.16.3" 864 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 865 | 866 | home-or-tmp@^2.0.0: 867 | version "2.0.0" 868 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 869 | dependencies: 870 | os-homedir "^1.0.0" 871 | os-tmpdir "^1.0.1" 872 | 873 | hosted-git-info@^2.1.4: 874 | version "2.4.1" 875 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.1.tgz#4b0445e41c004a8bd1337773a4ff790ca40318c8" 876 | 877 | html-encoding-sniffer@^1.0.1: 878 | version "1.0.1" 879 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 880 | dependencies: 881 | whatwg-encoding "^1.0.1" 882 | 883 | http-signature@~1.1.0: 884 | version "1.1.1" 885 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 886 | dependencies: 887 | assert-plus "^0.2.0" 888 | jsprim "^1.2.2" 889 | sshpk "^1.7.0" 890 | 891 | iconv-lite@0.4.13: 892 | version "0.4.13" 893 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 894 | 895 | indent-string@^2.1.0: 896 | version "2.1.0" 897 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 898 | dependencies: 899 | repeating "^2.0.0" 900 | 901 | inflight@^1.0.4: 902 | version "1.0.6" 903 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 904 | dependencies: 905 | once "^1.3.0" 906 | wrappy "1" 907 | 908 | inherits@2, inherits@~2.0.1: 909 | version "2.0.3" 910 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 911 | 912 | invariant@^2.2.0: 913 | version "2.2.2" 914 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 915 | dependencies: 916 | loose-envify "^1.0.0" 917 | 918 | invert-kv@^1.0.0: 919 | version "1.0.0" 920 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 921 | 922 | is-arrayish@^0.2.1: 923 | version "0.2.1" 924 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 925 | 926 | is-buffer@^1.0.2: 927 | version "1.1.5" 928 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 929 | 930 | is-builtin-module@^1.0.0: 931 | version "1.0.0" 932 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 933 | dependencies: 934 | builtin-modules "^1.0.0" 935 | 936 | is-ci@^1.0.9: 937 | version "1.0.10" 938 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 939 | dependencies: 940 | ci-info "^1.0.0" 941 | 942 | is-dotfile@^1.0.0: 943 | version "1.0.2" 944 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 945 | 946 | is-equal-shallow@^0.1.3: 947 | version "0.1.3" 948 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 949 | dependencies: 950 | is-primitive "^2.0.0" 951 | 952 | is-extendable@^0.1.1: 953 | version "0.1.1" 954 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 955 | 956 | is-extglob@^1.0.0: 957 | version "1.0.0" 958 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 959 | 960 | is-finite@^1.0.0: 961 | version "1.0.2" 962 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 963 | dependencies: 964 | number-is-nan "^1.0.0" 965 | 966 | is-fullwidth-code-point@^1.0.0: 967 | version "1.0.0" 968 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 969 | dependencies: 970 | number-is-nan "^1.0.0" 971 | 972 | is-glob@^2.0.0, is-glob@^2.0.1: 973 | version "2.0.1" 974 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 975 | dependencies: 976 | is-extglob "^1.0.0" 977 | 978 | is-number@^2.0.2, is-number@^2.1.0: 979 | version "2.1.0" 980 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 981 | dependencies: 982 | kind-of "^3.0.2" 983 | 984 | is-posix-bracket@^0.1.0: 985 | version "0.1.1" 986 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 987 | 988 | is-primitive@^2.0.0: 989 | version "2.0.0" 990 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 991 | 992 | is-typedarray@~1.0.0: 993 | version "1.0.0" 994 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 995 | 996 | is-utf8@^0.2.0: 997 | version "0.2.1" 998 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 999 | 1000 | isarray@0.0.1: 1001 | version "0.0.1" 1002 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 1003 | 1004 | isarray@1.0.0, isarray@~1.0.0: 1005 | version "1.0.0" 1006 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1007 | 1008 | isexe@^2.0.0: 1009 | version "2.0.0" 1010 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1011 | 1012 | isobject@^2.0.0: 1013 | version "2.1.0" 1014 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1015 | dependencies: 1016 | isarray "1.0.0" 1017 | 1018 | isstream@~0.1.2: 1019 | version "0.1.2" 1020 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1021 | 1022 | istanbul-api@^1.1.0-alpha.1: 1023 | version "1.1.6" 1024 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.1.6.tgz#23aa5b5b9b1b3bdbb786f039160e91acbe495433" 1025 | dependencies: 1026 | async "^2.1.4" 1027 | fileset "^2.0.2" 1028 | istanbul-lib-coverage "^1.0.0" 1029 | istanbul-lib-hook "^1.0.4" 1030 | istanbul-lib-instrument "^1.6.2" 1031 | istanbul-lib-report "^1.0.0-alpha.3" 1032 | istanbul-lib-source-maps "^1.1.0" 1033 | istanbul-reports "^1.0.0" 1034 | js-yaml "^3.7.0" 1035 | mkdirp "^0.5.1" 1036 | once "^1.4.0" 1037 | 1038 | istanbul-lib-coverage@^1.0.0, istanbul-lib-coverage@^1.0.0-alpha, istanbul-lib-coverage@^1.0.0-alpha.0: 1039 | version "1.0.1" 1040 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.0.1.tgz#f263efb519c051c5f1f3343034fc40e7b43ff212" 1041 | 1042 | istanbul-lib-hook@^1.0.4: 1043 | version "1.0.4" 1044 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.4.tgz#1919debbc195807880041971caf9c7e2be2144d6" 1045 | dependencies: 1046 | append-transform "^0.4.0" 1047 | 1048 | istanbul-lib-instrument@^1.1.1, istanbul-lib-instrument@^1.2.0, istanbul-lib-instrument@^1.6.2: 1049 | version "1.6.2" 1050 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.6.2.tgz#dac644f358f51efd6113536d7070959a0111f73b" 1051 | dependencies: 1052 | babel-generator "^6.18.0" 1053 | babel-template "^6.16.0" 1054 | babel-traverse "^6.18.0" 1055 | babel-types "^6.18.0" 1056 | babylon "^6.13.0" 1057 | istanbul-lib-coverage "^1.0.0" 1058 | semver "^5.3.0" 1059 | 1060 | istanbul-lib-report@^1.0.0-alpha.3: 1061 | version "1.0.0-alpha.3" 1062 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.0.0-alpha.3.tgz#32d5f6ec7f33ca3a602209e278b2e6ff143498af" 1063 | dependencies: 1064 | async "^1.4.2" 1065 | istanbul-lib-coverage "^1.0.0-alpha" 1066 | mkdirp "^0.5.1" 1067 | path-parse "^1.0.5" 1068 | rimraf "^2.4.3" 1069 | supports-color "^3.1.2" 1070 | 1071 | istanbul-lib-source-maps@^1.1.0: 1072 | version "1.1.0" 1073 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.1.0.tgz#9d429218f35b823560ea300a96ff0c3bbdab785f" 1074 | dependencies: 1075 | istanbul-lib-coverage "^1.0.0-alpha.0" 1076 | mkdirp "^0.5.1" 1077 | rimraf "^2.4.4" 1078 | source-map "^0.5.3" 1079 | 1080 | istanbul-reports@^1.0.0: 1081 | version "1.0.1" 1082 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.0.1.tgz#9a17176bc4a6cbebdae52b2f15961d52fa623fbc" 1083 | dependencies: 1084 | handlebars "^4.0.3" 1085 | 1086 | istanbul@0.4.5: 1087 | version "0.4.5" 1088 | resolved "https://registry.yarnpkg.com/istanbul/-/istanbul-0.4.5.tgz#65c7d73d4c4da84d4f3ac310b918fb0b8033733b" 1089 | dependencies: 1090 | abbrev "1.0.x" 1091 | async "1.x" 1092 | escodegen "1.8.x" 1093 | esprima "2.7.x" 1094 | glob "^5.0.15" 1095 | handlebars "^4.0.1" 1096 | js-yaml "3.x" 1097 | mkdirp "0.5.x" 1098 | nopt "3.x" 1099 | once "1.x" 1100 | resolve "1.1.x" 1101 | supports-color "^3.1.0" 1102 | which "^1.1.1" 1103 | wordwrap "^1.0.0" 1104 | 1105 | jest-changed-files@^19.0.2: 1106 | version "19.0.2" 1107 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-19.0.2.tgz#16c54c84c3270be408e06d2e8af3f3e37a885824" 1108 | 1109 | jest-cli@^19.0.2: 1110 | version "19.0.2" 1111 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-19.0.2.tgz#cc3620b62acac5f2d93a548cb6ef697d4ec85443" 1112 | dependencies: 1113 | ansi-escapes "^1.4.0" 1114 | callsites "^2.0.0" 1115 | chalk "^1.1.1" 1116 | graceful-fs "^4.1.6" 1117 | is-ci "^1.0.9" 1118 | istanbul-api "^1.1.0-alpha.1" 1119 | istanbul-lib-coverage "^1.0.0" 1120 | istanbul-lib-instrument "^1.1.1" 1121 | jest-changed-files "^19.0.2" 1122 | jest-config "^19.0.2" 1123 | jest-environment-jsdom "^19.0.2" 1124 | jest-haste-map "^19.0.0" 1125 | jest-jasmine2 "^19.0.2" 1126 | jest-message-util "^19.0.0" 1127 | jest-regex-util "^19.0.0" 1128 | jest-resolve-dependencies "^19.0.0" 1129 | jest-runtime "^19.0.2" 1130 | jest-snapshot "^19.0.2" 1131 | jest-util "^19.0.2" 1132 | micromatch "^2.3.11" 1133 | node-notifier "^5.0.1" 1134 | slash "^1.0.0" 1135 | string-length "^1.0.1" 1136 | throat "^3.0.0" 1137 | which "^1.1.1" 1138 | worker-farm "^1.3.1" 1139 | yargs "^6.3.0" 1140 | 1141 | jest-config@^19.0.0, jest-config@^19.0.2: 1142 | version "19.0.2" 1143 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-19.0.2.tgz#1b9bd2db0ddd16df61c2b10a54009e1768da6411" 1144 | dependencies: 1145 | chalk "^1.1.1" 1146 | jest-environment-jsdom "^19.0.2" 1147 | jest-environment-node "^19.0.2" 1148 | jest-jasmine2 "^19.0.2" 1149 | jest-regex-util "^19.0.0" 1150 | jest-resolve "^19.0.2" 1151 | jest-validate "^19.0.2" 1152 | pretty-format "^19.0.0" 1153 | 1154 | jest-diff@^19.0.0: 1155 | version "19.0.0" 1156 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-19.0.0.tgz#d1563cfc56c8b60232988fbc05d4d16ed90f063c" 1157 | dependencies: 1158 | chalk "^1.1.3" 1159 | diff "^3.0.0" 1160 | jest-matcher-utils "^19.0.0" 1161 | pretty-format "^19.0.0" 1162 | 1163 | jest-environment-jsdom@^19.0.2: 1164 | version "19.0.2" 1165 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-19.0.2.tgz#ceda859c4a4b94ab35e4de7dab54b926f293e4a3" 1166 | dependencies: 1167 | jest-mock "^19.0.0" 1168 | jest-util "^19.0.2" 1169 | jsdom "^9.11.0" 1170 | 1171 | jest-environment-node@^19.0.2: 1172 | version "19.0.2" 1173 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-19.0.2.tgz#6e84079db87ed21d0c05e1f9669f207b116fe99b" 1174 | dependencies: 1175 | jest-mock "^19.0.0" 1176 | jest-util "^19.0.2" 1177 | 1178 | jest-file-exists@^19.0.0: 1179 | version "19.0.0" 1180 | resolved "https://registry.yarnpkg.com/jest-file-exists/-/jest-file-exists-19.0.0.tgz#cca2e587a11ec92e24cfeab3f8a94d657f3fceb8" 1181 | 1182 | jest-haste-map@^19.0.0: 1183 | version "19.0.0" 1184 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-19.0.0.tgz#adde00b62b1fe04432a104b3254fc5004514b55e" 1185 | dependencies: 1186 | fb-watchman "^2.0.0" 1187 | graceful-fs "^4.1.6" 1188 | micromatch "^2.3.11" 1189 | sane "~1.5.0" 1190 | worker-farm "^1.3.1" 1191 | 1192 | jest-jasmine2@^19.0.2: 1193 | version "19.0.2" 1194 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-19.0.2.tgz#167991ac825981fb1a800af126e83afcca832c73" 1195 | dependencies: 1196 | graceful-fs "^4.1.6" 1197 | jest-matcher-utils "^19.0.0" 1198 | jest-matchers "^19.0.0" 1199 | jest-message-util "^19.0.0" 1200 | jest-snapshot "^19.0.2" 1201 | 1202 | jest-matcher-utils@^19.0.0: 1203 | version "19.0.0" 1204 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-19.0.0.tgz#5ecd9b63565d2b001f61fbf7ec4c7f537964564d" 1205 | dependencies: 1206 | chalk "^1.1.3" 1207 | pretty-format "^19.0.0" 1208 | 1209 | jest-matchers@^19.0.0: 1210 | version "19.0.0" 1211 | resolved "https://registry.yarnpkg.com/jest-matchers/-/jest-matchers-19.0.0.tgz#c74ecc6ebfec06f384767ba4d6fa4a42d6755754" 1212 | dependencies: 1213 | jest-diff "^19.0.0" 1214 | jest-matcher-utils "^19.0.0" 1215 | jest-message-util "^19.0.0" 1216 | jest-regex-util "^19.0.0" 1217 | 1218 | jest-message-util@^19.0.0: 1219 | version "19.0.0" 1220 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-19.0.0.tgz#721796b89c0e4d761606f9ba8cb828a3b6246416" 1221 | dependencies: 1222 | chalk "^1.1.1" 1223 | micromatch "^2.3.11" 1224 | 1225 | jest-mock@^19.0.0: 1226 | version "19.0.0" 1227 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-19.0.0.tgz#67038641e9607ab2ce08ec4a8cb83aabbc899d01" 1228 | 1229 | jest-regex-util@^19.0.0: 1230 | version "19.0.0" 1231 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-19.0.0.tgz#b7754587112aede1456510bb1f6afe74ef598691" 1232 | 1233 | jest-resolve-dependencies@^19.0.0: 1234 | version "19.0.0" 1235 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-19.0.0.tgz#a741ad1fa094140e64ecf2642a504f834ece22ee" 1236 | dependencies: 1237 | jest-file-exists "^19.0.0" 1238 | 1239 | jest-resolve@^19.0.2: 1240 | version "19.0.2" 1241 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-19.0.2.tgz#5793575de4f07aec32f7d7ff0c6c181963eefb3c" 1242 | dependencies: 1243 | browser-resolve "^1.11.2" 1244 | jest-haste-map "^19.0.0" 1245 | resolve "^1.2.0" 1246 | 1247 | jest-runtime@^19.0.2: 1248 | version "19.0.2" 1249 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-19.0.2.tgz#d9a43e72de416d27d196fd9c7940d98fe6685407" 1250 | dependencies: 1251 | babel-core "^6.0.0" 1252 | babel-jest "^19.0.0" 1253 | babel-plugin-istanbul "^4.0.0" 1254 | chalk "^1.1.3" 1255 | graceful-fs "^4.1.6" 1256 | jest-config "^19.0.2" 1257 | jest-file-exists "^19.0.0" 1258 | jest-haste-map "^19.0.0" 1259 | jest-regex-util "^19.0.0" 1260 | jest-resolve "^19.0.2" 1261 | jest-util "^19.0.2" 1262 | json-stable-stringify "^1.0.1" 1263 | micromatch "^2.3.11" 1264 | strip-bom "3.0.0" 1265 | yargs "^6.3.0" 1266 | 1267 | jest-snapshot@^19.0.2: 1268 | version "19.0.2" 1269 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-19.0.2.tgz#9c1b216214f7187c38bfd5c70b1efab16b0ff50b" 1270 | dependencies: 1271 | chalk "^1.1.3" 1272 | jest-diff "^19.0.0" 1273 | jest-file-exists "^19.0.0" 1274 | jest-matcher-utils "^19.0.0" 1275 | jest-util "^19.0.2" 1276 | natural-compare "^1.4.0" 1277 | pretty-format "^19.0.0" 1278 | 1279 | jest-util@^19.0.0, jest-util@^19.0.2: 1280 | version "19.0.2" 1281 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-19.0.2.tgz#e0a0232a2ab9e6b2b53668bdb3534c2b5977ed41" 1282 | dependencies: 1283 | chalk "^1.1.1" 1284 | graceful-fs "^4.1.6" 1285 | jest-file-exists "^19.0.0" 1286 | jest-message-util "^19.0.0" 1287 | jest-mock "^19.0.0" 1288 | jest-validate "^19.0.2" 1289 | leven "^2.0.0" 1290 | mkdirp "^0.5.1" 1291 | 1292 | jest-validate@^19.0.2: 1293 | version "19.0.2" 1294 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-19.0.2.tgz#dc534df5f1278d5b63df32b14241d4dbf7244c0c" 1295 | dependencies: 1296 | chalk "^1.1.1" 1297 | jest-matcher-utils "^19.0.0" 1298 | leven "^2.0.0" 1299 | pretty-format "^19.0.0" 1300 | 1301 | jest@^19.0.2: 1302 | version "19.0.2" 1303 | resolved "https://registry.yarnpkg.com/jest/-/jest-19.0.2.tgz#b794faaf8ff461e7388f28beef559a54f20b2c10" 1304 | dependencies: 1305 | jest-cli "^19.0.2" 1306 | 1307 | jodid25519@^1.0.0: 1308 | version "1.0.2" 1309 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 1310 | dependencies: 1311 | jsbn "~0.1.0" 1312 | 1313 | js-tokens@^3.0.0: 1314 | version "3.0.1" 1315 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 1316 | 1317 | js-yaml@3.x, js-yaml@^3.7.0: 1318 | version "3.8.2" 1319 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.2.tgz#02d3e2c0f6beab20248d412c352203827d786721" 1320 | dependencies: 1321 | argparse "^1.0.7" 1322 | esprima "^3.1.1" 1323 | 1324 | jsbn@~0.1.0: 1325 | version "0.1.1" 1326 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1327 | 1328 | jsdom@^9.11.0: 1329 | version "9.12.0" 1330 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 1331 | dependencies: 1332 | abab "^1.0.3" 1333 | acorn "^4.0.4" 1334 | acorn-globals "^3.1.0" 1335 | array-equal "^1.0.0" 1336 | content-type-parser "^1.0.1" 1337 | cssom ">= 0.3.2 < 0.4.0" 1338 | cssstyle ">= 0.2.37 < 0.3.0" 1339 | escodegen "^1.6.1" 1340 | html-encoding-sniffer "^1.0.1" 1341 | nwmatcher ">= 1.3.9 < 2.0.0" 1342 | parse5 "^1.5.1" 1343 | request "^2.79.0" 1344 | sax "^1.2.1" 1345 | symbol-tree "^3.2.1" 1346 | tough-cookie "^2.3.2" 1347 | webidl-conversions "^4.0.0" 1348 | whatwg-encoding "^1.0.1" 1349 | whatwg-url "^4.3.0" 1350 | xml-name-validator "^2.0.1" 1351 | 1352 | jsesc@^1.3.0: 1353 | version "1.3.0" 1354 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1355 | 1356 | json-schema@0.2.3: 1357 | version "0.2.3" 1358 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1359 | 1360 | json-stable-stringify@^1.0.1: 1361 | version "1.0.1" 1362 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1363 | dependencies: 1364 | jsonify "~0.0.0" 1365 | 1366 | json-stringify-safe@~5.0.1: 1367 | version "5.0.1" 1368 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1369 | 1370 | json5@^0.5.0: 1371 | version "0.5.1" 1372 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1373 | 1374 | jsonfile@^2.1.0: 1375 | version "2.4.0" 1376 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" 1377 | optionalDependencies: 1378 | graceful-fs "^4.1.6" 1379 | 1380 | jsonify@~0.0.0: 1381 | version "0.0.0" 1382 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1383 | 1384 | jsprim@^1.2.2: 1385 | version "1.4.0" 1386 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 1387 | dependencies: 1388 | assert-plus "1.0.0" 1389 | extsprintf "1.0.2" 1390 | json-schema "0.2.3" 1391 | verror "1.3.6" 1392 | 1393 | kind-of@^3.0.2: 1394 | version "3.1.0" 1395 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47" 1396 | dependencies: 1397 | is-buffer "^1.0.2" 1398 | 1399 | lazy-cache@^1.0.3: 1400 | version "1.0.4" 1401 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1402 | 1403 | lcid@^1.0.0: 1404 | version "1.0.0" 1405 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1406 | dependencies: 1407 | invert-kv "^1.0.0" 1408 | 1409 | leven@^2.0.0: 1410 | version "2.1.0" 1411 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 1412 | 1413 | levn@~0.3.0: 1414 | version "0.3.0" 1415 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1416 | dependencies: 1417 | prelude-ls "~1.1.2" 1418 | type-check "~0.3.2" 1419 | 1420 | load-json-file@^1.0.0: 1421 | version "1.1.0" 1422 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1423 | dependencies: 1424 | graceful-fs "^4.1.2" 1425 | parse-json "^2.2.0" 1426 | pify "^2.0.0" 1427 | pinkie-promise "^2.0.0" 1428 | strip-bom "^2.0.0" 1429 | 1430 | locate-path@^2.0.0: 1431 | version "2.0.0" 1432 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1433 | dependencies: 1434 | p-locate "^2.0.0" 1435 | path-exists "^3.0.0" 1436 | 1437 | lodash._basecopy@^3.0.0: 1438 | version "3.0.1" 1439 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 1440 | 1441 | lodash._basetostring@^3.0.0: 1442 | version "3.0.1" 1443 | resolved "https://registry.yarnpkg.com/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz#d1861d877f824a52f669832dcaf3ee15566a07d5" 1444 | 1445 | lodash._basevalues@^3.0.0: 1446 | version "3.0.0" 1447 | resolved "https://registry.yarnpkg.com/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz#5b775762802bde3d3297503e26300820fdf661b7" 1448 | 1449 | lodash._getnative@^3.0.0: 1450 | version "3.9.1" 1451 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 1452 | 1453 | lodash._isiterateecall@^3.0.0: 1454 | version "3.0.9" 1455 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 1456 | 1457 | lodash._reescape@^3.0.0: 1458 | version "3.0.0" 1459 | resolved "https://registry.yarnpkg.com/lodash._reescape/-/lodash._reescape-3.0.0.tgz#2b1d6f5dfe07c8a355753e5f27fac7f1cde1616a" 1460 | 1461 | lodash._reevaluate@^3.0.0: 1462 | version "3.0.0" 1463 | resolved "https://registry.yarnpkg.com/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz#58bc74c40664953ae0b124d806996daca431e2ed" 1464 | 1465 | lodash._reinterpolate@^3.0.0: 1466 | version "3.0.0" 1467 | resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" 1468 | 1469 | lodash._root@^3.0.0: 1470 | version "3.0.1" 1471 | resolved "https://registry.yarnpkg.com/lodash._root/-/lodash._root-3.0.1.tgz#fba1c4524c19ee9a5f8136b4609f017cf4ded692" 1472 | 1473 | lodash.assign@^4.2.0: 1474 | version "4.2.0" 1475 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" 1476 | 1477 | lodash.escape@^3.0.0: 1478 | version "3.2.0" 1479 | resolved "https://registry.yarnpkg.com/lodash.escape/-/lodash.escape-3.2.0.tgz#995ee0dc18c1b48cc92effae71a10aab5b487698" 1480 | dependencies: 1481 | lodash._root "^3.0.0" 1482 | 1483 | lodash.includes@^4.3.0: 1484 | version "4.3.0" 1485 | resolved "https://registry.yarnpkg.com/lodash.includes/-/lodash.includes-4.3.0.tgz#60bb98a87cb923c68ca1e51325483314849f553f" 1486 | 1487 | lodash.isarguments@^3.0.0: 1488 | version "3.1.0" 1489 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 1490 | 1491 | lodash.isarray@^3.0.0: 1492 | version "3.0.4" 1493 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 1494 | 1495 | lodash.keys@^3.0.0: 1496 | version "3.1.2" 1497 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 1498 | dependencies: 1499 | lodash._getnative "^3.0.0" 1500 | lodash.isarguments "^3.0.0" 1501 | lodash.isarray "^3.0.0" 1502 | 1503 | lodash.partition@^4.6.0: 1504 | version "4.6.0" 1505 | resolved "https://registry.yarnpkg.com/lodash.partition/-/lodash.partition-4.6.0.tgz#a38e46b73469e0420b0da1212e66d414be364ba4" 1506 | 1507 | lodash.pickby@^4.6.0: 1508 | version "4.6.0" 1509 | resolved "https://registry.yarnpkg.com/lodash.pickby/-/lodash.pickby-4.6.0.tgz#7dea21d8c18d7703a27c704c15d3b84a67e33aff" 1510 | 1511 | lodash.restparam@^3.0.0: 1512 | version "3.6.1" 1513 | resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" 1514 | 1515 | lodash.template@^3.0.0: 1516 | version "3.6.2" 1517 | resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-3.6.2.tgz#f8cdecc6169a255be9098ae8b0c53d378931d14f" 1518 | dependencies: 1519 | lodash._basecopy "^3.0.0" 1520 | lodash._basetostring "^3.0.0" 1521 | lodash._basevalues "^3.0.0" 1522 | lodash._isiterateecall "^3.0.0" 1523 | lodash._reinterpolate "^3.0.0" 1524 | lodash.escape "^3.0.0" 1525 | lodash.keys "^3.0.0" 1526 | lodash.restparam "^3.0.0" 1527 | lodash.templatesettings "^3.0.0" 1528 | 1529 | lodash.templatesettings@^3.0.0: 1530 | version "3.1.1" 1531 | resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz#fb307844753b66b9f1afa54e262c745307dba8e5" 1532 | dependencies: 1533 | lodash._reinterpolate "^3.0.0" 1534 | lodash.escape "^3.0.0" 1535 | 1536 | lodash@^4.14.0, lodash@^4.2.0: 1537 | version "4.17.4" 1538 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1539 | 1540 | longest@^1.0.1: 1541 | version "1.0.1" 1542 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 1543 | 1544 | loose-envify@^1.0.0: 1545 | version "1.3.1" 1546 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1547 | dependencies: 1548 | js-tokens "^3.0.0" 1549 | 1550 | loud-rejection@^1.0.0: 1551 | version "1.6.0" 1552 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 1553 | dependencies: 1554 | currently-unhandled "^0.4.1" 1555 | signal-exit "^3.0.0" 1556 | 1557 | makeerror@1.0.x: 1558 | version "1.0.11" 1559 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 1560 | dependencies: 1561 | tmpl "1.0.x" 1562 | 1563 | map-obj@^1.0.0, map-obj@^1.0.1: 1564 | version "1.0.1" 1565 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 1566 | 1567 | meow@^3.3.0: 1568 | version "3.7.0" 1569 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 1570 | dependencies: 1571 | camelcase-keys "^2.0.0" 1572 | decamelize "^1.1.2" 1573 | loud-rejection "^1.0.0" 1574 | map-obj "^1.0.1" 1575 | minimist "^1.1.3" 1576 | normalize-package-data "^2.3.4" 1577 | object-assign "^4.0.1" 1578 | read-pkg-up "^1.0.1" 1579 | redent "^1.0.0" 1580 | trim-newlines "^1.0.0" 1581 | 1582 | merge@^1.1.3: 1583 | version "1.2.0" 1584 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 1585 | 1586 | micromatch@^2.1.5, micromatch@^2.3.11: 1587 | version "2.3.11" 1588 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1589 | dependencies: 1590 | arr-diff "^2.0.0" 1591 | array-unique "^0.2.1" 1592 | braces "^1.8.2" 1593 | expand-brackets "^0.1.4" 1594 | extglob "^0.3.1" 1595 | filename-regex "^2.0.0" 1596 | is-extglob "^1.0.0" 1597 | is-glob "^2.0.1" 1598 | kind-of "^3.0.2" 1599 | normalize-path "^2.0.1" 1600 | object.omit "^2.0.0" 1601 | parse-glob "^3.0.4" 1602 | regex-cache "^0.4.2" 1603 | 1604 | mime-db@~1.27.0: 1605 | version "1.27.0" 1606 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 1607 | 1608 | mime-types@^2.1.12, mime-types@~2.1.7: 1609 | version "2.1.15" 1610 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 1611 | dependencies: 1612 | mime-db "~1.27.0" 1613 | 1614 | "minimatch@2 || 3", minimatch@^3.0.2, minimatch@^3.0.3: 1615 | version "3.0.3" 1616 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 1617 | dependencies: 1618 | brace-expansion "^1.0.0" 1619 | 1620 | minimist@0.0.8, minimist@~0.0.1: 1621 | version "0.0.8" 1622 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1623 | 1624 | minimist@^0.1.0: 1625 | version "0.1.0" 1626 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.1.0.tgz#99df657a52574c21c9057497df742790b2b4c0de" 1627 | 1628 | minimist@^1.1.0, minimist@^1.1.1, minimist@^1.1.3: 1629 | version "1.2.0" 1630 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1631 | 1632 | mkdirp@0.5.x, mkdirp@^0.5.1: 1633 | version "0.5.1" 1634 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1635 | dependencies: 1636 | minimist "0.0.8" 1637 | 1638 | ms@0.7.2: 1639 | version "0.7.2" 1640 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 1641 | 1642 | multipipe@^0.1.2: 1643 | version "0.1.2" 1644 | resolved "https://registry.yarnpkg.com/multipipe/-/multipipe-0.1.2.tgz#2a8f2ddf70eed564dff2d57f1e1a137d9f05078b" 1645 | dependencies: 1646 | duplexer2 "0.0.2" 1647 | 1648 | natural-compare@^1.4.0: 1649 | version "1.4.0" 1650 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1651 | 1652 | node-int64@^0.4.0: 1653 | version "0.4.0" 1654 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 1655 | 1656 | node-notifier@^5.0.1: 1657 | version "5.1.2" 1658 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" 1659 | dependencies: 1660 | growly "^1.3.0" 1661 | semver "^5.3.0" 1662 | shellwords "^0.1.0" 1663 | which "^1.2.12" 1664 | 1665 | nopt@3.x: 1666 | version "3.0.6" 1667 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 1668 | dependencies: 1669 | abbrev "1" 1670 | 1671 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: 1672 | version "2.3.6" 1673 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.6.tgz#498fa420c96401f787402ba21e600def9f981fff" 1674 | dependencies: 1675 | hosted-git-info "^2.1.4" 1676 | is-builtin-module "^1.0.0" 1677 | semver "2 || 3 || 4 || 5" 1678 | validate-npm-package-license "^3.0.1" 1679 | 1680 | normalize-path@^2.0.1: 1681 | version "2.0.1" 1682 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a" 1683 | 1684 | number-is-nan@^1.0.0: 1685 | version "1.0.1" 1686 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1687 | 1688 | "nwmatcher@>= 1.3.9 < 2.0.0": 1689 | version "1.3.9" 1690 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.3.9.tgz#8bab486ff7fa3dfd086656bbe8b17116d3692d2a" 1691 | 1692 | oauth-sign@~0.8.1: 1693 | version "0.8.2" 1694 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1695 | 1696 | object-assign@^3.0.0: 1697 | version "3.0.0" 1698 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-3.0.0.tgz#9bedd5ca0897949bca47e7ff408062d549f587f2" 1699 | 1700 | object-assign@^4.0.1, object-assign@^4.1.0: 1701 | version "4.1.1" 1702 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1703 | 1704 | object.omit@^2.0.0: 1705 | version "2.0.1" 1706 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1707 | dependencies: 1708 | for-own "^0.1.4" 1709 | is-extendable "^0.1.1" 1710 | 1711 | once@1.x, once@^1.3.0, once@^1.4.0: 1712 | version "1.4.0" 1713 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1714 | dependencies: 1715 | wrappy "1" 1716 | 1717 | optimist@^0.6.1: 1718 | version "0.6.1" 1719 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 1720 | dependencies: 1721 | minimist "~0.0.1" 1722 | wordwrap "~0.0.2" 1723 | 1724 | optionator@^0.8.1: 1725 | version "0.8.2" 1726 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 1727 | dependencies: 1728 | deep-is "~0.1.3" 1729 | fast-levenshtein "~2.0.4" 1730 | levn "~0.3.0" 1731 | prelude-ls "~1.1.2" 1732 | type-check "~0.3.2" 1733 | wordwrap "~1.0.0" 1734 | 1735 | os-homedir@^1.0.0: 1736 | version "1.0.2" 1737 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1738 | 1739 | os-locale@^1.4.0: 1740 | version "1.4.0" 1741 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 1742 | dependencies: 1743 | lcid "^1.0.0" 1744 | 1745 | os-tmpdir@^1.0.1: 1746 | version "1.0.2" 1747 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1748 | 1749 | p-limit@^1.1.0: 1750 | version "1.1.0" 1751 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 1752 | 1753 | p-locate@^2.0.0: 1754 | version "2.0.0" 1755 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1756 | dependencies: 1757 | p-limit "^1.1.0" 1758 | 1759 | parse-glob@^3.0.4: 1760 | version "3.0.4" 1761 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1762 | dependencies: 1763 | glob-base "^0.3.0" 1764 | is-dotfile "^1.0.0" 1765 | is-extglob "^1.0.0" 1766 | is-glob "^2.0.0" 1767 | 1768 | parse-json@^2.2.0: 1769 | version "2.2.0" 1770 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1771 | dependencies: 1772 | error-ex "^1.2.0" 1773 | 1774 | parse5@^1.5.1: 1775 | version "1.5.1" 1776 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 1777 | 1778 | path-exists@^2.0.0: 1779 | version "2.1.0" 1780 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1781 | dependencies: 1782 | pinkie-promise "^2.0.0" 1783 | 1784 | path-exists@^3.0.0: 1785 | version "3.0.0" 1786 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1787 | 1788 | path-is-absolute@^1.0.0: 1789 | version "1.0.1" 1790 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1791 | 1792 | path-parse@^1.0.5: 1793 | version "1.0.5" 1794 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 1795 | 1796 | path-type@^1.0.0: 1797 | version "1.1.0" 1798 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 1799 | dependencies: 1800 | graceful-fs "^4.1.2" 1801 | pify "^2.0.0" 1802 | pinkie-promise "^2.0.0" 1803 | 1804 | performance-now@^0.2.0: 1805 | version "0.2.0" 1806 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 1807 | 1808 | pify@^2.0.0: 1809 | version "2.3.0" 1810 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1811 | 1812 | pinkie-promise@^2.0.0: 1813 | version "2.0.1" 1814 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1815 | dependencies: 1816 | pinkie "^2.0.0" 1817 | 1818 | pinkie@^2.0.0: 1819 | version "2.0.4" 1820 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1821 | 1822 | prelude-ls@~1.1.2: 1823 | version "1.1.2" 1824 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 1825 | 1826 | preserve@^0.2.0: 1827 | version "0.2.0" 1828 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1829 | 1830 | pretty-format@^19.0.0: 1831 | version "19.0.0" 1832 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-19.0.0.tgz#56530d32acb98a3fa4851c4e2b9d37b420684c84" 1833 | dependencies: 1834 | ansi-styles "^3.0.0" 1835 | 1836 | private@^0.1.6: 1837 | version "0.1.7" 1838 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 1839 | 1840 | process-nextick-args@~1.0.6: 1841 | version "1.0.7" 1842 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1843 | 1844 | prr@~0.0.0: 1845 | version "0.0.0" 1846 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 1847 | 1848 | punycode@^1.4.1: 1849 | version "1.4.1" 1850 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1851 | 1852 | qs@~6.4.0: 1853 | version "6.4.0" 1854 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 1855 | 1856 | randomatic@^1.1.3: 1857 | version "1.1.6" 1858 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 1859 | dependencies: 1860 | is-number "^2.0.2" 1861 | kind-of "^3.0.2" 1862 | 1863 | read-pkg-up@^1.0.1: 1864 | version "1.0.1" 1865 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 1866 | dependencies: 1867 | find-up "^1.0.0" 1868 | read-pkg "^1.0.0" 1869 | 1870 | read-pkg@^1.0.0: 1871 | version "1.1.0" 1872 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 1873 | dependencies: 1874 | load-json-file "^1.0.0" 1875 | normalize-package-data "^2.3.2" 1876 | path-type "^1.0.0" 1877 | 1878 | readable-stream@~1.1.9: 1879 | version "1.1.14" 1880 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" 1881 | dependencies: 1882 | core-util-is "~1.0.0" 1883 | inherits "~2.0.1" 1884 | isarray "0.0.1" 1885 | string_decoder "~0.10.x" 1886 | 1887 | readable-stream@~2.0.0: 1888 | version "2.0.6" 1889 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" 1890 | dependencies: 1891 | core-util-is "~1.0.0" 1892 | inherits "~2.0.1" 1893 | isarray "~1.0.0" 1894 | process-nextick-args "~1.0.6" 1895 | string_decoder "~0.10.x" 1896 | util-deprecate "~1.0.1" 1897 | 1898 | redent@^1.0.0: 1899 | version "1.0.0" 1900 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 1901 | dependencies: 1902 | indent-string "^2.1.0" 1903 | strip-indent "^1.0.1" 1904 | 1905 | regenerator-runtime@^0.10.0: 1906 | version "0.10.3" 1907 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.3.tgz#8c4367a904b51ea62a908ac310bf99ff90a82a3e" 1908 | 1909 | regex-cache@^0.4.2: 1910 | version "0.4.3" 1911 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 1912 | dependencies: 1913 | is-equal-shallow "^0.1.3" 1914 | is-primitive "^2.0.0" 1915 | 1916 | remap-istanbul@^0.7.0: 1917 | version "0.7.0" 1918 | resolved "https://registry.yarnpkg.com/remap-istanbul/-/remap-istanbul-0.7.0.tgz#c360dadaea641dba734cb6a58cabe9ebd88a2858" 1919 | dependencies: 1920 | amdefine "1.0.0" 1921 | gulp-util "3.0.7" 1922 | istanbul "0.4.5" 1923 | source-map ">=0.5.6" 1924 | through2 "2.0.1" 1925 | 1926 | repeat-element@^1.1.2: 1927 | version "1.1.2" 1928 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1929 | 1930 | repeat-string@^1.5.2: 1931 | version "1.6.1" 1932 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1933 | 1934 | repeating@^2.0.0: 1935 | version "2.0.1" 1936 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1937 | dependencies: 1938 | is-finite "^1.0.0" 1939 | 1940 | replace-ext@0.0.1: 1941 | version "0.0.1" 1942 | resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-0.0.1.tgz#29bbd92078a739f0bcce2b4ee41e837953522924" 1943 | 1944 | request@^2.79.0: 1945 | version "2.81.0" 1946 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 1947 | dependencies: 1948 | aws-sign2 "~0.6.0" 1949 | aws4 "^1.2.1" 1950 | caseless "~0.12.0" 1951 | combined-stream "~1.0.5" 1952 | extend "~3.0.0" 1953 | forever-agent "~0.6.1" 1954 | form-data "~2.1.1" 1955 | har-validator "~4.2.1" 1956 | hawk "~3.1.3" 1957 | http-signature "~1.1.0" 1958 | is-typedarray "~1.0.0" 1959 | isstream "~0.1.2" 1960 | json-stringify-safe "~5.0.1" 1961 | mime-types "~2.1.7" 1962 | oauth-sign "~0.8.1" 1963 | performance-now "^0.2.0" 1964 | qs "~6.4.0" 1965 | safe-buffer "^5.0.1" 1966 | stringstream "~0.0.4" 1967 | tough-cookie "~2.3.0" 1968 | tunnel-agent "^0.6.0" 1969 | uuid "^3.0.0" 1970 | 1971 | require-directory@^2.1.1: 1972 | version "2.1.1" 1973 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 1974 | 1975 | require-main-filename@^1.0.1: 1976 | version "1.0.1" 1977 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 1978 | 1979 | resolve@1.1.7, resolve@1.1.x: 1980 | version "1.1.7" 1981 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 1982 | 1983 | resolve@^1.2.0: 1984 | version "1.3.2" 1985 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.2.tgz#1f0442c9e0cbb8136e87b9305f932f46c7f28235" 1986 | dependencies: 1987 | path-parse "^1.0.5" 1988 | 1989 | right-align@^0.1.1: 1990 | version "0.1.3" 1991 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 1992 | dependencies: 1993 | align-text "^0.1.1" 1994 | 1995 | rimraf@^2.4.3, rimraf@^2.4.4: 1996 | version "2.6.1" 1997 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 1998 | dependencies: 1999 | glob "^7.0.5" 2000 | 2001 | safe-buffer@^5.0.1: 2002 | version "5.0.1" 2003 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 2004 | 2005 | sane@~1.5.0: 2006 | version "1.5.0" 2007 | resolved "https://registry.yarnpkg.com/sane/-/sane-1.5.0.tgz#a4adeae764d048621ecb27d5f9ecf513101939f3" 2008 | dependencies: 2009 | anymatch "^1.3.0" 2010 | exec-sh "^0.2.0" 2011 | fb-watchman "^1.8.0" 2012 | minimatch "^3.0.2" 2013 | minimist "^1.1.1" 2014 | walker "~1.0.5" 2015 | watch "~0.10.0" 2016 | 2017 | sax@^1.2.1: 2018 | version "1.2.2" 2019 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.2.tgz#fd8631a23bc7826bef5d871bdb87378c95647828" 2020 | 2021 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 2022 | version "5.3.0" 2023 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 2024 | 2025 | set-blocking@^2.0.0: 2026 | version "2.0.0" 2027 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2028 | 2029 | shellwords@^0.1.0: 2030 | version "0.1.0" 2031 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.0.tgz#66afd47b6a12932d9071cbfd98a52e785cd0ba14" 2032 | 2033 | signal-exit@^3.0.0: 2034 | version "3.0.2" 2035 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2036 | 2037 | slash@^1.0.0: 2038 | version "1.0.0" 2039 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2040 | 2041 | sntp@1.x.x: 2042 | version "1.0.9" 2043 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2044 | dependencies: 2045 | hoek "2.x.x" 2046 | 2047 | source-map-support@^0.4.2, source-map-support@^0.4.4: 2048 | version "0.4.14" 2049 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.14.tgz#9d4463772598b86271b4f523f6c1f4e02a7d6aef" 2050 | dependencies: 2051 | source-map "^0.5.6" 2052 | 2053 | source-map@>=0.5.6, source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: 2054 | version "0.5.6" 2055 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 2056 | 2057 | source-map@^0.4.4: 2058 | version "0.4.4" 2059 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 2060 | dependencies: 2061 | amdefine ">=0.0.4" 2062 | 2063 | source-map@~0.2.0: 2064 | version "0.2.0" 2065 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 2066 | dependencies: 2067 | amdefine ">=0.0.4" 2068 | 2069 | sparkles@^1.0.0: 2070 | version "1.0.0" 2071 | resolved "https://registry.yarnpkg.com/sparkles/-/sparkles-1.0.0.tgz#1acbbfb592436d10bbe8f785b7cc6f82815012c3" 2072 | 2073 | spdx-correct@~1.0.0: 2074 | version "1.0.2" 2075 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2076 | dependencies: 2077 | spdx-license-ids "^1.0.2" 2078 | 2079 | spdx-expression-parse@~1.0.0: 2080 | version "1.0.4" 2081 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2082 | 2083 | spdx-license-ids@^1.0.2: 2084 | version "1.2.2" 2085 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2086 | 2087 | sprintf-js@~1.0.2: 2088 | version "1.0.3" 2089 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2090 | 2091 | sshpk@^1.7.0: 2092 | version "1.11.0" 2093 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.11.0.tgz#2d8d5ebb4a6fab28ffba37fa62a90f4a3ea59d77" 2094 | dependencies: 2095 | asn1 "~0.2.3" 2096 | assert-plus "^1.0.0" 2097 | dashdash "^1.12.0" 2098 | getpass "^0.1.1" 2099 | optionalDependencies: 2100 | bcrypt-pbkdf "^1.0.0" 2101 | ecc-jsbn "~0.1.1" 2102 | jodid25519 "^1.0.0" 2103 | jsbn "~0.1.0" 2104 | tweetnacl "~0.14.0" 2105 | 2106 | string-length@^1.0.1: 2107 | version "1.0.1" 2108 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" 2109 | dependencies: 2110 | strip-ansi "^3.0.0" 2111 | 2112 | string-width@^1.0.1, string-width@^1.0.2: 2113 | version "1.0.2" 2114 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2115 | dependencies: 2116 | code-point-at "^1.0.0" 2117 | is-fullwidth-code-point "^1.0.0" 2118 | strip-ansi "^3.0.0" 2119 | 2120 | string_decoder@~0.10.x: 2121 | version "0.10.31" 2122 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 2123 | 2124 | stringstream@~0.0.4: 2125 | version "0.0.5" 2126 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2127 | 2128 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2129 | version "3.0.1" 2130 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2131 | dependencies: 2132 | ansi-regex "^2.0.0" 2133 | 2134 | strip-bom@3.0.0: 2135 | version "3.0.0" 2136 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2137 | 2138 | strip-bom@^2.0.0: 2139 | version "2.0.0" 2140 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2141 | dependencies: 2142 | is-utf8 "^0.2.0" 2143 | 2144 | strip-indent@^1.0.1: 2145 | version "1.0.1" 2146 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 2147 | dependencies: 2148 | get-stdin "^4.0.1" 2149 | 2150 | supports-color@^2.0.0: 2151 | version "2.0.0" 2152 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2153 | 2154 | supports-color@^3.1.0, supports-color@^3.1.2: 2155 | version "3.2.3" 2156 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 2157 | dependencies: 2158 | has-flag "^1.0.0" 2159 | 2160 | symbol-tree@^3.2.1: 2161 | version "3.2.2" 2162 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 2163 | 2164 | test-exclude@^4.0.3: 2165 | version "4.0.3" 2166 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.0.3.tgz#86a13ce3effcc60e6c90403cf31a27a60ac6c4e7" 2167 | dependencies: 2168 | arrify "^1.0.1" 2169 | micromatch "^2.3.11" 2170 | object-assign "^4.1.0" 2171 | read-pkg-up "^1.0.1" 2172 | require-main-filename "^1.0.1" 2173 | 2174 | throat@^3.0.0: 2175 | version "3.0.0" 2176 | resolved "https://registry.yarnpkg.com/throat/-/throat-3.0.0.tgz#e7c64c867cbb3845f10877642f7b60055b8ec0d6" 2177 | 2178 | through2@2.0.1, through2@^2.0.0: 2179 | version "2.0.1" 2180 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.1.tgz#384e75314d49f32de12eebb8136b8eb6b5d59da9" 2181 | dependencies: 2182 | readable-stream "~2.0.0" 2183 | xtend "~4.0.0" 2184 | 2185 | time-stamp@^1.0.0: 2186 | version "1.0.1" 2187 | resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-1.0.1.tgz#9f4bd23559c9365966f3302dbba2b07c6b99b151" 2188 | 2189 | tmpl@1.0.x: 2190 | version "1.0.4" 2191 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 2192 | 2193 | to-fast-properties@^1.0.1: 2194 | version "1.0.2" 2195 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 2196 | 2197 | tough-cookie@^2.3.2, tough-cookie@~2.3.0: 2198 | version "2.3.2" 2199 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 2200 | dependencies: 2201 | punycode "^1.4.1" 2202 | 2203 | tr46@~0.0.3: 2204 | version "0.0.3" 2205 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 2206 | 2207 | trim-newlines@^1.0.0: 2208 | version "1.0.0" 2209 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 2210 | 2211 | trim-right@^1.0.1: 2212 | version "1.0.1" 2213 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2214 | 2215 | ts-jest@^19.0.2: 2216 | version "19.0.2" 2217 | resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-19.0.2.tgz#1d0f0f2ffff97695ff8c09873b371167d6f4aea6" 2218 | dependencies: 2219 | fs-extra "^2.1.2" 2220 | glob-all "^3.1.0" 2221 | istanbul-lib-instrument "^1.2.0" 2222 | jest-config "^19.0.0" 2223 | jest-util "^19.0.0" 2224 | lodash.assign "^4.2.0" 2225 | lodash.includes "^4.3.0" 2226 | lodash.partition "^4.6.0" 2227 | lodash.pickby "^4.6.0" 2228 | remap-istanbul "^0.7.0" 2229 | source-map-support "^0.4.4" 2230 | yargs "^6.1.1" 2231 | 2232 | tunnel-agent@^0.6.0: 2233 | version "0.6.0" 2234 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2235 | dependencies: 2236 | safe-buffer "^5.0.1" 2237 | 2238 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2239 | version "0.14.5" 2240 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2241 | 2242 | type-check@~0.3.2: 2243 | version "0.3.2" 2244 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 2245 | dependencies: 2246 | prelude-ls "~1.1.2" 2247 | 2248 | typescript@^2.2.1: 2249 | version "2.2.1" 2250 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.2.1.tgz#4862b662b988a4c8ff691cc7969622d24db76ae9" 2251 | 2252 | uglify-js@^2.6: 2253 | version "2.8.15" 2254 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.15.tgz#835dd4cd5872554756e6874508d0d0561704d94d" 2255 | dependencies: 2256 | source-map "~0.5.1" 2257 | yargs "~3.10.0" 2258 | optionalDependencies: 2259 | uglify-to-browserify "~1.0.0" 2260 | 2261 | uglify-to-browserify@~1.0.0: 2262 | version "1.0.2" 2263 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 2264 | 2265 | util-deprecate@~1.0.1: 2266 | version "1.0.2" 2267 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2268 | 2269 | uuid@^3.0.0: 2270 | version "3.0.1" 2271 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 2272 | 2273 | validate-npm-package-license@^3.0.1: 2274 | version "3.0.1" 2275 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 2276 | dependencies: 2277 | spdx-correct "~1.0.0" 2278 | spdx-expression-parse "~1.0.0" 2279 | 2280 | verror@1.3.6: 2281 | version "1.3.6" 2282 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 2283 | dependencies: 2284 | extsprintf "1.0.2" 2285 | 2286 | vinyl@^0.5.0: 2287 | version "0.5.3" 2288 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-0.5.3.tgz#b0455b38fc5e0cf30d4325132e461970c2091cde" 2289 | dependencies: 2290 | clone "^1.0.0" 2291 | clone-stats "^0.0.1" 2292 | replace-ext "0.0.1" 2293 | 2294 | walker@~1.0.5: 2295 | version "1.0.7" 2296 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 2297 | dependencies: 2298 | makeerror "1.0.x" 2299 | 2300 | watch@~0.10.0: 2301 | version "0.10.0" 2302 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" 2303 | 2304 | webidl-conversions@^3.0.0: 2305 | version "3.0.1" 2306 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 2307 | 2308 | webidl-conversions@^4.0.0: 2309 | version "4.0.1" 2310 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.1.tgz#8015a17ab83e7e1b311638486ace81da6ce206a0" 2311 | 2312 | whatwg-encoding@^1.0.1: 2313 | version "1.0.1" 2314 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 2315 | dependencies: 2316 | iconv-lite "0.4.13" 2317 | 2318 | whatwg-url@^4.3.0: 2319 | version "4.6.0" 2320 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.6.0.tgz#ef98da442273be04cf9632e176f257d2395a1ae4" 2321 | dependencies: 2322 | tr46 "~0.0.3" 2323 | webidl-conversions "^3.0.0" 2324 | 2325 | which-module@^1.0.0: 2326 | version "1.0.0" 2327 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 2328 | 2329 | which@^1.1.1, which@^1.2.12: 2330 | version "1.2.14" 2331 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 2332 | dependencies: 2333 | isexe "^2.0.0" 2334 | 2335 | window-size@0.1.0: 2336 | version "0.1.0" 2337 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 2338 | 2339 | wordwrap@0.0.2: 2340 | version "0.0.2" 2341 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 2342 | 2343 | wordwrap@^1.0.0, wordwrap@~1.0.0: 2344 | version "1.0.0" 2345 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 2346 | 2347 | wordwrap@~0.0.2: 2348 | version "0.0.3" 2349 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 2350 | 2351 | worker-farm@^1.3.1: 2352 | version "1.3.1" 2353 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.3.1.tgz#4333112bb49b17aa050b87895ca6b2cacf40e5ff" 2354 | dependencies: 2355 | errno ">=0.1.1 <0.2.0-0" 2356 | xtend ">=4.0.0 <4.1.0-0" 2357 | 2358 | wrap-ansi@^2.0.0: 2359 | version "2.1.0" 2360 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 2361 | dependencies: 2362 | string-width "^1.0.1" 2363 | strip-ansi "^3.0.1" 2364 | 2365 | wrappy@1: 2366 | version "1.0.2" 2367 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2368 | 2369 | xml-name-validator@^2.0.1: 2370 | version "2.0.1" 2371 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 2372 | 2373 | "xtend@>=4.0.0 <4.1.0-0", xtend@~4.0.0: 2374 | version "4.0.1" 2375 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2376 | 2377 | y18n@^3.2.1: 2378 | version "3.2.1" 2379 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 2380 | 2381 | yargs-parser@^4.2.0: 2382 | version "4.2.1" 2383 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" 2384 | dependencies: 2385 | camelcase "^3.0.0" 2386 | 2387 | yargs@^6.1.1, yargs@^6.3.0: 2388 | version "6.6.0" 2389 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" 2390 | dependencies: 2391 | camelcase "^3.0.0" 2392 | cliui "^3.2.0" 2393 | decamelize "^1.1.1" 2394 | get-caller-file "^1.0.1" 2395 | os-locale "^1.4.0" 2396 | read-pkg-up "^1.0.1" 2397 | require-directory "^2.1.1" 2398 | require-main-filename "^1.0.1" 2399 | set-blocking "^2.0.0" 2400 | string-width "^1.0.2" 2401 | which-module "^1.0.0" 2402 | y18n "^3.2.1" 2403 | yargs-parser "^4.2.0" 2404 | 2405 | yargs@~1.2.6: 2406 | version "1.2.6" 2407 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-1.2.6.tgz#9c7b4a82fd5d595b2bf17ab6dcc43135432fe34b" 2408 | dependencies: 2409 | minimist "^0.1.0" 2410 | 2411 | yargs@~3.10.0: 2412 | version "3.10.0" 2413 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 2414 | dependencies: 2415 | camelcase "^1.0.2" 2416 | cliui "^2.1.0" 2417 | decamelize "^1.0.0" 2418 | window-size "0.1.0" 2419 | --------------------------------------------------------------------------------