├── .gitignore ├── ReadMe.md ├── exercises ├── 00 - Setup Jest │ ├── ReadMe.md │ ├── __tests__ │ │ └── index.js │ ├── index.js │ └── package.json ├── 10 - Lookup │ ├── ReadMe.md │ ├── index.spec.js │ └── package.json ├── 11 - Pure Function │ ├── ReadMe.md │ ├── index.spec.js │ └── package.json ├── 12 - Object Snapshot │ ├── ReadMe.md │ ├── __snapshots__ │ │ └── index.spec.js.snap │ ├── index.spec.js │ └── package.json ├── 13 - Component Testing │ ├── ReadMe.md │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ └── index.spec.js.snap │ │ └── index.spec.js │ ├── index.js │ └── package.json ├── 14 - Promise Testing │ ├── ReadMe.md │ ├── __snapshots__ │ │ └── index.spec.js.snap │ ├── index.js │ ├── index.spec.js │ └── package.json ├── 15 - Expect Extensions │ ├── ReadMe.md │ ├── index.spec.js │ └── package.json ├── 20 - Mocking Document │ ├── ReadMe.md │ ├── index.spec.js │ └── package.json └── 21 - Mocking Data Layer │ ├── ReadMe.md │ ├── eventApi.js │ ├── index.js │ ├── index.spec.js │ ├── package.json │ └── yarn.lock ├── index.js ├── package.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | # Created by .ignore support plugin (hsz.mobi) 2 | logs 3 | *.log 4 | npm-debug.log* 5 | coverage 6 | node_modules -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- 1 | # Jest Exercises 2 | 3 | This repo is a Collection of exercises to get you started and familiar with testing using [Jest](facebook/jest). 4 | 5 | ## Getting Started 6 | - Clone this repo 7 | - Run `yarn` or `npm install` 8 | - Run `yarn start` or `npm start` 9 | - _This will copy all of the exercises into a new folder using your GitHub username._ 10 | 11 | ## Exercises 12 | 13 | - **Level 0#** - Setup Level - Tests and functions are written 14 | - [Setup Jest](/exercises/00 - Setup Jest) 15 | - **Level 1#** - TDD Level - Tests are written, fill in functions to make them pass 16 | - [Lookup Function](/exercises/10 - Lookup) 17 | - [Pure Function](/exercises/11 - Pure Function) 18 | - [Object Snapshot](/exercises/12 - Object Snapshot) 19 | - [Component Testing](/exercises/13 - Component Testing) 20 | - [Promise Testing](/exercises/14 - Promise Testing) 21 | - [Expect Extensions](/exercises/15 - Expect Extensions) 22 | 23 | ### For access, just ask! 24 | - [Twitter](https://twitter.com/kylewelch) 25 | - NashDevs Slack - @kylewelch or @kevinold 26 | - [Create an Issue](../../issues/new) -------------------------------------------------------------------------------- /exercises/00 - Setup Jest/ReadMe.md: -------------------------------------------------------------------------------- 1 | # Setup Jest 2 | 3 | For this exercise the function to test and the test have already been written. 4 | 5 | Your task is to setup jest. To pass you should be able to run `npm test` or `yarn test` and see a successful test output. -------------------------------------------------------------------------------- /exercises/00 - Setup Jest/__tests__/index.js: -------------------------------------------------------------------------------- 1 | const add = require('../index'); 2 | 3 | describe('add', () => { 4 | it('should return 3 when passed 1 and 2', () => { 5 | const result = add(1, 2); 6 | expect(result).toEqual(3); 7 | }); 8 | 9 | it('should return 5 when passed 10 and -5', () => { 10 | const result = add(10, -5); 11 | expect(result).toEqual(5); 12 | }); 13 | 14 | it('should return 1 when passed 1 and 0', () => { 15 | const result = add(1, 0); 16 | expect(result).toEqual(1); 17 | }); 18 | }); -------------------------------------------------------------------------------- /exercises/00 - Setup Jest/index.js: -------------------------------------------------------------------------------- 1 | /* 2 | NO CODE EDITS NECESSARY 3 | */ 4 | module.exports = function add(a, b) { 5 | return a + b; 6 | }; -------------------------------------------------------------------------------- /exercises/00 - Setup Jest/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "exercise-setup-jest", 3 | "private": true, 4 | "version": "0.0.1", 5 | "scripts": { 6 | "test": "echo \"This is part of the jest setup\" && exit 1" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /exercises/10 - Lookup/ReadMe.md: -------------------------------------------------------------------------------- 1 | # Look Up Exercise 2 | 3 | For this exercise the test have already been written. 4 | 5 | You task is to write the lookup function to pass all four tests. 6 | 7 | ## Setup 8 | - Open terminal with this directory as the working directory 9 | - Install dependencies 10 | - Run `yarn` or `npm install` 11 | - Run `yarn test` or `npm test` 12 | - This will start jest in watch mode, it will re-run tests on every save 13 | - Update `lookup` in [`index.spec.js`](index.spec.js) until tests pass 14 | -------------------------------------------------------------------------------- /exercises/10 - Lookup/index.spec.js: -------------------------------------------------------------------------------- 1 | // Data 2 | const users = [ 3 | { 4 | login: 'knuth', 5 | firstName: 'Donald', 6 | lastName: 'Knuth', 7 | likes: ['C', 'Unix'], 8 | }, 9 | { 10 | login: 'norvig', 11 | firstName: 'Peter', 12 | lastName: 'Norvig', 13 | likes: ['AI', 'Search', 'NASA', 'Mars'], 14 | }, 15 | { 16 | login: 'mfowler', 17 | firstName: 'Martin', 18 | lastName: 'Fowler', 19 | likes: ['Design Patterns', 'Refactoring'], 20 | }, 21 | { 22 | login: 'kent', 23 | firstName: 'Kent', 24 | lastName: 'Beck', 25 | likes: ['TDD', 'wikis', 'Design Patterns'], 26 | }, 27 | ]; 28 | 29 | // lookup() 30 | const lookup = (login, property) => { 31 | // START -- THIS IS WHERE YOUR CODE GOES 32 | // END 33 | }; 34 | 35 | // Tests 36 | describe('lookup()', () => { 37 | it("lookup(, 'likes') should return likes for the specified user.", () => { 38 | const actual = lookup('norvig', 'likes'); 39 | const expected = ['AI', 'Search', 'NASA', 'Mars']; 40 | 41 | expect(actual).toEqual(expected); 42 | }); 43 | it("lookup(, 'lastName') should return the last name for the specified user", () => { 44 | const actual = lookup('knuth', 'lastName'); 45 | const expected = 'Knuth'; 46 | 47 | expect(actual).toEqual(expected); 48 | }); 49 | it('with unknown user should throw an error with the correct message', () => { 50 | expect(() => { 51 | lookup('nobody', 'likes'); 52 | }).toThrow(/Could not find user/); 53 | }); 54 | it('with unknown property should throw an error the correct message', () => { 55 | expect(() => { 56 | lookup('mfowler', 'noprop'); 57 | }).toThrow(/Could not find property/); 58 | }); 59 | }); 60 | -------------------------------------------------------------------------------- /exercises/10 - Lookup/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "lookup", 3 | "private": true, 4 | "scripts": { 5 | "test": "jest --watch" 6 | }, 7 | "dependencies": { 8 | "jest": "^18.1.0" 9 | } 10 | } -------------------------------------------------------------------------------- /exercises/11 - Pure Function/ReadMe.md: -------------------------------------------------------------------------------- 1 | # Pure Function Exercise 2 | 3 | For this exercise the test have already been written. 4 | 5 | You task is to write the `setPrice` and `addToCart` function to pass all four tests. 6 | 7 | ## Setup 8 | - Open terminal with this directory as the working directory 9 | - Install dependencies 10 | - Run `yarn` or `npm install` 11 | - Run `yarn test` or `npm test` 12 | - This will start jest in watch mode, it will re-run tests on every save 13 | - Update `setPrice` and `addToCart`in [`index.spec.js`](index.spec.js) until tests pass -------------------------------------------------------------------------------- /exercises/11 - Pure Function/index.spec.js: -------------------------------------------------------------------------------- 1 | // setPrice(item: Object, price: Number) => item: Object 2 | const setPrice = (item, price) => { 3 | // TODO: implement 4 | }; 5 | 6 | // addToCart(cart: Array, item: Object) => cart: Array 7 | const addToCart = (cart, item) => { 8 | // TODO: implement 9 | }; 10 | 11 | describe('setPrice()', () => { 12 | it('should set the price in the given item object, immutably.', () => { 13 | const item = { 14 | name: 'test', 15 | price: 30, 16 | }; 17 | const copy = Object.assign({}, item); 18 | 19 | const actual = setPrice(item, 50); 20 | const expected = { 21 | name: 'test', 22 | price: 50, 23 | }; 24 | 25 | expect(actual).toEqual(expected); 26 | expect(item).toEqual(copy); 27 | }); 28 | }); 29 | 30 | describe('addToCart()', () => { 31 | it('should add item to cart, immutably', () => { 32 | const originalCart = []; 33 | const item = { 34 | name: 'Violator', 35 | price: 30, 36 | }; 37 | const copy = originalCart.slice(); 38 | 39 | const actual = addToCart(originalCart, item); 40 | const expected = [item]; 41 | 42 | expect(actual).toEqual(expected); 43 | expect(originalCart).toEqual(copy); 44 | }); 45 | }); 46 | -------------------------------------------------------------------------------- /exercises/11 - Pure Function/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "pure-function", 3 | "private": true, 4 | "scripts": { 5 | "test": "jest --watch" 6 | }, 7 | "dependencies": { 8 | "jest": "^18.1.0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /exercises/12 - Object Snapshot/ReadMe.md: -------------------------------------------------------------------------------- 1 | # Object Snapshot 2 | 3 | This exercise is set to setup your understanding of snapshots by implementing a `redux` reducer. 4 | 5 | Snapshots are assertions values that are saved and updated using jest. 6 | Snapshots files are saved into a `__snapshots__` directory relative to the tests. 7 | To pass this exercise, you will need to open the `.snap` files to find the 8 | expected values from the state tests. 9 | 10 | ## Setup 11 | - Open terminal with this directory as the working directory 12 | - Install dependencies 13 | - Run `yarn` or `npm install` 14 | - Run `yarn test` or `npm test` 15 | - This will start jest in watch mode and notify mode 16 | - Update `usersReducer`in [`index.spec.js`](index.spec.js) until tests pass -------------------------------------------------------------------------------- /exercises/12 - Object Snapshot/__snapshots__/index.spec.js.snap: -------------------------------------------------------------------------------- 1 | exports[`usersReducer SAVE_USER action should append to state array 1`] = ` 2 | Object { 3 | "users": Array [ 4 | Object { 5 | "handle": "kwelch", 6 | "name": "Kyle Welch", 7 | }, 8 | ], 9 | } 10 | `; 11 | 12 | exports[`usersReducer SAVE_USER action should append to state array 2`] = ` 13 | Object { 14 | "users": Array [ 15 | Object { 16 | "handle": "kwelch", 17 | "name": "Kyle Welch", 18 | }, 19 | Object { 20 | "handle": "jsmith", 21 | "name": "Jane Smith", 22 | }, 23 | ], 24 | } 25 | `; 26 | 27 | exports[`usersReducer SAVE_USER action should update when handle matches 1`] = ` 28 | Object { 29 | "users": Array [ 30 | Object { 31 | "handle": "kwelch", 32 | "name": "Kyle Welch", 33 | "role": "Test Driven Developer", 34 | }, 35 | Object { 36 | "handle": "jsmith", 37 | "name": "Jane Smith", 38 | }, 39 | ], 40 | } 41 | `; 42 | -------------------------------------------------------------------------------- /exercises/12 - Object Snapshot/index.spec.js: -------------------------------------------------------------------------------- 1 | import { createStore, combineReducers } from 'redux'; 2 | 3 | const usersReducer = (state, action) => { 4 | // Implement this reducer to pass the tests below 5 | }; 6 | 7 | const configureStore = (initialState = {}) => { 8 | return createStore( 9 | combineReducers({ 10 | users: usersReducer, 11 | }), 12 | initialState, 13 | ); 14 | }; 15 | 16 | describe('usersReducer', () => { 17 | it('should initialize as empty array', () => { 18 | const store = configureStore({}); 19 | expect(store.getState()).toEqual({ 20 | users: [], 21 | }); 22 | }); 23 | 24 | describe('SAVE_USER action', () => { 25 | // arrange 26 | const store = configureStore({}); 27 | const addUserAction = user => ({ 28 | type: 'SAVE_USER', 29 | user, 30 | }); 31 | 32 | it('should append to state array', () => { 33 | // act 34 | store.dispatch( 35 | addUserAction({ 36 | name: 'Kyle Welch', 37 | handle: 'kwelch', 38 | }), 39 | ); 40 | 41 | // assert 42 | expect(store.getState()).toMatchSnapshot(); 43 | 44 | // act 45 | store.dispatch( 46 | addUserAction({ 47 | name: 'Jane Smith', 48 | handle: 'jsmith', 49 | }), 50 | ); 51 | 52 | // assert 53 | expect(store.getState()).toMatchSnapshot(); 54 | }); 55 | 56 | it('should update when handle matches', () => { 57 | // act 58 | store.dispatch( 59 | addUserAction({ 60 | name: 'Kyle Welch', 61 | handle: 'kwelch', 62 | role: 'Test Driven Developer', 63 | }), 64 | ); 65 | 66 | // assert 67 | expect(store.getState()).toMatchSnapshot(); 68 | }); 69 | }); 70 | }); 71 | -------------------------------------------------------------------------------- /exercises/12 - Object Snapshot/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "object-snapshot", 3 | "private": true, 4 | "scripts": { 5 | "test": "jest --watch --notify" 6 | }, 7 | "dependencies": { 8 | "babel-preset-es2015": "^6.22.0", 9 | "jest": "^18.1.0", 10 | "redux": "^3.6.0" 11 | }, 12 | "devDependencies": { 13 | "babel-jest": "^18.0.0", 14 | "babel-polyfill": "^6.22.0" 15 | }, 16 | "babel": { 17 | "presets": [ 18 | "es2015" 19 | ] 20 | } 21 | } -------------------------------------------------------------------------------- /exercises/13 - Component Testing/ReadMe.md: -------------------------------------------------------------------------------- 1 | # Component Testing 2 | 3 | This exercise is set to intended to showcase testing React Components. 4 | 5 | It features: 6 | - Enzyme 7 | - Jest Mocks 8 | - Component Snapshots 9 | 10 | ## Setup 11 | - Open terminal with this directory as the working directory 12 | - Install dependencies 13 | - Run `yarn` or `npm install` 14 | - Run `yarn test` or `npm test` 15 | - This will start jest in watch mode and notify mode 16 | - Write a `List` Component in [`index.js`](index.spec.js) until tests pass in `__tests__/index.spec.js` -------------------------------------------------------------------------------- /exercises/13 - Component Testing/__tests__/__snapshots__/index.spec.js.snap: -------------------------------------------------------------------------------- 1 | exports[` should render consistently 1`] = ` 2 |
    3 |
  • 6 | Item 1 7 |
  • 8 |
  • 11 | Item 2 12 |
  • 13 |
  • 16 | Item 3 17 |
  • 18 |
  • 21 | Item 4 22 |
  • 23 |
24 | `; 25 | 26 | exports[` should render consistently 2`] = ` 27 |
    28 |
  • 31 | Item 1 32 |
  • 33 |
  • 36 | Item 3 37 |
  • 38 |
  • 41 | Item 4 42 |
  • 43 |
  • 46 | Item 5 47 |
  • 48 |
