├── saul_snapshots ├── getFoo-gets-foo.snap ├── getSnapshotFile-gets-file.snap └── Thumbnail-can-render.snap ├── .flowconfig ├── .babelrc ├── .saulrc ├── src ├── testcase.js ├── parse.test.js ├── file.js ├── engines │ ├── is-not.js │ ├── contains.js │ ├── throws.js │ ├── deep-equals.js │ ├── equals.js │ ├── expect.js │ └── matches-snapshot.js ├── types.js ├── index.js ├── spies.js ├── config.js ├── examples │ └── react-examples.js ├── parse.js ├── execute.js ├── parse.test.json └── organize.js ├── .vscode └── settings.json ├── circle.yml ├── Under-the-hood.md ├── API.md ├── .npmignore ├── .gitignore ├── package.json ├── README.md ├── .eslintrc └── yarn.lock /saul_snapshots/getFoo-gets-foo.snap: -------------------------------------------------------------------------------- 1 | "bar" -------------------------------------------------------------------------------- /saul_snapshots/getSnapshotFile-gets-file.snap: -------------------------------------------------------------------------------- 1 | "tada-foo.snap" -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | 3 | [include] 4 | 5 | [libs] 6 | 7 | [options] 8 | -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | "env", 4 | "flow", 5 | "react" 6 | ] 7 | } -------------------------------------------------------------------------------- /.saulrc: -------------------------------------------------------------------------------- 1 | { 2 | "fileGlob": "src/**/*.js", 3 | "customEnginesDir": "./src/custom-saul-engines" 4 | } -------------------------------------------------------------------------------- /src/testcase.js: -------------------------------------------------------------------------------- 1 | export const suite: (description: string, fn: () => void) => void = describe; // eslint-disable-line no-undef 2 | 3 | export const test: (description: string, fn: () => void) => void = it; // eslint-disable-line no-undef 4 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | // Place your settings in this file to overwrite default and user settings. 2 | { 3 | "search.exclude": { 4 | "**/node_modules": true, 5 | "**/bower_components": true, 6 | "**/lib": true 7 | }, 8 | "javascript.validate.enable": false, 9 | "editor.formatOnSave": true 10 | } -------------------------------------------------------------------------------- /src/parse.test.js: -------------------------------------------------------------------------------- 1 | import { composeParams } from './parse'; 2 | import { expect } from 'chai'; 3 | import tests from './parse.test.json'; 4 | 5 | describe('composeParams', () => { 6 | tests.forEach(test => 7 | it(`with test def ${test.testDefinition}`, () => expect(composeParams(test.testDefinition)).to.eql([test.params])) 8 | ); 9 | }); 10 | -------------------------------------------------------------------------------- /src/file.js: -------------------------------------------------------------------------------- 1 | import glob from 'glob'; 2 | import fs from 'fs'; 3 | import process from 'process'; 4 | import path from 'path'; 5 | 6 | const isFile = filePath => fs.lstatSync(filePath).isFile(); 7 | 8 | const toFullPath = filePath => path.join(process.cwd(), filePath); 9 | 10 | export const getTestableFiles = (globString: string): string[] => 11 | glob.sync(globString).filter(isFile).map(toFullPath); 12 | -------------------------------------------------------------------------------- /src/engines/is-not.js: -------------------------------------------------------------------------------- 1 | import { expect } from 'chai'; 2 | 3 | /* istanbul ignore next */ 4 | export default ( 5 | testDescription: string, 6 | func: Function, 7 | argsArray: Array, 8 | expected: string, 9 | test: (desc: string, fn: () => void) => void 10 | ) => { 11 | test(testDescription, () => { 12 | const actual = func.apply(null, argsArray); 13 | expect(actual).to.not.equal(expected); 14 | }); 15 | }; 16 | -------------------------------------------------------------------------------- /src/engines/contains.js: -------------------------------------------------------------------------------- 1 | import { expect } from 'chai'; 2 | 3 | /* istanbul ignore next */ 4 | export default ( 5 | testDescription: string, 6 | func: Function, 7 | argsArray: Array, 8 | expected: string, 9 | test: (desc: string, fn: () => void) => void 10 | ) => { 11 | test(testDescription, () => { 12 | const actual = func.apply(null, argsArray); 13 | expect(actual).to.contain(eval(`${expected}`)); // eslint-disable-line no-eval 14 | }); 15 | }; 16 | -------------------------------------------------------------------------------- /src/engines/throws.js: -------------------------------------------------------------------------------- 1 | import { expect } from 'chai'; 2 | 3 | /* istanbul ignore next */ 4 | export default ( 5 | testDescription: string, 6 | func: Function, 7 | argsArray: Array, 8 | expected: string, 9 | test: (desc: string, fn: () => void) => void 10 | ) => { 11 | test(testDescription, () => { 12 | const actual = () => func.apply(null, argsArray); 13 | 14 | const shouldThrow = eval(`${expected}`); // eslint-disable-line no-eval 15 | 16 | shouldThrow ? expect(actual).to.throw() : expect(actual).to.not.throw(); 17 | }); 18 | }; 19 | -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- 1 | ## Customize the test machine 2 | machine: 3 | 4 | timezone: 5 | Australia/Melbourne # Set the timezone 6 | 7 | # Add some environment variables 8 | environment: 9 | CIRCLE_ENV: test 10 | 11 | ## Customize dependencies 12 | dependencies: 13 | pre: 14 | - echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc 15 | override: 16 | - yarn 17 | 18 | ## Customize test commands 19 | test: 20 | override: 21 | - yarn test 22 | 23 | deployment: 24 | npm: 25 | tag: /v[0-9]+(\.[0-9]+)*/ 26 | commands: 27 | - npm publish 28 | -------------------------------------------------------------------------------- /src/types.js: -------------------------------------------------------------------------------- 1 | export type TestParams = { 2 | args: string, 3 | engineName: string, 4 | funcName: string, 5 | output: string, 6 | testDescription: string 7 | }; 8 | 9 | export type ExecutableParams = { 10 | function: Function, 11 | testDescription: string, 12 | args: Array, 13 | engine: ( 14 | testDescription: string, 15 | component: Function, 16 | argsArray: Array, 17 | expected: string, 18 | test: (desc: string, fn: () => void) => void, 19 | context: { 20 | spies: any[] // todo: 21 | } 22 | ) => void, 23 | output: string 24 | }; 25 | -------------------------------------------------------------------------------- /saul_snapshots/Thumbnail-can-render.snap: -------------------------------------------------------------------------------- 1 | {"type":"div","key":null,"ref":null,"props":{"children":[{"type":"div","key":null,"ref":null,"props":{"style":{"backgroundImage":"url(\"undefined\")"},"children":[{"type":"img","key":null,"ref":null,"props":{"src":"url(\"undefined\")","alt":""},"_owner":null,"_store":{}},{"type":"div","key":null,"ref":null,"props":{"id":"foo","children":"New"},"_owner":null,"_store":{}},{"type":"div","key":null,"ref":null,"props":{"children":["Auction ",null]},"_owner":null,"_store":{}}]},"_owner":null,"_store":{}},{"type":"div","key":null,"ref":null,"props":{},"_owner":null,"_store":{}}]},"_owner":null,"_store":{}} -------------------------------------------------------------------------------- /src/engines/deep-equals.js: -------------------------------------------------------------------------------- 1 | import { expect } from 'chai'; 2 | 3 | /* istanbul ignore next */ 4 | export default ( 5 | testDescription: string, 6 | func: Function, 7 | argsArray: Array, 8 | expected: string, 9 | test: (desc: string, fn: () => void) => void 10 | ) => { 11 | console.warn( 12 | 'Warning: ~equals is being deprecated in favor of ~equals. Please update your references as this will be removed in a future release' 13 | ); 14 | 15 | test(testDescription, () => { 16 | const actual = func.apply(null, argsArray); 17 | // must eval ( var ) it because eval({foo: 'bar'}) goes bar 18 | expect(actual).to.eql(eval(`var trouble = ${expected}; trouble`)); // eslint-disable-line no-eval 19 | }); 20 | }; 21 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | import _ from 'lodash'; 3 | import parse from './parse'; 4 | import organize from './organize'; 5 | import execute from './execute'; 6 | import { getTestableFiles } from './file'; 7 | import { getConfig } from './config'; 8 | 9 | const safelyExecute = (fn, taskName) => (...args) => { 10 | try { 11 | return fn(...args); 12 | } catch (e) { 13 | console.error('\x1b[31m', `Error ${taskName}: \n${e.message}`); 14 | console.log('\x1b[0m'); // reset color 15 | process.exit(1); 16 | } 17 | }; 18 | 19 | const processFile = path => 20 | _(path) 21 | .thru(safelyExecute(parse, 'parsing files')) 22 | .thru(testParamsArray => 23 | _.map( 24 | testParamsArray, 25 | safelyExecute(params => organize(path, params), 'organizing tests') 26 | ) 27 | ) 28 | .thru(safelyExecute(execute, 'executing test')) 29 | .commit(); 30 | 31 | getTestableFiles(getConfig().fileGlob).forEach(processFile); 32 | -------------------------------------------------------------------------------- /Under-the-hood.md: -------------------------------------------------------------------------------- 1 | # How does it do it? 2 | 3 | According to the `.saulrc`, it grabs all the testable files from your project - looks for the comments that follow that pattern above, and parses them. So in the case of 4 | 5 | ```js 6 | // @t "should call saul when the threat is imminent" shouldCallSaul('imminent') equals true 7 | ``` 8 | 9 | 1. "should call saul when the threat is imminent" is your test description. 10 | 2. `shouldCallSaul` is the testable function 11 | 3. `['imminent']` are the arguments. 12 | 4. `equals` is the engine. 13 | 5. `true` is the expected output. 14 | 15 | Then the engine `equals` - referring to the engine definition in a `engines/engine.js` file somewhere will generate the test for you. It will just run the testable function with the arguments inside the engine - and do the comparison against the expected output. 16 | 17 | When it generates a test, it does not generate a "file". Rather, it will generate the test on the fly, in-memory, and feed it to your test runner. -------------------------------------------------------------------------------- /src/spies.js: -------------------------------------------------------------------------------- 1 | import sinon from 'sinon'; 2 | 3 | const generated = {}; 4 | 5 | // @t "gets existing spy" 6 | // getSpy('iSpy', { 'iSpy': { name: 1337 } }, () => {}) ~equals { name: 1337 } 7 | export const getSpy = (name, collection = generated) => { 8 | if (collection[name]) { 9 | return collection[name]; 10 | } 11 | 12 | throw new Error(`Could not find spy: ${name}`); 13 | }; 14 | 15 | // @t "generates a new spy" 16 | // generateSpy('spyName', {}, {}) ~equals { _saul_type: 'spy', _saul_name: 'spyName' } 17 | // @t "throws on existing spy name" 18 | // generateSpy('existingSpy', { 'existingSpy': {} }, {}) ~throws true 19 | export const generateSpy = ( 20 | name, 21 | collection = generated, 22 | newSpy = sinon.spy() 23 | ) => { 24 | if (collection[name]) { 25 | throw new Error(`Spy name ${name} is already taken.`); 26 | } 27 | 28 | const spy = Object.assign(newSpy, { 29 | _saul_type: 'spy', 30 | _saul_name: name 31 | }); 32 | 33 | collection[name] = spy; 34 | 35 | return spy; 36 | }; 37 | -------------------------------------------------------------------------------- /API.md: -------------------------------------------------------------------------------- 1 | # API for generating dynamic saul tests 2 | 3 | ### contains 4 | Checks whether the output contains the expected value 5 | ```js 6 | // @t "can concat" concatanate('string1', 'something els') contains 'string1' 7 | ``` 8 | 9 | ### deep-equal 10 | Checks whether the expected value is deep equal to actual value 11 | ```js 12 | // @t "assigns correctly" myAssign({ foo: 1 }, { foo: 2}) deep-equals { foo: 2 } 13 | ``` 14 | 15 | ### equals 16 | Checks whether the expected value is equal to the actual value 17 | ```js 18 | // @t "can sum" sum(1, 2) equals 3 19 | ``` 20 | 21 | ### is-not 22 | Checks whether the expected value is not equal to the actual value. (Opposite of `equals`) 23 | ```js 24 | // @t "can sum" sum(1, 2) is-not 4 25 | ``` 26 | 27 | ### matches-dom 28 | Checks whether the given emmet expression matches the generated DOM 29 | ```js 30 | // @t "has new div" FooSpan({children: 'bar'}) matches-dom span#foo{bar} 31 | ``` 32 | 33 | ### throws 34 | Checks whether the invokation would throw. 35 | ```js 36 | // @t "throws on null engine" executeTest({engine: null}) throws Error 37 | ``` -------------------------------------------------------------------------------- /src/config.js: -------------------------------------------------------------------------------- 1 | import fs from 'fs'; 2 | import path from 'path'; 3 | import process from 'process'; 4 | 5 | type Config = { 6 | fileGlob: string 7 | }; 8 | 9 | let config: Config; 10 | 11 | const configFileName = '.saulrc'; 12 | 13 | // @t "gets existing config" getConfig({foo: "bar"}) ~equals {foo: 'bar'} 14 | // @t "must read and get config" 15 | // getConfig(null, () => '{"good": "config"}', 'fakePath') ~equals {good: 'config'} 16 | // @t "must return default config on bad config" 17 | // getConfig(null, null, 'fakePath') ~equals {fileGlob: '**/*.js'} 18 | export const getConfig = ( 19 | existingConfig: Config = config, 20 | readFile: typeof fs.readFileSync = fs.readFileSync, 21 | configPath: string = path.join(process.cwd(), configFileName) 22 | ): Config => { 23 | if (existingConfig) { 24 | return existingConfig; 25 | } 26 | 27 | try { 28 | config = JSON.parse(readFile(configPath, 'utf-8')); 29 | } catch (e) { 30 | console.log(`Warning: Could not find a valid .saulrc in ${process.cwd()}`); 31 | 32 | config = { 33 | fileGlob: '**/*.js' 34 | }; 35 | } 36 | 37 | return config; 38 | }; 39 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | # Runtime data 9 | pids 10 | *.pid 11 | *.seed 12 | *.pid.lock 13 | 14 | # Directory for instrumented libs generated by jscoverage/JSCover 15 | lib-cov 16 | 17 | # Coverage directory used by tools like istanbul 18 | coverage 19 | 20 | # nyc test coverage 21 | .nyc_output 22 | 23 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 24 | .grunt 25 | 26 | # Bower dependency directory (https://bower.io/) 27 | bower_components 28 | 29 | # node-waf configuration 30 | .lock-wscript 31 | 32 | # Compiled binary addons (http://nodejs.org/api/addons.html) 33 | build/Release 34 | 35 | # Dependency directories 36 | node_modules/ 37 | jspm_packages/ 38 | 39 | # Typescript v1 declaration files 40 | typings/ 41 | 42 | # Optional npm cache directory 43 | .npm 44 | 45 | # Optional eslint cache 46 | .eslintcache 47 | 48 | # Optional REPL history 49 | .node_repl_history 50 | 51 | # Output of 'npm pack' 52 | *.tgz 53 | 54 | # Yarn Integrity file 55 | .yarn-integrity 56 | 57 | # dotenv environment variables file 58 | .env 59 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | # Runtime data 9 | pids 10 | *.pid 11 | *.seed 12 | *.pid.lock 13 | 14 | # Directory for instrumented libs generated by jscoverage/JSCover 15 | lib-cov 16 | 17 | # Coverage directory used by tools like istanbul 18 | coverage 19 | 20 | # nyc test coverage 21 | .nyc_output 22 | 23 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 24 | .grunt 25 | 26 | # Bower dependency directory (https://bower.io/) 27 | bower_components 28 | 29 | # node-waf configuration 30 | .lock-wscript 31 | 32 | # Compiled binary addons (http://nodejs.org/api/addons.html) 33 | build/Release 34 | 35 | # Dependency directories 36 | node_modules/ 37 | jspm_packages/ 38 | 39 | # Typescript v1 declaration files 40 | typings/ 41 | 42 | # Optional npm cache directory 43 | .npm 44 | 45 | # Optional eslint cache 46 | .eslintcache 47 | 48 | # Optional REPL history 49 | .node_repl_history 50 | 51 | # Output of 'npm pack' 52 | *.tgz 53 | 54 | # Yarn Integrity file 55 | .yarn-integrity 56 | 57 | # dotenv environment variables file 58 | .env 59 | 60 | # compiled source 61 | lib 62 | -------------------------------------------------------------------------------- /src/examples/react-examples.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; // eslint-disable-line no-unused-vars 2 | 3 | // @t "can render" Thumbnail({isNew: true}) ~matches-snapshot 4 | export const Thumbnail = ({ 5 | thumbnailImage, 6 | isNew, 7 | auctionDate, 8 | brandingLogoUrl, 9 | brandingColor, 10 | styles = {}, 11 | formatAuctionDate = function noop() {}, 12 | Branding = 'div', 13 | brandingStyles = {} 14 | }) => 15 |
16 |
22 | 27 | {isNew && 28 |
29 | New 30 |
} 31 |
32 | Auction {formatAuctionDate(auctionDate)} 33 |
34 |
35 | 40 |
; 41 | -------------------------------------------------------------------------------- /src/engines/equals.js: -------------------------------------------------------------------------------- 1 | import { expect } from 'chai'; 2 | import _ from 'lodash'; 3 | 4 | // @t "testEqualsAsync" testEqualsAsync() ~equals 1 5 | export function testEqualsAsync() { 6 | return new Promise((resolve, reject) => { 7 | resolve(1); 8 | }); 9 | } 10 | 11 | // @t "testEquals" testEquals() ~equals { "foo": "bar" } 12 | export function testEquals() { 13 | return { foo: 'bar' }; 14 | } 15 | 16 | /* istanbul ignore next */ 17 | export default ( 18 | testDescription: string, 19 | func: Function, 20 | argsArray: Array, 21 | expected: string, 22 | test: (desc: string, fn: () => void) => void 23 | ) => { 24 | test(testDescription, (done = _.noop) => { 25 | const actual = func.apply(null, argsArray); 26 | 27 | const isPromise = !!actual.then; 28 | 29 | // must eval with var assignment it because eval({foo: 'bar'}) goes bar 30 | const assert = value => 31 | expect(value).to.eql(eval(`var out = ${expected}; out`)); // eslint-disable-line no-eval 32 | 33 | if (isPromise) { 34 | return actual.then(actual => { 35 | assert(actual); 36 | done(); 37 | }); 38 | } 39 | 40 | assert(actual); 41 | }); 42 | }; 43 | -------------------------------------------------------------------------------- /src/engines/expect.js: -------------------------------------------------------------------------------- 1 | import { expect } from 'chai'; 2 | import assert from 'assert'; 3 | 4 | // @t "woo" testEvalSpy(spy('bar')) ~expect expect(spy('bar').calledOnce).to.equal(true) 5 | // @t "woo" testEvalSpy(spy('baz'), {leet: 1337}) ~expect expect(spy('baz').args[0]).to.eql(['foo', {leet: 1337}]) 6 | // @t "woo" testEvalSpy(spy('far')) ~expect spy('far').calledOnce 7 | export function testEvalSpy (fn, obj) { 8 | fn('foo', obj); 9 | } 10 | 11 | /* istanbul ignore next */ 12 | export default ( 13 | testDescription: string, 14 | func: Function, 15 | argsArray: Array, 16 | expected: string, 17 | test: (desc: string, fn: () => void) => void, 18 | { getSpy } 19 | ) => { 20 | test(testDescription, () => { 21 | const result = func.apply(null, argsArray); 22 | const spy = getSpy; 23 | 24 | (function evaluate () { 25 | // eslint-disable-next-line no-eval 26 | eval( 27 | ` 28 | const expect = this.expect; 29 | const assert = this.assert; 30 | const spy = this.spy; 31 | const $result = this.result; 32 | 33 | ${expected.indexOf('expect(') > 0 ? expected : `assert(${expected})`} 34 | ` 35 | ); 36 | }.call({ 37 | expect, 38 | spy, 39 | assert, 40 | result 41 | })); 42 | }); 43 | }; 44 | -------------------------------------------------------------------------------- /src/parse.js: -------------------------------------------------------------------------------- 1 | import _ from 'lodash'; 2 | import fs from 'fs'; 3 | 4 | import { TestParams } from './types'; 5 | 6 | // @t "reads file" getFileContent('fakeFilePath', spy('reader')) ~expect-spy expect(spy('reader').calledOnce).to.equal(true) 7 | export const getFileContent = ( 8 | filepath: string, 9 | readFile: typeof fs.readFileSync = fs.readFileSync 10 | ): string => readFile(filepath, 'utf-8'); 11 | 12 | // @t "not foo" composeArgs(['1', '2']) ~is-not foo 13 | export const composeArgs = (match: string[]): TestParams => { 14 | const [ 15 | fullMatch, 16 | testDescription, 17 | funcName, 18 | args, 19 | engineName, 20 | output 21 | ] = match; // eslint-disable-line no-unused-vars 22 | 23 | return { 24 | args, 25 | engineName, 26 | funcName, 27 | output, 28 | testDescription 29 | }; 30 | }; 31 | 32 | export const composeParams = (fileContent: string): Array => { 33 | const testLine: RegExp = /(?:\/\/\s@t\s)(".*")(?:[^\w])+([\w|\.]+)\((.*)(?:\)[^\w])+~((?:\w|-)+)(?:[\s]?)+(.*)/g; 34 | 35 | let match; 36 | let paramsArray = []; 37 | 38 | while ((match = testLine.exec(fileContent)) !== null) { 39 | paramsArray.push(composeArgs(match)); 40 | } 41 | 42 | return paramsArray; 43 | }; 44 | 45 | /* istanbul ignore next */ 46 | const parse = (filepath: string): Array => { 47 | try { 48 | return _(filepath).thru(getFileContent).thru(composeParams).value(); 49 | } catch (e) { 50 | throw new Error('Error parsing your test files'); 51 | } 52 | }; 53 | 54 | export default parse; 55 | -------------------------------------------------------------------------------- /src/engines/matches-snapshot.js: -------------------------------------------------------------------------------- 1 | import path from 'path'; 2 | import _ from 'lodash'; 3 | import fs from 'fs'; 4 | import assert from 'assert'; 5 | 6 | const getSnapshotDir = () => path.join(process.cwd(), 'saul_snapshots'); 7 | 8 | // @t "gets file" getSnapshotFile(function tada() {}, 'foo') ~matches-snapshot 9 | export const getSnapshotFile = (func, testDescription) => 10 | `${func.name}-${_.kebabCase(testDescription)}.snap`; 11 | 12 | // @t "gets foo" getFoo() ~matches-snapshot 13 | export const getFoo = () => 'bar'; 14 | 15 | /* istanbul ignore next */ 16 | export default ( 17 | testDescription: string, 18 | func: Function, 19 | argsArray: Array, 20 | expected: string, 21 | test: (desc: string, fn: () => void) => void, 22 | { getSpy } 23 | ) => { 24 | test(testDescription, () => { 25 | if (!fs.existsSync(getSnapshotDir())) { 26 | fs.mkdirSync(getSnapshotDir()); 27 | } 28 | 29 | const snapshotPath = path.join( 30 | getSnapshotDir(), 31 | getSnapshotFile(func, testDescription) 32 | ); 33 | 34 | const actualContent = JSON.stringify(func.apply(null, argsArray)); 35 | 36 | if (!fs.existsSync(snapshotPath)) { 37 | fs.writeFileSync(snapshotPath, actualContent, { 38 | encoding: 'utf-8' 39 | }); 40 | 41 | console.log(`New snapshot recorded for ${func.name}: ${testDescription}`); 42 | 43 | return; 44 | } 45 | 46 | let snapshotContent; 47 | 48 | snapshotContent = fs.readFileSync(snapshotPath, 'utf-8'); 49 | 50 | // expect(snapshotContent).to.equal(actualContent); 51 | assert( 52 | snapshotContent === actualContent, 53 | `Expected ${snapshotContent} to equal ${actualContent}. If you want to rebuild the snapshot: rm ${snapshotPath}` 54 | ); 55 | }); 56 | }; 57 | -------------------------------------------------------------------------------- /src/execute.js: -------------------------------------------------------------------------------- 1 | import _ from 'lodash'; 2 | import { ExecutableParams } from './types'; 3 | import { suite, test } from './testcase'; 4 | import { getSpy } from './spies'; 5 | 6 | /* istanbul ignore next */ 7 | export const groupTestsByFuncName = ( 8 | tests: ExecutableParams 9 | ): { [id: string]: ExecutableParams } => 10 | _.groupBy(tests, test => { 11 | if (!test.function) { 12 | throw new Error( 13 | `Test ${test.testDescription} does not hava a testable function. Did you export it?` 14 | ); 15 | } 16 | 17 | return test.function.name; 18 | }); 19 | 20 | // @t "executes with engine" executeTest({engine: () => 'result'}) ~equals 'result' 21 | // @t "throws on invalid" executeTest({engine: null}) ~throws Error 22 | export const executeTest = (executableParams: ExecutableParams) => 23 | executableParams.engine( 24 | executableParams.testDescription, 25 | executableParams.function, 26 | executableParams.args, 27 | executableParams.output, 28 | test, 29 | { 30 | getSpy 31 | } 32 | ); 33 | 34 | // @t "passed suite context is called" executeTestGroup(null, null, spy('test')) ~expect-spy spy('test').calledOnce 35 | export const executeTestGroup = ( 36 | executableParams: ExecutableParams[], 37 | funcName: string, 38 | testSuite: typeof suite = suite 39 | ) => { 40 | testSuite(funcName, () => _.each(executableParams, executeTest)); 41 | }; 42 | 43 | /* istanbul ignore next */ 44 | const execute = (executableParams: ExecutableParams) => 45 | _(executableParams) 46 | .thru(groupTestsByFuncName) 47 | .thru(groupedTests => 48 | _.forOwn(groupedTests, (executableParams, funcName) => 49 | executeTestGroup(executableParams, funcName) 50 | ) 51 | ) 52 | .commit(); 53 | 54 | export default execute; 55 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "saul", 3 | "version": "0.3.1", 4 | "description": "An extensible dynamic unit test generator.", 5 | "main": "lib/index.js", 6 | "scripts": { 7 | "unit-tests": "nyc mocha --compilers js:babel-register src/**/*.test.js node_modules/.bin/saul", 8 | "test": "node_modules/.bin/eslint src/**/*.js && yarn unit-tests", 9 | "start": "node ./lib/index.js", 10 | "build": "babel src --out-dir lib", 11 | "watch": "babel --watch src --out-dir lib", 12 | "prepublish": "yarn run build", 13 | "self-test": "yarn build && rm -rf node_modules/saul/lib && cp -R lib node_modules/saul/ && yarn unit-tests" 14 | }, 15 | "author": "Nadeesha Cabral ", 16 | "license": "MIT", 17 | "dependencies": { 18 | "@emmetio/expand-abbreviation": "^0.5.6", 19 | "babel-register": "^6.24.1", 20 | "chai": "^3.5.0", 21 | "enzyme": "^2.8.2", 22 | "flow-remove-types": "^1.2.1", 23 | "glob": "^7.1.2", 24 | "lodash": "^4.17.11", 25 | "react": "^15.5.4", 26 | "saul": "0.3.0", 27 | "sinon": "^2.2.0", 28 | "unescape": "^0.2.0" 29 | }, 30 | "bin": { 31 | "saul": "./lib/index.js" 32 | }, 33 | "devDependencies": { 34 | "babel-cli": "^6.24.1", 35 | "babel-eslint": "^7.2.3", 36 | "babel-preset-env": "^1.4.0", 37 | "babel-preset-flow": "^6.23.0", 38 | "babel-preset-react": "^6.24.1", 39 | "eslint": "^3.19.0", 40 | "eslint-plugin-flowtype": "^2.33.0", 41 | "eslint-plugin-import": "^2.3.0", 42 | "eslint-plugin-node": "^4.2.2", 43 | "eslint-plugin-promise": "^3.5.0", 44 | "eslint-plugin-standard": "^3.0.1", 45 | "flow-bin": "^0.46.0", 46 | "mocha": "^3.4.1", 47 | "nyc": "^10.3.2" 48 | }, 49 | "repository": { 50 | "type": "git", 51 | "url": "https://github.com/nadeesha/saul" 52 | }, 53 | "nyc": { 54 | "include": [ 55 | "src/**/*.js" 56 | ] 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /src/parse.test.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "testDefinition": "// @t \"not foo\" composeArgs(['1', '2']) ~is-not foo", 4 | "params": { 5 | "testDescription": "\"not foo\"", 6 | "engineName": "is-not", 7 | "funcName": "composeArgs", 8 | "args": "['1', '2']", 9 | "output": "foo" 10 | } 11 | }, 12 | { 13 | "testDefinition": "// @t \"not foo\" composeArgs(1) ~is-not foo", 14 | "params": { 15 | "testDescription": "\"not foo\"", 16 | "engineName": "is-not", 17 | "funcName": "composeArgs", 18 | "args": "1", 19 | "output": "foo" 20 | } 21 | }, 22 | { 23 | "testDefinition": "// @t \"not foo\" composeArgs(1) ~is foo", 24 | "params": { 25 | "testDescription": "\"not foo\"", 26 | "engineName": "is", 27 | "funcName": "composeArgs", 28 | "args": "1", 29 | "output": "foo" 30 | } 31 | }, 32 | { 33 | "testDefinition": "// @t \"not foo\" composeArgs(['1', '2']) ~is foo", 34 | "params": { 35 | "testDescription": "\"not foo\"", 36 | "engineName": "is", 37 | "funcName": "composeArgs", 38 | "args": "['1', '2']", 39 | "output": "foo" 40 | } 41 | }, 42 | { 43 | "testDefinition": "// @t \"not foo\" file.composeArgs(1) ~is-not foo", 44 | "params": { 45 | "testDescription": "\"not foo\"", 46 | "engineName": "is-not", 47 | "funcName": "file.composeArgs", 48 | "args": "1", 49 | "output": "foo" 50 | } 51 | }, 52 | { 53 | "testDefinition": "// @t \"not foo\" file.compose.deep.Args(1) ~is-not foo", 54 | "params": { 55 | "testDescription": "\"not foo\"", 56 | "engineName": "is-not", 57 | "funcName": "file.compose.deep.Args", 58 | "args": "1", 59 | "output": "foo" 60 | } 61 | } 62 | ] 63 | -------------------------------------------------------------------------------- /src/organize.js: -------------------------------------------------------------------------------- 1 | import fs from 'fs'; 2 | import { TestParams, ExecutableParams } from './types'; 3 | import { getConfig } from './config'; 4 | import path from 'path'; 5 | import _ from 'lodash'; 6 | import { generateSpy } from './spies'; 7 | 8 | require('babel-register'); 9 | 10 | // @t "with normal export" getTestableFunction('foo', 'bar', () => ({'bar': 'baz'})) ~equals 'baz' 11 | // @t "with nested export" getTestableFunction('foo', 'bar.good', () => ({'bar': { 'good': 'sogood' }})) ~equals 'sogood' 12 | export const getTestableFunction = ( 13 | filepath: string, 14 | funcName: string, 15 | requireFile = require, 16 | get = _.get 17 | ): Function => { 18 | const module = requireFile(filepath); 19 | return get(module, funcName); 20 | }; 21 | 22 | const getArgsContext = () => ({ 23 | spy: generateSpy 24 | }); 25 | 26 | function parseArgsFn(argsString: string) { 27 | try { 28 | // eslint-disable-next-line no-eval 29 | return eval( 30 | ` 31 | const spy = this.spy; 32 | [${argsString}] 33 | ` 34 | ); 35 | } catch (e) { 36 | throw new Error( 37 | `Possible syntax error in your args: ${argsString} (${e.message})` 38 | ); 39 | } 40 | } 41 | 42 | // @t "parses correctly" parseArgs("0") ~equals [0] 43 | // @t "parses multiple values" parseArgs("12, 15") ~equals [12, 15] 44 | // @t "accepts spies" parseArgs("spy('foo'), 15") ~throws false 45 | // @t "throws on invalid spies" parseArgs("spyz('0'), 15") ~throws true 46 | export const parseArgs = parseArgsFn.bind(getArgsContext()); 47 | 48 | // @t "gets file" getEngineModule('eng', () => ({ default: 'file' }), () => {}, () => true) ~equals 'file' 49 | export const getEngineModule = ( 50 | engineName, 51 | requireFile = require, 52 | joinPath = path.join, 53 | fileExists = fs.statSync 54 | ) => { 55 | try { 56 | const userModule = joinPath( 57 | process.cwd(), 58 | getConfig().customEnginesDir, 59 | `${engineName}.js` 60 | ); 61 | 62 | if (fileExists(userModule) && requireFile(userModule).default) { 63 | return requireFile(userModule).default; 64 | } 65 | } catch (e) { 66 | return requireFile(`./engines/${engineName}.js`).default; 67 | } 68 | }; 69 | 70 | /* istanbul ignore next */ 71 | export default ( 72 | filepath: string, 73 | testParams: TestParams 74 | ): ExecutableParams => ({ 75 | function: getTestableFunction(filepath, testParams.funcName), 76 | testDescription: testParams.testDescription, 77 | args: parseArgs(testParams.args), 78 | engine: getEngineModule(testParams.engineName), 79 | output: testParams.output 80 | }); 81 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![Build Status](https://circleci.com/gh/nadeesha/saul/tree/master.svg?style=svg) [![npm version](https://badge.fury.io/js/saul.svg)](https://badge.fury.io/js/saul) 2 | 3 | ![Saul - Introduction](https://s3.amazonaws.com/nadeesha-static/Screen+Shot+2017-08-15+at+11.47.47+PM.png) 4 | 5 | [![Demo](https://asciinema.org/a/JVXpt7KB7qbUkgsGBDISUtXJB.png)](https://asciinema.org/a/JVXpt7KB7qbUkgsGBDISUtXJB) 6 | 7 | # What is it? 8 | 9 | `saul` gives you a custom DSL that will help you write test framework agnostic unit tests for your javascript functions. 10 | 11 | A simple example might look like: 12 | 13 | ```js 14 | // @t "should call saul when the threat is imminent" shouldCallSaul('imminent') ~equals true 15 | // @t "should not call saul when threat is not imminent" shouldCallSaul('nodanger') ~equals false 16 | function shouldCallSaul(threatLevel) { 17 | if (threatLevel === 'imminent') { 18 | return true; 19 | } 20 | 21 | return false; 22 | } 23 | ``` 24 | 25 | # What problems does it solve? 26 | 27 | - Avoid writing unnecessary boilerplate code for trivial tests 28 | - Quickly test functionality with `// @t` annotations in your code 29 | - Have your tests co-located to the functionality it tests 30 | - Self-document your functionality with a custom DSL 31 | 32 | # Installation 33 | 34 | ### 1. Install `saul` as a dev dependency: 35 | 36 | ```sh 37 | yarn add --dev saul 38 | ``` 39 | 40 | ### 2. Create a `.saulrc` in the root. 41 | 42 | example: 43 | ```js 44 | { 45 | "fileGlob": "src/**/*.js", // files that contain the saul comments 46 | "customEnginesDir": "./src/custom-saul-engines" // optional: dir where you will put custom engine .js files 47 | } 48 | ``` 49 | 50 | ### 3. Invoke saul from your test. 51 | 52 | #### Mocha/Jasmine 53 | 54 | If you have some mocha tests already, your `npm test` would look like: `mocha src/**/.js`. Simple add `saul`'s bin (`node_modules/.bin/saul`) right at the end: 55 | 56 | ```sh 57 | mocha lib/*.test.js" node_modules/.bin/saul 58 | ``` 59 | 60 | #### Jest 61 | 62 | Since jest requires a regex pattern for test files, you will have to create a file with a single file with a `require`, that will be matched by your jest `regexPattern`. 63 | 64 | Example: 65 | ```js 66 | require('saul'); // will run all saul tests here 67 | ``` 68 | 69 | ## Usage with Babel 70 | 71 | Any transformation that you apply to your tests will be inherited by saul when you run your tests. If you're running babel, this will include anything that you define in your local `.babelrc`. 72 | 73 | For an instance, if you want to feed babel-transformed files to mocha, you will invoke mocha with `mocha --compilers js:babel-register`. You can simply add saul to the end of the command. (`mocha --compilers js:babel-register node_modules/.bin/saul`) - and things will Just Work™. 74 | 75 | # DSL Specification and Examples 76 | 77 | ### expect 78 | Assert the result using chai's expect. Comes with test spy support from [sinon](sinonjs.org/releases/v2.0.0/spies/). 79 | 80 | Example: 81 | ```js 82 | // @t "appends foo" appendFoo('bar') ~expect expect(result).to.contain('foo'); 83 | // @t "has no fizz" appendFoo('bar') ~expect expect(result).to.not.contain('fizz'); 84 | export function appendFoo (someString) { 85 | return someString + 'foo'; 86 | } 87 | ``` 88 | 89 | With spy support: 90 | 91 | Calling `spy(name: string)`, will create a [sinon spy](sinonjs.org/releases/v2.0.0/spies/). You can assert on any of it's methods/properties like this: 92 | 93 | ```js 94 | // @t "calls only once" testEvalSpy(spy('mySpy')) ~expect spy('mySpy').calledOnce 95 | // @t "calls with obj" testEvalSpy(spy('mySpy2'), 'foo') ~expect spy('mySpy2').calledWith('foo') 96 | export function testEvalSpy (fn, str) { 97 | fn('foo', str); 98 | } 99 | ``` 100 | 101 | ### matches-snapshot 102 | Checks whether a previously saved snapshot image of the function's serialized output, matches the current output. (Saves a snapshot file on the first run - that should be checked in to the repo). 103 | 104 | ```js 105 | // @t "should render Date" Date({dateString: '1970-03-11'}) ~matches-snapshot 106 | export function Date(props) { 107 | return
{props.dateString}
108 | } 109 | 110 | // @t "returns all months" getAllMonths() ~matches-snapshot 111 | export function getAllMonths() { 112 | return CONSTANTS.ALL_MONTHS.join('_'); 113 | } 114 | ``` 115 | 116 | ### equals 117 | Checks whether the expected value is equal to the actual value. If the function returns a promise, resolves it before asserting 118 | ```js 119 | // @t "can sum" sum(1, 2) ~equals 3 120 | export function sum(numOne, numTwo) { 121 | return numOne + numTwo; 122 | } 123 | 124 | // @t "testEqualsAsync" testEqualsAsync() ~equals 'foo' 125 | export function testEqualsAsync() { 126 | return new Promise((resolve, reject) => { 127 | resolve('foo'); 128 | }); 129 | } 130 | ``` 131 | 132 | ### contains 133 | Checks whether the output contains the expected value. 134 | 135 | Example: 136 | ```js 137 | // @t "can concat" concatanate('string1', 'something els') ~contains 'string1' 138 | export function concatanate (a, b) { 139 | return a + b; 140 | } 141 | ``` 142 | 143 | ### is-not 144 | Checks whether the expected value is not equal to the actual value. (Opposite of `equals`) 145 | ```js 146 | // @t "can sum" sum(1, 2) ~is-not 4 147 | export function sum(numOne, numTwo) { 148 | return numOne + numTwo; 149 | } 150 | ``` 151 | 152 | ### throws 153 | Checks whether the invokation would throw. 154 | ```js 155 | // @t "throws on null engine" executeTest({engine: null}) ~throws Error 156 | export executeTest(options) { 157 | options.engine('foobar'); 158 | } 159 | ``` 160 | 161 | And more! See: [extending saul](#extending). 162 | 163 | # Extending `saul` 164 | 165 | Then engines are the "comparator" in the tests. 166 | 167 | ```js 168 | // @t "throws on null engine" executeTest({engine: null}) ~throws Error 169 | | | └ expected value 170 | | | 171 | | └ comparator 172 | | 173 | └ actutal value 174 | ``` 175 | 176 | They are handled by the file of that name in `src/engines/`. (Example: `src/engines/throws.js`) 177 | 178 | The "engines", are responsible for generating the tests. So, as long as you build a custom engine - it can pretty much test anything. 179 | 180 | The default engines can do a few cool things out of the box. (check the `src/engines/` directory). You can always write your own engines and put them in your `customEnginesDir` defined in `.saulrc`. 181 | 182 | # Examples 183 | 184 | Just look through this repo for `// @t` annotated tests. `saul` is tested with `saul`! :rocket: 185 | 186 | # Contributions 187 | 188 | Please! Here are som TODOs that need being done. 189 | 190 | - [ ] More engines! (If you would like to contribute an engine, please take a look at the engine files at `src/engines`) 191 | - [ ] Documentation on writing engines. 192 | - [ ] Extending the parsers for fixtures 193 | - [x] Better error handling for engines 194 | - [x] Tests for existing engines 195 | 196 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "parser": "babel-eslint", 3 | "env": { 4 | "es6": true, 5 | "node": true, 6 | "mocha": true 7 | }, 8 | "plugins": ["import", "node", "standard", "flowtype", "promise"], 9 | "globals": { 10 | "document": false, 11 | "navigator": false, 12 | "window": false 13 | }, 14 | "rules": { 15 | "accessor-pairs": "error", 16 | "arrow-spacing": [ 17 | "error", 18 | { 19 | "before": true, 20 | "after": true 21 | } 22 | ], 23 | "block-spacing": ["error", "always"], 24 | "brace-style": [ 25 | "error", 26 | "1tbs", 27 | { 28 | "allowSingleLine": true 29 | } 30 | ], 31 | "camelcase": [ 32 | "error", 33 | { 34 | "properties": "never" 35 | } 36 | ], 37 | "comma-dangle": [ 38 | "error", 39 | { 40 | "arrays": "never", 41 | "objects": "never", 42 | "imports": "never", 43 | "exports": "never", 44 | "functions": "never" 45 | } 46 | ], 47 | "comma-spacing": [ 48 | "error", 49 | { 50 | "before": false, 51 | "after": true 52 | } 53 | ], 54 | "comma-style": ["error", "last"], 55 | "constructor-super": "error", 56 | "curly": ["error", "multi-line"], 57 | "dot-location": ["error", "property"], 58 | "eol-last": "error", 59 | "eqeqeq": [ 60 | "error", 61 | "always", 62 | { 63 | "null": "ignore" 64 | } 65 | ], 66 | "func-call-spacing": ["error", "never"], 67 | "generator-star-spacing": [ 68 | "error", 69 | { 70 | "before": true, 71 | "after": true 72 | } 73 | ], 74 | "handle-callback-err": ["error", "^(err|error)$"], 75 | "indent": [ 76 | "error", 77 | 2, 78 | { 79 | "SwitchCase": 1 80 | } 81 | ], 82 | "key-spacing": [ 83 | "error", 84 | { 85 | "beforeColon": false, 86 | "afterColon": true 87 | } 88 | ], 89 | "keyword-spacing": [ 90 | "error", 91 | { 92 | "before": true, 93 | "after": true 94 | } 95 | ], 96 | "new-cap": [ 97 | "error", 98 | { 99 | "newIsCap": true, 100 | "capIsNew": false 101 | } 102 | ], 103 | "new-parens": "error", 104 | "no-array-constructor": "error", 105 | "no-caller": "error", 106 | "no-class-assign": "error", 107 | "no-compare-neg-zero": "error", 108 | "no-cond-assign": "error", 109 | "no-const-assign": "error", 110 | "no-constant-condition": [ 111 | "error", 112 | { 113 | "checkLoops": false 114 | } 115 | ], 116 | "no-control-regex": "error", 117 | "no-debugger": "error", 118 | "no-delete-var": "error", 119 | "no-dupe-args": "error", 120 | "no-dupe-class-members": "error", 121 | "no-dupe-keys": "error", 122 | "no-duplicate-case": "error", 123 | "no-empty-character-class": "error", 124 | "no-empty-pattern": "error", 125 | "no-eval": "error", 126 | "no-ex-assign": "error", 127 | "no-extend-native": "error", 128 | "no-extra-bind": "error", 129 | "no-extra-boolean-cast": "error", 130 | "no-extra-parens": ["error", "functions"], 131 | "no-fallthrough": "error", 132 | "no-floating-decimal": "error", 133 | "no-func-assign": "error", 134 | "no-global-assign": "error", 135 | "no-implied-eval": "error", 136 | "no-inner-declarations": ["error", "functions"], 137 | "no-invalid-regexp": "error", 138 | "no-irregular-whitespace": "error", 139 | "no-iterator": "error", 140 | "no-label-var": "error", 141 | "no-labels": [ 142 | "error", 143 | { 144 | "allowLoop": false, 145 | "allowSwitch": false 146 | } 147 | ], 148 | "no-lone-blocks": "error", 149 | "no-mixed-operators": [ 150 | "error", 151 | { 152 | "groups": [ 153 | ["==", "!=", "===", "!==", ">", ">=", "<", "<="], 154 | ["&&", "||"], 155 | ["in", "instanceof"] 156 | ], 157 | "allowSamePrecedence": true 158 | } 159 | ], 160 | "no-mixed-spaces-and-tabs": "error", 161 | "no-multi-spaces": "error", 162 | "no-multi-str": "error", 163 | "no-multiple-empty-lines": [ 164 | "error", 165 | { 166 | "max": 1, 167 | "maxEOF": 0 168 | } 169 | ], 170 | "no-negated-in-lhs": "error", 171 | "no-new": "error", 172 | "no-new-func": "error", 173 | "no-new-object": "error", 174 | "no-new-require": "error", 175 | "no-new-symbol": "error", 176 | "no-new-wrappers": "error", 177 | "no-obj-calls": "error", 178 | "no-octal": "error", 179 | "no-octal-escape": "error", 180 | "no-path-concat": "error", 181 | "no-proto": "error", 182 | "no-redeclare": "error", 183 | "no-regex-spaces": "error", 184 | "no-return-assign": ["error", "except-parens"], 185 | "no-return-await": "error", 186 | "no-self-assign": "error", 187 | "no-self-compare": "error", 188 | "no-sequences": "error", 189 | "no-shadow-restricted-names": "error", 190 | "no-sparse-arrays": "error", 191 | "no-tabs": "error", 192 | "no-template-curly-in-string": "error", 193 | "no-this-before-super": "error", 194 | "no-throw-literal": "error", 195 | "no-trailing-spaces": "error", 196 | "no-undef": "error", 197 | "no-undef-init": "error", 198 | "no-unexpected-multiline": "error", 199 | "no-unmodified-loop-condition": "error", 200 | "no-unneeded-ternary": [ 201 | "error", 202 | { 203 | "defaultAssignment": false 204 | } 205 | ], 206 | "no-unreachable": "error", 207 | "no-unsafe-finally": "error", 208 | "no-unsafe-negation": "error", 209 | "no-unused-expressions": [ 210 | "error", 211 | { 212 | "allowShortCircuit": true, 213 | "allowTernary": true, 214 | "allowTaggedTemplates": true 215 | } 216 | ], 217 | "no-unused-vars": [ 218 | "error", 219 | { 220 | "vars": "all", 221 | "args": "none", 222 | "ignoreRestSiblings": true 223 | } 224 | ], 225 | "no-use-before-define": [ 226 | "error", 227 | { 228 | "functions": false, 229 | "classes": false, 230 | "variables": false 231 | } 232 | ], 233 | "no-useless-call": "error", 234 | "no-useless-computed-key": "error", 235 | "no-useless-constructor": "error", 236 | "no-useless-escape": "error", 237 | "no-useless-rename": "error", 238 | "no-useless-return": "error", 239 | "no-whitespace-before-property": "error", 240 | "no-with": "error", 241 | "object-property-newline": [ 242 | "error", 243 | { 244 | "allowMultiplePropertiesPerLine": true 245 | } 246 | ], 247 | "one-var": [ 248 | "error", 249 | { 250 | "initialized": "never" 251 | } 252 | ], 253 | "operator-linebreak": [ 254 | "error", 255 | "after", 256 | { 257 | "overrides": { 258 | "?": "before", 259 | ":": "before" 260 | } 261 | } 262 | ], 263 | "padded-blocks": [ 264 | "error", 265 | { 266 | "blocks": "never", 267 | "switches": "never", 268 | "classes": "never" 269 | } 270 | ], 271 | "prefer-promise-reject-errors": "error", 272 | "quotes": [ 273 | "error", 274 | "single", 275 | { 276 | "avoidEscape": true, 277 | "allowTemplateLiterals": true 278 | } 279 | ], 280 | "rest-spread-spacing": ["error", "never"], 281 | "semi": ["error", "always"], 282 | "semi-spacing": [ 283 | "error", 284 | { 285 | "before": false, 286 | "after": true 287 | } 288 | ], 289 | "space-before-blocks": ["error", "always"], 290 | "space-in-parens": ["error", "never"], 291 | "space-infix-ops": "error", 292 | "space-unary-ops": [ 293 | "error", 294 | { 295 | "words": true, 296 | "nonwords": false 297 | } 298 | ], 299 | "spaced-comment": [ 300 | "error", 301 | "always", 302 | { 303 | "line": { 304 | "markers": ["*package", "!", "/", ","] 305 | }, 306 | "block": { 307 | "balanced": true, 308 | "markers": ["*package", "!", ",", ":", "::", "flow-include"], 309 | "exceptions": ["*"] 310 | } 311 | } 312 | ], 313 | "symbol-description": "error", 314 | "template-curly-spacing": ["error", "never"], 315 | "template-tag-spacing": ["error", "never"], 316 | "unicode-bom": ["error", "never"], 317 | "use-isnan": "error", 318 | "valid-typeof": [ 319 | "error", 320 | { 321 | "requireStringLiterals": true 322 | } 323 | ], 324 | "wrap-iife": [ 325 | "error", 326 | "any", 327 | { 328 | "functionPrototypeMethods": true 329 | } 330 | ], 331 | "yield-star-spacing": ["error", "both"], 332 | "yoda": ["error", "never"], 333 | "import/export": "error", 334 | "import/first": "error", 335 | "import/no-duplicates": "error", 336 | "import/no-webpack-loader-syntax": "error", 337 | "node/no-deprecated-api": "error", 338 | "node/process-exit-as-throw": "error", 339 | "promise/param-names": "error", 340 | "standard/array-bracket-even-spacing": ["error", "either"], 341 | "standard/computed-property-even-spacing": ["error", "even"], 342 | "standard/no-callback-literal": "error", 343 | "standard/object-curly-even-spacing": ["error", "either"] 344 | } 345 | } 346 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@emmetio/abbreviation@^0.6.0", "@emmetio/abbreviation@^0.6.1": 6 | version "0.6.1" 7 | resolved "https://registry.yarnpkg.com/@emmetio/abbreviation/-/abbreviation-0.6.1.tgz#1255b3f468bc610dd6ea9dd2f70f3afa92027c26" 8 | dependencies: 9 | "@emmetio/node" "^0.1.2" 10 | "@emmetio/stream-reader" "^2.0.0" 11 | "@emmetio/stream-reader-utils" "^0.1.0" 12 | 13 | "@emmetio/css-abbreviation@^0.3.1": 14 | version "0.3.1" 15 | resolved "https://registry.yarnpkg.com/@emmetio/css-abbreviation/-/css-abbreviation-0.3.1.tgz#c8ce56318bf5f8d5ab5e3d2760bd50bca2ca8888" 16 | dependencies: 17 | "@emmetio/node" "^0.1.0" 18 | "@emmetio/stream-reader" "^2.0.0" 19 | "@emmetio/stream-reader-utils" "^0.1.0" 20 | 21 | "@emmetio/css-snippets-resolver@^0.2.5": 22 | version "0.2.5" 23 | resolved "https://registry.yarnpkg.com/@emmetio/css-snippets-resolver/-/css-snippets-resolver-0.2.5.tgz#e67b8278212b4621b2d3556922c46dad2f4f0c8d" 24 | 25 | "@emmetio/expand-abbreviation@^0.5.6": 26 | version "0.5.6" 27 | resolved "https://registry.yarnpkg.com/@emmetio/expand-abbreviation/-/expand-abbreviation-0.5.6.tgz#ca8d90d8908553efef0ddd20a704b8e1ddb6fe80" 28 | dependencies: 29 | "@emmetio/abbreviation" "^0.6.1" 30 | "@emmetio/css-abbreviation" "^0.3.1" 31 | "@emmetio/css-snippets-resolver" "^0.2.5" 32 | "@emmetio/html-snippets-resolver" "^0.1.4" 33 | "@emmetio/html-transform" "^0.3.2" 34 | "@emmetio/lorem" "^1.0.1" 35 | "@emmetio/markup-formatters" "^0.3.3" 36 | "@emmetio/output-profile" "^0.1.5" 37 | "@emmetio/snippets" "^0.2.3" 38 | "@emmetio/snippets-registry" "^0.3.1" 39 | "@emmetio/stylesheet-formatters" "^0.1.2" 40 | "@emmetio/variable-resolver" "^0.2.1" 41 | mocha "^3.4.1" 42 | 43 | "@emmetio/field-parser@^0.3.0": 44 | version "0.3.0" 45 | resolved "https://registry.yarnpkg.com/@emmetio/field-parser/-/field-parser-0.3.0.tgz#7a7cf51c399aea7bae455e0fcf3eb328f8c0c215" 46 | dependencies: 47 | "@emmetio/stream-reader" "^2.0.0" 48 | "@emmetio/stream-reader-utils" "^0.1.0" 49 | 50 | "@emmetio/html-snippets-resolver@^0.1.4": 51 | version "0.1.4" 52 | resolved "https://registry.yarnpkg.com/@emmetio/html-snippets-resolver/-/html-snippets-resolver-0.1.4.tgz#b33ad3fa78fd78d64b94bf88a9fb68b3ad8e8e7e" 53 | dependencies: 54 | "@emmetio/abbreviation" "^0.6.0" 55 | 56 | "@emmetio/html-transform@^0.3.2": 57 | version "0.3.2" 58 | resolved "https://registry.yarnpkg.com/@emmetio/html-transform/-/html-transform-0.3.2.tgz#6c50100d687e1a4d9f1e50632fcf24f383b70075" 59 | dependencies: 60 | "@emmetio/implicit-tag" "^1.0.0" 61 | 62 | "@emmetio/implicit-tag@^1.0.0": 63 | version "1.0.0" 64 | resolved "https://registry.yarnpkg.com/@emmetio/implicit-tag/-/implicit-tag-1.0.0.tgz#f826d4e1fc51da39434c2326b6f6d0e2b2e7b419" 65 | 66 | "@emmetio/lorem@^1.0.1": 67 | version "1.0.1" 68 | resolved "https://registry.yarnpkg.com/@emmetio/lorem/-/lorem-1.0.1.tgz#4f5e0b43b9e01fe2a9e5cdc248700884a1cab95a" 69 | dependencies: 70 | "@emmetio/implicit-tag" "^1.0.0" 71 | 72 | "@emmetio/markup-formatters@^0.3.3": 73 | version "0.3.3" 74 | resolved "https://registry.yarnpkg.com/@emmetio/markup-formatters/-/markup-formatters-0.3.3.tgz#b686c05a9786d4896be64764ff23a5e40daf63dc" 75 | dependencies: 76 | "@emmetio/field-parser" "^0.3.0" 77 | "@emmetio/output-renderer" "^0.1.0" 78 | 79 | "@emmetio/node@^0.1.0", "@emmetio/node@^0.1.2": 80 | version "0.1.2" 81 | resolved "https://registry.yarnpkg.com/@emmetio/node/-/node-0.1.2.tgz#4231d538c45481a51835fc2aba3f5d9fc129634c" 82 | 83 | "@emmetio/output-profile@^0.1.5": 84 | version "0.1.5" 85 | resolved "https://registry.yarnpkg.com/@emmetio/output-profile/-/output-profile-0.1.5.tgz#52893a73c1924ee4b4154a9f8d9772b89c4f61dd" 86 | 87 | "@emmetio/output-renderer@^0.1.0", "@emmetio/output-renderer@^0.1.1": 88 | version "0.1.1" 89 | resolved "https://registry.yarnpkg.com/@emmetio/output-renderer/-/output-renderer-0.1.1.tgz#a4d58554a21200a9191dd799a73177879ca5d7d6" 90 | dependencies: 91 | "@emmetio/field-parser" "^0.3.0" 92 | 93 | "@emmetio/snippets-registry@^0.3.1": 94 | version "0.3.1" 95 | resolved "https://registry.yarnpkg.com/@emmetio/snippets-registry/-/snippets-registry-0.3.1.tgz#ec0e8a122fe9683659ce69a22396f4136b940d20" 96 | 97 | "@emmetio/snippets@^0.2.3": 98 | version "0.2.3" 99 | resolved "https://registry.yarnpkg.com/@emmetio/snippets/-/snippets-0.2.3.tgz#73e209fc036dbb9f7c9aa1050038cc68ad082c1a" 100 | 101 | "@emmetio/stream-reader-utils@^0.1.0": 102 | version "0.1.0" 103 | resolved "https://registry.yarnpkg.com/@emmetio/stream-reader-utils/-/stream-reader-utils-0.1.0.tgz#244cb02c77ec2e74f78a9bd318218abc9c500a61" 104 | 105 | "@emmetio/stream-reader@^2.0.0": 106 | version "2.2.0" 107 | resolved "https://registry.yarnpkg.com/@emmetio/stream-reader/-/stream-reader-2.2.0.tgz#46cffea119a0a003312a21c2d9b5628cb5fcd442" 108 | 109 | "@emmetio/stylesheet-formatters@^0.1.2": 110 | version "0.1.2" 111 | resolved "https://registry.yarnpkg.com/@emmetio/stylesheet-formatters/-/stylesheet-formatters-0.1.2.tgz#3036ed6d8c1e40345e673044b75c3f14986022cf" 112 | dependencies: 113 | "@emmetio/field-parser" "^0.3.0" 114 | "@emmetio/output-renderer" "^0.1.1" 115 | 116 | "@emmetio/variable-resolver@^0.2.1": 117 | version "0.2.1" 118 | resolved "https://registry.yarnpkg.com/@emmetio/variable-resolver/-/variable-resolver-0.2.1.tgz#ce11b51584669a340986690cf0ec269e44c63fba" 119 | 120 | abbrev@1: 121 | version "1.1.0" 122 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 123 | 124 | acorn-jsx@^3.0.0: 125 | version "3.0.1" 126 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 127 | dependencies: 128 | acorn "^3.0.4" 129 | 130 | acorn@^3.0.4: 131 | version "3.3.0" 132 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 133 | 134 | acorn@^5.0.1: 135 | version "5.0.3" 136 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.0.3.tgz#c460df08491463f028ccb82eab3730bf01087b3d" 137 | 138 | ajv-keywords@^1.0.0: 139 | version "1.5.1" 140 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 141 | 142 | ajv@^4.7.0, ajv@^4.9.1: 143 | version "4.11.8" 144 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 145 | dependencies: 146 | co "^4.6.0" 147 | json-stable-stringify "^1.0.1" 148 | 149 | align-text@^0.1.1, align-text@^0.1.3: 150 | version "0.1.4" 151 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 152 | dependencies: 153 | kind-of "^3.0.2" 154 | longest "^1.0.1" 155 | repeat-string "^1.5.2" 156 | 157 | amdefine@>=0.0.4: 158 | version "1.0.1" 159 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 160 | 161 | ansi-escapes@^1.1.0: 162 | version "1.4.0" 163 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 164 | 165 | ansi-regex@^2.0.0: 166 | version "2.1.1" 167 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 168 | 169 | ansi-styles@^2.2.1: 170 | version "2.2.1" 171 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 172 | 173 | ansi-wrap@0.1.0: 174 | version "0.1.0" 175 | resolved "https://registry.yarnpkg.com/ansi-wrap/-/ansi-wrap-0.1.0.tgz#a82250ddb0015e9a27ca82e82ea603bbfa45efaf" 176 | 177 | ansi-yellow@^0.1.1: 178 | version "0.1.1" 179 | resolved "https://registry.yarnpkg.com/ansi-yellow/-/ansi-yellow-0.1.1.tgz#cb9356f2f46c732f0e3199e6102955a77da83c1d" 180 | dependencies: 181 | ansi-wrap "0.1.0" 182 | 183 | anymatch@^1.3.0: 184 | version "1.3.0" 185 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 186 | dependencies: 187 | arrify "^1.0.0" 188 | micromatch "^2.1.5" 189 | 190 | append-transform@^0.4.0: 191 | version "0.4.0" 192 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 193 | dependencies: 194 | default-require-extensions "^1.0.0" 195 | 196 | aproba@^1.0.3: 197 | version "1.1.1" 198 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.1.tgz#95d3600f07710aa0e9298c726ad5ecf2eacbabab" 199 | 200 | archy@^1.0.0: 201 | version "1.0.0" 202 | resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" 203 | 204 | are-we-there-yet@~1.1.2: 205 | version "1.1.4" 206 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 207 | dependencies: 208 | delegates "^1.0.0" 209 | readable-stream "^2.0.6" 210 | 211 | argparse@^1.0.7: 212 | version "1.0.9" 213 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 214 | dependencies: 215 | sprintf-js "~1.0.2" 216 | 217 | arr-diff@^1.0.1: 218 | version "1.1.0" 219 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-1.1.0.tgz#687c32758163588fef7de7b36fabe495eb1a399a" 220 | dependencies: 221 | arr-flatten "^1.0.1" 222 | array-slice "^0.2.3" 223 | 224 | arr-diff@^2.0.0: 225 | version "2.0.0" 226 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 227 | dependencies: 228 | arr-flatten "^1.0.1" 229 | 230 | arr-flatten@^1.0.1: 231 | version "1.0.3" 232 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.3.tgz#a274ed85ac08849b6bd7847c4580745dc51adfb1" 233 | 234 | array-slice@^0.2.3: 235 | version "0.2.3" 236 | resolved "https://registry.yarnpkg.com/array-slice/-/array-slice-0.2.3.tgz#dd3cfb80ed7973a75117cdac69b0b99ec86186f5" 237 | 238 | array-union@^1.0.1: 239 | version "1.0.2" 240 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 241 | dependencies: 242 | array-uniq "^1.0.1" 243 | 244 | array-uniq@^1.0.1: 245 | version "1.0.3" 246 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 247 | 248 | array-unique@^0.2.1: 249 | version "0.2.1" 250 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 251 | 252 | arrify@^1.0.0, arrify@^1.0.1: 253 | version "1.0.1" 254 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 255 | 256 | asap@~2.0.3: 257 | version "2.0.5" 258 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.5.tgz#522765b50c3510490e52d7dcfe085ef9ba96958f" 259 | 260 | asn1@~0.2.3: 261 | version "0.2.3" 262 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 263 | 264 | assert-plus@1.0.0, assert-plus@^1.0.0: 265 | version "1.0.0" 266 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 267 | 268 | assert-plus@^0.2.0: 269 | version "0.2.0" 270 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 271 | 272 | assertion-error@^1.0.1: 273 | version "1.0.2" 274 | resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.0.2.tgz#13ca515d86206da0bac66e834dd397d87581094c" 275 | 276 | async-each@^1.0.0: 277 | version "1.0.1" 278 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 279 | 280 | async@^1.3.0, async@^1.4.0: 281 | version "1.5.2" 282 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 283 | 284 | asynckit@^0.4.0: 285 | version "0.4.0" 286 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 287 | 288 | aws-sign2@~0.6.0: 289 | version "0.6.0" 290 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 291 | 292 | aws4@^1.2.1: 293 | version "1.6.0" 294 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 295 | 296 | babel-cli@^6.24.1: 297 | version "6.24.1" 298 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.24.1.tgz#207cd705bba61489b2ea41b5312341cf6aca2283" 299 | dependencies: 300 | babel-core "^6.24.1" 301 | babel-polyfill "^6.23.0" 302 | babel-register "^6.24.1" 303 | babel-runtime "^6.22.0" 304 | commander "^2.8.1" 305 | convert-source-map "^1.1.0" 306 | fs-readdir-recursive "^1.0.0" 307 | glob "^7.0.0" 308 | lodash "^4.2.0" 309 | output-file-sync "^1.1.0" 310 | path-is-absolute "^1.0.0" 311 | slash "^1.0.0" 312 | source-map "^0.5.0" 313 | v8flags "^2.0.10" 314 | optionalDependencies: 315 | chokidar "^1.6.1" 316 | 317 | babel-code-frame@^6.16.0, babel-code-frame@^6.22.0: 318 | version "6.22.0" 319 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 320 | dependencies: 321 | chalk "^1.1.0" 322 | esutils "^2.0.2" 323 | js-tokens "^3.0.0" 324 | 325 | babel-core@^6.24.1: 326 | version "6.24.1" 327 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.1.tgz#8c428564dce1e1f41fb337ec34f4c3b022b5ad83" 328 | dependencies: 329 | babel-code-frame "^6.22.0" 330 | babel-generator "^6.24.1" 331 | babel-helpers "^6.24.1" 332 | babel-messages "^6.23.0" 333 | babel-register "^6.24.1" 334 | babel-runtime "^6.22.0" 335 | babel-template "^6.24.1" 336 | babel-traverse "^6.24.1" 337 | babel-types "^6.24.1" 338 | babylon "^6.11.0" 339 | convert-source-map "^1.1.0" 340 | debug "^2.1.1" 341 | json5 "^0.5.0" 342 | lodash "^4.2.0" 343 | minimatch "^3.0.2" 344 | path-is-absolute "^1.0.0" 345 | private "^0.1.6" 346 | slash "^1.0.0" 347 | source-map "^0.5.0" 348 | 349 | babel-eslint@^7.2.3: 350 | version "7.2.3" 351 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-7.2.3.tgz#b2fe2d80126470f5c19442dc757253a897710827" 352 | dependencies: 353 | babel-code-frame "^6.22.0" 354 | babel-traverse "^6.23.1" 355 | babel-types "^6.23.0" 356 | babylon "^6.17.0" 357 | 358 | babel-generator@^6.18.0, babel-generator@^6.24.1: 359 | version "6.24.1" 360 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.1.tgz#e715f486c58ded25649d888944d52aa07c5d9497" 361 | dependencies: 362 | babel-messages "^6.23.0" 363 | babel-runtime "^6.22.0" 364 | babel-types "^6.24.1" 365 | detect-indent "^4.0.0" 366 | jsesc "^1.3.0" 367 | lodash "^4.2.0" 368 | source-map "^0.5.0" 369 | trim-right "^1.0.1" 370 | 371 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 372 | version "6.24.1" 373 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 374 | dependencies: 375 | babel-helper-explode-assignable-expression "^6.24.1" 376 | babel-runtime "^6.22.0" 377 | babel-types "^6.24.1" 378 | 379 | babel-helper-builder-react-jsx@^6.24.1: 380 | version "6.24.1" 381 | resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.24.1.tgz#0ad7917e33c8d751e646daca4e77cc19377d2cbc" 382 | dependencies: 383 | babel-runtime "^6.22.0" 384 | babel-types "^6.24.1" 385 | esutils "^2.0.0" 386 | 387 | babel-helper-call-delegate@^6.24.1: 388 | version "6.24.1" 389 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 390 | dependencies: 391 | babel-helper-hoist-variables "^6.24.1" 392 | babel-runtime "^6.22.0" 393 | babel-traverse "^6.24.1" 394 | babel-types "^6.24.1" 395 | 396 | babel-helper-define-map@^6.24.1: 397 | version "6.24.1" 398 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.24.1.tgz#7a9747f258d8947d32d515f6aa1c7bd02204a080" 399 | dependencies: 400 | babel-helper-function-name "^6.24.1" 401 | babel-runtime "^6.22.0" 402 | babel-types "^6.24.1" 403 | lodash "^4.2.0" 404 | 405 | babel-helper-explode-assignable-expression@^6.24.1: 406 | version "6.24.1" 407 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 408 | dependencies: 409 | babel-runtime "^6.22.0" 410 | babel-traverse "^6.24.1" 411 | babel-types "^6.24.1" 412 | 413 | babel-helper-function-name@^6.24.1: 414 | version "6.24.1" 415 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 416 | dependencies: 417 | babel-helper-get-function-arity "^6.24.1" 418 | babel-runtime "^6.22.0" 419 | babel-template "^6.24.1" 420 | babel-traverse "^6.24.1" 421 | babel-types "^6.24.1" 422 | 423 | babel-helper-get-function-arity@^6.24.1: 424 | version "6.24.1" 425 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 426 | dependencies: 427 | babel-runtime "^6.22.0" 428 | babel-types "^6.24.1" 429 | 430 | babel-helper-hoist-variables@^6.24.1: 431 | version "6.24.1" 432 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 433 | dependencies: 434 | babel-runtime "^6.22.0" 435 | babel-types "^6.24.1" 436 | 437 | babel-helper-optimise-call-expression@^6.24.1: 438 | version "6.24.1" 439 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 440 | dependencies: 441 | babel-runtime "^6.22.0" 442 | babel-types "^6.24.1" 443 | 444 | babel-helper-regex@^6.24.1: 445 | version "6.24.1" 446 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz#d36e22fab1008d79d88648e32116868128456ce8" 447 | dependencies: 448 | babel-runtime "^6.22.0" 449 | babel-types "^6.24.1" 450 | lodash "^4.2.0" 451 | 452 | babel-helper-remap-async-to-generator@^6.24.1: 453 | version "6.24.1" 454 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 455 | dependencies: 456 | babel-helper-function-name "^6.24.1" 457 | babel-runtime "^6.22.0" 458 | babel-template "^6.24.1" 459 | babel-traverse "^6.24.1" 460 | babel-types "^6.24.1" 461 | 462 | babel-helper-replace-supers@^6.24.1: 463 | version "6.24.1" 464 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 465 | dependencies: 466 | babel-helper-optimise-call-expression "^6.24.1" 467 | babel-messages "^6.23.0" 468 | babel-runtime "^6.22.0" 469 | babel-template "^6.24.1" 470 | babel-traverse "^6.24.1" 471 | babel-types "^6.24.1" 472 | 473 | babel-helpers@^6.24.1: 474 | version "6.24.1" 475 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 476 | dependencies: 477 | babel-runtime "^6.22.0" 478 | babel-template "^6.24.1" 479 | 480 | babel-messages@^6.23.0: 481 | version "6.23.0" 482 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 483 | dependencies: 484 | babel-runtime "^6.22.0" 485 | 486 | babel-plugin-check-es2015-constants@^6.22.0: 487 | version "6.22.0" 488 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 489 | dependencies: 490 | babel-runtime "^6.22.0" 491 | 492 | babel-plugin-syntax-async-functions@^6.8.0: 493 | version "6.13.0" 494 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 495 | 496 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 497 | version "6.13.0" 498 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 499 | 500 | babel-plugin-syntax-flow@^6.18.0: 501 | version "6.18.0" 502 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" 503 | 504 | babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0: 505 | version "6.18.0" 506 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" 507 | 508 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 509 | version "6.22.0" 510 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 511 | 512 | babel-plugin-transform-async-to-generator@^6.22.0: 513 | version "6.24.1" 514 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 515 | dependencies: 516 | babel-helper-remap-async-to-generator "^6.24.1" 517 | babel-plugin-syntax-async-functions "^6.8.0" 518 | babel-runtime "^6.22.0" 519 | 520 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 521 | version "6.22.0" 522 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 523 | dependencies: 524 | babel-runtime "^6.22.0" 525 | 526 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 527 | version "6.22.0" 528 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 529 | dependencies: 530 | babel-runtime "^6.22.0" 531 | 532 | babel-plugin-transform-es2015-block-scoping@^6.23.0: 533 | version "6.24.1" 534 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.24.1.tgz#76c295dc3a4741b1665adfd3167215dcff32a576" 535 | dependencies: 536 | babel-runtime "^6.22.0" 537 | babel-template "^6.24.1" 538 | babel-traverse "^6.24.1" 539 | babel-types "^6.24.1" 540 | lodash "^4.2.0" 541 | 542 | babel-plugin-transform-es2015-classes@^6.23.0: 543 | version "6.24.1" 544 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 545 | dependencies: 546 | babel-helper-define-map "^6.24.1" 547 | babel-helper-function-name "^6.24.1" 548 | babel-helper-optimise-call-expression "^6.24.1" 549 | babel-helper-replace-supers "^6.24.1" 550 | babel-messages "^6.23.0" 551 | babel-runtime "^6.22.0" 552 | babel-template "^6.24.1" 553 | babel-traverse "^6.24.1" 554 | babel-types "^6.24.1" 555 | 556 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 557 | version "6.24.1" 558 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 559 | dependencies: 560 | babel-runtime "^6.22.0" 561 | babel-template "^6.24.1" 562 | 563 | babel-plugin-transform-es2015-destructuring@^6.23.0: 564 | version "6.23.0" 565 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 566 | dependencies: 567 | babel-runtime "^6.22.0" 568 | 569 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 570 | version "6.24.1" 571 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 572 | dependencies: 573 | babel-runtime "^6.22.0" 574 | babel-types "^6.24.1" 575 | 576 | babel-plugin-transform-es2015-for-of@^6.23.0: 577 | version "6.23.0" 578 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 579 | dependencies: 580 | babel-runtime "^6.22.0" 581 | 582 | babel-plugin-transform-es2015-function-name@^6.22.0: 583 | version "6.24.1" 584 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 585 | dependencies: 586 | babel-helper-function-name "^6.24.1" 587 | babel-runtime "^6.22.0" 588 | babel-types "^6.24.1" 589 | 590 | babel-plugin-transform-es2015-literals@^6.22.0: 591 | version "6.22.0" 592 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 593 | dependencies: 594 | babel-runtime "^6.22.0" 595 | 596 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: 597 | version "6.24.1" 598 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 599 | dependencies: 600 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 601 | babel-runtime "^6.22.0" 602 | babel-template "^6.24.1" 603 | 604 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 605 | version "6.24.1" 606 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz#d3e310b40ef664a36622200097c6d440298f2bfe" 607 | dependencies: 608 | babel-plugin-transform-strict-mode "^6.24.1" 609 | babel-runtime "^6.22.0" 610 | babel-template "^6.24.1" 611 | babel-types "^6.24.1" 612 | 613 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0: 614 | version "6.24.1" 615 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 616 | dependencies: 617 | babel-helper-hoist-variables "^6.24.1" 618 | babel-runtime "^6.22.0" 619 | babel-template "^6.24.1" 620 | 621 | babel-plugin-transform-es2015-modules-umd@^6.23.0: 622 | version "6.24.1" 623 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 624 | dependencies: 625 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 626 | babel-runtime "^6.22.0" 627 | babel-template "^6.24.1" 628 | 629 | babel-plugin-transform-es2015-object-super@^6.22.0: 630 | version "6.24.1" 631 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 632 | dependencies: 633 | babel-helper-replace-supers "^6.24.1" 634 | babel-runtime "^6.22.0" 635 | 636 | babel-plugin-transform-es2015-parameters@^6.23.0: 637 | version "6.24.1" 638 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 639 | dependencies: 640 | babel-helper-call-delegate "^6.24.1" 641 | babel-helper-get-function-arity "^6.24.1" 642 | babel-runtime "^6.22.0" 643 | babel-template "^6.24.1" 644 | babel-traverse "^6.24.1" 645 | babel-types "^6.24.1" 646 | 647 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 648 | version "6.24.1" 649 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 650 | dependencies: 651 | babel-runtime "^6.22.0" 652 | babel-types "^6.24.1" 653 | 654 | babel-plugin-transform-es2015-spread@^6.22.0: 655 | version "6.22.0" 656 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 657 | dependencies: 658 | babel-runtime "^6.22.0" 659 | 660 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 661 | version "6.24.1" 662 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 663 | dependencies: 664 | babel-helper-regex "^6.24.1" 665 | babel-runtime "^6.22.0" 666 | babel-types "^6.24.1" 667 | 668 | babel-plugin-transform-es2015-template-literals@^6.22.0: 669 | version "6.22.0" 670 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 671 | dependencies: 672 | babel-runtime "^6.22.0" 673 | 674 | babel-plugin-transform-es2015-typeof-symbol@^6.23.0: 675 | version "6.23.0" 676 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 677 | dependencies: 678 | babel-runtime "^6.22.0" 679 | 680 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 681 | version "6.24.1" 682 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 683 | dependencies: 684 | babel-helper-regex "^6.24.1" 685 | babel-runtime "^6.22.0" 686 | regexpu-core "^2.0.0" 687 | 688 | babel-plugin-transform-exponentiation-operator@^6.22.0: 689 | version "6.24.1" 690 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 691 | dependencies: 692 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 693 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 694 | babel-runtime "^6.22.0" 695 | 696 | babel-plugin-transform-flow-strip-types@^6.22.0: 697 | version "6.22.0" 698 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" 699 | dependencies: 700 | babel-plugin-syntax-flow "^6.18.0" 701 | babel-runtime "^6.22.0" 702 | 703 | babel-plugin-transform-react-display-name@^6.23.0: 704 | version "6.23.0" 705 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.23.0.tgz#4398910c358441dc4cef18787264d0412ed36b37" 706 | dependencies: 707 | babel-runtime "^6.22.0" 708 | 709 | babel-plugin-transform-react-jsx-self@^6.22.0: 710 | version "6.22.0" 711 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e" 712 | dependencies: 713 | babel-plugin-syntax-jsx "^6.8.0" 714 | babel-runtime "^6.22.0" 715 | 716 | babel-plugin-transform-react-jsx-source@^6.22.0: 717 | version "6.22.0" 718 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6" 719 | dependencies: 720 | babel-plugin-syntax-jsx "^6.8.0" 721 | babel-runtime "^6.22.0" 722 | 723 | babel-plugin-transform-react-jsx@^6.24.1: 724 | version "6.24.1" 725 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3" 726 | dependencies: 727 | babel-helper-builder-react-jsx "^6.24.1" 728 | babel-plugin-syntax-jsx "^6.8.0" 729 | babel-runtime "^6.22.0" 730 | 731 | babel-plugin-transform-regenerator@^6.22.0: 732 | version "6.24.1" 733 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.24.1.tgz#b8da305ad43c3c99b4848e4fe4037b770d23c418" 734 | dependencies: 735 | regenerator-transform "0.9.11" 736 | 737 | babel-plugin-transform-strict-mode@^6.24.1: 738 | version "6.24.1" 739 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 740 | dependencies: 741 | babel-runtime "^6.22.0" 742 | babel-types "^6.24.1" 743 | 744 | babel-polyfill@^6.23.0: 745 | version "6.23.0" 746 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.23.0.tgz#8364ca62df8eafb830499f699177466c3b03499d" 747 | dependencies: 748 | babel-runtime "^6.22.0" 749 | core-js "^2.4.0" 750 | regenerator-runtime "^0.10.0" 751 | 752 | babel-preset-env@^1.4.0: 753 | version "1.4.0" 754 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.4.0.tgz#c8e02a3bcc7792f23cded68e0355b9d4c28f0f7a" 755 | dependencies: 756 | babel-plugin-check-es2015-constants "^6.22.0" 757 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 758 | babel-plugin-transform-async-to-generator "^6.22.0" 759 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 760 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 761 | babel-plugin-transform-es2015-block-scoping "^6.23.0" 762 | babel-plugin-transform-es2015-classes "^6.23.0" 763 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 764 | babel-plugin-transform-es2015-destructuring "^6.23.0" 765 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 766 | babel-plugin-transform-es2015-for-of "^6.23.0" 767 | babel-plugin-transform-es2015-function-name "^6.22.0" 768 | babel-plugin-transform-es2015-literals "^6.22.0" 769 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 770 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0" 771 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0" 772 | babel-plugin-transform-es2015-modules-umd "^6.23.0" 773 | babel-plugin-transform-es2015-object-super "^6.22.0" 774 | babel-plugin-transform-es2015-parameters "^6.23.0" 775 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 776 | babel-plugin-transform-es2015-spread "^6.22.0" 777 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 778 | babel-plugin-transform-es2015-template-literals "^6.22.0" 779 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0" 780 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 781 | babel-plugin-transform-exponentiation-operator "^6.22.0" 782 | babel-plugin-transform-regenerator "^6.22.0" 783 | browserslist "^1.4.0" 784 | invariant "^2.2.2" 785 | 786 | babel-preset-flow@^6.23.0: 787 | version "6.23.0" 788 | resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d" 789 | dependencies: 790 | babel-plugin-transform-flow-strip-types "^6.22.0" 791 | 792 | babel-preset-react@^6.24.1: 793 | version "6.24.1" 794 | resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.24.1.tgz#ba69dfaea45fc3ec639b6a4ecea6e17702c91380" 795 | dependencies: 796 | babel-plugin-syntax-jsx "^6.3.13" 797 | babel-plugin-transform-react-display-name "^6.23.0" 798 | babel-plugin-transform-react-jsx "^6.24.1" 799 | babel-plugin-transform-react-jsx-self "^6.22.0" 800 | babel-plugin-transform-react-jsx-source "^6.22.0" 801 | babel-preset-flow "^6.23.0" 802 | 803 | babel-register@^6.24.1: 804 | version "6.24.1" 805 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 806 | dependencies: 807 | babel-core "^6.24.1" 808 | babel-runtime "^6.22.0" 809 | core-js "^2.4.0" 810 | home-or-tmp "^2.0.0" 811 | lodash "^4.2.0" 812 | mkdirp "^0.5.1" 813 | source-map-support "^0.4.2" 814 | 815 | babel-runtime@^6.18.0, babel-runtime@^6.22.0: 816 | version "6.23.0" 817 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 818 | dependencies: 819 | core-js "^2.4.0" 820 | regenerator-runtime "^0.10.0" 821 | 822 | babel-template@^6.16.0, babel-template@^6.24.1: 823 | version "6.24.1" 824 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.24.1.tgz#04ae514f1f93b3a2537f2a0f60a5a45fb8308333" 825 | dependencies: 826 | babel-runtime "^6.22.0" 827 | babel-traverse "^6.24.1" 828 | babel-types "^6.24.1" 829 | babylon "^6.11.0" 830 | lodash "^4.2.0" 831 | 832 | babel-traverse@^6.18.0, babel-traverse@^6.23.1, babel-traverse@^6.24.1: 833 | version "6.24.1" 834 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.24.1.tgz#ab36673fd356f9a0948659e7b338d5feadb31695" 835 | dependencies: 836 | babel-code-frame "^6.22.0" 837 | babel-messages "^6.23.0" 838 | babel-runtime "^6.22.0" 839 | babel-types "^6.24.1" 840 | babylon "^6.15.0" 841 | debug "^2.2.0" 842 | globals "^9.0.0" 843 | invariant "^2.2.0" 844 | lodash "^4.2.0" 845 | 846 | babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.23.0, babel-types@^6.24.1: 847 | version "6.24.1" 848 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.24.1.tgz#a136879dc15b3606bda0d90c1fc74304c2ff0975" 849 | dependencies: 850 | babel-runtime "^6.22.0" 851 | esutils "^2.0.2" 852 | lodash "^4.2.0" 853 | to-fast-properties "^1.0.1" 854 | 855 | babylon@^6.11.0, babylon@^6.13.0, babylon@^6.15.0, babylon@^6.17.0: 856 | version "6.17.1" 857 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.1.tgz#17f14fddf361b695981fe679385e4f1c01ebd86f" 858 | 859 | balanced-match@^1.0.0: 860 | version "1.0.0" 861 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 862 | 863 | bcrypt-pbkdf@^1.0.0: 864 | version "1.0.1" 865 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 866 | dependencies: 867 | tweetnacl "^0.14.3" 868 | 869 | binary-extensions@^1.0.0: 870 | version "1.8.0" 871 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 872 | 873 | block-stream@*: 874 | version "0.0.9" 875 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 876 | dependencies: 877 | inherits "~2.0.0" 878 | 879 | bluebird@^2.9.33: 880 | version "2.11.0" 881 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-2.11.0.tgz#534b9033c022c9579c56ba3b3e5a5caafbb650e1" 882 | 883 | boolbase@~1.0.0: 884 | version "1.0.0" 885 | resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" 886 | 887 | boom@2.x.x: 888 | version "2.10.1" 889 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 890 | dependencies: 891 | hoek "2.x.x" 892 | 893 | brace-expansion@^1.1.7: 894 | version "1.1.11" 895 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 896 | dependencies: 897 | balanced-match "^1.0.0" 898 | concat-map "0.0.1" 899 | 900 | braces@^1.8.0, braces@^1.8.2: 901 | version "1.8.5" 902 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 903 | dependencies: 904 | expand-range "^1.8.1" 905 | preserve "^0.2.0" 906 | repeat-element "^1.1.2" 907 | 908 | browser-stdout@1.3.0: 909 | version "1.3.0" 910 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f" 911 | 912 | browserslist@^1.4.0: 913 | version "1.7.7" 914 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-1.7.7.tgz#0bd76704258be829b2398bb50e4b62d1a166b0b9" 915 | dependencies: 916 | caniuse-db "^1.0.30000639" 917 | electron-to-chromium "^1.2.7" 918 | 919 | buffer-shims@~1.0.0: 920 | version "1.0.0" 921 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 922 | 923 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 924 | version "1.1.1" 925 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 926 | 927 | caching-transform@^1.0.0: 928 | version "1.0.1" 929 | resolved "https://registry.yarnpkg.com/caching-transform/-/caching-transform-1.0.1.tgz#6dbdb2f20f8d8fbce79f3e94e9d1742dcdf5c0a1" 930 | dependencies: 931 | md5-hex "^1.2.0" 932 | mkdirp "^0.5.1" 933 | write-file-atomic "^1.1.4" 934 | 935 | caller-path@^0.1.0: 936 | version "0.1.0" 937 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 938 | dependencies: 939 | callsites "^0.2.0" 940 | 941 | callsites@^0.2.0: 942 | version "0.2.0" 943 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 944 | 945 | camelcase@^1.0.2: 946 | version "1.2.1" 947 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 948 | 949 | camelcase@^3.0.0: 950 | version "3.0.0" 951 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 952 | 953 | caniuse-db@^1.0.30000639: 954 | version "1.0.30000670" 955 | resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000670.tgz#90d33b79e3090e25829c311113c56d6b1788bf43" 956 | 957 | caseless@~0.12.0: 958 | version "0.12.0" 959 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 960 | 961 | center-align@^0.1.1: 962 | version "0.1.3" 963 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 964 | dependencies: 965 | align-text "^0.1.3" 966 | lazy-cache "^1.0.3" 967 | 968 | chai@^3.5.0: 969 | version "3.5.0" 970 | resolved "https://registry.yarnpkg.com/chai/-/chai-3.5.0.tgz#4d02637b067fe958bdbfdd3a40ec56fef7373247" 971 | dependencies: 972 | assertion-error "^1.0.1" 973 | deep-eql "^0.1.3" 974 | type-detect "^1.0.0" 975 | 976 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 977 | version "1.1.3" 978 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 979 | dependencies: 980 | ansi-styles "^2.2.1" 981 | escape-string-regexp "^1.0.2" 982 | has-ansi "^2.0.0" 983 | strip-ansi "^3.0.0" 984 | supports-color "^2.0.0" 985 | 986 | cheerio@^0.22.0: 987 | version "0.22.0" 988 | resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-0.22.0.tgz#a9baa860a3f9b595a6b81b1a86873121ed3a269e" 989 | dependencies: 990 | css-select "~1.2.0" 991 | dom-serializer "~0.1.0" 992 | entities "~1.1.1" 993 | htmlparser2 "^3.9.1" 994 | lodash.assignin "^4.0.9" 995 | lodash.bind "^4.1.4" 996 | lodash.defaults "^4.0.1" 997 | lodash.filter "^4.4.0" 998 | lodash.flatten "^4.2.0" 999 | lodash.foreach "^4.3.0" 1000 | lodash.map "^4.4.0" 1001 | lodash.merge "^4.4.0" 1002 | lodash.pick "^4.2.1" 1003 | lodash.reduce "^4.4.0" 1004 | lodash.reject "^4.4.0" 1005 | lodash.some "^4.4.0" 1006 | 1007 | chokidar@^1.6.1: 1008 | version "1.7.0" 1009 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 1010 | dependencies: 1011 | anymatch "^1.3.0" 1012 | async-each "^1.0.0" 1013 | glob-parent "^2.0.0" 1014 | inherits "^2.0.1" 1015 | is-binary-path "^1.0.0" 1016 | is-glob "^2.0.0" 1017 | path-is-absolute "^1.0.0" 1018 | readdirp "^2.0.0" 1019 | optionalDependencies: 1020 | fsevents "^1.0.0" 1021 | 1022 | circular-json@^0.3.1: 1023 | version "0.3.1" 1024 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 1025 | 1026 | cli-cursor@^1.0.1: 1027 | version "1.0.2" 1028 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 1029 | dependencies: 1030 | restore-cursor "^1.0.1" 1031 | 1032 | cli-width@^2.0.0: 1033 | version "2.1.0" 1034 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 1035 | 1036 | cliui@^2.1.0: 1037 | version "2.1.0" 1038 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 1039 | dependencies: 1040 | center-align "^0.1.1" 1041 | right-align "^0.1.1" 1042 | wordwrap "0.0.2" 1043 | 1044 | cliui@^3.2.0: 1045 | version "3.2.0" 1046 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 1047 | dependencies: 1048 | string-width "^1.0.1" 1049 | strip-ansi "^3.0.1" 1050 | wrap-ansi "^2.0.0" 1051 | 1052 | co@^4.6.0: 1053 | version "4.6.0" 1054 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 1055 | 1056 | code-point-at@^1.0.0: 1057 | version "1.1.0" 1058 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 1059 | 1060 | combined-stream@^1.0.5, combined-stream@~1.0.5: 1061 | version "1.0.5" 1062 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 1063 | dependencies: 1064 | delayed-stream "~1.0.0" 1065 | 1066 | commander@2.9.0, commander@^2.8.1: 1067 | version "2.9.0" 1068 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 1069 | dependencies: 1070 | graceful-readlink ">= 1.0.0" 1071 | 1072 | commondir@^1.0.1: 1073 | version "1.0.1" 1074 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 1075 | 1076 | component-emitter@^1.2.0: 1077 | version "1.2.1" 1078 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 1079 | 1080 | concat-map@0.0.1: 1081 | version "0.0.1" 1082 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1083 | 1084 | concat-stream@^1.5.2: 1085 | version "1.6.0" 1086 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 1087 | dependencies: 1088 | inherits "^2.0.3" 1089 | readable-stream "^2.2.2" 1090 | typedarray "^0.0.6" 1091 | 1092 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1093 | version "1.1.0" 1094 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1095 | 1096 | contains-path@^0.1.0: 1097 | version "0.1.0" 1098 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 1099 | 1100 | convert-source-map@^1.1.0, convert-source-map@^1.3.0: 1101 | version "1.5.0" 1102 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 1103 | 1104 | core-js@^1.0.0: 1105 | version "1.2.7" 1106 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 1107 | 1108 | core-js@^2.4.0: 1109 | version "2.4.1" 1110 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 1111 | 1112 | core-util-is@~1.0.0: 1113 | version "1.0.2" 1114 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1115 | 1116 | cross-spawn@^4: 1117 | version "4.0.2" 1118 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.2.tgz#7b9247621c23adfdd3856004a823cbe397424d41" 1119 | dependencies: 1120 | lru-cache "^4.0.1" 1121 | which "^1.2.9" 1122 | 1123 | cryptiles@2.x.x: 1124 | version "2.0.5" 1125 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1126 | dependencies: 1127 | boom "2.x.x" 1128 | 1129 | css-select@~1.2.0: 1130 | version "1.2.0" 1131 | resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" 1132 | dependencies: 1133 | boolbase "~1.0.0" 1134 | css-what "2.1" 1135 | domutils "1.5.1" 1136 | nth-check "~1.0.1" 1137 | 1138 | css-what@2.1: 1139 | version "2.1.0" 1140 | resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.0.tgz#9467d032c38cfaefb9f2d79501253062f87fa1bd" 1141 | 1142 | d@1: 1143 | version "1.0.0" 1144 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 1145 | dependencies: 1146 | es5-ext "^0.10.9" 1147 | 1148 | dashdash@^1.12.0: 1149 | version "1.14.1" 1150 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1151 | dependencies: 1152 | assert-plus "^1.0.0" 1153 | 1154 | debug-log@^1.0.1: 1155 | version "1.0.1" 1156 | resolved "https://registry.yarnpkg.com/debug-log/-/debug-log-1.0.1.tgz#2307632d4c04382b8df8a32f70b895046d52745f" 1157 | 1158 | debug@2.2.0: 1159 | version "2.2.0" 1160 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 1161 | dependencies: 1162 | ms "0.7.1" 1163 | 1164 | debug@2.6.0, debug@^2.1.1, debug@^2.2.0: 1165 | version "2.6.0" 1166 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.0.tgz#bc596bcabe7617f11d9fa15361eded5608b8499b" 1167 | dependencies: 1168 | ms "0.7.2" 1169 | 1170 | debug@^2.6.3: 1171 | version "2.6.8" 1172 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 1173 | dependencies: 1174 | ms "2.0.0" 1175 | 1176 | decamelize@^1.0.0, decamelize@^1.1.1: 1177 | version "1.2.0" 1178 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1179 | 1180 | deep-eql@^0.1.3: 1181 | version "0.1.3" 1182 | resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-0.1.3.tgz#ef558acab8de25206cd713906d74e56930eb69f2" 1183 | dependencies: 1184 | type-detect "0.1.1" 1185 | 1186 | deep-extend@~0.4.0: 1187 | version "0.4.2" 1188 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 1189 | 1190 | deep-is@~0.1.3: 1191 | version "0.1.3" 1192 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1193 | 1194 | default-require-extensions@^1.0.0: 1195 | version "1.0.0" 1196 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 1197 | dependencies: 1198 | strip-bom "^2.0.0" 1199 | 1200 | define-properties@^1.1.2: 1201 | version "1.1.2" 1202 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 1203 | dependencies: 1204 | foreach "^2.0.5" 1205 | object-keys "^1.0.8" 1206 | 1207 | del@^2.0.2: 1208 | version "2.2.2" 1209 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 1210 | dependencies: 1211 | globby "^5.0.0" 1212 | is-path-cwd "^1.0.0" 1213 | is-path-in-cwd "^1.0.0" 1214 | object-assign "^4.0.1" 1215 | pify "^2.0.0" 1216 | pinkie-promise "^2.0.0" 1217 | rimraf "^2.2.8" 1218 | 1219 | delayed-stream@~1.0.0: 1220 | version "1.0.0" 1221 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1222 | 1223 | delegates@^1.0.0: 1224 | version "1.0.0" 1225 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1226 | 1227 | detect-file@^0.1.0: 1228 | version "0.1.0" 1229 | resolved "https://registry.yarnpkg.com/detect-file/-/detect-file-0.1.0.tgz#4935dedfd9488648e006b0129566e9386711ea63" 1230 | dependencies: 1231 | fs-exists-sync "^0.1.0" 1232 | 1233 | detect-indent@^4.0.0: 1234 | version "4.0.0" 1235 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1236 | dependencies: 1237 | repeating "^2.0.0" 1238 | 1239 | diff@3.2.0, diff@^3.1.0: 1240 | version "3.2.0" 1241 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 1242 | 1243 | doctrine@1.5.0: 1244 | version "1.5.0" 1245 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 1246 | dependencies: 1247 | esutils "^2.0.2" 1248 | isarray "^1.0.0" 1249 | 1250 | doctrine@^2.0.0: 1251 | version "2.0.0" 1252 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" 1253 | dependencies: 1254 | esutils "^2.0.2" 1255 | isarray "^1.0.0" 1256 | 1257 | dom-serializer@0, dom-serializer@~0.1.0: 1258 | version "0.1.0" 1259 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82" 1260 | dependencies: 1261 | domelementtype "~1.1.1" 1262 | entities "~1.1.1" 1263 | 1264 | domelementtype@1, domelementtype@^1.3.0: 1265 | version "1.3.0" 1266 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.0.tgz#b17aed82e8ab59e52dd9c19b1756e0fc187204c2" 1267 | 1268 | domelementtype@~1.1.1: 1269 | version "1.1.3" 1270 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.1.3.tgz#bd28773e2642881aec51544924299c5cd822185b" 1271 | 1272 | domhandler@^2.3.0: 1273 | version "2.4.1" 1274 | resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.4.1.tgz#892e47000a99be55bbf3774ffea0561d8879c259" 1275 | dependencies: 1276 | domelementtype "1" 1277 | 1278 | domutils@1.5.1, domutils@^1.5.1: 1279 | version "1.5.1" 1280 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" 1281 | dependencies: 1282 | dom-serializer "0" 1283 | domelementtype "1" 1284 | 1285 | dotdir-regex@^0.1.0: 1286 | version "0.1.0" 1287 | resolved "https://registry.yarnpkg.com/dotdir-regex/-/dotdir-regex-0.1.0.tgz#d45df4c8863be6f5593d716914381767e938c0b6" 1288 | 1289 | ecc-jsbn@~0.1.1: 1290 | version "0.1.1" 1291 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1292 | dependencies: 1293 | jsbn "~0.1.0" 1294 | 1295 | electron-to-chromium@^1.2.7: 1296 | version "1.3.11" 1297 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.11.tgz#744761df1d67b492b322ce9aa0aba5393260eb61" 1298 | 1299 | encoding@^0.1.11: 1300 | version "0.1.12" 1301 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 1302 | dependencies: 1303 | iconv-lite "~0.4.13" 1304 | 1305 | ends-with@^0.2.0: 1306 | version "0.2.0" 1307 | resolved "https://registry.yarnpkg.com/ends-with/-/ends-with-0.2.0.tgz#2f9da98d57a50cfda4571ce4339000500f4e6b8a" 1308 | 1309 | entities@^1.1.1, entities@~1.1.1: 1310 | version "1.1.1" 1311 | resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0" 1312 | 1313 | enzyme@^2.8.2: 1314 | version "2.8.2" 1315 | resolved "https://registry.yarnpkg.com/enzyme/-/enzyme-2.8.2.tgz#6c8bcb05012abc4aa4bc3213fb23780b9b5b1714" 1316 | dependencies: 1317 | cheerio "^0.22.0" 1318 | function.prototype.name "^1.0.0" 1319 | is-subset "^0.1.1" 1320 | lodash "^4.17.2" 1321 | object-is "^1.0.1" 1322 | object.assign "^4.0.4" 1323 | object.entries "^1.0.3" 1324 | object.values "^1.0.3" 1325 | prop-types "^15.5.4" 1326 | uuid "^2.0.3" 1327 | 1328 | error-ex@^1.2.0: 1329 | version "1.3.1" 1330 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1331 | dependencies: 1332 | is-arrayish "^0.2.1" 1333 | 1334 | es-abstract@^1.6.1: 1335 | version "1.7.0" 1336 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.7.0.tgz#dfade774e01bfcd97f96180298c449c8623fb94c" 1337 | dependencies: 1338 | es-to-primitive "^1.1.1" 1339 | function-bind "^1.1.0" 1340 | is-callable "^1.1.3" 1341 | is-regex "^1.0.3" 1342 | 1343 | es-to-primitive@^1.1.1: 1344 | version "1.1.1" 1345 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 1346 | dependencies: 1347 | is-callable "^1.1.1" 1348 | is-date-object "^1.0.1" 1349 | is-symbol "^1.0.1" 1350 | 1351 | es5-ext@^0.10.14, es5-ext@^0.10.9, es5-ext@~0.10.14: 1352 | version "0.10.21" 1353 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.21.tgz#19a725f9e51d0300bbc1e8e821109fd9daf55925" 1354 | dependencies: 1355 | es6-iterator "2" 1356 | es6-symbol "~3.1" 1357 | 1358 | es6-iterator@2, es6-iterator@^2.0.1, es6-iterator@~2.0.1: 1359 | version "2.0.1" 1360 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512" 1361 | dependencies: 1362 | d "1" 1363 | es5-ext "^0.10.14" 1364 | es6-symbol "^3.1" 1365 | 1366 | es6-map@^0.1.3: 1367 | version "0.1.5" 1368 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" 1369 | dependencies: 1370 | d "1" 1371 | es5-ext "~0.10.14" 1372 | es6-iterator "~2.0.1" 1373 | es6-set "~0.1.5" 1374 | es6-symbol "~3.1.1" 1375 | event-emitter "~0.3.5" 1376 | 1377 | es6-set@~0.1.5: 1378 | version "0.1.5" 1379 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" 1380 | dependencies: 1381 | d "1" 1382 | es5-ext "~0.10.14" 1383 | es6-iterator "~2.0.1" 1384 | es6-symbol "3.1.1" 1385 | event-emitter "~0.3.5" 1386 | 1387 | es6-symbol@3.1.1, es6-symbol@^3.1, es6-symbol@^3.1.1, es6-symbol@~3.1, es6-symbol@~3.1.1: 1388 | version "3.1.1" 1389 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 1390 | dependencies: 1391 | d "1" 1392 | es5-ext "~0.10.14" 1393 | 1394 | es6-weak-map@^2.0.1: 1395 | version "2.0.2" 1396 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" 1397 | dependencies: 1398 | d "1" 1399 | es5-ext "^0.10.14" 1400 | es6-iterator "^2.0.1" 1401 | es6-symbol "^3.1.1" 1402 | 1403 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1404 | version "1.0.5" 1405 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1406 | 1407 | escope@^3.6.0: 1408 | version "3.6.0" 1409 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 1410 | dependencies: 1411 | es6-map "^0.1.3" 1412 | es6-weak-map "^2.0.1" 1413 | esrecurse "^4.1.0" 1414 | estraverse "^4.1.1" 1415 | 1416 | eslint-import-resolver-node@^0.2.0: 1417 | version "0.2.3" 1418 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.2.3.tgz#5add8106e8c928db2cba232bcd9efa846e3da16c" 1419 | dependencies: 1420 | debug "^2.2.0" 1421 | object-assign "^4.0.1" 1422 | resolve "^1.1.6" 1423 | 1424 | eslint-module-utils@^2.0.0: 1425 | version "2.0.0" 1426 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.0.0.tgz#a6f8c21d901358759cdc35dbac1982ae1ee58bce" 1427 | dependencies: 1428 | debug "2.2.0" 1429 | pkg-dir "^1.0.0" 1430 | 1431 | eslint-plugin-flowtype@^2.33.0: 1432 | version "2.33.0" 1433 | resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-2.33.0.tgz#b2783814ed2ddcf729953b8f65ff73c90cabee4b" 1434 | dependencies: 1435 | lodash "^4.15.0" 1436 | 1437 | eslint-plugin-import@^2.3.0: 1438 | version "2.3.0" 1439 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.3.0.tgz#37c801e0ada0e296cbdf20c3f393acb5b52af36b" 1440 | dependencies: 1441 | builtin-modules "^1.1.1" 1442 | contains-path "^0.1.0" 1443 | debug "^2.2.0" 1444 | doctrine "1.5.0" 1445 | eslint-import-resolver-node "^0.2.0" 1446 | eslint-module-utils "^2.0.0" 1447 | has "^1.0.1" 1448 | lodash.cond "^4.3.0" 1449 | minimatch "^3.0.3" 1450 | read-pkg-up "^2.0.0" 1451 | 1452 | eslint-plugin-node@^4.2.2: 1453 | version "4.2.2" 1454 | resolved "https://registry.yarnpkg.com/eslint-plugin-node/-/eslint-plugin-node-4.2.2.tgz#82959ca9aed79fcbd28bb1b188d05cac04fb3363" 1455 | dependencies: 1456 | ignore "^3.0.11" 1457 | minimatch "^3.0.2" 1458 | object-assign "^4.0.1" 1459 | resolve "^1.1.7" 1460 | semver "5.3.0" 1461 | 1462 | eslint-plugin-promise@^3.5.0: 1463 | version "3.5.0" 1464 | resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-3.5.0.tgz#78fbb6ffe047201627569e85a6c5373af2a68fca" 1465 | 1466 | eslint-plugin-standard@^3.0.1: 1467 | version "3.0.1" 1468 | resolved "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-3.0.1.tgz#34d0c915b45edc6f010393c7eef3823b08565cf2" 1469 | 1470 | eslint@^3.19.0: 1471 | version "3.19.0" 1472 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.19.0.tgz#c8fc6201c7f40dd08941b87c085767386a679acc" 1473 | dependencies: 1474 | babel-code-frame "^6.16.0" 1475 | chalk "^1.1.3" 1476 | concat-stream "^1.5.2" 1477 | debug "^2.1.1" 1478 | doctrine "^2.0.0" 1479 | escope "^3.6.0" 1480 | espree "^3.4.0" 1481 | esquery "^1.0.0" 1482 | estraverse "^4.2.0" 1483 | esutils "^2.0.2" 1484 | file-entry-cache "^2.0.0" 1485 | glob "^7.0.3" 1486 | globals "^9.14.0" 1487 | ignore "^3.2.0" 1488 | imurmurhash "^0.1.4" 1489 | inquirer "^0.12.0" 1490 | is-my-json-valid "^2.10.0" 1491 | is-resolvable "^1.0.0" 1492 | js-yaml "^3.5.1" 1493 | json-stable-stringify "^1.0.0" 1494 | levn "^0.3.0" 1495 | lodash "^4.0.0" 1496 | mkdirp "^0.5.0" 1497 | natural-compare "^1.4.0" 1498 | optionator "^0.8.2" 1499 | path-is-inside "^1.0.1" 1500 | pluralize "^1.2.1" 1501 | progress "^1.1.8" 1502 | require-uncached "^1.0.2" 1503 | shelljs "^0.7.5" 1504 | strip-bom "^3.0.0" 1505 | strip-json-comments "~2.0.1" 1506 | table "^3.7.8" 1507 | text-table "~0.2.0" 1508 | user-home "^2.0.0" 1509 | 1510 | espree@^3.4.0: 1511 | version "3.4.3" 1512 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.3.tgz#2910b5ccd49ce893c2ffffaab4fd8b3a31b82374" 1513 | dependencies: 1514 | acorn "^5.0.1" 1515 | acorn-jsx "^3.0.0" 1516 | 1517 | esprima@^3.1.1: 1518 | version "3.1.3" 1519 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1520 | 1521 | esquery@^1.0.0: 1522 | version "1.0.0" 1523 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 1524 | dependencies: 1525 | estraverse "^4.0.0" 1526 | 1527 | esrecurse@^4.1.0: 1528 | version "4.1.0" 1529 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" 1530 | dependencies: 1531 | estraverse "~4.1.0" 1532 | object-assign "^4.0.1" 1533 | 1534 | estraverse@^4.0.0, estraverse@^4.1.1, estraverse@^4.2.0: 1535 | version "4.2.0" 1536 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1537 | 1538 | estraverse@~4.1.0: 1539 | version "4.1.1" 1540 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" 1541 | 1542 | esutils@^2.0.0, esutils@^2.0.2: 1543 | version "2.0.2" 1544 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1545 | 1546 | event-emitter@~0.3.5: 1547 | version "0.3.5" 1548 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 1549 | dependencies: 1550 | d "1" 1551 | es5-ext "~0.10.14" 1552 | 1553 | exit-hook@^1.0.0: 1554 | version "1.1.1" 1555 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1556 | 1557 | expand-brackets@^0.1.1, expand-brackets@^0.1.4: 1558 | version "0.1.5" 1559 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1560 | dependencies: 1561 | is-posix-bracket "^0.1.0" 1562 | 1563 | expand-range@^1.8.1: 1564 | version "1.8.2" 1565 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1566 | dependencies: 1567 | fill-range "^2.1.0" 1568 | 1569 | expand-tilde@^1.2.2: 1570 | version "1.2.2" 1571 | resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-1.2.2.tgz#0b81eba897e5a3d31d1c3d102f8f01441e559449" 1572 | dependencies: 1573 | os-homedir "^1.0.1" 1574 | 1575 | export-files@^2.0.1: 1576 | version "2.1.1" 1577 | resolved "https://registry.yarnpkg.com/export-files/-/export-files-2.1.1.tgz#bbf64574053a09e4eb98e5f43501d572b2c3ce7f" 1578 | dependencies: 1579 | lazy-cache "^1.0.3" 1580 | 1581 | extend-shallow@^2.0.0: 1582 | version "2.0.1" 1583 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 1584 | dependencies: 1585 | is-extendable "^0.1.0" 1586 | 1587 | extend@~3.0.0: 1588 | version "3.0.1" 1589 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1590 | 1591 | extglob@^0.3.0, extglob@^0.3.1: 1592 | version "0.3.2" 1593 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1594 | dependencies: 1595 | is-extglob "^1.0.0" 1596 | 1597 | extsprintf@1.0.2: 1598 | version "1.0.2" 1599 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1600 | 1601 | fast-levenshtein@~2.0.4: 1602 | version "2.0.6" 1603 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1604 | 1605 | fbjs@^0.8.4, fbjs@^0.8.9: 1606 | version "0.8.12" 1607 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.12.tgz#10b5d92f76d45575fd63a217d4ea02bea2f8ed04" 1608 | dependencies: 1609 | core-js "^1.0.0" 1610 | isomorphic-fetch "^2.1.1" 1611 | loose-envify "^1.0.0" 1612 | object-assign "^4.1.0" 1613 | promise "^7.1.1" 1614 | setimmediate "^1.0.5" 1615 | ua-parser-js "^0.7.9" 1616 | 1617 | figures@^1.3.5: 1618 | version "1.7.0" 1619 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1620 | dependencies: 1621 | escape-string-regexp "^1.0.5" 1622 | object-assign "^4.1.0" 1623 | 1624 | file-entry-cache@^2.0.0: 1625 | version "2.0.0" 1626 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1627 | dependencies: 1628 | flat-cache "^1.2.1" 1629 | object-assign "^4.0.1" 1630 | 1631 | filename-regex@^2.0.0: 1632 | version "2.0.1" 1633 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1634 | 1635 | fill-range@^2.1.0: 1636 | version "2.2.3" 1637 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1638 | dependencies: 1639 | is-number "^2.1.0" 1640 | isobject "^2.0.0" 1641 | randomatic "^1.1.3" 1642 | repeat-element "^1.1.2" 1643 | repeat-string "^1.5.2" 1644 | 1645 | find-cache-dir@^0.1.1: 1646 | version "0.1.1" 1647 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" 1648 | dependencies: 1649 | commondir "^1.0.1" 1650 | mkdirp "^0.5.1" 1651 | pkg-dir "^1.0.0" 1652 | 1653 | find-up@^1.0.0, find-up@^1.1.2: 1654 | version "1.1.2" 1655 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1656 | dependencies: 1657 | path-exists "^2.0.0" 1658 | pinkie-promise "^2.0.0" 1659 | 1660 | find-up@^2.0.0: 1661 | version "2.1.0" 1662 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1663 | dependencies: 1664 | locate-path "^2.0.0" 1665 | 1666 | findup-sync@^1.0.0: 1667 | version "1.0.0" 1668 | resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-1.0.0.tgz#6f7e4b57b6ee3a4037b4414eaedea3f58f71e0ec" 1669 | dependencies: 1670 | detect-file "^0.1.0" 1671 | is-glob "^2.0.1" 1672 | micromatch "^2.3.7" 1673 | resolve-dir "^0.1.0" 1674 | 1675 | flat-cache@^1.2.1: 1676 | version "1.2.2" 1677 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 1678 | dependencies: 1679 | circular-json "^0.3.1" 1680 | del "^2.0.2" 1681 | graceful-fs "^4.1.2" 1682 | write "^0.2.1" 1683 | 1684 | flow-bin@^0.46.0: 1685 | version "0.46.0" 1686 | resolved "https://registry.yarnpkg.com/flow-bin/-/flow-bin-0.46.0.tgz#06ad7fe19dddb1042264438064a2a32fee12b872" 1687 | 1688 | flow-remove-types@^1.2.1: 1689 | version "1.2.1" 1690 | resolved "https://registry.yarnpkg.com/flow-remove-types/-/flow-remove-types-1.2.1.tgz#58e261bf8b842bd234c86cafb982a1213aff0edb" 1691 | dependencies: 1692 | babylon "^6.15.0" 1693 | vlq "^0.2.1" 1694 | 1695 | for-in@^0.1.3: 1696 | version "0.1.8" 1697 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.8.tgz#d8773908e31256109952b1fdb9b3fa867d2775e1" 1698 | 1699 | for-in@^1.0.1: 1700 | version "1.0.2" 1701 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1702 | 1703 | for-own@^0.1.3, for-own@^0.1.4: 1704 | version "0.1.5" 1705 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1706 | dependencies: 1707 | for-in "^1.0.1" 1708 | 1709 | foreach@^2.0.5: 1710 | version "2.0.5" 1711 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1712 | 1713 | foreground-child@^1.3.3, foreground-child@^1.5.3: 1714 | version "1.5.6" 1715 | resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-1.5.6.tgz#4fd71ad2dfde96789b980a5c0a295937cb2f5ce9" 1716 | dependencies: 1717 | cross-spawn "^4" 1718 | signal-exit "^3.0.0" 1719 | 1720 | forever-agent@~0.6.1: 1721 | version "0.6.1" 1722 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1723 | 1724 | form-data@~2.1.1: 1725 | version "2.1.4" 1726 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1727 | dependencies: 1728 | asynckit "^0.4.0" 1729 | combined-stream "^1.0.5" 1730 | mime-types "^2.1.12" 1731 | 1732 | formatio@1.2.0: 1733 | version "1.2.0" 1734 | resolved "https://registry.yarnpkg.com/formatio/-/formatio-1.2.0.tgz#f3b2167d9068c4698a8d51f4f760a39a54d818eb" 1735 | dependencies: 1736 | samsam "1.x" 1737 | 1738 | fs-exists-sync@^0.1.0: 1739 | version "0.1.0" 1740 | resolved "https://registry.yarnpkg.com/fs-exists-sync/-/fs-exists-sync-0.1.0.tgz#982d6893af918e72d08dec9e8673ff2b5a8d6add" 1741 | 1742 | fs-readdir-recursive@^1.0.0: 1743 | version "1.0.0" 1744 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 1745 | 1746 | fs.realpath@^1.0.0: 1747 | version "1.0.0" 1748 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1749 | 1750 | fsevents@^1.0.0: 1751 | version "1.1.1" 1752 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.1.tgz#f19fd28f43eeaf761680e519a203c4d0b3d31aff" 1753 | dependencies: 1754 | nan "^2.3.0" 1755 | node-pre-gyp "^0.6.29" 1756 | 1757 | fstream-ignore@^1.0.5: 1758 | version "1.0.5" 1759 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1760 | dependencies: 1761 | fstream "^1.0.0" 1762 | inherits "2" 1763 | minimatch "^3.0.0" 1764 | 1765 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.12: 1766 | version "1.0.12" 1767 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.12.tgz#4e8ba8ee2d48be4f7d0de505455548eae5932045" 1768 | dependencies: 1769 | graceful-fs "^4.1.2" 1770 | inherits "~2.0.0" 1771 | mkdirp ">=0.5 0" 1772 | rimraf "2" 1773 | 1774 | function-bind@^1.0.2, function-bind@^1.1.0: 1775 | version "1.1.0" 1776 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 1777 | 1778 | function.prototype.name@^1.0.0: 1779 | version "1.0.0" 1780 | resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.0.0.tgz#5f523ca64e491a5f95aba80cc1e391080a14482e" 1781 | dependencies: 1782 | define-properties "^1.1.2" 1783 | function-bind "^1.1.0" 1784 | is-callable "^1.1.2" 1785 | 1786 | gauge@~2.7.3: 1787 | version "2.7.4" 1788 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1789 | dependencies: 1790 | aproba "^1.0.3" 1791 | console-control-strings "^1.0.0" 1792 | has-unicode "^2.0.0" 1793 | object-assign "^4.1.0" 1794 | signal-exit "^3.0.0" 1795 | string-width "^1.0.1" 1796 | strip-ansi "^3.0.1" 1797 | wide-align "^1.1.0" 1798 | 1799 | generate-function@^2.0.0: 1800 | version "2.0.0" 1801 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1802 | 1803 | generate-object-property@^1.1.0: 1804 | version "1.2.0" 1805 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1806 | dependencies: 1807 | is-property "^1.0.0" 1808 | 1809 | get-caller-file@^1.0.1: 1810 | version "1.0.2" 1811 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1812 | 1813 | get-value@^1.1.5: 1814 | version "1.3.1" 1815 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-1.3.1.tgz#8ac7ef4f20382392b2646548f9b9ad2dc6c89642" 1816 | dependencies: 1817 | arr-flatten "^1.0.1" 1818 | is-extendable "^0.1.1" 1819 | lazy-cache "^0.2.4" 1820 | noncharacters "^1.1.0" 1821 | 1822 | getpass@^0.1.1: 1823 | version "0.1.7" 1824 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1825 | dependencies: 1826 | assert-plus "^1.0.0" 1827 | 1828 | glob-base@^0.3.0: 1829 | version "0.3.0" 1830 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1831 | dependencies: 1832 | glob-parent "^2.0.0" 1833 | is-glob "^2.0.0" 1834 | 1835 | glob-fs-dotfiles@^0.1.6: 1836 | version "0.1.6" 1837 | resolved "https://registry.yarnpkg.com/glob-fs-dotfiles/-/glob-fs-dotfiles-0.1.6.tgz#b4f17b73c188418aba47cd206cf5a7226b4a8949" 1838 | 1839 | glob-fs-gitignore@^0.1.5: 1840 | version "0.1.6" 1841 | resolved "https://registry.yarnpkg.com/glob-fs-gitignore/-/glob-fs-gitignore-0.1.6.tgz#885e6f412f859cc59756154829dbd55726cde992" 1842 | dependencies: 1843 | findup-sync "^1.0.0" 1844 | micromatch "^2.3.11" 1845 | parse-gitignore "^0.2.0" 1846 | 1847 | glob-fs@^0.1.6: 1848 | version "0.1.6" 1849 | resolved "https://registry.yarnpkg.com/glob-fs/-/glob-fs-0.1.6.tgz#ffcd3c3c2d585749b938b1c22e3bc7a08b5c497a" 1850 | dependencies: 1851 | async "^1.3.0" 1852 | bluebird "^2.9.33" 1853 | component-emitter "^1.2.0" 1854 | ends-with "^0.2.0" 1855 | export-files "^2.0.1" 1856 | extend-shallow "^2.0.0" 1857 | get-value "^1.1.5" 1858 | glob-fs-dotfiles "^0.1.6" 1859 | glob-fs-gitignore "^0.1.5" 1860 | glob-parent "^1.2.0" 1861 | graceful-fs "^4.1.2" 1862 | is-dotdir "^0.1.0" 1863 | is-dotfile "^1.0.1" 1864 | is-glob "^2.0.0" 1865 | is-windows "^0.1.0" 1866 | kind-of "^2.0.0" 1867 | lazy-cache "^0.1.0" 1868 | micromatch jonschlinkert/micromatch#2.2.0 1869 | mixin-object "^2.0.0" 1870 | object-visit "^0.1.0" 1871 | object.omit "^1.1.0" 1872 | parse-filepath "^0.6.1" 1873 | relative "^3.0.1" 1874 | set-value "^0.2.0" 1875 | starts-with "^1.0.2" 1876 | through2 "^2.0.0" 1877 | 1878 | glob-parent@^1.2.0: 1879 | version "1.3.0" 1880 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-1.3.0.tgz#971edd816ed5db58705b58079647a64d0aef7968" 1881 | dependencies: 1882 | is-glob "^2.0.0" 1883 | 1884 | glob-parent@^2.0.0: 1885 | version "2.0.0" 1886 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1887 | dependencies: 1888 | is-glob "^2.0.0" 1889 | 1890 | glob@7.1.1: 1891 | version "7.1.1" 1892 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1893 | dependencies: 1894 | fs.realpath "^1.0.0" 1895 | inflight "^1.0.4" 1896 | inherits "2" 1897 | minimatch "^3.0.2" 1898 | once "^1.3.0" 1899 | path-is-absolute "^1.0.0" 1900 | 1901 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.0.6, glob@^7.1.2: 1902 | version "7.1.2" 1903 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1904 | dependencies: 1905 | fs.realpath "^1.0.0" 1906 | inflight "^1.0.4" 1907 | inherits "2" 1908 | minimatch "^3.0.4" 1909 | once "^1.3.0" 1910 | path-is-absolute "^1.0.0" 1911 | 1912 | glob@^7.1.3: 1913 | version "7.1.5" 1914 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.5.tgz#6714c69bee20f3c3e64c4dd905553e532b40cdc0" 1915 | dependencies: 1916 | fs.realpath "^1.0.0" 1917 | inflight "^1.0.4" 1918 | inherits "2" 1919 | minimatch "^3.0.4" 1920 | once "^1.3.0" 1921 | path-is-absolute "^1.0.0" 1922 | 1923 | global-modules@^0.2.3: 1924 | version "0.2.3" 1925 | resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-0.2.3.tgz#ea5a3bed42c6d6ce995a4f8a1269b5dae223828d" 1926 | dependencies: 1927 | global-prefix "^0.1.4" 1928 | is-windows "^0.2.0" 1929 | 1930 | global-prefix@^0.1.4: 1931 | version "0.1.5" 1932 | resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-0.1.5.tgz#8d3bc6b8da3ca8112a160d8d496ff0462bfef78f" 1933 | dependencies: 1934 | homedir-polyfill "^1.0.0" 1935 | ini "^1.3.4" 1936 | is-windows "^0.2.0" 1937 | which "^1.2.12" 1938 | 1939 | globals@^9.0.0, globals@^9.14.0: 1940 | version "9.17.0" 1941 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" 1942 | 1943 | globby@^5.0.0: 1944 | version "5.0.0" 1945 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1946 | dependencies: 1947 | array-union "^1.0.1" 1948 | arrify "^1.0.0" 1949 | glob "^7.0.3" 1950 | object-assign "^4.0.1" 1951 | pify "^2.0.0" 1952 | pinkie-promise "^2.0.0" 1953 | 1954 | graceful-fs@^4.1.11, graceful-fs@^4.1.4: 1955 | version "4.1.11" 1956 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1957 | 1958 | graceful-fs@^4.1.2: 1959 | version "4.2.3" 1960 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.3.tgz#4a12ff1b60376ef09862c2093edd908328be8423" 1961 | 1962 | "graceful-readlink@>= 1.0.0": 1963 | version "1.0.1" 1964 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1965 | 1966 | growl@1.9.2: 1967 | version "1.9.2" 1968 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f" 1969 | 1970 | handlebars@^4.0.3: 1971 | version "4.0.8" 1972 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.8.tgz#22b875cd3f0e6cbea30314f144e82bc7a72ff420" 1973 | dependencies: 1974 | async "^1.4.0" 1975 | optimist "^0.6.1" 1976 | source-map "^0.4.4" 1977 | optionalDependencies: 1978 | uglify-js "^2.6" 1979 | 1980 | har-schema@^1.0.5: 1981 | version "1.0.5" 1982 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1983 | 1984 | har-validator@~4.2.1: 1985 | version "4.2.1" 1986 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1987 | dependencies: 1988 | ajv "^4.9.1" 1989 | har-schema "^1.0.5" 1990 | 1991 | has-ansi@^2.0.0: 1992 | version "2.0.0" 1993 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1994 | dependencies: 1995 | ansi-regex "^2.0.0" 1996 | 1997 | has-flag@^1.0.0: 1998 | version "1.0.0" 1999 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 2000 | 2001 | has-unicode@^2.0.0: 2002 | version "2.0.1" 2003 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 2004 | 2005 | has@^1.0.1: 2006 | version "1.0.1" 2007 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 2008 | dependencies: 2009 | function-bind "^1.0.2" 2010 | 2011 | hawk@~3.1.3: 2012 | version "3.1.3" 2013 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 2014 | dependencies: 2015 | boom "2.x.x" 2016 | cryptiles "2.x.x" 2017 | hoek "2.x.x" 2018 | sntp "1.x.x" 2019 | 2020 | hoek@2.x.x: 2021 | version "2.16.3" 2022 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 2023 | 2024 | home-or-tmp@^2.0.0: 2025 | version "2.0.0" 2026 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 2027 | dependencies: 2028 | os-homedir "^1.0.0" 2029 | os-tmpdir "^1.0.1" 2030 | 2031 | homedir-polyfill@^1.0.0: 2032 | version "1.0.1" 2033 | resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.1.tgz#4c2bbc8a758998feebf5ed68580f76d46768b4bc" 2034 | dependencies: 2035 | parse-passwd "^1.0.0" 2036 | 2037 | hosted-git-info@^2.1.4: 2038 | version "2.4.2" 2039 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.2.tgz#0076b9f46a270506ddbaaea56496897460612a67" 2040 | 2041 | htmlparser2@^3.9.1: 2042 | version "3.9.2" 2043 | resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.9.2.tgz#1bdf87acca0f3f9e53fa4fcceb0f4b4cbb00b338" 2044 | dependencies: 2045 | domelementtype "^1.3.0" 2046 | domhandler "^2.3.0" 2047 | domutils "^1.5.1" 2048 | entities "^1.1.1" 2049 | inherits "^2.0.1" 2050 | readable-stream "^2.0.2" 2051 | 2052 | http-signature@~1.1.0: 2053 | version "1.1.1" 2054 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 2055 | dependencies: 2056 | assert-plus "^0.2.0" 2057 | jsprim "^1.2.2" 2058 | sshpk "^1.7.0" 2059 | 2060 | iconv-lite@~0.4.13: 2061 | version "0.4.17" 2062 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.17.tgz#4fdaa3b38acbc2c031b045d0edcdfe1ecab18c8d" 2063 | 2064 | ignore@^3.0.11, ignore@^3.2.0: 2065 | version "3.3.3" 2066 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.3.tgz#432352e57accd87ab3110e82d3fea0e47812156d" 2067 | 2068 | imurmurhash@^0.1.4: 2069 | version "0.1.4" 2070 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 2071 | 2072 | inflight@^1.0.4: 2073 | version "1.0.6" 2074 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 2075 | dependencies: 2076 | once "^1.3.0" 2077 | wrappy "1" 2078 | 2079 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1: 2080 | version "2.0.4" 2081 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 2082 | 2083 | ini@^1.3.4, ini@~1.3.0: 2084 | version "1.3.4" 2085 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 2086 | 2087 | inquirer@^0.12.0: 2088 | version "0.12.0" 2089 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 2090 | dependencies: 2091 | ansi-escapes "^1.1.0" 2092 | ansi-regex "^2.0.0" 2093 | chalk "^1.0.0" 2094 | cli-cursor "^1.0.1" 2095 | cli-width "^2.0.0" 2096 | figures "^1.3.5" 2097 | lodash "^4.3.0" 2098 | readline2 "^1.0.1" 2099 | run-async "^0.1.0" 2100 | rx-lite "^3.1.2" 2101 | string-width "^1.0.1" 2102 | strip-ansi "^3.0.0" 2103 | through "^2.3.6" 2104 | 2105 | interpret@^1.0.0: 2106 | version "1.0.3" 2107 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.3.tgz#cbc35c62eeee73f19ab7b10a801511401afc0f90" 2108 | 2109 | invariant@^2.2.0, invariant@^2.2.2: 2110 | version "2.2.2" 2111 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 2112 | dependencies: 2113 | loose-envify "^1.0.0" 2114 | 2115 | invert-kv@^1.0.0: 2116 | version "1.0.0" 2117 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 2118 | 2119 | is-absolute@^0.2.2: 2120 | version "0.2.6" 2121 | resolved "https://registry.yarnpkg.com/is-absolute/-/is-absolute-0.2.6.tgz#20de69f3db942ef2d87b9c2da36f172235b1b5eb" 2122 | dependencies: 2123 | is-relative "^0.2.1" 2124 | is-windows "^0.2.0" 2125 | 2126 | is-arrayish@^0.2.1: 2127 | version "0.2.1" 2128 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 2129 | 2130 | is-binary-path@^1.0.0: 2131 | version "1.0.1" 2132 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 2133 | dependencies: 2134 | binary-extensions "^1.0.0" 2135 | 2136 | is-buffer@^1.0.2, is-buffer@^1.1.5: 2137 | version "1.1.5" 2138 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 2139 | 2140 | is-builtin-module@^1.0.0: 2141 | version "1.0.0" 2142 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 2143 | dependencies: 2144 | builtin-modules "^1.0.0" 2145 | 2146 | is-callable@^1.1.1, is-callable@^1.1.2, is-callable@^1.1.3: 2147 | version "1.1.3" 2148 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 2149 | 2150 | is-date-object@^1.0.1: 2151 | version "1.0.1" 2152 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 2153 | 2154 | is-dotdir@^0.1.0: 2155 | version "0.1.0" 2156 | resolved "https://registry.yarnpkg.com/is-dotdir/-/is-dotdir-0.1.0.tgz#da1e5464f59fc3a83c1d822b5ace091b45fe6b31" 2157 | dependencies: 2158 | dotdir-regex "^0.1.0" 2159 | 2160 | is-dotfile@^1.0.0, is-dotfile@^1.0.1: 2161 | version "1.0.2" 2162 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 2163 | 2164 | is-equal-shallow@^0.1.3: 2165 | version "0.1.3" 2166 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 2167 | dependencies: 2168 | is-primitive "^2.0.0" 2169 | 2170 | is-extendable@^0.1.0, is-extendable@^0.1.1: 2171 | version "0.1.1" 2172 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 2173 | 2174 | is-extglob@^1.0.0: 2175 | version "1.0.0" 2176 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 2177 | 2178 | is-finite@^1.0.0: 2179 | version "1.0.2" 2180 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 2181 | dependencies: 2182 | number-is-nan "^1.0.0" 2183 | 2184 | is-fullwidth-code-point@^1.0.0: 2185 | version "1.0.0" 2186 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 2187 | dependencies: 2188 | number-is-nan "^1.0.0" 2189 | 2190 | is-fullwidth-code-point@^2.0.0: 2191 | version "2.0.0" 2192 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 2193 | 2194 | is-glob@^1.1.3: 2195 | version "1.1.3" 2196 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-1.1.3.tgz#b4c64b8303d39114492a460d364ccfb0d3c0a045" 2197 | 2198 | is-glob@^2.0.0, is-glob@^2.0.1: 2199 | version "2.0.1" 2200 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 2201 | dependencies: 2202 | is-extglob "^1.0.0" 2203 | 2204 | is-my-json-valid@^2.10.0: 2205 | version "2.16.0" 2206 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz#f079dd9bfdae65ee2038aae8acbc86ab109e3693" 2207 | dependencies: 2208 | generate-function "^2.0.0" 2209 | generate-object-property "^1.1.0" 2210 | jsonpointer "^4.0.0" 2211 | xtend "^4.0.0" 2212 | 2213 | is-number@^2.0.2, is-number@^2.1.0: 2214 | version "2.1.0" 2215 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 2216 | dependencies: 2217 | kind-of "^3.0.2" 2218 | 2219 | is-path-cwd@^1.0.0: 2220 | version "1.0.0" 2221 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 2222 | 2223 | is-path-in-cwd@^1.0.0: 2224 | version "1.0.0" 2225 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 2226 | dependencies: 2227 | is-path-inside "^1.0.0" 2228 | 2229 | is-path-inside@^1.0.0: 2230 | version "1.0.0" 2231 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 2232 | dependencies: 2233 | path-is-inside "^1.0.1" 2234 | 2235 | is-posix-bracket@^0.1.0: 2236 | version "0.1.1" 2237 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 2238 | 2239 | is-primitive@^2.0.0: 2240 | version "2.0.0" 2241 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 2242 | 2243 | is-property@^1.0.0: 2244 | version "1.0.2" 2245 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 2246 | 2247 | is-regex@^1.0.3: 2248 | version "1.0.4" 2249 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 2250 | dependencies: 2251 | has "^1.0.1" 2252 | 2253 | is-relative@^0.2.1: 2254 | version "0.2.1" 2255 | resolved "https://registry.yarnpkg.com/is-relative/-/is-relative-0.2.1.tgz#d27f4c7d516d175fb610db84bbeef23c3bc97aa5" 2256 | dependencies: 2257 | is-unc-path "^0.1.1" 2258 | 2259 | is-resolvable@^1.0.0: 2260 | version "1.0.0" 2261 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 2262 | dependencies: 2263 | tryit "^1.0.1" 2264 | 2265 | is-stream@^1.0.1: 2266 | version "1.1.0" 2267 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2268 | 2269 | is-subset@^0.1.1: 2270 | version "0.1.1" 2271 | resolved "https://registry.yarnpkg.com/is-subset/-/is-subset-0.1.1.tgz#8a59117d932de1de00f245fcdd39ce43f1e939a6" 2272 | 2273 | is-symbol@^1.0.1: 2274 | version "1.0.1" 2275 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 2276 | 2277 | is-typedarray@~1.0.0: 2278 | version "1.0.0" 2279 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2280 | 2281 | is-unc-path@^0.1.1: 2282 | version "0.1.2" 2283 | resolved "https://registry.yarnpkg.com/is-unc-path/-/is-unc-path-0.1.2.tgz#6ab053a72573c10250ff416a3814c35178af39b9" 2284 | dependencies: 2285 | unc-path-regex "^0.1.0" 2286 | 2287 | is-utf8@^0.2.0: 2288 | version "0.2.1" 2289 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 2290 | 2291 | is-windows@^0.1.0: 2292 | version "0.1.1" 2293 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-0.1.1.tgz#be310715431cfabccc54ab3951210fa0b6d01abe" 2294 | 2295 | is-windows@^0.2.0: 2296 | version "0.2.0" 2297 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-0.2.0.tgz#de1aa6d63ea29dd248737b69f1ff8b8002d2108c" 2298 | 2299 | isarray@0.0.1: 2300 | version "0.0.1" 2301 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 2302 | 2303 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 2304 | version "1.0.0" 2305 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2306 | 2307 | isexe@^2.0.0: 2308 | version "2.0.0" 2309 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2310 | 2311 | isobject@^1.0.0: 2312 | version "1.0.2" 2313 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-1.0.2.tgz#f0f9b8ce92dd540fa0740882e3835a2e022ec78a" 2314 | 2315 | isobject@^2.0.0: 2316 | version "2.1.0" 2317 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2318 | dependencies: 2319 | isarray "1.0.0" 2320 | 2321 | isomorphic-fetch@^2.1.1: 2322 | version "2.2.1" 2323 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" 2324 | dependencies: 2325 | node-fetch "^1.0.1" 2326 | whatwg-fetch ">=0.10.0" 2327 | 2328 | isstream@~0.1.2: 2329 | version "0.1.2" 2330 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2331 | 2332 | istanbul-lib-coverage@^1.1.0: 2333 | version "1.1.0" 2334 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.0.tgz#caca19decaef3525b5d6331d701f3f3b7ad48528" 2335 | 2336 | istanbul-lib-hook@^1.0.6: 2337 | version "1.0.6" 2338 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.6.tgz#c0866d1e81cf2d5319249510131fc16dee49231f" 2339 | dependencies: 2340 | append-transform "^0.4.0" 2341 | 2342 | istanbul-lib-instrument@^1.7.1: 2343 | version "1.7.1" 2344 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.1.tgz#169e31bc62c778851a99439dd99c3cc12184d360" 2345 | dependencies: 2346 | babel-generator "^6.18.0" 2347 | babel-template "^6.16.0" 2348 | babel-traverse "^6.18.0" 2349 | babel-types "^6.18.0" 2350 | babylon "^6.13.0" 2351 | istanbul-lib-coverage "^1.1.0" 2352 | semver "^5.3.0" 2353 | 2354 | istanbul-lib-report@^1.1.0: 2355 | version "1.1.0" 2356 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.0.tgz#444c4ecca9afa93cf584f56b10f195bf768c0770" 2357 | dependencies: 2358 | istanbul-lib-coverage "^1.1.0" 2359 | mkdirp "^0.5.1" 2360 | path-parse "^1.0.5" 2361 | supports-color "^3.1.2" 2362 | 2363 | istanbul-lib-source-maps@^1.2.0: 2364 | version "1.2.0" 2365 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.0.tgz#8c7706d497e26feeb6af3e0c28fd5b0669598d0e" 2366 | dependencies: 2367 | debug "^2.6.3" 2368 | istanbul-lib-coverage "^1.1.0" 2369 | mkdirp "^0.5.1" 2370 | rimraf "^2.6.1" 2371 | source-map "^0.5.3" 2372 | 2373 | istanbul-reports@^1.1.0: 2374 | version "1.1.0" 2375 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.0.tgz#1ef3b795889219cfb5fad16365f6ce108d5f8c66" 2376 | dependencies: 2377 | handlebars "^4.0.3" 2378 | 2379 | jodid25519@^1.0.0: 2380 | version "1.0.2" 2381 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 2382 | dependencies: 2383 | jsbn "~0.1.0" 2384 | 2385 | js-tokens@^3.0.0: 2386 | version "3.0.1" 2387 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 2388 | 2389 | js-yaml@^3.5.1: 2390 | version "3.8.4" 2391 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.4.tgz#520b4564f86573ba96662af85a8cafa7b4b5a6f6" 2392 | dependencies: 2393 | argparse "^1.0.7" 2394 | esprima "^3.1.1" 2395 | 2396 | jsbn@~0.1.0: 2397 | version "0.1.1" 2398 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2399 | 2400 | jsesc@^1.3.0: 2401 | version "1.3.0" 2402 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2403 | 2404 | jsesc@~0.5.0: 2405 | version "0.5.0" 2406 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2407 | 2408 | json-schema@0.2.3: 2409 | version "0.2.3" 2410 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2411 | 2412 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 2413 | version "1.0.1" 2414 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2415 | dependencies: 2416 | jsonify "~0.0.0" 2417 | 2418 | json-stringify-safe@~5.0.1: 2419 | version "5.0.1" 2420 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2421 | 2422 | json3@3.3.2: 2423 | version "3.3.2" 2424 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" 2425 | 2426 | json5@^0.5.0: 2427 | version "0.5.1" 2428 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2429 | 2430 | jsonify@~0.0.0: 2431 | version "0.0.0" 2432 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2433 | 2434 | jsonpointer@^4.0.0: 2435 | version "4.0.1" 2436 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 2437 | 2438 | jsprim@^1.2.2: 2439 | version "1.4.0" 2440 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 2441 | dependencies: 2442 | assert-plus "1.0.0" 2443 | extsprintf "1.0.2" 2444 | json-schema "0.2.3" 2445 | verror "1.3.6" 2446 | 2447 | kind-of@^1.1.0: 2448 | version "1.1.0" 2449 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-1.1.0.tgz#140a3d2d41a36d2efcfa9377b62c24f8495a5c44" 2450 | 2451 | kind-of@^2.0.0: 2452 | version "2.0.1" 2453 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-2.0.1.tgz#018ec7a4ce7e3a86cb9141be519d24c8faa981b5" 2454 | dependencies: 2455 | is-buffer "^1.0.2" 2456 | 2457 | kind-of@^3.0.2: 2458 | version "3.2.2" 2459 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2460 | dependencies: 2461 | is-buffer "^1.1.5" 2462 | 2463 | lazy-cache@^0.1.0: 2464 | version "0.1.0" 2465 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-0.1.0.tgz#d6cd450251d415b70103765f63130a0049a03795" 2466 | dependencies: 2467 | ansi-yellow "^0.1.1" 2468 | 2469 | lazy-cache@^0.2.4: 2470 | version "0.2.7" 2471 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-0.2.7.tgz#7feddf2dcb6edb77d11ef1d117ab5ffdf0ab1b65" 2472 | 2473 | lazy-cache@^1.0.3: 2474 | version "1.0.4" 2475 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2476 | 2477 | lcid@^1.0.0: 2478 | version "1.0.0" 2479 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2480 | dependencies: 2481 | invert-kv "^1.0.0" 2482 | 2483 | levn@^0.3.0, levn@~0.3.0: 2484 | version "0.3.0" 2485 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2486 | dependencies: 2487 | prelude-ls "~1.1.2" 2488 | type-check "~0.3.2" 2489 | 2490 | load-json-file@^1.0.0: 2491 | version "1.1.0" 2492 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2493 | dependencies: 2494 | graceful-fs "^4.1.2" 2495 | parse-json "^2.2.0" 2496 | pify "^2.0.0" 2497 | pinkie-promise "^2.0.0" 2498 | strip-bom "^2.0.0" 2499 | 2500 | load-json-file@^2.0.0: 2501 | version "2.0.0" 2502 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 2503 | dependencies: 2504 | graceful-fs "^4.1.2" 2505 | parse-json "^2.2.0" 2506 | pify "^2.0.0" 2507 | strip-bom "^3.0.0" 2508 | 2509 | locate-path@^2.0.0: 2510 | version "2.0.0" 2511 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2512 | dependencies: 2513 | p-locate "^2.0.0" 2514 | path-exists "^3.0.0" 2515 | 2516 | lodash._baseassign@^3.0.0: 2517 | version "3.2.0" 2518 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 2519 | dependencies: 2520 | lodash._basecopy "^3.0.0" 2521 | lodash.keys "^3.0.0" 2522 | 2523 | lodash._basecopy@^3.0.0: 2524 | version "3.0.1" 2525 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 2526 | 2527 | lodash._basecreate@^3.0.0: 2528 | version "3.0.3" 2529 | resolved "https://registry.yarnpkg.com/lodash._basecreate/-/lodash._basecreate-3.0.3.tgz#1bc661614daa7fc311b7d03bf16806a0213cf821" 2530 | 2531 | lodash._getnative@^3.0.0: 2532 | version "3.9.1" 2533 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 2534 | 2535 | lodash._isiterateecall@^3.0.0: 2536 | version "3.0.9" 2537 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 2538 | 2539 | lodash.assignin@^4.0.9: 2540 | version "4.2.0" 2541 | resolved "https://registry.yarnpkg.com/lodash.assignin/-/lodash.assignin-4.2.0.tgz#ba8df5fb841eb0a3e8044232b0e263a8dc6a28a2" 2542 | 2543 | lodash.bind@^4.1.4: 2544 | version "4.2.1" 2545 | resolved "https://registry.yarnpkg.com/lodash.bind/-/lodash.bind-4.2.1.tgz#7ae3017e939622ac31b7d7d7dcb1b34db1690d35" 2546 | 2547 | lodash.cond@^4.3.0: 2548 | version "4.5.2" 2549 | resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5" 2550 | 2551 | lodash.create@3.1.1: 2552 | version "3.1.1" 2553 | resolved "https://registry.yarnpkg.com/lodash.create/-/lodash.create-3.1.1.tgz#d7f2849f0dbda7e04682bb8cd72ab022461debe7" 2554 | dependencies: 2555 | lodash._baseassign "^3.0.0" 2556 | lodash._basecreate "^3.0.0" 2557 | lodash._isiterateecall "^3.0.0" 2558 | 2559 | lodash.defaults@^4.0.1: 2560 | version "4.2.0" 2561 | resolved "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-4.2.0.tgz#d09178716ffea4dde9e5fb7b37f6f0802274580c" 2562 | 2563 | lodash.filter@^4.4.0: 2564 | version "4.6.0" 2565 | resolved "https://registry.yarnpkg.com/lodash.filter/-/lodash.filter-4.6.0.tgz#668b1d4981603ae1cc5a6fa760143e480b4c4ace" 2566 | 2567 | lodash.flatten@^4.2.0: 2568 | version "4.4.0" 2569 | resolved "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f" 2570 | 2571 | lodash.foreach@^4.3.0: 2572 | version "4.5.0" 2573 | resolved "https://registry.yarnpkg.com/lodash.foreach/-/lodash.foreach-4.5.0.tgz#1a6a35eace401280c7f06dddec35165ab27e3e53" 2574 | 2575 | lodash.isarguments@^3.0.0: 2576 | version "3.1.0" 2577 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 2578 | 2579 | lodash.isarray@^3.0.0: 2580 | version "3.0.4" 2581 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 2582 | 2583 | lodash.keys@^3.0.0: 2584 | version "3.1.2" 2585 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 2586 | dependencies: 2587 | lodash._getnative "^3.0.0" 2588 | lodash.isarguments "^3.0.0" 2589 | lodash.isarray "^3.0.0" 2590 | 2591 | lodash.map@^4.4.0: 2592 | version "4.6.0" 2593 | resolved "https://registry.yarnpkg.com/lodash.map/-/lodash.map-4.6.0.tgz#771ec7839e3473d9c4cde28b19394c3562f4f6d3" 2594 | 2595 | lodash.merge@^4.4.0: 2596 | version "4.6.0" 2597 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.0.tgz#69884ba144ac33fe699737a6086deffadd0f89c5" 2598 | 2599 | lodash.pick@^4.2.1: 2600 | version "4.4.0" 2601 | resolved "https://registry.yarnpkg.com/lodash.pick/-/lodash.pick-4.4.0.tgz#52f05610fff9ded422611441ed1fc123a03001b3" 2602 | 2603 | lodash.reduce@^4.4.0: 2604 | version "4.6.0" 2605 | resolved "https://registry.yarnpkg.com/lodash.reduce/-/lodash.reduce-4.6.0.tgz#f1ab6b839299ad48f784abbf476596f03b914d3b" 2606 | 2607 | lodash.reject@^4.4.0: 2608 | version "4.6.0" 2609 | resolved "https://registry.yarnpkg.com/lodash.reject/-/lodash.reject-4.6.0.tgz#80d6492dc1470864bbf583533b651f42a9f52415" 2610 | 2611 | lodash.some@^4.4.0: 2612 | version "4.6.0" 2613 | resolved "https://registry.yarnpkg.com/lodash.some/-/lodash.some-4.6.0.tgz#1bb9f314ef6b8baded13b549169b2a945eb68e4d" 2614 | 2615 | lodash@^4.0.0, lodash@^4.15.0, lodash@^4.17.2, lodash@^4.17.4, lodash@^4.2.0, lodash@^4.3.0: 2616 | version "4.17.4" 2617 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2618 | 2619 | lodash@^4.17.11: 2620 | version "4.17.11" 2621 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d" 2622 | 2623 | lolex@^1.6.0: 2624 | version "1.6.0" 2625 | resolved "https://registry.yarnpkg.com/lolex/-/lolex-1.6.0.tgz#3a9a0283452a47d7439e72731b9e07d7386e49f6" 2626 | 2627 | longest@^1.0.1: 2628 | version "1.0.1" 2629 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2630 | 2631 | loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.3.1: 2632 | version "1.3.1" 2633 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2634 | dependencies: 2635 | js-tokens "^3.0.0" 2636 | 2637 | lru-cache@^4.0.1: 2638 | version "4.0.2" 2639 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.0.2.tgz#1d17679c069cda5d040991a09dbc2c0db377e55e" 2640 | dependencies: 2641 | pseudomap "^1.0.1" 2642 | yallist "^2.0.0" 2643 | 2644 | map-cache@^0.2.0: 2645 | version "0.2.2" 2646 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 2647 | 2648 | md5-hex@^1.2.0: 2649 | version "1.3.0" 2650 | resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-1.3.0.tgz#d2c4afe983c4370662179b8cad145219135046c4" 2651 | dependencies: 2652 | md5-o-matic "^0.1.1" 2653 | 2654 | md5-o-matic@^0.1.1: 2655 | version "0.1.1" 2656 | resolved "https://registry.yarnpkg.com/md5-o-matic/-/md5-o-matic-0.1.1.tgz#822bccd65e117c514fab176b25945d54100a03c3" 2657 | 2658 | merge-source-map@^1.0.2: 2659 | version "1.0.3" 2660 | resolved "https://registry.yarnpkg.com/merge-source-map/-/merge-source-map-1.0.3.tgz#da1415f2722a5119db07b14c4f973410863a2abf" 2661 | dependencies: 2662 | source-map "^0.5.3" 2663 | 2664 | micromatch@^2.1.5, micromatch@^2.3.11, micromatch@^2.3.7: 2665 | version "2.3.11" 2666 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2667 | dependencies: 2668 | arr-diff "^2.0.0" 2669 | array-unique "^0.2.1" 2670 | braces "^1.8.2" 2671 | expand-brackets "^0.1.4" 2672 | extglob "^0.3.1" 2673 | filename-regex "^2.0.0" 2674 | is-extglob "^1.0.0" 2675 | is-glob "^2.0.1" 2676 | kind-of "^3.0.2" 2677 | normalize-path "^2.0.1" 2678 | object.omit "^2.0.0" 2679 | parse-glob "^3.0.4" 2680 | regex-cache "^0.4.2" 2681 | 2682 | micromatch@jonschlinkert/micromatch#2.2.0: 2683 | version "2.2.0" 2684 | resolved "https://codeload.github.com/jonschlinkert/micromatch/tar.gz/b0ac0b7cea8d90f97630c027d0116a8aef06bfdc" 2685 | dependencies: 2686 | arr-diff "^1.0.1" 2687 | array-unique "^0.2.1" 2688 | braces "^1.8.0" 2689 | expand-brackets "^0.1.1" 2690 | extglob "^0.3.0" 2691 | filename-regex "^2.0.0" 2692 | is-glob "^1.1.3" 2693 | kind-of "^1.1.0" 2694 | object.omit "^1.1.0" 2695 | parse-glob "^3.0.1" 2696 | regex-cache "^0.4.2" 2697 | 2698 | mime-db@~1.27.0: 2699 | version "1.27.0" 2700 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 2701 | 2702 | mime-types@^2.1.12, mime-types@~2.1.7: 2703 | version "2.1.15" 2704 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 2705 | dependencies: 2706 | mime-db "~1.27.0" 2707 | 2708 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 2709 | version "3.0.4" 2710 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2711 | dependencies: 2712 | brace-expansion "^1.1.7" 2713 | 2714 | minimist@0.0.8, minimist@~0.0.1: 2715 | version "0.0.8" 2716 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2717 | 2718 | minimist@^1.2.0: 2719 | version "1.2.0" 2720 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2721 | 2722 | mixin-object@^2.0.0: 2723 | version "2.0.1" 2724 | resolved "https://registry.yarnpkg.com/mixin-object/-/mixin-object-2.0.1.tgz#4fb949441dab182540f1fe035ba60e1947a5e57e" 2725 | dependencies: 2726 | for-in "^0.1.3" 2727 | is-extendable "^0.1.1" 2728 | 2729 | mkdirp@0.5.1, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1: 2730 | version "0.5.1" 2731 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2732 | dependencies: 2733 | minimist "0.0.8" 2734 | 2735 | mocha@^3.4.1: 2736 | version "3.4.1" 2737 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-3.4.1.tgz#a3802b4aa381934cacb38de70cf771621da8f9af" 2738 | dependencies: 2739 | browser-stdout "1.3.0" 2740 | commander "2.9.0" 2741 | debug "2.6.0" 2742 | diff "3.2.0" 2743 | escape-string-regexp "1.0.5" 2744 | glob "7.1.1" 2745 | growl "1.9.2" 2746 | json3 "3.3.2" 2747 | lodash.create "3.1.1" 2748 | mkdirp "0.5.1" 2749 | supports-color "3.1.2" 2750 | 2751 | ms@0.7.1: 2752 | version "0.7.1" 2753 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 2754 | 2755 | ms@0.7.2: 2756 | version "0.7.2" 2757 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 2758 | 2759 | ms@2.0.0: 2760 | version "2.0.0" 2761 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2762 | 2763 | mute-stream@0.0.5: 2764 | version "0.0.5" 2765 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 2766 | 2767 | nan@^2.3.0: 2768 | version "2.6.2" 2769 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45" 2770 | 2771 | native-promise-only@^0.8.1: 2772 | version "0.8.1" 2773 | resolved "https://registry.yarnpkg.com/native-promise-only/-/native-promise-only-0.8.1.tgz#20a318c30cb45f71fe7adfbf7b21c99c1472ef11" 2774 | 2775 | natural-compare@^1.4.0: 2776 | version "1.4.0" 2777 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2778 | 2779 | node-fetch@^1.0.1: 2780 | version "1.6.3" 2781 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.6.3.tgz#dc234edd6489982d58e8f0db4f695029abcd8c04" 2782 | dependencies: 2783 | encoding "^0.1.11" 2784 | is-stream "^1.0.1" 2785 | 2786 | node-pre-gyp@^0.6.29: 2787 | version "0.6.34" 2788 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.34.tgz#94ad1c798a11d7fc67381b50d47f8cc18d9799f7" 2789 | dependencies: 2790 | mkdirp "^0.5.1" 2791 | nopt "^4.0.1" 2792 | npmlog "^4.0.2" 2793 | rc "^1.1.7" 2794 | request "^2.81.0" 2795 | rimraf "^2.6.1" 2796 | semver "^5.3.0" 2797 | tar "^2.2.1" 2798 | tar-pack "^3.4.0" 2799 | 2800 | noncharacters@^1.1.0: 2801 | version "1.1.0" 2802 | resolved "https://registry.yarnpkg.com/noncharacters/-/noncharacters-1.1.0.tgz#af33df30fd50ed3c53cd202258f25ada90b540d2" 2803 | 2804 | nopt@^4.0.1: 2805 | version "4.0.1" 2806 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2807 | dependencies: 2808 | abbrev "1" 2809 | osenv "^0.1.4" 2810 | 2811 | normalize-package-data@^2.3.2: 2812 | version "2.3.8" 2813 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb" 2814 | dependencies: 2815 | hosted-git-info "^2.1.4" 2816 | is-builtin-module "^1.0.0" 2817 | semver "2 || 3 || 4 || 5" 2818 | validate-npm-package-license "^3.0.1" 2819 | 2820 | normalize-path@^2.0.1: 2821 | version "2.1.1" 2822 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2823 | dependencies: 2824 | remove-trailing-separator "^1.0.1" 2825 | 2826 | npmlog@^4.0.2: 2827 | version "4.1.0" 2828 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.0.tgz#dc59bee85f64f00ed424efb2af0783df25d1c0b5" 2829 | dependencies: 2830 | are-we-there-yet "~1.1.2" 2831 | console-control-strings "~1.1.0" 2832 | gauge "~2.7.3" 2833 | set-blocking "~2.0.0" 2834 | 2835 | nth-check@~1.0.1: 2836 | version "1.0.1" 2837 | resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.1.tgz#9929acdf628fc2c41098deab82ac580cf149aae4" 2838 | dependencies: 2839 | boolbase "~1.0.0" 2840 | 2841 | number-is-nan@^1.0.0: 2842 | version "1.0.1" 2843 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2844 | 2845 | nyc@^10.3.2: 2846 | version "10.3.2" 2847 | resolved "https://registry.yarnpkg.com/nyc/-/nyc-10.3.2.tgz#f27f4d91f2a9db36c24f574ff5c6efff0233de46" 2848 | dependencies: 2849 | archy "^1.0.0" 2850 | arrify "^1.0.1" 2851 | caching-transform "^1.0.0" 2852 | convert-source-map "^1.3.0" 2853 | debug-log "^1.0.1" 2854 | default-require-extensions "^1.0.0" 2855 | find-cache-dir "^0.1.1" 2856 | find-up "^1.1.2" 2857 | foreground-child "^1.5.3" 2858 | glob "^7.0.6" 2859 | istanbul-lib-coverage "^1.1.0" 2860 | istanbul-lib-hook "^1.0.6" 2861 | istanbul-lib-instrument "^1.7.1" 2862 | istanbul-lib-report "^1.1.0" 2863 | istanbul-lib-source-maps "^1.2.0" 2864 | istanbul-reports "^1.1.0" 2865 | md5-hex "^1.2.0" 2866 | merge-source-map "^1.0.2" 2867 | micromatch "^2.3.11" 2868 | mkdirp "^0.5.0" 2869 | resolve-from "^2.0.0" 2870 | rimraf "^2.5.4" 2871 | signal-exit "^3.0.1" 2872 | spawn-wrap "1.2.4" 2873 | test-exclude "^4.1.0" 2874 | yargs "^7.1.0" 2875 | yargs-parser "^5.0.0" 2876 | 2877 | oauth-sign@~0.8.1: 2878 | version "0.8.2" 2879 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2880 | 2881 | object-assign@^4.0.1, object-assign@^4.1.0: 2882 | version "4.1.1" 2883 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2884 | 2885 | object-is@^1.0.1: 2886 | version "1.0.1" 2887 | resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.0.1.tgz#0aa60ec9989a0b3ed795cf4d06f62cf1ad6539b6" 2888 | 2889 | object-keys@^1.0.10, object-keys@^1.0.8: 2890 | version "1.0.11" 2891 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 2892 | 2893 | object-visit@^0.1.0: 2894 | version "0.1.0" 2895 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-0.1.0.tgz#b1bb6749f228ee76e0c42f3851d28a14d233ce26" 2896 | dependencies: 2897 | isobject "^1.0.0" 2898 | 2899 | object.assign@^4.0.4: 2900 | version "4.0.4" 2901 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.0.4.tgz#b1c9cc044ef1b9fe63606fc141abbb32e14730cc" 2902 | dependencies: 2903 | define-properties "^1.1.2" 2904 | function-bind "^1.1.0" 2905 | object-keys "^1.0.10" 2906 | 2907 | object.entries@^1.0.3: 2908 | version "1.0.4" 2909 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.0.4.tgz#1bf9a4dd2288f5b33f3a993d257661f05d161a5f" 2910 | dependencies: 2911 | define-properties "^1.1.2" 2912 | es-abstract "^1.6.1" 2913 | function-bind "^1.1.0" 2914 | has "^1.0.1" 2915 | 2916 | object.omit@^1.1.0: 2917 | version "1.1.0" 2918 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-1.1.0.tgz#9d17ea16778e5057deba7752c6f55f1496829e94" 2919 | dependencies: 2920 | for-own "^0.1.3" 2921 | isobject "^1.0.0" 2922 | 2923 | object.omit@^2.0.0: 2924 | version "2.0.1" 2925 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2926 | dependencies: 2927 | for-own "^0.1.4" 2928 | is-extendable "^0.1.1" 2929 | 2930 | object.values@^1.0.3: 2931 | version "1.0.4" 2932 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.0.4.tgz#e524da09b4f66ff05df457546ec72ac99f13069a" 2933 | dependencies: 2934 | define-properties "^1.1.2" 2935 | es-abstract "^1.6.1" 2936 | function-bind "^1.1.0" 2937 | has "^1.0.1" 2938 | 2939 | once@^1.3.0, once@^1.3.3: 2940 | version "1.4.0" 2941 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2942 | dependencies: 2943 | wrappy "1" 2944 | 2945 | onetime@^1.0.0: 2946 | version "1.1.0" 2947 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 2948 | 2949 | optimist@^0.6.1: 2950 | version "0.6.1" 2951 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2952 | dependencies: 2953 | minimist "~0.0.1" 2954 | wordwrap "~0.0.2" 2955 | 2956 | optionator@^0.8.2: 2957 | version "0.8.2" 2958 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2959 | dependencies: 2960 | deep-is "~0.1.3" 2961 | fast-levenshtein "~2.0.4" 2962 | levn "~0.3.0" 2963 | prelude-ls "~1.1.2" 2964 | type-check "~0.3.2" 2965 | wordwrap "~1.0.0" 2966 | 2967 | os-homedir@^1.0.0, os-homedir@^1.0.1: 2968 | version "1.0.2" 2969 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2970 | 2971 | os-locale@^1.4.0: 2972 | version "1.4.0" 2973 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2974 | dependencies: 2975 | lcid "^1.0.0" 2976 | 2977 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 2978 | version "1.0.2" 2979 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2980 | 2981 | osenv@^0.1.4: 2982 | version "0.1.4" 2983 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2984 | dependencies: 2985 | os-homedir "^1.0.0" 2986 | os-tmpdir "^1.0.0" 2987 | 2988 | output-file-sync@^1.1.0: 2989 | version "1.1.2" 2990 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 2991 | dependencies: 2992 | graceful-fs "^4.1.4" 2993 | mkdirp "^0.5.1" 2994 | object-assign "^4.1.0" 2995 | 2996 | p-limit@^1.1.0: 2997 | version "1.1.0" 2998 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 2999 | 3000 | p-locate@^2.0.0: 3001 | version "2.0.0" 3002 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 3003 | dependencies: 3004 | p-limit "^1.1.0" 3005 | 3006 | parse-filepath@^0.6.1: 3007 | version "0.6.3" 3008 | resolved "https://registry.yarnpkg.com/parse-filepath/-/parse-filepath-0.6.3.tgz#38e17a73e5e4e6776bae9506fc3ccb14bc3a2b80" 3009 | dependencies: 3010 | is-absolute "^0.2.2" 3011 | map-cache "^0.2.0" 3012 | 3013 | parse-gitignore@^0.2.0: 3014 | version "0.2.0" 3015 | resolved "https://registry.yarnpkg.com/parse-gitignore/-/parse-gitignore-0.2.0.tgz#98706d09f0f93ee86348b721ffee0606bc093d74" 3016 | dependencies: 3017 | ends-with "^0.2.0" 3018 | is-glob "^2.0.0" 3019 | starts-with "^1.0.0" 3020 | 3021 | parse-glob@^3.0.1, parse-glob@^3.0.4: 3022 | version "3.0.4" 3023 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 3024 | dependencies: 3025 | glob-base "^0.3.0" 3026 | is-dotfile "^1.0.0" 3027 | is-extglob "^1.0.0" 3028 | is-glob "^2.0.0" 3029 | 3030 | parse-json@^2.2.0: 3031 | version "2.2.0" 3032 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 3033 | dependencies: 3034 | error-ex "^1.2.0" 3035 | 3036 | parse-passwd@^1.0.0: 3037 | version "1.0.0" 3038 | resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" 3039 | 3040 | path-exists@^2.0.0: 3041 | version "2.1.0" 3042 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 3043 | dependencies: 3044 | pinkie-promise "^2.0.0" 3045 | 3046 | path-exists@^3.0.0: 3047 | version "3.0.0" 3048 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 3049 | 3050 | path-is-absolute@^1.0.0: 3051 | version "1.0.1" 3052 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 3053 | 3054 | path-is-inside@^1.0.1: 3055 | version "1.0.2" 3056 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 3057 | 3058 | path-parse@^1.0.5: 3059 | version "1.0.5" 3060 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 3061 | 3062 | path-to-regexp@^1.7.0: 3063 | version "1.7.0" 3064 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-1.7.0.tgz#59fde0f435badacba103a84e9d3bc64e96b9937d" 3065 | dependencies: 3066 | isarray "0.0.1" 3067 | 3068 | path-type@^1.0.0: 3069 | version "1.1.0" 3070 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 3071 | dependencies: 3072 | graceful-fs "^4.1.2" 3073 | pify "^2.0.0" 3074 | pinkie-promise "^2.0.0" 3075 | 3076 | path-type@^2.0.0: 3077 | version "2.0.0" 3078 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 3079 | dependencies: 3080 | pify "^2.0.0" 3081 | 3082 | performance-now@^0.2.0: 3083 | version "0.2.0" 3084 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 3085 | 3086 | pify@^2.0.0: 3087 | version "2.3.0" 3088 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 3089 | 3090 | pinkie-promise@^2.0.0: 3091 | version "2.0.1" 3092 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 3093 | dependencies: 3094 | pinkie "^2.0.0" 3095 | 3096 | pinkie@^2.0.0: 3097 | version "2.0.4" 3098 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 3099 | 3100 | pkg-dir@^1.0.0: 3101 | version "1.0.0" 3102 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 3103 | dependencies: 3104 | find-up "^1.0.0" 3105 | 3106 | pluralize@^1.2.1: 3107 | version "1.2.1" 3108 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" 3109 | 3110 | prelude-ls@~1.1.2: 3111 | version "1.1.2" 3112 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 3113 | 3114 | preserve@^0.2.0: 3115 | version "0.2.0" 3116 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 3117 | 3118 | private@^0.1.6: 3119 | version "0.1.7" 3120 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 3121 | 3122 | process-nextick-args@~1.0.6: 3123 | version "1.0.7" 3124 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 3125 | 3126 | progress@^1.1.8: 3127 | version "1.1.8" 3128 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 3129 | 3130 | promise@^7.1.1: 3131 | version "7.1.1" 3132 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.1.1.tgz#489654c692616b8aa55b0724fa809bb7db49c5bf" 3133 | dependencies: 3134 | asap "~2.0.3" 3135 | 3136 | prop-types@^15.5.4, prop-types@^15.5.7, prop-types@~15.5.7: 3137 | version "15.5.10" 3138 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.5.10.tgz#2797dfc3126182e3a95e3dfbb2e893ddd7456154" 3139 | dependencies: 3140 | fbjs "^0.8.9" 3141 | loose-envify "^1.3.1" 3142 | 3143 | pseudomap@^1.0.1: 3144 | version "1.0.2" 3145 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 3146 | 3147 | punycode@^1.4.1: 3148 | version "1.4.1" 3149 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 3150 | 3151 | qs@~6.4.0: 3152 | version "6.4.0" 3153 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 3154 | 3155 | randomatic@^1.1.3: 3156 | version "1.1.6" 3157 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 3158 | dependencies: 3159 | is-number "^2.0.2" 3160 | kind-of "^3.0.2" 3161 | 3162 | rc@^1.1.7: 3163 | version "1.2.1" 3164 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 3165 | dependencies: 3166 | deep-extend "~0.4.0" 3167 | ini "~1.3.0" 3168 | minimist "^1.2.0" 3169 | strip-json-comments "~2.0.1" 3170 | 3171 | react-addons-test-utils@^15.5.1: 3172 | version "15.5.1" 3173 | resolved "https://registry.yarnpkg.com/react-addons-test-utils/-/react-addons-test-utils-15.5.1.tgz#e0d258cda2a122ad0dff69f838260d0c3958f5f7" 3174 | dependencies: 3175 | fbjs "^0.8.4" 3176 | object-assign "^4.1.0" 3177 | 3178 | react-dom@^15.5.4: 3179 | version "15.5.4" 3180 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-15.5.4.tgz#ba0c28786fd52ed7e4f2135fe0288d462aef93da" 3181 | dependencies: 3182 | fbjs "^0.8.9" 3183 | loose-envify "^1.1.0" 3184 | object-assign "^4.1.0" 3185 | prop-types "~15.5.7" 3186 | 3187 | react@^15.5.4: 3188 | version "15.5.4" 3189 | resolved "https://registry.yarnpkg.com/react/-/react-15.5.4.tgz#fa83eb01506ab237cdc1c8c3b1cea8de012bf047" 3190 | dependencies: 3191 | fbjs "^0.8.9" 3192 | loose-envify "^1.1.0" 3193 | object-assign "^4.1.0" 3194 | prop-types "^15.5.7" 3195 | 3196 | read-pkg-up@^1.0.1: 3197 | version "1.0.1" 3198 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 3199 | dependencies: 3200 | find-up "^1.0.0" 3201 | read-pkg "^1.0.0" 3202 | 3203 | read-pkg-up@^2.0.0: 3204 | version "2.0.0" 3205 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 3206 | dependencies: 3207 | find-up "^2.0.0" 3208 | read-pkg "^2.0.0" 3209 | 3210 | read-pkg@^1.0.0: 3211 | version "1.1.0" 3212 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 3213 | dependencies: 3214 | load-json-file "^1.0.0" 3215 | normalize-package-data "^2.3.2" 3216 | path-type "^1.0.0" 3217 | 3218 | read-pkg@^2.0.0: 3219 | version "2.0.0" 3220 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 3221 | dependencies: 3222 | load-json-file "^2.0.0" 3223 | normalize-package-data "^2.3.2" 3224 | path-type "^2.0.0" 3225 | 3226 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.1.5, readable-stream@^2.2.2: 3227 | version "2.2.9" 3228 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.9.tgz#cf78ec6f4a6d1eb43d26488cac97f042e74b7fc8" 3229 | dependencies: 3230 | buffer-shims "~1.0.0" 3231 | core-util-is "~1.0.0" 3232 | inherits "~2.0.1" 3233 | isarray "~1.0.0" 3234 | process-nextick-args "~1.0.6" 3235 | string_decoder "~1.0.0" 3236 | util-deprecate "~1.0.1" 3237 | 3238 | readdirp@^2.0.0: 3239 | version "2.1.0" 3240 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 3241 | dependencies: 3242 | graceful-fs "^4.1.2" 3243 | minimatch "^3.0.2" 3244 | readable-stream "^2.0.2" 3245 | set-immediate-shim "^1.0.1" 3246 | 3247 | readline2@^1.0.1: 3248 | version "1.0.1" 3249 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 3250 | dependencies: 3251 | code-point-at "^1.0.0" 3252 | is-fullwidth-code-point "^1.0.0" 3253 | mute-stream "0.0.5" 3254 | 3255 | rechoir@^0.6.2: 3256 | version "0.6.2" 3257 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 3258 | dependencies: 3259 | resolve "^1.1.6" 3260 | 3261 | regenerate@^1.2.1: 3262 | version "1.3.2" 3263 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 3264 | 3265 | regenerator-runtime@^0.10.0: 3266 | version "0.10.5" 3267 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 3268 | 3269 | regenerator-transform@0.9.11: 3270 | version "0.9.11" 3271 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.11.tgz#3a7d067520cb7b7176769eb5ff868691befe1283" 3272 | dependencies: 3273 | babel-runtime "^6.18.0" 3274 | babel-types "^6.19.0" 3275 | private "^0.1.6" 3276 | 3277 | regex-cache@^0.4.2: 3278 | version "0.4.3" 3279 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 3280 | dependencies: 3281 | is-equal-shallow "^0.1.3" 3282 | is-primitive "^2.0.0" 3283 | 3284 | regexpu-core@^2.0.0: 3285 | version "2.0.0" 3286 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 3287 | dependencies: 3288 | regenerate "^1.2.1" 3289 | regjsgen "^0.2.0" 3290 | regjsparser "^0.1.4" 3291 | 3292 | regjsgen@^0.2.0: 3293 | version "0.2.0" 3294 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 3295 | 3296 | regjsparser@^0.1.4: 3297 | version "0.1.5" 3298 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 3299 | dependencies: 3300 | jsesc "~0.5.0" 3301 | 3302 | relative@^3.0.1: 3303 | version "3.0.2" 3304 | resolved "https://registry.yarnpkg.com/relative/-/relative-3.0.2.tgz#0dcd8ec54a5d35a3c15e104503d65375b5a5367f" 3305 | dependencies: 3306 | isobject "^2.0.0" 3307 | 3308 | remove-trailing-separator@^1.0.1: 3309 | version "1.0.1" 3310 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4" 3311 | 3312 | repeat-element@^1.1.2: 3313 | version "1.1.2" 3314 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 3315 | 3316 | repeat-string@^1.5.2: 3317 | version "1.6.1" 3318 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3319 | 3320 | repeating@^2.0.0: 3321 | version "2.0.1" 3322 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 3323 | dependencies: 3324 | is-finite "^1.0.0" 3325 | 3326 | request@^2.81.0: 3327 | version "2.81.0" 3328 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 3329 | dependencies: 3330 | aws-sign2 "~0.6.0" 3331 | aws4 "^1.2.1" 3332 | caseless "~0.12.0" 3333 | combined-stream "~1.0.5" 3334 | extend "~3.0.0" 3335 | forever-agent "~0.6.1" 3336 | form-data "~2.1.1" 3337 | har-validator "~4.2.1" 3338 | hawk "~3.1.3" 3339 | http-signature "~1.1.0" 3340 | is-typedarray "~1.0.0" 3341 | isstream "~0.1.2" 3342 | json-stringify-safe "~5.0.1" 3343 | mime-types "~2.1.7" 3344 | oauth-sign "~0.8.1" 3345 | performance-now "^0.2.0" 3346 | qs "~6.4.0" 3347 | safe-buffer "^5.0.1" 3348 | stringstream "~0.0.4" 3349 | tough-cookie "~2.3.0" 3350 | tunnel-agent "^0.6.0" 3351 | uuid "^3.0.0" 3352 | 3353 | require-directory@^2.1.1: 3354 | version "2.1.1" 3355 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3356 | 3357 | require-main-filename@^1.0.1: 3358 | version "1.0.1" 3359 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3360 | 3361 | require-uncached@^1.0.2: 3362 | version "1.0.3" 3363 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 3364 | dependencies: 3365 | caller-path "^0.1.0" 3366 | resolve-from "^1.0.0" 3367 | 3368 | resolve-dir@^0.1.0: 3369 | version "0.1.1" 3370 | resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-0.1.1.tgz#b219259a5602fac5c5c496ad894a6e8cc430261e" 3371 | dependencies: 3372 | expand-tilde "^1.2.2" 3373 | global-modules "^0.2.3" 3374 | 3375 | resolve-from@^1.0.0: 3376 | version "1.0.1" 3377 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 3378 | 3379 | resolve-from@^2.0.0: 3380 | version "2.0.0" 3381 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57" 3382 | 3383 | resolve@^1.1.6, resolve@^1.1.7: 3384 | version "1.3.3" 3385 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.3.tgz#655907c3469a8680dc2de3a275a8fdd69691f0e5" 3386 | dependencies: 3387 | path-parse "^1.0.5" 3388 | 3389 | restore-cursor@^1.0.1: 3390 | version "1.0.1" 3391 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 3392 | dependencies: 3393 | exit-hook "^1.0.0" 3394 | onetime "^1.0.0" 3395 | 3396 | right-align@^0.1.1: 3397 | version "0.1.3" 3398 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3399 | dependencies: 3400 | align-text "^0.1.1" 3401 | 3402 | rimraf@2: 3403 | version "2.7.1" 3404 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" 3405 | dependencies: 3406 | glob "^7.1.3" 3407 | 3408 | rimraf@^2.2.8, rimraf@^2.3.3, rimraf@^2.5.1, rimraf@^2.5.4, rimraf@^2.6.1: 3409 | version "2.6.1" 3410 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 3411 | dependencies: 3412 | glob "^7.0.5" 3413 | 3414 | run-async@^0.1.0: 3415 | version "0.1.0" 3416 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 3417 | dependencies: 3418 | once "^1.3.0" 3419 | 3420 | rx-lite@^3.1.2: 3421 | version "3.1.2" 3422 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 3423 | 3424 | safe-buffer@^5.0.1: 3425 | version "5.0.1" 3426 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 3427 | 3428 | samsam@1.x, samsam@^1.1.3: 3429 | version "1.2.1" 3430 | resolved "https://registry.yarnpkg.com/samsam/-/samsam-1.2.1.tgz#edd39093a3184370cb859243b2bdf255e7d8ea67" 3431 | 3432 | saul@0.0.14: 3433 | version "0.0.14" 3434 | resolved "https://registry.yarnpkg.com/saul/-/saul-0.0.14.tgz#dad055343164485e9eeae0a7cd726b55f2bc40af" 3435 | dependencies: 3436 | "@emmetio/expand-abbreviation" "^0.5.6" 3437 | babel-cli "^6.24.1" 3438 | babel-eslint "^7.2.3" 3439 | babel-preset-env "^1.4.0" 3440 | babel-preset-react "^6.24.1" 3441 | chai "^3.5.0" 3442 | enzyme "^2.8.2" 3443 | eslint "^3.19.0" 3444 | eslint-plugin-flowtype "^2.33.0" 3445 | eslint-plugin-import "^2.3.0" 3446 | eslint-plugin-node "^4.2.2" 3447 | eslint-plugin-promise "^3.5.0" 3448 | eslint-plugin-standard "^3.0.1" 3449 | flow-remove-types "^1.2.1" 3450 | glob-fs "^0.1.6" 3451 | lodash "^4.17.4" 3452 | mocha "^3.4.1" 3453 | react "^15.5.4" 3454 | react-addons-test-utils "^15.5.1" 3455 | react-dom "^15.5.4" 3456 | saul "^0.0.10" 3457 | sinon "^2.2.0" 3458 | unescape "^0.2.0" 3459 | 3460 | saul@0.0.16: 3461 | version "0.0.16" 3462 | resolved "https://registry.yarnpkg.com/saul/-/saul-0.0.16.tgz#b2065273b255d93cc0b52667a391dd643c14c442" 3463 | dependencies: 3464 | "@emmetio/expand-abbreviation" "^0.5.6" 3465 | chai "^3.5.0" 3466 | enzyme "^2.8.2" 3467 | flow-remove-types "^1.2.1" 3468 | glob "^7.1.2" 3469 | lodash "^4.17.4" 3470 | react "^15.5.4" 3471 | saul "0.0.14" 3472 | sinon "^2.2.0" 3473 | unescape "^0.2.0" 3474 | 3475 | saul@0.0.17: 3476 | version "0.0.17" 3477 | resolved "https://registry.yarnpkg.com/saul/-/saul-0.0.17.tgz#06175dccbce23691f903a74bb1e9be578a9737df" 3478 | dependencies: 3479 | "@emmetio/expand-abbreviation" "^0.5.6" 3480 | babel-register "^6.24.1" 3481 | chai "^3.5.0" 3482 | enzyme "^2.8.2" 3483 | flow-remove-types "^1.2.1" 3484 | glob "^7.1.2" 3485 | lodash "^4.17.4" 3486 | react "^15.5.4" 3487 | saul "0.0.16" 3488 | sinon "^2.2.0" 3489 | unescape "^0.2.0" 3490 | 3491 | saul@0.2.0-0: 3492 | version "0.2.0-0" 3493 | resolved "https://registry.yarnpkg.com/saul/-/saul-0.2.0-0.tgz#07537c51ba3d8ee87efbe915f3c9dab7ca4281b3" 3494 | dependencies: 3495 | "@emmetio/expand-abbreviation" "^0.5.6" 3496 | babel-register "^6.24.1" 3497 | chai "^3.5.0" 3498 | enzyme "^2.8.2" 3499 | flow-remove-types "^1.2.1" 3500 | glob "^7.1.2" 3501 | lodash "^4.17.4" 3502 | react "^15.5.4" 3503 | saul "0.0.17" 3504 | sinon "^2.2.0" 3505 | unescape "^0.2.0" 3506 | 3507 | saul@0.2.0-2: 3508 | version "0.2.0-2" 3509 | resolved "https://registry.yarnpkg.com/saul/-/saul-0.2.0-2.tgz#a83563e09acf3b44fb2b45253385c6bca5b94d55" 3510 | dependencies: 3511 | "@emmetio/expand-abbreviation" "^0.5.6" 3512 | babel-register "^6.24.1" 3513 | chai "^3.5.0" 3514 | enzyme "^2.8.2" 3515 | flow-remove-types "^1.2.1" 3516 | glob "^7.1.2" 3517 | lodash "^4.17.4" 3518 | react "^15.5.4" 3519 | saul "0.2.0-0" 3520 | sinon "^2.2.0" 3521 | unescape "^0.2.0" 3522 | 3523 | saul@0.3.0: 3524 | version "0.3.0" 3525 | resolved "https://registry.yarnpkg.com/saul/-/saul-0.3.0.tgz#7d0ec1ad7ab533dd3c98b22a246680388d708582" 3526 | dependencies: 3527 | "@emmetio/expand-abbreviation" "^0.5.6" 3528 | babel-register "^6.24.1" 3529 | chai "^3.5.0" 3530 | enzyme "^2.8.2" 3531 | flow-remove-types "^1.2.1" 3532 | glob "^7.1.2" 3533 | lodash "^4.17.4" 3534 | react "^15.5.4" 3535 | saul "0.2.0-2" 3536 | sinon "^2.2.0" 3537 | unescape "^0.2.0" 3538 | 3539 | saul@^0.0.10, saul@^0.0.10-alpha: 3540 | version "0.0.10" 3541 | resolved "https://registry.yarnpkg.com/saul/-/saul-0.0.10.tgz#953847cf3ccf582a13a79d51ba8466c805e32d31" 3542 | dependencies: 3543 | "@emmetio/expand-abbreviation" "^0.5.6" 3544 | babel-cli "^6.24.1" 3545 | babel-preset-env "^1.4.0" 3546 | chai "^3.5.0" 3547 | enzyme "^2.8.2" 3548 | flow-remove-types "^1.2.1" 3549 | glob-fs "^0.1.6" 3550 | lodash "^4.17.4" 3551 | mocha "^3.4.1" 3552 | react "^15.5.4" 3553 | react-addons-test-utils "^15.5.1" 3554 | react-dom "^15.5.4" 3555 | saul "^0.0.10-alpha" 3556 | sinon "^2.2.0" 3557 | 3558 | "semver@2 || 3 || 4 || 5", semver@5.3.0, semver@^5.3.0: 3559 | version "5.3.0" 3560 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 3561 | 3562 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3563 | version "2.0.0" 3564 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3565 | 3566 | set-immediate-shim@^1.0.1: 3567 | version "1.0.1" 3568 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3569 | 3570 | set-value@^0.2.0: 3571 | version "0.2.0" 3572 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.2.0.tgz#73b0a6825c158c6a16a82bbdc95775bf2a825fab" 3573 | dependencies: 3574 | isobject "^1.0.0" 3575 | noncharacters "^1.1.0" 3576 | 3577 | setimmediate@^1.0.5: 3578 | version "1.0.5" 3579 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 3580 | 3581 | shelljs@^0.7.5: 3582 | version "0.7.7" 3583 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.7.tgz#b2f5c77ef97148f4b4f6e22682e10bba8667cff1" 3584 | dependencies: 3585 | glob "^7.0.0" 3586 | interpret "^1.0.0" 3587 | rechoir "^0.6.2" 3588 | 3589 | signal-exit@^2.0.0: 3590 | version "2.1.2" 3591 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-2.1.2.tgz#375879b1f92ebc3b334480d038dc546a6d558564" 3592 | 3593 | signal-exit@^3.0.0, signal-exit@^3.0.1: 3594 | version "3.0.2" 3595 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3596 | 3597 | sinon@^2.2.0: 3598 | version "2.2.0" 3599 | resolved "https://registry.yarnpkg.com/sinon/-/sinon-2.2.0.tgz#3b1b42ff5defcbf51a52a62aca6d61171b9fd262" 3600 | dependencies: 3601 | diff "^3.1.0" 3602 | formatio "1.2.0" 3603 | lolex "^1.6.0" 3604 | native-promise-only "^0.8.1" 3605 | path-to-regexp "^1.7.0" 3606 | samsam "^1.1.3" 3607 | text-encoding "0.6.4" 3608 | type-detect "^4.0.0" 3609 | 3610 | slash@^1.0.0: 3611 | version "1.0.0" 3612 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3613 | 3614 | slice-ansi@0.0.4: 3615 | version "0.0.4" 3616 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 3617 | 3618 | slide@^1.1.5: 3619 | version "1.1.6" 3620 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 3621 | 3622 | sntp@1.x.x: 3623 | version "1.0.9" 3624 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3625 | dependencies: 3626 | hoek "2.x.x" 3627 | 3628 | source-map-support@^0.4.2: 3629 | version "0.4.15" 3630 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1" 3631 | dependencies: 3632 | source-map "^0.5.6" 3633 | 3634 | source-map@^0.4.4: 3635 | version "0.4.4" 3636 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 3637 | dependencies: 3638 | amdefine ">=0.0.4" 3639 | 3640 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: 3641 | version "0.5.6" 3642 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 3643 | 3644 | spawn-wrap@1.2.4: 3645 | version "1.2.4" 3646 | resolved "https://registry.yarnpkg.com/spawn-wrap/-/spawn-wrap-1.2.4.tgz#920eb211a769c093eebfbd5b0e7a5d2e68ab2e40" 3647 | dependencies: 3648 | foreground-child "^1.3.3" 3649 | mkdirp "^0.5.0" 3650 | os-homedir "^1.0.1" 3651 | rimraf "^2.3.3" 3652 | signal-exit "^2.0.0" 3653 | which "^1.2.4" 3654 | 3655 | spdx-correct@~1.0.0: 3656 | version "1.0.2" 3657 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3658 | dependencies: 3659 | spdx-license-ids "^1.0.2" 3660 | 3661 | spdx-expression-parse@~1.0.0: 3662 | version "1.0.4" 3663 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3664 | 3665 | spdx-license-ids@^1.0.2: 3666 | version "1.2.2" 3667 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3668 | 3669 | sprintf-js@~1.0.2: 3670 | version "1.0.3" 3671 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3672 | 3673 | sshpk@^1.7.0: 3674 | version "1.13.0" 3675 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.0.tgz#ff2a3e4fd04497555fed97b39a0fd82fafb3a33c" 3676 | dependencies: 3677 | asn1 "~0.2.3" 3678 | assert-plus "^1.0.0" 3679 | dashdash "^1.12.0" 3680 | getpass "^0.1.1" 3681 | optionalDependencies: 3682 | bcrypt-pbkdf "^1.0.0" 3683 | ecc-jsbn "~0.1.1" 3684 | jodid25519 "^1.0.0" 3685 | jsbn "~0.1.0" 3686 | tweetnacl "~0.14.0" 3687 | 3688 | starts-with@^1.0.0, starts-with@^1.0.2: 3689 | version "1.0.2" 3690 | resolved "https://registry.yarnpkg.com/starts-with/-/starts-with-1.0.2.tgz#16793a729d89d4cf3d4fb2eda2f908ae357f196f" 3691 | 3692 | string-width@^1.0.1, string-width@^1.0.2: 3693 | version "1.0.2" 3694 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3695 | dependencies: 3696 | code-point-at "^1.0.0" 3697 | is-fullwidth-code-point "^1.0.0" 3698 | strip-ansi "^3.0.0" 3699 | 3700 | string-width@^2.0.0: 3701 | version "2.0.0" 3702 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 3703 | dependencies: 3704 | is-fullwidth-code-point "^2.0.0" 3705 | strip-ansi "^3.0.0" 3706 | 3707 | string_decoder@~1.0.0: 3708 | version "1.0.0" 3709 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.0.tgz#f06f41157b664d86069f84bdbdc9b0d8ab281667" 3710 | dependencies: 3711 | buffer-shims "~1.0.0" 3712 | 3713 | stringstream@~0.0.4: 3714 | version "0.0.5" 3715 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3716 | 3717 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3718 | version "3.0.1" 3719 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3720 | dependencies: 3721 | ansi-regex "^2.0.0" 3722 | 3723 | strip-bom@^2.0.0: 3724 | version "2.0.0" 3725 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3726 | dependencies: 3727 | is-utf8 "^0.2.0" 3728 | 3729 | strip-bom@^3.0.0: 3730 | version "3.0.0" 3731 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3732 | 3733 | strip-json-comments@~2.0.1: 3734 | version "2.0.1" 3735 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3736 | 3737 | supports-color@3.1.2, supports-color@^3.1.2: 3738 | version "3.1.2" 3739 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5" 3740 | dependencies: 3741 | has-flag "^1.0.0" 3742 | 3743 | supports-color@^2.0.0: 3744 | version "2.0.0" 3745 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3746 | 3747 | table@^3.7.8: 3748 | version "3.8.3" 3749 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" 3750 | dependencies: 3751 | ajv "^4.7.0" 3752 | ajv-keywords "^1.0.0" 3753 | chalk "^1.1.1" 3754 | lodash "^4.0.0" 3755 | slice-ansi "0.0.4" 3756 | string-width "^2.0.0" 3757 | 3758 | tar-pack@^3.4.0: 3759 | version "3.4.0" 3760 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 3761 | dependencies: 3762 | debug "^2.2.0" 3763 | fstream "^1.0.10" 3764 | fstream-ignore "^1.0.5" 3765 | once "^1.3.3" 3766 | readable-stream "^2.1.4" 3767 | rimraf "^2.5.1" 3768 | tar "^2.2.1" 3769 | uid-number "^0.0.6" 3770 | 3771 | tar@^2.2.1: 3772 | version "2.2.2" 3773 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.2.tgz#0ca8848562c7299b8b446ff6a4d60cdbb23edc40" 3774 | dependencies: 3775 | block-stream "*" 3776 | fstream "^1.0.12" 3777 | inherits "2" 3778 | 3779 | test-exclude@^4.1.0: 3780 | version "4.1.0" 3781 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.0.tgz#04ca70b7390dd38c98d4a003a173806ca7991c91" 3782 | dependencies: 3783 | arrify "^1.0.1" 3784 | micromatch "^2.3.11" 3785 | object-assign "^4.1.0" 3786 | read-pkg-up "^1.0.1" 3787 | require-main-filename "^1.0.1" 3788 | 3789 | text-encoding@0.6.4: 3790 | version "0.6.4" 3791 | resolved "https://registry.yarnpkg.com/text-encoding/-/text-encoding-0.6.4.tgz#e399a982257a276dae428bb92845cb71bdc26d19" 3792 | 3793 | text-table@~0.2.0: 3794 | version "0.2.0" 3795 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3796 | 3797 | through2@^2.0.0: 3798 | version "2.0.3" 3799 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 3800 | dependencies: 3801 | readable-stream "^2.1.5" 3802 | xtend "~4.0.1" 3803 | 3804 | through@^2.3.6: 3805 | version "2.3.8" 3806 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3807 | 3808 | to-fast-properties@^1.0.1: 3809 | version "1.0.3" 3810 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3811 | 3812 | tough-cookie@~2.3.0: 3813 | version "2.3.2" 3814 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 3815 | dependencies: 3816 | punycode "^1.4.1" 3817 | 3818 | trim-right@^1.0.1: 3819 | version "1.0.1" 3820 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3821 | 3822 | tryit@^1.0.1: 3823 | version "1.0.3" 3824 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 3825 | 3826 | tunnel-agent@^0.6.0: 3827 | version "0.6.0" 3828 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3829 | dependencies: 3830 | safe-buffer "^5.0.1" 3831 | 3832 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3833 | version "0.14.5" 3834 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3835 | 3836 | type-check@~0.3.2: 3837 | version "0.3.2" 3838 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3839 | dependencies: 3840 | prelude-ls "~1.1.2" 3841 | 3842 | type-detect@0.1.1: 3843 | version "0.1.1" 3844 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-0.1.1.tgz#0ba5ec2a885640e470ea4e8505971900dac58822" 3845 | 3846 | type-detect@^1.0.0: 3847 | version "1.0.0" 3848 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-1.0.0.tgz#762217cc06db258ec48908a1298e8b95121e8ea2" 3849 | 3850 | type-detect@^4.0.0: 3851 | version "4.0.3" 3852 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.3.tgz#0e3f2670b44099b0b46c284d136a7ef49c74c2ea" 3853 | 3854 | typedarray@^0.0.6: 3855 | version "0.0.6" 3856 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3857 | 3858 | ua-parser-js@^0.7.9: 3859 | version "0.7.12" 3860 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.12.tgz#04c81a99bdd5dc52263ea29d24c6bf8d4818a4bb" 3861 | 3862 | uglify-js@^2.6: 3863 | version "2.8.26" 3864 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.26.tgz#3a1db8ae0a0aba7f92e1ddadadbd0293d549f90e" 3865 | dependencies: 3866 | source-map "~0.5.1" 3867 | yargs "~3.10.0" 3868 | optionalDependencies: 3869 | uglify-to-browserify "~1.0.0" 3870 | 3871 | uglify-to-browserify@~1.0.0: 3872 | version "1.0.2" 3873 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3874 | 3875 | uid-number@^0.0.6: 3876 | version "0.0.6" 3877 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3878 | 3879 | unc-path-regex@^0.1.0: 3880 | version "0.1.2" 3881 | resolved "https://registry.yarnpkg.com/unc-path-regex/-/unc-path-regex-0.1.2.tgz#e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa" 3882 | 3883 | unescape@^0.2.0: 3884 | version "0.2.0" 3885 | resolved "https://registry.yarnpkg.com/unescape/-/unescape-0.2.0.tgz#b78b9b60c86f1629df181bf53eee3bc8d6367ddf" 3886 | 3887 | user-home@^1.1.1: 3888 | version "1.1.1" 3889 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 3890 | 3891 | user-home@^2.0.0: 3892 | version "2.0.0" 3893 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 3894 | dependencies: 3895 | os-homedir "^1.0.0" 3896 | 3897 | util-deprecate@~1.0.1: 3898 | version "1.0.2" 3899 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3900 | 3901 | uuid@^2.0.3: 3902 | version "2.0.3" 3903 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" 3904 | 3905 | uuid@^3.0.0: 3906 | version "3.0.1" 3907 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 3908 | 3909 | v8flags@^2.0.10: 3910 | version "2.1.1" 3911 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 3912 | dependencies: 3913 | user-home "^1.1.1" 3914 | 3915 | validate-npm-package-license@^3.0.1: 3916 | version "3.0.1" 3917 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3918 | dependencies: 3919 | spdx-correct "~1.0.0" 3920 | spdx-expression-parse "~1.0.0" 3921 | 3922 | verror@1.3.6: 3923 | version "1.3.6" 3924 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 3925 | dependencies: 3926 | extsprintf "1.0.2" 3927 | 3928 | vlq@^0.2.1: 3929 | version "0.2.2" 3930 | resolved "https://registry.yarnpkg.com/vlq/-/vlq-0.2.2.tgz#e316d5257b40b86bb43cb8d5fea5d7f54d6b0ca1" 3931 | 3932 | whatwg-fetch@>=0.10.0: 3933 | version "2.0.3" 3934 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz#9c84ec2dcf68187ff00bc64e1274b442176e1c84" 3935 | 3936 | which-module@^1.0.0: 3937 | version "1.0.0" 3938 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 3939 | 3940 | which@^1.2.12, which@^1.2.4, which@^1.2.9: 3941 | version "1.2.14" 3942 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 3943 | dependencies: 3944 | isexe "^2.0.0" 3945 | 3946 | wide-align@^1.1.0: 3947 | version "1.1.2" 3948 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 3949 | dependencies: 3950 | string-width "^1.0.2" 3951 | 3952 | window-size@0.1.0: 3953 | version "0.1.0" 3954 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3955 | 3956 | wordwrap@0.0.2: 3957 | version "0.0.2" 3958 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3959 | 3960 | wordwrap@~0.0.2: 3961 | version "0.0.3" 3962 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3963 | 3964 | wordwrap@~1.0.0: 3965 | version "1.0.0" 3966 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3967 | 3968 | wrap-ansi@^2.0.0: 3969 | version "2.1.0" 3970 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3971 | dependencies: 3972 | string-width "^1.0.1" 3973 | strip-ansi "^3.0.1" 3974 | 3975 | wrappy@1: 3976 | version "1.0.2" 3977 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3978 | 3979 | write-file-atomic@^1.1.4: 3980 | version "1.3.4" 3981 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.4.tgz#f807a4f0b1d9e913ae7a48112e6cc3af1991b45f" 3982 | dependencies: 3983 | graceful-fs "^4.1.11" 3984 | imurmurhash "^0.1.4" 3985 | slide "^1.1.5" 3986 | 3987 | write@^0.2.1: 3988 | version "0.2.1" 3989 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 3990 | dependencies: 3991 | mkdirp "^0.5.1" 3992 | 3993 | xtend@^4.0.0, xtend@~4.0.1: 3994 | version "4.0.1" 3995 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3996 | 3997 | y18n@^3.2.1: 3998 | version "3.2.1" 3999 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 4000 | 4001 | yallist@^2.0.0: 4002 | version "2.1.2" 4003 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 4004 | 4005 | yargs-parser@^5.0.0: 4006 | version "5.0.0" 4007 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" 4008 | dependencies: 4009 | camelcase "^3.0.0" 4010 | 4011 | yargs@^7.1.0: 4012 | version "7.1.0" 4013 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" 4014 | dependencies: 4015 | camelcase "^3.0.0" 4016 | cliui "^3.2.0" 4017 | decamelize "^1.1.1" 4018 | get-caller-file "^1.0.1" 4019 | os-locale "^1.4.0" 4020 | read-pkg-up "^1.0.1" 4021 | require-directory "^2.1.1" 4022 | require-main-filename "^1.0.1" 4023 | set-blocking "^2.0.0" 4024 | string-width "^1.0.2" 4025 | which-module "^1.0.0" 4026 | y18n "^3.2.1" 4027 | yargs-parser "^5.0.0" 4028 | 4029 | yargs@~3.10.0: 4030 | version "3.10.0" 4031 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 4032 | dependencies: 4033 | camelcase "^1.0.2" 4034 | cliui "^2.1.0" 4035 | decamelize "^1.0.0" 4036 | window-size "0.1.0" 4037 | --------------------------------------------------------------------------------