├── lib ├── constants.js ├── nodes │ ├── br.js │ ├── version.js │ ├── span.js │ ├── ul.js │ ├── p.js │ ├── li.js │ ├── b.js │ ├── i.js │ ├── u.js │ ├── cite.js │ ├── em.js │ ├── strong.js │ ├── program.js │ ├── index.js │ ├── div.js │ ├── command.js │ └── help.js ├── index.js ├── vnode.js ├── component.js ├── utils.js └── render.js ├── .gitignore ├── .travis.yml ├── .editorconfig ├── .babelrc ├── __mocks__ └── minimist.js ├── __tests__ ├── nodes │ ├── br.js │ ├── p.js │ ├── span.js │ ├── i.js │ ├── b.js │ ├── em.js │ ├── li.js │ ├── u.js │ ├── ul.js │ ├── cite.js │ ├── strong.js │ ├── version.js │ ├── div.js │ └── command.js ├── utils.js ├── component.js └── render.js ├── package.json ├── LICENSE ├── README.md └── yarn.lock /lib/constants.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NEWLINE: '\n', 3 | TAB: '\t', 4 | }; 5 | -------------------------------------------------------------------------------- /lib/nodes/br.js: -------------------------------------------------------------------------------- 1 | module.exports = (props, children) => { 2 | return '\n'; 3 | }; 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | coverage/ 4 | npm-debug.log 5 | yarn-debug.log 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - '5' 4 | - '6' 5 | - '7' 6 | after_script: "cat ./coverage/lcov.info | coveralls" 7 | -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- 1 | const Component = require('./component'); 2 | const { render } = require('./render'); 3 | 4 | const Wonders = { 5 | Component, 6 | render, 7 | }; 8 | 9 | module.exports = Wonders; 10 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | # default 4 | [*] 5 | charset = utf-8 6 | end_of_line = lf 7 | indent_size = 4 8 | indent_style = space 9 | insert_final_newline = true 10 | trim_trailing_whitespace = true 11 | -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "test": { 4 | "presets": ["wonders", "jest"], 5 | "plugins": [ 6 | "transform-async-to-generator", 7 | ] 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /__mocks__/minimist.js: -------------------------------------------------------------------------------- 1 | let __mockValue = null; 2 | 3 | const minimist = () => __mockValue; 4 | 5 | /** 6 | * @param {Array} inputs 7 | */ 8 | minimist.__setReturnValue = (inputs) => { 9 | __mockValue = inputs; 10 | }; 11 | 12 | module.exports = minimist; 13 | -------------------------------------------------------------------------------- /lib/nodes/version.js: -------------------------------------------------------------------------------- 1 | const path = require('path'); 2 | const { NEWLINE } = require('../constants'); 3 | 4 | module.exports = (props, children) => { 5 | let str = NEWLINE; 6 | 7 | str += 'Name: ' + path.basename(props.parse[1]) + NEWLINE; 8 | str += 'Version: ' + props.version; 9 | return str; 10 | }; 11 | -------------------------------------------------------------------------------- /__tests__/nodes/br.js: -------------------------------------------------------------------------------- 1 | import Wonders from '../../'; 2 | import { renderTree } from '../../lib/render'; 3 | 4 | describe('
', () => { 5 | it('should render a
element', () => { 6 | const node =
; 7 | const output = renderTree(node); 8 | expect(output).toEqual('\n'); 9 | }); 10 | }); 11 | -------------------------------------------------------------------------------- /__tests__/nodes/p.js: -------------------------------------------------------------------------------- 1 | import Wonders from '../../'; 2 | import { renderTree } from '../../lib/render'; 3 | 4 | describe('

', () => { 5 | it('should render a

element', () => { 6 | const node =

foobar

; 7 | const output = renderTree(node); 8 | expect(output).toEqual('\nfoobar\n'); 9 | }); 10 | }); 11 | -------------------------------------------------------------------------------- /__tests__/nodes/span.js: -------------------------------------------------------------------------------- 1 | import Wonders from '../../'; 2 | import { renderTree } from '../../lib/render'; 3 | 4 | describe('', () => { 5 | it('should render a element', () => { 6 | const node = foobar; 7 | const output = renderTree(node); 8 | expect(output).toEqual('foobar'); 9 | }); 10 | }); 11 | -------------------------------------------------------------------------------- /__tests__/nodes/i.js: -------------------------------------------------------------------------------- 1 | import Wonders from '../../'; 2 | import { renderTree } from '../../lib/render'; 3 | 4 | describe('', () => { 5 | it('should render a element', () => { 6 | const node = foobar; 7 | const output = renderTree(node); 8 | expect(output).toEqual('\u001b[3mfoobar\u001b[0m'); 9 | }); 10 | }); 11 | 12 | -------------------------------------------------------------------------------- /__tests__/nodes/b.js: -------------------------------------------------------------------------------- 1 | import Wonders from '../../'; 2 | import { renderTree } from '../../lib/render'; 3 | 4 | describe('', () => { 5 | it('should render a element', () => { 6 | const node = foobar; 7 | const output = renderTree(node); 8 | expect(output).toEqual('\u001b[1mfoobar\u001b[0m'); 9 | }); 10 | }); 11 | 12 | 13 | -------------------------------------------------------------------------------- /__tests__/nodes/em.js: -------------------------------------------------------------------------------- 1 | import Wonders from '../../'; 2 | import { renderTree } from '../../lib/render'; 3 | 4 | describe('', () => { 5 | it('should render a element', () => { 6 | const node = foobar; 7 | const output = renderTree(node); 8 | expect(output).toEqual('\u001b[3mfoobar\u001b[0m'); 9 | }); 10 | }); 11 | 12 | -------------------------------------------------------------------------------- /__tests__/nodes/li.js: -------------------------------------------------------------------------------- 1 | import Wonders from '../../'; 2 | import { renderTree } from '../../lib/render'; 3 | 4 | describe('
  • ', () => { 5 | it('should render an
  • element', () => { 6 | const node =
  • foobar
  • ; 7 | const output = renderTree(node); 8 | expect(output).toEqual('\t\u2022foobar\n'); 9 | }); 10 | }); 11 | 12 | 13 | -------------------------------------------------------------------------------- /__tests__/nodes/u.js: -------------------------------------------------------------------------------- 1 | import Wonders from '../../'; 2 | import { renderTree } from '../../lib/render'; 3 | 4 | describe('', () => { 5 | it('should render a element', () => { 6 | const node = foobar; 7 | const output = renderTree(node); 8 | expect(output).toEqual('\u001b[4mfoobar\u001b[0m'); 9 | }); 10 | }); 11 | 12 | 13 | -------------------------------------------------------------------------------- /__tests__/nodes/ul.js: -------------------------------------------------------------------------------- 1 | import Wonders from '../../'; 2 | import { renderTree } from '../../lib/render'; 3 | 4 | describe('
      ', () => { 5 | it('should render a
        element', () => { 6 | const node =
        • foobar
        ; 7 | const output = renderTree(node); 8 | expect(output).toEqual('\n\t\u2022foobar\n'); 9 | }); 10 | }); 11 | 12 | -------------------------------------------------------------------------------- /__tests__/nodes/cite.js: -------------------------------------------------------------------------------- 1 | import Wonders from '../../'; 2 | import { renderTree } from '../../lib/render'; 3 | 4 | describe('', () => { 5 | it('should render a element', () => { 6 | const node = foobar; 7 | const output = renderTree(node); 8 | expect(output).toEqual('\u001b[3mfoobar\u001b[0m'); 9 | }); 10 | }); 11 | 12 | -------------------------------------------------------------------------------- /__tests__/nodes/strong.js: -------------------------------------------------------------------------------- 1 | import Wonders from '../../'; 2 | import { renderTree } from '../../lib/render'; 3 | 4 | describe('', () => { 5 | it('should render a element', () => { 6 | const node = foobar; 7 | const output = renderTree(node); 8 | expect(output).toEqual('\u001b[1mfoobar\u001b[0m'); 9 | }); 10 | }); 11 | 12 | 13 | -------------------------------------------------------------------------------- /lib/vnode.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Creates and return a virtual node 3 | * 4 | * @param {string|Function} nodeName 5 | * @param {Object} props 6 | * @param {Array} children 7 | * @return {VNode} 8 | */ 9 | module.exports = function VNode(nodeName, props, children) { 10 | this.nodeName = nodeName; 11 | 12 | this.props = props || {}; 13 | 14 | this.children = children || []; 15 | }; 16 | -------------------------------------------------------------------------------- /lib/nodes/span.js: -------------------------------------------------------------------------------- 1 | const PREFIX = ''; 2 | const SUFFIX = ''; 3 | 4 | module.exports = (props, children) => { 5 | const tc = typeof children; 6 | let c = children; 7 | 8 | if (tc === 'number' || tc === 'boolean') { 9 | c = c.toString(); 10 | } 11 | 12 | if (typeof c === 'string') { 13 | return PREFIX + c + SUFFIX; 14 | } 15 | 16 | return [PREFIX, c, SUFFIX]; 17 | }; 18 | -------------------------------------------------------------------------------- /lib/nodes/ul.js: -------------------------------------------------------------------------------- 1 | const PREFIX = '\n'; 2 | const SUFFIX = ''; 3 | 4 | module.exports = (props, children) => { 5 | const tc = typeof children; 6 | let c = children; 7 | 8 | if (tc === 'number' || tc === 'boolean') { 9 | c = c.toString(); 10 | } 11 | 12 | if (typeof c === 'string') { 13 | return PREFIX + c + SUFFIX; 14 | } 15 | 16 | return [PREFIX, c, SUFFIX]; 17 | }; 18 | -------------------------------------------------------------------------------- /lib/nodes/p.js: -------------------------------------------------------------------------------- 1 | const PREFIX = '\n'; 2 | const SUFFIX = '\n'; 3 | 4 | module.exports = (props, children) => { 5 | const tc = typeof children; 6 | let c = children; 7 | 8 | if (tc === 'number' || tc === 'boolean') { 9 | c = c.toString(); 10 | } 11 | 12 | if (typeof c === 'string') { 13 | return PREFIX + c + SUFFIX; 14 | } 15 | 16 | return [PREFIX, c, SUFFIX]; 17 | }; 18 | -------------------------------------------------------------------------------- /lib/nodes/li.js: -------------------------------------------------------------------------------- 1 | const PREFIX = '\t\u2022'; 2 | const SUFFIX = '\n'; 3 | 4 | module.exports = (props, children) => { 5 | const tc = typeof children; 6 | let c = children; 7 | 8 | if (tc === 'number' || tc === 'boolean') { 9 | c = c.toString(); 10 | } 11 | 12 | if (typeof c === 'string') { 13 | return PREFIX + c + SUFFIX; 14 | } 15 | 16 | return [PREFIX, c, SUFFIX]; 17 | }; 18 | -------------------------------------------------------------------------------- /lib/nodes/b.js: -------------------------------------------------------------------------------- 1 | const PREFIX = '\u001b[1m'; 2 | const SUFFIX = '\u001b[0m'; 3 | 4 | module.exports = (props, children) => { 5 | const tc = typeof children; 6 | let c = children; 7 | 8 | if (tc === 'number' || tc === 'boolean') { 9 | c = c.toString(); 10 | } 11 | 12 | if (typeof c === 'string') { 13 | return PREFIX + c + SUFFIX; 14 | } 15 | 16 | return [PREFIX, c, SUFFIX]; 17 | }; 18 | -------------------------------------------------------------------------------- /lib/nodes/i.js: -------------------------------------------------------------------------------- 1 | const PREFIX = '\u001b[3m'; 2 | const SUFFIX = '\u001b[0m'; 3 | 4 | module.exports = (props, children) => { 5 | const tc = typeof children; 6 | let c = children; 7 | 8 | if (tc === 'number' || tc === 'boolean') { 9 | c = c.toString(); 10 | } 11 | 12 | if (typeof c === 'string') { 13 | return PREFIX + c + SUFFIX; 14 | } 15 | 16 | return [PREFIX, c, SUFFIX]; 17 | }; 18 | -------------------------------------------------------------------------------- /lib/nodes/u.js: -------------------------------------------------------------------------------- 1 | const PREFIX = '\u001b[4m'; 2 | const SUFFIX = '\u001b[0m'; 3 | 4 | module.exports = (props, children) => { 5 | const tc = typeof children; 6 | let c = children; 7 | 8 | if (tc === 'number' || tc === 'boolean') { 9 | c = c.toString(); 10 | } 11 | 12 | if (typeof c === 'string') { 13 | return PREFIX + c + SUFFIX; 14 | } 15 | 16 | return [PREFIX, c, SUFFIX]; 17 | }; 18 | -------------------------------------------------------------------------------- /lib/nodes/cite.js: -------------------------------------------------------------------------------- 1 | const PREFIX = '\u001b[3m'; 2 | const SUFFIX = '\u001b[0m'; 3 | 4 | module.exports = (props, children) => { 5 | const tc = typeof children; 6 | let c = children; 7 | 8 | if (tc === 'number' || tc === 'boolean') { 9 | c = c.toString(); 10 | } 11 | 12 | if (typeof c === 'string') { 13 | return PREFIX + c + SUFFIX; 14 | } 15 | 16 | return [PREFIX, c, SUFFIX]; 17 | }; 18 | -------------------------------------------------------------------------------- /lib/nodes/em.js: -------------------------------------------------------------------------------- 1 | const PREFIX = '\u001b[3m'; 2 | const SUFFIX = '\u001b[0m'; 3 | 4 | module.exports = (props, children) => { 5 | const tc = typeof children; 6 | let c = children; 7 | 8 | if (tc === 'number' || tc === 'boolean') { 9 | c = c.toString(); 10 | } 11 | 12 | if (typeof c === 'string') { 13 | return PREFIX + c + SUFFIX; 14 | } 15 | 16 | return [PREFIX, c, SUFFIX]; 17 | }; 18 | -------------------------------------------------------------------------------- /lib/nodes/strong.js: -------------------------------------------------------------------------------- 1 | const PREFIX = '\u001b[1m'; 2 | const SUFFIX = '\u001b[0m'; 3 | 4 | module.exports = (props, children) => { 5 | const tc = typeof children; 6 | let c = children; 7 | 8 | if (tc === 'number' || tc === 'boolean') { 9 | c = c.toString(); 10 | } 11 | 12 | if (typeof c === 'string') { 13 | return PREFIX + c + SUFFIX; 14 | } 15 | 16 | return [PREFIX, c, SUFFIX]; 17 | }; 18 | -------------------------------------------------------------------------------- /__tests__/nodes/version.js: -------------------------------------------------------------------------------- 1 | import Wonders from '../../'; 2 | import { renderTree } from '../../lib/render'; 3 | 4 | describe('', () => { 5 | it('should render a element', () => { 6 | const node = ; 7 | const output = renderTree(node); 8 | expect(output).toEqual('\nName: wonders\nVersion: 1.0.0'); 9 | }); 10 | }); 11 | -------------------------------------------------------------------------------- /lib/component.js: -------------------------------------------------------------------------------- 1 | const VNode = require('./vnode'); 2 | const { extend } = require('./utils'); 3 | 4 | /** 5 | * JSX transformation function to create a virtual node. 6 | * 7 | * @param {String} nodeName 8 | * @param {Object} props 9 | * @param {Array} children - List of children nodes 10 | * @return {VNode} 11 | */ 12 | function Component(nodeName, props, ...children) { 13 | return new VNode(nodeName, props, children); 14 | } 15 | 16 | extend(Component.prototype, { 17 | isClassComponent: true, 18 | 19 | render() {}, 20 | }); 21 | 22 | module.exports = Component; 23 | -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- 1 | const extend = (base, props) => { 2 | for (let key in props) { 3 | if (props.hasOwnProperty(key)) { 4 | base[key] = props[key]; 5 | } 6 | } 7 | return base; 8 | }; 9 | 10 | const flatten = arr => { 11 | let newArr = []; 12 | for (let i = 0; i < arr.length; i++) { 13 | if (Array.isArray(arr[i])) { 14 | newArr = newArr.concat(flatten(arr[i])); 15 | } else { 16 | newArr.push(arr[i]); 17 | } 18 | } 19 | return newArr; 20 | }; 21 | 22 | const isClass = vnode => { 23 | return Boolean(vnode.prototype) && Boolean(vnode.prototype.isClassComponent); 24 | }; 25 | 26 | module.exports = { 27 | extend, 28 | flatten, 29 | isClass, 30 | }; 31 | -------------------------------------------------------------------------------- /lib/nodes/program.js: -------------------------------------------------------------------------------- 1 | const command = require('./command'); 2 | 3 | /** 4 | * Renders a program 5 | * 6 | * Filters and return the first matching command node. 7 | * 8 | * @param {Object} props 9 | * @param {Array} children - List of children nodes 10 | * @param {Object} args - CLI args 11 | * @return {Array} - The rendered command 12 | */ 13 | module.exports = (props, children, args) => { 14 | const cmd = args._ && args._.length && args._[0]; 15 | 16 | const matches = children.filter(c => c.props.name === cmd); 17 | 18 | if (matches.length) { 19 | return matches.map( 20 | match => command(match.props, match.children, args) 21 | ); 22 | } 23 | 24 | throw new Error(`Command \`${cmd}\` not found.`); 25 | }; 26 | -------------------------------------------------------------------------------- /lib/nodes/index.js: -------------------------------------------------------------------------------- 1 | const command = require('./command'); 2 | const help = require('./help'); 3 | const program = require('./program'); 4 | const version = require('./version'); 5 | 6 | // COM nodes 7 | const b = require('./b'); 8 | const br = require('./br'); 9 | const cite = require('./cite'); 10 | const div = require('./div'); 11 | const em = require('./em'); 12 | const i = require('./i'); 13 | const li = require('./li'); 14 | const p = require('./p'); 15 | const span = require('./span'); 16 | const strong = require('./strong'); 17 | const u = require('./u'); 18 | const ul = require('./ul'); 19 | 20 | module.exports = { 21 | command, 22 | help, 23 | program, 24 | version, 25 | 26 | // COM nodes 27 | b, 28 | br, 29 | cite, 30 | div, 31 | em, 32 | i, 33 | li, 34 | p, 35 | span, 36 | strong, 37 | u, 38 | ul, 39 | }; 40 | -------------------------------------------------------------------------------- /__tests__/nodes/div.js: -------------------------------------------------------------------------------- 1 | import Wonders from '../../'; 2 | import { renderTree } from '../../lib/render'; 3 | 4 | describe('
        ', () => { 5 | it('should render a
        element', () => { 6 | const node =
        foobar
        ; 7 | const output = renderTree(node); 8 | expect(output).toEqual('\nfoobar'); 9 | }); 10 | 11 | it('should be empty if
        is empty', () => { 12 | const node =
        ; 13 | const output = renderTree(node); 14 | expect(output).toEqual(''); 15 | }); 16 | 17 | it('should add prefix newlines on text nodes', () => { 18 | const node = ( 19 |
        20 |
        21 | Text 1 22 |
        Text 2
        23 |
        24 | ); 25 | const output = renderTree(node); 26 | expect(output).toEqual('\nText 1\nText 2'); 27 | }); 28 | }); 29 | -------------------------------------------------------------------------------- /lib/nodes/div.js: -------------------------------------------------------------------------------- 1 | const PREFIX = '\n'; 2 | const SUFFIX = ''; 3 | 4 | module.exports = (props, children) => { 5 | const tc = typeof children; 6 | let c = children; 7 | 8 | if (tc === 'number' || tc === 'boolean') { 9 | c = c.toString(); 10 | } 11 | 12 | if (typeof c === 'string') { 13 | return PREFIX + c + SUFFIX; 14 | } 15 | 16 | // If a node has children: For each literal node, add a prefix and suffix. 17 | if (Array.isArray(c) && c.length > 0) { 18 | return c.map(node => { 19 | const nt = typeof node; 20 | let n = node; 21 | 22 | if (nt === 'number' || nt === 'boolean') { 23 | n = n.toString(); 24 | } 25 | 26 | if (typeof n === 'string') { 27 | return PREFIX + n + SUFFIX; 28 | } 29 | 30 | return n; 31 | }); 32 | } 33 | 34 | // When there is no child, simply return. 35 | return [c]; 36 | }; 37 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "wonders", 3 | "version": "0.3.3", 4 | "description": "Build CLI apps with React", 5 | "main": "lib/index.js", 6 | "author": "Vu Tran ", 7 | "license": "MIT", 8 | "files": [ 9 | "lib" 10 | ], 11 | "scripts": { 12 | "lint": "prettier --single-quote --trailing-comma=es5 --print-width=90 --tab-width=4 --write 'lib/*.js' 'index.js'", 13 | "precommit": "npm run lint", 14 | "start": "./cli.js", 15 | "test": "jest --verbose --coverage" 16 | }, 17 | "dependencies": { 18 | "coveralls": "^2.12.0", 19 | "minimist": "^1.2.0" 20 | }, 21 | "repository": { 22 | "type": "git", 23 | "url": "https://github.com/vutran/wonders" 24 | }, 25 | "devDependencies": { 26 | "babel-plugin-transform-async-to-generator": "^6.22.0", 27 | "babel-polyfill": "^6.23.0", 28 | "babel-preset-es2015": "^6.24.0", 29 | "babel-preset-wonders": "^0.1.0", 30 | "husky": "^0.13.3", 31 | "jest": "^19.0.2", 32 | "prettier": "^0.22.0" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Vu Tran 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /__tests__/utils.js: -------------------------------------------------------------------------------- 1 | const { extend, flatten } = require('../lib/utils'); 2 | 3 | describe('utils', () => { 4 | it('should extend an object', () => { 5 | const a = { foo: 'foo' }; 6 | const b = { bar: 'bar' }; 7 | expect(extend(a, b)) 8 | .toEqual({ foo: 'foo', bar: 'bar' }); 9 | }); 10 | 11 | it('should flatten a multi-dimensional array', () => { 12 | const a = [1, [2, 3], [[4, 5], 6], [[[7, 8], [], 9], 10], 11]; 13 | expect(flatten(a)) 14 | .toEqual([1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]); 15 | }); 16 | 17 | it('should flatten another multi-dimensional array', () => { 18 | const a = ['foo', ['bar'], [['john', 'smith']], null, 2, true, false]; 19 | expect(flatten(a)) 20 | .toEqual(['foo', 'bar', 'john', 'smith', null, 2, true, false]); 21 | }); 22 | 23 | it('should flatten a deeply nested array', () => { 24 | const a = [ 25 | 1, 26 | [ 2 ], 27 | [ [ 3 ] ], 28 | [ [ [ 4 ] ] ], 29 | 5, 30 | [ [ 6 ] ], 31 | ]; 32 | expect(flatten(a)) 33 | .toEqual([1, 2, 3, 4, 5, 6]); 34 | }); 35 | }); 36 | -------------------------------------------------------------------------------- /lib/nodes/command.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Renders a command node. 3 | * 4 | * Reserved keywords 5 | * - name: string 6 | * - description: string 7 | * - onAction: function(args, options) 8 | * 9 | * @param {Object} props 10 | * @param {Array} children - List of children nodes 11 | * @param {Object} args - CLI args 12 | * @return {String|Promise|Array} - The rendered command 13 | */ 14 | module.exports = (props, children, args) => { 15 | const ct = typeof children; 16 | let c = children; 17 | 18 | if (ct === 'number' || ct === 'boolean') { 19 | c = c.toString(); 20 | } 21 | 22 | if (typeof c === 'string') { 23 | return c; 24 | } 25 | 26 | if (Array.isArray(c) && c.length) { 27 | return c; 28 | } 29 | 30 | // process action if it is available 31 | if (props.onAction) { 32 | const options = {}; 33 | for (let key in args) { 34 | if (key === '_') { 35 | continue; 36 | } 37 | options[key] = args[key]; 38 | } 39 | 40 | return props.onAction.call(null, args._, options); 41 | } 42 | 43 | throw new Error('Missing action in command.'); 44 | }; 45 | -------------------------------------------------------------------------------- /lib/nodes/help.js: -------------------------------------------------------------------------------- 1 | const path = require('path'); 2 | const { NEWLINE, TAB } = require('../constants'); 3 | const component = require('../component'); 4 | 5 | module.exports = (props, children) => { 6 | const cmds = children.filter(child => child.nodeName === 'command'); 7 | 8 | cmds.push( 9 | component('version', { 10 | name: 'version', 11 | description: 'Display the version', 12 | }) 13 | ); 14 | 15 | let str = NEWLINE; 16 | 17 | str += 'Usage:' + NEWLINE; 18 | str += NEWLINE + TAB + path.basename(props.parse[1]) + ' [command] [options]' + NEWLINE; 19 | 20 | str += NEWLINE; 21 | str += 'Commands:' + NEWLINE; 22 | 23 | // get the largest name size 24 | let maxLen = 0; 25 | for (let i = 0; i < cmds.length; i++) { 26 | if (cmds[i].props.name.length >= maxLen) { 27 | maxLen = cmds[i].props.name.length; 28 | } 29 | } 30 | 31 | cmds.forEach(cmd => { 32 | str += TAB + cmd.props.name; 33 | str += ' '.repeat(maxLen - cmd.props.name.length); 34 | str += TAB + TAB; 35 | str += cmd.props.description; 36 | str += NEWLINE; 37 | }); 38 | 39 | return str; 40 | }; 41 | -------------------------------------------------------------------------------- /__tests__/nodes/command.js: -------------------------------------------------------------------------------- 1 | import Wonders from '../../'; 2 | import { renderTree } from '../../lib/render'; 3 | 4 | jest.mock('minimist'); 5 | 6 | describe('', () => { 7 | it('should render a node.', () => { 8 | const node = foobar; 9 | const output = renderTree(node); 10 | expect(output).toEqual('foobar'); 11 | }); 12 | 13 | it('should render a node with multiple children.', () => { 14 | const node = {['foo', 'bar']}; 15 | const output = renderTree(node); 16 | expect(output).toEqual('foobar'); 17 | }); 18 | 19 | it('should throw a missing action exception.', () => { 20 | const node = ; 21 | const render = () => renderTree(node); 22 | expect(render).toThrowError('Missing action in command.'); 23 | }); 24 | 25 | it('should render based on the `onAction` prop.', () => { 26 | const minimist = require('minimist'); 27 | minimist.__setReturnValue({ 28 | _: [ 29 | 'foo', 30 | ], 31 | }); 32 | const foo = jest.fn(() => 'hi foo'); 33 | const bar = jest.fn(() => 'hi bar'); 34 | const node = ( 35 | 36 | 37 | 38 | 39 | ); 40 | const output = renderTree(node); 41 | expect(foo).toHaveBeenCalled(); 42 | expect(bar).not.toHaveBeenCalled(); 43 | expect(output).toBe('hi foo'); 44 | }); 45 | }); 46 | -------------------------------------------------------------------------------- /__tests__/component.js: -------------------------------------------------------------------------------- 1 | import Wonders from '../'; 2 | 3 | describe('component', () => { 4 | it('should create a pure functional command.', () => { 5 | const cmd = (props) => `Hello, ${props.name}!`; 6 | const element = cmd({ name: 'Vu' }); 7 | expect(element) 8 | .toBe('Hello, Vu!'); 9 | }); 10 | 11 | it('should create a command with/without JSX.', () => { 12 | const element = Wonders.Component('command', null, 'Hello, world!'); 13 | const jsxElement = Hello, world!; 14 | expect(element).toEqual(jsxElement); 15 | expect(element) 16 | .toEqual({ 17 | nodeName: 'command', 18 | props: {}, 19 | children: [ 20 | 'Hello, world!', 21 | ], 22 | }); 23 | }); 24 | 25 | it('should create a command with props', () => { 26 | const element = Beep!; 27 | expect(element) 28 | .toEqual({ 29 | nodeName: 'command', 30 | props: { 31 | name: 'foo', 32 | description: 'This is a sample description.', 33 | }, 34 | children: [ 35 | 'Beep!', 36 | ], 37 | }); 38 | }); 39 | 40 | it('should create a program with multiple commands.', () => { 41 | const Program = ( 42 | 43 | This! 44 | That! 45 | 46 | ); 47 | expect(Program) 48 | .toEqual({ 49 | nodeName: 'program', 50 | props: {}, 51 | children: [ 52 | { 53 | nodeName: 'command', 54 | props: { 55 | name: 'this', 56 | }, 57 | children: [ 58 | 'This!', 59 | ], 60 | }, 61 | { 62 | nodeName: 'command', 63 | props: { 64 | name: 'that', 65 | }, 66 | children: [ 67 | 'That!', 68 | ], 69 | }, 70 | ], 71 | }); 72 | }); 73 | 74 | it('should create a nested container.', () => { 75 | const Program = ( 76 |

        77 | foo 78 | bar 79 |

        80 | ); 81 | expect(Program) 82 | .toEqual({ 83 | nodeName: 'p', 84 | props: {}, 85 | children: [ 86 | { 87 | nodeName: 'em', 88 | props: {}, 89 | children: ['foo'], 90 | }, 91 | { 92 | nodeName: 'em', 93 | props: {}, 94 | children: ['bar'], 95 | }, 96 | ], 97 | }); 98 | }); 99 | }); 100 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Wonders 2 | 3 | > A JavaScript library for building command-line applications with JSX. 4 | 5 | **NOTE:** This framework is currently in its initial stage of development and is still highly experimental. Not all features have been implemented yet so please feel free to help contribute towards features, bugs, and documentations where necessary. 6 | 7 | ## Install 8 | 9 | Install via npm or [yarn](https://yarnpkg.com) 10 | 11 | ```bash 12 | $ npm i -S wonders 13 | 14 | # or with yarn: 15 | 16 | $ yarn add wonders 17 | ``` 18 | 19 | ## Setup 20 | 21 | Import `Wonders` in your files. 22 | 23 | ```js 24 | import Wonders from 'wonders'; 25 | 26 | // Declare the JSX pragma 27 | /** @jsx Wonders.Component */ 28 | ``` 29 | 30 | Instead of declaring the JSX pragma in each file, it is recommended to install [`babel-preset-wonders`](https://www.npmjs.com/package/babel-preset-wonders) which includes all the necessary babel presets and plugins to get you started with `Wonders`. 31 | 32 | ``` 33 | { 34 | "presets": ["wonders"] 35 | } 36 | ``` 37 | 38 | ## Program Layout 39 | 40 | A simple `` will consist of multiple ``. These elements are handled internally by the renderer. 41 | 42 | A simple structure would look something like this: 43 | 44 | ```jsx 45 | const App = ( 46 | 47 | Foo! 48 | Bar! 49 | Baz! 50 | 51 | ); 52 | ``` 53 | 54 | The example above will only render and execute the ``. 55 | 56 | ```bash 57 | $ ./cli.js foo 58 | 59 | # -> Foo! 60 | ``` 61 | 62 | ## Creating Your First Command Line Application 63 | 64 | `Wonders` can render to any stream. For this example, we will be writing to `process.stdout` so our command-line application can work. 65 | 66 | We will need to pass the argument list (from the user input) into the `` element. 67 | 68 | ```jsx 69 | #!/usr/bin/env node 70 | 71 | // file: ./cli.js 72 | 73 | import Wonders from 'wonders'; 74 | 75 | const App = ( 76 | 77 | 78 | Hello, World! 79 | 80 | 81 | ); 82 | 83 | Wonders.render(, process.stdout); 84 | ``` 85 | 86 | Running the script will result with: 87 | 88 | ``` 89 | $ ./cli.js hello 90 | 91 | # -> Hello, World! 92 | ``` 93 | 94 | ## Asynchronous Actions 95 | 96 | `Wonders` supports for rendering output from asynchronous task. Suppose you want to write a script that would deploy something to a remote server. A simple example can be written like so: 97 | 98 | ```js 99 | const deploy = () => { 100 | return new Promise((resolve) => { 101 | // perform remote server deployment 102 | setTimeout(() => { 103 | // resolve with a message once finished. 104 | resolve('Deployed!'); 105 | }, 5000); 106 | }); 107 | }; 108 | 109 | const App = ( 110 | 111 | 112 | 113 | ); 114 | 115 | Wonders.render(, process.stdout); 116 | ``` 117 | 118 | ```bash 119 | $ ./cli.js deploy 120 | 121 | # .... waits 5 seconds 122 | # -> Deployed! 123 | ``` 124 | 125 | ## Functional and Class Components 126 | 127 | `Wonders` follow the same patterns as [`React`](https://github.com/facebook/react) when building reusable components for your ``. 128 | 129 | The simplest way to write a component is to write a regular function. 130 | 131 | ```js 132 | function beep() { 133 | return 'Beep!'; 134 | } 135 | ``` 136 | 137 | Or as an ES6 class: 138 | 139 | ```js 140 | class Boop extends Wonders.Component { 141 | render() { 142 | return

        Boop!

        ; 143 | } 144 | } 145 | ``` 146 | 147 | You can feel free to compose your components and stylize your output as necessary. 148 | 149 | ```js 150 | import Wonders from 'wonders'; 151 | 152 | export function stylize() { 153 | return ( 154 |
        155 |

        This is bold text.

        156 |

        This is italicized text.

        157 |

        This is underlined text.

        158 |
        159 | ); 160 | } 161 | ``` 162 | 163 | ## Demo Application 164 | 165 | See the codebase for a working demo application below: 166 | 167 | [https://github.com/vutran/wonders-demo](https://github.com/vutran/wonders-demo) 168 | 169 | ## LICENSE 170 | 171 | MIT © [Vu Tran](https://github.com/vutran/) 172 | -------------------------------------------------------------------------------- /__tests__/render.js: -------------------------------------------------------------------------------- 1 | import { Writable } from 'stream'; 2 | import Wonders from '../'; 3 | import { renderTree } from '../lib/render'; 4 | 5 | jest.mock('minimist'); 6 | 7 | describe('render', () => { 8 | const argv = ['/usr/local/bin/node', __filename]; 9 | const minimist = require('minimist'); 10 | const echo = (args, options) => new Promise((resolve) => { 11 | setTimeout(() => resolve(`Echo: ${options.name}`), 100); 12 | }); 13 | const deploy = () => new Promise((resolve) => { 14 | setTimeout(() => resolve('Deployed!'), 100); 15 | }); 16 | const Program = () => ( 17 | 18 | 19 | 20 | Beep! 21 | Boop! 22 | {1} 23 | {true} 24 | 25 | ); 26 | 27 | it('should run the beep command.', async () => { 28 | minimist.__setReturnValue({ 29 | _: [ 30 | 'beep', 31 | ], 32 | }); 33 | 34 | const s = new Writable(); 35 | s.write = jest.fn(); 36 | 37 | 38 | await Wonders.render(, s); 39 | expect(s.write).toHaveBeenCalledWith('Beep!'); 40 | }); 41 | 42 | it('should run the boop command.', async () => { 43 | minimist.__setReturnValue({ 44 | _: [ 45 | 'boop', 46 | ], 47 | }); 48 | 49 | const s = new Writable(); 50 | s.write = jest.fn(); 51 | 52 | await Wonders.render(, s); 53 | expect(s.write).toHaveBeenCalledWith('Boop!'); 54 | }); 55 | 56 | it('should run the num command.', async () => { 57 | minimist.__setReturnValue({ 58 | _: [ 59 | 'num', 60 | ], 61 | }); 62 | 63 | const s = new Writable(); 64 | s.write = jest.fn(); 65 | 66 | await Wonders.render(, s); 67 | expect(s.write).toHaveBeenCalledWith('1'); 68 | }); 69 | 70 | it('should run the bool command.', async () => { 71 | minimist.__setReturnValue({ 72 | _: [ 73 | 'bool', 74 | ], 75 | }); 76 | 77 | const s = new Writable(); 78 | s.write = jest.fn(); 79 | 80 | await Wonders.render(, s); 81 | expect(s.write).toHaveBeenCalledWith('true'); 82 | }); 83 | 84 | it('should run the deploy command.', async () => { 85 | minimist.__setReturnValue({ 86 | _: [ 87 | 'deploy', 88 | ], 89 | }); 90 | 91 | const s = new Writable(); 92 | s.write = jest.fn(); 93 | 94 | await Wonders.render(, s); 95 | expect(s.write).toHaveBeenCalledWith('Deployed!'); 96 | }); 97 | 98 | it('should echo "foo".', async () => { 99 | minimist.__setReturnValue({ 100 | _: [ 101 | 'echo', 102 | ], 103 | name: 'foo', 104 | }); 105 | 106 | const s = new Writable(); 107 | s.write = jest.fn(); 108 | 109 | await Wonders.render(, s); 110 | expect(s.write).toHaveBeenCalledWith('Echo: foo'); 111 | }); 112 | 113 | it('should echo "hello world".', async () => { 114 | minimist.__setReturnValue({ 115 | _: [ 116 | 'echo', 117 | ], 118 | name: 'hello world', 119 | }); 120 | 121 | const s = new Writable(); 122 | s.write = jest.fn(); 123 | 124 | await Wonders.render(, s); 125 | expect(s.write).toHaveBeenCalledWith('Echo: hello world'); 126 | }); 127 | 128 | it('should render foobar in bold and italics.', () => { 129 | const node = foobar; 130 | expect(renderTree(node)) 131 | .toEqual('\u001b[1m\u001b[3mfoobar\u001b[0m\u001b[0m'); 132 | }); 133 | 134 | it('should render foobar in a paragraph.', () => { 135 | const node =

        foobar

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