49 | `; 50 | -------------------------------------------------------------------------------- /exercises/13 - Component Testing/__tests__/index.spec.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import List from '../index'; 3 | import { shallow } from 'enzyme'; 4 | import renderer from 'react-test-renderer'; 5 | 6 | // NO EDITS NECESSARY IN THIS FILE 7 | 8 | describe('', () => { 9 | it('should render an `li` for each data item', () => { 10 | const data = [ 11 | { key: 1, name: 'Item 1', selected: false }, 12 | { key: 2, name: 'Item 2', selected: false }, 13 | { key: 3, name: 'Item 3', selected: false }, 14 | { key: 4, name: 'Item 4', selected: false }, 15 | ]; 16 | const wrapper = shallow(); 17 | expect(wrapper.find('li').length).toEqual(data.length); 18 | }); 19 | 20 | it('should call `onClick` prop with item key on item clicked', () => { 21 | const data = [ 22 | { key: 1, name: 'Item 1', selected: false }, 23 | { key: 2, name: 'Item 2', selected: false }, 24 | { key: 3, name: 'Item 3', selected: true }, 25 | { key: 4, name: 'Item 4', selected: false }, 26 | ]; 27 | const mockClickHandler = jest.fn(); 28 | const wrapper = shallow(); 29 | wrapper.find('li.selected').simulate('click'); 30 | expect(mockClickHandler).lastCalledWith(3); 31 | }); 32 | 33 | it('should render consistently', () => { 34 | let data = [ 35 | { key: 1, name: 'Item 1', selected: false }, 36 | { key: 2, name: 'Item 2', selected: true }, 37 | { key: 3, name: 'Item 3', selected: false }, 38 | { key: 4, name: 'Item 4', selected: false }, 39 | ]; 40 | let component = renderer.create(); 41 | let tree = component.toJSON(); 42 | expect(tree).toMatchSnapshot(); 43 | 44 | data = [ 45 | { key: 1, name: 'Item 1', selected: false }, 46 | { key: 3, name: 'Item 3', selected: false }, 47 | { key: 4, name: 'Item 4', selected: true }, 48 | { key: 5, name: 'Item 5', selected: false }, 49 | ]; 50 | component = renderer.create(); 51 | tree = component.toJSON(); 52 | expect(tree).toMatchSnapshot(); 53 | }); 54 | }); 55 | -------------------------------------------------------------------------------- /exercises/13 - Component Testing/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | 3 | export default () => { 4 | // Implement this component to pass the tests in ./__tests/index.spec.js 5 | }; 6 | -------------------------------------------------------------------------------- /exercises/13 - Component Testing/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "component-testing", 3 | "private": true, 4 | "scripts": { 5 | "test": "jest --watch --notify" 6 | }, 7 | "dependencies": { 8 | "babel-jest": "^18.0.0", 9 | "babel-polyfill": "^6.22.0", 10 | "babel-preset-es2015": "^6.22.0", 11 | "babel-preset-react": "^6.22.0", 12 | "classnames": "^2.2.5", 13 | "enzyme": "^2.7.1", 14 | "jest": "^18.1.0", 15 | "react": "^15.4.2", 16 | "react-addons-test-utils": "^15.4.2", 17 | "react-dom": "^15.4.2", 18 | "react-test-renderer": "^15.4.2" 19 | }, 20 | "babel": { 21 | "presets": [ 22 | "es2015", 23 | "react" 24 | ] 25 | } 26 | } -------------------------------------------------------------------------------- /exercises/14 - Promise Testing/ReadMe.md: -------------------------------------------------------------------------------- 1 | # Promise Testing 2 | 3 | This exercise will show the setup for mocking out a fetch library and testing an API helper function. 4 | 5 | The test have all been written and leverage mocking, snapshots, and of course Promises. 6 | 7 | ## Setup 8 | - Open terminal with this directory as the working directory 9 | - Install dependencies 10 | - Run `yarn` or `npm install` 11 | - Run `yarn test` or `npm test` 12 | - This will start jest in watch mode and notify mode 13 | - Complete the functions within [`index.js`](index.spec.js) until tests pass in `__tests__/index.spec.js` -------------------------------------------------------------------------------- /exercises/14 - Promise Testing/__snapshots__/index.spec.js.snap: -------------------------------------------------------------------------------- 1 | exports[`callApi should handle null/empty array/undefined within results 1`] = ` 2 | Object { 3 | "addresses": Array [], 4 | "firstName": "Kyle", 5 | "id": 1, 6 | "lastName": "Welch", 7 | "organization": null, 8 | } 9 | `; 10 | 11 | exports[`callApi should normalize json as camelCase values deeply 1`] = ` 12 | Object { 13 | "addresses": Array [ 14 | Object { 15 | "city": "Nashville", 16 | }, 17 | Object { 18 | "state": "TN", 19 | }, 20 | ], 21 | "firstName": "Kyle", 22 | "id": 1, 23 | } 24 | `; 25 | 26 | exports[`callApi should normalize json as camelCase values deeply 2`] = ` 27 | Array [ 28 | Object { 29 | "1": Object { 30 | "name": "Bill", 31 | }, 32 | "2": Object { 33 | "name": "Jane", 34 | }, 35 | "addresses": Array [ 36 | Object { 37 | "city": "Nashville", 38 | }, 39 | Object { 40 | "state": "TN", 41 | }, 42 | ], 43 | "firstName": "Kyle", 44 | "id": 1, 45 | }, 46 | "Joe", 47 | Object { 48 | "foo": Object { 49 | "bAR": Object { 50 | "fizz": Array [ 51 | Object { 52 | "buzz": 1, 53 | }, 54 | ], 55 | }, 56 | }, 57 | }, 58 | ] 59 | `; 60 | -------------------------------------------------------------------------------- /exercises/14 - Promise Testing/index.js: -------------------------------------------------------------------------------- 1 | import fetch from 'node-fetch'; 2 | 3 | export const LOCATION_ORIGIN = (() => { 4 | if (typeof window !== 'undefined' && window.location !== 'undefined') { 5 | const url = window.location.origin || 6 | window.location.protocol + 7 | '//' + 8 | window.location.hostname + 9 | (window.location.port ? ':' + window.location.port : ''); 10 | if (url.toString() !== 'null') { 11 | return url; 12 | } 13 | } 14 | return 'http://localhost'; 15 | })(); 16 | 17 | export const defaultFetchHeaders = { 18 | compress: false, 19 | headers: { 20 | Accept: 'application/json', 21 | 'Content-Type': 'application/json', 22 | }, 23 | }; 24 | 25 | export const camelCase = input => { 26 | // TODO: implement 27 | }; 28 | 29 | const normalizeCasing = value => { 30 | // TODO: implement 31 | }; 32 | 33 | const callApi = (url = '', options = {}) => { 34 | // TODO: implement 35 | }; 36 | 37 | export default callApi; 38 | -------------------------------------------------------------------------------- /exercises/14 - Promise Testing/index.spec.js: -------------------------------------------------------------------------------- 1 | import 'isomorphic-fetch'; 2 | import callApi, { defaultFetchHeaders, camelCase } from './index'; 3 | var mockFetch; 4 | 5 | jest.mock('node-fetch', () => { 6 | mockFetch = require('jest-fetch-mock'); 7 | // set default response 8 | mockFetch.mockResponse(JSON.stringify({})); 9 | return mockFetch; 10 | }); 11 | 12 | describe('callApi', () => { 13 | beforeEach(() => { 14 | mockFetch.mockClear(); 15 | }); 16 | 17 | it('should call fetch with defaultOptions and default url', () => { 18 | callApi(); 19 | expect(mockFetch).toBeCalled(); 20 | expect(mockFetch).lastCalledWith('http://localhost', defaultFetchHeaders); 21 | }); 22 | 23 | it('should make accept relative urls', () => { 24 | callApi('/api/entity'); 25 | expect(mockFetch).toBeCalled(); 26 | expect(mockFetch).lastCalledWith('http://localhost/api/entity', defaultFetchHeaders); 27 | }); 28 | 29 | it('should return a promise', () => { 30 | const results = callApi('/api/entity'); 31 | expect(results).toBeDefined(); 32 | expect(typeof results).toBe('object'); 33 | expect(typeof results.then).toBe('function'); 34 | }); 35 | 36 | it('should resolve to an object, containing the resp and parse json', () => { 37 | const responseJson = { id: 1 }; 38 | mockFetch.mockResponseOnce(JSON.stringify(responseJson), { status: 200 }); 39 | return callApi('/api/entity').then(results => { 40 | expect(results).toBeDefined(); 41 | expect(typeof results).toBe('object'); 42 | const { resp, json } = results; 43 | expect(json).toBeDefined(); 44 | expect(json).toEqual(responseJson); 45 | expect(resp).toBeDefined(); 46 | expect(resp.ok).toBe(true); 47 | }); 48 | }); 49 | 50 | it('should return json as null for 204 response', () => { 51 | mockFetch.mockResponseOnce('', { status: 204 }); 52 | return callApi('/api/entity').then(({ json }) => { 53 | expect(json).toBe(null); 54 | }); 55 | }); 56 | 57 | // This may feel odd, but the return json can be used 58 | // for messaging to the user. Also sometimes failure is ok! 59 | it('should resolve with parse json even on `!response.ok`', () => { 60 | const responseJson = { message: 'Invalid or missing token' }; 61 | mockFetch.mockResponseOnce(JSON.stringify(responseJson), { status: 403 }); 62 | return callApi('/api/entity').then(({ json, resp }) => { 63 | expect(json).toEqual(responseJson); 64 | expect(resp.ok).toBe(false); 65 | expect(resp.status).toBe(403); 66 | }); 67 | }); 68 | 69 | it('should throw if unable to parse json', () => { 70 | mockFetch.mockResponseOnce('Bad Request', { status: 400 }); 71 | 72 | return callApi('/api/entity').then( 73 | () => { 74 | expect.fail('It should not have resolved on invalid JSON'); 75 | }, 76 | err => { 77 | expect(err).toBeDefined(); 78 | expect(typeof err).toBe('object'); 79 | expect(err.toString()).toContain('SyntaxError:'); 80 | }, 81 | ); 82 | }); 83 | 84 | it('should normalize json as camelCase values deeply', () => { 85 | const sampleObject = { 86 | Id: 1, 87 | FirstName: 'Kyle', 88 | Addresses: [{ city: 'Nashville' }, { State: 'TN' }], 89 | }; 90 | const sampleArray = [ 91 | { 92 | Id: 1, 93 | FirstName: 'Kyle', 94 | Addresses: [{ City: 'Nashville' }, { State: 'TN' }], 95 | 1: { Name: 'Bill' }, 96 | '2': { Name: 'Jane' }, 97 | }, 98 | 'Joe', 99 | { 100 | Foo: { 101 | BAR: { 102 | Fizz: [{ Buzz: 1 }], 103 | }, 104 | }, 105 | }, 106 | ]; 107 | mockFetch.mockResponses([JSON.stringify(sampleObject)], [JSON.stringify(sampleArray)]); 108 | return Promise.all([ 109 | callApi().then(({ json }) => expect(json).toMatchSnapshot()), 110 | callApi().then(({ json }) => expect(json).toMatchSnapshot()), 111 | ]); 112 | }); 113 | 114 | it('should handle null/empty array/undefined within results', () => { 115 | const sampleObject = { 116 | Id: 1, 117 | FirstName: 'Kyle', 118 | Organization: null, 119 | Addresses: [], 120 | Phones: undefined, 121 | LastName: 'Welch', 122 | }; 123 | mockFetch.mockResponseOnce(JSON.stringify(sampleObject)); 124 | return callApi().then(({ json }) => expect(json).toMatchSnapshot()); 125 | }); 126 | }); 127 | 128 | describe('#camelCase', () => { 129 | const obj = { SuperLongCSharpVariableNameThatIsInMyJSON: 1 }; 130 | const formattedObj = { superLongCSharpVariableNameThatIsInMyJSON: 1 }; 131 | 132 | it('returns the input if it is an array with no objects', () => { 133 | expect(camelCase([1, 2, 3])).toEqual([1,2,3]); 134 | }); 135 | 136 | it('returns the input if it is a nested array with no objects', () => { 137 | expect(camelCase([1, [2], 3])).toEqual([1, [2] ,3]); 138 | }); 139 | 140 | it('camel-cases object keys when a single object is nested inside an array', () => { 141 | expect(camelCase([obj])).toEqual([formattedObj]); 142 | }); 143 | 144 | it('camel-cases object keys when an object and a primitive are nested in an array', () => { 145 | expect(camelCase([obj, 1])).toEqual([formattedObj, 1]); 146 | }); 147 | 148 | it('camel-cases object keys if the object contains an array', () => { 149 | const nestedArray = Object.assign({}, obj, { Arr: [1, 2, 3] }); 150 | const expected = Object.assign({}, formattedObj, { arr: [1, 2, 3] }); 151 | expect(camelCase(nestedArray)).toEqual(expected); 152 | }); 153 | 154 | it('camel-cases object keys if the object contains an array containing an object', () => { 155 | const nestedArray = Object.assign({}, obj, { Arr: [1, { B: 2 }, 3] }); 156 | const expected = Object.assign({}, formattedObj, { arr: [1, { b: 2 }, 3] }); 157 | expect(camelCase(nestedArray)).toEqual(expected); 158 | }); 159 | }); 160 | -------------------------------------------------------------------------------- /exercises/14 - Promise Testing/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "promise-tests", 3 | "private": true, 4 | "scripts": { 5 | "test": "jest --watch --notify" 6 | }, 7 | "dependencies": { 8 | "babel-jest": "^18.0.0", 9 | "babel-polyfill": "^6.23.0", 10 | "babel-preset-latest": "^6.22.0", 11 | "babel-preset-stage-2": "^6.22.0", 12 | "isomorphic-fetch": "^2.2.1", 13 | "jest": "^18.1.0", 14 | "jest-fetch-mock": "^1.0.7", 15 | "node-fetch": "^1.6.3" 16 | }, 17 | "babel": { 18 | "presets": [ 19 | "latest", 20 | "stage-2" 21 | ] 22 | }, 23 | "jest": { 24 | "testEnvironment": "node" 25 | } 26 | } -------------------------------------------------------------------------------- /exercises/15 - Expect Extensions/ReadMe.md: -------------------------------------------------------------------------------- 1 | # Expect Extensions 2 | 3 | This exercise is set shows the ability to add extended matchers to Jest's `expect` object. 4 | 5 | ## Setup 6 | - Open terminal with this directory as the working directory 7 | - Install dependencies 8 | - Run `yarn` or `npm install` 9 | - Run `yarn test` or `npm test` 10 | - This will start jest in watch mode and notify mode 11 | - Complete the tests [`index.js`](index.spec.js) to utilize the new matchers until tests pass in `__tests__/index.spec.js` -------------------------------------------------------------------------------- /exercises/15 - Expect Extensions/index.spec.js: -------------------------------------------------------------------------------- 1 | expect.extend({ 2 | toBeFunction(received) { 3 | const pass = typeof received === 'function'; 4 | if (pass) { 5 | return { 6 | pass, 7 | message: () => `expected value to not be a function; actual: ${typeof received}`, 8 | }; 9 | } 10 | return { 11 | pass: false, 12 | message: () => `expected value to be a function; actual: ${typeof received}`, 13 | }; 14 | }, 15 | toHaveProperty(received, argument) { 16 | const pass = typeof received[argument] !== 'undefined'; 17 | if (pass) { 18 | return { 19 | pass, 20 | message: () => `expected object to not have property: ${argument}; actual: ${Object.keys(received)}`, 21 | }; 22 | } 23 | return { 24 | pass: false, 25 | message: () => `expected object to be have property: ${argument}; actual: ${Object.keys(received)}`, 26 | }; 27 | }, 28 | }); 29 | 30 | test('should return function', () => { 31 | const value = undefined; 32 | expect(value).toBeFunction(); 33 | }); 34 | 35 | test('should not be function', () => { 36 | const value = undefined; 37 | expect(value).not.toBeFunction(); 38 | }); 39 | 40 | test('should return property', () => { 41 | const value = undefined; 42 | expect(value).toHaveProperty('name'); 43 | }); 44 | test('should return property', () => { 45 | const value = undefined; 46 | expect(value).not.toHaveProperty('age'); 47 | }); 48 | -------------------------------------------------------------------------------- /exercises/15 - Expect Extensions/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "expect-extensions", 3 | "private": true, 4 | "scripts": { 5 | "test": "jest --watch --notify" 6 | }, 7 | "babel": { 8 | "presets": [ 9 | "es2015" 10 | ] 11 | }, 12 | "dependencies": { 13 | "babel-jest": "^18.0.0", 14 | "babel-polyfill": "^6.23.0", 15 | "babel-preset-es2015": "^6.22.0", 16 | "jest": "^18.1.0" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /exercises/20 - Mocking Document/ReadMe.md: -------------------------------------------------------------------------------- 1 | # Mocking Window Method 2 | 3 | This exercise is set shows the ability to mock functions 4 | 5 | ## Setup 6 | - Open terminal with this directory as the working directory 7 | - Install dependencies 8 | - Run `yarn` or `npm install` 9 | - Run `yarn test` or `npm test` 10 | - This will start jest in watch mode and notify mode 11 | - Complete the tests [`index.js`](index.spec.js) to mock `document.getElementsByTagName` until tests pass in `__tests__/index.spec.js` -------------------------------------------------------------------------------- /exercises/20 - Mocking Document/index.spec.js: -------------------------------------------------------------------------------- 1 | const getFirstElementByName = (name) => { 2 | const elements = document.getElementsByName(name); 3 | return elements && elements.length ? elements[0] : null; 4 | } 5 | 6 | describe('getFirstElementByName', () => { 7 | let mockGetElementsByName = jest.fn(); 8 | beforeEach(() => { 9 | document.getElementsByName = mockGetElementsByName; 10 | }) 11 | 12 | afterEach(() => { 13 | mockGetElementsByName.mockClear(); 14 | }) 15 | 16 | it('should return an element', () => { 17 | mockGetElementsByName.mockImplementation((name) => { 18 | return [document.createElement(name)]; 19 | }); 20 | 21 | const element = getFirstElementByName('div'); 22 | 23 | expect(element).not.toBeNull(); 24 | expect(element.tagName).toEqual('DIV'); 25 | }) 26 | 27 | it('should return a null on second call', () => { 28 | mockGetElementsByName.mockImplementation((name) => { 29 | return null; 30 | }).mockImplementationOnce(() => [document.createElement('span')]); 31 | 32 | 33 | let element = getFirstElementByName('span'); 34 | 35 | expect(element).not.toBeNull(); 36 | expect(element.tagName).toEqual('SPAN'); 37 | 38 | element = getFirstElementByName('span'); 39 | 40 | expect(element).toBeNull(); 41 | }) 42 | 43 | it('should call document.getElementsByName', () => { 44 | getFirstElementByName('span'); 45 | 46 | expect(mockGetElementsByName).toHaveBeenCalled(); 47 | expect(mockGetElementsByName).lastCalledWith('span'); 48 | 49 | getFirstElementByName('div'); 50 | 51 | expect(mockGetElementsByName).lastCalledWith('div'); 52 | 53 | // specific version of above 54 | expect(mockGetElementsByName.mock.calls[0][0]).toBe('span'); 55 | expect(mockGetElementsByName.mock.calls[1][0]).toBe('div'); 56 | }) 57 | 58 | }) 59 | 60 | -------------------------------------------------------------------------------- /exercises/20 - Mocking Document/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mock-document", 3 | "private": true, 4 | "scripts": { 5 | "test": "jest --watch --notify" 6 | }, 7 | "babel": { 8 | "presets": [ 9 | "es2015" 10 | ] 11 | }, 12 | "dependencies": { 13 | "babel-jest": "^18.0.0", 14 | "babel-polyfill": "^6.23.0", 15 | "babel-preset-es2015": "^6.22.0", 16 | "jest": "^18.1.0" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /exercises/21 - Mocking Data Layer/ReadMe.md: -------------------------------------------------------------------------------- 1 | # Expect Extensions 2 | 3 | This exercise is set shows the ability to add extended matchers to Jest's `expect` object. 4 | 5 | ## Setup 6 | - Open terminal with this directory as the working directory 7 | - Install dependencies 8 | - Run `yarn` or `npm install` 9 | - Run `yarn test` or `npm test` 10 | - This will start jest in watch mode and notify mode 11 | - Complete the tests [`index.js`](index.spec.js) to utilize the new matchers until tests pass in `__tests__/index.spec.js` -------------------------------------------------------------------------------- /exercises/21 - Mocking Data Layer/eventApi.js: -------------------------------------------------------------------------------- 1 | // In a real world this would have api logic 2 | // since I have tight on time just simple thing 3 | 4 | export default { 5 | get: (id) => { 6 | return { 7 | id, 8 | title: 'Real Event', 9 | description: 'This is the description of the real event that I made up in the eventApi', 10 | } 11 | }, 12 | }; -------------------------------------------------------------------------------- /exercises/21 - Mocking Data Layer/index.js: -------------------------------------------------------------------------------- 1 | import eventApi from './eventApi'; 2 | 3 | export const getEvent = (id) => { 4 | // hacktastic cacheing 5 | if (!getEvent.memo) { 6 | getEvent.memo = {}; 7 | } 8 | 9 | if (getEvent.memo[id]) { 10 | return getEvent.memo[id]; 11 | } 12 | 13 | const event = eventApi.get(id); 14 | getEvent.memo[id] = event; 15 | return event; 16 | } -------------------------------------------------------------------------------- /exercises/21 - Mocking Data Layer/index.spec.js: -------------------------------------------------------------------------------- 1 | import {getEvent} from './index'; 2 | let mockApiGet = jest.fn(() => ({ 3 | id: 1, 4 | title: 'Some fake title', 5 | description: 'Longer description', 6 | isPaid: true, 7 | })); 8 | 9 | jest.mock('./eventApi', () => { 10 | return { 11 | get: () => mockApiGet(), 12 | } 13 | }); 14 | 15 | describe('getEvent', () => { 16 | 17 | // removed since I was unable to get it to unmock 18 | xit('should call real api method', () => { 19 | jest.dontMock('./eventApi'); 20 | const event = getEvent(123); 21 | expect(event).toEqual({ 22 | id: 123, 23 | title: 'Real Event', 24 | description: 'This is the description of the real event that I made up in the eventApi', 25 | }); 26 | }); 27 | 28 | it('should return an object', () => { 29 | const event = getEvent(123); 30 | expect(event).toEqual(expect.objectContaining({ 31 | id: 1, 32 | title: expect.any(String), 33 | })); 34 | }); 35 | 36 | it('should return from cache on second request', () => { 37 | let firstEvent = getEvent(123); 38 | expect(firstEvent).toEqual(expect.objectContaining({ 39 | id: 1, 40 | title: expect.any(String), 41 | })); 42 | 43 | let secondEvent = getEvent(123); 44 | expect(secondEvent).toBe(firstEvent); 45 | 46 | expect(mockApiGet).toHaveBeenCalledTimes(1); 47 | }); 48 | 49 | }); 50 | -------------------------------------------------------------------------------- /exercises/21 - Mocking Data Layer/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mock-data-layer", 3 | "private": true, 4 | "scripts": { 5 | "test": "jest --watch --notify" 6 | }, 7 | "babel": { 8 | "presets": [ 9 | "es2015" 10 | ] 11 | }, 12 | "dependencies": { 13 | "babel-jest": "^18.0.0", 14 | "babel-polyfill": "^6.23.0", 15 | "babel-preset-es2015": "^6.22.0", 16 | "jest": "^18.1.0" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /exercises/21 - Mocking Data Layer/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.4" 7 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.4.tgz#5faad9c2c07f60dd76770f71cf025b62a63cfd4e" 8 | 9 | acorn-globals@^3.1.0: 10 | version "3.1.0" 11 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" 12 | dependencies: 13 | acorn "^4.0.4" 14 | 15 | acorn@^4.0.4: 16 | version "4.0.13" 17 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 18 | 19 | ajv@^5.1.0: 20 | version "5.3.0" 21 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.3.0.tgz#4414ff74a50879c208ee5fdc826e32c303549eda" 22 | dependencies: 23 | co "^4.6.0" 24 | fast-deep-equal "^1.0.0" 25 | fast-json-stable-stringify "^2.0.0" 26 | json-schema-traverse "^0.3.0" 27 | 28 | align-text@^0.1.1, align-text@^0.1.3: 29 | version "0.1.4" 30 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 31 | dependencies: 32 | kind-of "^3.0.2" 33 | longest "^1.0.1" 34 | repeat-string "^1.5.2" 35 | 36 | amdefine@>=0.0.4: 37 | version "1.0.1" 38 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 39 | 40 | ansi-escapes@^1.4.0: 41 | version "1.4.0" 42 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 43 | 44 | ansi-regex@^2.0.0: 45 | version "2.1.1" 46 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 47 | 48 | ansi-styles@^2.2.1: 49 | version "2.2.1" 50 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 51 | 52 | ansicolors@~0.2.1: 53 | version "0.2.1" 54 | resolved "https://registry.yarnpkg.com/ansicolors/-/ansicolors-0.2.1.tgz#be089599097b74a5c9c4a84a0cdbcdb62bd87aef" 55 | 56 | append-transform@^0.4.0: 57 | version "0.4.0" 58 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 59 | dependencies: 60 | default-require-extensions "^1.0.0" 61 | 62 | argparse@^1.0.7: 63 | version "1.0.9" 64 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 65 | dependencies: 66 | sprintf-js "~1.0.2" 67 | 68 | arr-diff@^2.0.0: 69 | version "2.0.0" 70 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 71 | dependencies: 72 | arr-flatten "^1.0.1" 73 | 74 | arr-flatten@^1.0.1: 75 | version "1.1.0" 76 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 77 | 78 | array-equal@^1.0.0: 79 | version "1.0.0" 80 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 81 | 82 | array-unique@^0.2.1: 83 | version "0.2.1" 84 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 85 | 86 | arrify@^1.0.1: 87 | version "1.0.1" 88 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 89 | 90 | asn1@~0.2.3: 91 | version "0.2.3" 92 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 93 | 94 | assert-plus@1.0.0, assert-plus@^1.0.0: 95 | version "1.0.0" 96 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 97 | 98 | async@^1.4.0: 99 | version "1.5.2" 100 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 101 | 102 | async@^2.1.4: 103 | version "2.6.0" 104 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.0.tgz#61a29abb6fcc026fea77e56d1c6ec53a795951f4" 105 | dependencies: 106 | lodash "^4.14.0" 107 | 108 | asynckit@^0.4.0: 109 | version "0.4.0" 110 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 111 | 112 | aws-sign2@~0.7.0: 113 | version "0.7.0" 114 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 115 | 116 | aws4@^1.6.0: 117 | version "1.6.0" 118 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 119 | 120 | babel-code-frame@^6.26.0: 121 | version "6.26.0" 122 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 123 | dependencies: 124 | chalk "^1.1.3" 125 | esutils "^2.0.2" 126 | js-tokens "^3.0.2" 127 | 128 | babel-core@^6.0.0, babel-core@^6.26.0: 129 | version "6.26.0" 130 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 131 | dependencies: 132 | babel-code-frame "^6.26.0" 133 | babel-generator "^6.26.0" 134 | babel-helpers "^6.24.1" 135 | babel-messages "^6.23.0" 136 | babel-register "^6.26.0" 137 | babel-runtime "^6.26.0" 138 | babel-template "^6.26.0" 139 | babel-traverse "^6.26.0" 140 | babel-types "^6.26.0" 141 | babylon "^6.18.0" 142 | convert-source-map "^1.5.0" 143 | debug "^2.6.8" 144 | json5 "^0.5.1" 145 | lodash "^4.17.4" 146 | minimatch "^3.0.4" 147 | path-is-absolute "^1.0.1" 148 | private "^0.1.7" 149 | slash "^1.0.0" 150 | source-map "^0.5.6" 151 | 152 | babel-generator@^6.18.0, babel-generator@^6.26.0: 153 | version "6.26.0" 154 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" 155 | dependencies: 156 | babel-messages "^6.23.0" 157 | babel-runtime "^6.26.0" 158 | babel-types "^6.26.0" 159 | detect-indent "^4.0.0" 160 | jsesc "^1.3.0" 161 | lodash "^4.17.4" 162 | source-map "^0.5.6" 163 | trim-right "^1.0.1" 164 | 165 | babel-helper-call-delegate@^6.24.1: 166 | version "6.24.1" 167 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 168 | dependencies: 169 | babel-helper-hoist-variables "^6.24.1" 170 | babel-runtime "^6.22.0" 171 | babel-traverse "^6.24.1" 172 | babel-types "^6.24.1" 173 | 174 | babel-helper-define-map@^6.24.1: 175 | version "6.26.0" 176 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 177 | dependencies: 178 | babel-helper-function-name "^6.24.1" 179 | babel-runtime "^6.26.0" 180 | babel-types "^6.26.0" 181 | lodash "^4.17.4" 182 | 183 | babel-helper-function-name@^6.24.1: 184 | version "6.24.1" 185 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 186 | dependencies: 187 | babel-helper-get-function-arity "^6.24.1" 188 | babel-runtime "^6.22.0" 189 | babel-template "^6.24.1" 190 | babel-traverse "^6.24.1" 191 | babel-types "^6.24.1" 192 | 193 | babel-helper-get-function-arity@^6.24.1: 194 | version "6.24.1" 195 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 196 | dependencies: 197 | babel-runtime "^6.22.0" 198 | babel-types "^6.24.1" 199 | 200 | babel-helper-hoist-variables@^6.24.1: 201 | version "6.24.1" 202 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 203 | dependencies: 204 | babel-runtime "^6.22.0" 205 | babel-types "^6.24.1" 206 | 207 | babel-helper-optimise-call-expression@^6.24.1: 208 | version "6.24.1" 209 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 210 | dependencies: 211 | babel-runtime "^6.22.0" 212 | babel-types "^6.24.1" 213 | 214 | babel-helper-regex@^6.24.1: 215 | version "6.26.0" 216 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 217 | dependencies: 218 | babel-runtime "^6.26.0" 219 | babel-types "^6.26.0" 220 | lodash "^4.17.4" 221 | 222 | babel-helper-replace-supers@^6.24.1: 223 | version "6.24.1" 224 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 225 | dependencies: 226 | babel-helper-optimise-call-expression "^6.24.1" 227 | babel-messages "^6.23.0" 228 | babel-runtime "^6.22.0" 229 | babel-template "^6.24.1" 230 | babel-traverse "^6.24.1" 231 | babel-types "^6.24.1" 232 | 233 | babel-helpers@^6.24.1: 234 | version "6.24.1" 235 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 236 | dependencies: 237 | babel-runtime "^6.22.0" 238 | babel-template "^6.24.1" 239 | 240 | babel-jest@^18.0.0: 241 | version "18.0.0" 242 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-18.0.0.tgz#17ebba8cb3285c906d859e8707e4e79795fb65e3" 243 | dependencies: 244 | babel-core "^6.0.0" 245 | babel-plugin-istanbul "^3.0.0" 246 | babel-preset-jest "^18.0.0" 247 | 248 | babel-messages@^6.23.0: 249 | version "6.23.0" 250 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 251 | dependencies: 252 | babel-runtime "^6.22.0" 253 | 254 | babel-plugin-check-es2015-constants@^6.22.0: 255 | version "6.22.0" 256 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 257 | dependencies: 258 | babel-runtime "^6.22.0" 259 | 260 | babel-plugin-istanbul@^3.0.0: 261 | version "3.1.2" 262 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-3.1.2.tgz#11d5abde18425ec24b5d648c7e0b5d25cd354a22" 263 | dependencies: 264 | find-up "^1.1.2" 265 | istanbul-lib-instrument "^1.4.2" 266 | object-assign "^4.1.0" 267 | test-exclude "^3.3.0" 268 | 269 | babel-plugin-jest-hoist@^18.0.0: 270 | version "18.0.0" 271 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-18.0.0.tgz#4150e70ecab560e6e7344adc849498072d34e12a" 272 | 273 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 274 | version "6.22.0" 275 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 276 | dependencies: 277 | babel-runtime "^6.22.0" 278 | 279 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 280 | version "6.22.0" 281 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 282 | dependencies: 283 | babel-runtime "^6.22.0" 284 | 285 | babel-plugin-transform-es2015-block-scoping@^6.24.1: 286 | version "6.26.0" 287 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 288 | dependencies: 289 | babel-runtime "^6.26.0" 290 | babel-template "^6.26.0" 291 | babel-traverse "^6.26.0" 292 | babel-types "^6.26.0" 293 | lodash "^4.17.4" 294 | 295 | babel-plugin-transform-es2015-classes@^6.24.1: 296 | version "6.24.1" 297 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 298 | dependencies: 299 | babel-helper-define-map "^6.24.1" 300 | babel-helper-function-name "^6.24.1" 301 | babel-helper-optimise-call-expression "^6.24.1" 302 | babel-helper-replace-supers "^6.24.1" 303 | babel-messages "^6.23.0" 304 | babel-runtime "^6.22.0" 305 | babel-template "^6.24.1" 306 | babel-traverse "^6.24.1" 307 | babel-types "^6.24.1" 308 | 309 | babel-plugin-transform-es2015-computed-properties@^6.24.1: 310 | version "6.24.1" 311 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 312 | dependencies: 313 | babel-runtime "^6.22.0" 314 | babel-template "^6.24.1" 315 | 316 | babel-plugin-transform-es2015-destructuring@^6.22.0: 317 | version "6.23.0" 318 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 319 | dependencies: 320 | babel-runtime "^6.22.0" 321 | 322 | babel-plugin-transform-es2015-duplicate-keys@^6.24.1: 323 | version "6.24.1" 324 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 325 | dependencies: 326 | babel-runtime "^6.22.0" 327 | babel-types "^6.24.1" 328 | 329 | babel-plugin-transform-es2015-for-of@^6.22.0: 330 | version "6.23.0" 331 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 332 | dependencies: 333 | babel-runtime "^6.22.0" 334 | 335 | babel-plugin-transform-es2015-function-name@^6.24.1: 336 | version "6.24.1" 337 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 338 | dependencies: 339 | babel-helper-function-name "^6.24.1" 340 | babel-runtime "^6.22.0" 341 | babel-types "^6.24.1" 342 | 343 | babel-plugin-transform-es2015-literals@^6.22.0: 344 | version "6.22.0" 345 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 346 | dependencies: 347 | babel-runtime "^6.22.0" 348 | 349 | babel-plugin-transform-es2015-modules-amd@^6.24.1: 350 | version "6.24.1" 351 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 352 | dependencies: 353 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 354 | babel-runtime "^6.22.0" 355 | babel-template "^6.24.1" 356 | 357 | babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 358 | version "6.26.0" 359 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" 360 | dependencies: 361 | babel-plugin-transform-strict-mode "^6.24.1" 362 | babel-runtime "^6.26.0" 363 | babel-template "^6.26.0" 364 | babel-types "^6.26.0" 365 | 366 | babel-plugin-transform-es2015-modules-systemjs@^6.24.1: 367 | version "6.24.1" 368 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 369 | dependencies: 370 | babel-helper-hoist-variables "^6.24.1" 371 | babel-runtime "^6.22.0" 372 | babel-template "^6.24.1" 373 | 374 | babel-plugin-transform-es2015-modules-umd@^6.24.1: 375 | version "6.24.1" 376 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 377 | dependencies: 378 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 379 | babel-runtime "^6.22.0" 380 | babel-template "^6.24.1" 381 | 382 | babel-plugin-transform-es2015-object-super@^6.24.1: 383 | version "6.24.1" 384 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 385 | dependencies: 386 | babel-helper-replace-supers "^6.24.1" 387 | babel-runtime "^6.22.0" 388 | 389 | babel-plugin-transform-es2015-parameters@^6.24.1: 390 | version "6.24.1" 391 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 392 | dependencies: 393 | babel-helper-call-delegate "^6.24.1" 394 | babel-helper-get-function-arity "^6.24.1" 395 | babel-runtime "^6.22.0" 396 | babel-template "^6.24.1" 397 | babel-traverse "^6.24.1" 398 | babel-types "^6.24.1" 399 | 400 | babel-plugin-transform-es2015-shorthand-properties@^6.24.1: 401 | version "6.24.1" 402 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 403 | dependencies: 404 | babel-runtime "^6.22.0" 405 | babel-types "^6.24.1" 406 | 407 | babel-plugin-transform-es2015-spread@^6.22.0: 408 | version "6.22.0" 409 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 410 | dependencies: 411 | babel-runtime "^6.22.0" 412 | 413 | babel-plugin-transform-es2015-sticky-regex@^6.24.1: 414 | version "6.24.1" 415 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 416 | dependencies: 417 | babel-helper-regex "^6.24.1" 418 | babel-runtime "^6.22.0" 419 | babel-types "^6.24.1" 420 | 421 | babel-plugin-transform-es2015-template-literals@^6.22.0: 422 | version "6.22.0" 423 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 424 | dependencies: 425 | babel-runtime "^6.22.0" 426 | 427 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0: 428 | version "6.23.0" 429 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 430 | dependencies: 431 | babel-runtime "^6.22.0" 432 | 433 | babel-plugin-transform-es2015-unicode-regex@^6.24.1: 434 | version "6.24.1" 435 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 436 | dependencies: 437 | babel-helper-regex "^6.24.1" 438 | babel-runtime "^6.22.0" 439 | regexpu-core "^2.0.0" 440 | 441 | babel-plugin-transform-regenerator@^6.24.1: 442 | version "6.26.0" 443 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 444 | dependencies: 445 | regenerator-transform "^0.10.0" 446 | 447 | babel-plugin-transform-strict-mode@^6.24.1: 448 | version "6.24.1" 449 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 450 | dependencies: 451 | babel-runtime "^6.22.0" 452 | babel-types "^6.24.1" 453 | 454 | babel-polyfill@^6.23.0: 455 | version "6.26.0" 456 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" 457 | dependencies: 458 | babel-runtime "^6.26.0" 459 | core-js "^2.5.0" 460 | regenerator-runtime "^0.10.5" 461 | 462 | babel-preset-es2015@^6.22.0: 463 | version "6.24.1" 464 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939" 465 | dependencies: 466 | babel-plugin-check-es2015-constants "^6.22.0" 467 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 468 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 469 | babel-plugin-transform-es2015-block-scoping "^6.24.1" 470 | babel-plugin-transform-es2015-classes "^6.24.1" 471 | babel-plugin-transform-es2015-computed-properties "^6.24.1" 472 | babel-plugin-transform-es2015-destructuring "^6.22.0" 473 | babel-plugin-transform-es2015-duplicate-keys "^6.24.1" 474 | babel-plugin-transform-es2015-for-of "^6.22.0" 475 | babel-plugin-transform-es2015-function-name "^6.24.1" 476 | babel-plugin-transform-es2015-literals "^6.22.0" 477 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 478 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 479 | babel-plugin-transform-es2015-modules-systemjs "^6.24.1" 480 | babel-plugin-transform-es2015-modules-umd "^6.24.1" 481 | babel-plugin-transform-es2015-object-super "^6.24.1" 482 | babel-plugin-transform-es2015-parameters "^6.24.1" 483 | babel-plugin-transform-es2015-shorthand-properties "^6.24.1" 484 | babel-plugin-transform-es2015-spread "^6.22.0" 485 | babel-plugin-transform-es2015-sticky-regex "^6.24.1" 486 | babel-plugin-transform-es2015-template-literals "^6.22.0" 487 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 488 | babel-plugin-transform-es2015-unicode-regex "^6.24.1" 489 | babel-plugin-transform-regenerator "^6.24.1" 490 | 491 | babel-preset-jest@^18.0.0: 492 | version "18.0.0" 493 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-18.0.0.tgz#84faf8ca3ec65aba7d5e3f59bbaed935ab24049e" 494 | dependencies: 495 | babel-plugin-jest-hoist "^18.0.0" 496 | 497 | babel-register@^6.26.0: 498 | version "6.26.0" 499 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 500 | dependencies: 501 | babel-core "^6.26.0" 502 | babel-runtime "^6.26.0" 503 | core-js "^2.5.0" 504 | home-or-tmp "^2.0.0" 505 | lodash "^4.17.4" 506 | mkdirp "^0.5.1" 507 | source-map-support "^0.4.15" 508 | 509 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 510 | version "6.26.0" 511 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 512 | dependencies: 513 | core-js "^2.4.0" 514 | regenerator-runtime "^0.11.0" 515 | 516 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0: 517 | version "6.26.0" 518 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 519 | dependencies: 520 | babel-runtime "^6.26.0" 521 | babel-traverse "^6.26.0" 522 | babel-types "^6.26.0" 523 | babylon "^6.18.0" 524 | lodash "^4.17.4" 525 | 526 | babel-traverse@^6.18.0, babel-traverse@^6.24.1, babel-traverse@^6.26.0: 527 | version "6.26.0" 528 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 529 | dependencies: 530 | babel-code-frame "^6.26.0" 531 | babel-messages "^6.23.0" 532 | babel-runtime "^6.26.0" 533 | babel-types "^6.26.0" 534 | babylon "^6.18.0" 535 | debug "^2.6.8" 536 | globals "^9.18.0" 537 | invariant "^2.2.2" 538 | lodash "^4.17.4" 539 | 540 | babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: 541 | version "6.26.0" 542 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 543 | dependencies: 544 | babel-runtime "^6.26.0" 545 | esutils "^2.0.2" 546 | lodash "^4.17.4" 547 | to-fast-properties "^1.0.3" 548 | 549 | babylon@^6.18.0: 550 | version "6.18.0" 551 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 552 | 553 | balanced-match@^1.0.0: 554 | version "1.0.0" 555 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 556 | 557 | bcrypt-pbkdf@^1.0.0: 558 | version "1.0.1" 559 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 560 | dependencies: 561 | tweetnacl "^0.14.3" 562 | 563 | boom@4.x.x: 564 | version "4.3.1" 565 | resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31" 566 | dependencies: 567 | hoek "4.x.x" 568 | 569 | boom@5.x.x: 570 | version "5.2.0" 571 | resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02" 572 | dependencies: 573 | hoek "4.x.x" 574 | 575 | brace-expansion@^1.1.7: 576 | version "1.1.8" 577 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 578 | dependencies: 579 | balanced-match "^1.0.0" 580 | concat-map "0.0.1" 581 | 582 | braces@^1.8.2: 583 | version "1.8.5" 584 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 585 | dependencies: 586 | expand-range "^1.8.1" 587 | preserve "^0.2.0" 588 | repeat-element "^1.1.2" 589 | 590 | browser-resolve@^1.11.2: 591 | version "1.11.2" 592 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 593 | dependencies: 594 | resolve "1.1.7" 595 | 596 | bser@1.0.2: 597 | version "1.0.2" 598 | resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" 599 | dependencies: 600 | node-int64 "^0.4.0" 601 | 602 | builtin-modules@^1.0.0: 603 | version "1.1.1" 604 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 605 | 606 | callsites@^2.0.0: 607 | version "2.0.0" 608 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 609 | 610 | camelcase@^1.0.2: 611 | version "1.2.1" 612 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 613 | 614 | camelcase@^3.0.0: 615 | version "3.0.0" 616 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 617 | 618 | cardinal@^1.0.0: 619 | version "1.0.0" 620 | resolved "https://registry.yarnpkg.com/cardinal/-/cardinal-1.0.0.tgz#50e21c1b0aa37729f9377def196b5a9cec932ee9" 621 | dependencies: 622 | ansicolors "~0.2.1" 623 | redeyed "~1.0.0" 624 | 625 | caseless@~0.12.0: 626 | version "0.12.0" 627 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 628 | 629 | center-align@^0.1.1: 630 | version "0.1.3" 631 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 632 | dependencies: 633 | align-text "^0.1.3" 634 | lazy-cache "^1.0.3" 635 | 636 | chalk@^1.1.1, chalk@^1.1.3: 637 | version "1.1.3" 638 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 639 | dependencies: 640 | ansi-styles "^2.2.1" 641 | escape-string-regexp "^1.0.2" 642 | has-ansi "^2.0.0" 643 | strip-ansi "^3.0.0" 644 | supports-color "^2.0.0" 645 | 646 | ci-info@^1.0.0: 647 | version "1.1.1" 648 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.1.tgz#47b44df118c48d2597b56d342e7e25791060171a" 649 | 650 | cli-table@^0.3.1: 651 | version "0.3.1" 652 | resolved "https://registry.yarnpkg.com/cli-table/-/cli-table-0.3.1.tgz#f53b05266a8b1a0b934b3d0821e6e2dc5914ae23" 653 | dependencies: 654 | colors "1.0.3" 655 | 656 | cli-usage@^0.1.1: 657 | version "0.1.4" 658 | resolved "https://registry.yarnpkg.com/cli-usage/-/cli-usage-0.1.4.tgz#7c01e0dc706c234b39c933838c8e20b2175776e2" 659 | dependencies: 660 | marked "^0.3.6" 661 | marked-terminal "^1.6.2" 662 | 663 | cliui@^2.1.0: 664 | version "2.1.0" 665 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 666 | dependencies: 667 | center-align "^0.1.1" 668 | right-align "^0.1.1" 669 | wordwrap "0.0.2" 670 | 671 | cliui@^3.2.0: 672 | version "3.2.0" 673 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 674 | dependencies: 675 | string-width "^1.0.1" 676 | strip-ansi "^3.0.1" 677 | wrap-ansi "^2.0.0" 678 | 679 | co@^4.6.0: 680 | version "4.6.0" 681 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 682 | 683 | code-point-at@^1.0.0: 684 | version "1.1.0" 685 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 686 | 687 | colors@1.0.3: 688 | version "1.0.3" 689 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.0.3.tgz#0433f44d809680fdeb60ed260f1b0c262e82a40b" 690 | 691 | combined-stream@^1.0.5, combined-stream@~1.0.5: 692 | version "1.0.5" 693 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 694 | dependencies: 695 | delayed-stream "~1.0.0" 696 | 697 | concat-map@0.0.1: 698 | version "0.0.1" 699 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 700 | 701 | content-type-parser@^1.0.1: 702 | version "1.0.2" 703 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.2.tgz#caabe80623e63638b2502fd4c7f12ff4ce2352e7" 704 | 705 | convert-source-map@^1.5.0: 706 | version "1.5.0" 707 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 708 | 709 | core-js@^2.4.0, core-js@^2.5.0: 710 | version "2.5.1" 711 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.1.tgz#ae6874dc66937789b80754ff5428df66819ca50b" 712 | 713 | core-util-is@1.0.2: 714 | version "1.0.2" 715 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 716 | 717 | cryptiles@3.x.x: 718 | version "3.1.2" 719 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe" 720 | dependencies: 721 | boom "5.x.x" 722 | 723 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 724 | version "0.3.2" 725 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 726 | 727 | "cssstyle@>= 0.2.37 < 0.3.0": 728 | version "0.2.37" 729 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 730 | dependencies: 731 | cssom "0.3.x" 732 | 733 | dashdash@^1.12.0: 734 | version "1.14.1" 735 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 736 | dependencies: 737 | assert-plus "^1.0.0" 738 | 739 | debug@^2.6.8: 740 | version "2.6.9" 741 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 742 | dependencies: 743 | ms "2.0.0" 744 | 745 | debug@^3.1.0: 746 | version "3.1.0" 747 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 748 | dependencies: 749 | ms "2.0.0" 750 | 751 | decamelize@^1.0.0, decamelize@^1.1.1: 752 | version "1.2.0" 753 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 754 | 755 | deep-is@~0.1.3: 756 | version "0.1.3" 757 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 758 | 759 | default-require-extensions@^1.0.0: 760 | version "1.0.0" 761 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 762 | dependencies: 763 | strip-bom "^2.0.0" 764 | 765 | delayed-stream@~1.0.0: 766 | version "1.0.0" 767 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 768 | 769 | detect-indent@^4.0.0: 770 | version "4.0.0" 771 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 772 | dependencies: 773 | repeating "^2.0.0" 774 | 775 | diff@^3.0.0: 776 | version "3.4.0" 777 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.4.0.tgz#b1d85507daf3964828de54b37d0d73ba67dda56c" 778 | 779 | ecc-jsbn@~0.1.1: 780 | version "0.1.1" 781 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 782 | dependencies: 783 | jsbn "~0.1.0" 784 | 785 | errno@^0.1.4: 786 | version "0.1.4" 787 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 788 | dependencies: 789 | prr "~0.0.0" 790 | 791 | error-ex@^1.2.0: 792 | version "1.3.1" 793 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 794 | dependencies: 795 | is-arrayish "^0.2.1" 796 | 797 | escape-string-regexp@^1.0.2: 798 | version "1.0.5" 799 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 800 | 801 | escodegen@^1.6.1: 802 | version "1.9.0" 803 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.9.0.tgz#9811a2f265dc1cd3894420ee3717064b632b8852" 804 | dependencies: 805 | esprima "^3.1.3" 806 | estraverse "^4.2.0" 807 | esutils "^2.0.2" 808 | optionator "^0.8.1" 809 | optionalDependencies: 810 | source-map "~0.5.6" 811 | 812 | esprima@^3.1.3: 813 | version "3.1.3" 814 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 815 | 816 | esprima@^4.0.0: 817 | version "4.0.0" 818 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 819 | 820 | esprima@~3.0.0: 821 | version "3.0.0" 822 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.0.0.tgz#53cf247acda77313e551c3aa2e73342d3fb4f7d9" 823 | 824 | estraverse@^4.2.0: 825 | version "4.2.0" 826 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 827 | 828 | esutils@^2.0.2: 829 | version "2.0.2" 830 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 831 | 832 | exec-sh@^0.2.0: 833 | version "0.2.1" 834 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.1.tgz#163b98a6e89e6b65b47c2a28d215bc1f63989c38" 835 | dependencies: 836 | merge "^1.1.3" 837 | 838 | expand-brackets@^0.1.4: 839 | version "0.1.5" 840 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 841 | dependencies: 842 | is-posix-bracket "^0.1.0" 843 | 844 | expand-range@^1.8.1: 845 | version "1.8.2" 846 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 847 | dependencies: 848 | fill-range "^2.1.0" 849 | 850 | extend@~3.0.1: 851 | version "3.0.1" 852 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 853 | 854 | extglob@^0.3.1: 855 | version "0.3.2" 856 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 857 | dependencies: 858 | is-extglob "^1.0.0" 859 | 860 | extsprintf@1.3.0, extsprintf@^1.2.0: 861 | version "1.3.0" 862 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 863 | 864 | fast-deep-equal@^1.0.0: 865 | version "1.0.0" 866 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 867 | 868 | fast-json-stable-stringify@^2.0.0: 869 | version "2.0.0" 870 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 871 | 872 | fast-levenshtein@~2.0.4: 873 | version "2.0.6" 874 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 875 | 876 | fb-watchman@^1.8.0, fb-watchman@^1.9.0: 877 | version "1.9.2" 878 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-1.9.2.tgz#a24cf47827f82d38fb59a69ad70b76e3b6ae7383" 879 | dependencies: 880 | bser "1.0.2" 881 | 882 | filename-regex@^2.0.0: 883 | version "2.0.1" 884 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 885 | 886 | fileset@^2.0.2: 887 | version "2.0.3" 888 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 889 | dependencies: 890 | glob "^7.0.3" 891 | minimatch "^3.0.3" 892 | 893 | fill-range@^2.1.0: 894 | version "2.2.3" 895 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 896 | dependencies: 897 | is-number "^2.1.0" 898 | isobject "^2.0.0" 899 | randomatic "^1.1.3" 900 | repeat-element "^1.1.2" 901 | repeat-string "^1.5.2" 902 | 903 | find-up@^1.0.0, find-up@^1.1.2: 904 | version "1.1.2" 905 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 906 | dependencies: 907 | path-exists "^2.0.0" 908 | pinkie-promise "^2.0.0" 909 | 910 | for-in@^1.0.1: 911 | version "1.0.2" 912 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 913 | 914 | for-own@^0.1.4: 915 | version "0.1.5" 916 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 917 | dependencies: 918 | for-in "^1.0.1" 919 | 920 | forever-agent@~0.6.1: 921 | version "0.6.1" 922 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 923 | 924 | form-data@~2.3.1: 925 | version "2.3.1" 926 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.1.tgz#6fb94fbd71885306d73d15cc497fe4cc4ecd44bf" 927 | dependencies: 928 | asynckit "^0.4.0" 929 | combined-stream "^1.0.5" 930 | mime-types "^2.1.12" 931 | 932 | fs.realpath@^1.0.0: 933 | version "1.0.0" 934 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 935 | 936 | get-caller-file@^1.0.1: 937 | version "1.0.2" 938 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 939 | 940 | getpass@^0.1.1: 941 | version "0.1.7" 942 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 943 | dependencies: 944 | assert-plus "^1.0.0" 945 | 946 | glob-base@^0.3.0: 947 | version "0.3.0" 948 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 949 | dependencies: 950 | glob-parent "^2.0.0" 951 | is-glob "^2.0.0" 952 | 953 | glob-parent@^2.0.0: 954 | version "2.0.0" 955 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 956 | dependencies: 957 | is-glob "^2.0.0" 958 | 959 | glob@^7.0.3, glob@^7.0.5: 960 | version "7.1.2" 961 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 962 | dependencies: 963 | fs.realpath "^1.0.0" 964 | inflight "^1.0.4" 965 | inherits "2" 966 | minimatch "^3.0.4" 967 | once "^1.3.0" 968 | path-is-absolute "^1.0.0" 969 | 970 | globals@^9.18.0: 971 | version "9.18.0" 972 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 973 | 974 | graceful-fs@^4.1.2, graceful-fs@^4.1.6: 975 | version "4.1.11" 976 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 977 | 978 | growly@^1.2.0: 979 | version "1.3.0" 980 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 981 | 982 | handlebars@^4.0.3: 983 | version "4.0.11" 984 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.11.tgz#630a35dfe0294bc281edae6ffc5d329fc7982dcc" 985 | dependencies: 986 | async "^1.4.0" 987 | optimist "^0.6.1" 988 | source-map "^0.4.4" 989 | optionalDependencies: 990 | uglify-js "^2.6" 991 | 992 | har-schema@^2.0.0: 993 | version "2.0.0" 994 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 995 | 996 | har-validator@~5.0.3: 997 | version "5.0.3" 998 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd" 999 | dependencies: 1000 | ajv "^5.1.0" 1001 | har-schema "^2.0.0" 1002 | 1003 | has-ansi@^2.0.0: 1004 | version "2.0.0" 1005 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1006 | dependencies: 1007 | ansi-regex "^2.0.0" 1008 | 1009 | has-flag@^1.0.0: 1010 | version "1.0.0" 1011 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1012 | 1013 | hawk@~6.0.2: 1014 | version "6.0.2" 1015 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038" 1016 | dependencies: 1017 | boom "4.x.x" 1018 | cryptiles "3.x.x" 1019 | hoek "4.x.x" 1020 | sntp "2.x.x" 1021 | 1022 | hoek@4.x.x: 1023 | version "4.2.0" 1024 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.0.tgz#72d9d0754f7fe25ca2d01ad8f8f9a9449a89526d" 1025 | 1026 | home-or-tmp@^2.0.0: 1027 | version "2.0.0" 1028 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1029 | dependencies: 1030 | os-homedir "^1.0.0" 1031 | os-tmpdir "^1.0.1" 1032 | 1033 | hosted-git-info@^2.1.4: 1034 | version "2.5.0" 1035 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 1036 | 1037 | html-encoding-sniffer@^1.0.1: 1038 | version "1.0.2" 1039 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8" 1040 | dependencies: 1041 | whatwg-encoding "^1.0.1" 1042 | 1043 | http-signature@~1.2.0: 1044 | version "1.2.0" 1045 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 1046 | dependencies: 1047 | assert-plus "^1.0.0" 1048 | jsprim "^1.2.2" 1049 | sshpk "^1.7.0" 1050 | 1051 | iconv-lite@0.4.19: 1052 | version "0.4.19" 1053 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 1054 | 1055 | inflight@^1.0.4: 1056 | version "1.0.6" 1057 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1058 | dependencies: 1059 | once "^1.3.0" 1060 | wrappy "1" 1061 | 1062 | inherits@2: 1063 | version "2.0.3" 1064 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1065 | 1066 | invariant@^2.2.2: 1067 | version "2.2.2" 1068 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1069 | dependencies: 1070 | loose-envify "^1.0.0" 1071 | 1072 | invert-kv@^1.0.0: 1073 | version "1.0.0" 1074 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1075 | 1076 | is-arrayish@^0.2.1: 1077 | version "0.2.1" 1078 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1079 | 1080 | is-buffer@^1.1.5: 1081 | version "1.1.6" 1082 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1083 | 1084 | is-builtin-module@^1.0.0: 1085 | version "1.0.0" 1086 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1087 | dependencies: 1088 | builtin-modules "^1.0.0" 1089 | 1090 | is-ci@^1.0.9: 1091 | version "1.0.10" 1092 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 1093 | dependencies: 1094 | ci-info "^1.0.0" 1095 | 1096 | is-dotfile@^1.0.0: 1097 | version "1.0.3" 1098 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1099 | 1100 | is-equal-shallow@^0.1.3: 1101 | version "0.1.3" 1102 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1103 | dependencies: 1104 | is-primitive "^2.0.0" 1105 | 1106 | is-extendable@^0.1.1: 1107 | version "0.1.1" 1108 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1109 | 1110 | is-extglob@^1.0.0: 1111 | version "1.0.0" 1112 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1113 | 1114 | is-finite@^1.0.0: 1115 | version "1.0.2" 1116 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1117 | dependencies: 1118 | number-is-nan "^1.0.0" 1119 | 1120 | is-fullwidth-code-point@^1.0.0: 1121 | version "1.0.0" 1122 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1123 | dependencies: 1124 | number-is-nan "^1.0.0" 1125 | 1126 | is-glob@^2.0.0, is-glob@^2.0.1: 1127 | version "2.0.1" 1128 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1129 | dependencies: 1130 | is-extglob "^1.0.0" 1131 | 1132 | is-number@^2.1.0: 1133 | version "2.1.0" 1134 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1135 | dependencies: 1136 | kind-of "^3.0.2" 1137 | 1138 | is-number@^3.0.0: 1139 | version "3.0.0" 1140 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1141 | dependencies: 1142 | kind-of "^3.0.2" 1143 | 1144 | is-posix-bracket@^0.1.0: 1145 | version "0.1.1" 1146 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1147 | 1148 | is-primitive@^2.0.0: 1149 | version "2.0.0" 1150 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1151 | 1152 | is-typedarray@~1.0.0: 1153 | version "1.0.0" 1154 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1155 | 1156 | is-utf8@^0.2.0: 1157 | version "0.2.1" 1158 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1159 | 1160 | isarray@1.0.0: 1161 | version "1.0.0" 1162 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1163 | 1164 | isexe@^2.0.0: 1165 | version "2.0.0" 1166 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1167 | 1168 | isobject@^2.0.0: 1169 | version "2.1.0" 1170 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1171 | dependencies: 1172 | isarray "1.0.0" 1173 | 1174 | isstream@~0.1.2: 1175 | version "0.1.2" 1176 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1177 | 1178 | istanbul-api@^1.1.0-alpha.1: 1179 | version "1.2.1" 1180 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.2.1.tgz#0c60a0515eb11c7d65c6b50bba2c6e999acd8620" 1181 | dependencies: 1182 | async "^2.1.4" 1183 | fileset "^2.0.2" 1184 | istanbul-lib-coverage "^1.1.1" 1185 | istanbul-lib-hook "^1.1.0" 1186 | istanbul-lib-instrument "^1.9.1" 1187 | istanbul-lib-report "^1.1.2" 1188 | istanbul-lib-source-maps "^1.2.2" 1189 | istanbul-reports "^1.1.3" 1190 | js-yaml "^3.7.0" 1191 | mkdirp "^0.5.1" 1192 | once "^1.4.0" 1193 | 1194 | istanbul-lib-coverage@^1.0.0, istanbul-lib-coverage@^1.1.1: 1195 | version "1.1.1" 1196 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da" 1197 | 1198 | istanbul-lib-hook@^1.1.0: 1199 | version "1.1.0" 1200 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.1.0.tgz#8538d970372cb3716d53e55523dd54b557a8d89b" 1201 | dependencies: 1202 | append-transform "^0.4.0" 1203 | 1204 | istanbul-lib-instrument@^1.1.1, istanbul-lib-instrument@^1.4.2, istanbul-lib-instrument@^1.9.1: 1205 | version "1.9.1" 1206 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.9.1.tgz#250b30b3531e5d3251299fdd64b0b2c9db6b558e" 1207 | dependencies: 1208 | babel-generator "^6.18.0" 1209 | babel-template "^6.16.0" 1210 | babel-traverse "^6.18.0" 1211 | babel-types "^6.18.0" 1212 | babylon "^6.18.0" 1213 | istanbul-lib-coverage "^1.1.1" 1214 | semver "^5.3.0" 1215 | 1216 | istanbul-lib-report@^1.1.2: 1217 | version "1.1.2" 1218 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.2.tgz#922be27c13b9511b979bd1587359f69798c1d425" 1219 | dependencies: 1220 | istanbul-lib-coverage "^1.1.1" 1221 | mkdirp "^0.5.1" 1222 | path-parse "^1.0.5" 1223 | supports-color "^3.1.2" 1224 | 1225 | istanbul-lib-source-maps@^1.2.2: 1226 | version "1.2.2" 1227 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.2.tgz#750578602435f28a0c04ee6d7d9e0f2960e62c1c" 1228 | dependencies: 1229 | debug "^3.1.0" 1230 | istanbul-lib-coverage "^1.1.1" 1231 | mkdirp "^0.5.1" 1232 | rimraf "^2.6.1" 1233 | source-map "^0.5.3" 1234 | 1235 | istanbul-reports@^1.1.3: 1236 | version "1.1.3" 1237 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.3.tgz#3b9e1e8defb6d18b1d425da8e8b32c5a163f2d10" 1238 | dependencies: 1239 | handlebars "^4.0.3" 1240 | 1241 | jest-changed-files@^17.0.2: 1242 | version "17.0.2" 1243 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-17.0.2.tgz#f5657758736996f590a51b87e5c9369d904ba7b7" 1244 | 1245 | jest-cli@^18.1.0: 1246 | version "18.1.0" 1247 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-18.1.0.tgz#5ead36ecad420817c2c9baa2aa7574f63257b3d6" 1248 | dependencies: 1249 | ansi-escapes "^1.4.0" 1250 | callsites "^2.0.0" 1251 | chalk "^1.1.1" 1252 | graceful-fs "^4.1.6" 1253 | is-ci "^1.0.9" 1254 | istanbul-api "^1.1.0-alpha.1" 1255 | istanbul-lib-coverage "^1.0.0" 1256 | istanbul-lib-instrument "^1.1.1" 1257 | jest-changed-files "^17.0.2" 1258 | jest-config "^18.1.0" 1259 | jest-environment-jsdom "^18.1.0" 1260 | jest-file-exists "^17.0.0" 1261 | jest-haste-map "^18.1.0" 1262 | jest-jasmine2 "^18.1.0" 1263 | jest-mock "^18.0.0" 1264 | jest-resolve "^18.1.0" 1265 | jest-resolve-dependencies "^18.1.0" 1266 | jest-runtime "^18.1.0" 1267 | jest-snapshot "^18.1.0" 1268 | jest-util "^18.1.0" 1269 | json-stable-stringify "^1.0.0" 1270 | node-notifier "^4.6.1" 1271 | sane "~1.4.1" 1272 | strip-ansi "^3.0.1" 1273 | throat "^3.0.0" 1274 | which "^1.1.1" 1275 | worker-farm "^1.3.1" 1276 | yargs "^6.3.0" 1277 | 1278 | jest-config@^18.1.0: 1279 | version "18.1.0" 1280 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-18.1.0.tgz#6111740a6d48aab86ff5a9e6ab0b98bd993b6ff4" 1281 | dependencies: 1282 | chalk "^1.1.1" 1283 | jest-environment-jsdom "^18.1.0" 1284 | jest-environment-node "^18.1.0" 1285 | jest-jasmine2 "^18.1.0" 1286 | jest-mock "^18.0.0" 1287 | jest-resolve "^18.1.0" 1288 | jest-util "^18.1.0" 1289 | json-stable-stringify "^1.0.0" 1290 | 1291 | jest-diff@^18.1.0: 1292 | version "18.1.0" 1293 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-18.1.0.tgz#4ff79e74dd988c139195b365dc65d87f606f4803" 1294 | dependencies: 1295 | chalk "^1.1.3" 1296 | diff "^3.0.0" 1297 | jest-matcher-utils "^18.1.0" 1298 | pretty-format "^18.1.0" 1299 | 1300 | jest-environment-jsdom@^18.1.0: 1301 | version "18.1.0" 1302 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-18.1.0.tgz#18b42f0c4ea2bae9f36cab3639b1e8f8c384e24e" 1303 | dependencies: 1304 | jest-mock "^18.0.0" 1305 | jest-util "^18.1.0" 1306 | jsdom "^9.9.1" 1307 | 1308 | jest-environment-node@^18.1.0: 1309 | version "18.1.0" 1310 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-18.1.0.tgz#4d6797572c8dda99acf5fae696eb62945547c779" 1311 | dependencies: 1312 | jest-mock "^18.0.0" 1313 | jest-util "^18.1.0" 1314 | 1315 | jest-file-exists@^17.0.0: 1316 | version "17.0.0" 1317 | resolved "https://registry.yarnpkg.com/jest-file-exists/-/jest-file-exists-17.0.0.tgz#7f63eb73a1c43a13f461be261768b45af2cdd169" 1318 | 1319 | jest-haste-map@^18.1.0: 1320 | version "18.1.0" 1321 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-18.1.0.tgz#06839c74b770a40c1a106968851df8d281c08375" 1322 | dependencies: 1323 | fb-watchman "^1.9.0" 1324 | graceful-fs "^4.1.6" 1325 | micromatch "^2.3.11" 1326 | sane "~1.4.1" 1327 | worker-farm "^1.3.1" 1328 | 1329 | jest-jasmine2@^18.1.0: 1330 | version "18.1.0" 1331 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-18.1.0.tgz#094e104c2c189708766c77263bb2aecb5860a80b" 1332 | dependencies: 1333 | graceful-fs "^4.1.6" 1334 | jest-matcher-utils "^18.1.0" 1335 | jest-matchers "^18.1.0" 1336 | jest-snapshot "^18.1.0" 1337 | jest-util "^18.1.0" 1338 | 1339 | jest-matcher-utils@^18.1.0: 1340 | version "18.1.0" 1341 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-18.1.0.tgz#1ac4651955ee2a60cef1e7fcc98cdfd773c0f932" 1342 | dependencies: 1343 | chalk "^1.1.3" 1344 | pretty-format "^18.1.0" 1345 | 1346 | jest-matchers@^18.1.0: 1347 | version "18.1.0" 1348 | resolved "https://registry.yarnpkg.com/jest-matchers/-/jest-matchers-18.1.0.tgz#0341484bf87a1fd0bac0a4d2c899e2b77a3f1ead" 1349 | dependencies: 1350 | jest-diff "^18.1.0" 1351 | jest-matcher-utils "^18.1.0" 1352 | jest-util "^18.1.0" 1353 | pretty-format "^18.1.0" 1354 | 1355 | jest-mock@^18.0.0: 1356 | version "18.0.0" 1357 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-18.0.0.tgz#5c248846ea33fa558b526f5312ab4a6765e489b3" 1358 | 1359 | jest-resolve-dependencies@^18.1.0: 1360 | version "18.1.0" 1361 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-18.1.0.tgz#8134fb5caf59c9ed842fe0152ab01c52711f1bbb" 1362 | dependencies: 1363 | jest-file-exists "^17.0.0" 1364 | jest-resolve "^18.1.0" 1365 | 1366 | jest-resolve@^18.1.0: 1367 | version "18.1.0" 1368 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-18.1.0.tgz#6800accb536658c906cd5e29de412b1ab9ac249b" 1369 | dependencies: 1370 | browser-resolve "^1.11.2" 1371 | jest-file-exists "^17.0.0" 1372 | jest-haste-map "^18.1.0" 1373 | resolve "^1.2.0" 1374 | 1375 | jest-runtime@^18.1.0: 1376 | version "18.1.0" 1377 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-18.1.0.tgz#3abfd687175b21fc3b85a2b8064399e997859922" 1378 | dependencies: 1379 | babel-core "^6.0.0" 1380 | babel-jest "^18.0.0" 1381 | babel-plugin-istanbul "^3.0.0" 1382 | chalk "^1.1.3" 1383 | graceful-fs "^4.1.6" 1384 | jest-config "^18.1.0" 1385 | jest-file-exists "^17.0.0" 1386 | jest-haste-map "^18.1.0" 1387 | jest-mock "^18.0.0" 1388 | jest-resolve "^18.1.0" 1389 | jest-snapshot "^18.1.0" 1390 | jest-util "^18.1.0" 1391 | json-stable-stringify "^1.0.0" 1392 | micromatch "^2.3.11" 1393 | yargs "^6.3.0" 1394 | 1395 | jest-snapshot@^18.1.0: 1396 | version "18.1.0" 1397 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-18.1.0.tgz#55b96d2ee639c9bce76f87f2a3fd40b71c7a5916" 1398 | dependencies: 1399 | jest-diff "^18.1.0" 1400 | jest-file-exists "^17.0.0" 1401 | jest-matcher-utils "^18.1.0" 1402 | jest-util "^18.1.0" 1403 | natural-compare "^1.4.0" 1404 | pretty-format "^18.1.0" 1405 | 1406 | jest-util@^18.1.0: 1407 | version "18.1.0" 1408 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-18.1.0.tgz#3a99c32114ab17f84be094382527006e6d4bfc6a" 1409 | dependencies: 1410 | chalk "^1.1.1" 1411 | diff "^3.0.0" 1412 | graceful-fs "^4.1.6" 1413 | jest-file-exists "^17.0.0" 1414 | jest-mock "^18.0.0" 1415 | mkdirp "^0.5.1" 1416 | 1417 | jest@^18.1.0: 1418 | version "18.1.0" 1419 | resolved "https://registry.yarnpkg.com/jest/-/jest-18.1.0.tgz#bcebf1e203dee5c2ad2091c805300a343d9e6c7d" 1420 | dependencies: 1421 | jest-cli "^18.1.0" 1422 | 1423 | js-tokens@^3.0.0, js-tokens@^3.0.2: 1424 | version "3.0.2" 1425 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1426 | 1427 | js-yaml@^3.7.0: 1428 | version "3.10.0" 1429 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" 1430 | dependencies: 1431 | argparse "^1.0.7" 1432 | esprima "^4.0.0" 1433 | 1434 | jsbn@~0.1.0: 1435 | version "0.1.1" 1436 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1437 | 1438 | jsdom@^9.9.1: 1439 | version "9.12.0" 1440 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 1441 | dependencies: 1442 | abab "^1.0.3" 1443 | acorn "^4.0.4" 1444 | acorn-globals "^3.1.0" 1445 | array-equal "^1.0.0" 1446 | content-type-parser "^1.0.1" 1447 | cssom ">= 0.3.2 < 0.4.0" 1448 | cssstyle ">= 0.2.37 < 0.3.0" 1449 | escodegen "^1.6.1" 1450 | html-encoding-sniffer "^1.0.1" 1451 | nwmatcher ">= 1.3.9 < 2.0.0" 1452 | parse5 "^1.5.1" 1453 | request "^2.79.0" 1454 | sax "^1.2.1" 1455 | symbol-tree "^3.2.1" 1456 | tough-cookie "^2.3.2" 1457 | webidl-conversions "^4.0.0" 1458 | whatwg-encoding "^1.0.1" 1459 | whatwg-url "^4.3.0" 1460 | xml-name-validator "^2.0.1" 1461 | 1462 | jsesc@^1.3.0: 1463 | version "1.3.0" 1464 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1465 | 1466 | jsesc@~0.5.0: 1467 | version "0.5.0" 1468 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1469 | 1470 | json-schema-traverse@^0.3.0: 1471 | version "0.3.1" 1472 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 1473 | 1474 | json-schema@0.2.3: 1475 | version "0.2.3" 1476 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1477 | 1478 | json-stable-stringify@^1.0.0: 1479 | version "1.0.1" 1480 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1481 | dependencies: 1482 | jsonify "~0.0.0" 1483 | 1484 | json-stringify-safe@~5.0.1: 1485 | version "5.0.1" 1486 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1487 | 1488 | json5@^0.5.1: 1489 | version "0.5.1" 1490 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1491 | 1492 | jsonify@~0.0.0: 1493 | version "0.0.0" 1494 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1495 | 1496 | jsprim@^1.2.2: 1497 | version "1.4.1" 1498 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1499 | dependencies: 1500 | assert-plus "1.0.0" 1501 | extsprintf "1.3.0" 1502 | json-schema "0.2.3" 1503 | verror "1.10.0" 1504 | 1505 | kind-of@^3.0.2: 1506 | version "3.2.2" 1507 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1508 | dependencies: 1509 | is-buffer "^1.1.5" 1510 | 1511 | kind-of@^4.0.0: 1512 | version "4.0.0" 1513 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1514 | dependencies: 1515 | is-buffer "^1.1.5" 1516 | 1517 | lazy-cache@^1.0.3: 1518 | version "1.0.4" 1519 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1520 | 1521 | lcid@^1.0.0: 1522 | version "1.0.0" 1523 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1524 | dependencies: 1525 | invert-kv "^1.0.0" 1526 | 1527 | levn@~0.3.0: 1528 | version "0.3.0" 1529 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1530 | dependencies: 1531 | prelude-ls "~1.1.2" 1532 | type-check "~0.3.2" 1533 | 1534 | load-json-file@^1.0.0: 1535 | version "1.1.0" 1536 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1537 | dependencies: 1538 | graceful-fs "^4.1.2" 1539 | parse-json "^2.2.0" 1540 | pify "^2.0.0" 1541 | pinkie-promise "^2.0.0" 1542 | strip-bom "^2.0.0" 1543 | 1544 | lodash._arraycopy@^3.0.0: 1545 | version "3.0.0" 1546 | resolved "https://registry.yarnpkg.com/lodash._arraycopy/-/lodash._arraycopy-3.0.0.tgz#76e7b7c1f1fb92547374878a562ed06a3e50f6e1" 1547 | 1548 | lodash._arrayeach@^3.0.0: 1549 | version "3.0.0" 1550 | resolved "https://registry.yarnpkg.com/lodash._arrayeach/-/lodash._arrayeach-3.0.0.tgz#bab156b2a90d3f1bbd5c653403349e5e5933ef9e" 1551 | 1552 | lodash._baseassign@^3.0.0: 1553 | version "3.2.0" 1554 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 1555 | dependencies: 1556 | lodash._basecopy "^3.0.0" 1557 | lodash.keys "^3.0.0" 1558 | 1559 | lodash._baseclone@^3.0.0: 1560 | version "3.3.0" 1561 | resolved "https://registry.yarnpkg.com/lodash._baseclone/-/lodash._baseclone-3.3.0.tgz#303519bf6393fe7e42f34d8b630ef7794e3542b7" 1562 | dependencies: 1563 | lodash._arraycopy "^3.0.0" 1564 | lodash._arrayeach "^3.0.0" 1565 | lodash._baseassign "^3.0.0" 1566 | lodash._basefor "^3.0.0" 1567 | lodash.isarray "^3.0.0" 1568 | lodash.keys "^3.0.0" 1569 | 1570 | lodash._basecopy@^3.0.0: 1571 | version "3.0.1" 1572 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 1573 | 1574 | lodash._basefor@^3.0.0: 1575 | version "3.0.3" 1576 | resolved "https://registry.yarnpkg.com/lodash._basefor/-/lodash._basefor-3.0.3.tgz#7550b4e9218ef09fad24343b612021c79b4c20c2" 1577 | 1578 | lodash._bindcallback@^3.0.0: 1579 | version "3.0.1" 1580 | resolved "https://registry.yarnpkg.com/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz#e531c27644cf8b57a99e17ed95b35c748789392e" 1581 | 1582 | lodash._getnative@^3.0.0: 1583 | version "3.9.1" 1584 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 1585 | 1586 | lodash.assign@^4.2.0: 1587 | version "4.2.0" 1588 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" 1589 | 1590 | lodash.clonedeep@^3.0.0: 1591 | version "3.0.2" 1592 | resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-3.0.2.tgz#a0a1e40d82a5ea89ff5b147b8444ed63d92827db" 1593 | dependencies: 1594 | lodash._baseclone "^3.0.0" 1595 | lodash._bindcallback "^3.0.0" 1596 | 1597 | lodash.isarguments@^3.0.0: 1598 | version "3.1.0" 1599 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 1600 | 1601 | lodash.isarray@^3.0.0: 1602 | version "3.0.4" 1603 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 1604 | 1605 | lodash.keys@^3.0.0: 1606 | version "3.1.2" 1607 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 1608 | dependencies: 1609 | lodash._getnative "^3.0.0" 1610 | lodash.isarguments "^3.0.0" 1611 | lodash.isarray "^3.0.0" 1612 | 1613 | lodash.toarray@^4.4.0: 1614 | version "4.4.0" 1615 | resolved "https://registry.yarnpkg.com/lodash.toarray/-/lodash.toarray-4.4.0.tgz#24c4bfcd6b2fba38bfd0594db1179d8e9b656561" 1616 | 1617 | lodash@^4.14.0, lodash@^4.17.4: 1618 | version "4.17.4" 1619 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1620 | 1621 | longest@^1.0.1: 1622 | version "1.0.1" 1623 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 1624 | 1625 | loose-envify@^1.0.0: 1626 | version "1.3.1" 1627 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1628 | dependencies: 1629 | js-tokens "^3.0.0" 1630 | 1631 | makeerror@1.0.x: 1632 | version "1.0.11" 1633 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 1634 | dependencies: 1635 | tmpl "1.0.x" 1636 | 1637 | marked-terminal@^1.6.2: 1638 | version "1.7.0" 1639 | resolved "https://registry.yarnpkg.com/marked-terminal/-/marked-terminal-1.7.0.tgz#c8c460881c772c7604b64367007ee5f77f125904" 1640 | dependencies: 1641 | cardinal "^1.0.0" 1642 | chalk "^1.1.3" 1643 | cli-table "^0.3.1" 1644 | lodash.assign "^4.2.0" 1645 | node-emoji "^1.4.1" 1646 | 1647 | marked@^0.3.6: 1648 | version "0.3.6" 1649 | resolved "https://registry.yarnpkg.com/marked/-/marked-0.3.6.tgz#b2c6c618fccece4ef86c4fc6cb8a7cbf5aeda8d7" 1650 | 1651 | merge@^1.1.3: 1652 | version "1.2.0" 1653 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 1654 | 1655 | micromatch@^2.3.11: 1656 | version "2.3.11" 1657 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1658 | dependencies: 1659 | arr-diff "^2.0.0" 1660 | array-unique "^0.2.1" 1661 | braces "^1.8.2" 1662 | expand-brackets "^0.1.4" 1663 | extglob "^0.3.1" 1664 | filename-regex "^2.0.0" 1665 | is-extglob "^1.0.0" 1666 | is-glob "^2.0.1" 1667 | kind-of "^3.0.2" 1668 | normalize-path "^2.0.1" 1669 | object.omit "^2.0.0" 1670 | parse-glob "^3.0.4" 1671 | regex-cache "^0.4.2" 1672 | 1673 | mime-db@~1.30.0: 1674 | version "1.30.0" 1675 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 1676 | 1677 | mime-types@^2.1.12, mime-types@~2.1.17: 1678 | version "2.1.17" 1679 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 1680 | dependencies: 1681 | mime-db "~1.30.0" 1682 | 1683 | minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 1684 | version "3.0.4" 1685 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1686 | dependencies: 1687 | brace-expansion "^1.1.7" 1688 | 1689 | minimist@0.0.8: 1690 | version "0.0.8" 1691 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1692 | 1693 | minimist@^1.1.1: 1694 | version "1.2.0" 1695 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1696 | 1697 | minimist@~0.0.1: 1698 | version "0.0.10" 1699 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 1700 | 1701 | mkdirp@^0.5.1: 1702 | version "0.5.1" 1703 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1704 | dependencies: 1705 | minimist "0.0.8" 1706 | 1707 | ms@2.0.0: 1708 | version "2.0.0" 1709 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1710 | 1711 | natural-compare@^1.4.0: 1712 | version "1.4.0" 1713 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1714 | 1715 | node-emoji@^1.4.1: 1716 | version "1.8.1" 1717 | resolved "https://registry.yarnpkg.com/node-emoji/-/node-emoji-1.8.1.tgz#6eec6bfb07421e2148c75c6bba72421f8530a826" 1718 | dependencies: 1719 | lodash.toarray "^4.4.0" 1720 | 1721 | node-int64@^0.4.0: 1722 | version "0.4.0" 1723 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 1724 | 1725 | node-notifier@^4.6.1: 1726 | version "4.6.1" 1727 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-4.6.1.tgz#056d14244f3dcc1ceadfe68af9cff0c5473a33f3" 1728 | dependencies: 1729 | cli-usage "^0.1.1" 1730 | growly "^1.2.0" 1731 | lodash.clonedeep "^3.0.0" 1732 | minimist "^1.1.1" 1733 | semver "^5.1.0" 1734 | shellwords "^0.1.0" 1735 | which "^1.0.5" 1736 | 1737 | normalize-package-data@^2.3.2: 1738 | version "2.4.0" 1739 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 1740 | dependencies: 1741 | hosted-git-info "^2.1.4" 1742 | is-builtin-module "^1.0.0" 1743 | semver "2 || 3 || 4 || 5" 1744 | validate-npm-package-license "^3.0.1" 1745 | 1746 | normalize-path@^2.0.1: 1747 | version "2.1.1" 1748 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1749 | dependencies: 1750 | remove-trailing-separator "^1.0.1" 1751 | 1752 | number-is-nan@^1.0.0: 1753 | version "1.0.1" 1754 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1755 | 1756 | "nwmatcher@>= 1.3.9 < 2.0.0": 1757 | version "1.4.3" 1758 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.3.tgz#64348e3b3d80f035b40ac11563d278f8b72db89c" 1759 | 1760 | oauth-sign@~0.8.2: 1761 | version "0.8.2" 1762 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1763 | 1764 | object-assign@^4.1.0: 1765 | version "4.1.1" 1766 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1767 | 1768 | object.omit@^2.0.0: 1769 | version "2.0.1" 1770 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1771 | dependencies: 1772 | for-own "^0.1.4" 1773 | is-extendable "^0.1.1" 1774 | 1775 | once@^1.3.0, once@^1.4.0: 1776 | version "1.4.0" 1777 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1778 | dependencies: 1779 | wrappy "1" 1780 | 1781 | optimist@^0.6.1: 1782 | version "0.6.1" 1783 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 1784 | dependencies: 1785 | minimist "~0.0.1" 1786 | wordwrap "~0.0.2" 1787 | 1788 | optionator@^0.8.1: 1789 | version "0.8.2" 1790 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 1791 | dependencies: 1792 | deep-is "~0.1.3" 1793 | fast-levenshtein "~2.0.4" 1794 | levn "~0.3.0" 1795 | prelude-ls "~1.1.2" 1796 | type-check "~0.3.2" 1797 | wordwrap "~1.0.0" 1798 | 1799 | os-homedir@^1.0.0: 1800 | version "1.0.2" 1801 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1802 | 1803 | os-locale@^1.4.0: 1804 | version "1.4.0" 1805 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 1806 | dependencies: 1807 | lcid "^1.0.0" 1808 | 1809 | os-tmpdir@^1.0.1: 1810 | version "1.0.2" 1811 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1812 | 1813 | parse-glob@^3.0.4: 1814 | version "3.0.4" 1815 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1816 | dependencies: 1817 | glob-base "^0.3.0" 1818 | is-dotfile "^1.0.0" 1819 | is-extglob "^1.0.0" 1820 | is-glob "^2.0.0" 1821 | 1822 | parse-json@^2.2.0: 1823 | version "2.2.0" 1824 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1825 | dependencies: 1826 | error-ex "^1.2.0" 1827 | 1828 | parse5@^1.5.1: 1829 | version "1.5.1" 1830 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 1831 | 1832 | path-exists@^2.0.0: 1833 | version "2.1.0" 1834 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1835 | dependencies: 1836 | pinkie-promise "^2.0.0" 1837 | 1838 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 1839 | version "1.0.1" 1840 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1841 | 1842 | path-parse@^1.0.5: 1843 | version "1.0.5" 1844 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 1845 | 1846 | path-type@^1.0.0: 1847 | version "1.1.0" 1848 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 1849 | dependencies: 1850 | graceful-fs "^4.1.2" 1851 | pify "^2.0.0" 1852 | pinkie-promise "^2.0.0" 1853 | 1854 | performance-now@^2.1.0: 1855 | version "2.1.0" 1856 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 1857 | 1858 | pify@^2.0.0: 1859 | version "2.3.0" 1860 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1861 | 1862 | pinkie-promise@^2.0.0: 1863 | version "2.0.1" 1864 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1865 | dependencies: 1866 | pinkie "^2.0.0" 1867 | 1868 | pinkie@^2.0.0: 1869 | version "2.0.4" 1870 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1871 | 1872 | prelude-ls@~1.1.2: 1873 | version "1.1.2" 1874 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 1875 | 1876 | preserve@^0.2.0: 1877 | version "0.2.0" 1878 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1879 | 1880 | pretty-format@^18.1.0: 1881 | version "18.1.0" 1882 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-18.1.0.tgz#fb65a86f7a7f9194963eee91865c1bcf1039e284" 1883 | dependencies: 1884 | ansi-styles "^2.2.1" 1885 | 1886 | private@^0.1.6, private@^0.1.7: 1887 | version "0.1.8" 1888 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 1889 | 1890 | prr@~0.0.0: 1891 | version "0.0.0" 1892 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 1893 | 1894 | punycode@^1.4.1: 1895 | version "1.4.1" 1896 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1897 | 1898 | qs@~6.5.1: 1899 | version "6.5.1" 1900 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8" 1901 | 1902 | randomatic@^1.1.3: 1903 | version "1.1.7" 1904 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 1905 | dependencies: 1906 | is-number "^3.0.0" 1907 | kind-of "^4.0.0" 1908 | 1909 | read-pkg-up@^1.0.1: 1910 | version "1.0.1" 1911 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 1912 | dependencies: 1913 | find-up "^1.0.0" 1914 | read-pkg "^1.0.0" 1915 | 1916 | read-pkg@^1.0.0: 1917 | version "1.1.0" 1918 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 1919 | dependencies: 1920 | load-json-file "^1.0.0" 1921 | normalize-package-data "^2.3.2" 1922 | path-type "^1.0.0" 1923 | 1924 | redeyed@~1.0.0: 1925 | version "1.0.1" 1926 | resolved "https://registry.yarnpkg.com/redeyed/-/redeyed-1.0.1.tgz#e96c193b40c0816b00aec842698e61185e55498a" 1927 | dependencies: 1928 | esprima "~3.0.0" 1929 | 1930 | regenerate@^1.2.1: 1931 | version "1.3.3" 1932 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f" 1933 | 1934 | regenerator-runtime@^0.10.5: 1935 | version "0.10.5" 1936 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 1937 | 1938 | regenerator-runtime@^0.11.0: 1939 | version "0.11.0" 1940 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1" 1941 | 1942 | regenerator-transform@^0.10.0: 1943 | version "0.10.1" 1944 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 1945 | dependencies: 1946 | babel-runtime "^6.18.0" 1947 | babel-types "^6.19.0" 1948 | private "^0.1.6" 1949 | 1950 | regex-cache@^0.4.2: 1951 | version "0.4.4" 1952 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 1953 | dependencies: 1954 | is-equal-shallow "^0.1.3" 1955 | 1956 | regexpu-core@^2.0.0: 1957 | version "2.0.0" 1958 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 1959 | dependencies: 1960 | regenerate "^1.2.1" 1961 | regjsgen "^0.2.0" 1962 | regjsparser "^0.1.4" 1963 | 1964 | regjsgen@^0.2.0: 1965 | version "0.2.0" 1966 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 1967 | 1968 | regjsparser@^0.1.4: 1969 | version "0.1.5" 1970 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 1971 | dependencies: 1972 | jsesc "~0.5.0" 1973 | 1974 | remove-trailing-separator@^1.0.1: 1975 | version "1.1.0" 1976 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 1977 | 1978 | repeat-element@^1.1.2: 1979 | version "1.1.2" 1980 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1981 | 1982 | repeat-string@^1.5.2: 1983 | version "1.6.1" 1984 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1985 | 1986 | repeating@^2.0.0: 1987 | version "2.0.1" 1988 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1989 | dependencies: 1990 | is-finite "^1.0.0" 1991 | 1992 | request@^2.79.0: 1993 | version "2.83.0" 1994 | resolved "https://registry.yarnpkg.com/request/-/request-2.83.0.tgz#ca0b65da02ed62935887808e6f510381034e3356" 1995 | dependencies: 1996 | aws-sign2 "~0.7.0" 1997 | aws4 "^1.6.0" 1998 | caseless "~0.12.0" 1999 | combined-stream "~1.0.5" 2000 | extend "~3.0.1" 2001 | forever-agent "~0.6.1" 2002 | form-data "~2.3.1" 2003 | har-validator "~5.0.3" 2004 | hawk "~6.0.2" 2005 | http-signature "~1.2.0" 2006 | is-typedarray "~1.0.0" 2007 | isstream "~0.1.2" 2008 | json-stringify-safe "~5.0.1" 2009 | mime-types "~2.1.17" 2010 | oauth-sign "~0.8.2" 2011 | performance-now "^2.1.0" 2012 | qs "~6.5.1" 2013 | safe-buffer "^5.1.1" 2014 | stringstream "~0.0.5" 2015 | tough-cookie "~2.3.3" 2016 | tunnel-agent "^0.6.0" 2017 | uuid "^3.1.0" 2018 | 2019 | require-directory@^2.1.1: 2020 | version "2.1.1" 2021 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2022 | 2023 | require-main-filename@^1.0.1: 2024 | version "1.0.1" 2025 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2026 | 2027 | resolve@1.1.7: 2028 | version "1.1.7" 2029 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2030 | 2031 | resolve@^1.2.0: 2032 | version "1.5.0" 2033 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.5.0.tgz#1f09acce796c9a762579f31b2c1cc4c3cddf9f36" 2034 | dependencies: 2035 | path-parse "^1.0.5" 2036 | 2037 | right-align@^0.1.1: 2038 | version "0.1.3" 2039 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2040 | dependencies: 2041 | align-text "^0.1.1" 2042 | 2043 | rimraf@^2.6.1: 2044 | version "2.6.2" 2045 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2046 | dependencies: 2047 | glob "^7.0.5" 2048 | 2049 | safe-buffer@^5.0.1, safe-buffer@^5.1.1: 2050 | version "5.1.1" 2051 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2052 | 2053 | sane@~1.4.1: 2054 | version "1.4.1" 2055 | resolved "https://registry.yarnpkg.com/sane/-/sane-1.4.1.tgz#88f763d74040f5f0c256b6163db399bf110ac715" 2056 | dependencies: 2057 | exec-sh "^0.2.0" 2058 | fb-watchman "^1.8.0" 2059 | minimatch "^3.0.2" 2060 | minimist "^1.1.1" 2061 | walker "~1.0.5" 2062 | watch "~0.10.0" 2063 | 2064 | sax@^1.2.1: 2065 | version "1.2.4" 2066 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 2067 | 2068 | "semver@2 || 3 || 4 || 5", semver@^5.1.0, semver@^5.3.0: 2069 | version "5.4.1" 2070 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 2071 | 2072 | set-blocking@^2.0.0: 2073 | version "2.0.0" 2074 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2075 | 2076 | shellwords@^0.1.0: 2077 | version "0.1.1" 2078 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" 2079 | 2080 | slash@^1.0.0: 2081 | version "1.0.0" 2082 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2083 | 2084 | sntp@2.x.x: 2085 | version "2.1.0" 2086 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.1.0.tgz#2c6cec14fedc2222739caf9b5c3d85d1cc5a2cc8" 2087 | dependencies: 2088 | hoek "4.x.x" 2089 | 2090 | source-map-support@^0.4.15: 2091 | version "0.4.18" 2092 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 2093 | dependencies: 2094 | source-map "^0.5.6" 2095 | 2096 | source-map@^0.4.4: 2097 | version "0.4.4" 2098 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 2099 | dependencies: 2100 | amdefine ">=0.0.4" 2101 | 2102 | source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1, source-map@~0.5.6: 2103 | version "0.5.7" 2104 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2105 | 2106 | spdx-correct@~1.0.0: 2107 | version "1.0.2" 2108 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2109 | dependencies: 2110 | spdx-license-ids "^1.0.2" 2111 | 2112 | spdx-expression-parse@~1.0.0: 2113 | version "1.0.4" 2114 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2115 | 2116 | spdx-license-ids@^1.0.2: 2117 | version "1.2.2" 2118 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2119 | 2120 | sprintf-js@~1.0.2: 2121 | version "1.0.3" 2122 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2123 | 2124 | sshpk@^1.7.0: 2125 | version "1.13.1" 2126 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 2127 | dependencies: 2128 | asn1 "~0.2.3" 2129 | assert-plus "^1.0.0" 2130 | dashdash "^1.12.0" 2131 | getpass "^0.1.1" 2132 | optionalDependencies: 2133 | bcrypt-pbkdf "^1.0.0" 2134 | ecc-jsbn "~0.1.1" 2135 | jsbn "~0.1.0" 2136 | tweetnacl "~0.14.0" 2137 | 2138 | string-width@^1.0.1, string-width@^1.0.2: 2139 | version "1.0.2" 2140 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2141 | dependencies: 2142 | code-point-at "^1.0.0" 2143 | is-fullwidth-code-point "^1.0.0" 2144 | strip-ansi "^3.0.0" 2145 | 2146 | stringstream@~0.0.5: 2147 | version "0.0.5" 2148 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2149 | 2150 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2151 | version "3.0.1" 2152 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2153 | dependencies: 2154 | ansi-regex "^2.0.0" 2155 | 2156 | strip-bom@^2.0.0: 2157 | version "2.0.0" 2158 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2159 | dependencies: 2160 | is-utf8 "^0.2.0" 2161 | 2162 | supports-color@^2.0.0: 2163 | version "2.0.0" 2164 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2165 | 2166 | supports-color@^3.1.2: 2167 | version "3.2.3" 2168 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 2169 | dependencies: 2170 | has-flag "^1.0.0" 2171 | 2172 | symbol-tree@^3.2.1: 2173 | version "3.2.2" 2174 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 2175 | 2176 | test-exclude@^3.3.0: 2177 | version "3.3.0" 2178 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-3.3.0.tgz#7a17ca1239988c98367b0621456dbb7d4bc38977" 2179 | dependencies: 2180 | arrify "^1.0.1" 2181 | micromatch "^2.3.11" 2182 | object-assign "^4.1.0" 2183 | read-pkg-up "^1.0.1" 2184 | require-main-filename "^1.0.1" 2185 | 2186 | throat@^3.0.0: 2187 | version "3.2.0" 2188 | resolved "https://registry.yarnpkg.com/throat/-/throat-3.2.0.tgz#50cb0670edbc40237b9e347d7e1f88e4620af836" 2189 | 2190 | tmpl@1.0.x: 2191 | version "1.0.4" 2192 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 2193 | 2194 | to-fast-properties@^1.0.3: 2195 | version "1.0.3" 2196 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 2197 | 2198 | tough-cookie@^2.3.2, tough-cookie@~2.3.3: 2199 | version "2.3.3" 2200 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 2201 | dependencies: 2202 | punycode "^1.4.1" 2203 | 2204 | tr46@~0.0.3: 2205 | version "0.0.3" 2206 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 2207 | 2208 | trim-right@^1.0.1: 2209 | version "1.0.1" 2210 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2211 | 2212 | tunnel-agent@^0.6.0: 2213 | version "0.6.0" 2214 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2215 | dependencies: 2216 | safe-buffer "^5.0.1" 2217 | 2218 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2219 | version "0.14.5" 2220 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2221 | 2222 | type-check@~0.3.2: 2223 | version "0.3.2" 2224 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 2225 | dependencies: 2226 | prelude-ls "~1.1.2" 2227 | 2228 | uglify-js@^2.6: 2229 | version "2.8.29" 2230 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 2231 | dependencies: 2232 | source-map "~0.5.1" 2233 | yargs "~3.10.0" 2234 | optionalDependencies: 2235 | uglify-to-browserify "~1.0.0" 2236 | 2237 | uglify-to-browserify@~1.0.0: 2238 | version "1.0.2" 2239 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 2240 | 2241 | uuid@^3.1.0: 2242 | version "3.1.0" 2243 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 2244 | 2245 | validate-npm-package-license@^3.0.1: 2246 | version "3.0.1" 2247 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 2248 | dependencies: 2249 | spdx-correct "~1.0.0" 2250 | spdx-expression-parse "~1.0.0" 2251 | 2252 | verror@1.10.0: 2253 | version "1.10.0" 2254 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 2255 | dependencies: 2256 | assert-plus "^1.0.0" 2257 | core-util-is "1.0.2" 2258 | extsprintf "^1.2.0" 2259 | 2260 | walker@~1.0.5: 2261 | version "1.0.7" 2262 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 2263 | dependencies: 2264 | makeerror "1.0.x" 2265 | 2266 | watch@~0.10.0: 2267 | version "0.10.0" 2268 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" 2269 | 2270 | webidl-conversions@^3.0.0: 2271 | version "3.0.1" 2272 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 2273 | 2274 | webidl-conversions@^4.0.0: 2275 | version "4.0.2" 2276 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" 2277 | 2278 | whatwg-encoding@^1.0.1: 2279 | version "1.0.3" 2280 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.3.tgz#57c235bc8657e914d24e1a397d3c82daee0a6ba3" 2281 | dependencies: 2282 | iconv-lite "0.4.19" 2283 | 2284 | whatwg-url@^4.3.0: 2285 | version "4.8.0" 2286 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.8.0.tgz#d2981aa9148c1e00a41c5a6131166ab4683bbcc0" 2287 | dependencies: 2288 | tr46 "~0.0.3" 2289 | webidl-conversions "^3.0.0" 2290 | 2291 | which-module@^1.0.0: 2292 | version "1.0.0" 2293 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 2294 | 2295 | which@^1.0.5, which@^1.1.1: 2296 | version "1.3.0" 2297 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 2298 | dependencies: 2299 | isexe "^2.0.0" 2300 | 2301 | window-size@0.1.0: 2302 | version "0.1.0" 2303 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 2304 | 2305 | wordwrap@0.0.2: 2306 | version "0.0.2" 2307 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 2308 | 2309 | wordwrap@~0.0.2: 2310 | version "0.0.3" 2311 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 2312 | 2313 | wordwrap@~1.0.0: 2314 | version "1.0.0" 2315 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 2316 | 2317 | worker-farm@^1.3.1: 2318 | version "1.5.2" 2319 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.5.2.tgz#32b312e5dc3d5d45d79ef44acc2587491cd729ae" 2320 | dependencies: 2321 | errno "^0.1.4" 2322 | xtend "^4.0.1" 2323 | 2324 | wrap-ansi@^2.0.0: 2325 | version "2.1.0" 2326 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 2327 | dependencies: 2328 | string-width "^1.0.1" 2329 | strip-ansi "^3.0.1" 2330 | 2331 | wrappy@1: 2332 | version "1.0.2" 2333 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2334 | 2335 | xml-name-validator@^2.0.1: 2336 | version "2.0.1" 2337 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 2338 | 2339 | xtend@^4.0.1: 2340 | version "4.0.1" 2341 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2342 | 2343 | y18n@^3.2.1: 2344 | version "3.2.1" 2345 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 2346 | 2347 | yargs-parser@^4.2.0: 2348 | version "4.2.1" 2349 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" 2350 | dependencies: 2351 | camelcase "^3.0.0" 2352 | 2353 | yargs@^6.3.0: 2354 | version "6.6.0" 2355 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" 2356 | dependencies: 2357 | camelcase "^3.0.0" 2358 | cliui "^3.2.0" 2359 | decamelize "^1.1.1" 2360 | get-caller-file "^1.0.1" 2361 | os-locale "^1.4.0" 2362 | read-pkg-up "^1.0.1" 2363 | require-directory "^2.1.1" 2364 | require-main-filename "^1.0.1" 2365 | set-blocking "^2.0.0" 2366 | string-width "^1.0.2" 2367 | which-module "^1.0.0" 2368 | y18n "^3.2.1" 2369 | yargs-parser "^4.2.0" 2370 | 2371 | yargs@~3.10.0: 2372 | version "3.10.0" 2373 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 2374 | dependencies: 2375 | camelcase "^1.0.2" 2376 | cliui "^2.1.0" 2377 | decamelize "^1.0.0" 2378 | window-size "0.1.0" 2379 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | import ghUser from 'github-current-user'; 2 | import prompt from 'prompt'; 3 | import chalk from 'chalk'; 4 | import ncp from 'ncp'; 5 | import path from 'path'; 6 | 7 | console.log(chalk.blue('Creating user exercise folder...')); 8 | 9 | const getUsername = () => { 10 | const username = ghUser.current((err, username) => { 11 | if (err || !username) { 12 | return 'unknown'; 13 | } 14 | return username; 15 | }); 16 | return username; 17 | }; 18 | 19 | const createUserCopy = ({ username }) => { 20 | ncp(path.resolve('./exercises'), username, function (err) { 21 | if (err) { 22 | console.log(chalk.red('Unable to create user specific copy.')); 23 | return console.log(err); 24 | } 25 | console.log(chalk.blue(`Your personal copy of the exercises in a newly created folder(${username}).`)); 26 | }); 27 | } 28 | 29 | const run = async() => { 30 | const username = await getUsername(); 31 | const schema = { 32 | properties: { 33 | username: { 34 | default: username, 35 | pattern: /^[A-Za-z0-9_-]{3,15}$/, 36 | message: 'Name must be only letters, numbers, underscores, or dashes', 37 | }, 38 | }, 39 | }; 40 | 41 | prompt.start(); 42 | 43 | prompt.get(schema, (err, results) => { 44 | if (err) { 45 | console.log(chalk.red('Failed to determine folder to create.')); 46 | console.log(err); 47 | process.exit(1); 48 | return 1; 49 | } 50 | createUserCopy(results); 51 | }); 52 | }; 53 | 54 | run(); 55 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jest-exercises", 3 | "private": true, 4 | "version": "1.0.0", 5 | "description": "Collection of exercises to get you start and familiar with testing using Jest", 6 | "bugs": { 7 | "url": "https://github.com/NashReact/jest-exercises/issues" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "https://github.com/NashReact/jest-exercises.git" 12 | }, 13 | "author": { 14 | "name": "Kyle Welch", 15 | "email": "kwelch0626@gmail.com" 16 | }, 17 | "scripts": { 18 | "start": "babel-node index.js --presets latest,stage-2" 19 | }, 20 | "license": "MIT", 21 | "dependencies": { 22 | "babel-cli": "^6.22.2", 23 | "babel-preset-latest": "^6.22.0", 24 | "babel-preset-stage-2": "^6.22.0", 25 | "chalk": "^1.1.3", 26 | "git-user-name": "^1.2.0", 27 | "git-username": "^0.5.0", 28 | "github-current-user": "^2.5.0", 29 | "ncp": "^2.0.0", 30 | "prompt": "^1.0.0" 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abbrev@1: 6 | version "1.0.9" 7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135" 8 | 9 | ansi-regex@^2.0.0: 10 | version "2.1.1" 11 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 12 | 13 | ansi-styles@^2.2.1: 14 | version "2.2.1" 15 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 16 | 17 | anymatch@^1.3.0: 18 | version "1.3.0" 19 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 20 | dependencies: 21 | arrify "^1.0.0" 22 | micromatch "^2.1.5" 23 | 24 | aproba@^1.0.3: 25 | version "1.1.1" 26 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.1.tgz#95d3600f07710aa0e9298c726ad5ecf2eacbabab" 27 | 28 | are-we-there-yet@~1.1.2: 29 | version "1.1.2" 30 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" 31 | dependencies: 32 | delegates "^1.0.0" 33 | readable-stream "^2.0.0 || ^1.1.13" 34 | 35 | arr-diff@^2.0.0: 36 | version "2.0.0" 37 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 38 | dependencies: 39 | arr-flatten "^1.0.1" 40 | 41 | arr-flatten@^1.0.1: 42 | version "1.0.1" 43 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 44 | 45 | array-unique@^0.2.1: 46 | version "0.2.1" 47 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 48 | 49 | arrify@^1.0.0: 50 | version "1.0.1" 51 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 52 | 53 | asn1@0.1.11: 54 | version "0.1.11" 55 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.1.11.tgz#559be18376d08a4ec4dbe80877d27818639b2df7" 56 | 57 | asn1@~0.2.3: 58 | version "0.2.3" 59 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 60 | 61 | assert-plus@^0.2.0: 62 | version "0.2.0" 63 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 64 | 65 | assert-plus@^1.0.0: 66 | version "1.0.0" 67 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 68 | 69 | async-each@^1.0.0: 70 | version "1.0.1" 71 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 72 | 73 | async@~0.9.0: 74 | version "0.9.2" 75 | resolved "https://registry.yarnpkg.com/async/-/async-0.9.2.tgz#aea74d5e61c1f899613bf64bda66d4c78f2fd17d" 76 | 77 | async@~1.0.0: 78 | version "1.0.0" 79 | resolved "https://registry.yarnpkg.com/async/-/async-1.0.0.tgz#f8fc04ca3a13784ade9e1641af98578cfbd647a9" 80 | 81 | asynckit@^0.4.0: 82 | version "0.4.0" 83 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 84 | 85 | aws-sign2@~0.6.0: 86 | version "0.6.0" 87 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 88 | 89 | aws4@^1.2.1: 90 | version "1.6.0" 91 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 92 | 93 | babel-cli@^6.22.2: 94 | version "6.22.2" 95 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.22.2.tgz#3f814c8acf52759082b8fedd9627f938936ab559" 96 | dependencies: 97 | babel-core "^6.22.1" 98 | babel-polyfill "^6.22.0" 99 | babel-register "^6.22.0" 100 | babel-runtime "^6.22.0" 101 | commander "^2.8.1" 102 | convert-source-map "^1.1.0" 103 | fs-readdir-recursive "^1.0.0" 104 | glob "^7.0.0" 105 | lodash "^4.2.0" 106 | output-file-sync "^1.1.0" 107 | path-is-absolute "^1.0.0" 108 | slash "^1.0.0" 109 | source-map "^0.5.0" 110 | v8flags "^2.0.10" 111 | optionalDependencies: 112 | chokidar "^1.6.1" 113 | 114 | babel-code-frame@^6.22.0: 115 | version "6.22.0" 116 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 117 | dependencies: 118 | chalk "^1.1.0" 119 | esutils "^2.0.2" 120 | js-tokens "^3.0.0" 121 | 122 | babel-core@^6.22.0, babel-core@^6.22.1: 123 | version "6.22.1" 124 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.22.1.tgz#9c5fd658ba1772d28d721f6d25d968fc7ae21648" 125 | dependencies: 126 | babel-code-frame "^6.22.0" 127 | babel-generator "^6.22.0" 128 | babel-helpers "^6.22.0" 129 | babel-messages "^6.22.0" 130 | babel-register "^6.22.0" 131 | babel-runtime "^6.22.0" 132 | babel-template "^6.22.0" 133 | babel-traverse "^6.22.1" 134 | babel-types "^6.22.0" 135 | babylon "^6.11.0" 136 | convert-source-map "^1.1.0" 137 | debug "^2.1.1" 138 | json5 "^0.5.0" 139 | lodash "^4.2.0" 140 | minimatch "^3.0.2" 141 | path-is-absolute "^1.0.0" 142 | private "^0.1.6" 143 | slash "^1.0.0" 144 | source-map "^0.5.0" 145 | 146 | babel-generator@^6.22.0: 147 | version "6.22.0" 148 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.22.0.tgz#d642bf4961911a8adc7c692b0c9297f325cda805" 149 | dependencies: 150 | babel-messages "^6.22.0" 151 | babel-runtime "^6.22.0" 152 | babel-types "^6.22.0" 153 | detect-indent "^4.0.0" 154 | jsesc "^1.3.0" 155 | lodash "^4.2.0" 156 | source-map "^0.5.0" 157 | 158 | babel-helper-bindify-decorators@^6.22.0: 159 | version "6.22.0" 160 | resolved "https://registry.yarnpkg.com/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.22.0.tgz#d7f5bc261275941ac62acfc4e20dacfb8a3fe952" 161 | dependencies: 162 | babel-runtime "^6.22.0" 163 | babel-traverse "^6.22.0" 164 | babel-types "^6.22.0" 165 | 166 | babel-helper-builder-binary-assignment-operator-visitor@^6.22.0: 167 | version "6.22.0" 168 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.22.0.tgz#29df56be144d81bdeac08262bfa41d2c5e91cdcd" 169 | dependencies: 170 | babel-helper-explode-assignable-expression "^6.22.0" 171 | babel-runtime "^6.22.0" 172 | babel-types "^6.22.0" 173 | 174 | babel-helper-call-delegate@^6.22.0: 175 | version "6.22.0" 176 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.22.0.tgz#119921b56120f17e9dae3f74b4f5cc7bcc1b37ef" 177 | dependencies: 178 | babel-helper-hoist-variables "^6.22.0" 179 | babel-runtime "^6.22.0" 180 | babel-traverse "^6.22.0" 181 | babel-types "^6.22.0" 182 | 183 | babel-helper-define-map@^6.22.0: 184 | version "6.22.0" 185 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.22.0.tgz#9544e9502b2d6dfe7d00ff60e82bd5a7a89e95b7" 186 | dependencies: 187 | babel-helper-function-name "^6.22.0" 188 | babel-runtime "^6.22.0" 189 | babel-types "^6.22.0" 190 | lodash "^4.2.0" 191 | 192 | babel-helper-explode-assignable-expression@^6.22.0: 193 | version "6.22.0" 194 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.22.0.tgz#c97bf76eed3e0bae4048121f2b9dae1a4e7d0478" 195 | dependencies: 196 | babel-runtime "^6.22.0" 197 | babel-traverse "^6.22.0" 198 | babel-types "^6.22.0" 199 | 200 | babel-helper-explode-class@^6.22.0: 201 | version "6.22.0" 202 | resolved "https://registry.yarnpkg.com/babel-helper-explode-class/-/babel-helper-explode-class-6.22.0.tgz#646304924aa6388a516843ba7f1855ef8dfeb69b" 203 | dependencies: 204 | babel-helper-bindify-decorators "^6.22.0" 205 | babel-runtime "^6.22.0" 206 | babel-traverse "^6.22.0" 207 | babel-types "^6.22.0" 208 | 209 | babel-helper-function-name@^6.22.0: 210 | version "6.22.0" 211 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.22.0.tgz#51f1bdc4bb89b15f57a9b249f33d742816dcbefc" 212 | dependencies: 213 | babel-helper-get-function-arity "^6.22.0" 214 | babel-runtime "^6.22.0" 215 | babel-template "^6.22.0" 216 | babel-traverse "^6.22.0" 217 | babel-types "^6.22.0" 218 | 219 | babel-helper-get-function-arity@^6.22.0: 220 | version "6.22.0" 221 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.22.0.tgz#0beb464ad69dc7347410ac6ade9f03a50634f5ce" 222 | dependencies: 223 | babel-runtime "^6.22.0" 224 | babel-types "^6.22.0" 225 | 226 | babel-helper-hoist-variables@^6.22.0: 227 | version "6.22.0" 228 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.22.0.tgz#3eacbf731d80705845dd2e9718f600cfb9b4ba72" 229 | dependencies: 230 | babel-runtime "^6.22.0" 231 | babel-types "^6.22.0" 232 | 233 | babel-helper-optimise-call-expression@^6.22.0: 234 | version "6.22.0" 235 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.22.0.tgz#f8d5d4b40a6e2605a6a7f9d537b581bea3756d15" 236 | dependencies: 237 | babel-runtime "^6.22.0" 238 | babel-types "^6.22.0" 239 | 240 | babel-helper-regex@^6.22.0: 241 | version "6.22.0" 242 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.22.0.tgz#79f532be1647b1f0ee3474b5f5c3da58001d247d" 243 | dependencies: 244 | babel-runtime "^6.22.0" 245 | babel-types "^6.22.0" 246 | lodash "^4.2.0" 247 | 248 | babel-helper-remap-async-to-generator@^6.22.0: 249 | version "6.22.0" 250 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.22.0.tgz#2186ae73278ed03b8b15ced089609da981053383" 251 | dependencies: 252 | babel-helper-function-name "^6.22.0" 253 | babel-runtime "^6.22.0" 254 | babel-template "^6.22.0" 255 | babel-traverse "^6.22.0" 256 | babel-types "^6.22.0" 257 | 258 | babel-helper-replace-supers@^6.22.0: 259 | version "6.22.0" 260 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.22.0.tgz#1fcee2270657548908c34db16bcc345f9850cf42" 261 | dependencies: 262 | babel-helper-optimise-call-expression "^6.22.0" 263 | babel-messages "^6.22.0" 264 | babel-runtime "^6.22.0" 265 | babel-template "^6.22.0" 266 | babel-traverse "^6.22.0" 267 | babel-types "^6.22.0" 268 | 269 | babel-helpers@^6.22.0: 270 | version "6.22.0" 271 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.22.0.tgz#d275f55f2252b8101bff07bc0c556deda657392c" 272 | dependencies: 273 | babel-runtime "^6.22.0" 274 | babel-template "^6.22.0" 275 | 276 | babel-messages@^6.22.0: 277 | version "6.22.0" 278 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.22.0.tgz#36066a214f1217e4ed4164867669ecb39e3ea575" 279 | dependencies: 280 | babel-runtime "^6.22.0" 281 | 282 | babel-plugin-check-es2015-constants@^6.22.0: 283 | version "6.22.0" 284 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 285 | dependencies: 286 | babel-runtime "^6.22.0" 287 | 288 | babel-plugin-syntax-async-functions@^6.8.0: 289 | version "6.13.0" 290 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 291 | 292 | babel-plugin-syntax-async-generators@^6.5.0: 293 | version "6.13.0" 294 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a" 295 | 296 | babel-plugin-syntax-class-properties@^6.8.0: 297 | version "6.13.0" 298 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" 299 | 300 | babel-plugin-syntax-decorators@^6.13.0: 301 | version "6.13.0" 302 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b" 303 | 304 | babel-plugin-syntax-dynamic-import@^6.18.0: 305 | version "6.18.0" 306 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da" 307 | 308 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 309 | version "6.13.0" 310 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 311 | 312 | babel-plugin-syntax-object-rest-spread@^6.8.0: 313 | version "6.13.0" 314 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 315 | 316 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 317 | version "6.22.0" 318 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 319 | 320 | babel-plugin-transform-async-generator-functions@^6.22.0: 321 | version "6.22.0" 322 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.22.0.tgz#a720a98153a7596f204099cd5409f4b3c05bab46" 323 | dependencies: 324 | babel-helper-remap-async-to-generator "^6.22.0" 325 | babel-plugin-syntax-async-generators "^6.5.0" 326 | babel-runtime "^6.22.0" 327 | 328 | babel-plugin-transform-async-to-generator@^6.22.0: 329 | version "6.22.0" 330 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.22.0.tgz#194b6938ec195ad36efc4c33a971acf00d8cd35e" 331 | dependencies: 332 | babel-helper-remap-async-to-generator "^6.22.0" 333 | babel-plugin-syntax-async-functions "^6.8.0" 334 | babel-runtime "^6.22.0" 335 | 336 | babel-plugin-transform-class-properties@^6.22.0: 337 | version "6.22.0" 338 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.22.0.tgz#aa78f8134495c7de06c097118ba061844e1dc1d8" 339 | dependencies: 340 | babel-helper-function-name "^6.22.0" 341 | babel-plugin-syntax-class-properties "^6.8.0" 342 | babel-runtime "^6.22.0" 343 | babel-template "^6.22.0" 344 | 345 | babel-plugin-transform-decorators@^6.22.0: 346 | version "6.22.0" 347 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.22.0.tgz#c03635b27a23b23b7224f49232c237a73988d27c" 348 | dependencies: 349 | babel-helper-explode-class "^6.22.0" 350 | babel-plugin-syntax-decorators "^6.13.0" 351 | babel-runtime "^6.22.0" 352 | babel-template "^6.22.0" 353 | babel-types "^6.22.0" 354 | 355 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 356 | version "6.22.0" 357 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 358 | dependencies: 359 | babel-runtime "^6.22.0" 360 | 361 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 362 | version "6.22.0" 363 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 364 | dependencies: 365 | babel-runtime "^6.22.0" 366 | 367 | babel-plugin-transform-es2015-block-scoping@^6.22.0: 368 | version "6.22.0" 369 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.22.0.tgz#00d6e3a0bebdcfe7536b9d653b44a9141e63e47e" 370 | dependencies: 371 | babel-runtime "^6.22.0" 372 | babel-template "^6.22.0" 373 | babel-traverse "^6.22.0" 374 | babel-types "^6.22.0" 375 | lodash "^4.2.0" 376 | 377 | babel-plugin-transform-es2015-classes@^6.22.0: 378 | version "6.22.0" 379 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.22.0.tgz#54d44998fd823d9dca15292324161c331c1b6f14" 380 | dependencies: 381 | babel-helper-define-map "^6.22.0" 382 | babel-helper-function-name "^6.22.0" 383 | babel-helper-optimise-call-expression "^6.22.0" 384 | babel-helper-replace-supers "^6.22.0" 385 | babel-messages "^6.22.0" 386 | babel-runtime "^6.22.0" 387 | babel-template "^6.22.0" 388 | babel-traverse "^6.22.0" 389 | babel-types "^6.22.0" 390 | 391 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 392 | version "6.22.0" 393 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.22.0.tgz#7c383e9629bba4820c11b0425bdd6290f7f057e7" 394 | dependencies: 395 | babel-runtime "^6.22.0" 396 | babel-template "^6.22.0" 397 | 398 | babel-plugin-transform-es2015-destructuring@^6.22.0: 399 | version "6.22.0" 400 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.22.0.tgz#8e0af2f885a0b2cf999d47c4c1dd23ce88cfa4c6" 401 | dependencies: 402 | babel-runtime "^6.22.0" 403 | 404 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 405 | version "6.22.0" 406 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.22.0.tgz#672397031c21610d72dd2bbb0ba9fb6277e1c36b" 407 | dependencies: 408 | babel-runtime "^6.22.0" 409 | babel-types "^6.22.0" 410 | 411 | babel-plugin-transform-es2015-for-of@^6.22.0: 412 | version "6.22.0" 413 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.22.0.tgz#180467ad63aeea592a1caeee4bf1c8b3e2616265" 414 | dependencies: 415 | babel-runtime "^6.22.0" 416 | 417 | babel-plugin-transform-es2015-function-name@^6.22.0: 418 | version "6.22.0" 419 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.22.0.tgz#f5fcc8b09093f9a23c76ac3d9e392c3ec4b77104" 420 | dependencies: 421 | babel-helper-function-name "^6.22.0" 422 | babel-runtime "^6.22.0" 423 | babel-types "^6.22.0" 424 | 425 | babel-plugin-transform-es2015-literals@^6.22.0: 426 | version "6.22.0" 427 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 428 | dependencies: 429 | babel-runtime "^6.22.0" 430 | 431 | babel-plugin-transform-es2015-modules-amd@^6.22.0: 432 | version "6.22.0" 433 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.22.0.tgz#bf69cd34889a41c33d90dfb740e0091ccff52f21" 434 | dependencies: 435 | babel-plugin-transform-es2015-modules-commonjs "^6.22.0" 436 | babel-runtime "^6.22.0" 437 | babel-template "^6.22.0" 438 | 439 | babel-plugin-transform-es2015-modules-commonjs@^6.22.0: 440 | version "6.22.0" 441 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.22.0.tgz#6ca04e22b8e214fb50169730657e7a07dc941145" 442 | dependencies: 443 | babel-plugin-transform-strict-mode "^6.22.0" 444 | babel-runtime "^6.22.0" 445 | babel-template "^6.22.0" 446 | babel-types "^6.22.0" 447 | 448 | babel-plugin-transform-es2015-modules-systemjs@^6.22.0: 449 | version "6.22.0" 450 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.22.0.tgz#810cd0cd025a08383b84236b92c6e31f88e644ad" 451 | dependencies: 452 | babel-helper-hoist-variables "^6.22.0" 453 | babel-runtime "^6.22.0" 454 | babel-template "^6.22.0" 455 | 456 | babel-plugin-transform-es2015-modules-umd@^6.22.0: 457 | version "6.22.0" 458 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.22.0.tgz#60d0ba3bd23258719c64391d9bf492d648dc0fae" 459 | dependencies: 460 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 461 | babel-runtime "^6.22.0" 462 | babel-template "^6.22.0" 463 | 464 | babel-plugin-transform-es2015-object-super@^6.22.0: 465 | version "6.22.0" 466 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.22.0.tgz#daa60e114a042ea769dd53fe528fc82311eb98fc" 467 | dependencies: 468 | babel-helper-replace-supers "^6.22.0" 469 | babel-runtime "^6.22.0" 470 | 471 | babel-plugin-transform-es2015-parameters@^6.22.0: 472 | version "6.22.0" 473 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.22.0.tgz#57076069232019094f27da8c68bb7162fe208dbb" 474 | dependencies: 475 | babel-helper-call-delegate "^6.22.0" 476 | babel-helper-get-function-arity "^6.22.0" 477 | babel-runtime "^6.22.0" 478 | babel-template "^6.22.0" 479 | babel-traverse "^6.22.0" 480 | babel-types "^6.22.0" 481 | 482 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 483 | version "6.22.0" 484 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.22.0.tgz#8ba776e0affaa60bff21e921403b8a652a2ff723" 485 | dependencies: 486 | babel-runtime "^6.22.0" 487 | babel-types "^6.22.0" 488 | 489 | babel-plugin-transform-es2015-spread@^6.22.0: 490 | version "6.22.0" 491 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 492 | dependencies: 493 | babel-runtime "^6.22.0" 494 | 495 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 496 | version "6.22.0" 497 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.22.0.tgz#ab316829e866ee3f4b9eb96939757d19a5bc4593" 498 | dependencies: 499 | babel-helper-regex "^6.22.0" 500 | babel-runtime "^6.22.0" 501 | babel-types "^6.22.0" 502 | 503 | babel-plugin-transform-es2015-template-literals@^6.22.0: 504 | version "6.22.0" 505 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 506 | dependencies: 507 | babel-runtime "^6.22.0" 508 | 509 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0: 510 | version "6.22.0" 511 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.22.0.tgz#87faf2336d3b6a97f68c4d906b0cd0edeae676e1" 512 | dependencies: 513 | babel-runtime "^6.22.0" 514 | 515 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 516 | version "6.22.0" 517 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.22.0.tgz#8d9cc27e7ee1decfe65454fb986452a04a613d20" 518 | dependencies: 519 | babel-helper-regex "^6.22.0" 520 | babel-runtime "^6.22.0" 521 | regexpu-core "^2.0.0" 522 | 523 | babel-plugin-transform-exponentiation-operator@^6.22.0: 524 | version "6.22.0" 525 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.22.0.tgz#d57c8335281918e54ef053118ce6eb108468084d" 526 | dependencies: 527 | babel-helper-builder-binary-assignment-operator-visitor "^6.22.0" 528 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 529 | babel-runtime "^6.22.0" 530 | 531 | babel-plugin-transform-object-rest-spread@^6.22.0: 532 | version "6.22.0" 533 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.22.0.tgz#1d419b55e68d2e4f64a5ff3373bd67d73c8e83bc" 534 | dependencies: 535 | babel-plugin-syntax-object-rest-spread "^6.8.0" 536 | babel-runtime "^6.22.0" 537 | 538 | babel-plugin-transform-regenerator@^6.22.0: 539 | version "6.22.0" 540 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.22.0.tgz#65740593a319c44522157538d690b84094617ea6" 541 | dependencies: 542 | regenerator-transform "0.9.8" 543 | 544 | babel-plugin-transform-strict-mode@^6.22.0: 545 | version "6.22.0" 546 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.22.0.tgz#e008df01340fdc87e959da65991b7e05970c8c7c" 547 | dependencies: 548 | babel-runtime "^6.22.0" 549 | babel-types "^6.22.0" 550 | 551 | babel-polyfill@^6.22.0: 552 | version "6.22.0" 553 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.22.0.tgz#1ac99ebdcc6ba4db1e2618c387b2084a82154a3b" 554 | dependencies: 555 | babel-runtime "^6.22.0" 556 | core-js "^2.4.0" 557 | regenerator-runtime "^0.10.0" 558 | 559 | babel-preset-es2015@^6.22.0: 560 | version "6.22.0" 561 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.22.0.tgz#af5a98ecb35eb8af764ad8a5a05eb36dc4386835" 562 | dependencies: 563 | babel-plugin-check-es2015-constants "^6.22.0" 564 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 565 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 566 | babel-plugin-transform-es2015-block-scoping "^6.22.0" 567 | babel-plugin-transform-es2015-classes "^6.22.0" 568 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 569 | babel-plugin-transform-es2015-destructuring "^6.22.0" 570 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 571 | babel-plugin-transform-es2015-for-of "^6.22.0" 572 | babel-plugin-transform-es2015-function-name "^6.22.0" 573 | babel-plugin-transform-es2015-literals "^6.22.0" 574 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 575 | babel-plugin-transform-es2015-modules-commonjs "^6.22.0" 576 | babel-plugin-transform-es2015-modules-systemjs "^6.22.0" 577 | babel-plugin-transform-es2015-modules-umd "^6.22.0" 578 | babel-plugin-transform-es2015-object-super "^6.22.0" 579 | babel-plugin-transform-es2015-parameters "^6.22.0" 580 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 581 | babel-plugin-transform-es2015-spread "^6.22.0" 582 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 583 | babel-plugin-transform-es2015-template-literals "^6.22.0" 584 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 585 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 586 | babel-plugin-transform-regenerator "^6.22.0" 587 | 588 | babel-preset-es2016@^6.22.0: 589 | version "6.22.0" 590 | resolved "https://registry.yarnpkg.com/babel-preset-es2016/-/babel-preset-es2016-6.22.0.tgz#b061aaa3983d40c9fbacfa3743b5df37f336156c" 591 | dependencies: 592 | babel-plugin-transform-exponentiation-operator "^6.22.0" 593 | 594 | babel-preset-es2017@^6.22.0: 595 | version "6.22.0" 596 | resolved "https://registry.yarnpkg.com/babel-preset-es2017/-/babel-preset-es2017-6.22.0.tgz#de2f9da5a30c50d293fb54a0ba15d6ddc573f0f2" 597 | dependencies: 598 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 599 | babel-plugin-transform-async-to-generator "^6.22.0" 600 | 601 | babel-preset-latest@^6.22.0: 602 | version "6.22.0" 603 | resolved "https://registry.yarnpkg.com/babel-preset-latest/-/babel-preset-latest-6.22.0.tgz#47b800531350a3dc69126e8c375a40655cd1eeff" 604 | dependencies: 605 | babel-preset-es2015 "^6.22.0" 606 | babel-preset-es2016 "^6.22.0" 607 | babel-preset-es2017 "^6.22.0" 608 | 609 | babel-preset-stage-2@^6.22.0: 610 | version "6.22.0" 611 | resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-6.22.0.tgz#ccd565f19c245cade394b21216df704a73b27c07" 612 | dependencies: 613 | babel-plugin-syntax-dynamic-import "^6.18.0" 614 | babel-plugin-transform-class-properties "^6.22.0" 615 | babel-plugin-transform-decorators "^6.22.0" 616 | babel-preset-stage-3 "^6.22.0" 617 | 618 | babel-preset-stage-3@^6.22.0: 619 | version "6.22.0" 620 | resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-6.22.0.tgz#a4e92bbace7456fafdf651d7a7657ee0bbca9c2e" 621 | dependencies: 622 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 623 | babel-plugin-transform-async-generator-functions "^6.22.0" 624 | babel-plugin-transform-async-to-generator "^6.22.0" 625 | babel-plugin-transform-exponentiation-operator "^6.22.0" 626 | babel-plugin-transform-object-rest-spread "^6.22.0" 627 | 628 | babel-register@^6.22.0: 629 | version "6.22.0" 630 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.22.0.tgz#a61dd83975f9ca4a9e7d6eff3059494cd5ea4c63" 631 | dependencies: 632 | babel-core "^6.22.0" 633 | babel-runtime "^6.22.0" 634 | core-js "^2.4.0" 635 | home-or-tmp "^2.0.0" 636 | lodash "^4.2.0" 637 | mkdirp "^0.5.1" 638 | source-map-support "^0.4.2" 639 | 640 | babel-runtime@^6.18.0, babel-runtime@^6.22.0: 641 | version "6.22.0" 642 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.22.0.tgz#1cf8b4ac67c77a4ddb0db2ae1f74de52ac4ca611" 643 | dependencies: 644 | core-js "^2.4.0" 645 | regenerator-runtime "^0.10.0" 646 | 647 | babel-template@^6.22.0: 648 | version "6.22.0" 649 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.22.0.tgz#403d110905a4626b317a2a1fcb8f3b73204b2edb" 650 | dependencies: 651 | babel-runtime "^6.22.0" 652 | babel-traverse "^6.22.0" 653 | babel-types "^6.22.0" 654 | babylon "^6.11.0" 655 | lodash "^4.2.0" 656 | 657 | babel-traverse@^6.22.0, babel-traverse@^6.22.1: 658 | version "6.22.1" 659 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.22.1.tgz#3b95cd6b7427d6f1f757704908f2fc9748a5f59f" 660 | dependencies: 661 | babel-code-frame "^6.22.0" 662 | babel-messages "^6.22.0" 663 | babel-runtime "^6.22.0" 664 | babel-types "^6.22.0" 665 | babylon "^6.15.0" 666 | debug "^2.2.0" 667 | globals "^9.0.0" 668 | invariant "^2.2.0" 669 | lodash "^4.2.0" 670 | 671 | babel-types@^6.19.0, babel-types@^6.22.0: 672 | version "6.22.0" 673 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.22.0.tgz#2a447e8d0ea25d2512409e4175479fd78cc8b1db" 674 | dependencies: 675 | babel-runtime "^6.22.0" 676 | esutils "^2.0.2" 677 | lodash "^4.2.0" 678 | to-fast-properties "^1.0.1" 679 | 680 | babylon@^6.11.0, babylon@^6.15.0: 681 | version "6.15.0" 682 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.15.0.tgz#ba65cfa1a80e1759b0e89fb562e27dccae70348e" 683 | 684 | balanced-match@^0.4.1: 685 | version "0.4.2" 686 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 687 | 688 | bcrypt-pbkdf@^1.0.0: 689 | version "1.0.1" 690 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 691 | dependencies: 692 | tweetnacl "^0.14.3" 693 | 694 | binary-extensions@^1.0.0: 695 | version "1.8.0" 696 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 697 | 698 | block-stream@*: 699 | version "0.0.9" 700 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 701 | dependencies: 702 | inherits "~2.0.0" 703 | 704 | boom@2.x.x: 705 | version "2.10.1" 706 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 707 | dependencies: 708 | hoek "2.x.x" 709 | 710 | brace-expansion@^1.0.0: 711 | version "1.1.6" 712 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 713 | dependencies: 714 | balanced-match "^0.4.1" 715 | concat-map "0.0.1" 716 | 717 | braces@^1.8.2: 718 | version "1.8.5" 719 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 720 | dependencies: 721 | expand-range "^1.8.1" 722 | preserve "^0.2.0" 723 | repeat-element "^1.1.2" 724 | 725 | buffer-shims@^1.0.0: 726 | version "1.0.0" 727 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 728 | 729 | caseless@~0.11.0: 730 | version "0.11.0" 731 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 732 | 733 | chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 734 | version "1.1.3" 735 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 736 | dependencies: 737 | ansi-styles "^2.2.1" 738 | escape-string-regexp "^1.0.2" 739 | has-ansi "^2.0.0" 740 | strip-ansi "^3.0.0" 741 | supports-color "^2.0.0" 742 | 743 | chokidar@^1.6.1: 744 | version "1.6.1" 745 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" 746 | dependencies: 747 | anymatch "^1.3.0" 748 | async-each "^1.0.0" 749 | glob-parent "^2.0.0" 750 | inherits "^2.0.1" 751 | is-binary-path "^1.0.0" 752 | is-glob "^2.0.0" 753 | path-is-absolute "^1.0.0" 754 | readdirp "^2.0.0" 755 | optionalDependencies: 756 | fsevents "^1.0.0" 757 | 758 | code-point-at@^1.0.0: 759 | version "1.1.0" 760 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 761 | 762 | colors@1.0.x: 763 | version "1.0.3" 764 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.0.3.tgz#0433f44d809680fdeb60ed260f1b0c262e82a40b" 765 | 766 | colors@^1.1.2: 767 | version "1.1.2" 768 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" 769 | 770 | combined-stream@^1.0.5, combined-stream@~1.0.5: 771 | version "1.0.5" 772 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 773 | dependencies: 774 | delayed-stream "~1.0.0" 775 | 776 | commander@^2.8.1, commander@^2.9.0: 777 | version "2.9.0" 778 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 779 | dependencies: 780 | graceful-readlink ">= 1.0.0" 781 | 782 | concat-map@0.0.1: 783 | version "0.0.1" 784 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 785 | 786 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 787 | version "1.1.0" 788 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 789 | 790 | convert-source-map@^1.1.0: 791 | version "1.3.0" 792 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.3.0.tgz#e9f3e9c6e2728efc2676696a70eb382f73106a67" 793 | 794 | core-js@^2.4.0: 795 | version "2.4.1" 796 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 797 | 798 | core-util-is@~1.0.0: 799 | version "1.0.2" 800 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 801 | 802 | cryptiles@2.x.x: 803 | version "2.0.5" 804 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 805 | dependencies: 806 | boom "2.x.x" 807 | 808 | ctype@0.5.2: 809 | version "0.5.2" 810 | resolved "https://registry.yarnpkg.com/ctype/-/ctype-0.5.2.tgz#fe8091d468a373a0b0c9ff8bbfb3425c00973a1d" 811 | 812 | ctype@0.5.4: 813 | version "0.5.4" 814 | resolved "https://registry.yarnpkg.com/ctype/-/ctype-0.5.4.tgz#5cfffbc266442ce8a1239a5f37091a085b7a3e6e" 815 | 816 | cycle@1.0.x: 817 | version "1.0.3" 818 | resolved "https://registry.yarnpkg.com/cycle/-/cycle-1.0.3.tgz#21e80b2be8580f98b468f379430662b046c34ad2" 819 | 820 | dashdash@^1.12.0: 821 | version "1.14.1" 822 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 823 | dependencies: 824 | assert-plus "^1.0.0" 825 | 826 | debug@^2.1.1, debug@^2.1.3, debug@^2.2.0: 827 | version "2.6.0" 828 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.0.tgz#bc596bcabe7617f11d9fa15361eded5608b8499b" 829 | dependencies: 830 | ms "0.7.2" 831 | 832 | debug@~2.2.0: 833 | version "2.2.0" 834 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 835 | dependencies: 836 | ms "0.7.1" 837 | 838 | deep-equal@~0.2.1: 839 | version "0.2.2" 840 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-0.2.2.tgz#84b745896f34c684e98f2ce0e42abaf43bba017d" 841 | 842 | deep-extend@~0.4.0: 843 | version "0.4.1" 844 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 845 | 846 | delayed-stream@~1.0.0: 847 | version "1.0.0" 848 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 849 | 850 | delegates@^1.0.0: 851 | version "1.0.0" 852 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 853 | 854 | detect-indent@^4.0.0: 855 | version "4.0.0" 856 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 857 | dependencies: 858 | repeating "^2.0.0" 859 | 860 | duplexify@^3.2.0: 861 | version "3.5.0" 862 | resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.5.0.tgz#1aa773002e1578457e9d9d4a50b0ccaaebcbd604" 863 | dependencies: 864 | end-of-stream "1.0.0" 865 | inherits "^2.0.1" 866 | readable-stream "^2.0.0" 867 | stream-shift "^1.0.0" 868 | 869 | ecc-jsbn@~0.1.1: 870 | version "0.1.1" 871 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 872 | dependencies: 873 | jsbn "~0.1.0" 874 | 875 | end-of-stream@1.0.0: 876 | version "1.0.0" 877 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.0.0.tgz#d4596e702734a93e40e9af864319eabd99ff2f0e" 878 | dependencies: 879 | once "~1.3.0" 880 | 881 | escape-string-regexp@^1.0.2: 882 | version "1.0.5" 883 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 884 | 885 | esutils@^2.0.2: 886 | version "2.0.2" 887 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 888 | 889 | expand-brackets@^0.1.4: 890 | version "0.1.5" 891 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 892 | dependencies: 893 | is-posix-bracket "^0.1.0" 894 | 895 | expand-range@^1.8.1: 896 | version "1.8.2" 897 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 898 | dependencies: 899 | fill-range "^2.1.0" 900 | 901 | extend-shallow@^2.0.1: 902 | version "2.0.1" 903 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 904 | dependencies: 905 | is-extendable "^0.1.0" 906 | 907 | extend@~3.0.0: 908 | version "3.0.0" 909 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 910 | 911 | extglob@^0.3.1: 912 | version "0.3.2" 913 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 914 | dependencies: 915 | is-extglob "^1.0.0" 916 | 917 | extsprintf@1.0.2: 918 | version "1.0.2" 919 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 920 | 921 | eyes@0.1.x: 922 | version "0.1.8" 923 | resolved "https://registry.yarnpkg.com/eyes/-/eyes-0.1.8.tgz#62cf120234c683785d902348a800ef3e0cc20bc0" 924 | 925 | filename-regex@^2.0.0: 926 | version "2.0.0" 927 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 928 | 929 | fill-range@^2.1.0: 930 | version "2.2.3" 931 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 932 | dependencies: 933 | is-number "^2.1.0" 934 | isobject "^2.0.0" 935 | randomatic "^1.1.3" 936 | repeat-element "^1.1.2" 937 | repeat-string "^1.5.2" 938 | 939 | for-in@^0.1.5: 940 | version "0.1.6" 941 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.6.tgz#c9f96e89bfad18a545af5ec3ed352a1d9e5b4dc8" 942 | 943 | for-own@^0.1.4: 944 | version "0.1.4" 945 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.4.tgz#0149b41a39088c7515f51ebe1c1386d45f935072" 946 | dependencies: 947 | for-in "^0.1.5" 948 | 949 | forever-agent@~0.6.1: 950 | version "0.6.1" 951 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 952 | 953 | form-data@~2.1.1: 954 | version "2.1.2" 955 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4" 956 | dependencies: 957 | asynckit "^0.4.0" 958 | combined-stream "^1.0.5" 959 | mime-types "^2.1.12" 960 | 961 | fs-exists-sync@^0.1.0: 962 | version "0.1.0" 963 | resolved "https://registry.yarnpkg.com/fs-exists-sync/-/fs-exists-sync-0.1.0.tgz#982d6893af918e72d08dec9e8673ff2b5a8d6add" 964 | 965 | fs-readdir-recursive@^1.0.0: 966 | version "1.0.0" 967 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 968 | 969 | fs.realpath@^1.0.0: 970 | version "1.0.0" 971 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 972 | 973 | fsevents@^1.0.0: 974 | version "1.0.17" 975 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.0.17.tgz#8537f3f12272678765b4fd6528c0f1f66f8f4558" 976 | dependencies: 977 | nan "^2.3.0" 978 | node-pre-gyp "^0.6.29" 979 | 980 | fstream-ignore@~1.0.5: 981 | version "1.0.5" 982 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 983 | dependencies: 984 | fstream "^1.0.0" 985 | inherits "2" 986 | minimatch "^3.0.0" 987 | 988 | fstream@^1.0.0, fstream@^1.0.2, fstream@~1.0.10: 989 | version "1.0.10" 990 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.10.tgz#604e8a92fe26ffd9f6fae30399d4984e1ab22822" 991 | dependencies: 992 | graceful-fs "^4.1.2" 993 | inherits "~2.0.0" 994 | mkdirp ">=0.5 0" 995 | rimraf "2" 996 | 997 | gauge@~2.7.1: 998 | version "2.7.3" 999 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.3.tgz#1c23855f962f17b3ad3d0dc7443f304542edfe09" 1000 | dependencies: 1001 | aproba "^1.0.3" 1002 | console-control-strings "^1.0.0" 1003 | has-unicode "^2.0.0" 1004 | object-assign "^4.1.0" 1005 | signal-exit "^3.0.0" 1006 | string-width "^1.0.1" 1007 | strip-ansi "^3.0.1" 1008 | wide-align "^1.1.0" 1009 | 1010 | generate-function@^2.0.0: 1011 | version "2.0.0" 1012 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1013 | 1014 | generate-object-property@^1.1.0: 1015 | version "1.2.0" 1016 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1017 | dependencies: 1018 | is-property "^1.0.0" 1019 | 1020 | get-stdin@^1.0.0: 1021 | version "1.0.0" 1022 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-1.0.0.tgz#00bd5a494c81c372f5629bea103bbffe7a1da3ce" 1023 | 1024 | getpass@^0.1.1: 1025 | version "0.1.6" 1026 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 1027 | dependencies: 1028 | assert-plus "^1.0.0" 1029 | 1030 | ghsign@^1.2.2: 1031 | version "1.3.3" 1032 | resolved "https://registry.yarnpkg.com/ghsign/-/ghsign-1.3.3.tgz#e45071904be42d874397f73da07e1d0096f2991a" 1033 | dependencies: 1034 | debug "^2.1.3" 1035 | request "^2.39.0" 1036 | ssh-agent "^0.2.2" 1037 | ssh-key-to-pem "^0.11.0" 1038 | thunky "^0.1.0" 1039 | 1040 | git-config-path@^0.1.0: 1041 | version "0.1.0" 1042 | resolved "https://registry.yarnpkg.com/git-config-path/-/git-config-path-0.1.0.tgz#a34f7dd77f61b84b0c6ea9b21d88a35908cd2951" 1043 | 1044 | git-config-path@^1.0.0: 1045 | version "1.0.1" 1046 | resolved "https://registry.yarnpkg.com/git-config-path/-/git-config-path-1.0.1.tgz#6d33f7ed63db0d0e118131503bab3aca47d54664" 1047 | dependencies: 1048 | extend-shallow "^2.0.1" 1049 | fs-exists-sync "^0.1.0" 1050 | homedir-polyfill "^1.0.0" 1051 | 1052 | git-user-name@^1.2.0: 1053 | version "1.2.0" 1054 | resolved "https://registry.yarnpkg.com/git-user-name/-/git-user-name-1.2.0.tgz#f37a6184b012f5be931016306b4c7b7b86afff24" 1055 | dependencies: 1056 | extend-shallow "^2.0.1" 1057 | git-config-path "^0.1.0" 1058 | isobject "^2.0.0" 1059 | lazy-cache "^1.0.3" 1060 | parse-git-config "^0.4.0" 1061 | 1062 | git-username@^0.5.0: 1063 | version "0.5.0" 1064 | resolved "https://registry.yarnpkg.com/git-username/-/git-username-0.5.0.tgz#38c561dac9cbf334097a31bd9a38af0cb40a3123" 1065 | dependencies: 1066 | remote-origin-url "^0.4.0" 1067 | 1068 | github-current-user@^2.5.0: 1069 | version "2.5.0" 1070 | resolved "https://registry.yarnpkg.com/github-current-user/-/github-current-user-2.5.0.tgz#7b145f125fcd3421407775854b6f3bbed9e78435" 1071 | dependencies: 1072 | debug "^2.1.3" 1073 | ghsign "^1.2.2" 1074 | git-config-path "^0.1.0" 1075 | github-username "^1.1.1" 1076 | parse-git-config "^0.3.1" 1077 | request "^2.55.0" 1078 | 1079 | github-username@^1.1.1: 1080 | version "1.1.1" 1081 | resolved "https://registry.yarnpkg.com/github-username/-/github-username-1.1.1.tgz#b9b43d852db661fbe4c850cc756768c022a53a9e" 1082 | dependencies: 1083 | get-stdin "^1.0.0" 1084 | got "^2.3.0" 1085 | 1086 | glob-base@^0.3.0: 1087 | version "0.3.0" 1088 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1089 | dependencies: 1090 | glob-parent "^2.0.0" 1091 | is-glob "^2.0.0" 1092 | 1093 | glob-parent@^2.0.0: 1094 | version "2.0.0" 1095 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1096 | dependencies: 1097 | is-glob "^2.0.0" 1098 | 1099 | glob@^7.0.0, glob@^7.0.5: 1100 | version "7.1.1" 1101 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1102 | dependencies: 1103 | fs.realpath "^1.0.0" 1104 | inflight "^1.0.4" 1105 | inherits "2" 1106 | minimatch "^3.0.2" 1107 | once "^1.3.0" 1108 | path-is-absolute "^1.0.0" 1109 | 1110 | globals@^9.0.0: 1111 | version "9.14.0" 1112 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.14.0.tgz#8859936af0038741263053b39d0e76ca241e4034" 1113 | 1114 | got@^2.3.0: 1115 | version "2.9.2" 1116 | resolved "https://registry.yarnpkg.com/got/-/got-2.9.2.tgz#2e1ee58ea1e8d201e25ae580b96e63c15fefd4ee" 1117 | dependencies: 1118 | duplexify "^3.2.0" 1119 | infinity-agent "^2.0.0" 1120 | is-stream "^1.0.0" 1121 | lowercase-keys "^1.0.0" 1122 | nested-error-stacks "^1.0.0" 1123 | object-assign "^2.0.0" 1124 | prepend-http "^1.0.0" 1125 | read-all-stream "^2.0.0" 1126 | statuses "^1.2.1" 1127 | timed-out "^2.0.0" 1128 | 1129 | graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1130 | version "4.1.11" 1131 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1132 | 1133 | "graceful-readlink@>= 1.0.0": 1134 | version "1.0.1" 1135 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1136 | 1137 | har-validator@~2.0.6: 1138 | version "2.0.6" 1139 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 1140 | dependencies: 1141 | chalk "^1.1.1" 1142 | commander "^2.9.0" 1143 | is-my-json-valid "^2.12.4" 1144 | pinkie-promise "^2.0.0" 1145 | 1146 | has-ansi@^2.0.0: 1147 | version "2.0.0" 1148 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1149 | dependencies: 1150 | ansi-regex "^2.0.0" 1151 | 1152 | has-unicode@^2.0.0: 1153 | version "2.0.1" 1154 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1155 | 1156 | hawk@~3.1.3: 1157 | version "3.1.3" 1158 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1159 | dependencies: 1160 | boom "2.x.x" 1161 | cryptiles "2.x.x" 1162 | hoek "2.x.x" 1163 | sntp "1.x.x" 1164 | 1165 | hoek@2.x.x: 1166 | version "2.16.3" 1167 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1168 | 1169 | home-or-tmp@^2.0.0: 1170 | version "2.0.0" 1171 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1172 | dependencies: 1173 | os-homedir "^1.0.0" 1174 | os-tmpdir "^1.0.1" 1175 | 1176 | homedir-polyfill@^1.0.0: 1177 | version "1.0.1" 1178 | resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.1.tgz#4c2bbc8a758998feebf5ed68580f76d46768b4bc" 1179 | dependencies: 1180 | parse-passwd "^1.0.0" 1181 | 1182 | http-signature@~1.1.0: 1183 | version "1.1.1" 1184 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1185 | dependencies: 1186 | assert-plus "^0.2.0" 1187 | jsprim "^1.2.2" 1188 | sshpk "^1.7.0" 1189 | 1190 | i@0.3.x: 1191 | version "0.3.5" 1192 | resolved "https://registry.yarnpkg.com/i/-/i-0.3.5.tgz#1d2b854158ec8169113c6cb7f6b6801e99e211d5" 1193 | 1194 | infinity-agent@^2.0.0: 1195 | version "2.0.3" 1196 | resolved "https://registry.yarnpkg.com/infinity-agent/-/infinity-agent-2.0.3.tgz#45e0e2ff7a9eb030b27d62b74b3744b7a7ac4216" 1197 | 1198 | inflight@^1.0.4: 1199 | version "1.0.6" 1200 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1201 | dependencies: 1202 | once "^1.3.0" 1203 | wrappy "1" 1204 | 1205 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1: 1206 | version "2.0.3" 1207 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1208 | 1209 | ini@^1.3.3, ini@^1.3.4, ini@~1.3.0: 1210 | version "1.3.4" 1211 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1212 | 1213 | invariant@^2.2.0: 1214 | version "2.2.2" 1215 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1216 | dependencies: 1217 | loose-envify "^1.0.0" 1218 | 1219 | is-binary-path@^1.0.0: 1220 | version "1.0.1" 1221 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1222 | dependencies: 1223 | binary-extensions "^1.0.0" 1224 | 1225 | is-buffer@^1.0.2: 1226 | version "1.1.4" 1227 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b" 1228 | 1229 | is-dotfile@^1.0.0: 1230 | version "1.0.2" 1231 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 1232 | 1233 | is-equal-shallow@^0.1.3: 1234 | version "0.1.3" 1235 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1236 | dependencies: 1237 | is-primitive "^2.0.0" 1238 | 1239 | is-extendable@^0.1.0, is-extendable@^0.1.1: 1240 | version "0.1.1" 1241 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1242 | 1243 | is-extglob@^1.0.0: 1244 | version "1.0.0" 1245 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1246 | 1247 | is-finite@^1.0.0: 1248 | version "1.0.2" 1249 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1250 | dependencies: 1251 | number-is-nan "^1.0.0" 1252 | 1253 | is-fullwidth-code-point@^1.0.0: 1254 | version "1.0.0" 1255 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1256 | dependencies: 1257 | number-is-nan "^1.0.0" 1258 | 1259 | is-glob@^2.0.0, is-glob@^2.0.1: 1260 | version "2.0.1" 1261 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1262 | dependencies: 1263 | is-extglob "^1.0.0" 1264 | 1265 | is-my-json-valid@^2.12.4: 1266 | version "2.15.0" 1267 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b" 1268 | dependencies: 1269 | generate-function "^2.0.0" 1270 | generate-object-property "^1.1.0" 1271 | jsonpointer "^4.0.0" 1272 | xtend "^4.0.0" 1273 | 1274 | is-number@^2.0.2, is-number@^2.1.0: 1275 | version "2.1.0" 1276 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1277 | dependencies: 1278 | kind-of "^3.0.2" 1279 | 1280 | is-posix-bracket@^0.1.0: 1281 | version "0.1.1" 1282 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1283 | 1284 | is-primitive@^2.0.0: 1285 | version "2.0.0" 1286 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1287 | 1288 | is-property@^1.0.0: 1289 | version "1.0.2" 1290 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1291 | 1292 | is-stream@^1.0.0: 1293 | version "1.1.0" 1294 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1295 | 1296 | is-typedarray@~1.0.0: 1297 | version "1.0.0" 1298 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1299 | 1300 | isarray@1.0.0, isarray@~1.0.0: 1301 | version "1.0.0" 1302 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1303 | 1304 | isobject@^2.0.0: 1305 | version "2.1.0" 1306 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1307 | dependencies: 1308 | isarray "1.0.0" 1309 | 1310 | isstream@0.1.x, isstream@~0.1.2: 1311 | version "0.1.2" 1312 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1313 | 1314 | jodid25519@^1.0.0: 1315 | version "1.0.2" 1316 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 1317 | dependencies: 1318 | jsbn "~0.1.0" 1319 | 1320 | js-tokens@^3.0.0: 1321 | version "3.0.1" 1322 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 1323 | 1324 | jsbn@~0.1.0: 1325 | version "0.1.0" 1326 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.0.tgz#650987da0dd74f4ebf5a11377a2aa2d273e97dfd" 1327 | 1328 | jsesc@^1.3.0: 1329 | version "1.3.0" 1330 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1331 | 1332 | jsesc@~0.5.0: 1333 | version "0.5.0" 1334 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1335 | 1336 | json-schema@0.2.3: 1337 | version "0.2.3" 1338 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1339 | 1340 | json-stringify-safe@~5.0.1: 1341 | version "5.0.1" 1342 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1343 | 1344 | json5@^0.5.0: 1345 | version "0.5.1" 1346 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1347 | 1348 | jsonpointer@^4.0.0: 1349 | version "4.0.1" 1350 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 1351 | 1352 | jsprim@^1.2.2: 1353 | version "1.3.1" 1354 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.3.1.tgz#2a7256f70412a29ee3670aaca625994c4dcff252" 1355 | dependencies: 1356 | extsprintf "1.0.2" 1357 | json-schema "0.2.3" 1358 | verror "1.3.6" 1359 | 1360 | kind-of@^3.0.2: 1361 | version "3.1.0" 1362 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47" 1363 | dependencies: 1364 | is-buffer "^1.0.2" 1365 | 1366 | lazy-cache@^1.0.3: 1367 | version "1.0.4" 1368 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1369 | 1370 | lodash@^4.2.0: 1371 | version "4.17.4" 1372 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1373 | 1374 | loose-envify@^1.0.0: 1375 | version "1.3.1" 1376 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1377 | dependencies: 1378 | js-tokens "^3.0.0" 1379 | 1380 | lowercase-keys@^1.0.0: 1381 | version "1.0.0" 1382 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" 1383 | 1384 | micromatch@^2.1.5: 1385 | version "2.3.11" 1386 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1387 | dependencies: 1388 | arr-diff "^2.0.0" 1389 | array-unique "^0.2.1" 1390 | braces "^1.8.2" 1391 | expand-brackets "^0.1.4" 1392 | extglob "^0.3.1" 1393 | filename-regex "^2.0.0" 1394 | is-extglob "^1.0.0" 1395 | is-glob "^2.0.1" 1396 | kind-of "^3.0.2" 1397 | normalize-path "^2.0.1" 1398 | object.omit "^2.0.0" 1399 | parse-glob "^3.0.4" 1400 | regex-cache "^0.4.2" 1401 | 1402 | mime-db@~1.26.0: 1403 | version "1.26.0" 1404 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.26.0.tgz#eaffcd0e4fc6935cf8134da246e2e6c35305adff" 1405 | 1406 | mime-types@^2.1.12, mime-types@~2.1.7: 1407 | version "2.1.14" 1408 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.14.tgz#f7ef7d97583fcaf3b7d282b6f8b5679dab1e94ee" 1409 | dependencies: 1410 | mime-db "~1.26.0" 1411 | 1412 | minimatch@^3.0.0, minimatch@^3.0.2: 1413 | version "3.0.3" 1414 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 1415 | dependencies: 1416 | brace-expansion "^1.0.0" 1417 | 1418 | minimist@0.0.8: 1419 | version "0.0.8" 1420 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1421 | 1422 | minimist@^1.2.0: 1423 | version "1.2.0" 1424 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1425 | 1426 | mkdirp@0.x.x, "mkdirp@>=0.5 0", mkdirp@^0.5.1, mkdirp@~0.5.1: 1427 | version "0.5.1" 1428 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1429 | dependencies: 1430 | minimist "0.0.8" 1431 | 1432 | ms@0.7.1: 1433 | version "0.7.1" 1434 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 1435 | 1436 | ms@0.7.2: 1437 | version "0.7.2" 1438 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 1439 | 1440 | mute-stream@~0.0.4: 1441 | version "0.0.7" 1442 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 1443 | 1444 | nan@^2.3.0: 1445 | version "2.5.1" 1446 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.5.1.tgz#d5b01691253326a97a2bbee9e61c55d8d60351e2" 1447 | 1448 | ncp@1.0.x: 1449 | version "1.0.1" 1450 | resolved "https://registry.yarnpkg.com/ncp/-/ncp-1.0.1.tgz#d15367e5cb87432ba117d2bf80fdf45aecfb4246" 1451 | 1452 | ncp@^2.0.0: 1453 | version "2.0.0" 1454 | resolved "https://registry.yarnpkg.com/ncp/-/ncp-2.0.0.tgz#195a21d6c46e361d2fb1281ba38b91e9df7bdbb3" 1455 | 1456 | nested-error-stacks@^1.0.0: 1457 | version "1.0.2" 1458 | resolved "https://registry.yarnpkg.com/nested-error-stacks/-/nested-error-stacks-1.0.2.tgz#19f619591519f096769a5ba9a86e6eeec823c3cf" 1459 | dependencies: 1460 | inherits "~2.0.1" 1461 | 1462 | node-pre-gyp@^0.6.29: 1463 | version "0.6.33" 1464 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.33.tgz#640ac55198f6a925972e0c16c4ac26a034d5ecc9" 1465 | dependencies: 1466 | mkdirp "~0.5.1" 1467 | nopt "~3.0.6" 1468 | npmlog "^4.0.1" 1469 | rc "~1.1.6" 1470 | request "^2.79.0" 1471 | rimraf "~2.5.4" 1472 | semver "~5.3.0" 1473 | tar "~2.2.1" 1474 | tar-pack "~3.3.0" 1475 | 1476 | nopt@~3.0.6: 1477 | version "3.0.6" 1478 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 1479 | dependencies: 1480 | abbrev "1" 1481 | 1482 | normalize-path@^2.0.1: 1483 | version "2.0.1" 1484 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a" 1485 | 1486 | npmlog@^4.0.1: 1487 | version "4.0.2" 1488 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.2.tgz#d03950e0e78ce1527ba26d2a7592e9348ac3e75f" 1489 | dependencies: 1490 | are-we-there-yet "~1.1.2" 1491 | console-control-strings "~1.1.0" 1492 | gauge "~2.7.1" 1493 | set-blocking "~2.0.0" 1494 | 1495 | number-is-nan@^1.0.0: 1496 | version "1.0.1" 1497 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1498 | 1499 | oauth-sign@~0.8.1: 1500 | version "0.8.2" 1501 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1502 | 1503 | object-assign@^2.0.0: 1504 | version "2.1.1" 1505 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-2.1.1.tgz#43c36e5d569ff8e4816c4efa8be02d26967c18aa" 1506 | 1507 | object-assign@^4.1.0: 1508 | version "4.1.1" 1509 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1510 | 1511 | object.omit@^2.0.0: 1512 | version "2.0.1" 1513 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1514 | dependencies: 1515 | for-own "^0.1.4" 1516 | is-extendable "^0.1.1" 1517 | 1518 | once@^1.3.0: 1519 | version "1.4.0" 1520 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1521 | dependencies: 1522 | wrappy "1" 1523 | 1524 | once@~1.3.0, once@~1.3.3: 1525 | version "1.3.3" 1526 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 1527 | dependencies: 1528 | wrappy "1" 1529 | 1530 | os-homedir@^1.0.0: 1531 | version "1.0.2" 1532 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1533 | 1534 | os-tmpdir@^1.0.1: 1535 | version "1.0.2" 1536 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1537 | 1538 | output-file-sync@^1.1.0: 1539 | version "1.1.2" 1540 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 1541 | dependencies: 1542 | graceful-fs "^4.1.4" 1543 | mkdirp "^0.5.1" 1544 | object-assign "^4.1.0" 1545 | 1546 | parse-git-config@^0.2.0: 1547 | version "0.2.0" 1548 | resolved "https://registry.yarnpkg.com/parse-git-config/-/parse-git-config-0.2.0.tgz#272833fdd15fea146fb75d336d236b963b6ff706" 1549 | dependencies: 1550 | ini "^1.3.3" 1551 | 1552 | parse-git-config@^0.3.1: 1553 | version "0.3.2" 1554 | resolved "https://registry.yarnpkg.com/parse-git-config/-/parse-git-config-0.3.2.tgz#47373337e0afcffce4ecdd7b6888511af11fb60b" 1555 | dependencies: 1556 | ini "^1.3.3" 1557 | 1558 | parse-git-config@^0.4.0: 1559 | version "0.4.3" 1560 | resolved "https://registry.yarnpkg.com/parse-git-config/-/parse-git-config-0.4.3.tgz#67d62248dd5a24e6053f8475105f1fb9e94bbb00" 1561 | dependencies: 1562 | extend-shallow "^2.0.1" 1563 | fs-exists-sync "^0.1.0" 1564 | git-config-path "^1.0.0" 1565 | ini "^1.3.4" 1566 | 1567 | parse-glob@^3.0.4: 1568 | version "3.0.4" 1569 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1570 | dependencies: 1571 | glob-base "^0.3.0" 1572 | is-dotfile "^1.0.0" 1573 | is-extglob "^1.0.0" 1574 | is-glob "^2.0.0" 1575 | 1576 | parse-passwd@^1.0.0: 1577 | version "1.0.0" 1578 | resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" 1579 | 1580 | path-is-absolute@^1.0.0: 1581 | version "1.0.1" 1582 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1583 | 1584 | pinkie-promise@^2.0.0: 1585 | version "2.0.1" 1586 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1587 | dependencies: 1588 | pinkie "^2.0.0" 1589 | 1590 | pinkie@^2.0.0: 1591 | version "2.0.4" 1592 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1593 | 1594 | pkginfo@0.3.x: 1595 | version "0.3.1" 1596 | resolved "https://registry.yarnpkg.com/pkginfo/-/pkginfo-0.3.1.tgz#5b29f6a81f70717142e09e765bbeab97b4f81e21" 1597 | 1598 | pkginfo@0.x.x: 1599 | version "0.4.0" 1600 | resolved "https://registry.yarnpkg.com/pkginfo/-/pkginfo-0.4.0.tgz#349dbb7ffd38081fcadc0853df687f0c7744cd65" 1601 | 1602 | posix-getopt@1.1.0: 1603 | version "1.1.0" 1604 | resolved "https://registry.yarnpkg.com/posix-getopt/-/posix-getopt-1.1.0.tgz#8e258aca8f34d6906c159a32b0388360197e5698" 1605 | 1606 | prepend-http@^1.0.0: 1607 | version "1.0.4" 1608 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 1609 | 1610 | preserve@^0.2.0: 1611 | version "0.2.0" 1612 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1613 | 1614 | private@^0.1.6: 1615 | version "0.1.7" 1616 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 1617 | 1618 | process-nextick-args@~1.0.6: 1619 | version "1.0.7" 1620 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1621 | 1622 | prompt@^1.0.0: 1623 | version "1.0.0" 1624 | resolved "https://registry.yarnpkg.com/prompt/-/prompt-1.0.0.tgz#8e57123c396ab988897fb327fd3aedc3e735e4fe" 1625 | dependencies: 1626 | colors "^1.1.2" 1627 | pkginfo "0.x.x" 1628 | read "1.0.x" 1629 | revalidator "0.1.x" 1630 | utile "0.3.x" 1631 | winston "2.1.x" 1632 | 1633 | punycode@^1.4.1: 1634 | version "1.4.1" 1635 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1636 | 1637 | qs@~6.3.0: 1638 | version "6.3.0" 1639 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.0.tgz#f403b264f23bc01228c74131b407f18d5ea5d442" 1640 | 1641 | randomatic@^1.1.3: 1642 | version "1.1.6" 1643 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 1644 | dependencies: 1645 | is-number "^2.0.2" 1646 | kind-of "^3.0.2" 1647 | 1648 | rc@~1.1.6: 1649 | version "1.1.6" 1650 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.1.6.tgz#43651b76b6ae53b5c802f1151fa3fc3b059969c9" 1651 | dependencies: 1652 | deep-extend "~0.4.0" 1653 | ini "~1.3.0" 1654 | minimist "^1.2.0" 1655 | strip-json-comments "~1.0.4" 1656 | 1657 | read-all-stream@^2.0.0: 1658 | version "2.2.0" 1659 | resolved "https://registry.yarnpkg.com/read-all-stream/-/read-all-stream-2.2.0.tgz#6b83370546c55ab6ade2bf75e83c66e45989bbf0" 1660 | dependencies: 1661 | readable-stream "^2.0.0" 1662 | 1663 | read@1.0.x: 1664 | version "1.0.7" 1665 | resolved "https://registry.yarnpkg.com/read/-/read-1.0.7.tgz#b3da19bd052431a97671d44a42634adf710b40c4" 1666 | dependencies: 1667 | mute-stream "~0.0.4" 1668 | 1669 | readable-stream@^2.0.0, "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.2: 1670 | version "2.2.2" 1671 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.2.tgz#a9e6fec3c7dda85f8bb1b3ba7028604556fc825e" 1672 | dependencies: 1673 | buffer-shims "^1.0.0" 1674 | core-util-is "~1.0.0" 1675 | inherits "~2.0.1" 1676 | isarray "~1.0.0" 1677 | process-nextick-args "~1.0.6" 1678 | string_decoder "~0.10.x" 1679 | util-deprecate "~1.0.1" 1680 | 1681 | readable-stream@~2.1.4: 1682 | version "2.1.5" 1683 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0" 1684 | dependencies: 1685 | buffer-shims "^1.0.0" 1686 | core-util-is "~1.0.0" 1687 | inherits "~2.0.1" 1688 | isarray "~1.0.0" 1689 | process-nextick-args "~1.0.6" 1690 | string_decoder "~0.10.x" 1691 | util-deprecate "~1.0.1" 1692 | 1693 | readdirp@^2.0.0: 1694 | version "2.1.0" 1695 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 1696 | dependencies: 1697 | graceful-fs "^4.1.2" 1698 | minimatch "^3.0.2" 1699 | readable-stream "^2.0.2" 1700 | set-immediate-shim "^1.0.1" 1701 | 1702 | regenerate@^1.2.1: 1703 | version "1.3.2" 1704 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 1705 | 1706 | regenerator-runtime@^0.10.0: 1707 | version "0.10.1" 1708 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.1.tgz#257f41961ce44558b18f7814af48c17559f9faeb" 1709 | 1710 | regenerator-transform@0.9.8: 1711 | version "0.9.8" 1712 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.8.tgz#0f88bb2bc03932ddb7b6b7312e68078f01026d6c" 1713 | dependencies: 1714 | babel-runtime "^6.18.0" 1715 | babel-types "^6.19.0" 1716 | private "^0.1.6" 1717 | 1718 | regex-cache@^0.4.2: 1719 | version "0.4.3" 1720 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 1721 | dependencies: 1722 | is-equal-shallow "^0.1.3" 1723 | is-primitive "^2.0.0" 1724 | 1725 | regexpu-core@^2.0.0: 1726 | version "2.0.0" 1727 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 1728 | dependencies: 1729 | regenerate "^1.2.1" 1730 | regjsgen "^0.2.0" 1731 | regjsparser "^0.1.4" 1732 | 1733 | regjsgen@^0.2.0: 1734 | version "0.2.0" 1735 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 1736 | 1737 | regjsparser@^0.1.4: 1738 | version "0.1.5" 1739 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 1740 | dependencies: 1741 | jsesc "~0.5.0" 1742 | 1743 | remote-origin-url@^0.4.0: 1744 | version "0.4.0" 1745 | resolved "https://registry.yarnpkg.com/remote-origin-url/-/remote-origin-url-0.4.0.tgz#4d3e2902f34e2d37d1c263d87710b77eb4086a30" 1746 | dependencies: 1747 | parse-git-config "^0.2.0" 1748 | 1749 | repeat-element@^1.1.2: 1750 | version "1.1.2" 1751 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1752 | 1753 | repeat-string@^1.5.2: 1754 | version "1.6.1" 1755 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1756 | 1757 | repeating@^2.0.0: 1758 | version "2.0.1" 1759 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1760 | dependencies: 1761 | is-finite "^1.0.0" 1762 | 1763 | request@^2.39.0, request@^2.55.0, request@^2.79.0: 1764 | version "2.79.0" 1765 | resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" 1766 | dependencies: 1767 | aws-sign2 "~0.6.0" 1768 | aws4 "^1.2.1" 1769 | caseless "~0.11.0" 1770 | combined-stream "~1.0.5" 1771 | extend "~3.0.0" 1772 | forever-agent "~0.6.1" 1773 | form-data "~2.1.1" 1774 | har-validator "~2.0.6" 1775 | hawk "~3.1.3" 1776 | http-signature "~1.1.0" 1777 | is-typedarray "~1.0.0" 1778 | isstream "~0.1.2" 1779 | json-stringify-safe "~5.0.1" 1780 | mime-types "~2.1.7" 1781 | oauth-sign "~0.8.1" 1782 | qs "~6.3.0" 1783 | stringstream "~0.0.4" 1784 | tough-cookie "~2.3.0" 1785 | tunnel-agent "~0.4.1" 1786 | uuid "^3.0.0" 1787 | 1788 | revalidator@0.1.x: 1789 | version "0.1.8" 1790 | resolved "https://registry.yarnpkg.com/revalidator/-/revalidator-0.1.8.tgz#fece61bfa0c1b52a206bd6b18198184bdd523a3b" 1791 | 1792 | rimraf@2, rimraf@2.x.x, rimraf@~2.5.1, rimraf@~2.5.4: 1793 | version "2.5.4" 1794 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" 1795 | dependencies: 1796 | glob "^7.0.5" 1797 | 1798 | semver@~5.3.0: 1799 | version "5.3.0" 1800 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 1801 | 1802 | set-blocking@~2.0.0: 1803 | version "2.0.0" 1804 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1805 | 1806 | set-immediate-shim@^1.0.1: 1807 | version "1.0.1" 1808 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 1809 | 1810 | signal-exit@^3.0.0: 1811 | version "3.0.2" 1812 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 1813 | 1814 | slash@^1.0.0: 1815 | version "1.0.0" 1816 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 1817 | 1818 | sntp@1.x.x: 1819 | version "1.0.9" 1820 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 1821 | dependencies: 1822 | hoek "2.x.x" 1823 | 1824 | source-map-support@^0.4.2: 1825 | version "0.4.11" 1826 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.11.tgz#647f939978b38535909530885303daf23279f322" 1827 | dependencies: 1828 | source-map "^0.5.3" 1829 | 1830 | source-map@^0.5.0, source-map@^0.5.3: 1831 | version "0.5.6" 1832 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 1833 | 1834 | ssh-agent@^0.2.2: 1835 | version "0.2.4" 1836 | resolved "https://registry.yarnpkg.com/ssh-agent/-/ssh-agent-0.2.4.tgz#1815436395ddd852cd801c7b447d447fc573bd94" 1837 | dependencies: 1838 | ctype "0.5.4" 1839 | posix-getopt "1.1.0" 1840 | 1841 | ssh-key-to-pem@^0.11.0: 1842 | version "0.11.1" 1843 | resolved "https://registry.yarnpkg.com/ssh-key-to-pem/-/ssh-key-to-pem-0.11.1.tgz#09b107d2a487df22388671c60006258c69dbaae8" 1844 | dependencies: 1845 | asn1 "0.1.11" 1846 | ctype "0.5.2" 1847 | 1848 | sshpk@^1.7.0: 1849 | version "1.10.2" 1850 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.10.2.tgz#d5a804ce22695515638e798dbe23273de070a5fa" 1851 | dependencies: 1852 | asn1 "~0.2.3" 1853 | assert-plus "^1.0.0" 1854 | dashdash "^1.12.0" 1855 | getpass "^0.1.1" 1856 | optionalDependencies: 1857 | bcrypt-pbkdf "^1.0.0" 1858 | ecc-jsbn "~0.1.1" 1859 | jodid25519 "^1.0.0" 1860 | jsbn "~0.1.0" 1861 | tweetnacl "~0.14.0" 1862 | 1863 | stack-trace@0.0.x: 1864 | version "0.0.9" 1865 | resolved "https://registry.yarnpkg.com/stack-trace/-/stack-trace-0.0.9.tgz#a8f6eaeca90674c333e7c43953f275b451510695" 1866 | 1867 | statuses@^1.2.1: 1868 | version "1.3.1" 1869 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" 1870 | 1871 | stream-shift@^1.0.0: 1872 | version "1.0.0" 1873 | resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952" 1874 | 1875 | string-width@^1.0.1: 1876 | version "1.0.2" 1877 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1878 | dependencies: 1879 | code-point-at "^1.0.0" 1880 | is-fullwidth-code-point "^1.0.0" 1881 | strip-ansi "^3.0.0" 1882 | 1883 | string_decoder@~0.10.x: 1884 | version "0.10.31" 1885 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 1886 | 1887 | stringstream@~0.0.4: 1888 | version "0.0.5" 1889 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 1890 | 1891 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 1892 | version "3.0.1" 1893 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1894 | dependencies: 1895 | ansi-regex "^2.0.0" 1896 | 1897 | strip-json-comments@~1.0.4: 1898 | version "1.0.4" 1899 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91" 1900 | 1901 | supports-color@^2.0.0: 1902 | version "2.0.0" 1903 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 1904 | 1905 | tar-pack@~3.3.0: 1906 | version "3.3.0" 1907 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.3.0.tgz#30931816418f55afc4d21775afdd6720cee45dae" 1908 | dependencies: 1909 | debug "~2.2.0" 1910 | fstream "~1.0.10" 1911 | fstream-ignore "~1.0.5" 1912 | once "~1.3.3" 1913 | readable-stream "~2.1.4" 1914 | rimraf "~2.5.1" 1915 | tar "~2.2.1" 1916 | uid-number "~0.0.6" 1917 | 1918 | tar@~2.2.1: 1919 | version "2.2.1" 1920 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 1921 | dependencies: 1922 | block-stream "*" 1923 | fstream "^1.0.2" 1924 | inherits "2" 1925 | 1926 | thunky@^0.1.0: 1927 | version "0.1.0" 1928 | resolved "https://registry.yarnpkg.com/thunky/-/thunky-0.1.0.tgz#bf30146824e2b6e67b0f2d7a4ac8beb26908684e" 1929 | 1930 | timed-out@^2.0.0: 1931 | version "2.0.0" 1932 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-2.0.0.tgz#f38b0ae81d3747d628001f41dafc652ace671c0a" 1933 | 1934 | to-fast-properties@^1.0.1: 1935 | version "1.0.2" 1936 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 1937 | 1938 | tough-cookie@~2.3.0: 1939 | version "2.3.2" 1940 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 1941 | dependencies: 1942 | punycode "^1.4.1" 1943 | 1944 | tunnel-agent@~0.4.1: 1945 | version "0.4.3" 1946 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 1947 | 1948 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 1949 | version "0.14.5" 1950 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 1951 | 1952 | uid-number@~0.0.6: 1953 | version "0.0.6" 1954 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 1955 | 1956 | user-home@^1.1.1: 1957 | version "1.1.1" 1958 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 1959 | 1960 | util-deprecate@~1.0.1: 1961 | version "1.0.2" 1962 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1963 | 1964 | utile@0.3.x: 1965 | version "0.3.0" 1966 | resolved "https://registry.yarnpkg.com/utile/-/utile-0.3.0.tgz#1352c340eb820e4d8ddba039a4fbfaa32ed4ef3a" 1967 | dependencies: 1968 | async "~0.9.0" 1969 | deep-equal "~0.2.1" 1970 | i "0.3.x" 1971 | mkdirp "0.x.x" 1972 | ncp "1.0.x" 1973 | rimraf "2.x.x" 1974 | 1975 | uuid@^3.0.0: 1976 | version "3.0.1" 1977 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 1978 | 1979 | v8flags@^2.0.10: 1980 | version "2.0.11" 1981 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.0.11.tgz#bca8f30f0d6d60612cc2c00641e6962d42ae6881" 1982 | dependencies: 1983 | user-home "^1.1.1" 1984 | 1985 | verror@1.3.6: 1986 | version "1.3.6" 1987 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 1988 | dependencies: 1989 | extsprintf "1.0.2" 1990 | 1991 | wide-align@^1.1.0: 1992 | version "1.1.0" 1993 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 1994 | dependencies: 1995 | string-width "^1.0.1" 1996 | 1997 | winston@2.1.x: 1998 | version "2.1.1" 1999 | resolved "https://registry.yarnpkg.com/winston/-/winston-2.1.1.tgz#3c9349d196207fd1bdff9d4bc43ef72510e3a12e" 2000 | dependencies: 2001 | async "~1.0.0" 2002 | colors "1.0.x" 2003 | cycle "1.0.x" 2004 | eyes "0.1.x" 2005 | isstream "0.1.x" 2006 | pkginfo "0.3.x" 2007 | stack-trace "0.0.x" 2008 | 2009 | wrappy@1: 2010 | version "1.0.2" 2011 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2012 | 2013 | xtend@^4.0.0: 2014 | version "4.0.1" 2015 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2016 | --------------------------------------------------------------------------------