├── .github ├── FUNDING.yml ├── PULL_REQUEST_TEMPLATE.md └── ISSUE_TEMPLATE.md ├── .gitignore ├── docs ├── ROADMAP.md └── EXAMPLES.md ├── .travis.yml ├── src ├── utils │ ├── looks-like.js │ ├── index.js │ └── index.test.js ├── hooks.js ├── index.js ├── identifer.js ├── async.test.js ├── sync.test.js └── __snapshots__ │ ├── sync.test.js.snap │ └── async.test.js.snap ├── LICENSE ├── .eslintrc ├── .all-contributorsrc ├── CONTRIBUTING.md ├── package.json ├── README.md └── yarn.lock /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [mattphillips] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .DS_Store 4 | *.log 5 | coverage 6 | -------------------------------------------------------------------------------- /docs/ROADMAP.md: -------------------------------------------------------------------------------- 1 | # Project Roadmap 2 | 3 | ## Want something added? Feel free to open an issue :) 4 | -------------------------------------------------------------------------------- /docs/EXAMPLES.md: -------------------------------------------------------------------------------- 1 | # Examples 2 | 3 | ☹️ None created yet, fancy adding some? See [CONTRIBUTING](https://github.com/mattphillips/babel-jest-assertions/blob/master/CONTRIBUTING.md) 4 | 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - '8' 4 | - '6' 5 | cache: 6 | directories: 7 | - node_modules 8 | script: 'yarn test:coverage' 9 | after_success: 'yarn test:report' 10 | -------------------------------------------------------------------------------- /src/utils/looks-like.js: -------------------------------------------------------------------------------- 1 | const looksLike = (a, b) => { 2 | return ( 3 | a && 4 | b && 5 | Object.keys(b).every(bKey => { 6 | const bVal = b[bKey]; 7 | const aVal = a[bKey]; 8 | if (typeof bVal === 'function') { 9 | return bVal(aVal); 10 | } 11 | return isPrimitive(bVal) ? bVal === aVal : looksLike(aVal, bVal); 12 | }) 13 | ); 14 | }; 15 | 16 | const isPrimitive = val => val == null || /^[sbn]/.test(typeof val); 17 | 18 | module.exports = looksLike; 19 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | ### What 10 | 11 | 12 | ### Why 13 | 14 | 15 | ### Notes 16 | 17 | ### Housekeeping 18 | 19 | - [ ] Unit tests 20 | - [ ] Documentation is up to date 21 | - [ ] No additional lint warnings 22 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 8 | 9 | 29 | 30 | 38 | -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- 1 | const generate = require('babel-generator').default; 2 | const types = require('babel-types'); 3 | 4 | const EMPTY = ''; 5 | const SINGLE_LINE_COMMENT = /\/\/(.*)/g; 6 | const MULTI_LINE_COMMENT = /\/\*([\s\S]*?)\*\//g; 7 | 8 | const removeComments = code => code.replace(SINGLE_LINE_COMMENT, EMPTY).replace(MULTI_LINE_COMMENT, EMPTY); 9 | 10 | const getExpectCount = code => (code.match(/expect\(/g) || []).length; 11 | 12 | const getFunctionCode = fn => generate(fn.body).code; 13 | 14 | const normaliseFunctionType = fn => { 15 | if (types.isCallExpression(fn.body)) { 16 | fn.body = types.blockStatement([types.returnStatement(fn.body)]); 17 | } 18 | return fn; 19 | }; 20 | 21 | const compose = (...fns) => fns.reduce((f, g) => (...args) => f(g(...args))); 22 | 23 | module.exports = { 24 | compose, 25 | getExpectCount, 26 | getFunctionCode, 27 | normaliseFunctionType, 28 | removeComments 29 | }; 30 | -------------------------------------------------------------------------------- /src/hooks.js: -------------------------------------------------------------------------------- 1 | const types = require('babel-types'); 2 | const { isDescribeBlock, isHookBlock } = require('./identifer'); 3 | const { compose, getExpectCount, getFunctionCode, normaliseFunctionType, removeComments } = require('./utils'); 4 | 5 | const getFunctionCount = compose(getExpectCount, removeComments, getFunctionCode, normaliseFunctionType); 6 | 7 | const accumulateHookCount = (acc, hook) => 8 | isHookBlock(hook) ? acc + getFunctionCount(hook.expression.arguments[0]) : acc; 9 | 10 | const getHooksCount = (path, count) => { 11 | if (types.isProgram(path)) { 12 | return path.node.body.reduce(accumulateHookCount, count); 13 | } 14 | 15 | if (isDescribeBlock(path)) { 16 | return getHooksCount( 17 | path.parentPath, 18 | path.node.expression.arguments[1].body.body.reduce(accumulateHookCount, count) 19 | ); 20 | } 21 | 22 | return getHooksCount(path.parentPath, count); 23 | }; 24 | 25 | module.exports = getHooksCount; 26 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017-present Matt Phillips 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "parser": "babel-eslint", 3 | "env": { 4 | "node": true, 5 | "es6": true, 6 | "jest": true 7 | }, 8 | "globals": { 9 | "Promise": true, 10 | "describe": true, 11 | "it": true, 12 | "expect": true 13 | }, 14 | "plugins": [ 15 | "eslint-plugin-import", 16 | "import", 17 | "jest" 18 | ], 19 | "extends": "eslint:recommended", 20 | "rules": { 21 | "comma-spacing": [1, {"before": false, "after": true}], 22 | "eol-last": 1, 23 | "import/extensions": 1, 24 | "import/order": ["warn", { 25 | "groups": ["builtin", "external", "internal", "parent", "sibling", "index"] 26 | }], 27 | "import/no-unresolved": ["error", { "commonjs": true, "caseSensitive": true }], 28 | "indent": ["warn", 2], 29 | "jest/no-disabled-tests": "warn", 30 | "jest/no-focused-tests": "error", 31 | "jest/no-identical-title": "error", 32 | "key-spacing": 1, 33 | "no-multi-spaces": 1, 34 | "keyword-spacing": 1, 35 | "no-unused-vars": 1, 36 | "no-trailing-spaces": 1, 37 | "object-curly-spacing": [1, "always"], 38 | "quotes": ["warn", "single", { "avoidEscape": true }], 39 | "semi": 1 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | const { isOnlyBlock, isTestBlock } = require('./identifer'); 2 | const { compose, getExpectCount, getFunctionCode, normaliseFunctionType, removeComments } = require('./utils'); 3 | const getHooksCount = require('./hooks'); 4 | 5 | module.exports = ({ template }) => { 6 | return { 7 | name: 'babel-assertions', 8 | visitor: { 9 | ExpressionStatement(path) { 10 | if (!isTestBlock(path) && !isOnlyBlock(path)) return; 11 | 12 | const hookCount = getHooksCount(path, 0); 13 | 14 | const testFunction = normaliseFunctionType(path.node.expression.arguments[1]); 15 | const normalisedCode = compose(removeComments, getFunctionCode)(testFunction); 16 | const count = getExpectCount(normalisedCode) + hookCount; 17 | 18 | const containsExpectAssertions = normalisedCode.includes('expect.assertions('); 19 | const containsHasAssertions = normalisedCode.includes('expect.hasAssertions()'); 20 | 21 | const body = testFunction.body.body; 22 | 23 | if (!containsHasAssertions) { 24 | const hasAssertions = template('expect.hasAssertions();')(); 25 | body.unshift(hasAssertions); 26 | } 27 | 28 | if (count > 0 && !containsExpectAssertions) { 29 | const assertions = template(`expect.assertions(${count})`)(); 30 | body.unshift(assertions); 31 | } 32 | } 33 | } 34 | }; 35 | }; 36 | -------------------------------------------------------------------------------- /src/identifer.js: -------------------------------------------------------------------------------- 1 | const looksLike = require('./utils/looks-like'); 2 | 3 | const hasBodyFunction = index => args => 4 | looksLike(args[index], { 5 | type: t => t === 'ArrowFunctionExpression' || t === 'FunctionExpression' 6 | }); 7 | 8 | const isTestBlock = path => 9 | looksLike(path, { 10 | node: { 11 | expression: { 12 | callee: { 13 | type: 'Identifier', 14 | name: n => n === 'it' || n === 'test' || n === 'fit' || n === 'ftest' 15 | }, 16 | arguments: hasBodyFunction(1) 17 | } 18 | } 19 | }); 20 | 21 | const isOnlyBlock = path => 22 | looksLike(path, { 23 | node: { 24 | expression: { 25 | callee: { 26 | type: 'MemberExpression', 27 | object: { 28 | type: 'Identifier', 29 | name: n => n === 'it' || n === 'test' 30 | }, 31 | property: { 32 | type: 'Identifier', 33 | name: 'only' 34 | } 35 | }, 36 | arguments: hasBodyFunction(1) 37 | } 38 | } 39 | }); 40 | 41 | const isDescribeBlock = path => 42 | looksLike(path, { 43 | node: { 44 | expression: { 45 | callee: { 46 | type: 'Identifier', 47 | name: 'describe' 48 | }, 49 | arguments: hasBodyFunction(1) 50 | } 51 | } 52 | }); 53 | 54 | const isHookBlock = path => 55 | looksLike(path, { 56 | expression: { 57 | callee: { 58 | type: 'Identifier', 59 | name: n => n === 'beforeEach' || n === 'afterEach' 60 | }, 61 | arguments: hasBodyFunction(0) 62 | } 63 | }); 64 | 65 | module.exports = { isDescribeBlock, isHookBlock, isOnlyBlock, isTestBlock }; 66 | -------------------------------------------------------------------------------- /.all-contributorsrc: -------------------------------------------------------------------------------- 1 | { 2 | "projectName": "babel-jest-assertions", 3 | "projectOwner": "mattphillips", 4 | "files": [ 5 | "README.md" 6 | ], 7 | "imageSize": 100, 8 | "commit": false, 9 | "contributors": [ 10 | { 11 | "login": "mattphillips", 12 | "name": "Matt Phillips", 13 | "avatar_url": "https://avatars0.githubusercontent.com/u/5610087?v=4", 14 | "profile": "http://mattphillips.io", 15 | "contributions": [ 16 | "code", 17 | "doc", 18 | "infra", 19 | "test" 20 | ] 21 | }, 22 | { 23 | "login": "hiddentao", 24 | "name": "Ramesh Nair", 25 | "avatar_url": "https://avatars0.githubusercontent.com/u/266594?v=4", 26 | "profile": "https://hiddentao.com/", 27 | "contributions": [ 28 | "code", 29 | "doc", 30 | "example", 31 | "test" 32 | ] 33 | }, 34 | { 35 | "login": "huy-nguyen", 36 | "name": "Huy Nguyen", 37 | "avatar_url": "https://avatars1.githubusercontent.com/u/7352279?v=4", 38 | "profile": "https://www.huy-nguyen.com/", 39 | "contributions": [ 40 | "bug" 41 | ] 42 | }, 43 | { 44 | "login": "SBoudrias", 45 | "name": "Simon Boudrias", 46 | "avatar_url": "https://avatars2.githubusercontent.com/u/923865?v=4", 47 | "profile": "http://simonboudrias.com", 48 | "contributions": [ 49 | "bug" 50 | ] 51 | }, 52 | { 53 | "login": "giuseppeg", 54 | "name": "Giuseppe", 55 | "avatar_url": "https://avatars3.githubusercontent.com/u/711311?v=4", 56 | "profile": "http://giuseppe.pizza", 57 | "contributions": [ 58 | "ideas" 59 | ] 60 | } 61 | ] 62 | } 63 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing 2 | 3 | Thanks for being willing to contribute! 4 | 5 | **Working on your first Pull Request?** You can learn how from this *free* series 6 | [How to Contribute to an Open Source Project on GitHub](https://egghead.io/series/how-to-contribute-to-an-open-source-project-on-github) 7 | 8 | ## Project setup 9 | 10 | 1. Fork and clone the repo 11 | 2. `$ yarn install` to install dependencies 12 | 3. `$ yarn test` to validate you've got it working 13 | 4. Create a branch for your PR 14 | 15 | ## Making changes 16 | 17 | - All changes should have unit tests 18 | - Any relevant documentation should be updated 19 | - No linting warnings/errors should be introduced 20 | 21 | ## Committing and Pushing changes 22 | 23 | Once you are ready to commit the changes, please use the below commands 24 | 25 | 1. `git add ` 26 | 2. `git commit -m 'A meaningful message` 27 | 28 | *Note: please use present tense in commit messages i.e. `Add feature X` and not ~`Added feature X`~* 29 | 30 | ## Add yourself as a contributor 31 | 32 | This project follows the [all contributors](https://github.com/kentcdodds/all-contributors) 33 | specification. To add yourself to the table of contributors on the README.md, please use 34 | the automated script as part of your PR: 35 | 36 | ```console 37 | yarn contributor 38 | ``` 39 | 40 | Follow the prompt. If you've already added yourself to the list and are making a 41 | new type of contribution, you can run it again and select the added contribution 42 | type. If you need to edit the `.all-contributorsrc` file by hand that's fine 43 | too, just run `yarn contributor:generate` to regenerate the table 44 | 45 | ## Help needed 46 | 47 | Please checkout the [ROADMAP](docs/ROADMAP.md) and raise an issue to discuss 48 | any of the items 49 | -------------------------------------------------------------------------------- /src/utils/index.test.js: -------------------------------------------------------------------------------- 1 | const each = require('jest-each'); 2 | const { getExpectCount, removeComments } = require('./'); 3 | 4 | describe('Utils', () => { 5 | describe('.removeComments', () => { 6 | it('returns given string when string does not contain any comments', () => { 7 | const str = 'hello world'; 8 | expect(removeComments(str)).toEqual(str); 9 | }); 10 | it('returns empty string when given a single line comment', () => { 11 | expect(removeComments('// hello world')).toEqual(''); 12 | }); 13 | it('returns empty string when given a multi line comment', () => { 14 | expect( 15 | removeComments(`/* 16 | hello world 17 | */`) 18 | ).toEqual(''); 19 | }); 20 | it('returns string without comments when given a string containing a singleline comment', () => { 21 | expect(removeComments('abc//hello world')).toEqual('abc'); 22 | }); 23 | it('returns string without comments when given a string containing a multi line comment', () => { 24 | expect( 25 | removeComments(`abc/* 26 | hello world 27 | */def`) 28 | ).toEqual('abcdef'); 29 | }); 30 | it('returns string without comments when given a string with both single and multi line comments', () => { 31 | expect( 32 | removeComments(`abc /* hello world */ 33 | // foo 34 | /* 35 | bar 36 | */ 37 | xyz 38 | /* 39 | baz 40 | */ 41 | def // qux 42 | `).replace(/\s/g, '') 43 | ).toEqual('abcxyzdef'); 44 | }); 45 | }); 46 | 47 | describe('.getExpectCount', () => { 48 | it('returns zero when no string does not contain expect(', () => { 49 | expect(getExpectCount('')).toBe(0); 50 | }); 51 | 52 | each([ 53 | [1, 'expect('], 54 | [1, 'expect(x).toBe(true);'], 55 | [ 56 | 2, 57 | ` 58 | expect(x).toBe(true); 59 | expect(y).toBe(false); 60 | ` 61 | ] 62 | ]).it('returns %s when string contains expect(', (expected, string) => { 63 | expect(getExpectCount(string)).toBe(expected); 64 | }); 65 | }); 66 | }); 67 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "babel-jest-assertions", 3 | "version": "0.1.0", 4 | "description": "Babel plugin that adds the number of assertions found in each test with expect.assertions(n)", 5 | "main": "dist/index.js", 6 | "files": [ 7 | "dist" 8 | ], 9 | "scripts": { 10 | "build": "babel src -d dist --ignore *.test.js", 11 | "contributor": "all-contributors add", 12 | "contributor:gen": "all-contributors generate", 13 | "lint": "eslint src", 14 | "lint:fix": "yarn lint -- --fix", 15 | "precommit": "lint-staged", 16 | "prepublish": "yarn build", 17 | "prettier": "prettier 'src/**/*.js' --write --single-quote=true --print-width=120", 18 | "test": "jest", 19 | "test:coverage": "yarn test -- --coverage", 20 | "test:report": "codecov", 21 | "test:watch": "yarn test -- --watch" 22 | }, 23 | "repository": { 24 | "type": "git", 25 | "url": "git+https://github.com/mattphillips/babel-jest-assertions.git" 26 | }, 27 | "keywords": [ 28 | "babel", 29 | "jest", 30 | "plugin", 31 | "assertions", 32 | "expect", 33 | "test" 34 | ], 35 | "author": "Matt Phillips (mattphillips.io)", 36 | "license": "MIT", 37 | "bugs": { 38 | "url": "https://github.com/mattphillips/babel-jest-assertions/issues" 39 | }, 40 | "homepage": "https://github.com/mattphillips/babel-jest-assertions#readme", 41 | "devDependencies": { 42 | "all-contributors-cli": "^4.4.0", 43 | "babel-cli": "^6.26.0", 44 | "babel-core": "^6.26.0", 45 | "babel-eslint": "^8.0.0", 46 | "babel-jest": "^21.0.2", 47 | "babel-plugin-tester": "^4.0.0", 48 | "codecov": "^2.3.0", 49 | "eslint": "^4.6.1", 50 | "eslint-plugin-import": "^2.7.0", 51 | "eslint-plugin-jest": "^21.0.2", 52 | "husky": "^0.14.3", 53 | "jest": "^21.0.2", 54 | "jest-each": "^0.3.1", 55 | "jest-extended": "^0.5.0", 56 | "lint-staged": "^4.1.3", 57 | "prettier": "^1.6.1" 58 | }, 59 | "lint-staged": { 60 | "*.js": [ 61 | "yarn prettier", 62 | "git add" 63 | ] 64 | }, 65 | "jest": { 66 | "testEnvironment": "node", 67 | "testPathIgnorePatterns": [ 68 | "/node_modules/", 69 | "/fixtures/" 70 | ], 71 | "coveragePathIgnorePatterns": [ 72 | "/node_modules/" 73 | ], 74 | "coverageThreshold": { 75 | "global": { 76 | "branches": 100, 77 | "functions": 100, 78 | "lines": 100, 79 | "statements": 100 80 | } 81 | }, 82 | "setupTestFrameworkScriptFile": "jest-extended" 83 | }, 84 | "dependencies": { 85 | "babel-generator": "^6.26.0", 86 | "babel-types": "^6.26.0" 87 | } 88 | } 89 | -------------------------------------------------------------------------------- /src/async.test.js: -------------------------------------------------------------------------------- 1 | const pluginTester = require('babel-plugin-tester'); 2 | const plugin = require('./'); 3 | 4 | pluginTester({ 5 | plugin, 6 | tests: { 7 | 'Does not modify code when not a test': { 8 | code: ` 9 | const add = async (a, b) => Promise.resolve(a + b); 10 | ` 11 | }, 12 | 'Adds number of assertions and has assertions check when given one expect statement in then': { 13 | snapshot: true, 14 | code: ` 15 | describe('.add', () => { 16 | it('resolves 1', async () => { 17 | Promise.resolve(1).then(value => expect(value).toBe(1)); 18 | }); 19 | 20 | it('resolves 1', async () => { 21 | Promise.resolve(1).then(value => { 22 | expect(value).toBe(1) 23 | }); 24 | }); 25 | }); 26 | ` 27 | }, 28 | 'Adds number of assertions and has assertions check when given one expect statement in catch': { 29 | snapshot: true, 30 | code: ` 31 | describe('.add', () => { 32 | it('rejects 1', async () => { 33 | Promise.reject(1).catch(value => expect(value).toBe(1)); 34 | }); 35 | 36 | it('rejects 1', async () => { 37 | Promise.reject(1).catch(value => { 38 | expect(value).toBe(1) 39 | }); 40 | }); 41 | }); 42 | ` 43 | }, 44 | 'Adds number of assertions and has assertions check when given multiple expect statement in try/catch when awaiting': { 45 | snapshot: true, 46 | code: ` 47 | describe('.add', () => { 48 | it('resolves 1', async () => { 49 | try { 50 | const value = await Promise.resolve(1); 51 | expect(value).toBe(1); 52 | } catch (e) { 53 | expect(true).toBe(false); 54 | } 55 | }); 56 | 57 | it('rejects 1', async () => { 58 | try { 59 | const value = await Promise.reject(1); 60 | expect(true).toBe(false); 61 | } catch (e) { 62 | expect(value).toBe(1); 63 | } 64 | }); 65 | }); 66 | ` 67 | }, 68 | 'Does not add expect.assertions when expect.assertions is supplied': { 69 | snapshot: true, 70 | code: ` 71 | describe('.add', () => { 72 | it('resolves 1', async () => { 73 | expect.assertions(1); 74 | try { 75 | const value = await Promise.resolve(1); 76 | expect(value).toBe(1); 77 | } catch (e) { 78 | expect(true).toBe(false); 79 | } 80 | }); 81 | }); 82 | ` 83 | }, 84 | 'Adds expect.assertions when expect.hasAssertions is supplied': { 85 | snapshot: true, 86 | code: ` 87 | describe('.add', () => { 88 | it('resolves 1', async () => { 89 | expect.hasAssertions(); 90 | try { 91 | const value = await Promise.resolve(1); 92 | expect(value).toBe(1); 93 | } catch (e) { 94 | expect(true).toBe(false); 95 | } 96 | }); 97 | }); 98 | ` 99 | }, 100 | 'Does not add expect.assertions when no assertions are supplied': { 101 | snapshot: true, 102 | code: ` 103 | describe('.add', () => { 104 | it('resolves 1', async () => { 105 | try { 106 | const value = await Promise.resolve(1); 107 | console.log(value); 108 | } catch (e) { 109 | console.log(e); 110 | } 111 | }); 112 | }); 113 | ` 114 | }, 115 | 'Does not count commented out expect statements': { 116 | snapshot: true, 117 | code: ` 118 | describe('.add', () => { 119 | it('resolves 1', async () => { 120 | // expect(add(1, 2)).toEqual(3); 121 | try { 122 | /* 123 | expect(add(4, 5).toEqual(9)); 124 | */ 125 | const value = await Promise.resolve(add(0, 1)); 126 | 127 | const a = 1; // expect(a).toEqual(1); 128 | const b = 2; /* expect(b).toEqual(2); */ 129 | 130 | expect(value).toEqual(1); 131 | // expect(value).toEqual(2); 132 | } catch (err) { 133 | /* 134 | expect(add(6, 1).toEqual(7)); 135 | */ 136 | } 137 | }); 138 | }); 139 | ` 140 | }, 141 | 'Handles expression functions': { 142 | snapshot: true, 143 | code: ` 144 | describe('.add', () => { 145 | it('returns 1 when given 0 and 1', async () => 146 | expect(add(1, 0)).toEqual(1)); 147 | }); 148 | ` 149 | }, 150 | 'Counts beforeEach in program node': { 151 | snapshot: true, 152 | code: ` 153 | beforeEach(() => { 154 | expect(true).toBeTrue(); 155 | }); 156 | it('returns 1 when given 0 and 1', async () => { 157 | expect(add(1, 0)).toEqual(1); 158 | }); 159 | ` 160 | }, 161 | 'Counts afterEach in program node': { 162 | snapshot: true, 163 | code: ` 164 | afterEach(() => { 165 | expect(true).toBeTrue(); 166 | }); 167 | it('returns 1 when given 0 and 1', async () => { 168 | expect(add(1, 0)).toEqual(1); 169 | }); 170 | ` 171 | }, 172 | 'Counts beforeEach in describe block': { 173 | snapshot: true, 174 | code: ` 175 | describe('.add', () => { 176 | beforeEach(() => { 177 | expect(true).toBeTrue(); 178 | }); 179 | it('returns 1 when given 0 and 1', async () => { 180 | expect(add(1, 0)).toEqual(1); 181 | }); 182 | }); 183 | ` 184 | }, 185 | 'Counts afterEach in describe block': { 186 | snapshot: true, 187 | code: ` 188 | describe('.add', () => { 189 | afterEach(() => { 190 | expect(true).toBeTrue(); 191 | }); 192 | it('returns 1 when given 0 and 1', async () => { 193 | expect(add(1, 0)).toEqual(1); 194 | }); 195 | }); 196 | ` 197 | }, 198 | 'Counts nested afterEach and beforeEach in describe block and program node': { 199 | snapshot: true, 200 | code: ` 201 | beforeEach(() => { 202 | expect(true).toBeTrue(); 203 | }); 204 | 205 | afterEach(() => { 206 | expect(true).toBeTrue(); 207 | }); 208 | 209 | describe('.add', () => { 210 | beforeEach(() => { 211 | expect(true).toBeTrue(); 212 | }); 213 | afterEach(() => { 214 | expect(true).toBeTrue(); 215 | }); 216 | it('returns 1 when given 0 and 1', async () => { 217 | expect(add(1, 0)).toEqual(1); 218 | }); 219 | }); 220 | ` 221 | }, 222 | 'Does not accumulate sibling blocks with afterEach and beforeEach hooks': { 223 | snapshot: true, 224 | code: ` 225 | describe('.add', () => { 226 | beforeEach(() => { 227 | expect(true).toBeTrue(); 228 | }); 229 | afterEach(() => { 230 | expect(true).toBeTrue(); 231 | }); 232 | it('returns 1 when given 0 and 1', async () => { 233 | expect(add(1, 0)).toEqual(1); 234 | }); 235 | }); 236 | 237 | describe('.add2', () => { 238 | beforeEach(() => { 239 | expect(true).toBeTrue(); 240 | }); 241 | afterEach(() => { 242 | expect(true).toBeTrue(); 243 | }); 244 | it('returns 1 when given 0 and 1', async () => { 245 | expect(add2(1, 0)).toEqual(1); 246 | }); 247 | }); 248 | ` 249 | }, 250 | 'Counts nested afterEach and beforeEach in describe blocks and program node': { 251 | snapshot: true, 252 | code: ` 253 | beforeEach(() => { 254 | expect(true).toBeTrue(); 255 | }); 256 | 257 | afterEach(() => { 258 | expect(true).toBeTrue(); 259 | }); 260 | 261 | describe('.add', () => { 262 | beforeEach(() => { 263 | expect(true).toBeTrue(); 264 | }); 265 | afterEach(() => { 266 | expect(true).toBeTrue(); 267 | }); 268 | it('returns 1 when given 0 and 1', async () => { 269 | expect(add2(1, 0)).toEqual(1); 270 | }); 271 | 272 | describe('.add', () => { 273 | beforeEach(() => { 274 | expect(true).toBeTrue(); 275 | }); 276 | afterEach(() => { 277 | expect(true).toBeTrue(); 278 | }); 279 | it('returns 1 when given 0 and 1', async () => { 280 | expect(add2(1, 0)).toEqual(1); 281 | }); 282 | }); 283 | }); 284 | ` 285 | } 286 | } 287 | }); 288 | -------------------------------------------------------------------------------- /src/sync.test.js: -------------------------------------------------------------------------------- 1 | const pluginTester = require('babel-plugin-tester'); 2 | const plugin = require('./'); 3 | 4 | pluginTester({ 5 | plugin, 6 | tests: { 7 | 'Does not modify code when not a test': { 8 | code: ` 9 | const add = (a, b) => a + b; 10 | ` 11 | }, 12 | 'Does not modify code given an inline value for function body': { 13 | code: ` 14 | describe('.add', () => { 15 | test('handles variables', noop); 16 | test('handles numbers', 1); 17 | test('handles booleans', true); 18 | test('handles objects', {}); 19 | test('handles arrays', []); 20 | test('handles maps', new Map()); 21 | test('handles sets', new Set()); 22 | test('handles symbols', Symbol('x')); 23 | test('handles undefined', undefined); 24 | test('handles strings', 'hello'); 25 | test('handles null', null); 26 | }); 27 | ` 28 | }, 29 | 'Does not modify code given an empty test placeholder': { 30 | code: ` 31 | describe('.add', () => { 32 | test('returns 3 when given 2 and 1'); 33 | }); 34 | ` 35 | }, 36 | 'Does not modify code given an empty ftest placeholder': { 37 | code: ` 38 | describe('.add', () => { 39 | ftest('returns 3 when given 2 and 1'); 40 | }); 41 | ` 42 | }, 43 | 'Does not modify code given an empty test.only placeholder': { 44 | code: ` 45 | describe('.add', () => { 46 | test.only('returns 3 when given 2 and 1'); 47 | }); 48 | ` 49 | }, 50 | 'Does not modify code given an empty it placeholder': { 51 | code: ` 52 | describe('.add', () => { 53 | it('returns 3 when given 2 and 1'); 54 | }); 55 | ` 56 | }, 57 | 'Does not modify code given an empty fit placeholder': { 58 | code: ` 59 | describe('.add', () => { 60 | fit('returns 3 when given 2 and 1'); 61 | }); 62 | ` 63 | }, 64 | 'Does not modify code given an empty it.only placeholder': { 65 | code: ` 66 | describe('.add', () => { 67 | it.only('returns 3 when given 2 and 1'); 68 | }); 69 | ` 70 | }, 71 | 'Adds number of assertions and has assertions check when given one expect statement': { 72 | snapshot: true, 73 | code: ` 74 | describe('.add', () => { 75 | it('returns 1 when given 0 and 1', () => { 76 | expect(add(0, 1)).toEqual(1); 77 | }); 78 | }); 79 | ` 80 | }, 81 | 'Adds total number of assertions when given multiple expect statements': { 82 | snapshot: true, 83 | code: ` 84 | describe('.add', () => { 85 | it('returns 1 when given 0 and 1', () => { 86 | expect(add(0, 1)).toEqual(1); 87 | expect(add(1, 0)).toEqual(1); 88 | }); 89 | }); 90 | ` 91 | }, 92 | 'Adds total number of assertions when given multiple expect statements in nested if scope': { 93 | snapshot: true, 94 | code: ` 95 | describe('.add', () => { 96 | it('returns 1 when given 0 and 1', () => { 97 | if (true) { 98 | expect(add(0, 1)).toEqual(1); 99 | } else if (false) { 100 | expect(add(1, 0)).toEqual(1); 101 | } 102 | }); 103 | }); 104 | ` 105 | }, 106 | 'Does not add expect.assertions when expect.assertions is supplied': { 107 | snapshot: true, 108 | code: ` 109 | describe('.add', () => { 110 | it('returns 1 when given 0 and 1', () => { 111 | expect.assertions(1); 112 | expect(add(0, 1)).toEqual(1); 113 | }); 114 | }); 115 | ` 116 | }, 117 | 'Adds expect.assertions when expect.hasAssertions is supplied': { 118 | snapshot: true, 119 | code: ` 120 | describe('.add', () => { 121 | it('returns 1 when given 0 and 1', () => { 122 | expect.hasAssertions(); 123 | expect(add(0, 1)).toEqual(1); 124 | }); 125 | }); 126 | ` 127 | }, 128 | 'Does not count commented out expect statements': { 129 | snapshot: true, 130 | code: ` 131 | describe('.add', () => { 132 | it('returns 1 when given 0 and 1', () => { 133 | // expect(add(1, 2)).toEqual(3); 134 | expect(add(0, 1)).toEqual(1); 135 | 136 | /* 137 | expect(add(4, 5).toEqual(9)); 138 | */ 139 | 140 | const a = 1; // expect(a).toEqual(1); 141 | const b = 2; /* expect(b).toEqual(2); */ 142 | 143 | expect(add(1, 0)).toEqual(1); 144 | /* 145 | expect(add(6, 1).toEqual(7)); 146 | */ 147 | }); 148 | }); 149 | ` 150 | }, 151 | 'Handles expression functions': { 152 | snapshot: true, 153 | code: ` 154 | describe('.add', () => { 155 | it('returns 1 when given 0 and 1', () => 156 | expect(add(1, 0)).toEqual(1)); 157 | }); 158 | ` 159 | }, 160 | 'Counts beforeEach in program node': { 161 | snapshot: true, 162 | code: ` 163 | beforeEach(() => { 164 | expect(true).toBeTrue(); 165 | }); 166 | it('returns 1 when given 0 and 1', () => { 167 | expect(add(1, 0)).toEqual(1); 168 | }); 169 | ` 170 | }, 171 | 'Counts afterEach in program node': { 172 | snapshot: true, 173 | code: ` 174 | afterEach(() => { 175 | expect(true).toBeTrue(); 176 | }); 177 | it('returns 1 when given 0 and 1', () => { 178 | expect(add(1, 0)).toEqual(1); 179 | }); 180 | ` 181 | }, 182 | 'Counts beforeEach in describe block': { 183 | snapshot: true, 184 | code: ` 185 | describe('.add', () => { 186 | beforeEach(() => { 187 | expect(true).toBeTrue(); 188 | }); 189 | it('returns 1 when given 0 and 1', () => { 190 | expect(add(1, 0)).toEqual(1); 191 | }); 192 | }); 193 | ` 194 | }, 195 | 'Counts afterEach in describe block': { 196 | snapshot: true, 197 | code: ` 198 | describe('.add', () => { 199 | afterEach(() => { 200 | expect(true).toBeTrue(); 201 | }); 202 | it('returns 1 when given 0 and 1', () => { 203 | expect(add(1, 0)).toEqual(1); 204 | }); 205 | }); 206 | ` 207 | }, 208 | 'Counts nested afterEach and beforeEach in describe block and program node': { 209 | snapshot: true, 210 | code: ` 211 | beforeEach(() => { 212 | expect(true).toBeTrue(); 213 | }); 214 | 215 | afterEach(() => { 216 | expect(true).toBeTrue(); 217 | }); 218 | 219 | describe('.add', () => { 220 | beforeEach(() => { 221 | expect(true).toBeTrue(); 222 | }); 223 | afterEach(() => { 224 | expect(true).toBeTrue(); 225 | }); 226 | it('returns 1 when given 0 and 1', () => { 227 | expect(add(1, 0)).toEqual(1); 228 | }); 229 | }); 230 | ` 231 | }, 232 | 'Does not accumulate sibling blocks with afterEach and beforeEach hooks': { 233 | snapshot: true, 234 | code: ` 235 | describe('.add', () => { 236 | beforeEach(() => { 237 | expect(true).toBeTrue(); 238 | }); 239 | afterEach(() => { 240 | expect(true).toBeTrue(); 241 | }); 242 | it('returns 1 when given 0 and 1', () => { 243 | expect(add(1, 0)).toEqual(1); 244 | }); 245 | }); 246 | 247 | describe('.add2', () => { 248 | beforeEach(() => { 249 | expect(true).toBeTrue(); 250 | }); 251 | afterEach(() => { 252 | expect(true).toBeTrue(); 253 | }); 254 | it('returns 1 when given 0 and 1', () => { 255 | expect(add2(1, 0)).toEqual(1); 256 | }); 257 | }); 258 | ` 259 | }, 260 | 'Counts nested afterEach and beforeEach in describe blocks and program node': { 261 | snapshot: true, 262 | code: ` 263 | beforeEach(() => { 264 | expect(true).toBeTrue(); 265 | }); 266 | 267 | afterEach(() => { 268 | expect(true).toBeTrue(); 269 | }); 270 | 271 | describe('.add', () => { 272 | beforeEach(() => { 273 | expect(true).toBeTrue(); 274 | }); 275 | afterEach(() => { 276 | expect(true).toBeTrue(); 277 | }); 278 | it('returns 1 when given 0 and 1', () => { 279 | expect(add2(1, 0)).toEqual(1); 280 | }); 281 | 282 | describe('.add', () => { 283 | beforeEach(() => { 284 | expect(true).toBeTrue(); 285 | }); 286 | afterEach(() => { 287 | expect(true).toBeTrue(); 288 | }); 289 | it('returns 1 when given 0 and 1', () => { 290 | expect(add2(1, 0)).toEqual(1); 291 | }); 292 | }); 293 | }); 294 | ` 295 | } 296 | } 297 | }); 298 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
2 |

