├── .gitignore ├── .flowconfig ├── .travis.yml ├── README.md ├── LICENSE ├── package.json ├── bin.js ├── index.js ├── test.js ├── flow-typed └── npm │ └── jest_v20.x.x.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | 3 | [include] 4 | 5 | [libs] 6 | 7 | [lints] 8 | 9 | [options] 10 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - '8' 4 | cache: yarn 5 | script: yarn test -- --runInBand --coverage && yarn flow 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # validate-npm-package 2 | 3 | > Validate a package.json file 4 | 5 | ```js 6 | const validateNpmPackage = require('validate-npm-package'); 7 | 8 | let results = validateNpmPackage({ 9 | name: 'foo', 10 | version: '1.0.0', 11 | }); 12 | // { 13 | // validForNewPackages: false, 14 | // validForOldPackages: true, 15 | // warnings: ["..."], 16 | // errors: ["..."], 17 | // } 18 | ``` 19 | 20 | There's also a CLI: 21 | 22 | ```sh 23 | $ validate-npm-package 24 | $ validate-npm-package path/to/pkg 25 | $ validate-npm-package --quiet/-q 26 | ``` 27 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright 2017 Atlassian Pty Ltd 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "validate-npm-package", 3 | "version": "1.0.5", 4 | "description": "Validate a package.json file", 5 | "main": "index.js", 6 | "bin": "bin.js", 7 | "repository": "atlassian/validate-npm-package", 8 | "author": "James Kyle ", 9 | "license": "Apache-2.0", 10 | "files": [ 11 | "index.js", 12 | "bin.js" 13 | ], 14 | "scripts": { 15 | "test": "jest" 16 | }, 17 | "dependencies": { 18 | "chalk": "^2.1.0", 19 | "meow": "^3.7.0", 20 | "read-pkg-up": "^2.0.0", 21 | "validate-npm-package-license": "^3.0.1", 22 | "validate-npm-package-name": "^3.0.0" 23 | }, 24 | "devDependencies": { 25 | "flow-bin": "^0.52.0", 26 | "jest": "^20.0.4" 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /bin.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | // @flow 3 | 'use strict'; 4 | 5 | const meow = require('meow'); 6 | const readPkgUp = require('read-pkg-up'); 7 | const chalk = require('chalk'); 8 | const validateNpmPackage = require('./'); 9 | 10 | const cli = meow(` 11 | Usage 12 | validate-npm-package 13 | validate-npm-package [path/to/package] 14 | 15 | Options 16 | --quiet, -q Only output errors, ignore warnings 17 | `, { 18 | alias: { 19 | q: 'quiet', 20 | }, 21 | }); 22 | 23 | const pkg = readPkgUp.sync({ 24 | cwd: cli.input[0] || process.cwd(), 25 | normalize: false, 26 | }).pkg; 27 | 28 | const results = validateNpmPackage(pkg); 29 | 30 | for (let error of results.errors) { 31 | console.error(chalk.red('error'), error); 32 | } 33 | 34 | if (!cli.flags.quiet) { 35 | for (let warning of results.warnings) { 36 | console.log(chalk.yellow('warning'), warning); 37 | } 38 | } 39 | 40 | let isValid = results.validForNewPackages && results.validForOldPackages; 41 | if (!isValid) { 42 | process.exit(1); 43 | } 44 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | 'use strict'; 3 | 4 | const semver = require('semver'); 5 | const validateNpmPackageName = require('validate-npm-package-name'); 6 | const validateNpmPackageLicense = require('validate-npm-package-license'); 7 | 8 | function isArrayOfStrings(value) { 9 | return Array.isArray(value) && value.every(item => typeof item === 'string'); 10 | } 11 | 12 | function isObject(value) { 13 | return typeof value === 'object' && value !== null && !Array.isArray(value); 14 | } 15 | 16 | function isUndefined(value) { 17 | return typeof value === 'undefined'; 18 | } 19 | 20 | function isString(value) { 21 | return typeof value === 'string'; 22 | } 23 | 24 | function isObjectOfStrings(value) { 25 | return isObject(value) && Object.keys(value).every(key => typeof value[key] === 'string'); 26 | } 27 | 28 | function isUndefinedOrString(value) { 29 | return isUndefined(value) || isString(value); 30 | } 31 | 32 | function warn(msg) { 33 | return { warnings: [msg] }; 34 | } 35 | 36 | const validators = {}; 37 | 38 | validators.name = value => { 39 | if (!isString(value)) return 'name must be a string'; 40 | return validateNpmPackageName(value); 41 | }; 42 | 43 | validators.version = value => { 44 | if (!isString(value)) return 'version must be a string'; 45 | if (!semver.valid(value)) return 'version must be a valid semver version'; 46 | return true; 47 | } 48 | 49 | validators.license = value => { 50 | if (!isString(value)) return 'license must be a string'; 51 | return validateNpmPackageLicense(value); 52 | }; 53 | 54 | validators.description = value => { 55 | if (isUndefined(value)) return true; 56 | if (!isString(value)) return 'description must be a string'; 57 | return true; 58 | }; 59 | 60 | validators.main = value => { 61 | if (isUndefined(value)) return true; 62 | if (!isString(value)) return 'main must be a string'; 63 | return true; 64 | }; 65 | 66 | validators.bin = value => { 67 | if (isUndefined(value)) return true; 68 | if (isObjectOfStrings(value)) return true; 69 | if (!isString(value)) return 'bin must be a string or object of strings'; 70 | return true; 71 | }; 72 | 73 | validators.keywords = value => { 74 | if (isUndefined(value)) return warn('missing keywords'); 75 | if (!isArrayOfStrings(value)) return 'keywords must be an array of strings'; 76 | return true; 77 | }; 78 | 79 | validators.bugs = value => { 80 | if (isUndefined(value)) return warn('missing bugs'); 81 | if (!isString(value)) return 'bugs must be a string'; 82 | return true; 83 | }; 84 | 85 | validators.homepage = value => { 86 | if (isUndefined(value)) return warn('missing homepage'); 87 | if (!isString(value)) return 'homepage must be a string'; 88 | return true; 89 | }; 90 | 91 | validators.repository = value => { 92 | if (isUndefined(value)) return warn('missing repository'); 93 | if (isString(value)) return true; 94 | if (isObject(value) && isString(value.type) && isString(value.url)) return true; 95 | return 'repository must be string or object with a type and url'; 96 | }; 97 | 98 | validators.files = value => { 99 | if (isUndefined(value)) return warn('missing files'); 100 | if (!isArrayOfStrings(value)) return 'files must be an array of strings'; 101 | return true; 102 | }; 103 | 104 | validators.man = value => { 105 | if (isUndefined(value)) return true; 106 | if (isArrayOfStrings(value)) return true; 107 | if (!isString(value)) return 'man must be a string or an array of strings'; 108 | }; 109 | 110 | validators.directories = value => { 111 | if (isUndefined(value)) return true; 112 | if (!isObjectOfStrings(value)) return 'directories must be an object of strings'; 113 | return true; 114 | }; 115 | 116 | validators.scripts = value => { 117 | if (isUndefined(value)) return true; 118 | if (!isObjectOfStrings(value)) return 'scripts must be an object of strings'; 119 | return true; 120 | }; 121 | 122 | validators.config = value => { 123 | if (isUndefined(value)) return true; 124 | if (!isObject(value)) return 'config must be an object'; 125 | return true; 126 | }; 127 | 128 | validators.engines = value => { 129 | if (isUndefined(value)) return true; 130 | if (!isObjectOfStrings(value)) return 'engines must be an object of strings'; 131 | return true; 132 | }; 133 | 134 | validators.publishConfig = value => { 135 | if (isUndefined(value)) return true; 136 | if (!isObject(value)) return 'publishConfig must be an object'; 137 | return true; 138 | }; 139 | 140 | validators.os = value => { 141 | if (isUndefined(value)) return true; 142 | if (!isArrayOfStrings(value)) return 'os must be an array of strings'; 143 | return true; 144 | }; 145 | 146 | validators.cpu = value => { 147 | if (isUndefined(value)) return true; 148 | if (!isArrayOfStrings(value)) return 'cpu must be an array of strings'; 149 | return true; 150 | }; 151 | 152 | validators.bundledDependencies = value => { 153 | if (isUndefined(value)) return true; 154 | if (!isArrayOfStrings(value)) return 'bundledDependencies must be an array of strings'; 155 | return true; 156 | }; 157 | 158 | function createDependenciesValidator(name) { 159 | return value => { 160 | if (isUndefined(value)) return true; 161 | if (!isObjectOfStrings(value)) return `${name} must be an object of strings`; 162 | return true; 163 | }; 164 | } 165 | 166 | validators.dependencies = createDependenciesValidator('dependencies'); 167 | validators.devDependencies = createDependenciesValidator('devDependencies'); 168 | validators.peerDependencies = createDependenciesValidator('peerDependencies'); 169 | validators.optionalDependencies = createDependenciesValidator('optionalDependencies'); 170 | 171 | function isAuthor(value) { 172 | if (isString(value)) return true; 173 | if (!isObject(value)) return false; 174 | if (!isString(value.name)) return false; 175 | if (!isString(value.email)) return false; 176 | if (!isUndefinedOrString(value.url)) return false; 177 | return true; 178 | } 179 | 180 | validators.author = value => { 181 | if (isUndefined(value)) return warn('missing author'); 182 | if (!isAuthor(value)) return 'author must be string or object with a name, email, and url'; 183 | return true; 184 | }; 185 | 186 | validators.contributors = value => { 187 | if (isUndefined(value)) return true; 188 | if (Array.isArray(value) && value.every(isAuthor)) return true; 189 | return 'contributors must be an array of strings or objects with a name, email, and url'; 190 | }; 191 | 192 | function mergeValidation(results, validation) { 193 | if (validation === true) { 194 | validation = { 195 | validForNewPackages: true, 196 | validForOldPackages: true, 197 | }; 198 | } 199 | 200 | if (typeof validation === 'string') { 201 | validation = { 202 | validForNewPackages: false, 203 | validForOldPackages: false, 204 | errors: [validation], 205 | }; 206 | } 207 | 208 | if (validation.validForNewPackages === false) { 209 | results.validForNewPackages = false; 210 | } 211 | 212 | if (validation.validForOldPackages === false) { 213 | results.validForOldPackages = false; 214 | } 215 | 216 | if (validation.warnings) { 217 | results.warnings = results.warnings.concat(validation.warnings); 218 | } 219 | 220 | if (validation.errors) { 221 | results.errors = results.errors.concat(validation.errors); 222 | } 223 | 224 | return results; 225 | } 226 | 227 | /*:: 228 | type Results = { 229 | validForNewPackages: boolean, 230 | validForOldPackages: boolean, 231 | warnings: Array, 232 | errors: Array, 233 | } 234 | */ 235 | 236 | module.exports = function isValidPkg(pkg /*: Object */) /*: Results */ { 237 | return Object.keys(validators).map(key => { 238 | return validators[key](pkg[key]) 239 | }).reduce(mergeValidation, { 240 | validForNewPackages: true, 241 | validForOldPackages: true, 242 | warnings: [], 243 | errors: [], 244 | }); 245 | }; 246 | -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | 'use strict'; 3 | 4 | const validateNpmPackage = require('./'); 5 | 6 | function run(pkg) { 7 | return validateNpmPackage(pkg); 8 | } 9 | 10 | function error(pkg, str) { 11 | expect(run(pkg).errors).toContain(str); 12 | } 13 | 14 | function warning(pkg, str) { 15 | expect(run(pkg).warnings).toContain(str); 16 | } 17 | 18 | function notError(pkg, str) { 19 | expect(run(pkg).errors).not.toContain(str); 20 | } 21 | 22 | function notWarning(pkg, str) { 23 | expect(run(pkg).warnings).not.toContain(str); 24 | } 25 | 26 | test('name', () => { 27 | error({}, 'name must be a string'); 28 | error({ name: 42 }, 'name must be a string'); 29 | error({ name: '%' }, 'name can only contain URL-friendly characters'); 30 | notError({ name: 'hi' }, 'name must be a string'); 31 | }); 32 | 33 | test('version', () => { 34 | error({}, 'version must be a string'); 35 | error({ version: 42 }, 'version must be a string'); 36 | error({ version: '%' }, 'version must be a valid semver version'); 37 | notError({ version: '2.0.0' }, 'version must be a string'); 38 | notError({ version: '2.0.0' }, 'version must be a valid semver version'); 39 | }); 40 | 41 | test('license', () => { 42 | error({}, 'license must be a string'); 43 | error({ license: 42 }, 'license must be a string'); 44 | warning({ license: 'ERR' }, 'license should be a valid SPDX license expression (without "LicenseRef"), "UNLICENSED", or "SEE LICENSE IN "'); 45 | notWarning({ version: 'MIT' }, 'license should be a valid SPDX license expression (without "LicenseRef"), "UNLICENSED", or "SEE LICENSE IN "'); 46 | }); 47 | 48 | test('description', () => { 49 | notError({}, 'description must be a string'); 50 | error({ description: false }, 'description must be a string'); 51 | notError({ description: 'hi' }, 'description must be a string'); 52 | }); 53 | 54 | test('main', () => { 55 | notError({}, 'main must be a string'); 56 | error({ main: false }, 'main must be a string'); 57 | notError({ main: 'index.js' }, 'main must be a string'); 58 | }); 59 | 60 | test('bin', () => { 61 | notError({}, 'bin must be a string or object of strings'); 62 | error({ bin: false }, 'bin must be a string or object of strings'); 63 | notError({ bin: 'index.js' }, 'bin must be a string or object of strings'); 64 | }); 65 | 66 | test('keywords', () => { 67 | warning({}, 'missing keywords'); 68 | error({ keywords: false }, 'keywords must be an array of strings'); 69 | notError({ keywords: ['hi'] }, 'keywords must be an array of strings'); 70 | }); 71 | 72 | test('bugs', () => { 73 | warning({}, 'missing bugs'); 74 | error({ bugs: false }, 'bugs must be a string'); 75 | notError({ bugs: 'repo/user' }, 'bugs must be a string'); 76 | }); 77 | 78 | test('homepage', () => { 79 | warning({}, 'missing homepage'); 80 | error({ homepage: false }, 'homepage must be a string'); 81 | notWarning({ homepage: 'repo/user' }, 'missing homepage'); 82 | notError({ homepage: 'repo/user' }, 'homepage must be a string'); 83 | }); 84 | 85 | test('repository', () => { 86 | warning({}, 'missing repository'); 87 | error({ repository: false }, 'repository must be string or object with a type and url'); 88 | error({ repository: {} }, 'repository must be string or object with a type and url'); 89 | error({ repository: { type: 'git' } }, 'repository must be string or object with a type and url'); 90 | error({ repository: { url: 'https://github.com/repo/user' } }, 'repository must be string or object with a type and url'); 91 | notWarning({ repository: 'repo/user' }, 'missing repository'); 92 | notError({ repository: 'repo/user' }, 'repository must be string or object with a type and url'); 93 | notWarning({ repository: { type: 'git', url: 'https://github.com/repo/user' } }, 'missing repository'); 94 | notError({ repository: { type: 'git', url: 'https://github.com/repo/user' } }, 'repository must be string or object with a type and url'); 95 | }); 96 | 97 | test('files', () => { 98 | warning({}, 'missing files'); 99 | error({ files: false }, 'files must be an array of strings'); 100 | notError({ files: ['index.js'] }, 'files must be an array of strings'); 101 | }); 102 | 103 | test('directories', () => { 104 | error({ directories: false }, 'directories must be an object of strings'); 105 | error({ directories: { test: false } }, 'directories must be an object of strings'); 106 | notError({ directories: { test: 'test/' } }, 'directories must be an object of strings'); 107 | }); 108 | 109 | test('scripts', () => { 110 | error({ scripts: false }, 'scripts must be an object of strings'); 111 | error({ scripts: { test: false } }, 'scripts must be an object of strings'); 112 | notError({ scripts: { test: 'jest' } }, 'scripts must be an object of strings'); 113 | }); 114 | 115 | test('config', () => { 116 | error({ config: false }, 'config must be an object'); 117 | notError({ config: { opt: false } }, 'config must be an object'); 118 | notError({ config: { opt: 'value' } }, 'config must be an object'); 119 | }); 120 | 121 | test('engines', () => { 122 | error({ engines: false }, 'engines must be an object of strings'); 123 | error({ engines: { node: false } }, 'engines must be an object of strings'); 124 | notError({ engines: { node: '8' } }, 'engines must be an object of strings'); 125 | }); 126 | 127 | test('publishConfig', () => { 128 | error({ publishConfig: false }, 'publishConfig must be an object'); 129 | notError({ publishConfig: { opt: false } }, 'publishConfig must be an object'); 130 | notError({ publishConfig: { opt: 'value' } }, 'publishConfig must be an object'); 131 | }); 132 | 133 | test('os', () => { 134 | error({ os: false }, 'os must be an array of strings'); 135 | error({ os: [false] }, 'os must be an array of strings'); 136 | notError({ os: ['darwin'] }, 'os must be an array of strings'); 137 | }); 138 | 139 | test('cpu', () => { 140 | error({ cpu: false }, 'cpu must be an array of strings'); 141 | error({ cpu: [false] }, 'cpu must be an array of strings'); 142 | notError({ cpu: ['x64'] }, 'cpu must be an array of strings'); 143 | }); 144 | 145 | test('bundledDependencies', () => { 146 | error({ bundledDependencies: false }, 'bundledDependencies must be an array of strings'); 147 | error({ bundledDependencies: [false] }, 'bundledDependencies must be an array of strings'); 148 | notError({ bundledDependencies: ['pkg-1'] }, 'bundledDependencies must be an array of strings'); 149 | }); 150 | 151 | test('dependencies', () => { 152 | error({ dependencies: false }, 'dependencies must be an object of strings'); 153 | error({ dependencies: { 'pkg-1': false } }, 'dependencies must be an object of strings'); 154 | notError({ dependencies: { 'pkg-1': '1.0.0' } }, 'dependencies must be an object of strings'); 155 | }); 156 | 157 | test('devDependencies', () => { 158 | error({ devDependencies: false }, 'devDependencies must be an object of strings'); 159 | error({ devDependencies: { 'pkg-1': false } }, 'devDependencies must be an object of strings'); 160 | notError({ devDependencies: { 'pkg-1': '1.0.0' } }, 'devDependencies must be an object of strings'); 161 | }); 162 | 163 | test('optionalDependencies', () => { 164 | error({ peerDependencies: false }, 'peerDependencies must be an object of strings'); 165 | error({ peerDependencies: { 'pkg-1': false } }, 'peerDependencies must be an object of strings'); 166 | notError({ peerDependencies: { 'pkg-1': '1.0.0' } }, 'peerDependencies must be an object of strings'); 167 | }); 168 | 169 | test('optionalDependencies', () => { 170 | error({ optionalDependencies: false }, 'optionalDependencies must be an object of strings'); 171 | error({ optionalDependencies: { 'pkg-1': false } }, 'optionalDependencies must be an object of strings'); 172 | notError({ optionalDependencies: { 'pkg-1': '1.0.0' } }, 'optionalDependencies must be an object of strings'); 173 | }); 174 | 175 | test('author', () => { 176 | warning({}, 'missing author'); 177 | error({ author: false }, 'author must be string or object with a name, email, and url'); 178 | notError({ author: 'foo ' }, 'author must be string or object with a name, email, and url'); 179 | error({ author: {} }, 'author must be string or object with a name, email, and url'); 180 | error({ author: { name: 'foo' } }, 'author must be string or object with a name, email, and url'); 181 | error({ author: { name: 'foo', email: false } }, 'author must be string or object with a name, email, and url'); 182 | error({ author: { name: false, email: 'email@foo.com' } }, 'author must be string or object with a name, email, and url'); 183 | notError({ author: { name: 'foo', email: 'email@foo.com' } }, 'author must be string or object with a name, email, and url'); 184 | error({ author: { name: 'foo', email: 'email@foo.com', url: false } }, 'author must be string or object with a name, email, and url'); 185 | notError({ author: { name: 'foo', email: 'email@foo.com', url: 'https://website.com' } }, 'author must be string or object with a name, email, and url'); 186 | }); 187 | 188 | test('contributors', () => { 189 | error({ contributors: false }, 'contributors must be an array of strings or objects with a name, email, and url'); 190 | notError({ contributors: ['foo '] }, 'contributors must be an array of strings or objects with a name, email, and url'); 191 | error({ contributors: [{}] }, 'contributors must be an array of strings or objects with a name, email, and url'); 192 | error({ contributors: [{ name: 'foo' }] }, 'contributors must be an array of strings or objects with a name, email, and url'); 193 | error({ contributors: [{ name: 'foo', email: false }] }, 'contributors must be an array of strings or objects with a name, email, and url'); 194 | error({ contributors: [{ name: false, email: 'email@foo.com' }] }, 'contributors must be an array of strings or objects with a name, email, and url'); 195 | notError({ contributors: [{ name: 'foo', email: 'email@foo.com' }] }, 'contributors must be an array of strings or objects with a name, email, and url'); 196 | error({ contributors: [{ name: 'foo', email: 'email@foo.com', url: false }] }, 'contributors must be an array of strings or objects with a name, email, and url'); 197 | notError({ contributors: [{ name: 'foo', email: 'email@foo.com', url: 'https://website.com' }] }, 'contributors must be an array of strings or objects with a name, email, and url'); 198 | }); 199 | -------------------------------------------------------------------------------- /flow-typed/npm/jest_v20.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: 5960ed076fe29ecf92f57584d68acf98 2 | // flow-typed version: b2a49dc910/jest_v20.x.x/flow_>=v0.39.x 3 | 4 | type JestMockFn, TReturn> = { 5 | (...args: TArguments): TReturn, 6 | /** 7 | * An object for introspecting mock calls 8 | */ 9 | mock: { 10 | /** 11 | * An array that represents all calls that have been made into this mock 12 | * function. Each call is represented by an array of arguments that were 13 | * passed during the call. 14 | */ 15 | calls: Array, 16 | /** 17 | * An array that contains all the object instances that have been 18 | * instantiated from this mock function. 19 | */ 20 | instances: Array 21 | }, 22 | /** 23 | * Resets all information stored in the mockFn.mock.calls and 24 | * mockFn.mock.instances arrays. Often this is useful when you want to clean 25 | * up a mock's usage data between two assertions. 26 | */ 27 | mockClear(): void, 28 | /** 29 | * Resets all information stored in the mock. This is useful when you want to 30 | * completely restore a mock back to its initial state. 31 | */ 32 | mockReset(): void, 33 | /** 34 | * Removes the mock and restores the initial implementation. This is useful 35 | * when you want to mock functions in certain test cases and restore the 36 | * original implementation in others. Beware that mockFn.mockRestore only 37 | * works when mock was created with jest.spyOn. Thus you have to take care of 38 | * restoration yourself when manually assigning jest.fn(). 39 | */ 40 | mockRestore(): void, 41 | /** 42 | * Accepts a function that should be used as the implementation of the mock. 43 | * The mock itself will still record all calls that go into and instances 44 | * that come from itself -- the only difference is that the implementation 45 | * will also be executed when the mock is called. 46 | */ 47 | mockImplementation( 48 | fn: (...args: TArguments) => TReturn, 49 | ): JestMockFn, 50 | /** 51 | * Accepts a function that will be used as an implementation of the mock for 52 | * one call to the mocked function. Can be chained so that multiple function 53 | * calls produce different results. 54 | */ 55 | mockImplementationOnce( 56 | fn: (...args: TArguments) => TReturn, 57 | ): JestMockFn, 58 | /** 59 | * Just a simple sugar function for returning `this` 60 | */ 61 | mockReturnThis(): void, 62 | /** 63 | * Deprecated: use jest.fn(() => value) instead 64 | */ 65 | mockReturnValue(value: TReturn): JestMockFn, 66 | /** 67 | * Sugar for only returning a value once inside your mock 68 | */ 69 | mockReturnValueOnce(value: TReturn): JestMockFn 70 | }; 71 | 72 | type JestAsymmetricEqualityType = { 73 | /** 74 | * A custom Jasmine equality tester 75 | */ 76 | asymmetricMatch(value: mixed): boolean 77 | }; 78 | 79 | type JestCallsType = { 80 | allArgs(): mixed, 81 | all(): mixed, 82 | any(): boolean, 83 | count(): number, 84 | first(): mixed, 85 | mostRecent(): mixed, 86 | reset(): void 87 | }; 88 | 89 | type JestClockType = { 90 | install(): void, 91 | mockDate(date: Date): void, 92 | tick(milliseconds?: number): void, 93 | uninstall(): void 94 | }; 95 | 96 | type JestMatcherResult = { 97 | message?: string | (() => string), 98 | pass: boolean 99 | }; 100 | 101 | type JestMatcher = (actual: any, expected: any) => JestMatcherResult; 102 | 103 | type JestPromiseType = { 104 | /** 105 | * Use rejects to unwrap the reason of a rejected promise so any other 106 | * matcher can be chained. If the promise is fulfilled the assertion fails. 107 | */ 108 | rejects: JestExpectType, 109 | /** 110 | * Use resolves to unwrap the value of a fulfilled promise so any other 111 | * matcher can be chained. If the promise is rejected the assertion fails. 112 | */ 113 | resolves: JestExpectType 114 | }; 115 | 116 | /** 117 | * Plugin: jest-enzyme 118 | */ 119 | type EnzymeMatchersType = { 120 | toBeChecked(): void, 121 | toBeDisabled(): void, 122 | toBeEmpty(): void, 123 | toBePresent(): void, 124 | toContainReact(element: React$Element): void, 125 | toHaveClassName(className: string): void, 126 | toHaveHTML(html: string): void, 127 | toHaveProp(propKey: string, propValue?: any): void, 128 | toHaveRef(refName: string): void, 129 | toHaveState(stateKey: string, stateValue?: any): void, 130 | toHaveStyle(styleKey: string, styleValue?: any): void, 131 | toHaveTagName(tagName: string): void, 132 | toHaveText(text: string): void, 133 | toIncludeText(text: string): void, 134 | toHaveValue(value: any): void, 135 | toMatchElement(element: React$Element): void, 136 | toMatchSelector(selector: string): void, 137 | }; 138 | 139 | type JestExpectType = { 140 | not: JestExpectType & EnzymeMatchersType, 141 | /** 142 | * If you have a mock function, you can use .lastCalledWith to test what 143 | * arguments it was last called with. 144 | */ 145 | lastCalledWith(...args: Array): void, 146 | /** 147 | * toBe just checks that a value is what you expect. It uses === to check 148 | * strict equality. 149 | */ 150 | toBe(value: any): void, 151 | /** 152 | * Use .toHaveBeenCalled to ensure that a mock function got called. 153 | */ 154 | toBeCalled(): void, 155 | /** 156 | * Use .toBeCalledWith to ensure that a mock function was called with 157 | * specific arguments. 158 | */ 159 | toBeCalledWith(...args: Array): void, 160 | /** 161 | * Using exact equality with floating point numbers is a bad idea. Rounding 162 | * means that intuitive things fail. 163 | */ 164 | toBeCloseTo(num: number, delta: any): void, 165 | /** 166 | * Use .toBeDefined to check that a variable is not undefined. 167 | */ 168 | toBeDefined(): void, 169 | /** 170 | * Use .toBeFalsy when you don't care what a value is, you just want to 171 | * ensure a value is false in a boolean context. 172 | */ 173 | toBeFalsy(): void, 174 | /** 175 | * To compare floating point numbers, you can use toBeGreaterThan. 176 | */ 177 | toBeGreaterThan(number: number): void, 178 | /** 179 | * To compare floating point numbers, you can use toBeGreaterThanOrEqual. 180 | */ 181 | toBeGreaterThanOrEqual(number: number): void, 182 | /** 183 | * To compare floating point numbers, you can use toBeLessThan. 184 | */ 185 | toBeLessThan(number: number): void, 186 | /** 187 | * To compare floating point numbers, you can use toBeLessThanOrEqual. 188 | */ 189 | toBeLessThanOrEqual(number: number): void, 190 | /** 191 | * Use .toBeInstanceOf(Class) to check that an object is an instance of a 192 | * class. 193 | */ 194 | toBeInstanceOf(cls: Class<*>): void, 195 | /** 196 | * .toBeNull() is the same as .toBe(null) but the error messages are a bit 197 | * nicer. 198 | */ 199 | toBeNull(): void, 200 | /** 201 | * Use .toBeTruthy when you don't care what a value is, you just want to 202 | * ensure a value is true in a boolean context. 203 | */ 204 | toBeTruthy(): void, 205 | /** 206 | * Use .toBeUndefined to check that a variable is undefined. 207 | */ 208 | toBeUndefined(): void, 209 | /** 210 | * Use .toContain when you want to check that an item is in a list. For 211 | * testing the items in the list, this uses ===, a strict equality check. 212 | */ 213 | toContain(item: any): void, 214 | /** 215 | * Use .toContainEqual when you want to check that an item is in a list. For 216 | * testing the items in the list, this matcher recursively checks the 217 | * equality of all fields, rather than checking for object identity. 218 | */ 219 | toContainEqual(item: any): void, 220 | /** 221 | * Use .toEqual when you want to check that two objects have the same value. 222 | * This matcher recursively checks the equality of all fields, rather than 223 | * checking for object identity. 224 | */ 225 | toEqual(value: any): void, 226 | /** 227 | * Use .toHaveBeenCalled to ensure that a mock function got called. 228 | */ 229 | toHaveBeenCalled(): void, 230 | /** 231 | * Use .toHaveBeenCalledTimes to ensure that a mock function got called exact 232 | * number of times. 233 | */ 234 | toHaveBeenCalledTimes(number: number): void, 235 | /** 236 | * Use .toHaveBeenCalledWith to ensure that a mock function was called with 237 | * specific arguments. 238 | */ 239 | toHaveBeenCalledWith(...args: Array): void, 240 | /** 241 | * Use .toHaveBeenLastCalledWith to ensure that a mock function was last called 242 | * with specific arguments. 243 | */ 244 | toHaveBeenLastCalledWith(...args: Array): void, 245 | /** 246 | * Check that an object has a .length property and it is set to a certain 247 | * numeric value. 248 | */ 249 | toHaveLength(number: number): void, 250 | /** 251 | * 252 | */ 253 | toHaveProperty(propPath: string, value?: any): void, 254 | /** 255 | * Use .toMatch to check that a string matches a regular expression or string. 256 | */ 257 | toMatch(regexpOrString: RegExp | string): void, 258 | /** 259 | * Use .toMatchObject to check that a javascript object matches a subset of the properties of an object. 260 | */ 261 | toMatchObject(object: Object): void, 262 | /** 263 | * This ensures that a React component matches the most recent snapshot. 264 | */ 265 | toMatchSnapshot(name?: string): void, 266 | /** 267 | * Use .toThrow to test that a function throws when it is called. 268 | * If you want to test that a specific error gets thrown, you can provide an 269 | * argument to toThrow. The argument can be a string for the error message, 270 | * a class for the error, or a regex that should match the error. 271 | * 272 | * Alias: .toThrowError 273 | */ 274 | toThrow(message?: string | Error | RegExp): void, 275 | toThrowError(message?: string | Error | RegExp): void, 276 | /** 277 | * Use .toThrowErrorMatchingSnapshot to test that a function throws a error 278 | * matching the most recent snapshot when it is called. 279 | */ 280 | toThrowErrorMatchingSnapshot(): void 281 | }; 282 | 283 | type JestObjectType = { 284 | /** 285 | * Disables automatic mocking in the module loader. 286 | * 287 | * After this method is called, all `require()`s will return the real 288 | * versions of each module (rather than a mocked version). 289 | */ 290 | disableAutomock(): JestObjectType, 291 | /** 292 | * An un-hoisted version of disableAutomock 293 | */ 294 | autoMockOff(): JestObjectType, 295 | /** 296 | * Enables automatic mocking in the module loader. 297 | */ 298 | enableAutomock(): JestObjectType, 299 | /** 300 | * An un-hoisted version of enableAutomock 301 | */ 302 | autoMockOn(): JestObjectType, 303 | /** 304 | * Clears the mock.calls and mock.instances properties of all mocks. 305 | * Equivalent to calling .mockClear() on every mocked function. 306 | */ 307 | clearAllMocks(): JestObjectType, 308 | /** 309 | * Resets the state of all mocks. Equivalent to calling .mockReset() on every 310 | * mocked function. 311 | */ 312 | resetAllMocks(): JestObjectType, 313 | /** 314 | * Removes any pending timers from the timer system. 315 | */ 316 | clearAllTimers(): void, 317 | /** 318 | * The same as `mock` but not moved to the top of the expectation by 319 | * babel-jest. 320 | */ 321 | doMock(moduleName: string, moduleFactory?: any): JestObjectType, 322 | /** 323 | * The same as `unmock` but not moved to the top of the expectation by 324 | * babel-jest. 325 | */ 326 | dontMock(moduleName: string): JestObjectType, 327 | /** 328 | * Returns a new, unused mock function. Optionally takes a mock 329 | * implementation. 330 | */ 331 | fn, TReturn>( 332 | implementation?: (...args: TArguments) => TReturn, 333 | ): JestMockFn, 334 | /** 335 | * Determines if the given function is a mocked function. 336 | */ 337 | isMockFunction(fn: Function): boolean, 338 | /** 339 | * Given the name of a module, use the automatic mocking system to generate a 340 | * mocked version of the module for you. 341 | */ 342 | genMockFromModule(moduleName: string): any, 343 | /** 344 | * Mocks a module with an auto-mocked version when it is being required. 345 | * 346 | * The second argument can be used to specify an explicit module factory that 347 | * is being run instead of using Jest's automocking feature. 348 | * 349 | * The third argument can be used to create virtual mocks -- mocks of modules 350 | * that don't exist anywhere in the system. 351 | */ 352 | mock( 353 | moduleName: string, 354 | moduleFactory?: any, 355 | options?: Object 356 | ): JestObjectType, 357 | /** 358 | * Resets the module registry - the cache of all required modules. This is 359 | * useful to isolate modules where local state might conflict between tests. 360 | */ 361 | resetModules(): JestObjectType, 362 | /** 363 | * Exhausts the micro-task queue (usually interfaced in node via 364 | * process.nextTick). 365 | */ 366 | runAllTicks(): void, 367 | /** 368 | * Exhausts the macro-task queue (i.e., all tasks queued by setTimeout(), 369 | * setInterval(), and setImmediate()). 370 | */ 371 | runAllTimers(): void, 372 | /** 373 | * Exhausts all tasks queued by setImmediate(). 374 | */ 375 | runAllImmediates(): void, 376 | /** 377 | * Executes only the macro task queue (i.e. all tasks queued by setTimeout() 378 | * or setInterval() and setImmediate()). 379 | */ 380 | runTimersToTime(msToRun: number): void, 381 | /** 382 | * Executes only the macro-tasks that are currently pending (i.e., only the 383 | * tasks that have been queued by setTimeout() or setInterval() up to this 384 | * point) 385 | */ 386 | runOnlyPendingTimers(): void, 387 | /** 388 | * Explicitly supplies the mock object that the module system should return 389 | * for the specified module. Note: It is recommended to use jest.mock() 390 | * instead. 391 | */ 392 | setMock(moduleName: string, moduleExports: any): JestObjectType, 393 | /** 394 | * Indicates that the module system should never return a mocked version of 395 | * the specified module from require() (e.g. that it should always return the 396 | * real module). 397 | */ 398 | unmock(moduleName: string): JestObjectType, 399 | /** 400 | * Instructs Jest to use fake versions of the standard timer functions 401 | * (setTimeout, setInterval, clearTimeout, clearInterval, nextTick, 402 | * setImmediate and clearImmediate). 403 | */ 404 | useFakeTimers(): JestObjectType, 405 | /** 406 | * Instructs Jest to use the real versions of the standard timer functions. 407 | */ 408 | useRealTimers(): JestObjectType, 409 | /** 410 | * Creates a mock function similar to jest.fn but also tracks calls to 411 | * object[methodName]. 412 | */ 413 | spyOn(object: Object, methodName: string): JestMockFn 414 | }; 415 | 416 | type JestSpyType = { 417 | calls: JestCallsType 418 | }; 419 | 420 | /** Runs this function after every test inside this context */ 421 | declare function afterEach(fn: (done: () => void) => ?Promise, timeout?: number): void; 422 | /** Runs this function before every test inside this context */ 423 | declare function beforeEach(fn: (done: () => void) => ?Promise, timeout?: number): void; 424 | /** Runs this function after all tests have finished inside this context */ 425 | declare function afterAll(fn: (done: () => void) => ?Promise, timeout?: number): void; 426 | /** Runs this function before any tests have started inside this context */ 427 | declare function beforeAll(fn: (done: () => void) => ?Promise, timeout?: number): void; 428 | 429 | /** A context for grouping tests together */ 430 | declare var describe: { 431 | /** 432 | * Creates a block that groups together several related tests in one "test suite" 433 | */ 434 | (name: string, fn: () => void): void, 435 | 436 | /** 437 | * Only run this describe block 438 | */ 439 | only(name: string, fn: () => void): void, 440 | 441 | /** 442 | * Skip running this describe block 443 | */ 444 | skip(name: string, fn: () => void): void, 445 | }; 446 | 447 | 448 | /** An individual test unit */ 449 | declare var it: { 450 | /** 451 | * An individual test unit 452 | * 453 | * @param {string} Name of Test 454 | * @param {Function} Test 455 | * @param {number} Timeout for the test, in milliseconds. 456 | */ 457 | (name: string, fn?: (done: () => void) => ?Promise, timeout?: number): void, 458 | /** 459 | * Only run this test 460 | * 461 | * @param {string} Name of Test 462 | * @param {Function} Test 463 | * @param {number} Timeout for the test, in milliseconds. 464 | */ 465 | only(name: string, fn?: (done: () => void) => ?Promise, timeout?: number): void, 466 | /** 467 | * Skip running this test 468 | * 469 | * @param {string} Name of Test 470 | * @param {Function} Test 471 | * @param {number} Timeout for the test, in milliseconds. 472 | */ 473 | skip(name: string, fn?: (done: () => void) => ?Promise, timeout?: number): void, 474 | /** 475 | * Run the test concurrently 476 | * 477 | * @param {string} Name of Test 478 | * @param {Function} Test 479 | * @param {number} Timeout for the test, in milliseconds. 480 | */ 481 | concurrent(name: string, fn?: (done: () => void) => ?Promise, timeout?: number): void, 482 | }; 483 | declare function fit( 484 | name: string, 485 | fn: (done: () => void) => ?Promise, 486 | timeout?: number, 487 | ): void; 488 | /** An individual test unit */ 489 | declare var test: typeof it; 490 | /** A disabled group of tests */ 491 | declare var xdescribe: typeof describe; 492 | /** A focused group of tests */ 493 | declare var fdescribe: typeof describe; 494 | /** A disabled individual test */ 495 | declare var xit: typeof it; 496 | /** A disabled individual test */ 497 | declare var xtest: typeof it; 498 | 499 | /** The expect function is used every time you want to test a value */ 500 | declare var expect: { 501 | /** The object that you want to make assertions against */ 502 | (value: any): JestExpectType & JestPromiseType & EnzymeMatchersType, 503 | /** Add additional Jasmine matchers to Jest's roster */ 504 | extend(matchers: { [name: string]: JestMatcher }): void, 505 | /** Add a module that formats application-specific data structures. */ 506 | addSnapshotSerializer(serializer: (input: Object) => string): void, 507 | assertions(expectedAssertions: number): void, 508 | hasAssertions(): void, 509 | any(value: mixed): JestAsymmetricEqualityType, 510 | anything(): void, 511 | arrayContaining(value: Array): void, 512 | objectContaining(value: Object): void, 513 | /** Matches any received string that contains the exact expected string. */ 514 | stringContaining(value: string): void, 515 | stringMatching(value: string | RegExp): void 516 | }; 517 | 518 | // TODO handle return type 519 | // http://jasmine.github.io/2.4/introduction.html#section-Spies 520 | declare function spyOn(value: mixed, method: string): Object; 521 | 522 | /** Holds all functions related to manipulating test runner */ 523 | declare var jest: JestObjectType; 524 | 525 | /** 526 | * The global Jamine object, this is generally not exposed as the public API, 527 | * using features inside here could break in later versions of Jest. 528 | */ 529 | declare var jasmine: { 530 | DEFAULT_TIMEOUT_INTERVAL: number, 531 | any(value: mixed): JestAsymmetricEqualityType, 532 | anything(): void, 533 | arrayContaining(value: Array): void, 534 | clock(): JestClockType, 535 | createSpy(name: string): JestSpyType, 536 | createSpyObj( 537 | baseName: string, 538 | methodNames: Array 539 | ): { [methodName: string]: JestSpyType }, 540 | objectContaining(value: Object): void, 541 | stringMatching(value: string): void 542 | }; 543 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abab@^1.0.3: 6 | version "1.0.3" 7 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.3.tgz#b81de5f7274ec4e756d797cd834f303642724e5d" 8 | 9 | acorn-globals@^3.1.0: 10 | version "3.1.0" 11 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" 12 | dependencies: 13 | acorn "^4.0.4" 14 | 15 | acorn@^4.0.4: 16 | version "4.0.13" 17 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 18 | 19 | ajv@^4.9.1: 20 | version "4.11.8" 21 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 22 | dependencies: 23 | co "^4.6.0" 24 | json-stable-stringify "^1.0.1" 25 | 26 | amdefine@>=0.0.4: 27 | version "1.0.1" 28 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 29 | 30 | ansi-escapes@^1.4.0: 31 | version "1.4.0" 32 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 33 | 34 | ansi-regex@^2.0.0, ansi-regex@^2.1.1: 35 | version "2.1.1" 36 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 37 | 38 | ansi-styles@^2.2.1: 39 | version "2.2.1" 40 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 41 | 42 | ansi-styles@^3.0.0, ansi-styles@^3.1.0: 43 | version "3.2.0" 44 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 45 | dependencies: 46 | color-convert "^1.9.0" 47 | 48 | anymatch@^1.3.0: 49 | version "1.3.2" 50 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 51 | dependencies: 52 | micromatch "^2.1.5" 53 | normalize-path "^2.0.0" 54 | 55 | append-transform@^0.4.0: 56 | version "0.4.0" 57 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 58 | dependencies: 59 | default-require-extensions "^1.0.0" 60 | 61 | argparse@^1.0.7: 62 | version "1.0.10" 63 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 64 | dependencies: 65 | sprintf-js "~1.0.2" 66 | 67 | arr-diff@^2.0.0: 68 | version "2.0.0" 69 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 70 | dependencies: 71 | arr-flatten "^1.0.1" 72 | 73 | arr-flatten@^1.0.1: 74 | version "1.1.0" 75 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 76 | 77 | array-equal@^1.0.0: 78 | version "1.0.0" 79 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 80 | 81 | array-find-index@^1.0.1: 82 | version "1.0.2" 83 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 84 | 85 | array-unique@^0.2.1: 86 | version "0.2.1" 87 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 88 | 89 | arrify@^1.0.1: 90 | version "1.0.1" 91 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 92 | 93 | asn1@~0.2.3: 94 | version "0.2.4" 95 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" 96 | dependencies: 97 | safer-buffer "~2.1.0" 98 | 99 | assert-plus@1.0.0, assert-plus@^1.0.0: 100 | version "1.0.0" 101 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 102 | 103 | assert-plus@^0.2.0: 104 | version "0.2.0" 105 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 106 | 107 | async@^2.1.4: 108 | version "2.5.0" 109 | resolved "https://registry.yarnpkg.com/async/-/async-2.5.0.tgz#843190fd6b7357a0b9e1c956edddd5ec8462b54d" 110 | dependencies: 111 | lodash "^4.14.0" 112 | 113 | asynckit@^0.4.0: 114 | version "0.4.0" 115 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 116 | 117 | aws-sign2@~0.6.0: 118 | version "0.6.0" 119 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 120 | 121 | aws4@^1.2.1: 122 | version "1.6.0" 123 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 124 | 125 | babel-code-frame@^6.22.0: 126 | version "6.22.0" 127 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 128 | dependencies: 129 | chalk "^1.1.0" 130 | esutils "^2.0.2" 131 | js-tokens "^3.0.0" 132 | 133 | babel-core@^6.0.0, babel-core@^6.24.1: 134 | version "6.25.0" 135 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.25.0.tgz#7dd42b0463c742e9d5296deb3ec67a9322dad729" 136 | dependencies: 137 | babel-code-frame "^6.22.0" 138 | babel-generator "^6.25.0" 139 | babel-helpers "^6.24.1" 140 | babel-messages "^6.23.0" 141 | babel-register "^6.24.1" 142 | babel-runtime "^6.22.0" 143 | babel-template "^6.25.0" 144 | babel-traverse "^6.25.0" 145 | babel-types "^6.25.0" 146 | babylon "^6.17.2" 147 | convert-source-map "^1.1.0" 148 | debug "^2.1.1" 149 | json5 "^0.5.0" 150 | lodash "^4.2.0" 151 | minimatch "^3.0.2" 152 | path-is-absolute "^1.0.0" 153 | private "^0.1.6" 154 | slash "^1.0.0" 155 | source-map "^0.5.0" 156 | 157 | babel-generator@^6.18.0, babel-generator@^6.25.0: 158 | version "6.25.0" 159 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.25.0.tgz#33a1af70d5f2890aeb465a4a7793c1df6a9ea9fc" 160 | dependencies: 161 | babel-messages "^6.23.0" 162 | babel-runtime "^6.22.0" 163 | babel-types "^6.25.0" 164 | detect-indent "^4.0.0" 165 | jsesc "^1.3.0" 166 | lodash "^4.2.0" 167 | source-map "^0.5.0" 168 | trim-right "^1.0.1" 169 | 170 | babel-helpers@^6.24.1: 171 | version "6.24.1" 172 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 173 | dependencies: 174 | babel-runtime "^6.22.0" 175 | babel-template "^6.24.1" 176 | 177 | babel-jest@^20.0.3: 178 | version "20.0.3" 179 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-20.0.3.tgz#e4a03b13dc10389e140fc645d09ffc4ced301671" 180 | dependencies: 181 | babel-core "^6.0.0" 182 | babel-plugin-istanbul "^4.0.0" 183 | babel-preset-jest "^20.0.3" 184 | 185 | babel-messages@^6.23.0: 186 | version "6.23.0" 187 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 188 | dependencies: 189 | babel-runtime "^6.22.0" 190 | 191 | babel-plugin-istanbul@^4.0.0: 192 | version "4.1.4" 193 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.4.tgz#18dde84bf3ce329fddf3f4103fae921456d8e587" 194 | dependencies: 195 | find-up "^2.1.0" 196 | istanbul-lib-instrument "^1.7.2" 197 | test-exclude "^4.1.1" 198 | 199 | babel-plugin-jest-hoist@^20.0.3: 200 | version "20.0.3" 201 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-20.0.3.tgz#afedc853bd3f8dc3548ea671fbe69d03cc2c1767" 202 | 203 | babel-preset-jest@^20.0.3: 204 | version "20.0.3" 205 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-20.0.3.tgz#cbacaadecb5d689ca1e1de1360ebfc66862c178a" 206 | dependencies: 207 | babel-plugin-jest-hoist "^20.0.3" 208 | 209 | babel-register@^6.24.1: 210 | version "6.24.1" 211 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 212 | dependencies: 213 | babel-core "^6.24.1" 214 | babel-runtime "^6.22.0" 215 | core-js "^2.4.0" 216 | home-or-tmp "^2.0.0" 217 | lodash "^4.2.0" 218 | mkdirp "^0.5.1" 219 | source-map-support "^0.4.2" 220 | 221 | babel-runtime@^6.22.0: 222 | version "6.25.0" 223 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.25.0.tgz#33b98eaa5d482bb01a8d1aa6b437ad2b01aec41c" 224 | dependencies: 225 | core-js "^2.4.0" 226 | regenerator-runtime "^0.10.0" 227 | 228 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.25.0: 229 | version "6.25.0" 230 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.25.0.tgz#665241166b7c2aa4c619d71e192969552b10c071" 231 | dependencies: 232 | babel-runtime "^6.22.0" 233 | babel-traverse "^6.25.0" 234 | babel-types "^6.25.0" 235 | babylon "^6.17.2" 236 | lodash "^4.2.0" 237 | 238 | babel-traverse@^6.18.0, babel-traverse@^6.25.0: 239 | version "6.25.0" 240 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.25.0.tgz#2257497e2fcd19b89edc13c4c91381f9512496f1" 241 | dependencies: 242 | babel-code-frame "^6.22.0" 243 | babel-messages "^6.23.0" 244 | babel-runtime "^6.22.0" 245 | babel-types "^6.25.0" 246 | babylon "^6.17.2" 247 | debug "^2.2.0" 248 | globals "^9.0.0" 249 | invariant "^2.2.0" 250 | lodash "^4.2.0" 251 | 252 | babel-types@^6.18.0, babel-types@^6.25.0: 253 | version "6.25.0" 254 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.25.0.tgz#70afb248d5660e5d18f811d91c8303b54134a18e" 255 | dependencies: 256 | babel-runtime "^6.22.0" 257 | esutils "^2.0.2" 258 | lodash "^4.2.0" 259 | to-fast-properties "^1.0.1" 260 | 261 | babylon@^6.17.2, babylon@^6.17.4: 262 | version "6.17.4" 263 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.4.tgz#3e8b7402b88d22c3423e137a1577883b15ff869a" 264 | 265 | balanced-match@^1.0.0: 266 | version "1.0.0" 267 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 268 | 269 | bcrypt-pbkdf@^1.0.0: 270 | version "1.0.2" 271 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" 272 | dependencies: 273 | tweetnacl "^0.14.3" 274 | 275 | boom@2.x.x: 276 | version "2.10.1" 277 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 278 | dependencies: 279 | hoek "2.x.x" 280 | 281 | brace-expansion@^1.1.7: 282 | version "1.1.8" 283 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 284 | dependencies: 285 | balanced-match "^1.0.0" 286 | concat-map "0.0.1" 287 | 288 | braces@^1.8.2: 289 | version "1.8.5" 290 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 291 | dependencies: 292 | expand-range "^1.8.1" 293 | preserve "^0.2.0" 294 | repeat-element "^1.1.2" 295 | 296 | browser-resolve@^1.11.2: 297 | version "1.11.2" 298 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 299 | dependencies: 300 | resolve "1.1.7" 301 | 302 | bser@1.0.2: 303 | version "1.0.2" 304 | resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" 305 | dependencies: 306 | node-int64 "^0.4.0" 307 | 308 | bser@^2.0.0: 309 | version "2.0.0" 310 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 311 | dependencies: 312 | node-int64 "^0.4.0" 313 | 314 | builtin-modules@^1.0.0: 315 | version "1.1.1" 316 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 317 | 318 | builtins@^1.0.3: 319 | version "1.0.3" 320 | resolved "https://registry.yarnpkg.com/builtins/-/builtins-1.0.3.tgz#cb94faeb61c8696451db36534e1422f94f0aee88" 321 | 322 | callsites@^2.0.0: 323 | version "2.0.0" 324 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 325 | 326 | camelcase-keys@^2.0.0: 327 | version "2.1.0" 328 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 329 | dependencies: 330 | camelcase "^2.0.0" 331 | map-obj "^1.0.0" 332 | 333 | camelcase@^2.0.0: 334 | version "2.1.1" 335 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 336 | 337 | camelcase@^3.0.0: 338 | version "3.0.0" 339 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 340 | 341 | caseless@~0.12.0: 342 | version "0.12.0" 343 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 344 | 345 | chalk@^1.1.0, chalk@^1.1.3: 346 | version "1.1.3" 347 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 348 | dependencies: 349 | ansi-styles "^2.2.1" 350 | escape-string-regexp "^1.0.2" 351 | has-ansi "^2.0.0" 352 | strip-ansi "^3.0.0" 353 | supports-color "^2.0.0" 354 | 355 | chalk@^2.1.0: 356 | version "2.1.0" 357 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.1.0.tgz#ac5becf14fa21b99c6c92ca7a7d7cfd5b17e743e" 358 | dependencies: 359 | ansi-styles "^3.1.0" 360 | escape-string-regexp "^1.0.5" 361 | supports-color "^4.0.0" 362 | 363 | ci-info@^1.0.0: 364 | version "1.0.0" 365 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 366 | 367 | cliui@^3.2.0: 368 | version "3.2.0" 369 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 370 | dependencies: 371 | string-width "^1.0.1" 372 | strip-ansi "^3.0.1" 373 | wrap-ansi "^2.0.0" 374 | 375 | co@^4.6.0: 376 | version "4.6.0" 377 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 378 | 379 | code-point-at@^1.0.0: 380 | version "1.1.0" 381 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 382 | 383 | color-convert@^1.9.0: 384 | version "1.9.0" 385 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 386 | dependencies: 387 | color-name "^1.1.1" 388 | 389 | color-name@^1.1.1: 390 | version "1.1.3" 391 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 392 | 393 | combined-stream@^1.0.5, combined-stream@~1.0.5: 394 | version "1.0.5" 395 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 396 | dependencies: 397 | delayed-stream "~1.0.0" 398 | 399 | commander@~2.20.3: 400 | version "2.20.3" 401 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" 402 | 403 | concat-map@0.0.1: 404 | version "0.0.1" 405 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 406 | 407 | content-type-parser@^1.0.1: 408 | version "1.0.1" 409 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 410 | 411 | convert-source-map@^1.1.0, convert-source-map@^1.4.0: 412 | version "1.5.0" 413 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 414 | 415 | core-js@^2.4.0: 416 | version "2.5.0" 417 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.0.tgz#569c050918be6486b3837552028ae0466b717086" 418 | 419 | core-util-is@1.0.2: 420 | version "1.0.2" 421 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 422 | 423 | cryptiles@2.x.x: 424 | version "2.0.5" 425 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 426 | dependencies: 427 | boom "2.x.x" 428 | 429 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 430 | version "0.3.2" 431 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 432 | 433 | "cssstyle@>= 0.2.37 < 0.3.0": 434 | version "0.2.37" 435 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 436 | dependencies: 437 | cssom "0.3.x" 438 | 439 | currently-unhandled@^0.4.1: 440 | version "0.4.1" 441 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 442 | dependencies: 443 | array-find-index "^1.0.1" 444 | 445 | dashdash@^1.12.0: 446 | version "1.14.1" 447 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 448 | dependencies: 449 | assert-plus "^1.0.0" 450 | 451 | debug@^2.1.1, debug@^2.2.0, debug@^2.6.3: 452 | version "2.6.9" 453 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 454 | dependencies: 455 | ms "2.0.0" 456 | 457 | decamelize@^1.1.1, decamelize@^1.1.2: 458 | version "1.2.0" 459 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 460 | 461 | deep-is@~0.1.3: 462 | version "0.1.3" 463 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 464 | 465 | default-require-extensions@^1.0.0: 466 | version "1.0.0" 467 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 468 | dependencies: 469 | strip-bom "^2.0.0" 470 | 471 | delayed-stream@~1.0.0: 472 | version "1.0.0" 473 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 474 | 475 | detect-indent@^4.0.0: 476 | version "4.0.0" 477 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 478 | dependencies: 479 | repeating "^2.0.0" 480 | 481 | diff@^3.2.0: 482 | version "3.5.0" 483 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" 484 | 485 | ecc-jsbn@~0.1.1: 486 | version "0.1.2" 487 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" 488 | dependencies: 489 | jsbn "~0.1.0" 490 | safer-buffer "^2.1.0" 491 | 492 | errno@^0.1.4: 493 | version "0.1.4" 494 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 495 | dependencies: 496 | prr "~0.0.0" 497 | 498 | error-ex@^1.2.0: 499 | version "1.3.1" 500 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 501 | dependencies: 502 | is-arrayish "^0.2.1" 503 | 504 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 505 | version "1.0.5" 506 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 507 | 508 | escodegen@^1.6.1: 509 | version "1.8.1" 510 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 511 | dependencies: 512 | esprima "^2.7.1" 513 | estraverse "^1.9.1" 514 | esutils "^2.0.2" 515 | optionator "^0.8.1" 516 | optionalDependencies: 517 | source-map "~0.2.0" 518 | 519 | esprima@^2.7.1: 520 | version "2.7.3" 521 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 522 | 523 | esprima@^4.0.0: 524 | version "4.0.1" 525 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 526 | 527 | estraverse@^1.9.1: 528 | version "1.9.3" 529 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 530 | 531 | esutils@^2.0.2: 532 | version "2.0.2" 533 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 534 | 535 | exec-sh@^0.2.0: 536 | version "0.2.0" 537 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.0.tgz#14f75de3f20d286ef933099b2ce50a90359cef10" 538 | dependencies: 539 | merge "^1.1.3" 540 | 541 | expand-brackets@^0.1.4: 542 | version "0.1.5" 543 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 544 | dependencies: 545 | is-posix-bracket "^0.1.0" 546 | 547 | expand-range@^1.8.1: 548 | version "1.8.2" 549 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 550 | dependencies: 551 | fill-range "^2.1.0" 552 | 553 | extend@~3.0.0: 554 | version "3.0.2" 555 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 556 | 557 | extglob@^0.3.1: 558 | version "0.3.2" 559 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 560 | dependencies: 561 | is-extglob "^1.0.0" 562 | 563 | extsprintf@1.3.0, extsprintf@^1.2.0: 564 | version "1.3.0" 565 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 566 | 567 | fast-levenshtein@~2.0.4: 568 | version "2.0.6" 569 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 570 | 571 | fb-watchman@^1.8.0: 572 | version "1.9.2" 573 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-1.9.2.tgz#a24cf47827f82d38fb59a69ad70b76e3b6ae7383" 574 | dependencies: 575 | bser "1.0.2" 576 | 577 | fb-watchman@^2.0.0: 578 | version "2.0.0" 579 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 580 | dependencies: 581 | bser "^2.0.0" 582 | 583 | filename-regex@^2.0.0: 584 | version "2.0.1" 585 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 586 | 587 | fileset@^2.0.2: 588 | version "2.0.3" 589 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 590 | dependencies: 591 | glob "^7.0.3" 592 | minimatch "^3.0.3" 593 | 594 | fill-range@^2.1.0: 595 | version "2.2.3" 596 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 597 | dependencies: 598 | is-number "^2.1.0" 599 | isobject "^2.0.0" 600 | randomatic "^1.1.3" 601 | repeat-element "^1.1.2" 602 | repeat-string "^1.5.2" 603 | 604 | find-up@^1.0.0: 605 | version "1.1.2" 606 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 607 | dependencies: 608 | path-exists "^2.0.0" 609 | pinkie-promise "^2.0.0" 610 | 611 | find-up@^2.0.0, find-up@^2.1.0: 612 | version "2.1.0" 613 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 614 | dependencies: 615 | locate-path "^2.0.0" 616 | 617 | flow-bin@^0.52.0: 618 | version "0.52.0" 619 | resolved "https://registry.yarnpkg.com/flow-bin/-/flow-bin-0.52.0.tgz#b6d9abe8bcd1ee5c62df386451a4e2553cadc3a3" 620 | 621 | for-in@^1.0.1: 622 | version "1.0.2" 623 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 624 | 625 | for-own@^0.1.4: 626 | version "0.1.5" 627 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 628 | dependencies: 629 | for-in "^1.0.1" 630 | 631 | forever-agent@~0.6.1: 632 | version "0.6.1" 633 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 634 | 635 | form-data@~2.1.1: 636 | version "2.1.4" 637 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 638 | dependencies: 639 | asynckit "^0.4.0" 640 | combined-stream "^1.0.5" 641 | mime-types "^2.1.12" 642 | 643 | fs.realpath@^1.0.0: 644 | version "1.0.0" 645 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 646 | 647 | get-caller-file@^1.0.1: 648 | version "1.0.2" 649 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 650 | 651 | get-stdin@^4.0.1: 652 | version "4.0.1" 653 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 654 | 655 | getpass@^0.1.1: 656 | version "0.1.7" 657 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 658 | dependencies: 659 | assert-plus "^1.0.0" 660 | 661 | glob-base@^0.3.0: 662 | version "0.3.0" 663 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 664 | dependencies: 665 | glob-parent "^2.0.0" 666 | is-glob "^2.0.0" 667 | 668 | glob-parent@^2.0.0: 669 | version "2.0.0" 670 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 671 | dependencies: 672 | is-glob "^2.0.0" 673 | 674 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.1: 675 | version "7.1.2" 676 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 677 | dependencies: 678 | fs.realpath "^1.0.0" 679 | inflight "^1.0.4" 680 | inherits "2" 681 | minimatch "^3.0.4" 682 | once "^1.3.0" 683 | path-is-absolute "^1.0.0" 684 | 685 | globals@^9.0.0: 686 | version "9.18.0" 687 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 688 | 689 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 690 | version "4.1.11" 691 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 692 | 693 | growly@^1.3.0: 694 | version "1.3.0" 695 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 696 | 697 | handlebars@^4.0.3: 698 | version "4.5.2" 699 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.5.2.tgz#5a4eb92ab5962ca3415ac188c86dc7f784f76a0f" 700 | dependencies: 701 | neo-async "^2.6.0" 702 | optimist "^0.6.1" 703 | source-map "^0.6.1" 704 | optionalDependencies: 705 | uglify-js "^3.1.4" 706 | 707 | har-schema@^1.0.5: 708 | version "1.0.5" 709 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 710 | 711 | har-validator@~4.2.1: 712 | version "4.2.1" 713 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 714 | dependencies: 715 | ajv "^4.9.1" 716 | har-schema "^1.0.5" 717 | 718 | has-ansi@^2.0.0: 719 | version "2.0.0" 720 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 721 | dependencies: 722 | ansi-regex "^2.0.0" 723 | 724 | has-flag@^1.0.0: 725 | version "1.0.0" 726 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 727 | 728 | has-flag@^2.0.0: 729 | version "2.0.0" 730 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 731 | 732 | hawk@~3.1.3: 733 | version "3.1.3" 734 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 735 | dependencies: 736 | boom "2.x.x" 737 | cryptiles "2.x.x" 738 | hoek "2.x.x" 739 | sntp "1.x.x" 740 | 741 | hoek@2.x.x: 742 | version "2.16.3" 743 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 744 | 745 | home-or-tmp@^2.0.0: 746 | version "2.0.0" 747 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 748 | dependencies: 749 | os-homedir "^1.0.0" 750 | os-tmpdir "^1.0.1" 751 | 752 | hosted-git-info@^2.1.4: 753 | version "2.5.0" 754 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 755 | 756 | html-encoding-sniffer@^1.0.1: 757 | version "1.0.1" 758 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 759 | dependencies: 760 | whatwg-encoding "^1.0.1" 761 | 762 | http-signature@~1.1.0: 763 | version "1.1.1" 764 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 765 | dependencies: 766 | assert-plus "^0.2.0" 767 | jsprim "^1.2.2" 768 | sshpk "^1.7.0" 769 | 770 | iconv-lite@0.4.13: 771 | version "0.4.13" 772 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 773 | 774 | indent-string@^2.1.0: 775 | version "2.1.0" 776 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 777 | dependencies: 778 | repeating "^2.0.0" 779 | 780 | inflight@^1.0.4: 781 | version "1.0.6" 782 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 783 | dependencies: 784 | once "^1.3.0" 785 | wrappy "1" 786 | 787 | inherits@2: 788 | version "2.0.3" 789 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 790 | 791 | invariant@^2.2.0: 792 | version "2.2.2" 793 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 794 | dependencies: 795 | loose-envify "^1.0.0" 796 | 797 | invert-kv@^1.0.0: 798 | version "1.0.0" 799 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 800 | 801 | is-arrayish@^0.2.1: 802 | version "0.2.1" 803 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 804 | 805 | is-buffer@^1.1.5: 806 | version "1.1.5" 807 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 808 | 809 | is-builtin-module@^1.0.0: 810 | version "1.0.0" 811 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 812 | dependencies: 813 | builtin-modules "^1.0.0" 814 | 815 | is-ci@^1.0.10: 816 | version "1.0.10" 817 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 818 | dependencies: 819 | ci-info "^1.0.0" 820 | 821 | is-dotfile@^1.0.0: 822 | version "1.0.3" 823 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 824 | 825 | is-equal-shallow@^0.1.3: 826 | version "0.1.3" 827 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 828 | dependencies: 829 | is-primitive "^2.0.0" 830 | 831 | is-extendable@^0.1.1: 832 | version "0.1.1" 833 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 834 | 835 | is-extglob@^1.0.0: 836 | version "1.0.0" 837 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 838 | 839 | is-finite@^1.0.0: 840 | version "1.0.2" 841 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 842 | dependencies: 843 | number-is-nan "^1.0.0" 844 | 845 | is-fullwidth-code-point@^1.0.0: 846 | version "1.0.0" 847 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 848 | dependencies: 849 | number-is-nan "^1.0.0" 850 | 851 | is-glob@^2.0.0, is-glob@^2.0.1: 852 | version "2.0.1" 853 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 854 | dependencies: 855 | is-extglob "^1.0.0" 856 | 857 | is-number@^2.1.0: 858 | version "2.1.0" 859 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 860 | dependencies: 861 | kind-of "^3.0.2" 862 | 863 | is-number@^3.0.0: 864 | version "3.0.0" 865 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 866 | dependencies: 867 | kind-of "^3.0.2" 868 | 869 | is-posix-bracket@^0.1.0: 870 | version "0.1.1" 871 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 872 | 873 | is-primitive@^2.0.0: 874 | version "2.0.0" 875 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 876 | 877 | is-typedarray@~1.0.0: 878 | version "1.0.0" 879 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 880 | 881 | is-utf8@^0.2.0: 882 | version "0.2.1" 883 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 884 | 885 | isarray@1.0.0: 886 | version "1.0.0" 887 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 888 | 889 | isexe@^2.0.0: 890 | version "2.0.0" 891 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 892 | 893 | isobject@^2.0.0: 894 | version "2.1.0" 895 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 896 | dependencies: 897 | isarray "1.0.0" 898 | 899 | isstream@~0.1.2: 900 | version "0.1.2" 901 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 902 | 903 | istanbul-api@^1.1.1: 904 | version "1.1.11" 905 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.1.11.tgz#fcc0b461e2b3bda71e305155138238768257d9de" 906 | dependencies: 907 | async "^2.1.4" 908 | fileset "^2.0.2" 909 | istanbul-lib-coverage "^1.1.1" 910 | istanbul-lib-hook "^1.0.7" 911 | istanbul-lib-instrument "^1.7.4" 912 | istanbul-lib-report "^1.1.1" 913 | istanbul-lib-source-maps "^1.2.1" 914 | istanbul-reports "^1.1.1" 915 | js-yaml "^3.7.0" 916 | mkdirp "^0.5.1" 917 | once "^1.4.0" 918 | 919 | istanbul-lib-coverage@^1.0.1, istanbul-lib-coverage@^1.1.1: 920 | version "1.1.1" 921 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da" 922 | 923 | istanbul-lib-hook@^1.0.7: 924 | version "1.0.7" 925 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.7.tgz#dd6607f03076578fe7d6f2a630cf143b49bacddc" 926 | dependencies: 927 | append-transform "^0.4.0" 928 | 929 | istanbul-lib-instrument@^1.4.2, istanbul-lib-instrument@^1.7.2, istanbul-lib-instrument@^1.7.4: 930 | version "1.7.4" 931 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.4.tgz#e9fd920e4767f3d19edc765e2d6b3f5ccbd0eea8" 932 | dependencies: 933 | babel-generator "^6.18.0" 934 | babel-template "^6.16.0" 935 | babel-traverse "^6.18.0" 936 | babel-types "^6.18.0" 937 | babylon "^6.17.4" 938 | istanbul-lib-coverage "^1.1.1" 939 | semver "^5.3.0" 940 | 941 | istanbul-lib-report@^1.1.1: 942 | version "1.1.1" 943 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#f0e55f56655ffa34222080b7a0cd4760e1405fc9" 944 | dependencies: 945 | istanbul-lib-coverage "^1.1.1" 946 | mkdirp "^0.5.1" 947 | path-parse "^1.0.5" 948 | supports-color "^3.1.2" 949 | 950 | istanbul-lib-source-maps@^1.1.0, istanbul-lib-source-maps@^1.2.1: 951 | version "1.2.1" 952 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.1.tgz#a6fe1acba8ce08eebc638e572e294d267008aa0c" 953 | dependencies: 954 | debug "^2.6.3" 955 | istanbul-lib-coverage "^1.1.1" 956 | mkdirp "^0.5.1" 957 | rimraf "^2.6.1" 958 | source-map "^0.5.3" 959 | 960 | istanbul-reports@^1.1.1: 961 | version "1.1.1" 962 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.1.tgz#042be5c89e175bc3f86523caab29c014e77fee4e" 963 | dependencies: 964 | handlebars "^4.0.3" 965 | 966 | jest-changed-files@^20.0.3: 967 | version "20.0.3" 968 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-20.0.3.tgz#9394d5cc65c438406149bef1bf4d52b68e03e3f8" 969 | 970 | jest-cli@^20.0.4: 971 | version "20.0.4" 972 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-20.0.4.tgz#e532b19d88ae5bc6c417e8b0593a6fe954b1dc93" 973 | dependencies: 974 | ansi-escapes "^1.4.0" 975 | callsites "^2.0.0" 976 | chalk "^1.1.3" 977 | graceful-fs "^4.1.11" 978 | is-ci "^1.0.10" 979 | istanbul-api "^1.1.1" 980 | istanbul-lib-coverage "^1.0.1" 981 | istanbul-lib-instrument "^1.4.2" 982 | istanbul-lib-source-maps "^1.1.0" 983 | jest-changed-files "^20.0.3" 984 | jest-config "^20.0.4" 985 | jest-docblock "^20.0.3" 986 | jest-environment-jsdom "^20.0.3" 987 | jest-haste-map "^20.0.4" 988 | jest-jasmine2 "^20.0.4" 989 | jest-message-util "^20.0.3" 990 | jest-regex-util "^20.0.3" 991 | jest-resolve-dependencies "^20.0.3" 992 | jest-runtime "^20.0.4" 993 | jest-snapshot "^20.0.3" 994 | jest-util "^20.0.3" 995 | micromatch "^2.3.11" 996 | node-notifier "^5.0.2" 997 | pify "^2.3.0" 998 | slash "^1.0.0" 999 | string-length "^1.0.1" 1000 | throat "^3.0.0" 1001 | which "^1.2.12" 1002 | worker-farm "^1.3.1" 1003 | yargs "^7.0.2" 1004 | 1005 | jest-config@^20.0.4: 1006 | version "20.0.4" 1007 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-20.0.4.tgz#e37930ab2217c913605eff13e7bd763ec48faeea" 1008 | dependencies: 1009 | chalk "^1.1.3" 1010 | glob "^7.1.1" 1011 | jest-environment-jsdom "^20.0.3" 1012 | jest-environment-node "^20.0.3" 1013 | jest-jasmine2 "^20.0.4" 1014 | jest-matcher-utils "^20.0.3" 1015 | jest-regex-util "^20.0.3" 1016 | jest-resolve "^20.0.4" 1017 | jest-validate "^20.0.3" 1018 | pretty-format "^20.0.3" 1019 | 1020 | jest-diff@^20.0.3: 1021 | version "20.0.3" 1022 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-20.0.3.tgz#81f288fd9e675f0fb23c75f1c2b19445fe586617" 1023 | dependencies: 1024 | chalk "^1.1.3" 1025 | diff "^3.2.0" 1026 | jest-matcher-utils "^20.0.3" 1027 | pretty-format "^20.0.3" 1028 | 1029 | jest-docblock@^20.0.3: 1030 | version "20.0.3" 1031 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-20.0.3.tgz#17bea984342cc33d83c50fbe1545ea0efaa44712" 1032 | 1033 | jest-environment-jsdom@^20.0.3: 1034 | version "20.0.3" 1035 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-20.0.3.tgz#048a8ac12ee225f7190417713834bb999787de99" 1036 | dependencies: 1037 | jest-mock "^20.0.3" 1038 | jest-util "^20.0.3" 1039 | jsdom "^9.12.0" 1040 | 1041 | jest-environment-node@^20.0.3: 1042 | version "20.0.3" 1043 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-20.0.3.tgz#d488bc4612af2c246e986e8ae7671a099163d403" 1044 | dependencies: 1045 | jest-mock "^20.0.3" 1046 | jest-util "^20.0.3" 1047 | 1048 | jest-haste-map@^20.0.4: 1049 | version "20.0.5" 1050 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-20.0.5.tgz#abad74efb1a005974a7b6517e11010709cab9112" 1051 | dependencies: 1052 | fb-watchman "^2.0.0" 1053 | graceful-fs "^4.1.11" 1054 | jest-docblock "^20.0.3" 1055 | micromatch "^2.3.11" 1056 | sane "~1.6.0" 1057 | worker-farm "^1.3.1" 1058 | 1059 | jest-jasmine2@^20.0.4: 1060 | version "20.0.4" 1061 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-20.0.4.tgz#fcc5b1411780d911d042902ef1859e852e60d5e1" 1062 | dependencies: 1063 | chalk "^1.1.3" 1064 | graceful-fs "^4.1.11" 1065 | jest-diff "^20.0.3" 1066 | jest-matcher-utils "^20.0.3" 1067 | jest-matchers "^20.0.3" 1068 | jest-message-util "^20.0.3" 1069 | jest-snapshot "^20.0.3" 1070 | once "^1.4.0" 1071 | p-map "^1.1.1" 1072 | 1073 | jest-matcher-utils@^20.0.3: 1074 | version "20.0.3" 1075 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-20.0.3.tgz#b3a6b8e37ca577803b0832a98b164f44b7815612" 1076 | dependencies: 1077 | chalk "^1.1.3" 1078 | pretty-format "^20.0.3" 1079 | 1080 | jest-matchers@^20.0.3: 1081 | version "20.0.3" 1082 | resolved "https://registry.yarnpkg.com/jest-matchers/-/jest-matchers-20.0.3.tgz#ca69db1c32db5a6f707fa5e0401abb55700dfd60" 1083 | dependencies: 1084 | jest-diff "^20.0.3" 1085 | jest-matcher-utils "^20.0.3" 1086 | jest-message-util "^20.0.3" 1087 | jest-regex-util "^20.0.3" 1088 | 1089 | jest-message-util@^20.0.3: 1090 | version "20.0.3" 1091 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-20.0.3.tgz#6aec2844306fcb0e6e74d5796c1006d96fdd831c" 1092 | dependencies: 1093 | chalk "^1.1.3" 1094 | micromatch "^2.3.11" 1095 | slash "^1.0.0" 1096 | 1097 | jest-mock@^20.0.3: 1098 | version "20.0.3" 1099 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-20.0.3.tgz#8bc070e90414aa155c11a8d64c869a0d5c71da59" 1100 | 1101 | jest-regex-util@^20.0.3: 1102 | version "20.0.3" 1103 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-20.0.3.tgz#85bbab5d133e44625b19faf8c6aa5122d085d762" 1104 | 1105 | jest-resolve-dependencies@^20.0.3: 1106 | version "20.0.3" 1107 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-20.0.3.tgz#6e14a7b717af0f2cb3667c549de40af017b1723a" 1108 | dependencies: 1109 | jest-regex-util "^20.0.3" 1110 | 1111 | jest-resolve@^20.0.4: 1112 | version "20.0.4" 1113 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-20.0.4.tgz#9448b3e8b6bafc15479444c6499045b7ffe597a5" 1114 | dependencies: 1115 | browser-resolve "^1.11.2" 1116 | is-builtin-module "^1.0.0" 1117 | resolve "^1.3.2" 1118 | 1119 | jest-runtime@^20.0.4: 1120 | version "20.0.4" 1121 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-20.0.4.tgz#a2c802219c4203f754df1404e490186169d124d8" 1122 | dependencies: 1123 | babel-core "^6.0.0" 1124 | babel-jest "^20.0.3" 1125 | babel-plugin-istanbul "^4.0.0" 1126 | chalk "^1.1.3" 1127 | convert-source-map "^1.4.0" 1128 | graceful-fs "^4.1.11" 1129 | jest-config "^20.0.4" 1130 | jest-haste-map "^20.0.4" 1131 | jest-regex-util "^20.0.3" 1132 | jest-resolve "^20.0.4" 1133 | jest-util "^20.0.3" 1134 | json-stable-stringify "^1.0.1" 1135 | micromatch "^2.3.11" 1136 | strip-bom "3.0.0" 1137 | yargs "^7.0.2" 1138 | 1139 | jest-snapshot@^20.0.3: 1140 | version "20.0.3" 1141 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-20.0.3.tgz#5b847e1adb1a4d90852a7f9f125086e187c76566" 1142 | dependencies: 1143 | chalk "^1.1.3" 1144 | jest-diff "^20.0.3" 1145 | jest-matcher-utils "^20.0.3" 1146 | jest-util "^20.0.3" 1147 | natural-compare "^1.4.0" 1148 | pretty-format "^20.0.3" 1149 | 1150 | jest-util@^20.0.3: 1151 | version "20.0.3" 1152 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-20.0.3.tgz#0c07f7d80d82f4e5a67c6f8b9c3fe7f65cfd32ad" 1153 | dependencies: 1154 | chalk "^1.1.3" 1155 | graceful-fs "^4.1.11" 1156 | jest-message-util "^20.0.3" 1157 | jest-mock "^20.0.3" 1158 | jest-validate "^20.0.3" 1159 | leven "^2.1.0" 1160 | mkdirp "^0.5.1" 1161 | 1162 | jest-validate@^20.0.3: 1163 | version "20.0.3" 1164 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-20.0.3.tgz#d0cfd1de4f579f298484925c280f8f1d94ec3cab" 1165 | dependencies: 1166 | chalk "^1.1.3" 1167 | jest-matcher-utils "^20.0.3" 1168 | leven "^2.1.0" 1169 | pretty-format "^20.0.3" 1170 | 1171 | jest@^20.0.4: 1172 | version "20.0.4" 1173 | resolved "https://registry.yarnpkg.com/jest/-/jest-20.0.4.tgz#3dd260c2989d6dad678b1e9cc4d91944f6d602ac" 1174 | dependencies: 1175 | jest-cli "^20.0.4" 1176 | 1177 | js-tokens@^3.0.0: 1178 | version "3.0.2" 1179 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1180 | 1181 | js-yaml@^3.7.0: 1182 | version "3.13.1" 1183 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847" 1184 | dependencies: 1185 | argparse "^1.0.7" 1186 | esprima "^4.0.0" 1187 | 1188 | jsbn@~0.1.0: 1189 | version "0.1.1" 1190 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1191 | 1192 | jsdom@^9.12.0: 1193 | version "9.12.0" 1194 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 1195 | dependencies: 1196 | abab "^1.0.3" 1197 | acorn "^4.0.4" 1198 | acorn-globals "^3.1.0" 1199 | array-equal "^1.0.0" 1200 | content-type-parser "^1.0.1" 1201 | cssom ">= 0.3.2 < 0.4.0" 1202 | cssstyle ">= 0.2.37 < 0.3.0" 1203 | escodegen "^1.6.1" 1204 | html-encoding-sniffer "^1.0.1" 1205 | nwmatcher ">= 1.3.9 < 2.0.0" 1206 | parse5 "^1.5.1" 1207 | request "^2.79.0" 1208 | sax "^1.2.1" 1209 | symbol-tree "^3.2.1" 1210 | tough-cookie "^2.3.2" 1211 | webidl-conversions "^4.0.0" 1212 | whatwg-encoding "^1.0.1" 1213 | whatwg-url "^4.3.0" 1214 | xml-name-validator "^2.0.1" 1215 | 1216 | jsesc@^1.3.0: 1217 | version "1.3.0" 1218 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1219 | 1220 | json-schema@0.2.3: 1221 | version "0.2.3" 1222 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1223 | 1224 | json-stable-stringify@^1.0.1: 1225 | version "1.0.1" 1226 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1227 | dependencies: 1228 | jsonify "~0.0.0" 1229 | 1230 | json-stringify-safe@~5.0.1: 1231 | version "5.0.1" 1232 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1233 | 1234 | json5@^0.5.0: 1235 | version "0.5.1" 1236 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1237 | 1238 | jsonify@~0.0.0: 1239 | version "0.0.0" 1240 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1241 | 1242 | jsprim@^1.2.2: 1243 | version "1.4.1" 1244 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1245 | dependencies: 1246 | assert-plus "1.0.0" 1247 | extsprintf "1.3.0" 1248 | json-schema "0.2.3" 1249 | verror "1.10.0" 1250 | 1251 | kind-of@^3.0.2: 1252 | version "3.2.2" 1253 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1254 | dependencies: 1255 | is-buffer "^1.1.5" 1256 | 1257 | kind-of@^4.0.0: 1258 | version "4.0.0" 1259 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1260 | dependencies: 1261 | is-buffer "^1.1.5" 1262 | 1263 | lcid@^1.0.0: 1264 | version "1.0.0" 1265 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1266 | dependencies: 1267 | invert-kv "^1.0.0" 1268 | 1269 | leven@^2.1.0: 1270 | version "2.1.0" 1271 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 1272 | 1273 | levn@~0.3.0: 1274 | version "0.3.0" 1275 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1276 | dependencies: 1277 | prelude-ls "~1.1.2" 1278 | type-check "~0.3.2" 1279 | 1280 | load-json-file@^1.0.0: 1281 | version "1.1.0" 1282 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1283 | dependencies: 1284 | graceful-fs "^4.1.2" 1285 | parse-json "^2.2.0" 1286 | pify "^2.0.0" 1287 | pinkie-promise "^2.0.0" 1288 | strip-bom "^2.0.0" 1289 | 1290 | load-json-file@^2.0.0: 1291 | version "2.0.0" 1292 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 1293 | dependencies: 1294 | graceful-fs "^4.1.2" 1295 | parse-json "^2.2.0" 1296 | pify "^2.0.0" 1297 | strip-bom "^3.0.0" 1298 | 1299 | locate-path@^2.0.0: 1300 | version "2.0.0" 1301 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1302 | dependencies: 1303 | p-locate "^2.0.0" 1304 | path-exists "^3.0.0" 1305 | 1306 | lodash@^4.14.0, lodash@^4.2.0: 1307 | version "4.17.15" 1308 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" 1309 | 1310 | loose-envify@^1.0.0: 1311 | version "1.3.1" 1312 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1313 | dependencies: 1314 | js-tokens "^3.0.0" 1315 | 1316 | loud-rejection@^1.0.0: 1317 | version "1.6.0" 1318 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 1319 | dependencies: 1320 | currently-unhandled "^0.4.1" 1321 | signal-exit "^3.0.0" 1322 | 1323 | makeerror@1.0.x: 1324 | version "1.0.11" 1325 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 1326 | dependencies: 1327 | tmpl "1.0.x" 1328 | 1329 | map-obj@^1.0.0, map-obj@^1.0.1: 1330 | version "1.0.1" 1331 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 1332 | 1333 | meow@^3.7.0: 1334 | version "3.7.0" 1335 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 1336 | dependencies: 1337 | camelcase-keys "^2.0.0" 1338 | decamelize "^1.1.2" 1339 | loud-rejection "^1.0.0" 1340 | map-obj "^1.0.1" 1341 | minimist "^1.1.3" 1342 | normalize-package-data "^2.3.4" 1343 | object-assign "^4.0.1" 1344 | read-pkg-up "^1.0.1" 1345 | redent "^1.0.0" 1346 | trim-newlines "^1.0.0" 1347 | 1348 | merge@^1.1.3: 1349 | version "1.2.1" 1350 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.1.tgz#38bebf80c3220a8a487b6fcfb3941bb11720c145" 1351 | 1352 | micromatch@^2.1.5, micromatch@^2.3.11: 1353 | version "2.3.11" 1354 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1355 | dependencies: 1356 | arr-diff "^2.0.0" 1357 | array-unique "^0.2.1" 1358 | braces "^1.8.2" 1359 | expand-brackets "^0.1.4" 1360 | extglob "^0.3.1" 1361 | filename-regex "^2.0.0" 1362 | is-extglob "^1.0.0" 1363 | is-glob "^2.0.1" 1364 | kind-of "^3.0.2" 1365 | normalize-path "^2.0.1" 1366 | object.omit "^2.0.0" 1367 | parse-glob "^3.0.4" 1368 | regex-cache "^0.4.2" 1369 | 1370 | mime-db@~1.29.0: 1371 | version "1.29.0" 1372 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.29.0.tgz#48d26d235589651704ac5916ca06001914266878" 1373 | 1374 | mime-types@^2.1.12, mime-types@~2.1.7: 1375 | version "2.1.16" 1376 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.16.tgz#2b858a52e5ecd516db897ac2be87487830698e23" 1377 | dependencies: 1378 | mime-db "~1.29.0" 1379 | 1380 | minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 1381 | version "3.0.4" 1382 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1383 | dependencies: 1384 | brace-expansion "^1.1.7" 1385 | 1386 | minimist@0.0.8: 1387 | version "0.0.8" 1388 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1389 | 1390 | minimist@^1.1.1, minimist@^1.1.3: 1391 | version "1.2.0" 1392 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1393 | 1394 | minimist@~0.0.1: 1395 | version "0.0.10" 1396 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 1397 | 1398 | mkdirp@^0.5.1: 1399 | version "0.5.1" 1400 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1401 | dependencies: 1402 | minimist "0.0.8" 1403 | 1404 | ms@2.0.0: 1405 | version "2.0.0" 1406 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1407 | 1408 | natural-compare@^1.4.0: 1409 | version "1.4.0" 1410 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1411 | 1412 | neo-async@^2.6.0: 1413 | version "2.6.1" 1414 | resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c" 1415 | 1416 | node-int64@^0.4.0: 1417 | version "0.4.0" 1418 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 1419 | 1420 | node-notifier@^5.0.2: 1421 | version "5.1.2" 1422 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" 1423 | dependencies: 1424 | growly "^1.3.0" 1425 | semver "^5.3.0" 1426 | shellwords "^0.1.0" 1427 | which "^1.2.12" 1428 | 1429 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: 1430 | version "2.4.0" 1431 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 1432 | dependencies: 1433 | hosted-git-info "^2.1.4" 1434 | is-builtin-module "^1.0.0" 1435 | semver "2 || 3 || 4 || 5" 1436 | validate-npm-package-license "^3.0.1" 1437 | 1438 | normalize-path@^2.0.0, normalize-path@^2.0.1: 1439 | version "2.1.1" 1440 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1441 | dependencies: 1442 | remove-trailing-separator "^1.0.1" 1443 | 1444 | number-is-nan@^1.0.0: 1445 | version "1.0.1" 1446 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1447 | 1448 | "nwmatcher@>= 1.3.9 < 2.0.0": 1449 | version "1.4.1" 1450 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.1.tgz#7ae9b07b0ea804db7e25f05cb5fe4097d4e4949f" 1451 | 1452 | oauth-sign@~0.8.1: 1453 | version "0.8.2" 1454 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1455 | 1456 | object-assign@^4.0.1, object-assign@^4.1.0: 1457 | version "4.1.1" 1458 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1459 | 1460 | object.omit@^2.0.0: 1461 | version "2.0.1" 1462 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1463 | dependencies: 1464 | for-own "^0.1.4" 1465 | is-extendable "^0.1.1" 1466 | 1467 | once@^1.3.0, once@^1.4.0: 1468 | version "1.4.0" 1469 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1470 | dependencies: 1471 | wrappy "1" 1472 | 1473 | optimist@^0.6.1: 1474 | version "0.6.1" 1475 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 1476 | dependencies: 1477 | minimist "~0.0.1" 1478 | wordwrap "~0.0.2" 1479 | 1480 | optionator@^0.8.1: 1481 | version "0.8.2" 1482 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 1483 | dependencies: 1484 | deep-is "~0.1.3" 1485 | fast-levenshtein "~2.0.4" 1486 | levn "~0.3.0" 1487 | prelude-ls "~1.1.2" 1488 | type-check "~0.3.2" 1489 | wordwrap "~1.0.0" 1490 | 1491 | os-homedir@^1.0.0: 1492 | version "1.0.2" 1493 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1494 | 1495 | os-locale@^1.4.0: 1496 | version "1.4.0" 1497 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 1498 | dependencies: 1499 | lcid "^1.0.0" 1500 | 1501 | os-tmpdir@^1.0.1: 1502 | version "1.0.2" 1503 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1504 | 1505 | p-limit@^1.1.0: 1506 | version "1.1.0" 1507 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 1508 | 1509 | p-locate@^2.0.0: 1510 | version "2.0.0" 1511 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1512 | dependencies: 1513 | p-limit "^1.1.0" 1514 | 1515 | p-map@^1.1.1: 1516 | version "1.1.1" 1517 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.1.1.tgz#05f5e4ae97a068371bc2a5cc86bfbdbc19c4ae7a" 1518 | 1519 | parse-glob@^3.0.4: 1520 | version "3.0.4" 1521 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1522 | dependencies: 1523 | glob-base "^0.3.0" 1524 | is-dotfile "^1.0.0" 1525 | is-extglob "^1.0.0" 1526 | is-glob "^2.0.0" 1527 | 1528 | parse-json@^2.2.0: 1529 | version "2.2.0" 1530 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1531 | dependencies: 1532 | error-ex "^1.2.0" 1533 | 1534 | parse5@^1.5.1: 1535 | version "1.5.1" 1536 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 1537 | 1538 | path-exists@^2.0.0: 1539 | version "2.1.0" 1540 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1541 | dependencies: 1542 | pinkie-promise "^2.0.0" 1543 | 1544 | path-exists@^3.0.0: 1545 | version "3.0.0" 1546 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1547 | 1548 | path-is-absolute@^1.0.0: 1549 | version "1.0.1" 1550 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1551 | 1552 | path-parse@^1.0.5: 1553 | version "1.0.5" 1554 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 1555 | 1556 | path-type@^1.0.0: 1557 | version "1.1.0" 1558 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 1559 | dependencies: 1560 | graceful-fs "^4.1.2" 1561 | pify "^2.0.0" 1562 | pinkie-promise "^2.0.0" 1563 | 1564 | path-type@^2.0.0: 1565 | version "2.0.0" 1566 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 1567 | dependencies: 1568 | pify "^2.0.0" 1569 | 1570 | performance-now@^0.2.0: 1571 | version "0.2.0" 1572 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 1573 | 1574 | pify@^2.0.0, pify@^2.3.0: 1575 | version "2.3.0" 1576 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1577 | 1578 | pinkie-promise@^2.0.0: 1579 | version "2.0.1" 1580 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1581 | dependencies: 1582 | pinkie "^2.0.0" 1583 | 1584 | pinkie@^2.0.0: 1585 | version "2.0.4" 1586 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1587 | 1588 | prelude-ls@~1.1.2: 1589 | version "1.1.2" 1590 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 1591 | 1592 | preserve@^0.2.0: 1593 | version "0.2.0" 1594 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1595 | 1596 | pretty-format@^20.0.3: 1597 | version "20.0.3" 1598 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-20.0.3.tgz#020e350a560a1fe1a98dc3beb6ccffb386de8b14" 1599 | dependencies: 1600 | ansi-regex "^2.1.1" 1601 | ansi-styles "^3.0.0" 1602 | 1603 | private@^0.1.6: 1604 | version "0.1.7" 1605 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 1606 | 1607 | prr@~0.0.0: 1608 | version "0.0.0" 1609 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 1610 | 1611 | punycode@^1.4.1: 1612 | version "1.4.1" 1613 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1614 | 1615 | qs@~6.4.0: 1616 | version "6.4.0" 1617 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 1618 | 1619 | randomatic@^1.1.3: 1620 | version "1.1.7" 1621 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 1622 | dependencies: 1623 | is-number "^3.0.0" 1624 | kind-of "^4.0.0" 1625 | 1626 | read-pkg-up@^1.0.1: 1627 | version "1.0.1" 1628 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 1629 | dependencies: 1630 | find-up "^1.0.0" 1631 | read-pkg "^1.0.0" 1632 | 1633 | read-pkg-up@^2.0.0: 1634 | version "2.0.0" 1635 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 1636 | dependencies: 1637 | find-up "^2.0.0" 1638 | read-pkg "^2.0.0" 1639 | 1640 | read-pkg@^1.0.0: 1641 | version "1.1.0" 1642 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 1643 | dependencies: 1644 | load-json-file "^1.0.0" 1645 | normalize-package-data "^2.3.2" 1646 | path-type "^1.0.0" 1647 | 1648 | read-pkg@^2.0.0: 1649 | version "2.0.0" 1650 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 1651 | dependencies: 1652 | load-json-file "^2.0.0" 1653 | normalize-package-data "^2.3.2" 1654 | path-type "^2.0.0" 1655 | 1656 | redent@^1.0.0: 1657 | version "1.0.0" 1658 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 1659 | dependencies: 1660 | indent-string "^2.1.0" 1661 | strip-indent "^1.0.1" 1662 | 1663 | regenerator-runtime@^0.10.0: 1664 | version "0.10.5" 1665 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 1666 | 1667 | regex-cache@^0.4.2: 1668 | version "0.4.3" 1669 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 1670 | dependencies: 1671 | is-equal-shallow "^0.1.3" 1672 | is-primitive "^2.0.0" 1673 | 1674 | remove-trailing-separator@^1.0.1: 1675 | version "1.0.2" 1676 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.2.tgz#69b062d978727ad14dc6b56ba4ab772fd8d70511" 1677 | 1678 | repeat-element@^1.1.2: 1679 | version "1.1.2" 1680 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1681 | 1682 | repeat-string@^1.5.2: 1683 | version "1.6.1" 1684 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1685 | 1686 | repeating@^2.0.0: 1687 | version "2.0.1" 1688 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1689 | dependencies: 1690 | is-finite "^1.0.0" 1691 | 1692 | request@^2.79.0: 1693 | version "2.81.0" 1694 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 1695 | dependencies: 1696 | aws-sign2 "~0.6.0" 1697 | aws4 "^1.2.1" 1698 | caseless "~0.12.0" 1699 | combined-stream "~1.0.5" 1700 | extend "~3.0.0" 1701 | forever-agent "~0.6.1" 1702 | form-data "~2.1.1" 1703 | har-validator "~4.2.1" 1704 | hawk "~3.1.3" 1705 | http-signature "~1.1.0" 1706 | is-typedarray "~1.0.0" 1707 | isstream "~0.1.2" 1708 | json-stringify-safe "~5.0.1" 1709 | mime-types "~2.1.7" 1710 | oauth-sign "~0.8.1" 1711 | performance-now "^0.2.0" 1712 | qs "~6.4.0" 1713 | safe-buffer "^5.0.1" 1714 | stringstream "~0.0.4" 1715 | tough-cookie "~2.3.0" 1716 | tunnel-agent "^0.6.0" 1717 | uuid "^3.0.0" 1718 | 1719 | require-directory@^2.1.1: 1720 | version "2.1.1" 1721 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 1722 | 1723 | require-main-filename@^1.0.1: 1724 | version "1.0.1" 1725 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 1726 | 1727 | resolve@1.1.7: 1728 | version "1.1.7" 1729 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 1730 | 1731 | resolve@^1.3.2: 1732 | version "1.4.0" 1733 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.4.0.tgz#a75be01c53da25d934a98ebd0e4c4a7312f92a86" 1734 | dependencies: 1735 | path-parse "^1.0.5" 1736 | 1737 | rimraf@^2.6.1: 1738 | version "2.6.1" 1739 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 1740 | dependencies: 1741 | glob "^7.0.5" 1742 | 1743 | safe-buffer@^5.0.1: 1744 | version "5.1.1" 1745 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 1746 | 1747 | safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: 1748 | version "2.1.2" 1749 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 1750 | 1751 | sane@~1.6.0: 1752 | version "1.6.0" 1753 | resolved "https://registry.yarnpkg.com/sane/-/sane-1.6.0.tgz#9610c452307a135d29c1fdfe2547034180c46775" 1754 | dependencies: 1755 | anymatch "^1.3.0" 1756 | exec-sh "^0.2.0" 1757 | fb-watchman "^1.8.0" 1758 | minimatch "^3.0.2" 1759 | minimist "^1.1.1" 1760 | walker "~1.0.5" 1761 | watch "~0.10.0" 1762 | 1763 | sax@^1.2.1: 1764 | version "1.2.4" 1765 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 1766 | 1767 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 1768 | version "5.4.1" 1769 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 1770 | 1771 | set-blocking@^2.0.0: 1772 | version "2.0.0" 1773 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1774 | 1775 | shellwords@^0.1.0: 1776 | version "0.1.0" 1777 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.0.tgz#66afd47b6a12932d9071cbfd98a52e785cd0ba14" 1778 | 1779 | signal-exit@^3.0.0: 1780 | version "3.0.2" 1781 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 1782 | 1783 | slash@^1.0.0: 1784 | version "1.0.0" 1785 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 1786 | 1787 | sntp@1.x.x: 1788 | version "1.0.9" 1789 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 1790 | dependencies: 1791 | hoek "2.x.x" 1792 | 1793 | source-map-support@^0.4.2: 1794 | version "0.4.15" 1795 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1" 1796 | dependencies: 1797 | source-map "^0.5.6" 1798 | 1799 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6: 1800 | version "0.5.6" 1801 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 1802 | 1803 | source-map@^0.6.1, source-map@~0.6.1: 1804 | version "0.6.1" 1805 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 1806 | 1807 | source-map@~0.2.0: 1808 | version "0.2.0" 1809 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 1810 | dependencies: 1811 | amdefine ">=0.0.4" 1812 | 1813 | spdx-correct@~1.0.0: 1814 | version "1.0.2" 1815 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 1816 | dependencies: 1817 | spdx-license-ids "^1.0.2" 1818 | 1819 | spdx-expression-parse@~1.0.0: 1820 | version "1.0.4" 1821 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 1822 | 1823 | spdx-license-ids@^1.0.2: 1824 | version "1.2.2" 1825 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 1826 | 1827 | sprintf-js@~1.0.2: 1828 | version "1.0.3" 1829 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 1830 | 1831 | sshpk@^1.7.0: 1832 | version "1.16.1" 1833 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877" 1834 | dependencies: 1835 | asn1 "~0.2.3" 1836 | assert-plus "^1.0.0" 1837 | bcrypt-pbkdf "^1.0.0" 1838 | dashdash "^1.12.0" 1839 | ecc-jsbn "~0.1.1" 1840 | getpass "^0.1.1" 1841 | jsbn "~0.1.0" 1842 | safer-buffer "^2.0.2" 1843 | tweetnacl "~0.14.0" 1844 | 1845 | string-length@^1.0.1: 1846 | version "1.0.1" 1847 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" 1848 | dependencies: 1849 | strip-ansi "^3.0.0" 1850 | 1851 | string-width@^1.0.1, string-width@^1.0.2: 1852 | version "1.0.2" 1853 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1854 | dependencies: 1855 | code-point-at "^1.0.0" 1856 | is-fullwidth-code-point "^1.0.0" 1857 | strip-ansi "^3.0.0" 1858 | 1859 | stringstream@~0.0.4: 1860 | version "0.0.6" 1861 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.6.tgz#7880225b0d4ad10e30927d167a1d6f2fd3b33a72" 1862 | 1863 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 1864 | version "3.0.1" 1865 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1866 | dependencies: 1867 | ansi-regex "^2.0.0" 1868 | 1869 | strip-bom@3.0.0, strip-bom@^3.0.0: 1870 | version "3.0.0" 1871 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 1872 | 1873 | strip-bom@^2.0.0: 1874 | version "2.0.0" 1875 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 1876 | dependencies: 1877 | is-utf8 "^0.2.0" 1878 | 1879 | strip-indent@^1.0.1: 1880 | version "1.0.1" 1881 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 1882 | dependencies: 1883 | get-stdin "^4.0.1" 1884 | 1885 | supports-color@^2.0.0: 1886 | version "2.0.0" 1887 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 1888 | 1889 | supports-color@^3.1.2: 1890 | version "3.2.3" 1891 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 1892 | dependencies: 1893 | has-flag "^1.0.0" 1894 | 1895 | supports-color@^4.0.0: 1896 | version "4.2.1" 1897 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.2.1.tgz#65a4bb2631e90e02420dba5554c375a4754bb836" 1898 | dependencies: 1899 | has-flag "^2.0.0" 1900 | 1901 | symbol-tree@^3.2.1: 1902 | version "3.2.2" 1903 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 1904 | 1905 | test-exclude@^4.1.1: 1906 | version "4.1.1" 1907 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.1.tgz#4d84964b0966b0087ecc334a2ce002d3d9341e26" 1908 | dependencies: 1909 | arrify "^1.0.1" 1910 | micromatch "^2.3.11" 1911 | object-assign "^4.1.0" 1912 | read-pkg-up "^1.0.1" 1913 | require-main-filename "^1.0.1" 1914 | 1915 | throat@^3.0.0: 1916 | version "3.2.0" 1917 | resolved "https://registry.yarnpkg.com/throat/-/throat-3.2.0.tgz#50cb0670edbc40237b9e347d7e1f88e4620af836" 1918 | 1919 | tmpl@1.0.x: 1920 | version "1.0.4" 1921 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 1922 | 1923 | to-fast-properties@^1.0.1: 1924 | version "1.0.3" 1925 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 1926 | 1927 | tough-cookie@^2.3.2, tough-cookie@~2.3.0: 1928 | version "2.3.4" 1929 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655" 1930 | dependencies: 1931 | punycode "^1.4.1" 1932 | 1933 | tr46@~0.0.3: 1934 | version "0.0.3" 1935 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 1936 | 1937 | trim-newlines@^1.0.0: 1938 | version "1.0.0" 1939 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 1940 | 1941 | trim-right@^1.0.1: 1942 | version "1.0.1" 1943 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 1944 | 1945 | tunnel-agent@^0.6.0: 1946 | version "0.6.0" 1947 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 1948 | dependencies: 1949 | safe-buffer "^5.0.1" 1950 | 1951 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 1952 | version "0.14.5" 1953 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 1954 | 1955 | type-check@~0.3.2: 1956 | version "0.3.2" 1957 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 1958 | dependencies: 1959 | prelude-ls "~1.1.2" 1960 | 1961 | uglify-js@^3.1.4: 1962 | version "3.6.9" 1963 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.6.9.tgz#85d353edb6ddfb62a9d798f36e91792249320611" 1964 | dependencies: 1965 | commander "~2.20.3" 1966 | source-map "~0.6.1" 1967 | 1968 | uuid@^3.0.0: 1969 | version "3.1.0" 1970 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 1971 | 1972 | validate-npm-package-license@^3.0.1: 1973 | version "3.0.1" 1974 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 1975 | dependencies: 1976 | spdx-correct "~1.0.0" 1977 | spdx-expression-parse "~1.0.0" 1978 | 1979 | validate-npm-package-name@^3.0.0: 1980 | version "3.0.0" 1981 | resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz#5fa912d81eb7d0c74afc140de7317f0ca7df437e" 1982 | dependencies: 1983 | builtins "^1.0.3" 1984 | 1985 | verror@1.10.0: 1986 | version "1.10.0" 1987 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 1988 | dependencies: 1989 | assert-plus "^1.0.0" 1990 | core-util-is "1.0.2" 1991 | extsprintf "^1.2.0" 1992 | 1993 | walker@~1.0.5: 1994 | version "1.0.7" 1995 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 1996 | dependencies: 1997 | makeerror "1.0.x" 1998 | 1999 | watch@~0.10.0: 2000 | version "0.10.0" 2001 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" 2002 | 2003 | webidl-conversions@^3.0.0: 2004 | version "3.0.1" 2005 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 2006 | 2007 | webidl-conversions@^4.0.0: 2008 | version "4.0.2" 2009 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" 2010 | 2011 | whatwg-encoding@^1.0.1: 2012 | version "1.0.1" 2013 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 2014 | dependencies: 2015 | iconv-lite "0.4.13" 2016 | 2017 | whatwg-url@^4.3.0: 2018 | version "4.8.0" 2019 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.8.0.tgz#d2981aa9148c1e00a41c5a6131166ab4683bbcc0" 2020 | dependencies: 2021 | tr46 "~0.0.3" 2022 | webidl-conversions "^3.0.0" 2023 | 2024 | which-module@^1.0.0: 2025 | version "1.0.0" 2026 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 2027 | 2028 | which@^1.2.12: 2029 | version "1.3.0" 2030 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 2031 | dependencies: 2032 | isexe "^2.0.0" 2033 | 2034 | wordwrap@~0.0.2: 2035 | version "0.0.3" 2036 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 2037 | 2038 | wordwrap@~1.0.0: 2039 | version "1.0.0" 2040 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 2041 | 2042 | worker-farm@^1.3.1: 2043 | version "1.5.0" 2044 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.5.0.tgz#adfdf0cd40581465ed0a1f648f9735722afd5c8d" 2045 | dependencies: 2046 | errno "^0.1.4" 2047 | xtend "^4.0.1" 2048 | 2049 | wrap-ansi@^2.0.0: 2050 | version "2.1.0" 2051 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 2052 | dependencies: 2053 | string-width "^1.0.1" 2054 | strip-ansi "^3.0.1" 2055 | 2056 | wrappy@1: 2057 | version "1.0.2" 2058 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2059 | 2060 | xml-name-validator@^2.0.1: 2061 | version "2.0.1" 2062 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 2063 | 2064 | xtend@^4.0.1: 2065 | version "4.0.1" 2066 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2067 | 2068 | y18n@^3.2.1: 2069 | version "3.2.1" 2070 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 2071 | 2072 | yargs-parser@^5.0.0: 2073 | version "5.0.0" 2074 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" 2075 | dependencies: 2076 | camelcase "^3.0.0" 2077 | 2078 | yargs@^7.0.2: 2079 | version "7.1.0" 2080 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" 2081 | dependencies: 2082 | camelcase "^3.0.0" 2083 | cliui "^3.2.0" 2084 | decamelize "^1.1.1" 2085 | get-caller-file "^1.0.1" 2086 | os-locale "^1.4.0" 2087 | read-pkg-up "^1.0.1" 2088 | require-directory "^2.1.1" 2089 | require-main-filename "^1.0.1" 2090 | set-blocking "^2.0.0" 2091 | string-width "^1.0.2" 2092 | which-module "^1.0.0" 2093 | y18n "^3.2.1" 2094 | yargs-parser "^5.0.0" 2095 | --------------------------------------------------------------------------------