babel-jest-assertions

3 | 4 | 🃏⁉️ 5 | 6 | Adds expect.assertions(n) and expect.hasAssertions to all tests automatically 7 |
8 | 9 |
10 | 11 | [![Build Status](https://img.shields.io/travis/mattphillips/babel-jest-assertions.svg?style=flat-square)](https://travis-ci.org/mattphillips/babel-jest-assertions) 12 | [![Code Coverage](https://img.shields.io/codecov/c/github/mattphillips/babel-jest-assertions.svg?style=flat-square)](https://codecov.io/github/mattphillips/babel-jest-assertions) 13 | [![version](https://img.shields.io/npm/v/babel-jest-assertions.svg?style=flat-square)](https://www.npmjs.com/package/babel-jest-assertions) 14 | [![downloads](https://img.shields.io/npm/dm/babel-jest-assertions.svg?style=flat-square)](http://npm-stat.com/charts.html?package=babel-jest-assertions&from=2017-09-14) 15 | [![MIT License](https://img.shields.io/npm/l/babel-jest-assertions.svg?style=flat-square)](https://github.com/mattphillips/babel-jest-assertions/blob/master/LICENSE) 16 | [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com) 17 | [![Roadmap](https://img.shields.io/badge/%F0%9F%93%94-roadmap-CD9523.svg?style=flat-square)](https://github.com/mattphillips/babel-jest-assertions/blob/master/docs/ROADMAP.md) 18 | [![Examples](https://img.shields.io/badge/%F0%9F%92%A1-examples-ff615b.svg?style=flat-square)](https://github.com/mattphillips/babel-jest-assertions/blob/master/docs/EXAMPLES.md) 19 | 20 | ## Problem 21 | 22 | Ever wondered if your tests are actually running their assertions, especially in asynchronous tests? Jest has two features 23 | built in to help with this: [`expect.assertions(number)`](https://facebook.github.io/jest/docs/en/expect.html#expectassertionsnumber) 24 | and [`expect.hasAssertions()`](https://facebook.github.io/jest/docs/en/expect.html#expecthasassertions). These can be 25 | useful when doing something like: 26 | 27 | ```js 28 | it('resolves to one', () => { 29 | Promise.reject(1).then(value => expect(value).toBe(1)); 30 | }); 31 | ``` 32 | 33 | The issue here is the `catch` case is not dealt with in this test, _which is fine as we are testing the happy path_, 34 | but this test will currently pass even though the `Promise` rejects and the assertion is never ran. 35 | 36 | ## Solution 37 | 38 | One solution is to manually adjust the above test to include `expect.assertions(number)` and `expect.hasAssertions()` 39 | this is quite verbose and prone to human error. 40 | 41 | An alternative is a babel plugin to automate adding these additional properties, and this is such plugin 😉 42 | 43 | ## Installation 44 | 45 | With npm: 46 | ```sh 47 | npm install --save-dev babel-jest-assertions 48 | ``` 49 | 50 | With yarn: 51 | ```sh 52 | yarn add -D babel-jest-assertions 53 | ``` 54 | 55 | ## Setup 56 | 57 | ### .babelrc 58 | 59 | ```json 60 | { 61 | "plugins": ["babel-jest-assertions"] 62 | } 63 | ``` 64 | 65 | ### CLI 66 | 67 | ```sh 68 | babel --plugins babel-jest-assertions script.js 69 | ``` 70 | 71 | ### Node 72 | 73 | ```javascript 74 | require('babel-core').transform('code', { 75 | plugins: ['babel-jest-assertions'], 76 | }) 77 | ``` 78 | 79 | ## Usage 80 | 81 | Simply write your tests as you would normally and this plugin will add the verification of assertions in the background. 82 | 83 | **One assertion** 84 | ```js 85 | it('resolves to one', () => { 86 | Promise.reject(1).then(value => expect(value).toBe(1)); 87 | }); 88 | ``` 89 | 90 | `↓ ↓ ↓ ↓ ↓ ↓` 91 | 92 | ```js 93 | it('resolves to one', () => { 94 | expect.hasAssertions(); 95 | expect.assertions(1); 96 | Promise.reject(1).then(value => expect(value).toBe(1)); 97 | }); 98 | ``` 99 | _Note_: this test will now fail 🎉 100 | 101 | **Multiple assertions** 102 | ```js 103 | it('counts multiple assertions too', () => { 104 | expect(1 + 0).toBe(1); 105 | expect(0 + 1).toBe(1); 106 | }); 107 | ``` 108 | 109 | `↓ ↓ ↓ ↓ ↓ ↓` 110 | 111 | ```js 112 | it('counts multiple assertions too', () => { 113 | expect.hasAssertions(); 114 | expect.assertions(2); 115 | expect(1 + 0).toBe(1); 116 | expect(0 + 1).toBe(1); 117 | }); 118 | ``` 119 | 120 | **Asynchronous assertions** 121 | ```js 122 | it('counts multiple assertions too', async () => { 123 | const res = await fetch('www.example.com'); 124 | expect(res.json).toBeTruthy(); 125 | const json = await res.json(); 126 | expect(json).toEqual({ whatever: 'trevor' }); 127 | }); 128 | ``` 129 | 130 | `↓ ↓ ↓ ↓ ↓ ↓` 131 | 132 | ```js 133 | it('counts multiple assertions too', async () => { 134 | expect.hasAssertions(); 135 | expect.assertions(2); 136 | const res = await fetch('www.example.com'); 137 | expect(res.json).toBeTruthy(); 138 | const json = await res.json(); 139 | expect(json).toEqual({ whatever: 'trevor' }); 140 | }); 141 | ``` 142 | 143 | **beforeEach and afterEach blocks** 144 | 145 | If you have expectations inside either of `beforeEach` or `afterEach` blocks for your test then these expects will be 146 | included in the count - even if you have nested describe blocks each with their own `beforeEach`/`afterEach` the count 147 | will accumulate. 148 | 149 | ```js 150 | beforeEach(() => { 151 | expect(true).toBe(true); 152 | }); 153 | 154 | afterEach(() => { 155 | expect(true).toBe(true); 156 | }); 157 | 158 | describe('.add', () => { 159 | beforeEach(() => { 160 | expect(true).toBe(true); 161 | }); 162 | afterEach(() => { 163 | expect(true).toBe(true); 164 | }); 165 | it('returns 1 when given 0 and 1', () => { 166 | expect(add(1, 0)).toEqual(1); 167 | }); 168 | 169 | describe('.add2', () => { 170 | beforeEach(() => { 171 | expect(true).toBe(true); 172 | }); 173 | afterEach(() => { 174 | expect(true).toBe(true); 175 | }); 176 | it('returns 1 when given 0 and 1', () => { 177 | expect(add2(1, 0)).toEqual(1); 178 | }); 179 | }); 180 | }); 181 | 182 | ↓ ↓ ↓ ↓ ↓ ↓ 183 | 184 | beforeEach(() => { 185 | expect(true).toBe(true); 186 | }); 187 | 188 | afterEach(() => { 189 | expect(true).toBe(true); 190 | }); 191 | 192 | describe('.add', () => { 193 | beforeEach(() => { 194 | expect(true).toBe(true); 195 | }); 196 | afterEach(() => { 197 | expect(true).toBe(true); 198 | }); 199 | it('returns 1 when given 0 and 1', () => { 200 | expect.assertions(5); 201 | expect.hasAssertions(); 202 | 203 | expect(add2(1, 0)).toEqual(1); 204 | }); 205 | 206 | describe('.add2', () => { 207 | beforeEach(() => { 208 | expect(true).toBe(true); 209 | }); 210 | afterEach(() => { 211 | expect(true).toBe(true); 212 | }); 213 | it('returns 1 when given 0 and 1', () => { 214 | expect.assertions(7); 215 | expect.hasAssertions(); 216 | 217 | expect(add2(1, 0)).toEqual(1); 218 | }); 219 | }); 220 | }); 221 | ``` 222 | 223 | **Comments are ignored** 224 | ```js 225 | it('ignores commented-out assertions', async () => { 226 | const res = await fetch('www.example.com'); 227 | // expect(res.json).toBeTruthy(); 228 | const json = await res.json(); 229 | /* 230 | expect(json).toEqual({ whatever: 'trevor1' }); 231 | */ 232 | expect(json).toEqual({ whatever: 'trevor' }); 233 | /* expect(json).toEqual({ whatever: 'trevor2' }); */ 234 | }); 235 | ``` 236 | 237 | `↓ ↓ ↓ ↓ ↓ ↓` 238 | 239 | ```js 240 | it('counts multiple assertions too', async () => { 241 | expect.hasAssertions(); 242 | expect.assertions(1); 243 | const res = await fetch('www.example.com'); 244 | // expect(res.json).toBeTruthy(); 245 | const json = await res.json(); 246 | /* 247 | expect(json).toEqual({ whatever: 'trevor1' }); 248 | */ 249 | expect(json).toEqual({ whatever: 'trevor' }); 250 | /* expect(json).toEqual({ whatever: 'trevor2' }); */ 251 | }); 252 | ``` 253 | 254 | ### Override 255 | 256 | If you add either `expect.assertions(number)` or `expect.hasAssertions()` then your defaults will be favoured and the 257 | plugin will skip the test. 258 | 259 | ```js 260 | it('will leave test as override supplied', () => { 261 | expect.hasAssertions(); 262 | expect.assertions(1); 263 | 264 | if (true) { 265 | expect(true).toBe(true); 266 | } 267 | 268 | if (false) { 269 | expect(false).toBe(false); 270 | } 271 | }); 272 | ``` 273 | 274 | `↓ ↓ ↓ ↓ ↓ ↓` 275 | 276 | ```js 277 | it('will leave test as override supplied', () => { 278 | expect.hasAssertions(); 279 | expect.assertions(1); 280 | 281 | if (true) { 282 | expect(true).toBe(true); 283 | } 284 | 285 | if (false) { 286 | expect(false).toBe(false); 287 | } 288 | }); 289 | ``` 290 | 291 | ## Contributors 292 | 293 | 294 | | [
Matt Phillips](http://mattphillips.io)
[💻](https://github.com/mattphillips/babel-jest-assertions/commits?author=mattphillips "Code") [📖](https://github.com/mattphillips/babel-jest-assertions/commits?author=mattphillips "Documentation") [🚇](#infra-mattphillips "Infrastructure (Hosting, Build-Tools, etc)") [⚠️](https://github.com/mattphillips/babel-jest-assertions/commits?author=mattphillips "Tests") | [
Ramesh Nair](https://hiddentao.com/)
[💻](https://github.com/mattphillips/babel-jest-assertions/commits?author=hiddentao "Code") [📖](https://github.com/mattphillips/babel-jest-assertions/commits?author=hiddentao "Documentation") [💡](#example-hiddentao "Examples") [⚠️](https://github.com/mattphillips/babel-jest-assertions/commits?author=hiddentao "Tests") | [
Huy Nguyen](https://www.huy-nguyen.com/)
[🐛](https://github.com/mattphillips/babel-jest-assertions/issues?q=author%3Ahuy-nguyen "Bug reports") | [
Simon Boudrias](http://simonboudrias.com)
[🐛](https://github.com/mattphillips/babel-jest-assertions/issues?q=author%3ASBoudrias "Bug reports") | [
Giuseppe](http://giuseppe.pizza)
[🤔](#ideas-giuseppeg "Ideas, Planning, & Feedback") | 295 | | :---: | :---: | :---: | :---: | :---: | 296 | 297 | 298 | ## LICENSE 299 | 300 | MIT 301 | -------------------------------------------------------------------------------- /src/__snapshots__/sync.test.js.snap: -------------------------------------------------------------------------------- 1 | // Jest Snapshot v1, https://goo.gl/fbAQLP 2 | 3 | exports[`Adds expect.assertions when expect.hasAssertions is supplied 1`] = ` 4 | " 5 | describe('.add', () => { 6 | it('returns 1 when given 0 and 1', () => { 7 | expect.hasAssertions(); 8 | expect(add(0, 1)).toEqual(1); 9 | }); 10 | }); 11 | 12 | ↓ ↓ ↓ ↓ ↓ ↓ 13 | 14 | describe('.add', () => { 15 | it('returns 1 when given 0 and 1', () => { 16 | expect.assertions(1); 17 | 18 | expect.hasAssertions(); 19 | expect(add(0, 1)).toEqual(1); 20 | }); 21 | }); 22 | " 23 | `; 24 | 25 | exports[`Adds number of assertions and has assertions check when given one expect statement 1`] = ` 26 | " 27 | describe('.add', () => { 28 | it('returns 1 when given 0 and 1', () => { 29 | expect(add(0, 1)).toEqual(1); 30 | }); 31 | }); 32 | 33 | ↓ ↓ ↓ ↓ ↓ ↓ 34 | 35 | describe('.add', () => { 36 | it('returns 1 when given 0 and 1', () => { 37 | expect.assertions(1); 38 | expect.hasAssertions(); 39 | 40 | expect(add(0, 1)).toEqual(1); 41 | }); 42 | }); 43 | " 44 | `; 45 | 46 | exports[`Adds total number of assertions when given multiple expect statements 1`] = ` 47 | " 48 | describe('.add', () => { 49 | it('returns 1 when given 0 and 1', () => { 50 | expect(add(0, 1)).toEqual(1); 51 | expect(add(1, 0)).toEqual(1); 52 | }); 53 | }); 54 | 55 | ↓ ↓ ↓ ↓ ↓ ↓ 56 | 57 | describe('.add', () => { 58 | it('returns 1 when given 0 and 1', () => { 59 | expect.assertions(2); 60 | expect.hasAssertions(); 61 | 62 | expect(add(0, 1)).toEqual(1); 63 | expect(add(1, 0)).toEqual(1); 64 | }); 65 | }); 66 | " 67 | `; 68 | 69 | exports[`Adds total number of assertions when given multiple expect statements in nested if scope 1`] = ` 70 | " 71 | describe('.add', () => { 72 | it('returns 1 when given 0 and 1', () => { 73 | if (true) { 74 | expect(add(0, 1)).toEqual(1); 75 | } else if (false) { 76 | expect(add(1, 0)).toEqual(1); 77 | } 78 | }); 79 | }); 80 | 81 | ↓ ↓ ↓ ↓ ↓ ↓ 82 | 83 | describe('.add', () => { 84 | it('returns 1 when given 0 and 1', () => { 85 | expect.assertions(2); 86 | expect.hasAssertions(); 87 | 88 | if (true) { 89 | expect(add(0, 1)).toEqual(1); 90 | } else if (false) { 91 | expect(add(1, 0)).toEqual(1); 92 | } 93 | }); 94 | }); 95 | " 96 | `; 97 | 98 | exports[`Counts afterEach in describe block 1`] = ` 99 | " 100 | describe('.add', () => { 101 | afterEach(() => { 102 | expect(true).toBeTrue(); 103 | }); 104 | it('returns 1 when given 0 and 1', () => { 105 | expect(add(1, 0)).toEqual(1); 106 | }); 107 | }); 108 | 109 | ↓ ↓ ↓ ↓ ↓ ↓ 110 | 111 | describe('.add', () => { 112 | afterEach(() => { 113 | expect(true).toBeTrue(); 114 | }); 115 | it('returns 1 when given 0 and 1', () => { 116 | expect.assertions(2); 117 | expect.hasAssertions(); 118 | 119 | expect(add(1, 0)).toEqual(1); 120 | }); 121 | }); 122 | " 123 | `; 124 | 125 | exports[`Counts afterEach in program node 1`] = ` 126 | " 127 | afterEach(() => { 128 | expect(true).toBeTrue(); 129 | }); 130 | it('returns 1 when given 0 and 1', () => { 131 | expect(add(1, 0)).toEqual(1); 132 | }); 133 | 134 | ↓ ↓ ↓ ↓ ↓ ↓ 135 | 136 | afterEach(() => { 137 | expect(true).toBeTrue(); 138 | }); 139 | it('returns 1 when given 0 and 1', () => { 140 | expect.assertions(2); 141 | expect.hasAssertions(); 142 | 143 | expect(add(1, 0)).toEqual(1); 144 | }); 145 | " 146 | `; 147 | 148 | exports[`Counts beforeEach in describe block 1`] = ` 149 | " 150 | describe('.add', () => { 151 | beforeEach(() => { 152 | expect(true).toBeTrue(); 153 | }); 154 | it('returns 1 when given 0 and 1', () => { 155 | expect(add(1, 0)).toEqual(1); 156 | }); 157 | }); 158 | 159 | ↓ ↓ ↓ ↓ ↓ ↓ 160 | 161 | describe('.add', () => { 162 | beforeEach(() => { 163 | expect(true).toBeTrue(); 164 | }); 165 | it('returns 1 when given 0 and 1', () => { 166 | expect.assertions(2); 167 | expect.hasAssertions(); 168 | 169 | expect(add(1, 0)).toEqual(1); 170 | }); 171 | }); 172 | " 173 | `; 174 | 175 | exports[`Counts beforeEach in program node 1`] = ` 176 | " 177 | beforeEach(() => { 178 | expect(true).toBeTrue(); 179 | }); 180 | it('returns 1 when given 0 and 1', () => { 181 | expect(add(1, 0)).toEqual(1); 182 | }); 183 | 184 | ↓ ↓ ↓ ↓ ↓ ↓ 185 | 186 | beforeEach(() => { 187 | expect(true).toBeTrue(); 188 | }); 189 | it('returns 1 when given 0 and 1', () => { 190 | expect.assertions(2); 191 | expect.hasAssertions(); 192 | 193 | expect(add(1, 0)).toEqual(1); 194 | }); 195 | " 196 | `; 197 | 198 | exports[`Counts nested afterEach and beforeEach in describe block and program node 1`] = ` 199 | " 200 | beforeEach(() => { 201 | expect(true).toBeTrue(); 202 | }); 203 | 204 | afterEach(() => { 205 | expect(true).toBeTrue(); 206 | }); 207 | 208 | describe('.add', () => { 209 | beforeEach(() => { 210 | expect(true).toBeTrue(); 211 | }); 212 | afterEach(() => { 213 | expect(true).toBeTrue(); 214 | }); 215 | it('returns 1 when given 0 and 1', () => { 216 | expect(add(1, 0)).toEqual(1); 217 | }); 218 | }); 219 | 220 | ↓ ↓ ↓ ↓ ↓ ↓ 221 | 222 | beforeEach(() => { 223 | expect(true).toBeTrue(); 224 | }); 225 | 226 | afterEach(() => { 227 | expect(true).toBeTrue(); 228 | }); 229 | 230 | describe('.add', () => { 231 | beforeEach(() => { 232 | expect(true).toBeTrue(); 233 | }); 234 | afterEach(() => { 235 | expect(true).toBeTrue(); 236 | }); 237 | it('returns 1 when given 0 and 1', () => { 238 | expect.assertions(5); 239 | expect.hasAssertions(); 240 | 241 | expect(add(1, 0)).toEqual(1); 242 | }); 243 | }); 244 | " 245 | `; 246 | 247 | exports[`Counts nested afterEach and beforeEach in describe blocks and program node 1`] = ` 248 | " 249 | beforeEach(() => { 250 | expect(true).toBeTrue(); 251 | }); 252 | 253 | afterEach(() => { 254 | expect(true).toBeTrue(); 255 | }); 256 | 257 | describe('.add', () => { 258 | beforeEach(() => { 259 | expect(true).toBeTrue(); 260 | }); 261 | afterEach(() => { 262 | expect(true).toBeTrue(); 263 | }); 264 | it('returns 1 when given 0 and 1', () => { 265 | expect(add2(1, 0)).toEqual(1); 266 | }); 267 | 268 | describe('.add', () => { 269 | beforeEach(() => { 270 | expect(true).toBeTrue(); 271 | }); 272 | afterEach(() => { 273 | expect(true).toBeTrue(); 274 | }); 275 | it('returns 1 when given 0 and 1', () => { 276 | expect(add2(1, 0)).toEqual(1); 277 | }); 278 | }); 279 | }); 280 | 281 | ↓ ↓ ↓ ↓ ↓ ↓ 282 | 283 | beforeEach(() => { 284 | expect(true).toBeTrue(); 285 | }); 286 | 287 | afterEach(() => { 288 | expect(true).toBeTrue(); 289 | }); 290 | 291 | describe('.add', () => { 292 | beforeEach(() => { 293 | expect(true).toBeTrue(); 294 | }); 295 | afterEach(() => { 296 | expect(true).toBeTrue(); 297 | }); 298 | it('returns 1 when given 0 and 1', () => { 299 | expect.assertions(5); 300 | expect.hasAssertions(); 301 | 302 | expect(add2(1, 0)).toEqual(1); 303 | }); 304 | 305 | describe('.add', () => { 306 | beforeEach(() => { 307 | expect(true).toBeTrue(); 308 | }); 309 | afterEach(() => { 310 | expect(true).toBeTrue(); 311 | }); 312 | it('returns 1 when given 0 and 1', () => { 313 | expect.assertions(7); 314 | expect.hasAssertions(); 315 | 316 | expect(add2(1, 0)).toEqual(1); 317 | }); 318 | }); 319 | }); 320 | " 321 | `; 322 | 323 | exports[`Does not accumulate sibling blocks with afterEach and beforeEach hooks 1`] = ` 324 | " 325 | describe('.add', () => { 326 | beforeEach(() => { 327 | expect(true).toBeTrue(); 328 | }); 329 | afterEach(() => { 330 | expect(true).toBeTrue(); 331 | }); 332 | it('returns 1 when given 0 and 1', () => { 333 | expect(add(1, 0)).toEqual(1); 334 | }); 335 | }); 336 | 337 | describe('.add2', () => { 338 | beforeEach(() => { 339 | expect(true).toBeTrue(); 340 | }); 341 | afterEach(() => { 342 | expect(true).toBeTrue(); 343 | }); 344 | it('returns 1 when given 0 and 1', () => { 345 | expect(add2(1, 0)).toEqual(1); 346 | }); 347 | }); 348 | 349 | ↓ ↓ ↓ ↓ ↓ ↓ 350 | 351 | describe('.add', () => { 352 | beforeEach(() => { 353 | expect(true).toBeTrue(); 354 | }); 355 | afterEach(() => { 356 | expect(true).toBeTrue(); 357 | }); 358 | it('returns 1 when given 0 and 1', () => { 359 | expect.assertions(3); 360 | expect.hasAssertions(); 361 | 362 | expect(add(1, 0)).toEqual(1); 363 | }); 364 | }); 365 | 366 | describe('.add2', () => { 367 | beforeEach(() => { 368 | expect(true).toBeTrue(); 369 | }); 370 | afterEach(() => { 371 | expect(true).toBeTrue(); 372 | }); 373 | it('returns 1 when given 0 and 1', () => { 374 | expect.assertions(3); 375 | expect.hasAssertions(); 376 | 377 | expect(add2(1, 0)).toEqual(1); 378 | }); 379 | }); 380 | " 381 | `; 382 | 383 | exports[`Does not add expect.assertions when expect.assertions is supplied 1`] = ` 384 | " 385 | describe('.add', () => { 386 | it('returns 1 when given 0 and 1', () => { 387 | expect.assertions(1); 388 | expect(add(0, 1)).toEqual(1); 389 | }); 390 | }); 391 | 392 | ↓ ↓ ↓ ↓ ↓ ↓ 393 | 394 | describe('.add', () => { 395 | it('returns 1 when given 0 and 1', () => { 396 | expect.hasAssertions(); 397 | 398 | expect.assertions(1); 399 | expect(add(0, 1)).toEqual(1); 400 | }); 401 | }); 402 | " 403 | `; 404 | 405 | exports[`Does not count commented out expect statements 1`] = ` 406 | " 407 | describe('.add', () => { 408 | it('returns 1 when given 0 and 1', () => { 409 | // expect(add(1, 2)).toEqual(3); 410 | expect(add(0, 1)).toEqual(1); 411 | 412 | /* 413 | expect(add(4, 5).toEqual(9)); 414 | */ 415 | 416 | const a = 1; // expect(a).toEqual(1); 417 | const b = 2; /* expect(b).toEqual(2); */ 418 | 419 | expect(add(1, 0)).toEqual(1); 420 | /* 421 | expect(add(6, 1).toEqual(7)); 422 | */ 423 | }); 424 | }); 425 | 426 | ↓ ↓ ↓ ↓ ↓ ↓ 427 | 428 | describe('.add', () => { 429 | it('returns 1 when given 0 and 1', () => { 430 | expect.assertions(2); 431 | expect.hasAssertions(); 432 | 433 | // expect(add(1, 2)).toEqual(3); 434 | expect(add(0, 1)).toEqual(1); 435 | 436 | /* 437 | expect(add(4, 5).toEqual(9)); 438 | */ 439 | 440 | const a = 1; // expect(a).toEqual(1); 441 | const b = 2; /* expect(b).toEqual(2); */ 442 | 443 | expect(add(1, 0)).toEqual(1); 444 | /* 445 | expect(add(6, 1).toEqual(7)); 446 | */ 447 | }); 448 | }); 449 | " 450 | `; 451 | 452 | exports[`Handles expression functions 1`] = ` 453 | " 454 | describe('.add', () => { 455 | it('returns 1 when given 0 and 1', () => 456 | expect(add(1, 0)).toEqual(1)); 457 | }); 458 | 459 | ↓ ↓ ↓ ↓ ↓ ↓ 460 | 461 | describe('.add', () => { 462 | it('returns 1 when given 0 and 1', () => { 463 | expect.assertions(1); 464 | expect.hasAssertions(); 465 | return expect(add(1, 0)).toEqual(1); 466 | }); 467 | }); 468 | " 469 | `; 470 | -------------------------------------------------------------------------------- /src/__snapshots__/async.test.js.snap: -------------------------------------------------------------------------------- 1 | // Jest Snapshot v1, https://goo.gl/fbAQLP 2 | 3 | exports[`Adds expect.assertions when expect.hasAssertions is supplied 1`] = ` 4 | " 5 | describe('.add', () => { 6 | it('resolves 1', async () => { 7 | expect.hasAssertions(); 8 | try { 9 | const value = await Promise.resolve(1); 10 | expect(value).toBe(1); 11 | } catch (e) { 12 | expect(true).toBe(false); 13 | } 14 | }); 15 | }); 16 | 17 | ↓ ↓ ↓ ↓ ↓ ↓ 18 | 19 | describe('.add', () => { 20 | it('resolves 1', async () => { 21 | expect.assertions(2); 22 | 23 | expect.hasAssertions(); 24 | try { 25 | const value = await Promise.resolve(1); 26 | expect(value).toBe(1); 27 | } catch (e) { 28 | expect(true).toBe(false); 29 | } 30 | }); 31 | }); 32 | " 33 | `; 34 | 35 | exports[`Adds number of assertions and has assertions check when given multiple expect statement in try/catch when awaiting 1`] = ` 36 | " 37 | describe('.add', () => { 38 | it('resolves 1', async () => { 39 | try { 40 | const value = await Promise.resolve(1); 41 | expect(value).toBe(1); 42 | } catch (e) { 43 | expect(true).toBe(false); 44 | } 45 | }); 46 | 47 | it('rejects 1', async () => { 48 | try { 49 | const value = await Promise.reject(1); 50 | expect(true).toBe(false); 51 | } catch (e) { 52 | expect(value).toBe(1); 53 | } 54 | }); 55 | }); 56 | 57 | ↓ ↓ ↓ ↓ ↓ ↓ 58 | 59 | describe('.add', () => { 60 | it('resolves 1', async () => { 61 | expect.assertions(2); 62 | expect.hasAssertions(); 63 | 64 | try { 65 | const value = await Promise.resolve(1); 66 | expect(value).toBe(1); 67 | } catch (e) { 68 | expect(true).toBe(false); 69 | } 70 | }); 71 | 72 | it('rejects 1', async () => { 73 | expect.assertions(2); 74 | expect.hasAssertions(); 75 | 76 | try { 77 | const value = await Promise.reject(1); 78 | expect(true).toBe(false); 79 | } catch (e) { 80 | expect(value).toBe(1); 81 | } 82 | }); 83 | }); 84 | " 85 | `; 86 | 87 | exports[`Adds number of assertions and has assertions check when given one expect statement in catch 1`] = ` 88 | " 89 | describe('.add', () => { 90 | it('rejects 1', async () => { 91 | Promise.reject(1).catch(value => expect(value).toBe(1)); 92 | }); 93 | 94 | it('rejects 1', async () => { 95 | Promise.reject(1).catch(value => { 96 | expect(value).toBe(1) 97 | }); 98 | }); 99 | }); 100 | 101 | ↓ ↓ ↓ ↓ ↓ ↓ 102 | 103 | describe('.add', () => { 104 | it('rejects 1', async () => { 105 | expect.assertions(1); 106 | expect.hasAssertions(); 107 | 108 | Promise.reject(1).catch(value => expect(value).toBe(1)); 109 | }); 110 | 111 | it('rejects 1', async () => { 112 | expect.assertions(1); 113 | expect.hasAssertions(); 114 | 115 | Promise.reject(1).catch(value => { 116 | expect(value).toBe(1); 117 | }); 118 | }); 119 | }); 120 | " 121 | `; 122 | 123 | exports[`Adds number of assertions and has assertions check when given one expect statement in then 1`] = ` 124 | " 125 | describe('.add', () => { 126 | it('resolves 1', async () => { 127 | Promise.resolve(1).then(value => expect(value).toBe(1)); 128 | }); 129 | 130 | it('resolves 1', async () => { 131 | Promise.resolve(1).then(value => { 132 | expect(value).toBe(1) 133 | }); 134 | }); 135 | }); 136 | 137 | ↓ ↓ ↓ ↓ ↓ ↓ 138 | 139 | describe('.add', () => { 140 | it('resolves 1', async () => { 141 | expect.assertions(1); 142 | expect.hasAssertions(); 143 | 144 | Promise.resolve(1).then(value => expect(value).toBe(1)); 145 | }); 146 | 147 | it('resolves 1', async () => { 148 | expect.assertions(1); 149 | expect.hasAssertions(); 150 | 151 | Promise.resolve(1).then(value => { 152 | expect(value).toBe(1); 153 | }); 154 | }); 155 | }); 156 | " 157 | `; 158 | 159 | exports[`Counts afterEach in describe block 1`] = ` 160 | " 161 | describe('.add', () => { 162 | afterEach(() => { 163 | expect(true).toBeTrue(); 164 | }); 165 | it('returns 1 when given 0 and 1', async () => { 166 | expect(add(1, 0)).toEqual(1); 167 | }); 168 | }); 169 | 170 | ↓ ↓ ↓ ↓ ↓ ↓ 171 | 172 | describe('.add', () => { 173 | afterEach(() => { 174 | expect(true).toBeTrue(); 175 | }); 176 | it('returns 1 when given 0 and 1', async () => { 177 | expect.assertions(2); 178 | expect.hasAssertions(); 179 | 180 | expect(add(1, 0)).toEqual(1); 181 | }); 182 | }); 183 | " 184 | `; 185 | 186 | exports[`Counts afterEach in program node 1`] = ` 187 | " 188 | afterEach(() => { 189 | expect(true).toBeTrue(); 190 | }); 191 | it('returns 1 when given 0 and 1', async () => { 192 | expect(add(1, 0)).toEqual(1); 193 | }); 194 | 195 | ↓ ↓ ↓ ↓ ↓ ↓ 196 | 197 | afterEach(() => { 198 | expect(true).toBeTrue(); 199 | }); 200 | it('returns 1 when given 0 and 1', async () => { 201 | expect.assertions(2); 202 | expect.hasAssertions(); 203 | 204 | expect(add(1, 0)).toEqual(1); 205 | }); 206 | " 207 | `; 208 | 209 | exports[`Counts beforeEach in describe block 1`] = ` 210 | " 211 | describe('.add', () => { 212 | beforeEach(() => { 213 | expect(true).toBeTrue(); 214 | }); 215 | it('returns 1 when given 0 and 1', async () => { 216 | expect(add(1, 0)).toEqual(1); 217 | }); 218 | }); 219 | 220 | ↓ ↓ ↓ ↓ ↓ ↓ 221 | 222 | describe('.add', () => { 223 | beforeEach(() => { 224 | expect(true).toBeTrue(); 225 | }); 226 | it('returns 1 when given 0 and 1', async () => { 227 | expect.assertions(2); 228 | expect.hasAssertions(); 229 | 230 | expect(add(1, 0)).toEqual(1); 231 | }); 232 | }); 233 | " 234 | `; 235 | 236 | exports[`Counts beforeEach in program node 1`] = ` 237 | " 238 | beforeEach(() => { 239 | expect(true).toBeTrue(); 240 | }); 241 | it('returns 1 when given 0 and 1', async () => { 242 | expect(add(1, 0)).toEqual(1); 243 | }); 244 | 245 | ↓ ↓ ↓ ↓ ↓ ↓ 246 | 247 | beforeEach(() => { 248 | expect(true).toBeTrue(); 249 | }); 250 | it('returns 1 when given 0 and 1', async () => { 251 | expect.assertions(2); 252 | expect.hasAssertions(); 253 | 254 | expect(add(1, 0)).toEqual(1); 255 | }); 256 | " 257 | `; 258 | 259 | exports[`Counts nested afterEach and beforeEach in describe block and program node 1`] = ` 260 | " 261 | beforeEach(() => { 262 | expect(true).toBeTrue(); 263 | }); 264 | 265 | afterEach(() => { 266 | expect(true).toBeTrue(); 267 | }); 268 | 269 | describe('.add', () => { 270 | beforeEach(() => { 271 | expect(true).toBeTrue(); 272 | }); 273 | afterEach(() => { 274 | expect(true).toBeTrue(); 275 | }); 276 | it('returns 1 when given 0 and 1', async () => { 277 | expect(add(1, 0)).toEqual(1); 278 | }); 279 | }); 280 | 281 | ↓ ↓ ↓ ↓ ↓ ↓ 282 | 283 | beforeEach(() => { 284 | expect(true).toBeTrue(); 285 | }); 286 | 287 | afterEach(() => { 288 | expect(true).toBeTrue(); 289 | }); 290 | 291 | describe('.add', () => { 292 | beforeEach(() => { 293 | expect(true).toBeTrue(); 294 | }); 295 | afterEach(() => { 296 | expect(true).toBeTrue(); 297 | }); 298 | it('returns 1 when given 0 and 1', async () => { 299 | expect.assertions(5); 300 | expect.hasAssertions(); 301 | 302 | expect(add(1, 0)).toEqual(1); 303 | }); 304 | }); 305 | " 306 | `; 307 | 308 | exports[`Counts nested afterEach and beforeEach in describe blocks and program node 1`] = ` 309 | " 310 | beforeEach(() => { 311 | expect(true).toBeTrue(); 312 | }); 313 | 314 | afterEach(() => { 315 | expect(true).toBeTrue(); 316 | }); 317 | 318 | describe('.add', () => { 319 | beforeEach(() => { 320 | expect(true).toBeTrue(); 321 | }); 322 | afterEach(() => { 323 | expect(true).toBeTrue(); 324 | }); 325 | it('returns 1 when given 0 and 1', async () => { 326 | expect(add2(1, 0)).toEqual(1); 327 | }); 328 | 329 | describe('.add', () => { 330 | beforeEach(() => { 331 | expect(true).toBeTrue(); 332 | }); 333 | afterEach(() => { 334 | expect(true).toBeTrue(); 335 | }); 336 | it('returns 1 when given 0 and 1', async () => { 337 | expect(add2(1, 0)).toEqual(1); 338 | }); 339 | }); 340 | }); 341 | 342 | ↓ ↓ ↓ ↓ ↓ ↓ 343 | 344 | beforeEach(() => { 345 | expect(true).toBeTrue(); 346 | }); 347 | 348 | afterEach(() => { 349 | expect(true).toBeTrue(); 350 | }); 351 | 352 | describe('.add', () => { 353 | beforeEach(() => { 354 | expect(true).toBeTrue(); 355 | }); 356 | afterEach(() => { 357 | expect(true).toBeTrue(); 358 | }); 359 | it('returns 1 when given 0 and 1', async () => { 360 | expect.assertions(5); 361 | expect.hasAssertions(); 362 | 363 | expect(add2(1, 0)).toEqual(1); 364 | }); 365 | 366 | describe('.add', () => { 367 | beforeEach(() => { 368 | expect(true).toBeTrue(); 369 | }); 370 | afterEach(() => { 371 | expect(true).toBeTrue(); 372 | }); 373 | it('returns 1 when given 0 and 1', async () => { 374 | expect.assertions(7); 375 | expect.hasAssertions(); 376 | 377 | expect(add2(1, 0)).toEqual(1); 378 | }); 379 | }); 380 | }); 381 | " 382 | `; 383 | 384 | exports[`Does not accumulate sibling blocks with afterEach and beforeEach hooks 1`] = ` 385 | " 386 | describe('.add', () => { 387 | beforeEach(() => { 388 | expect(true).toBeTrue(); 389 | }); 390 | afterEach(() => { 391 | expect(true).toBeTrue(); 392 | }); 393 | it('returns 1 when given 0 and 1', async () => { 394 | expect(add(1, 0)).toEqual(1); 395 | }); 396 | }); 397 | 398 | describe('.add2', () => { 399 | beforeEach(() => { 400 | expect(true).toBeTrue(); 401 | }); 402 | afterEach(() => { 403 | expect(true).toBeTrue(); 404 | }); 405 | it('returns 1 when given 0 and 1', async () => { 406 | expect(add2(1, 0)).toEqual(1); 407 | }); 408 | }); 409 | 410 | ↓ ↓ ↓ ↓ ↓ ↓ 411 | 412 | describe('.add', () => { 413 | beforeEach(() => { 414 | expect(true).toBeTrue(); 415 | }); 416 | afterEach(() => { 417 | expect(true).toBeTrue(); 418 | }); 419 | it('returns 1 when given 0 and 1', async () => { 420 | expect.assertions(3); 421 | expect.hasAssertions(); 422 | 423 | expect(add(1, 0)).toEqual(1); 424 | }); 425 | }); 426 | 427 | describe('.add2', () => { 428 | beforeEach(() => { 429 | expect(true).toBeTrue(); 430 | }); 431 | afterEach(() => { 432 | expect(true).toBeTrue(); 433 | }); 434 | it('returns 1 when given 0 and 1', async () => { 435 | expect.assertions(3); 436 | expect.hasAssertions(); 437 | 438 | expect(add2(1, 0)).toEqual(1); 439 | }); 440 | }); 441 | " 442 | `; 443 | 444 | exports[`Does not add expect.assertions when expect.assertions is supplied 1`] = ` 445 | " 446 | describe('.add', () => { 447 | it('resolves 1', async () => { 448 | expect.assertions(1); 449 | try { 450 | const value = await Promise.resolve(1); 451 | expect(value).toBe(1); 452 | } catch (e) { 453 | expect(true).toBe(false); 454 | } 455 | }); 456 | }); 457 | 458 | ↓ ↓ ↓ ↓ ↓ ↓ 459 | 460 | describe('.add', () => { 461 | it('resolves 1', async () => { 462 | expect.hasAssertions(); 463 | 464 | expect.assertions(1); 465 | try { 466 | const value = await Promise.resolve(1); 467 | expect(value).toBe(1); 468 | } catch (e) { 469 | expect(true).toBe(false); 470 | } 471 | }); 472 | }); 473 | " 474 | `; 475 | 476 | exports[`Does not add expect.assertions when no assertions are supplied 1`] = ` 477 | " 478 | describe('.add', () => { 479 | it('resolves 1', async () => { 480 | try { 481 | const value = await Promise.resolve(1); 482 | console.log(value); 483 | } catch (e) { 484 | console.log(e); 485 | } 486 | }); 487 | }); 488 | 489 | ↓ ↓ ↓ ↓ ↓ ↓ 490 | 491 | describe('.add', () => { 492 | it('resolves 1', async () => { 493 | expect.hasAssertions(); 494 | 495 | try { 496 | const value = await Promise.resolve(1); 497 | console.log(value); 498 | } catch (e) { 499 | console.log(e); 500 | } 501 | }); 502 | }); 503 | " 504 | `; 505 | 506 | exports[`Does not count commented out expect statements 1`] = ` 507 | " 508 | describe('.add', () => { 509 | it('resolves 1', async () => { 510 | // expect(add(1, 2)).toEqual(3); 511 | try { 512 | /* 513 | expect(add(4, 5).toEqual(9)); 514 | */ 515 | const value = await Promise.resolve(add(0, 1)); 516 | 517 | const a = 1; // expect(a).toEqual(1); 518 | const b = 2; /* expect(b).toEqual(2); */ 519 | 520 | expect(value).toEqual(1); 521 | // expect(value).toEqual(2); 522 | } catch (err) { 523 | /* 524 | expect(add(6, 1).toEqual(7)); 525 | */ 526 | } 527 | }); 528 | }); 529 | 530 | ↓ ↓ ↓ ↓ ↓ ↓ 531 | 532 | describe('.add', () => { 533 | it('resolves 1', async () => { 534 | expect.assertions(1); 535 | expect.hasAssertions(); 536 | 537 | // expect(add(1, 2)).toEqual(3); 538 | try { 539 | /* 540 | expect(add(4, 5).toEqual(9)); 541 | */ 542 | const value = await Promise.resolve(add(0, 1)); 543 | 544 | const a = 1; // expect(a).toEqual(1); 545 | const b = 2; /* expect(b).toEqual(2); */ 546 | 547 | expect(value).toEqual(1); 548 | // expect(value).toEqual(2); 549 | } catch (err) { 550 | /* 551 | expect(add(6, 1).toEqual(7)); 552 | */ 553 | } 554 | }); 555 | }); 556 | " 557 | `; 558 | 559 | exports[`Handles expression functions 1`] = ` 560 | " 561 | describe('.add', () => { 562 | it('returns 1 when given 0 and 1', async () => 563 | expect(add(1, 0)).toEqual(1)); 564 | }); 565 | 566 | ↓ ↓ ↓ ↓ ↓ ↓ 567 | 568 | describe('.add', () => { 569 | it('returns 1 when given 0 and 1', async () => { 570 | expect.assertions(1); 571 | expect.hasAssertions(); 572 | return expect(add(1, 0)).toEqual(1); 573 | }); 574 | }); 575 | " 576 | `; 577 | -------------------------------------------------------------------------------- /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 | abbrev@1: 10 | version "1.1.0" 11 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 12 | 13 | acorn-globals@^3.1.0: 14 | version "3.1.0" 15 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" 16 | dependencies: 17 | acorn "^4.0.4" 18 | 19 | acorn-jsx@^3.0.0: 20 | version "3.0.1" 21 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 22 | dependencies: 23 | acorn "^3.0.4" 24 | 25 | acorn@^3.0.4: 26 | version "3.3.0" 27 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 28 | 29 | acorn@^4.0.4: 30 | version "4.0.13" 31 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 32 | 33 | acorn@^5.1.1: 34 | version "5.1.2" 35 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.1.2.tgz#911cb53e036807cf0fa778dc5d370fbd864246d7" 36 | 37 | ajv-keywords@^1.0.0: 38 | version "1.5.1" 39 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 40 | 41 | ajv@^4.7.0, ajv@^4.9.1: 42 | version "4.11.8" 43 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 44 | dependencies: 45 | co "^4.6.0" 46 | json-stable-stringify "^1.0.1" 47 | 48 | ajv@^5.2.0: 49 | version "5.2.2" 50 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.2.2.tgz#47c68d69e86f5d953103b0074a9430dc63da5e39" 51 | dependencies: 52 | co "^4.6.0" 53 | fast-deep-equal "^1.0.0" 54 | json-schema-traverse "^0.3.0" 55 | json-stable-stringify "^1.0.1" 56 | 57 | align-text@^0.1.1, align-text@^0.1.3: 58 | version "0.1.4" 59 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 60 | dependencies: 61 | kind-of "^3.0.2" 62 | longest "^1.0.1" 63 | repeat-string "^1.5.2" 64 | 65 | all-contributors-cli@^4.4.0: 66 | version "4.4.0" 67 | resolved "https://registry.yarnpkg.com/all-contributors-cli/-/all-contributors-cli-4.4.0.tgz#174f1295c9735c3f9299439a22c415d542dee850" 68 | dependencies: 69 | async "^2.0.0-rc.1" 70 | inquirer "^3.0.1" 71 | lodash "^4.11.2" 72 | pify "^2.3.0" 73 | request "^2.72.0" 74 | yargs "^4.7.0" 75 | 76 | amdefine@>=0.0.4: 77 | version "1.0.1" 78 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 79 | 80 | ansi-escapes@^1.0.0: 81 | version "1.4.0" 82 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 83 | 84 | ansi-escapes@^2.0.0: 85 | version "2.0.0" 86 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-2.0.0.tgz#5bae52be424878dd9783e8910e3fc2922e83c81b" 87 | 88 | ansi-escapes@^3.0.0: 89 | version "3.0.0" 90 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92" 91 | 92 | ansi-regex@^2.0.0, ansi-regex@^2.1.1: 93 | version "2.1.1" 94 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 95 | 96 | ansi-regex@^3.0.0: 97 | version "3.0.0" 98 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 99 | 100 | ansi-styles@^2.2.1: 101 | version "2.2.1" 102 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 103 | 104 | ansi-styles@^3.0.0, ansi-styles@^3.1.0, ansi-styles@^3.2.0: 105 | version "3.2.0" 106 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 107 | dependencies: 108 | color-convert "^1.9.0" 109 | 110 | anymatch@^1.3.0: 111 | version "1.3.2" 112 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 113 | dependencies: 114 | micromatch "^2.1.5" 115 | normalize-path "^2.0.0" 116 | 117 | app-root-path@^2.0.0: 118 | version "2.0.1" 119 | resolved "https://registry.yarnpkg.com/app-root-path/-/app-root-path-2.0.1.tgz#cd62dcf8e4fd5a417efc664d2e5b10653c651b46" 120 | 121 | append-transform@^0.4.0: 122 | version "0.4.0" 123 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 124 | dependencies: 125 | default-require-extensions "^1.0.0" 126 | 127 | aproba@^1.0.3: 128 | version "1.1.2" 129 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.2.tgz#45c6629094de4e96f693ef7eab74ae079c240fc1" 130 | 131 | are-we-there-yet@~1.1.2: 132 | version "1.1.4" 133 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 134 | dependencies: 135 | delegates "^1.0.0" 136 | readable-stream "^2.0.6" 137 | 138 | argparse@^1.0.7: 139 | version "1.0.9" 140 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 141 | dependencies: 142 | sprintf-js "~1.0.2" 143 | 144 | argv@0.0.2: 145 | version "0.0.2" 146 | resolved "https://registry.yarnpkg.com/argv/-/argv-0.0.2.tgz#ecbd16f8949b157183711b1bda334f37840185ab" 147 | 148 | arr-diff@^2.0.0: 149 | version "2.0.0" 150 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 151 | dependencies: 152 | arr-flatten "^1.0.1" 153 | 154 | arr-flatten@^1.0.1: 155 | version "1.1.0" 156 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 157 | 158 | array-equal@^1.0.0: 159 | version "1.0.0" 160 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 161 | 162 | array-union@^1.0.1: 163 | version "1.0.2" 164 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 165 | dependencies: 166 | array-uniq "^1.0.1" 167 | 168 | array-uniq@^1.0.1: 169 | version "1.0.3" 170 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 171 | 172 | array-unique@^0.2.1: 173 | version "0.2.1" 174 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 175 | 176 | arrify@^1.0.0, arrify@^1.0.1: 177 | version "1.0.1" 178 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 179 | 180 | asn1@~0.2.3: 181 | version "0.2.3" 182 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 183 | 184 | assert-plus@1.0.0, assert-plus@^1.0.0: 185 | version "1.0.0" 186 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 187 | 188 | assert-plus@^0.2.0: 189 | version "0.2.0" 190 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 191 | 192 | astral-regex@^1.0.0: 193 | version "1.0.0" 194 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" 195 | 196 | async-each@^1.0.0: 197 | version "1.0.1" 198 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 199 | 200 | async@^1.4.0: 201 | version "1.5.2" 202 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 203 | 204 | async@^2.0.0-rc.1, async@^2.1.4: 205 | version "2.5.0" 206 | resolved "https://registry.yarnpkg.com/async/-/async-2.5.0.tgz#843190fd6b7357a0b9e1c956edddd5ec8462b54d" 207 | dependencies: 208 | lodash "^4.14.0" 209 | 210 | asynckit@^0.4.0: 211 | version "0.4.0" 212 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 213 | 214 | aws-sign2@~0.6.0: 215 | version "0.6.0" 216 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 217 | 218 | aws4@^1.2.1: 219 | version "1.6.0" 220 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 221 | 222 | babel-cli@^6.26.0: 223 | version "6.26.0" 224 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.26.0.tgz#502ab54874d7db88ad00b887a06383ce03d002f1" 225 | dependencies: 226 | babel-core "^6.26.0" 227 | babel-polyfill "^6.26.0" 228 | babel-register "^6.26.0" 229 | babel-runtime "^6.26.0" 230 | commander "^2.11.0" 231 | convert-source-map "^1.5.0" 232 | fs-readdir-recursive "^1.0.0" 233 | glob "^7.1.2" 234 | lodash "^4.17.4" 235 | output-file-sync "^1.1.2" 236 | path-is-absolute "^1.0.1" 237 | slash "^1.0.0" 238 | source-map "^0.5.6" 239 | v8flags "^2.1.1" 240 | optionalDependencies: 241 | chokidar "^1.6.1" 242 | 243 | babel-code-frame@7.0.0-beta.0: 244 | version "7.0.0-beta.0" 245 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-7.0.0-beta.0.tgz#418a7b5f3f7dc9a4670e61b1158b4c5661bec98d" 246 | dependencies: 247 | chalk "^2.0.0" 248 | esutils "^2.0.2" 249 | js-tokens "^3.0.0" 250 | 251 | babel-code-frame@^6.22.0, babel-code-frame@^6.26.0: 252 | version "6.26.0" 253 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 254 | dependencies: 255 | chalk "^1.1.3" 256 | esutils "^2.0.2" 257 | js-tokens "^3.0.2" 258 | 259 | babel-core@^6.0.0, babel-core@^6.25.0, babel-core@^6.26.0: 260 | version "6.26.0" 261 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 262 | dependencies: 263 | babel-code-frame "^6.26.0" 264 | babel-generator "^6.26.0" 265 | babel-helpers "^6.24.1" 266 | babel-messages "^6.23.0" 267 | babel-register "^6.26.0" 268 | babel-runtime "^6.26.0" 269 | babel-template "^6.26.0" 270 | babel-traverse "^6.26.0" 271 | babel-types "^6.26.0" 272 | babylon "^6.18.0" 273 | convert-source-map "^1.5.0" 274 | debug "^2.6.8" 275 | json5 "^0.5.1" 276 | lodash "^4.17.4" 277 | minimatch "^3.0.4" 278 | path-is-absolute "^1.0.1" 279 | private "^0.1.7" 280 | slash "^1.0.0" 281 | source-map "^0.5.6" 282 | 283 | babel-eslint@^8.0.0: 284 | version "8.0.0" 285 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-8.0.0.tgz#ce06f385bdfb5b6d7e603f06222f891abd14c240" 286 | dependencies: 287 | babel-code-frame "7.0.0-beta.0" 288 | babel-traverse "7.0.0-beta.0" 289 | babel-types "7.0.0-beta.0" 290 | babylon "7.0.0-beta.22" 291 | 292 | babel-generator@^6.18.0, babel-generator@^6.26.0: 293 | version "6.26.0" 294 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" 295 | dependencies: 296 | babel-messages "^6.23.0" 297 | babel-runtime "^6.26.0" 298 | babel-types "^6.26.0" 299 | detect-indent "^4.0.0" 300 | jsesc "^1.3.0" 301 | lodash "^4.17.4" 302 | source-map "^0.5.6" 303 | trim-right "^1.0.1" 304 | 305 | babel-helper-function-name@7.0.0-beta.0: 306 | version "7.0.0-beta.0" 307 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-7.0.0-beta.0.tgz#d1b6779b647e5c5c31ebeb05e13b998e4d352d56" 308 | dependencies: 309 | babel-helper-get-function-arity "7.0.0-beta.0" 310 | babel-template "7.0.0-beta.0" 311 | babel-traverse "7.0.0-beta.0" 312 | babel-types "7.0.0-beta.0" 313 | 314 | babel-helper-get-function-arity@7.0.0-beta.0: 315 | version "7.0.0-beta.0" 316 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-7.0.0-beta.0.tgz#9d1ab7213bb5efe1ef1638a8ea1489969b5a8b6e" 317 | dependencies: 318 | babel-types "7.0.0-beta.0" 319 | 320 | babel-helpers@^6.24.1: 321 | version "6.24.1" 322 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 323 | dependencies: 324 | babel-runtime "^6.22.0" 325 | babel-template "^6.24.1" 326 | 327 | babel-jest@^21.0.2: 328 | version "21.0.2" 329 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-21.0.2.tgz#817ea52c23f1c6c4b684d6960968416b6a9e9c6c" 330 | dependencies: 331 | babel-plugin-istanbul "^4.0.0" 332 | babel-preset-jest "^21.0.2" 333 | 334 | babel-messages@7.0.0-beta.0: 335 | version "7.0.0-beta.0" 336 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-7.0.0-beta.0.tgz#6df01296e49fc8fbd0637394326a167f36da817b" 337 | 338 | babel-messages@^6.23.0: 339 | version "6.23.0" 340 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 341 | dependencies: 342 | babel-runtime "^6.22.0" 343 | 344 | babel-plugin-istanbul@^4.0.0: 345 | version "4.1.4" 346 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.4.tgz#18dde84bf3ce329fddf3f4103fae921456d8e587" 347 | dependencies: 348 | find-up "^2.1.0" 349 | istanbul-lib-instrument "^1.7.2" 350 | test-exclude "^4.1.1" 351 | 352 | babel-plugin-jest-hoist@^21.0.2: 353 | version "21.0.2" 354 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-21.0.2.tgz#cfdce5bca40d772a056cb8528ad159c7bb4bb03d" 355 | 356 | babel-plugin-tester@^4.0.0: 357 | version "4.0.0" 358 | resolved "https://registry.yarnpkg.com/babel-plugin-tester/-/babel-plugin-tester-4.0.0.tgz#5c05af9a175e2a1c7b3d6a195e710f1ae948a2bc" 359 | dependencies: 360 | babel-core "^6.25.0" 361 | common-tags "^1.4.0" 362 | invariant "^2.2.2" 363 | lodash.merge "^4.6.0" 364 | path-exists "^3.0.0" 365 | strip-indent "^2.0.0" 366 | 367 | babel-polyfill@^6.26.0: 368 | version "6.26.0" 369 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" 370 | dependencies: 371 | babel-runtime "^6.26.0" 372 | core-js "^2.5.0" 373 | regenerator-runtime "^0.10.5" 374 | 375 | babel-preset-jest@^21.0.2: 376 | version "21.0.2" 377 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-21.0.2.tgz#9db25def2329f49eace3f5ea0de42a0b898d12cc" 378 | dependencies: 379 | babel-plugin-jest-hoist "^21.0.2" 380 | 381 | babel-register@^6.26.0: 382 | version "6.26.0" 383 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 384 | dependencies: 385 | babel-core "^6.26.0" 386 | babel-runtime "^6.26.0" 387 | core-js "^2.5.0" 388 | home-or-tmp "^2.0.0" 389 | lodash "^4.17.4" 390 | mkdirp "^0.5.1" 391 | source-map-support "^0.4.15" 392 | 393 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 394 | version "6.26.0" 395 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 396 | dependencies: 397 | core-js "^2.4.0" 398 | regenerator-runtime "^0.11.0" 399 | 400 | babel-template@7.0.0-beta.0: 401 | version "7.0.0-beta.0" 402 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-7.0.0-beta.0.tgz#85083cf9e4395d5e48bf5154d7a8d6991cafecfb" 403 | dependencies: 404 | babel-traverse "7.0.0-beta.0" 405 | babel-types "7.0.0-beta.0" 406 | babylon "7.0.0-beta.22" 407 | lodash "^4.2.0" 408 | 409 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0: 410 | version "6.26.0" 411 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 412 | dependencies: 413 | babel-runtime "^6.26.0" 414 | babel-traverse "^6.26.0" 415 | babel-types "^6.26.0" 416 | babylon "^6.18.0" 417 | lodash "^4.17.4" 418 | 419 | babel-traverse@7.0.0-beta.0: 420 | version "7.0.0-beta.0" 421 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-7.0.0-beta.0.tgz#da14be9b762f62a2f060db464eaafdd8cd072a41" 422 | dependencies: 423 | babel-code-frame "7.0.0-beta.0" 424 | babel-helper-function-name "7.0.0-beta.0" 425 | babel-messages "7.0.0-beta.0" 426 | babel-types "7.0.0-beta.0" 427 | babylon "7.0.0-beta.22" 428 | debug "^3.0.1" 429 | globals "^10.0.0" 430 | invariant "^2.2.0" 431 | lodash "^4.2.0" 432 | 433 | babel-traverse@^6.18.0, babel-traverse@^6.26.0: 434 | version "6.26.0" 435 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 436 | dependencies: 437 | babel-code-frame "^6.26.0" 438 | babel-messages "^6.23.0" 439 | babel-runtime "^6.26.0" 440 | babel-types "^6.26.0" 441 | babylon "^6.18.0" 442 | debug "^2.6.8" 443 | globals "^9.18.0" 444 | invariant "^2.2.2" 445 | lodash "^4.17.4" 446 | 447 | babel-types@7.0.0-beta.0: 448 | version "7.0.0-beta.0" 449 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-7.0.0-beta.0.tgz#eb8b6e556470e6dcc4aef982d79ad229469b5169" 450 | dependencies: 451 | esutils "^2.0.2" 452 | lodash "^4.2.0" 453 | to-fast-properties "^2.0.0" 454 | 455 | babel-types@^6.18.0, babel-types@^6.26.0: 456 | version "6.26.0" 457 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 458 | dependencies: 459 | babel-runtime "^6.26.0" 460 | esutils "^2.0.2" 461 | lodash "^4.17.4" 462 | to-fast-properties "^1.0.3" 463 | 464 | babylon@7.0.0-beta.22: 465 | version "7.0.0-beta.22" 466 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-7.0.0-beta.22.tgz#74f0ad82ed7c7c3cfeab74cf684f815104161b65" 467 | 468 | babylon@^6.18.0: 469 | version "6.18.0" 470 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 471 | 472 | balanced-match@^1.0.0: 473 | version "1.0.0" 474 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 475 | 476 | bcrypt-pbkdf@^1.0.0: 477 | version "1.0.1" 478 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 479 | dependencies: 480 | tweetnacl "^0.14.3" 481 | 482 | binary-extensions@^1.0.0: 483 | version "1.10.0" 484 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.10.0.tgz#9aeb9a6c5e88638aad171e167f5900abe24835d0" 485 | 486 | block-stream@*: 487 | version "0.0.9" 488 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 489 | dependencies: 490 | inherits "~2.0.0" 491 | 492 | boom@2.x.x: 493 | version "2.10.1" 494 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 495 | dependencies: 496 | hoek "2.x.x" 497 | 498 | brace-expansion@^1.1.7: 499 | version "1.1.8" 500 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 501 | dependencies: 502 | balanced-match "^1.0.0" 503 | concat-map "0.0.1" 504 | 505 | braces@^1.8.2: 506 | version "1.8.5" 507 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 508 | dependencies: 509 | expand-range "^1.8.1" 510 | preserve "^0.2.0" 511 | repeat-element "^1.1.2" 512 | 513 | browser-resolve@^1.11.2: 514 | version "1.11.2" 515 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 516 | dependencies: 517 | resolve "1.1.7" 518 | 519 | bser@^2.0.0: 520 | version "2.0.0" 521 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 522 | dependencies: 523 | node-int64 "^0.4.0" 524 | 525 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 526 | version "1.1.1" 527 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 528 | 529 | caller-path@^0.1.0: 530 | version "0.1.0" 531 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 532 | dependencies: 533 | callsites "^0.2.0" 534 | 535 | callsites@^0.2.0: 536 | version "0.2.0" 537 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 538 | 539 | callsites@^2.0.0: 540 | version "2.0.0" 541 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 542 | 543 | camelcase@^1.0.2: 544 | version "1.2.1" 545 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 546 | 547 | camelcase@^3.0.0: 548 | version "3.0.0" 549 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 550 | 551 | camelcase@^4.1.0: 552 | version "4.1.0" 553 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 554 | 555 | caseless@~0.12.0: 556 | version "0.12.0" 557 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 558 | 559 | center-align@^0.1.1: 560 | version "0.1.3" 561 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 562 | dependencies: 563 | align-text "^0.1.3" 564 | lazy-cache "^1.0.3" 565 | 566 | chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3: 567 | version "1.1.3" 568 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 569 | dependencies: 570 | ansi-styles "^2.2.1" 571 | escape-string-regexp "^1.0.2" 572 | has-ansi "^2.0.0" 573 | strip-ansi "^3.0.0" 574 | supports-color "^2.0.0" 575 | 576 | chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0: 577 | version "2.1.0" 578 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.1.0.tgz#ac5becf14fa21b99c6c92ca7a7d7cfd5b17e743e" 579 | dependencies: 580 | ansi-styles "^3.1.0" 581 | escape-string-regexp "^1.0.5" 582 | supports-color "^4.0.0" 583 | 584 | chalk@^2.3.0: 585 | version "2.3.0" 586 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba" 587 | dependencies: 588 | ansi-styles "^3.1.0" 589 | escape-string-regexp "^1.0.5" 590 | supports-color "^4.0.0" 591 | 592 | chokidar@^1.6.1: 593 | version "1.7.0" 594 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 595 | dependencies: 596 | anymatch "^1.3.0" 597 | async-each "^1.0.0" 598 | glob-parent "^2.0.0" 599 | inherits "^2.0.1" 600 | is-binary-path "^1.0.0" 601 | is-glob "^2.0.0" 602 | path-is-absolute "^1.0.0" 603 | readdirp "^2.0.0" 604 | optionalDependencies: 605 | fsevents "^1.0.0" 606 | 607 | ci-info@^1.0.0: 608 | version "1.1.1" 609 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.1.tgz#47b44df118c48d2597b56d342e7e25791060171a" 610 | 611 | circular-json@^0.3.1: 612 | version "0.3.3" 613 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" 614 | 615 | cli-cursor@^1.0.2: 616 | version "1.0.2" 617 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 618 | dependencies: 619 | restore-cursor "^1.0.1" 620 | 621 | cli-cursor@^2.1.0: 622 | version "2.1.0" 623 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 624 | dependencies: 625 | restore-cursor "^2.0.0" 626 | 627 | cli-spinners@^0.1.2: 628 | version "0.1.2" 629 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-0.1.2.tgz#bb764d88e185fb9e1e6a2a1f19772318f605e31c" 630 | 631 | cli-truncate@^0.2.1: 632 | version "0.2.1" 633 | resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-0.2.1.tgz#9f15cfbb0705005369216c626ac7d05ab90dd574" 634 | dependencies: 635 | slice-ansi "0.0.4" 636 | string-width "^1.0.1" 637 | 638 | cli-width@^2.0.0: 639 | version "2.2.0" 640 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 641 | 642 | cliui@^2.1.0: 643 | version "2.1.0" 644 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 645 | dependencies: 646 | center-align "^0.1.1" 647 | right-align "^0.1.1" 648 | wordwrap "0.0.2" 649 | 650 | cliui@^3.2.0: 651 | version "3.2.0" 652 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 653 | dependencies: 654 | string-width "^1.0.1" 655 | strip-ansi "^3.0.1" 656 | wrap-ansi "^2.0.0" 657 | 658 | co@^4.6.0: 659 | version "4.6.0" 660 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 661 | 662 | code-point-at@^1.0.0: 663 | version "1.1.0" 664 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 665 | 666 | codecov@^2.3.0: 667 | version "2.3.0" 668 | resolved "https://registry.yarnpkg.com/codecov/-/codecov-2.3.0.tgz#ad25a2c6e0442d13740d9d4ddbb9a3e2714330f4" 669 | dependencies: 670 | argv "0.0.2" 671 | request "2.81.0" 672 | urlgrey "0.4.4" 673 | 674 | color-convert@^1.9.0: 675 | version "1.9.0" 676 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 677 | dependencies: 678 | color-name "^1.1.1" 679 | 680 | color-name@^1.1.1: 681 | version "1.1.3" 682 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 683 | 684 | combined-stream@^1.0.5, combined-stream@~1.0.5: 685 | version "1.0.5" 686 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 687 | dependencies: 688 | delayed-stream "~1.0.0" 689 | 690 | commander@^2.11.0, commander@^2.9.0: 691 | version "2.11.0" 692 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563" 693 | 694 | common-tags@^1.4.0: 695 | version "1.4.0" 696 | resolved "https://registry.yarnpkg.com/common-tags/-/common-tags-1.4.0.tgz#1187be4f3d4cf0c0427d43f74eef1f73501614c0" 697 | dependencies: 698 | babel-runtime "^6.18.0" 699 | 700 | concat-map@0.0.1: 701 | version "0.0.1" 702 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 703 | 704 | concat-stream@^1.6.0: 705 | version "1.6.0" 706 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 707 | dependencies: 708 | inherits "^2.0.3" 709 | readable-stream "^2.2.2" 710 | typedarray "^0.0.6" 711 | 712 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 713 | version "1.1.0" 714 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 715 | 716 | contains-path@^0.1.0: 717 | version "0.1.0" 718 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 719 | 720 | content-type-parser@^1.0.1: 721 | version "1.0.1" 722 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 723 | 724 | convert-source-map@^1.4.0, convert-source-map@^1.5.0: 725 | version "1.5.0" 726 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 727 | 728 | core-js@^2.4.0, core-js@^2.5.0: 729 | version "2.5.1" 730 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.1.tgz#ae6874dc66937789b80754ff5428df66819ca50b" 731 | 732 | core-util-is@1.0.2, core-util-is@~1.0.0: 733 | version "1.0.2" 734 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 735 | 736 | cosmiconfig@^1.1.0: 737 | version "1.1.0" 738 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-1.1.0.tgz#0dea0f9804efdfb929fbb1b188e25553ea053d37" 739 | dependencies: 740 | graceful-fs "^4.1.2" 741 | js-yaml "^3.4.3" 742 | minimist "^1.2.0" 743 | object-assign "^4.0.1" 744 | os-homedir "^1.0.1" 745 | parse-json "^2.2.0" 746 | pinkie-promise "^2.0.0" 747 | require-from-string "^1.1.0" 748 | 749 | cross-spawn@^5.0.1, cross-spawn@^5.1.0: 750 | version "5.1.0" 751 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 752 | dependencies: 753 | lru-cache "^4.0.1" 754 | shebang-command "^1.2.0" 755 | which "^1.2.9" 756 | 757 | cryptiles@2.x.x: 758 | version "2.0.5" 759 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 760 | dependencies: 761 | boom "2.x.x" 762 | 763 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 764 | version "0.3.2" 765 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 766 | 767 | "cssstyle@>= 0.2.37 < 0.3.0": 768 | version "0.2.37" 769 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 770 | dependencies: 771 | cssom "0.3.x" 772 | 773 | dashdash@^1.12.0: 774 | version "1.14.1" 775 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 776 | dependencies: 777 | assert-plus "^1.0.0" 778 | 779 | date-fns@^1.27.2: 780 | version "1.28.5" 781 | resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.28.5.tgz#257cfc45d322df45ef5658665967ee841cd73faf" 782 | 783 | debug@^2.2.0, debug@^2.6.3, debug@^2.6.8: 784 | version "2.6.8" 785 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 786 | dependencies: 787 | ms "2.0.0" 788 | 789 | debug@^3.0.1: 790 | version "3.0.1" 791 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.0.1.tgz#0564c612b521dc92d9f2988f0549e34f9c98db64" 792 | dependencies: 793 | ms "2.0.0" 794 | 795 | decamelize@^1.0.0, decamelize@^1.1.1: 796 | version "1.2.0" 797 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 798 | 799 | deep-equal@~1.0.1: 800 | version "1.0.1" 801 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" 802 | 803 | deep-extend@~0.4.0: 804 | version "0.4.2" 805 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 806 | 807 | deep-is@~0.1.3: 808 | version "0.1.3" 809 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 810 | 811 | default-require-extensions@^1.0.0: 812 | version "1.0.0" 813 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 814 | dependencies: 815 | strip-bom "^2.0.0" 816 | 817 | define-properties@^1.1.2: 818 | version "1.1.2" 819 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 820 | dependencies: 821 | foreach "^2.0.5" 822 | object-keys "^1.0.8" 823 | 824 | defined@~1.0.0: 825 | version "1.0.0" 826 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 827 | 828 | del@^2.0.2: 829 | version "2.2.2" 830 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 831 | dependencies: 832 | globby "^5.0.0" 833 | is-path-cwd "^1.0.0" 834 | is-path-in-cwd "^1.0.0" 835 | object-assign "^4.0.1" 836 | pify "^2.0.0" 837 | pinkie-promise "^2.0.0" 838 | rimraf "^2.2.8" 839 | 840 | delayed-stream@~1.0.0: 841 | version "1.0.0" 842 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 843 | 844 | delegates@^1.0.0: 845 | version "1.0.0" 846 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 847 | 848 | detect-indent@^4.0.0: 849 | version "4.0.0" 850 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 851 | dependencies: 852 | repeating "^2.0.0" 853 | 854 | diff@^3.2.0: 855 | version "3.3.1" 856 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.3.1.tgz#aa8567a6eed03c531fc89d3f711cd0e5259dec75" 857 | 858 | doctrine@1.5.0: 859 | version "1.5.0" 860 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 861 | dependencies: 862 | esutils "^2.0.2" 863 | isarray "^1.0.0" 864 | 865 | doctrine@^2.0.0: 866 | version "2.0.0" 867 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" 868 | dependencies: 869 | esutils "^2.0.2" 870 | isarray "^1.0.0" 871 | 872 | ecc-jsbn@~0.1.1: 873 | version "0.1.1" 874 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 875 | dependencies: 876 | jsbn "~0.1.0" 877 | 878 | elegant-spinner@^1.0.1: 879 | version "1.0.1" 880 | resolved "https://registry.yarnpkg.com/elegant-spinner/-/elegant-spinner-1.0.1.tgz#db043521c95d7e303fd8f345bedc3349cfb0729e" 881 | 882 | errno@^0.1.4: 883 | version "0.1.4" 884 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 885 | dependencies: 886 | prr "~0.0.0" 887 | 888 | error-ex@^1.2.0: 889 | version "1.3.1" 890 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 891 | dependencies: 892 | is-arrayish "^0.2.1" 893 | 894 | es-abstract@^1.5.0: 895 | version "1.8.2" 896 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.8.2.tgz#25103263dc4decbda60e0c737ca32313518027ee" 897 | dependencies: 898 | es-to-primitive "^1.1.1" 899 | function-bind "^1.1.1" 900 | has "^1.0.1" 901 | is-callable "^1.1.3" 902 | is-regex "^1.0.4" 903 | 904 | es-to-primitive@^1.1.1: 905 | version "1.1.1" 906 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 907 | dependencies: 908 | is-callable "^1.1.1" 909 | is-date-object "^1.0.1" 910 | is-symbol "^1.0.1" 911 | 912 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 913 | version "1.0.5" 914 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 915 | 916 | escodegen@^1.6.1: 917 | version "1.9.0" 918 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.9.0.tgz#9811a2f265dc1cd3894420ee3717064b632b8852" 919 | dependencies: 920 | esprima "^3.1.3" 921 | estraverse "^4.2.0" 922 | esutils "^2.0.2" 923 | optionator "^0.8.1" 924 | optionalDependencies: 925 | source-map "~0.5.6" 926 | 927 | eslint-import-resolver-node@^0.3.1: 928 | version "0.3.1" 929 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.1.tgz#4422574cde66a9a7b099938ee4d508a199e0e3cc" 930 | dependencies: 931 | debug "^2.6.8" 932 | resolve "^1.2.0" 933 | 934 | eslint-module-utils@^2.1.1: 935 | version "2.1.1" 936 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.1.1.tgz#abaec824177613b8a95b299639e1b6facf473449" 937 | dependencies: 938 | debug "^2.6.8" 939 | pkg-dir "^1.0.0" 940 | 941 | eslint-plugin-import@^2.7.0: 942 | version "2.7.0" 943 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.7.0.tgz#21de33380b9efb55f5ef6d2e210ec0e07e7fa69f" 944 | dependencies: 945 | builtin-modules "^1.1.1" 946 | contains-path "^0.1.0" 947 | debug "^2.6.8" 948 | doctrine "1.5.0" 949 | eslint-import-resolver-node "^0.3.1" 950 | eslint-module-utils "^2.1.1" 951 | has "^1.0.1" 952 | lodash.cond "^4.3.0" 953 | minimatch "^3.0.3" 954 | read-pkg-up "^2.0.0" 955 | 956 | eslint-plugin-jest@^21.0.2: 957 | version "21.0.2" 958 | resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-21.0.2.tgz#2eba7745844648513889d9d1bbefa3f5e3d05e54" 959 | 960 | eslint-scope@^3.7.1: 961 | version "3.7.1" 962 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" 963 | dependencies: 964 | esrecurse "^4.1.0" 965 | estraverse "^4.1.1" 966 | 967 | eslint@^4.6.1: 968 | version "4.6.1" 969 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.6.1.tgz#ddc7fc7fd70bf93205b0b3449bb16a1e9e7d4950" 970 | dependencies: 971 | ajv "^5.2.0" 972 | babel-code-frame "^6.22.0" 973 | chalk "^2.1.0" 974 | concat-stream "^1.6.0" 975 | cross-spawn "^5.1.0" 976 | debug "^2.6.8" 977 | doctrine "^2.0.0" 978 | eslint-scope "^3.7.1" 979 | espree "^3.5.0" 980 | esquery "^1.0.0" 981 | estraverse "^4.2.0" 982 | esutils "^2.0.2" 983 | file-entry-cache "^2.0.0" 984 | functional-red-black-tree "^1.0.1" 985 | glob "^7.1.2" 986 | globals "^9.17.0" 987 | ignore "^3.3.3" 988 | imurmurhash "^0.1.4" 989 | inquirer "^3.0.6" 990 | is-resolvable "^1.0.0" 991 | js-yaml "^3.9.1" 992 | json-stable-stringify "^1.0.1" 993 | levn "^0.3.0" 994 | lodash "^4.17.4" 995 | minimatch "^3.0.2" 996 | mkdirp "^0.5.1" 997 | natural-compare "^1.4.0" 998 | optionator "^0.8.2" 999 | path-is-inside "^1.0.2" 1000 | pluralize "^4.0.0" 1001 | progress "^2.0.0" 1002 | require-uncached "^1.0.3" 1003 | semver "^5.3.0" 1004 | strip-ansi "^4.0.0" 1005 | strip-json-comments "~2.0.1" 1006 | table "^4.0.1" 1007 | text-table "~0.2.0" 1008 | 1009 | espree@^3.5.0: 1010 | version "3.5.0" 1011 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.0.tgz#98358625bdd055861ea27e2867ea729faf463d8d" 1012 | dependencies: 1013 | acorn "^5.1.1" 1014 | acorn-jsx "^3.0.0" 1015 | 1016 | esprima@^3.1.3: 1017 | version "3.1.3" 1018 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1019 | 1020 | esprima@^4.0.0: 1021 | version "4.0.0" 1022 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 1023 | 1024 | esquery@^1.0.0: 1025 | version "1.0.0" 1026 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 1027 | dependencies: 1028 | estraverse "^4.0.0" 1029 | 1030 | esrecurse@^4.1.0: 1031 | version "4.2.0" 1032 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163" 1033 | dependencies: 1034 | estraverse "^4.1.0" 1035 | object-assign "^4.0.1" 1036 | 1037 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: 1038 | version "4.2.0" 1039 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1040 | 1041 | esutils@^2.0.2: 1042 | version "2.0.2" 1043 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1044 | 1045 | exec-sh@^0.2.0: 1046 | version "0.2.1" 1047 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.1.tgz#163b98a6e89e6b65b47c2a28d215bc1f63989c38" 1048 | dependencies: 1049 | merge "^1.1.3" 1050 | 1051 | execa@^0.7.0: 1052 | version "0.7.0" 1053 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1054 | dependencies: 1055 | cross-spawn "^5.0.1" 1056 | get-stream "^3.0.0" 1057 | is-stream "^1.1.0" 1058 | npm-run-path "^2.0.0" 1059 | p-finally "^1.0.0" 1060 | signal-exit "^3.0.0" 1061 | strip-eof "^1.0.0" 1062 | 1063 | execa@^0.8.0: 1064 | version "0.8.0" 1065 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.8.0.tgz#d8d76bbc1b55217ed190fd6dd49d3c774ecfc8da" 1066 | dependencies: 1067 | cross-spawn "^5.0.1" 1068 | get-stream "^3.0.0" 1069 | is-stream "^1.1.0" 1070 | npm-run-path "^2.0.0" 1071 | p-finally "^1.0.0" 1072 | signal-exit "^3.0.0" 1073 | strip-eof "^1.0.0" 1074 | 1075 | exit-hook@^1.0.0: 1076 | version "1.1.1" 1077 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1078 | 1079 | expand-brackets@^0.1.4: 1080 | version "0.1.5" 1081 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1082 | dependencies: 1083 | is-posix-bracket "^0.1.0" 1084 | 1085 | expand-range@^1.8.1: 1086 | version "1.8.2" 1087 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1088 | dependencies: 1089 | fill-range "^2.1.0" 1090 | 1091 | expect@^21.0.2: 1092 | version "21.0.2" 1093 | resolved "https://registry.yarnpkg.com/expect/-/expect-21.0.2.tgz#b34abf0635ec9d6aea1ce7edb4722afe86c4a38f" 1094 | dependencies: 1095 | ansi-styles "^3.2.0" 1096 | jest-diff "^21.0.2" 1097 | jest-get-type "^21.0.2" 1098 | jest-matcher-utils "^21.0.2" 1099 | jest-message-util "^21.0.2" 1100 | jest-regex-util "^21.0.2" 1101 | 1102 | expect@^21.2.1: 1103 | version "21.2.1" 1104 | resolved "https://registry.yarnpkg.com/expect/-/expect-21.2.1.tgz#003ac2ac7005c3c29e73b38a272d4afadd6d1d7b" 1105 | dependencies: 1106 | ansi-styles "^3.2.0" 1107 | jest-diff "^21.2.1" 1108 | jest-get-type "^21.2.0" 1109 | jest-matcher-utils "^21.2.1" 1110 | jest-message-util "^21.2.1" 1111 | jest-regex-util "^21.2.0" 1112 | 1113 | extend@~3.0.0: 1114 | version "3.0.1" 1115 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1116 | 1117 | external-editor@^2.0.4: 1118 | version "2.0.4" 1119 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.0.4.tgz#1ed9199da9cbfe2ef2f7a31b2fde8b0d12368972" 1120 | dependencies: 1121 | iconv-lite "^0.4.17" 1122 | jschardet "^1.4.2" 1123 | tmp "^0.0.31" 1124 | 1125 | extglob@^0.3.1: 1126 | version "0.3.2" 1127 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1128 | dependencies: 1129 | is-extglob "^1.0.0" 1130 | 1131 | extsprintf@1.3.0, extsprintf@^1.2.0: 1132 | version "1.3.0" 1133 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1134 | 1135 | fast-deep-equal@^1.0.0: 1136 | version "1.0.0" 1137 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 1138 | 1139 | fast-levenshtein@~2.0.4: 1140 | version "2.0.6" 1141 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1142 | 1143 | fb-watchman@^2.0.0: 1144 | version "2.0.0" 1145 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 1146 | dependencies: 1147 | bser "^2.0.0" 1148 | 1149 | figures@^1.7.0: 1150 | version "1.7.0" 1151 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1152 | dependencies: 1153 | escape-string-regexp "^1.0.5" 1154 | object-assign "^4.1.0" 1155 | 1156 | figures@^2.0.0: 1157 | version "2.0.0" 1158 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1159 | dependencies: 1160 | escape-string-regexp "^1.0.5" 1161 | 1162 | file-entry-cache@^2.0.0: 1163 | version "2.0.0" 1164 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1165 | dependencies: 1166 | flat-cache "^1.2.1" 1167 | object-assign "^4.0.1" 1168 | 1169 | filename-regex@^2.0.0: 1170 | version "2.0.1" 1171 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1172 | 1173 | fileset@^2.0.2: 1174 | version "2.0.3" 1175 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 1176 | dependencies: 1177 | glob "^7.0.3" 1178 | minimatch "^3.0.3" 1179 | 1180 | fill-range@^2.1.0: 1181 | version "2.2.3" 1182 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1183 | dependencies: 1184 | is-number "^2.1.0" 1185 | isobject "^2.0.0" 1186 | randomatic "^1.1.3" 1187 | repeat-element "^1.1.2" 1188 | repeat-string "^1.5.2" 1189 | 1190 | find-up@^1.0.0: 1191 | version "1.1.2" 1192 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1193 | dependencies: 1194 | path-exists "^2.0.0" 1195 | pinkie-promise "^2.0.0" 1196 | 1197 | find-up@^2.0.0, find-up@^2.1.0: 1198 | version "2.1.0" 1199 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1200 | dependencies: 1201 | locate-path "^2.0.0" 1202 | 1203 | flat-cache@^1.2.1: 1204 | version "1.2.2" 1205 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 1206 | dependencies: 1207 | circular-json "^0.3.1" 1208 | del "^2.0.2" 1209 | graceful-fs "^4.1.2" 1210 | write "^0.2.1" 1211 | 1212 | for-each@~0.3.2: 1213 | version "0.3.2" 1214 | resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.2.tgz#2c40450b9348e97f281322593ba96704b9abd4d4" 1215 | dependencies: 1216 | is-function "~1.0.0" 1217 | 1218 | for-in@^1.0.1: 1219 | version "1.0.2" 1220 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1221 | 1222 | for-own@^0.1.4: 1223 | version "0.1.5" 1224 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1225 | dependencies: 1226 | for-in "^1.0.1" 1227 | 1228 | foreach@^2.0.5: 1229 | version "2.0.5" 1230 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1231 | 1232 | forever-agent@~0.6.1: 1233 | version "0.6.1" 1234 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1235 | 1236 | form-data@~2.1.1: 1237 | version "2.1.4" 1238 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1239 | dependencies: 1240 | asynckit "^0.4.0" 1241 | combined-stream "^1.0.5" 1242 | mime-types "^2.1.12" 1243 | 1244 | fs-readdir-recursive@^1.0.0: 1245 | version "1.0.0" 1246 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 1247 | 1248 | fs.realpath@^1.0.0: 1249 | version "1.0.0" 1250 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1251 | 1252 | fsevents@^1.0.0, fsevents@^1.1.1: 1253 | version "1.1.2" 1254 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4" 1255 | dependencies: 1256 | nan "^2.3.0" 1257 | node-pre-gyp "^0.6.36" 1258 | 1259 | fstream-ignore@^1.0.5: 1260 | version "1.0.5" 1261 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1262 | dependencies: 1263 | fstream "^1.0.0" 1264 | inherits "2" 1265 | minimatch "^3.0.0" 1266 | 1267 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1268 | version "1.0.11" 1269 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1270 | dependencies: 1271 | graceful-fs "^4.1.2" 1272 | inherits "~2.0.0" 1273 | mkdirp ">=0.5 0" 1274 | rimraf "2" 1275 | 1276 | function-bind@^1.0.2, function-bind@^1.1.1, function-bind@~1.1.0: 1277 | version "1.1.1" 1278 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1279 | 1280 | functional-red-black-tree@^1.0.1: 1281 | version "1.0.1" 1282 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 1283 | 1284 | gauge@~2.7.3: 1285 | version "2.7.4" 1286 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1287 | dependencies: 1288 | aproba "^1.0.3" 1289 | console-control-strings "^1.0.0" 1290 | has-unicode "^2.0.0" 1291 | object-assign "^4.1.0" 1292 | signal-exit "^3.0.0" 1293 | string-width "^1.0.1" 1294 | strip-ansi "^3.0.1" 1295 | wide-align "^1.1.0" 1296 | 1297 | get-caller-file@^1.0.1: 1298 | version "1.0.2" 1299 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1300 | 1301 | get-own-enumerable-property-symbols@^1.0.1: 1302 | version "1.0.1" 1303 | resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-1.0.1.tgz#f1d4e3ad1402e039898e56d1e9b9aa924c26e484" 1304 | 1305 | get-stream@^3.0.0: 1306 | version "3.0.0" 1307 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1308 | 1309 | getpass@^0.1.1: 1310 | version "0.1.7" 1311 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1312 | dependencies: 1313 | assert-plus "^1.0.0" 1314 | 1315 | glob-base@^0.3.0: 1316 | version "0.3.0" 1317 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1318 | dependencies: 1319 | glob-parent "^2.0.0" 1320 | is-glob "^2.0.0" 1321 | 1322 | glob-parent@^2.0.0: 1323 | version "2.0.0" 1324 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1325 | dependencies: 1326 | is-glob "^2.0.0" 1327 | 1328 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2, glob@~7.1.2: 1329 | version "7.1.2" 1330 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1331 | dependencies: 1332 | fs.realpath "^1.0.0" 1333 | inflight "^1.0.4" 1334 | inherits "2" 1335 | minimatch "^3.0.4" 1336 | once "^1.3.0" 1337 | path-is-absolute "^1.0.0" 1338 | 1339 | globals@^10.0.0: 1340 | version "10.1.0" 1341 | resolved "https://registry.yarnpkg.com/globals/-/globals-10.1.0.tgz#4425a1881be0d336b4a823a82a7be725d5dd987c" 1342 | 1343 | globals@^9.17.0, globals@^9.18.0: 1344 | version "9.18.0" 1345 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1346 | 1347 | globby@^5.0.0: 1348 | version "5.0.0" 1349 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1350 | dependencies: 1351 | array-union "^1.0.1" 1352 | arrify "^1.0.0" 1353 | glob "^7.0.3" 1354 | object-assign "^4.0.1" 1355 | pify "^2.0.0" 1356 | pinkie-promise "^2.0.0" 1357 | 1358 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1359 | version "4.1.11" 1360 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1361 | 1362 | growly@^1.3.0: 1363 | version "1.3.0" 1364 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1365 | 1366 | handlebars@^4.0.3: 1367 | version "4.0.10" 1368 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.10.tgz#3d30c718b09a3d96f23ea4cc1f403c4d3ba9ff4f" 1369 | dependencies: 1370 | async "^1.4.0" 1371 | optimist "^0.6.1" 1372 | source-map "^0.4.4" 1373 | optionalDependencies: 1374 | uglify-js "^2.6" 1375 | 1376 | har-schema@^1.0.5: 1377 | version "1.0.5" 1378 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1379 | 1380 | har-validator@~4.2.1: 1381 | version "4.2.1" 1382 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1383 | dependencies: 1384 | ajv "^4.9.1" 1385 | har-schema "^1.0.5" 1386 | 1387 | has-ansi@^2.0.0: 1388 | version "2.0.0" 1389 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1390 | dependencies: 1391 | ansi-regex "^2.0.0" 1392 | 1393 | has-flag@^1.0.0: 1394 | version "1.0.0" 1395 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1396 | 1397 | has-flag@^2.0.0: 1398 | version "2.0.0" 1399 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1400 | 1401 | has-unicode@^2.0.0: 1402 | version "2.0.1" 1403 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1404 | 1405 | has@^1.0.1, has@~1.0.1: 1406 | version "1.0.1" 1407 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1408 | dependencies: 1409 | function-bind "^1.0.2" 1410 | 1411 | hawk@~3.1.3: 1412 | version "3.1.3" 1413 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1414 | dependencies: 1415 | boom "2.x.x" 1416 | cryptiles "2.x.x" 1417 | hoek "2.x.x" 1418 | sntp "1.x.x" 1419 | 1420 | hoek@2.x.x: 1421 | version "2.16.3" 1422 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1423 | 1424 | home-or-tmp@^2.0.0: 1425 | version "2.0.0" 1426 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1427 | dependencies: 1428 | os-homedir "^1.0.0" 1429 | os-tmpdir "^1.0.1" 1430 | 1431 | hosted-git-info@^2.1.4: 1432 | version "2.5.0" 1433 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 1434 | 1435 | html-encoding-sniffer@^1.0.1: 1436 | version "1.0.1" 1437 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 1438 | dependencies: 1439 | whatwg-encoding "^1.0.1" 1440 | 1441 | http-signature@~1.1.0: 1442 | version "1.1.1" 1443 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1444 | dependencies: 1445 | assert-plus "^0.2.0" 1446 | jsprim "^1.2.2" 1447 | sshpk "^1.7.0" 1448 | 1449 | husky@^0.14.3: 1450 | version "0.14.3" 1451 | resolved "https://registry.yarnpkg.com/husky/-/husky-0.14.3.tgz#c69ed74e2d2779769a17ba8399b54ce0b63c12c3" 1452 | dependencies: 1453 | is-ci "^1.0.10" 1454 | normalize-path "^1.0.0" 1455 | strip-indent "^2.0.0" 1456 | 1457 | iconv-lite@0.4.13: 1458 | version "0.4.13" 1459 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 1460 | 1461 | iconv-lite@^0.4.17: 1462 | version "0.4.19" 1463 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 1464 | 1465 | ignore@^3.3.3: 1466 | version "3.3.5" 1467 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.5.tgz#c4e715455f6073a8d7e5dae72d2fc9d71663dba6" 1468 | 1469 | imurmurhash@^0.1.4: 1470 | version "0.1.4" 1471 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1472 | 1473 | indent-string@^2.1.0: 1474 | version "2.1.0" 1475 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 1476 | dependencies: 1477 | repeating "^2.0.0" 1478 | 1479 | indent-string@^3.0.0: 1480 | version "3.2.0" 1481 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" 1482 | 1483 | inflight@^1.0.4: 1484 | version "1.0.6" 1485 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1486 | dependencies: 1487 | once "^1.3.0" 1488 | wrappy "1" 1489 | 1490 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.3: 1491 | version "2.0.3" 1492 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1493 | 1494 | ini@~1.3.0: 1495 | version "1.3.4" 1496 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1497 | 1498 | inquirer@^3.0.1, inquirer@^3.0.6: 1499 | version "3.2.3" 1500 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.2.3.tgz#1c7b1731cf77b934ec47d22c9ac5aa8fe7fbe095" 1501 | dependencies: 1502 | ansi-escapes "^2.0.0" 1503 | chalk "^2.0.0" 1504 | cli-cursor "^2.1.0" 1505 | cli-width "^2.0.0" 1506 | external-editor "^2.0.4" 1507 | figures "^2.0.0" 1508 | lodash "^4.3.0" 1509 | mute-stream "0.0.7" 1510 | run-async "^2.2.0" 1511 | rx-lite "^4.0.8" 1512 | rx-lite-aggregates "^4.0.8" 1513 | string-width "^2.1.0" 1514 | strip-ansi "^4.0.0" 1515 | through "^2.3.6" 1516 | 1517 | invariant@^2.2.0, invariant@^2.2.2: 1518 | version "2.2.2" 1519 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1520 | dependencies: 1521 | loose-envify "^1.0.0" 1522 | 1523 | invert-kv@^1.0.0: 1524 | version "1.0.0" 1525 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1526 | 1527 | is-arrayish@^0.2.1: 1528 | version "0.2.1" 1529 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1530 | 1531 | is-binary-path@^1.0.0: 1532 | version "1.0.1" 1533 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1534 | dependencies: 1535 | binary-extensions "^1.0.0" 1536 | 1537 | is-buffer@^1.1.5: 1538 | version "1.1.5" 1539 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1540 | 1541 | is-builtin-module@^1.0.0: 1542 | version "1.0.0" 1543 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1544 | dependencies: 1545 | builtin-modules "^1.0.0" 1546 | 1547 | is-callable@^1.1.1, is-callable@^1.1.3: 1548 | version "1.1.3" 1549 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 1550 | 1551 | is-ci@^1.0.10: 1552 | version "1.0.10" 1553 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 1554 | dependencies: 1555 | ci-info "^1.0.0" 1556 | 1557 | is-date-object@^1.0.1: 1558 | version "1.0.1" 1559 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 1560 | 1561 | is-dotfile@^1.0.0: 1562 | version "1.0.3" 1563 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1564 | 1565 | is-equal-shallow@^0.1.3: 1566 | version "0.1.3" 1567 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1568 | dependencies: 1569 | is-primitive "^2.0.0" 1570 | 1571 | is-extendable@^0.1.1: 1572 | version "0.1.1" 1573 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1574 | 1575 | is-extglob@^1.0.0: 1576 | version "1.0.0" 1577 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1578 | 1579 | is-extglob@^2.1.1: 1580 | version "2.1.1" 1581 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1582 | 1583 | is-finite@^1.0.0: 1584 | version "1.0.2" 1585 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1586 | dependencies: 1587 | number-is-nan "^1.0.0" 1588 | 1589 | is-fullwidth-code-point@^1.0.0: 1590 | version "1.0.0" 1591 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1592 | dependencies: 1593 | number-is-nan "^1.0.0" 1594 | 1595 | is-fullwidth-code-point@^2.0.0: 1596 | version "2.0.0" 1597 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1598 | 1599 | is-function@~1.0.0: 1600 | version "1.0.1" 1601 | resolved "https://registry.yarnpkg.com/is-function/-/is-function-1.0.1.tgz#12cfb98b65b57dd3d193a3121f5f6e2f437602b5" 1602 | 1603 | is-glob@^2.0.0, is-glob@^2.0.1: 1604 | version "2.0.1" 1605 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1606 | dependencies: 1607 | is-extglob "^1.0.0" 1608 | 1609 | is-glob@^4.0.0: 1610 | version "4.0.0" 1611 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.0.tgz#9521c76845cc2610a85203ddf080a958c2ffabc0" 1612 | dependencies: 1613 | is-extglob "^2.1.1" 1614 | 1615 | is-number@^2.1.0: 1616 | version "2.1.0" 1617 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1618 | dependencies: 1619 | kind-of "^3.0.2" 1620 | 1621 | is-number@^3.0.0: 1622 | version "3.0.0" 1623 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1624 | dependencies: 1625 | kind-of "^3.0.2" 1626 | 1627 | is-obj@^1.0.1: 1628 | version "1.0.1" 1629 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 1630 | 1631 | is-path-cwd@^1.0.0: 1632 | version "1.0.0" 1633 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1634 | 1635 | is-path-in-cwd@^1.0.0: 1636 | version "1.0.0" 1637 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 1638 | dependencies: 1639 | is-path-inside "^1.0.0" 1640 | 1641 | is-path-inside@^1.0.0: 1642 | version "1.0.0" 1643 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 1644 | dependencies: 1645 | path-is-inside "^1.0.1" 1646 | 1647 | is-posix-bracket@^0.1.0: 1648 | version "0.1.1" 1649 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1650 | 1651 | is-primitive@^2.0.0: 1652 | version "2.0.0" 1653 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1654 | 1655 | is-promise@^2.1.0: 1656 | version "2.1.0" 1657 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1658 | 1659 | is-regex@^1.0.4: 1660 | version "1.0.4" 1661 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 1662 | dependencies: 1663 | has "^1.0.1" 1664 | 1665 | is-regexp@^1.0.0: 1666 | version "1.0.0" 1667 | resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069" 1668 | 1669 | is-resolvable@^1.0.0: 1670 | version "1.0.0" 1671 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 1672 | dependencies: 1673 | tryit "^1.0.1" 1674 | 1675 | is-stream@^1.1.0: 1676 | version "1.1.0" 1677 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1678 | 1679 | is-symbol@^1.0.1: 1680 | version "1.0.1" 1681 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 1682 | 1683 | is-typedarray@~1.0.0: 1684 | version "1.0.0" 1685 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1686 | 1687 | is-utf8@^0.2.0: 1688 | version "0.2.1" 1689 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1690 | 1691 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1692 | version "1.0.0" 1693 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1694 | 1695 | isexe@^2.0.0: 1696 | version "2.0.0" 1697 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1698 | 1699 | isobject@^2.0.0: 1700 | version "2.1.0" 1701 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1702 | dependencies: 1703 | isarray "1.0.0" 1704 | 1705 | isstream@~0.1.2: 1706 | version "0.1.2" 1707 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1708 | 1709 | istanbul-api@^1.1.1: 1710 | version "1.1.14" 1711 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.1.14.tgz#25bc5701f7c680c0ffff913de46e3619a3a6e680" 1712 | dependencies: 1713 | async "^2.1.4" 1714 | fileset "^2.0.2" 1715 | istanbul-lib-coverage "^1.1.1" 1716 | istanbul-lib-hook "^1.0.7" 1717 | istanbul-lib-instrument "^1.8.0" 1718 | istanbul-lib-report "^1.1.1" 1719 | istanbul-lib-source-maps "^1.2.1" 1720 | istanbul-reports "^1.1.2" 1721 | js-yaml "^3.7.0" 1722 | mkdirp "^0.5.1" 1723 | once "^1.4.0" 1724 | 1725 | istanbul-lib-coverage@^1.0.1, istanbul-lib-coverage@^1.1.1: 1726 | version "1.1.1" 1727 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da" 1728 | 1729 | istanbul-lib-hook@^1.0.7: 1730 | version "1.0.7" 1731 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.7.tgz#dd6607f03076578fe7d6f2a630cf143b49bacddc" 1732 | dependencies: 1733 | append-transform "^0.4.0" 1734 | 1735 | istanbul-lib-instrument@^1.4.2, istanbul-lib-instrument@^1.7.2, istanbul-lib-instrument@^1.8.0: 1736 | version "1.8.0" 1737 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.8.0.tgz#66f6c9421cc9ec4704f76f2db084ba9078a2b532" 1738 | dependencies: 1739 | babel-generator "^6.18.0" 1740 | babel-template "^6.16.0" 1741 | babel-traverse "^6.18.0" 1742 | babel-types "^6.18.0" 1743 | babylon "^6.18.0" 1744 | istanbul-lib-coverage "^1.1.1" 1745 | semver "^5.3.0" 1746 | 1747 | istanbul-lib-report@^1.1.1: 1748 | version "1.1.1" 1749 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#f0e55f56655ffa34222080b7a0cd4760e1405fc9" 1750 | dependencies: 1751 | istanbul-lib-coverage "^1.1.1" 1752 | mkdirp "^0.5.1" 1753 | path-parse "^1.0.5" 1754 | supports-color "^3.1.2" 1755 | 1756 | istanbul-lib-source-maps@^1.1.0, istanbul-lib-source-maps@^1.2.1: 1757 | version "1.2.1" 1758 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.1.tgz#a6fe1acba8ce08eebc638e572e294d267008aa0c" 1759 | dependencies: 1760 | debug "^2.6.3" 1761 | istanbul-lib-coverage "^1.1.1" 1762 | mkdirp "^0.5.1" 1763 | rimraf "^2.6.1" 1764 | source-map "^0.5.3" 1765 | 1766 | istanbul-reports@^1.1.2: 1767 | version "1.1.2" 1768 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.2.tgz#0fb2e3f6aa9922bd3ce45d05d8ab4d5e8e07bd4f" 1769 | dependencies: 1770 | handlebars "^4.0.3" 1771 | 1772 | jest-changed-files@^21.0.2: 1773 | version "21.0.2" 1774 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-21.0.2.tgz#0a74f35cf2d3b7c8ef9ab4fac0a75409f81ec1b0" 1775 | dependencies: 1776 | throat "^4.0.0" 1777 | 1778 | jest-cli@^21.0.2: 1779 | version "21.0.2" 1780 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-21.0.2.tgz#2e08af63d44fc21284ebf496cf71e381f3cc9786" 1781 | dependencies: 1782 | ansi-escapes "^3.0.0" 1783 | chalk "^2.0.1" 1784 | glob "^7.1.2" 1785 | graceful-fs "^4.1.11" 1786 | is-ci "^1.0.10" 1787 | istanbul-api "^1.1.1" 1788 | istanbul-lib-coverage "^1.0.1" 1789 | istanbul-lib-instrument "^1.4.2" 1790 | istanbul-lib-source-maps "^1.1.0" 1791 | jest-changed-files "^21.0.2" 1792 | jest-config "^21.0.2" 1793 | jest-environment-jsdom "^21.0.2" 1794 | jest-haste-map "^21.0.2" 1795 | jest-message-util "^21.0.2" 1796 | jest-regex-util "^21.0.2" 1797 | jest-resolve-dependencies "^21.0.2" 1798 | jest-runner "^21.0.2" 1799 | jest-runtime "^21.0.2" 1800 | jest-snapshot "^21.0.2" 1801 | jest-util "^21.0.2" 1802 | micromatch "^2.3.11" 1803 | node-notifier "^5.0.2" 1804 | pify "^3.0.0" 1805 | slash "^1.0.0" 1806 | string-length "^2.0.0" 1807 | strip-ansi "^4.0.0" 1808 | which "^1.2.12" 1809 | worker-farm "^1.3.1" 1810 | yargs "^9.0.0" 1811 | 1812 | jest-config@^21.0.2: 1813 | version "21.0.2" 1814 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-21.0.2.tgz#ea42b94f3c22ae4e4aa11c69f5b45e34e342199d" 1815 | dependencies: 1816 | chalk "^2.0.1" 1817 | glob "^7.1.1" 1818 | jest-environment-jsdom "^21.0.2" 1819 | jest-environment-node "^21.0.2" 1820 | jest-get-type "^21.0.2" 1821 | jest-jasmine2 "^21.0.2" 1822 | jest-regex-util "^21.0.2" 1823 | jest-resolve "^21.0.2" 1824 | jest-util "^21.0.2" 1825 | jest-validate "^21.0.2" 1826 | pretty-format "^21.0.2" 1827 | 1828 | jest-diff@^21.0.2: 1829 | version "21.0.2" 1830 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-21.0.2.tgz#751014f36ad5d505f6affce5542fde0e444ee50a" 1831 | dependencies: 1832 | chalk "^2.0.1" 1833 | diff "^3.2.0" 1834 | jest-get-type "^21.0.2" 1835 | pretty-format "^21.0.2" 1836 | 1837 | jest-diff@^21.2.1: 1838 | version "21.2.1" 1839 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-21.2.1.tgz#46cccb6cab2d02ce98bc314011764bb95b065b4f" 1840 | dependencies: 1841 | chalk "^2.0.1" 1842 | diff "^3.2.0" 1843 | jest-get-type "^21.2.0" 1844 | pretty-format "^21.2.1" 1845 | 1846 | jest-docblock@^21.0.2: 1847 | version "21.0.2" 1848 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-21.0.2.tgz#66f69ddb440799fc32f91d0ac3d8d35e99e2032f" 1849 | 1850 | jest-each@^0.3.1: 1851 | version "0.3.1" 1852 | resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-0.3.1.tgz#524f16be24f0e54b2dc54f4281bcac6d3a16c1c6" 1853 | dependencies: 1854 | sprintf-js "^1.0.3" 1855 | 1856 | jest-environment-jsdom@^21.0.2: 1857 | version "21.0.2" 1858 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-21.0.2.tgz#6f6ab5bd71970d1900fbd47a46701c0a07fa3be5" 1859 | dependencies: 1860 | jest-mock "^21.0.2" 1861 | jest-util "^21.0.2" 1862 | jsdom "^9.12.0" 1863 | 1864 | jest-environment-node@^21.0.2: 1865 | version "21.0.2" 1866 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-21.0.2.tgz#4267ceb39551f8ecaed182ab882a93ef4d5de240" 1867 | dependencies: 1868 | jest-mock "^21.0.2" 1869 | jest-util "^21.0.2" 1870 | 1871 | jest-extended@^0.5.0: 1872 | version "0.5.0" 1873 | resolved "https://registry.yarnpkg.com/jest-extended/-/jest-extended-0.5.0.tgz#910379002655ee3fd601b8b2b2b6027122628bb4" 1874 | dependencies: 1875 | chalk "^2.3.0" 1876 | expect "^21.2.1" 1877 | jest-matcher-utils "^21.2.1" 1878 | 1879 | jest-get-type@^21.0.2: 1880 | version "21.0.2" 1881 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-21.0.2.tgz#304e6b816dd33cd1f47aba0597bcad258a509fc6" 1882 | 1883 | jest-get-type@^21.2.0: 1884 | version "21.2.0" 1885 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-21.2.0.tgz#f6376ab9db4b60d81e39f30749c6c466f40d4a23" 1886 | 1887 | jest-haste-map@^21.0.2: 1888 | version "21.0.2" 1889 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-21.0.2.tgz#bd98bc6cd6f207eb029b2f5918da1a9347eb11b7" 1890 | dependencies: 1891 | fb-watchman "^2.0.0" 1892 | graceful-fs "^4.1.11" 1893 | jest-docblock "^21.0.2" 1894 | micromatch "^2.3.11" 1895 | sane "^2.0.0" 1896 | worker-farm "^1.3.1" 1897 | 1898 | jest-jasmine2@^21.0.2: 1899 | version "21.0.2" 1900 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-21.0.2.tgz#a368abb3a686def4d6e763509a265104943cd469" 1901 | dependencies: 1902 | chalk "^2.0.1" 1903 | expect "^21.0.2" 1904 | graceful-fs "^4.1.11" 1905 | jest-diff "^21.0.2" 1906 | jest-matcher-utils "^21.0.2" 1907 | jest-message-util "^21.0.2" 1908 | jest-snapshot "^21.0.2" 1909 | p-cancelable "^0.3.0" 1910 | 1911 | jest-matcher-utils@^20.0.3: 1912 | version "20.0.3" 1913 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-20.0.3.tgz#b3a6b8e37ca577803b0832a98b164f44b7815612" 1914 | dependencies: 1915 | chalk "^1.1.3" 1916 | pretty-format "^20.0.3" 1917 | 1918 | jest-matcher-utils@^21.0.2: 1919 | version "21.0.2" 1920 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-21.0.2.tgz#eb6736a45b698546d71f7e1ffbbd36587eeb27bc" 1921 | dependencies: 1922 | chalk "^2.0.1" 1923 | jest-get-type "^21.0.2" 1924 | pretty-format "^21.0.2" 1925 | 1926 | jest-matcher-utils@^21.2.1: 1927 | version "21.2.1" 1928 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-21.2.1.tgz#72c826eaba41a093ac2b4565f865eb8475de0f64" 1929 | dependencies: 1930 | chalk "^2.0.1" 1931 | jest-get-type "^21.2.0" 1932 | pretty-format "^21.2.1" 1933 | 1934 | jest-message-util@^21.0.2: 1935 | version "21.0.2" 1936 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-21.0.2.tgz#81242e07d426ad54c15f3d7c55b072e9db7b39a9" 1937 | dependencies: 1938 | chalk "^2.0.1" 1939 | micromatch "^2.3.11" 1940 | slash "^1.0.0" 1941 | 1942 | jest-message-util@^21.2.1: 1943 | version "21.2.1" 1944 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-21.2.1.tgz#bfe5d4692c84c827d1dcf41823795558f0a1acbe" 1945 | dependencies: 1946 | chalk "^2.0.1" 1947 | micromatch "^2.3.11" 1948 | slash "^1.0.0" 1949 | 1950 | jest-mock@^21.0.2: 1951 | version "21.0.2" 1952 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-21.0.2.tgz#5e92902450e1ce78be3864cc4d50dbd5d1582fbd" 1953 | 1954 | jest-regex-util@^21.0.2: 1955 | version "21.0.2" 1956 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-21.0.2.tgz#06248c07b53ff444223ebe8e33a25bc051ac976f" 1957 | 1958 | jest-regex-util@^21.2.0: 1959 | version "21.2.0" 1960 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-21.2.0.tgz#1b1e33e63143babc3e0f2e6c9b5ba1eb34b2d530" 1961 | 1962 | jest-resolve-dependencies@^21.0.2: 1963 | version "21.0.2" 1964 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-21.0.2.tgz#c42cc371034023ac1a226a7a52f86233c8871938" 1965 | dependencies: 1966 | jest-regex-util "^21.0.2" 1967 | 1968 | jest-resolve@^21.0.2: 1969 | version "21.0.2" 1970 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-21.0.2.tgz#57b2c20cbeca2357eb5e638d5c28beca7f38c3f8" 1971 | dependencies: 1972 | browser-resolve "^1.11.2" 1973 | chalk "^2.0.1" 1974 | is-builtin-module "^1.0.0" 1975 | 1976 | jest-runner@^21.0.2: 1977 | version "21.0.2" 1978 | resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-21.0.2.tgz#1462d431d25f7744e8b5e03837bbf9e268dc8b15" 1979 | dependencies: 1980 | jest-config "^21.0.2" 1981 | jest-docblock "^21.0.2" 1982 | jest-haste-map "^21.0.2" 1983 | jest-jasmine2 "^21.0.2" 1984 | jest-message-util "^21.0.2" 1985 | jest-runtime "^21.0.2" 1986 | jest-util "^21.0.2" 1987 | pify "^3.0.0" 1988 | throat "^4.0.0" 1989 | worker-farm "^1.3.1" 1990 | 1991 | jest-runtime@^21.0.2: 1992 | version "21.0.2" 1993 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-21.0.2.tgz#ce26ba06bcd5501991bd994b1eacc0c7c7913895" 1994 | dependencies: 1995 | babel-core "^6.0.0" 1996 | babel-jest "^21.0.2" 1997 | babel-plugin-istanbul "^4.0.0" 1998 | chalk "^2.0.1" 1999 | convert-source-map "^1.4.0" 2000 | graceful-fs "^4.1.11" 2001 | jest-config "^21.0.2" 2002 | jest-haste-map "^21.0.2" 2003 | jest-regex-util "^21.0.2" 2004 | jest-resolve "^21.0.2" 2005 | jest-util "^21.0.2" 2006 | json-stable-stringify "^1.0.1" 2007 | micromatch "^2.3.11" 2008 | slash "^1.0.0" 2009 | strip-bom "3.0.0" 2010 | write-file-atomic "^2.1.0" 2011 | yargs "^9.0.0" 2012 | 2013 | jest-snapshot@^21.0.2: 2014 | version "21.0.2" 2015 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-21.0.2.tgz#5b8f4dd05c1759381db835451fba4bcd85a55611" 2016 | dependencies: 2017 | chalk "^2.0.1" 2018 | jest-diff "^21.0.2" 2019 | jest-matcher-utils "^21.0.2" 2020 | mkdirp "^0.5.1" 2021 | natural-compare "^1.4.0" 2022 | pretty-format "^21.0.2" 2023 | 2024 | jest-util@^21.0.2: 2025 | version "21.0.2" 2026 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-21.0.2.tgz#3ee2380af25c414a39f07b23c84da6f2d5f1f76a" 2027 | dependencies: 2028 | callsites "^2.0.0" 2029 | chalk "^2.0.1" 2030 | graceful-fs "^4.1.11" 2031 | jest-message-util "^21.0.2" 2032 | jest-mock "^21.0.2" 2033 | jest-validate "^21.0.2" 2034 | mkdirp "^0.5.1" 2035 | 2036 | jest-validate@^20.0.3: 2037 | version "20.0.3" 2038 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-20.0.3.tgz#d0cfd1de4f579f298484925c280f8f1d94ec3cab" 2039 | dependencies: 2040 | chalk "^1.1.3" 2041 | jest-matcher-utils "^20.0.3" 2042 | leven "^2.1.0" 2043 | pretty-format "^20.0.3" 2044 | 2045 | jest-validate@^21.0.2: 2046 | version "21.0.2" 2047 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-21.0.2.tgz#dd066b257bd102759c214747d73bed6bcfa4349d" 2048 | dependencies: 2049 | chalk "^2.0.1" 2050 | jest-get-type "^21.0.2" 2051 | leven "^2.1.0" 2052 | pretty-format "^21.0.2" 2053 | 2054 | jest@^21.0.2: 2055 | version "21.0.2" 2056 | resolved "https://registry.yarnpkg.com/jest/-/jest-21.0.2.tgz#a5c9bdc9d4322ae672fe8cb3eaf25c268c5f04b2" 2057 | dependencies: 2058 | jest-cli "^21.0.2" 2059 | 2060 | js-tokens@^3.0.0, js-tokens@^3.0.2: 2061 | version "3.0.2" 2062 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 2063 | 2064 | js-yaml@^3.4.3, js-yaml@^3.7.0, js-yaml@^3.9.1: 2065 | version "3.10.0" 2066 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" 2067 | dependencies: 2068 | argparse "^1.0.7" 2069 | esprima "^4.0.0" 2070 | 2071 | jsbn@~0.1.0: 2072 | version "0.1.1" 2073 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2074 | 2075 | jschardet@^1.4.2: 2076 | version "1.5.1" 2077 | resolved "https://registry.yarnpkg.com/jschardet/-/jschardet-1.5.1.tgz#c519f629f86b3a5bedba58a88d311309eec097f9" 2078 | 2079 | jsdom@^9.12.0: 2080 | version "9.12.0" 2081 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 2082 | dependencies: 2083 | abab "^1.0.3" 2084 | acorn "^4.0.4" 2085 | acorn-globals "^3.1.0" 2086 | array-equal "^1.0.0" 2087 | content-type-parser "^1.0.1" 2088 | cssom ">= 0.3.2 < 0.4.0" 2089 | cssstyle ">= 0.2.37 < 0.3.0" 2090 | escodegen "^1.6.1" 2091 | html-encoding-sniffer "^1.0.1" 2092 | nwmatcher ">= 1.3.9 < 2.0.0" 2093 | parse5 "^1.5.1" 2094 | request "^2.79.0" 2095 | sax "^1.2.1" 2096 | symbol-tree "^3.2.1" 2097 | tough-cookie "^2.3.2" 2098 | webidl-conversions "^4.0.0" 2099 | whatwg-encoding "^1.0.1" 2100 | whatwg-url "^4.3.0" 2101 | xml-name-validator "^2.0.1" 2102 | 2103 | jsesc@^1.3.0: 2104 | version "1.3.0" 2105 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2106 | 2107 | json-schema-traverse@^0.3.0: 2108 | version "0.3.1" 2109 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 2110 | 2111 | json-schema@0.2.3: 2112 | version "0.2.3" 2113 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2114 | 2115 | json-stable-stringify@^1.0.1: 2116 | version "1.0.1" 2117 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2118 | dependencies: 2119 | jsonify "~0.0.0" 2120 | 2121 | json-stringify-safe@~5.0.1: 2122 | version "5.0.1" 2123 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2124 | 2125 | json5@^0.5.1: 2126 | version "0.5.1" 2127 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2128 | 2129 | jsonify@~0.0.0: 2130 | version "0.0.0" 2131 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2132 | 2133 | jsprim@^1.2.2: 2134 | version "1.4.1" 2135 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 2136 | dependencies: 2137 | assert-plus "1.0.0" 2138 | extsprintf "1.3.0" 2139 | json-schema "0.2.3" 2140 | verror "1.10.0" 2141 | 2142 | kind-of@^3.0.2: 2143 | version "3.2.2" 2144 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2145 | dependencies: 2146 | is-buffer "^1.1.5" 2147 | 2148 | kind-of@^4.0.0: 2149 | version "4.0.0" 2150 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2151 | dependencies: 2152 | is-buffer "^1.1.5" 2153 | 2154 | lazy-cache@^1.0.3: 2155 | version "1.0.4" 2156 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2157 | 2158 | lcid@^1.0.0: 2159 | version "1.0.0" 2160 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2161 | dependencies: 2162 | invert-kv "^1.0.0" 2163 | 2164 | leven@^2.1.0: 2165 | version "2.1.0" 2166 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 2167 | 2168 | levn@^0.3.0, levn@~0.3.0: 2169 | version "0.3.0" 2170 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2171 | dependencies: 2172 | prelude-ls "~1.1.2" 2173 | type-check "~0.3.2" 2174 | 2175 | lint-staged@^4.1.3: 2176 | version "4.1.3" 2177 | resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-4.1.3.tgz#07c592e4b8dee914450a183c761187dc53d079e2" 2178 | dependencies: 2179 | app-root-path "^2.0.0" 2180 | chalk "^2.1.0" 2181 | cosmiconfig "^1.1.0" 2182 | execa "^0.8.0" 2183 | is-glob "^4.0.0" 2184 | jest-validate "^20.0.3" 2185 | listr "^0.12.0" 2186 | lodash "^4.17.4" 2187 | log-symbols "^2.0.0" 2188 | minimatch "^3.0.0" 2189 | npm-which "^3.0.1" 2190 | p-map "^1.1.1" 2191 | staged-git-files "0.0.4" 2192 | stringify-object "^3.2.0" 2193 | 2194 | listr-silent-renderer@^1.1.1: 2195 | version "1.1.1" 2196 | resolved "https://registry.yarnpkg.com/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz#924b5a3757153770bf1a8e3fbf74b8bbf3f9242e" 2197 | 2198 | listr-update-renderer@^0.2.0: 2199 | version "0.2.0" 2200 | resolved "https://registry.yarnpkg.com/listr-update-renderer/-/listr-update-renderer-0.2.0.tgz#ca80e1779b4e70266807e8eed1ad6abe398550f9" 2201 | dependencies: 2202 | chalk "^1.1.3" 2203 | cli-truncate "^0.2.1" 2204 | elegant-spinner "^1.0.1" 2205 | figures "^1.7.0" 2206 | indent-string "^3.0.0" 2207 | log-symbols "^1.0.2" 2208 | log-update "^1.0.2" 2209 | strip-ansi "^3.0.1" 2210 | 2211 | listr-verbose-renderer@^0.4.0: 2212 | version "0.4.0" 2213 | resolved "https://registry.yarnpkg.com/listr-verbose-renderer/-/listr-verbose-renderer-0.4.0.tgz#44dc01bb0c34a03c572154d4d08cde9b1dc5620f" 2214 | dependencies: 2215 | chalk "^1.1.3" 2216 | cli-cursor "^1.0.2" 2217 | date-fns "^1.27.2" 2218 | figures "^1.7.0" 2219 | 2220 | listr@^0.12.0: 2221 | version "0.12.0" 2222 | resolved "https://registry.yarnpkg.com/listr/-/listr-0.12.0.tgz#6bce2c0f5603fa49580ea17cd6a00cc0e5fa451a" 2223 | dependencies: 2224 | chalk "^1.1.3" 2225 | cli-truncate "^0.2.1" 2226 | figures "^1.7.0" 2227 | indent-string "^2.1.0" 2228 | is-promise "^2.1.0" 2229 | is-stream "^1.1.0" 2230 | listr-silent-renderer "^1.1.1" 2231 | listr-update-renderer "^0.2.0" 2232 | listr-verbose-renderer "^0.4.0" 2233 | log-symbols "^1.0.2" 2234 | log-update "^1.0.2" 2235 | ora "^0.2.3" 2236 | p-map "^1.1.1" 2237 | rxjs "^5.0.0-beta.11" 2238 | stream-to-observable "^0.1.0" 2239 | strip-ansi "^3.0.1" 2240 | 2241 | load-json-file@^1.0.0: 2242 | version "1.1.0" 2243 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2244 | dependencies: 2245 | graceful-fs "^4.1.2" 2246 | parse-json "^2.2.0" 2247 | pify "^2.0.0" 2248 | pinkie-promise "^2.0.0" 2249 | strip-bom "^2.0.0" 2250 | 2251 | load-json-file@^2.0.0: 2252 | version "2.0.0" 2253 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 2254 | dependencies: 2255 | graceful-fs "^4.1.2" 2256 | parse-json "^2.2.0" 2257 | pify "^2.0.0" 2258 | strip-bom "^3.0.0" 2259 | 2260 | locate-path@^2.0.0: 2261 | version "2.0.0" 2262 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2263 | dependencies: 2264 | p-locate "^2.0.0" 2265 | path-exists "^3.0.0" 2266 | 2267 | lodash.assign@^4.0.3, lodash.assign@^4.0.6: 2268 | version "4.2.0" 2269 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" 2270 | 2271 | lodash.cond@^4.3.0: 2272 | version "4.5.2" 2273 | resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5" 2274 | 2275 | lodash.merge@^4.6.0: 2276 | version "4.6.0" 2277 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.0.tgz#69884ba144ac33fe699737a6086deffadd0f89c5" 2278 | 2279 | lodash@^4.0.0, lodash@^4.11.2, lodash@^4.14.0, lodash@^4.17.4, lodash@^4.2.0, lodash@^4.3.0: 2280 | version "4.17.4" 2281 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2282 | 2283 | log-symbols@^1.0.2: 2284 | version "1.0.2" 2285 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" 2286 | dependencies: 2287 | chalk "^1.0.0" 2288 | 2289 | log-symbols@^2.0.0: 2290 | version "2.0.0" 2291 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.0.0.tgz#595e63be4d5c8cbf294a9e09e0d5629f5913fc0c" 2292 | dependencies: 2293 | chalk "^2.0.1" 2294 | 2295 | log-update@^1.0.2: 2296 | version "1.0.2" 2297 | resolved "https://registry.yarnpkg.com/log-update/-/log-update-1.0.2.tgz#19929f64c4093d2d2e7075a1dad8af59c296b8d1" 2298 | dependencies: 2299 | ansi-escapes "^1.0.0" 2300 | cli-cursor "^1.0.2" 2301 | 2302 | longest@^1.0.1: 2303 | version "1.0.1" 2304 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2305 | 2306 | loose-envify@^1.0.0: 2307 | version "1.3.1" 2308 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2309 | dependencies: 2310 | js-tokens "^3.0.0" 2311 | 2312 | lru-cache@^4.0.1: 2313 | version "4.1.1" 2314 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 2315 | dependencies: 2316 | pseudomap "^1.0.2" 2317 | yallist "^2.1.2" 2318 | 2319 | makeerror@1.0.x: 2320 | version "1.0.11" 2321 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 2322 | dependencies: 2323 | tmpl "1.0.x" 2324 | 2325 | mem@^1.1.0: 2326 | version "1.1.0" 2327 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 2328 | dependencies: 2329 | mimic-fn "^1.0.0" 2330 | 2331 | merge@^1.1.3: 2332 | version "1.2.0" 2333 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 2334 | 2335 | micromatch@^2.1.5, micromatch@^2.3.11: 2336 | version "2.3.11" 2337 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2338 | dependencies: 2339 | arr-diff "^2.0.0" 2340 | array-unique "^0.2.1" 2341 | braces "^1.8.2" 2342 | expand-brackets "^0.1.4" 2343 | extglob "^0.3.1" 2344 | filename-regex "^2.0.0" 2345 | is-extglob "^1.0.0" 2346 | is-glob "^2.0.1" 2347 | kind-of "^3.0.2" 2348 | normalize-path "^2.0.1" 2349 | object.omit "^2.0.0" 2350 | parse-glob "^3.0.4" 2351 | regex-cache "^0.4.2" 2352 | 2353 | mime-db@~1.30.0: 2354 | version "1.30.0" 2355 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 2356 | 2357 | mime-types@^2.1.12, mime-types@~2.1.7: 2358 | version "2.1.17" 2359 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 2360 | dependencies: 2361 | mime-db "~1.30.0" 2362 | 2363 | mimic-fn@^1.0.0: 2364 | version "1.1.0" 2365 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 2366 | 2367 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 2368 | version "3.0.4" 2369 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2370 | dependencies: 2371 | brace-expansion "^1.1.7" 2372 | 2373 | minimist@0.0.8: 2374 | version "0.0.8" 2375 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2376 | 2377 | minimist@^1.1.1, minimist@^1.2.0, minimist@~1.2.0: 2378 | version "1.2.0" 2379 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2380 | 2381 | minimist@~0.0.1: 2382 | version "0.0.10" 2383 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 2384 | 2385 | "mkdirp@>=0.5 0", mkdirp@^0.5.1: 2386 | version "0.5.1" 2387 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2388 | dependencies: 2389 | minimist "0.0.8" 2390 | 2391 | ms@2.0.0: 2392 | version "2.0.0" 2393 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2394 | 2395 | mute-stream@0.0.7: 2396 | version "0.0.7" 2397 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 2398 | 2399 | nan@^2.3.0: 2400 | version "2.7.0" 2401 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.7.0.tgz#d95bf721ec877e08db276ed3fc6eb78f9083ad46" 2402 | 2403 | natural-compare@^1.4.0: 2404 | version "1.4.0" 2405 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2406 | 2407 | node-int64@^0.4.0: 2408 | version "0.4.0" 2409 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2410 | 2411 | node-notifier@^5.0.2: 2412 | version "5.1.2" 2413 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" 2414 | dependencies: 2415 | growly "^1.3.0" 2416 | semver "^5.3.0" 2417 | shellwords "^0.1.0" 2418 | which "^1.2.12" 2419 | 2420 | node-pre-gyp@^0.6.36: 2421 | version "0.6.37" 2422 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.37.tgz#3c872b236b2e266e4140578fe1ee88f693323a05" 2423 | dependencies: 2424 | mkdirp "^0.5.1" 2425 | nopt "^4.0.1" 2426 | npmlog "^4.0.2" 2427 | rc "^1.1.7" 2428 | request "^2.81.0" 2429 | rimraf "^2.6.1" 2430 | semver "^5.3.0" 2431 | tape "^4.6.3" 2432 | tar "^2.2.1" 2433 | tar-pack "^3.4.0" 2434 | 2435 | nopt@^4.0.1: 2436 | version "4.0.1" 2437 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2438 | dependencies: 2439 | abbrev "1" 2440 | osenv "^0.1.4" 2441 | 2442 | normalize-package-data@^2.3.2: 2443 | version "2.4.0" 2444 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 2445 | dependencies: 2446 | hosted-git-info "^2.1.4" 2447 | is-builtin-module "^1.0.0" 2448 | semver "2 || 3 || 4 || 5" 2449 | validate-npm-package-license "^3.0.1" 2450 | 2451 | normalize-path@^1.0.0: 2452 | version "1.0.0" 2453 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-1.0.0.tgz#32d0e472f91ff345701c15a8311018d3b0a90379" 2454 | 2455 | normalize-path@^2.0.0, normalize-path@^2.0.1: 2456 | version "2.1.1" 2457 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2458 | dependencies: 2459 | remove-trailing-separator "^1.0.1" 2460 | 2461 | npm-path@^2.0.2: 2462 | version "2.0.3" 2463 | resolved "https://registry.yarnpkg.com/npm-path/-/npm-path-2.0.3.tgz#15cff4e1c89a38da77f56f6055b24f975dfb2bbe" 2464 | dependencies: 2465 | which "^1.2.10" 2466 | 2467 | npm-run-path@^2.0.0: 2468 | version "2.0.2" 2469 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2470 | dependencies: 2471 | path-key "^2.0.0" 2472 | 2473 | npm-which@^3.0.1: 2474 | version "3.0.1" 2475 | resolved "https://registry.yarnpkg.com/npm-which/-/npm-which-3.0.1.tgz#9225f26ec3a285c209cae67c3b11a6b4ab7140aa" 2476 | dependencies: 2477 | commander "^2.9.0" 2478 | npm-path "^2.0.2" 2479 | which "^1.2.10" 2480 | 2481 | npmlog@^4.0.2: 2482 | version "4.1.2" 2483 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2484 | dependencies: 2485 | are-we-there-yet "~1.1.2" 2486 | console-control-strings "~1.1.0" 2487 | gauge "~2.7.3" 2488 | set-blocking "~2.0.0" 2489 | 2490 | number-is-nan@^1.0.0: 2491 | version "1.0.1" 2492 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2493 | 2494 | "nwmatcher@>= 1.3.9 < 2.0.0": 2495 | version "1.4.1" 2496 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.1.tgz#7ae9b07b0ea804db7e25f05cb5fe4097d4e4949f" 2497 | 2498 | oauth-sign@~0.8.1: 2499 | version "0.8.2" 2500 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2501 | 2502 | object-assign@^4.0.1, object-assign@^4.1.0: 2503 | version "4.1.1" 2504 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2505 | 2506 | object-inspect@~1.3.0: 2507 | version "1.3.0" 2508 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.3.0.tgz#5b1eb8e6742e2ee83342a637034d844928ba2f6d" 2509 | 2510 | object-keys@^1.0.8: 2511 | version "1.0.11" 2512 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 2513 | 2514 | object.omit@^2.0.0: 2515 | version "2.0.1" 2516 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2517 | dependencies: 2518 | for-own "^0.1.4" 2519 | is-extendable "^0.1.1" 2520 | 2521 | once@^1.3.0, once@^1.3.3, once@^1.4.0: 2522 | version "1.4.0" 2523 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2524 | dependencies: 2525 | wrappy "1" 2526 | 2527 | onetime@^1.0.0: 2528 | version "1.1.0" 2529 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 2530 | 2531 | onetime@^2.0.0: 2532 | version "2.0.1" 2533 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2534 | dependencies: 2535 | mimic-fn "^1.0.0" 2536 | 2537 | optimist@^0.6.1: 2538 | version "0.6.1" 2539 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2540 | dependencies: 2541 | minimist "~0.0.1" 2542 | wordwrap "~0.0.2" 2543 | 2544 | optionator@^0.8.1, optionator@^0.8.2: 2545 | version "0.8.2" 2546 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2547 | dependencies: 2548 | deep-is "~0.1.3" 2549 | fast-levenshtein "~2.0.4" 2550 | levn "~0.3.0" 2551 | prelude-ls "~1.1.2" 2552 | type-check "~0.3.2" 2553 | wordwrap "~1.0.0" 2554 | 2555 | ora@^0.2.3: 2556 | version "0.2.3" 2557 | resolved "https://registry.yarnpkg.com/ora/-/ora-0.2.3.tgz#37527d220adcd53c39b73571d754156d5db657a4" 2558 | dependencies: 2559 | chalk "^1.1.1" 2560 | cli-cursor "^1.0.2" 2561 | cli-spinners "^0.1.2" 2562 | object-assign "^4.0.1" 2563 | 2564 | os-homedir@^1.0.0, os-homedir@^1.0.1: 2565 | version "1.0.2" 2566 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2567 | 2568 | os-locale@^1.4.0: 2569 | version "1.4.0" 2570 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2571 | dependencies: 2572 | lcid "^1.0.0" 2573 | 2574 | os-locale@^2.0.0: 2575 | version "2.1.0" 2576 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 2577 | dependencies: 2578 | execa "^0.7.0" 2579 | lcid "^1.0.0" 2580 | mem "^1.1.0" 2581 | 2582 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.1: 2583 | version "1.0.2" 2584 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2585 | 2586 | osenv@^0.1.4: 2587 | version "0.1.4" 2588 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2589 | dependencies: 2590 | os-homedir "^1.0.0" 2591 | os-tmpdir "^1.0.0" 2592 | 2593 | output-file-sync@^1.1.2: 2594 | version "1.1.2" 2595 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 2596 | dependencies: 2597 | graceful-fs "^4.1.4" 2598 | mkdirp "^0.5.1" 2599 | object-assign "^4.1.0" 2600 | 2601 | p-cancelable@^0.3.0: 2602 | version "0.3.0" 2603 | resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-0.3.0.tgz#b9e123800bcebb7ac13a479be195b507b98d30fa" 2604 | 2605 | p-finally@^1.0.0: 2606 | version "1.0.0" 2607 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2608 | 2609 | p-limit@^1.1.0: 2610 | version "1.1.0" 2611 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 2612 | 2613 | p-locate@^2.0.0: 2614 | version "2.0.0" 2615 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2616 | dependencies: 2617 | p-limit "^1.1.0" 2618 | 2619 | p-map@^1.1.1: 2620 | version "1.2.0" 2621 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.2.0.tgz#e4e94f311eabbc8633a1e79908165fca26241b6b" 2622 | 2623 | parse-glob@^3.0.4: 2624 | version "3.0.4" 2625 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2626 | dependencies: 2627 | glob-base "^0.3.0" 2628 | is-dotfile "^1.0.0" 2629 | is-extglob "^1.0.0" 2630 | is-glob "^2.0.0" 2631 | 2632 | parse-json@^2.2.0: 2633 | version "2.2.0" 2634 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2635 | dependencies: 2636 | error-ex "^1.2.0" 2637 | 2638 | parse5@^1.5.1: 2639 | version "1.5.1" 2640 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 2641 | 2642 | path-exists@^2.0.0: 2643 | version "2.1.0" 2644 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2645 | dependencies: 2646 | pinkie-promise "^2.0.0" 2647 | 2648 | path-exists@^3.0.0: 2649 | version "3.0.0" 2650 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2651 | 2652 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 2653 | version "1.0.1" 2654 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2655 | 2656 | path-is-inside@^1.0.1, path-is-inside@^1.0.2: 2657 | version "1.0.2" 2658 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2659 | 2660 | path-key@^2.0.0: 2661 | version "2.0.1" 2662 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2663 | 2664 | path-parse@^1.0.5: 2665 | version "1.0.5" 2666 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2667 | 2668 | path-type@^1.0.0: 2669 | version "1.1.0" 2670 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2671 | dependencies: 2672 | graceful-fs "^4.1.2" 2673 | pify "^2.0.0" 2674 | pinkie-promise "^2.0.0" 2675 | 2676 | path-type@^2.0.0: 2677 | version "2.0.0" 2678 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 2679 | dependencies: 2680 | pify "^2.0.0" 2681 | 2682 | performance-now@^0.2.0: 2683 | version "0.2.0" 2684 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2685 | 2686 | pify@^2.0.0, pify@^2.3.0: 2687 | version "2.3.0" 2688 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2689 | 2690 | pify@^3.0.0: 2691 | version "3.0.0" 2692 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 2693 | 2694 | pinkie-promise@^2.0.0: 2695 | version "2.0.1" 2696 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2697 | dependencies: 2698 | pinkie "^2.0.0" 2699 | 2700 | pinkie@^2.0.0: 2701 | version "2.0.4" 2702 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2703 | 2704 | pkg-dir@^1.0.0: 2705 | version "1.0.0" 2706 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 2707 | dependencies: 2708 | find-up "^1.0.0" 2709 | 2710 | pluralize@^4.0.0: 2711 | version "4.0.0" 2712 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-4.0.0.tgz#59b708c1c0190a2f692f1c7618c446b052fd1762" 2713 | 2714 | prelude-ls@~1.1.2: 2715 | version "1.1.2" 2716 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2717 | 2718 | preserve@^0.2.0: 2719 | version "0.2.0" 2720 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2721 | 2722 | prettier@^1.6.1: 2723 | version "1.6.1" 2724 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.6.1.tgz#850f411a3116226193e32ea5acfc21c0f9a76d7d" 2725 | 2726 | pretty-format@^20.0.3: 2727 | version "20.0.3" 2728 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-20.0.3.tgz#020e350a560a1fe1a98dc3beb6ccffb386de8b14" 2729 | dependencies: 2730 | ansi-regex "^2.1.1" 2731 | ansi-styles "^3.0.0" 2732 | 2733 | pretty-format@^21.0.2: 2734 | version "21.0.2" 2735 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-21.0.2.tgz#76adcebd836c41ccd2e6b626e70f63050d2a3534" 2736 | dependencies: 2737 | ansi-regex "^3.0.0" 2738 | ansi-styles "^3.2.0" 2739 | 2740 | pretty-format@^21.2.1: 2741 | version "21.2.1" 2742 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-21.2.1.tgz#ae5407f3cf21066cd011aa1ba5fce7b6a2eddb36" 2743 | dependencies: 2744 | ansi-regex "^3.0.0" 2745 | ansi-styles "^3.2.0" 2746 | 2747 | private@^0.1.7: 2748 | version "0.1.7" 2749 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 2750 | 2751 | process-nextick-args@~1.0.6: 2752 | version "1.0.7" 2753 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2754 | 2755 | progress@^2.0.0: 2756 | version "2.0.0" 2757 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" 2758 | 2759 | prr@~0.0.0: 2760 | version "0.0.0" 2761 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 2762 | 2763 | pseudomap@^1.0.2: 2764 | version "1.0.2" 2765 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2766 | 2767 | punycode@^1.4.1: 2768 | version "1.4.1" 2769 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2770 | 2771 | qs@~6.4.0: 2772 | version "6.4.0" 2773 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2774 | 2775 | randomatic@^1.1.3: 2776 | version "1.1.7" 2777 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 2778 | dependencies: 2779 | is-number "^3.0.0" 2780 | kind-of "^4.0.0" 2781 | 2782 | rc@^1.1.7: 2783 | version "1.2.1" 2784 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 2785 | dependencies: 2786 | deep-extend "~0.4.0" 2787 | ini "~1.3.0" 2788 | minimist "^1.2.0" 2789 | strip-json-comments "~2.0.1" 2790 | 2791 | read-pkg-up@^1.0.1: 2792 | version "1.0.1" 2793 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2794 | dependencies: 2795 | find-up "^1.0.0" 2796 | read-pkg "^1.0.0" 2797 | 2798 | read-pkg-up@^2.0.0: 2799 | version "2.0.0" 2800 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 2801 | dependencies: 2802 | find-up "^2.0.0" 2803 | read-pkg "^2.0.0" 2804 | 2805 | read-pkg@^1.0.0: 2806 | version "1.1.0" 2807 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2808 | dependencies: 2809 | load-json-file "^1.0.0" 2810 | normalize-package-data "^2.3.2" 2811 | path-type "^1.0.0" 2812 | 2813 | read-pkg@^2.0.0: 2814 | version "2.0.0" 2815 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 2816 | dependencies: 2817 | load-json-file "^2.0.0" 2818 | normalize-package-data "^2.3.2" 2819 | path-type "^2.0.0" 2820 | 2821 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.2: 2822 | version "2.3.3" 2823 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 2824 | dependencies: 2825 | core-util-is "~1.0.0" 2826 | inherits "~2.0.3" 2827 | isarray "~1.0.0" 2828 | process-nextick-args "~1.0.6" 2829 | safe-buffer "~5.1.1" 2830 | string_decoder "~1.0.3" 2831 | util-deprecate "~1.0.1" 2832 | 2833 | readdirp@^2.0.0: 2834 | version "2.1.0" 2835 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2836 | dependencies: 2837 | graceful-fs "^4.1.2" 2838 | minimatch "^3.0.2" 2839 | readable-stream "^2.0.2" 2840 | set-immediate-shim "^1.0.1" 2841 | 2842 | regenerator-runtime@^0.10.5: 2843 | version "0.10.5" 2844 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 2845 | 2846 | regenerator-runtime@^0.11.0: 2847 | version "0.11.0" 2848 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1" 2849 | 2850 | regex-cache@^0.4.2: 2851 | version "0.4.4" 2852 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 2853 | dependencies: 2854 | is-equal-shallow "^0.1.3" 2855 | 2856 | remove-trailing-separator@^1.0.1: 2857 | version "1.1.0" 2858 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2859 | 2860 | repeat-element@^1.1.2: 2861 | version "1.1.2" 2862 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2863 | 2864 | repeat-string@^1.5.2: 2865 | version "1.6.1" 2866 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2867 | 2868 | repeating@^2.0.0: 2869 | version "2.0.1" 2870 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2871 | dependencies: 2872 | is-finite "^1.0.0" 2873 | 2874 | request@2.81.0, request@^2.72.0, request@^2.79.0, request@^2.81.0: 2875 | version "2.81.0" 2876 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2877 | dependencies: 2878 | aws-sign2 "~0.6.0" 2879 | aws4 "^1.2.1" 2880 | caseless "~0.12.0" 2881 | combined-stream "~1.0.5" 2882 | extend "~3.0.0" 2883 | forever-agent "~0.6.1" 2884 | form-data "~2.1.1" 2885 | har-validator "~4.2.1" 2886 | hawk "~3.1.3" 2887 | http-signature "~1.1.0" 2888 | is-typedarray "~1.0.0" 2889 | isstream "~0.1.2" 2890 | json-stringify-safe "~5.0.1" 2891 | mime-types "~2.1.7" 2892 | oauth-sign "~0.8.1" 2893 | performance-now "^0.2.0" 2894 | qs "~6.4.0" 2895 | safe-buffer "^5.0.1" 2896 | stringstream "~0.0.4" 2897 | tough-cookie "~2.3.0" 2898 | tunnel-agent "^0.6.0" 2899 | uuid "^3.0.0" 2900 | 2901 | require-directory@^2.1.1: 2902 | version "2.1.1" 2903 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2904 | 2905 | require-from-string@^1.1.0: 2906 | version "1.2.1" 2907 | resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-1.2.1.tgz#529c9ccef27380adfec9a2f965b649bbee636418" 2908 | 2909 | require-main-filename@^1.0.1: 2910 | version "1.0.1" 2911 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2912 | 2913 | require-uncached@^1.0.3: 2914 | version "1.0.3" 2915 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 2916 | dependencies: 2917 | caller-path "^0.1.0" 2918 | resolve-from "^1.0.0" 2919 | 2920 | resolve-from@^1.0.0: 2921 | version "1.0.1" 2922 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 2923 | 2924 | resolve@1.1.7: 2925 | version "1.1.7" 2926 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2927 | 2928 | resolve@^1.2.0, resolve@~1.4.0: 2929 | version "1.4.0" 2930 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.4.0.tgz#a75be01c53da25d934a98ebd0e4c4a7312f92a86" 2931 | dependencies: 2932 | path-parse "^1.0.5" 2933 | 2934 | restore-cursor@^1.0.1: 2935 | version "1.0.1" 2936 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 2937 | dependencies: 2938 | exit-hook "^1.0.0" 2939 | onetime "^1.0.0" 2940 | 2941 | restore-cursor@^2.0.0: 2942 | version "2.0.0" 2943 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 2944 | dependencies: 2945 | onetime "^2.0.0" 2946 | signal-exit "^3.0.2" 2947 | 2948 | resumer@~0.0.0: 2949 | version "0.0.0" 2950 | resolved "https://registry.yarnpkg.com/resumer/-/resumer-0.0.0.tgz#f1e8f461e4064ba39e82af3cdc2a8c893d076759" 2951 | dependencies: 2952 | through "~2.3.4" 2953 | 2954 | right-align@^0.1.1: 2955 | version "0.1.3" 2956 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2957 | dependencies: 2958 | align-text "^0.1.1" 2959 | 2960 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1: 2961 | version "2.6.2" 2962 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2963 | dependencies: 2964 | glob "^7.0.5" 2965 | 2966 | run-async@^2.2.0: 2967 | version "2.3.0" 2968 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 2969 | dependencies: 2970 | is-promise "^2.1.0" 2971 | 2972 | rx-lite-aggregates@^4.0.8: 2973 | version "4.0.8" 2974 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 2975 | dependencies: 2976 | rx-lite "*" 2977 | 2978 | rx-lite@*, rx-lite@^4.0.8: 2979 | version "4.0.8" 2980 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 2981 | 2982 | rxjs@^5.0.0-beta.11: 2983 | version "5.4.3" 2984 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.4.3.tgz#0758cddee6033d68e0fd53676f0f3596ce3d483f" 2985 | dependencies: 2986 | symbol-observable "^1.0.1" 2987 | 2988 | safe-buffer@^5.0.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2989 | version "5.1.1" 2990 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2991 | 2992 | sane@^2.0.0: 2993 | version "2.0.0" 2994 | resolved "https://registry.yarnpkg.com/sane/-/sane-2.0.0.tgz#99cb79f21f4a53a69d4d0cd957c2db04024b8eb2" 2995 | dependencies: 2996 | anymatch "^1.3.0" 2997 | exec-sh "^0.2.0" 2998 | fb-watchman "^2.0.0" 2999 | minimatch "^3.0.2" 3000 | minimist "^1.1.1" 3001 | walker "~1.0.5" 3002 | watch "~0.10.0" 3003 | optionalDependencies: 3004 | fsevents "^1.1.1" 3005 | 3006 | sax@^1.2.1: 3007 | version "1.2.4" 3008 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 3009 | 3010 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 3011 | version "5.4.1" 3012 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 3013 | 3014 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3015 | version "2.0.0" 3016 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3017 | 3018 | set-immediate-shim@^1.0.1: 3019 | version "1.0.1" 3020 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3021 | 3022 | shebang-command@^1.2.0: 3023 | version "1.2.0" 3024 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 3025 | dependencies: 3026 | shebang-regex "^1.0.0" 3027 | 3028 | shebang-regex@^1.0.0: 3029 | version "1.0.0" 3030 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3031 | 3032 | shellwords@^0.1.0: 3033 | version "0.1.1" 3034 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" 3035 | 3036 | signal-exit@^3.0.0, signal-exit@^3.0.2: 3037 | version "3.0.2" 3038 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3039 | 3040 | slash@^1.0.0: 3041 | version "1.0.0" 3042 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3043 | 3044 | slice-ansi@0.0.4: 3045 | version "0.0.4" 3046 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 3047 | 3048 | sntp@1.x.x: 3049 | version "1.0.9" 3050 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3051 | dependencies: 3052 | hoek "2.x.x" 3053 | 3054 | source-map-support@^0.4.15: 3055 | version "0.4.18" 3056 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 3057 | dependencies: 3058 | source-map "^0.5.6" 3059 | 3060 | source-map@^0.4.4: 3061 | version "0.4.4" 3062 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 3063 | dependencies: 3064 | amdefine ">=0.0.4" 3065 | 3066 | source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1, source-map@~0.5.6: 3067 | version "0.5.7" 3068 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 3069 | 3070 | spdx-correct@~1.0.0: 3071 | version "1.0.2" 3072 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3073 | dependencies: 3074 | spdx-license-ids "^1.0.2" 3075 | 3076 | spdx-expression-parse@~1.0.0: 3077 | version "1.0.4" 3078 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3079 | 3080 | spdx-license-ids@^1.0.2: 3081 | version "1.2.2" 3082 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3083 | 3084 | sprintf-js@^1.0.3: 3085 | version "1.1.1" 3086 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.1.tgz#36be78320afe5801f6cea3ee78b6e5aab940ea0c" 3087 | 3088 | sprintf-js@~1.0.2: 3089 | version "1.0.3" 3090 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3091 | 3092 | sshpk@^1.7.0: 3093 | version "1.13.1" 3094 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 3095 | dependencies: 3096 | asn1 "~0.2.3" 3097 | assert-plus "^1.0.0" 3098 | dashdash "^1.12.0" 3099 | getpass "^0.1.1" 3100 | optionalDependencies: 3101 | bcrypt-pbkdf "^1.0.0" 3102 | ecc-jsbn "~0.1.1" 3103 | jsbn "~0.1.0" 3104 | tweetnacl "~0.14.0" 3105 | 3106 | staged-git-files@0.0.4: 3107 | version "0.0.4" 3108 | resolved "https://registry.yarnpkg.com/staged-git-files/-/staged-git-files-0.0.4.tgz#d797e1b551ca7a639dec0237dc6eb4bb9be17d35" 3109 | 3110 | stream-to-observable@^0.1.0: 3111 | version "0.1.0" 3112 | resolved "https://registry.yarnpkg.com/stream-to-observable/-/stream-to-observable-0.1.0.tgz#45bf1d9f2d7dc09bed81f1c307c430e68b84cffe" 3113 | 3114 | string-length@^2.0.0: 3115 | version "2.0.0" 3116 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed" 3117 | dependencies: 3118 | astral-regex "^1.0.0" 3119 | strip-ansi "^4.0.0" 3120 | 3121 | string-width@^1.0.1, string-width@^1.0.2: 3122 | version "1.0.2" 3123 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3124 | dependencies: 3125 | code-point-at "^1.0.0" 3126 | is-fullwidth-code-point "^1.0.0" 3127 | strip-ansi "^3.0.0" 3128 | 3129 | string-width@^2.0.0, string-width@^2.1.0: 3130 | version "2.1.1" 3131 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3132 | dependencies: 3133 | is-fullwidth-code-point "^2.0.0" 3134 | strip-ansi "^4.0.0" 3135 | 3136 | string.prototype.trim@~1.1.2: 3137 | version "1.1.2" 3138 | resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.1.2.tgz#d04de2c89e137f4d7d206f086b5ed2fae6be8cea" 3139 | dependencies: 3140 | define-properties "^1.1.2" 3141 | es-abstract "^1.5.0" 3142 | function-bind "^1.0.2" 3143 | 3144 | string_decoder@~1.0.3: 3145 | version "1.0.3" 3146 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 3147 | dependencies: 3148 | safe-buffer "~5.1.0" 3149 | 3150 | stringify-object@^3.2.0: 3151 | version "3.2.0" 3152 | resolved "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.2.0.tgz#94370a135e41bc048358813bf99481f1315c6aa6" 3153 | dependencies: 3154 | get-own-enumerable-property-symbols "^1.0.1" 3155 | is-obj "^1.0.1" 3156 | is-regexp "^1.0.0" 3157 | 3158 | stringstream@~0.0.4: 3159 | version "0.0.5" 3160 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3161 | 3162 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3163 | version "3.0.1" 3164 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3165 | dependencies: 3166 | ansi-regex "^2.0.0" 3167 | 3168 | strip-ansi@^4.0.0: 3169 | version "4.0.0" 3170 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3171 | dependencies: 3172 | ansi-regex "^3.0.0" 3173 | 3174 | strip-bom@3.0.0, strip-bom@^3.0.0: 3175 | version "3.0.0" 3176 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3177 | 3178 | strip-bom@^2.0.0: 3179 | version "2.0.0" 3180 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3181 | dependencies: 3182 | is-utf8 "^0.2.0" 3183 | 3184 | strip-eof@^1.0.0: 3185 | version "1.0.0" 3186 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3187 | 3188 | strip-indent@^2.0.0: 3189 | version "2.0.0" 3190 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68" 3191 | 3192 | strip-json-comments@~2.0.1: 3193 | version "2.0.1" 3194 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3195 | 3196 | supports-color@^2.0.0: 3197 | version "2.0.0" 3198 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3199 | 3200 | supports-color@^3.1.2: 3201 | version "3.2.3" 3202 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3203 | dependencies: 3204 | has-flag "^1.0.0" 3205 | 3206 | supports-color@^4.0.0: 3207 | version "4.4.0" 3208 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.4.0.tgz#883f7ddabc165142b2a61427f3352ded195d1a3e" 3209 | dependencies: 3210 | has-flag "^2.0.0" 3211 | 3212 | symbol-observable@^1.0.1: 3213 | version "1.0.4" 3214 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d" 3215 | 3216 | symbol-tree@^3.2.1: 3217 | version "3.2.2" 3218 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 3219 | 3220 | table@^4.0.1: 3221 | version "4.0.1" 3222 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.1.tgz#a8116c133fac2c61f4a420ab6cdf5c4d61f0e435" 3223 | dependencies: 3224 | ajv "^4.7.0" 3225 | ajv-keywords "^1.0.0" 3226 | chalk "^1.1.1" 3227 | lodash "^4.0.0" 3228 | slice-ansi "0.0.4" 3229 | string-width "^2.0.0" 3230 | 3231 | tape@^4.6.3: 3232 | version "4.8.0" 3233 | resolved "https://registry.yarnpkg.com/tape/-/tape-4.8.0.tgz#f6a9fec41cc50a1de50fa33603ab580991f6068e" 3234 | dependencies: 3235 | deep-equal "~1.0.1" 3236 | defined "~1.0.0" 3237 | for-each "~0.3.2" 3238 | function-bind "~1.1.0" 3239 | glob "~7.1.2" 3240 | has "~1.0.1" 3241 | inherits "~2.0.3" 3242 | minimist "~1.2.0" 3243 | object-inspect "~1.3.0" 3244 | resolve "~1.4.0" 3245 | resumer "~0.0.0" 3246 | string.prototype.trim "~1.1.2" 3247 | through "~2.3.8" 3248 | 3249 | tar-pack@^3.4.0: 3250 | version "3.4.0" 3251 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 3252 | dependencies: 3253 | debug "^2.2.0" 3254 | fstream "^1.0.10" 3255 | fstream-ignore "^1.0.5" 3256 | once "^1.3.3" 3257 | readable-stream "^2.1.4" 3258 | rimraf "^2.5.1" 3259 | tar "^2.2.1" 3260 | uid-number "^0.0.6" 3261 | 3262 | tar@^2.2.1: 3263 | version "2.2.1" 3264 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3265 | dependencies: 3266 | block-stream "*" 3267 | fstream "^1.0.2" 3268 | inherits "2" 3269 | 3270 | test-exclude@^4.1.1: 3271 | version "4.1.1" 3272 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.1.tgz#4d84964b0966b0087ecc334a2ce002d3d9341e26" 3273 | dependencies: 3274 | arrify "^1.0.1" 3275 | micromatch "^2.3.11" 3276 | object-assign "^4.1.0" 3277 | read-pkg-up "^1.0.1" 3278 | require-main-filename "^1.0.1" 3279 | 3280 | text-table@~0.2.0: 3281 | version "0.2.0" 3282 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3283 | 3284 | throat@^4.0.0: 3285 | version "4.1.0" 3286 | resolved "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a" 3287 | 3288 | through@^2.3.6, through@~2.3.4, through@~2.3.8: 3289 | version "2.3.8" 3290 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3291 | 3292 | tmp@^0.0.31: 3293 | version "0.0.31" 3294 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.31.tgz#8f38ab9438e17315e5dbd8b3657e8bfb277ae4a7" 3295 | dependencies: 3296 | os-tmpdir "~1.0.1" 3297 | 3298 | tmpl@1.0.x: 3299 | version "1.0.4" 3300 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 3301 | 3302 | to-fast-properties@^1.0.3: 3303 | version "1.0.3" 3304 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3305 | 3306 | to-fast-properties@^2.0.0: 3307 | version "2.0.0" 3308 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 3309 | 3310 | tough-cookie@^2.3.2, tough-cookie@~2.3.0: 3311 | version "2.3.2" 3312 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 3313 | dependencies: 3314 | punycode "^1.4.1" 3315 | 3316 | tr46@~0.0.3: 3317 | version "0.0.3" 3318 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 3319 | 3320 | trim-right@^1.0.1: 3321 | version "1.0.1" 3322 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3323 | 3324 | tryit@^1.0.1: 3325 | version "1.0.3" 3326 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 3327 | 3328 | tunnel-agent@^0.6.0: 3329 | version "0.6.0" 3330 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3331 | dependencies: 3332 | safe-buffer "^5.0.1" 3333 | 3334 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3335 | version "0.14.5" 3336 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3337 | 3338 | type-check@~0.3.2: 3339 | version "0.3.2" 3340 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3341 | dependencies: 3342 | prelude-ls "~1.1.2" 3343 | 3344 | typedarray@^0.0.6: 3345 | version "0.0.6" 3346 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3347 | 3348 | uglify-js@^2.6: 3349 | version "2.8.29" 3350 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 3351 | dependencies: 3352 | source-map "~0.5.1" 3353 | yargs "~3.10.0" 3354 | optionalDependencies: 3355 | uglify-to-browserify "~1.0.0" 3356 | 3357 | uglify-to-browserify@~1.0.0: 3358 | version "1.0.2" 3359 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3360 | 3361 | uid-number@^0.0.6: 3362 | version "0.0.6" 3363 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3364 | 3365 | urlgrey@0.4.4: 3366 | version "0.4.4" 3367 | resolved "https://registry.yarnpkg.com/urlgrey/-/urlgrey-0.4.4.tgz#892fe95960805e85519f1cd4389f2cb4cbb7652f" 3368 | 3369 | user-home@^1.1.1: 3370 | version "1.1.1" 3371 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 3372 | 3373 | util-deprecate@~1.0.1: 3374 | version "1.0.2" 3375 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3376 | 3377 | uuid@^3.0.0: 3378 | version "3.1.0" 3379 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 3380 | 3381 | v8flags@^2.1.1: 3382 | version "2.1.1" 3383 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 3384 | dependencies: 3385 | user-home "^1.1.1" 3386 | 3387 | validate-npm-package-license@^3.0.1: 3388 | version "3.0.1" 3389 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3390 | dependencies: 3391 | spdx-correct "~1.0.0" 3392 | spdx-expression-parse "~1.0.0" 3393 | 3394 | verror@1.10.0: 3395 | version "1.10.0" 3396 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 3397 | dependencies: 3398 | assert-plus "^1.0.0" 3399 | core-util-is "1.0.2" 3400 | extsprintf "^1.2.0" 3401 | 3402 | walker@~1.0.5: 3403 | version "1.0.7" 3404 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 3405 | dependencies: 3406 | makeerror "1.0.x" 3407 | 3408 | watch@~0.10.0: 3409 | version "0.10.0" 3410 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" 3411 | 3412 | webidl-conversions@^3.0.0: 3413 | version "3.0.1" 3414 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 3415 | 3416 | webidl-conversions@^4.0.0: 3417 | version "4.0.2" 3418 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" 3419 | 3420 | whatwg-encoding@^1.0.1: 3421 | version "1.0.1" 3422 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 3423 | dependencies: 3424 | iconv-lite "0.4.13" 3425 | 3426 | whatwg-url@^4.3.0: 3427 | version "4.8.0" 3428 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.8.0.tgz#d2981aa9148c1e00a41c5a6131166ab4683bbcc0" 3429 | dependencies: 3430 | tr46 "~0.0.3" 3431 | webidl-conversions "^3.0.0" 3432 | 3433 | which-module@^1.0.0: 3434 | version "1.0.0" 3435 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 3436 | 3437 | which-module@^2.0.0: 3438 | version "2.0.0" 3439 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 3440 | 3441 | which@^1.2.10, which@^1.2.12, which@^1.2.9: 3442 | version "1.3.0" 3443 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 3444 | dependencies: 3445 | isexe "^2.0.0" 3446 | 3447 | wide-align@^1.1.0: 3448 | version "1.1.2" 3449 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 3450 | dependencies: 3451 | string-width "^1.0.2" 3452 | 3453 | window-size@0.1.0: 3454 | version "0.1.0" 3455 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3456 | 3457 | window-size@^0.2.0: 3458 | version "0.2.0" 3459 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.2.0.tgz#b4315bb4214a3d7058ebeee892e13fa24d98b075" 3460 | 3461 | wordwrap@0.0.2: 3462 | version "0.0.2" 3463 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3464 | 3465 | wordwrap@~0.0.2: 3466 | version "0.0.3" 3467 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3468 | 3469 | wordwrap@~1.0.0: 3470 | version "1.0.0" 3471 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3472 | 3473 | worker-farm@^1.3.1: 3474 | version "1.5.0" 3475 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.5.0.tgz#adfdf0cd40581465ed0a1f648f9735722afd5c8d" 3476 | dependencies: 3477 | errno "^0.1.4" 3478 | xtend "^4.0.1" 3479 | 3480 | wrap-ansi@^2.0.0: 3481 | version "2.1.0" 3482 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3483 | dependencies: 3484 | string-width "^1.0.1" 3485 | strip-ansi "^3.0.1" 3486 | 3487 | wrappy@1: 3488 | version "1.0.2" 3489 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3490 | 3491 | write-file-atomic@^2.1.0: 3492 | version "2.3.0" 3493 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" 3494 | dependencies: 3495 | graceful-fs "^4.1.11" 3496 | imurmurhash "^0.1.4" 3497 | signal-exit "^3.0.2" 3498 | 3499 | write@^0.2.1: 3500 | version "0.2.1" 3501 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 3502 | dependencies: 3503 | mkdirp "^0.5.1" 3504 | 3505 | xml-name-validator@^2.0.1: 3506 | version "2.0.1" 3507 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 3508 | 3509 | xtend@^4.0.1: 3510 | version "4.0.1" 3511 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3512 | 3513 | y18n@^3.2.1: 3514 | version "3.2.1" 3515 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3516 | 3517 | yallist@^2.1.2: 3518 | version "2.1.2" 3519 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3520 | 3521 | yargs-parser@^2.4.1: 3522 | version "2.4.1" 3523 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-2.4.1.tgz#85568de3cf150ff49fa51825f03a8c880ddcc5c4" 3524 | dependencies: 3525 | camelcase "^3.0.0" 3526 | lodash.assign "^4.0.6" 3527 | 3528 | yargs-parser@^7.0.0: 3529 | version "7.0.0" 3530 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" 3531 | dependencies: 3532 | camelcase "^4.1.0" 3533 | 3534 | yargs@^4.7.0: 3535 | version "4.8.1" 3536 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-4.8.1.tgz#c0c42924ca4aaa6b0e6da1739dfb216439f9ddc0" 3537 | dependencies: 3538 | cliui "^3.2.0" 3539 | decamelize "^1.1.1" 3540 | get-caller-file "^1.0.1" 3541 | lodash.assign "^4.0.3" 3542 | os-locale "^1.4.0" 3543 | read-pkg-up "^1.0.1" 3544 | require-directory "^2.1.1" 3545 | require-main-filename "^1.0.1" 3546 | set-blocking "^2.0.0" 3547 | string-width "^1.0.1" 3548 | which-module "^1.0.0" 3549 | window-size "^0.2.0" 3550 | y18n "^3.2.1" 3551 | yargs-parser "^2.4.1" 3552 | 3553 | yargs@^9.0.0: 3554 | version "9.0.0" 3555 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-9.0.0.tgz#efe5b1ad3f94bdc20423411b90628eeec0b25f3c" 3556 | dependencies: 3557 | camelcase "^4.1.0" 3558 | cliui "^3.2.0" 3559 | decamelize "^1.1.1" 3560 | get-caller-file "^1.0.1" 3561 | os-locale "^2.0.0" 3562 | read-pkg-up "^2.0.0" 3563 | require-directory "^2.1.1" 3564 | require-main-filename "^1.0.1" 3565 | set-blocking "^2.0.0" 3566 | string-width "^2.0.0" 3567 | which-module "^2.0.0" 3568 | y18n "^3.2.1" 3569 | yargs-parser "^7.0.0" 3570 | 3571 | yargs@~3.10.0: 3572 | version "3.10.0" 3573 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3574 | dependencies: 3575 | camelcase "^1.0.2" 3576 | cliui "^2.1.0" 3577 | decamelize "^1.0.0" 3578 | window-size "0.1.0" 3579 | --------------------------------------------------------------------------------