├── modules ├── converter │ ├── constants.js │ └── index.js ├── progress │ └── index.js ├── logger │ └── index.js ├── datatransform │ └── index.js ├── reader │ └── index.js └── parser │ └── index.js ├── index.js ├── .travis.yml ├── .gitignore ├── test ├── unit │ ├── reader.test.js │ └── parser.test.js └── mocks │ ├── invalid.csv │ └── test.csv ├── package.json ├── README.md ├── LICENSE └── yarn.lock /modules/converter/constants.js: -------------------------------------------------------------------------------- 1 | 2 | const NUMBER_TYPE = 'Number' 3 | const NUMBER_DOUBLE_TYPE = 'NumberDouble' 4 | 5 | module.exports = { 6 | NUMBER_TYPE, 7 | NUMBER_DOUBLE_TYPE 8 | } 9 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const Parser = require('./modules/parser') 4 | const ConverterConsts = require('./modules/converter/constants') 5 | 6 | module.exports = { 7 | Parser, 8 | ConverterConsts 9 | } 10 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "10" 4 | before_install: 5 | - curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.1.0 6 | - export PATH="$HOME/.yarn/bin:$PATH" 7 | install: 8 | - yarn global add codecov 9 | - yarn install 10 | script: 11 | - yarn run lint 12 | - yarn run test:unit 13 | - codecov 14 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | #idea 2 | .idea 3 | yap-csv.iml 4 | 5 | # Logs 6 | logs 7 | *.log 8 | npm-debug.log* 9 | 10 | # Runtime data 11 | pids 12 | *.pid 13 | *.seed 14 | 15 | # Directory for instrumented libs generated by jscoverage/JSCover 16 | lib-cov 17 | 18 | # Coverage directory used by tools like istanbul 19 | coverage 20 | 21 | # nyc test coverage 22 | .nyc_output 23 | 24 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 25 | .grunt 26 | 27 | # node-waf configuration 28 | .lock-wscript 29 | 30 | # Compiled binary addons (http://nodejs.org/api/addons.html) 31 | build/Release 32 | 33 | # Dependency directories 34 | node_modules 35 | jspm_packages 36 | 37 | # Optional npm cache directory 38 | .npm 39 | 40 | # Optional REPL history 41 | .node_repl_history 42 | -------------------------------------------------------------------------------- /test/unit/reader.test.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const test = require('ava') 4 | const Reader = require('../../modules/reader') 5 | 6 | test('reader - get CSV keys', async t => { 7 | t.plan(3) 8 | 9 | const csvContent = await Reader.readFile(process.cwd() + '/test/mocks/test.csv', ',') 10 | t.is(csvContent.length, 6) 11 | 12 | const keys = Reader.getFileKeys(csvContent) 13 | t.is(keys.length, 16) 14 | t.is(keys[0], 'User Name') 15 | }) 16 | 17 | test('reader - no CSV keys', t => { 18 | t.plan(1) 19 | 20 | const keys = Reader.getFileKeys([]) 21 | t.is(keys.length, 0) 22 | }) 23 | 24 | test('reader - invalid file path', async t => { 25 | t.plan(2) 26 | 27 | const error = await t.throws(Reader.readFile('abc', ',')) 28 | t.is(error, 'an error occurred while opening file abc') 29 | }) 30 | -------------------------------------------------------------------------------- /modules/progress/index.js: -------------------------------------------------------------------------------- 1 | /*eslint new-cap: ["error", { "newIsCap": false }]*/ 2 | 'use strict' 3 | 4 | const winston = require('winston') 5 | 6 | /** 7 | * @module Progress 8 | * @description module that provides a progress notification 9 | */ 10 | 11 | const wLogger = new winston.createLogger({ 12 | transports: [ 13 | new (winston.transports.Console)({ 14 | json: true, 15 | timestamp: true 16 | }) 17 | ] 18 | }) 19 | 20 | class Progress { 21 | /** 22 | * @function report 23 | * @description logging a string 24 | * @param {String} message - the string we want to log 25 | */ 26 | static report () { 27 | /** 28 | * display the message from this map 29 | */ 30 | return wLogger.info(...arguments) 31 | } 32 | } 33 | 34 | module.exports = Progress 35 | -------------------------------------------------------------------------------- /test/mocks/invalid.csv: -------------------------------------------------------------------------------- 1 | User Name,First Name,Last Name,Display Name,Job Title,Department,Office Number,Office Phone,Mobile Phone,Fax,Address,City,State or Province,ZIP or Postal Code,Country or Region 2 | ,,Green,Chris Green,IT Manager,Information Technology,123451,123-555-1211,123-555-6641,123-555-9821,1 Microsoft way,Redmond,Wa,98052,United States 3 | ben@contoso.com,Ben,Andrews,Ben Andrews,IT Manager,Information Technology,123452,123-555-1212,123-555-6642,123-555-9822,1 Microsoft way,Redmond,Wa,98052,United States 4 | david@contoso.com,David,Longmuir,David Longmuir,IT Manager,Information Technology,123453,123-555-1213,123-555-6643,123-555-9823,1 Microsoft way,Redmond,Wa,98052,United States 5 | cynthia@contoso.com,Cynthia,Carey,Cynthia Carey,IT Manager,Information Technology,123454,123-555-1214,123-555-6644,123-555-9824,1 Microsoft way,Redmond,Wa,98052,United States 6 | melissa@contoso.com,Melissa,MacBeth,Melissa MacBeth,IT Manager,Information Technology,123455,123-555-1215,123-555-6645,123-555-9825,1 Microsoft way,Redmond,Wa,98052,United States -------------------------------------------------------------------------------- /modules/logger/index.js: -------------------------------------------------------------------------------- 1 | /*eslint new-cap: ["error", { "newIsCap": false }]*/ 2 | 'use strict' 3 | 4 | const winston = require('winston') 5 | 6 | /** 7 | * @module Logger 8 | * @description module that provides a collection of loggers for different uses 9 | */ 10 | 11 | const wLogger = new winston.createLogger({ 12 | transports: [ 13 | new (winston.transports.Console)({ 14 | json: true, 15 | timestamp: true 16 | }) 17 | ] 18 | }) 19 | 20 | class Logger { 21 | /** 22 | * @function log 23 | * @description logging a string 24 | * @param {String} message - the string we want to log 25 | */ 26 | static log () { 27 | /** 28 | * display the message from this map 29 | */ 30 | return wLogger.info(...arguments) 31 | } 32 | 33 | /** 34 | * @function error 35 | * @description logging a string in error context 36 | * @param {String} message - the string we want to log 37 | */ 38 | static error () { 39 | return wLogger.error(...arguments) 40 | } 41 | } 42 | 43 | module.exports = Logger 44 | -------------------------------------------------------------------------------- /test/mocks/test.csv: -------------------------------------------------------------------------------- 1 | User Name,First Name,Last Name,Display Name,Job Title,Department,Office Number,Office Phone,Mobile Phone,Fax,Address,City,State or Province,ZIP or Postal Code,Country or Region,Salary 2 | chris@contoso.com,Chris,Green,Chris Green,IT Manager,Information Technology,123451,123-555-1211,123-555-6641,123-555-9821,1 Microsoft way,Redmond,Wa,98052,United States,50.000 3 | ben@contoso.com,Ben,Andrews,Ben Andrews,IT Manager,Information Technology,123452,123-555-1212,123-555-6642,123-555-9822,1 Microsoft way,Redmond,Wa,98052,United States,60.000 4 | david@contoso.com,David,Longmuir,David Longmuir,IT Manager,Information Technology,123453,123-555-1213,123-555-6643,123-555-9823,1 Microsoft way,Redmond,Wa,98052,United States,70.000 5 | cynthia@contoso.com,Cynthia,Carey,Cynthia Carey,IT Manager,Information Technology,123454,123-555-1214,123-555-6644,123-555-9824,1 Microsoft way,Redmond,Wa,98052,United States,80.000 6 | melissa@contoso.com,Melissa,MacBeth,Melissa MacBeth,IT Manager,Information Technology,123455,123-555-1215,123-555-6645,123-555-9825,1 Microsoft way,Redmond,Wa,98052,United States,90.000 -------------------------------------------------------------------------------- /modules/datatransform/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const { Transform } = require('stream') 4 | const converter = require('../converter') 5 | 6 | /** 7 | * Transform stream that takes column names from first row and add them to each object on each row 8 | * @param parser - Need the parser stream to know when the first chunk (column names row) is received 9 | * @returns {*} 10 | */ 11 | const addKeyNameToFields = (parser) => { 12 | let keys = [] 13 | 14 | return new Transform({ 15 | readableObjectMode: true, 16 | writableObjectMode: true, 17 | transform (chunk, encoding, callback) { 18 | if (parser.info.records === 1) { 19 | keys = chunk 20 | } else { 21 | let parsedObject = {} 22 | keys.forEach((key, keyIndex) => { 23 | parsedObject[key] = chunk[keyIndex] 24 | }) 25 | this.push(parsedObject) 26 | } 27 | callback() 28 | } 29 | }) 30 | } 31 | 32 | /** 33 | * Transform stream that convert each row according the given fields map 34 | * @param newFieldsMap 35 | * @param extraFieldsMap 36 | * @param fieldsToExclude 37 | * @returns {*} 38 | */ 39 | const convertObjectByMap = (newFieldsMap, extraFieldsMap, fieldsToExclude) => { 40 | return new Transform({ 41 | readableObjectMode: true, 42 | writableObjectMode: true, 43 | transform (chunk, encoding, callback) { 44 | let convertedRow = converter.convertObjectByMap({ 45 | dataObject: chunk, 46 | newFieldsMap: newFieldsMap, 47 | extraFieldsMap: extraFieldsMap(), 48 | fieldsToExclude: fieldsToExclude 49 | }) 50 | this.push(convertedRow) 51 | callback() 52 | } 53 | }) 54 | } 55 | 56 | module.exports = { 57 | addKeyNameToFields, 58 | convertObjectByMap 59 | } 60 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@nielsen-oss/yap-csv", 3 | "version": "1.0.0", 4 | "description": "Node.js package that manages CSV to JSON conversion supporting complex field mapping", 5 | "repository": { 6 | "type": "git", 7 | "url": "git@github.com:nielsen-oss/yap-csv.git" 8 | }, 9 | "main": "index.js", 10 | "scripts": { 11 | "doc": "jsdoc . -c ./jsdoc.json", 12 | "lint": "standard", 13 | "lintFix": "standard --fix", 14 | "test:unit": "nyc ava '**/test/unit/*.test.js' " 15 | }, 16 | "devDependencies": { 17 | "ava": "^0.18.2", 18 | "babel-eslint": "^6.0.4", 19 | "babel-plugin-syntax-async-functions": "^6.5.0", 20 | "babel-plugin-transform-regenerator": "^6.6.5", 21 | "babel-preset-es2015": "^6.6.0", 22 | "babel-tape-runner": "^2.0.1", 23 | "jsdoc": "^3.4.2", 24 | "nyc": "^7.1.0", 25 | "proxyquire": "^1.7.10", 26 | "sinon": "^2.0.0-pre.4", 27 | "standard": "^7.1.0", 28 | "supertest": "^2.0.1", 29 | "supertest-as-promised": "^4.0.2", 30 | "tap-nyan": "0.0.2", 31 | "tap-spec": "^4.1.1", 32 | "tape": "^4.6.0" 33 | }, 34 | "dependencies": { 35 | "bluebird": "^3.3.3", 36 | "body-parser": "^1.18.2", 37 | "csv": "^5.0.0", 38 | "express": "^4.16.0", 39 | "express-validation": "^0.6.0", 40 | "express-winston": "^2.5.0", 41 | "express-winston-middleware": "^0.1.0", 42 | "lodash": "^4.17.11", 43 | "uuid": "^3.0.1", 44 | "winston": "^3.2.1" 45 | }, 46 | "license": "Apache-2.0", 47 | "babel": { 48 | "presets": [ 49 | "es2015" 50 | ], 51 | "plugins": [ 52 | "syntax-async-functions", 53 | "transform-regenerator" 54 | ] 55 | }, 56 | "standard": { 57 | "parser": "babel-eslint" 58 | }, 59 | "nyc": { 60 | "statements": 50, 61 | "branches": 50, 62 | "functions": 50, 63 | "lines": 50, 64 | "reporter": [ 65 | "text", 66 | "lcov", 67 | "text-summary" 68 | ], 69 | "check-coverage": true, 70 | "exclude": [ 71 | "**/*.spec.js", 72 | "**/test/**" 73 | ] 74 | } 75 | } 76 | -------------------------------------------------------------------------------- /modules/converter/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const _ = require('lodash') 4 | const constants = require('./constants') 5 | 6 | /** 7 | * 8 | * @param {Object} dataObject - the object to convert 9 | * @param {Object} newFieldsMap - a map between old field names and new field names 10 | * @param {Object} extraFieldsMap - a map to add extra fields that are not in the original object. each value is a function that gets the converteed object 11 | * @return {{}} 12 | */ 13 | const convertObjectByMap = ({dataObject = {}, newFieldsMap = {}, extraFieldsMap = {}, fieldsToExclude = []}) => { 14 | let convertedObject = {} 15 | 16 | Object.keys(dataObject).forEach((dataKey) => { 17 | const newKeyMetaData = newFieldsMap[ dataKey ] || dataKey 18 | let keyToUse = null 19 | const keyValue = dataObject[ dataKey ] 20 | let value = keyValue 21 | 22 | if (!fieldsToExclude.includes(dataKey)) { 23 | // specified name and type 24 | if (_.isObject(newKeyMetaData)) { 25 | keyToUse = newKeyMetaData.name 26 | 27 | // Converting to types 28 | if (_.isFunction(newKeyMetaData.type)) { 29 | value = newKeyMetaData.type(dataObject) 30 | } else if (newKeyMetaData.type === constants.NUMBER_TYPE) { 31 | value = parseInt(keyValue, 10) 32 | } else if (newKeyMetaData.type === constants.NUMBER_DOUBLE_TYPE) { 33 | value = parseFloat(keyValue) 34 | } 35 | } else { 36 | keyToUse = newKeyMetaData 37 | } 38 | 39 | if (_.isObject(convertedObject[keyToUse])) { 40 | convertedObject[keyToUse] = Object.assign(convertedObject[keyToUse], value) 41 | } else { 42 | convertedObject[keyToUse] = value 43 | } 44 | } 45 | }) 46 | 47 | const extraFields = Object.keys(extraFieldsMap).map((extraFieldKey) => { 48 | return { 49 | [extraFieldKey]: extraFieldsMap[extraFieldKey](convertedObject) 50 | } 51 | }) 52 | 53 | Object.assign(convertedObject, ...extraFields) 54 | 55 | return convertedObject 56 | } 57 | 58 | module.exports = { 59 | convertObjectByMap 60 | } 61 | -------------------------------------------------------------------------------- /test/unit/parser.test.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const test = require('ava') 4 | const sinon = require('sinon') 5 | const fs = require('fs') 6 | const Parser = require('../../modules/parser') 7 | 8 | test('parseSingle - file does not exist', async t => { 9 | const error = await t.throws(Parser.parseSingle('abc', 'xyz')) 10 | 11 | t.is(error.message, 'file abc does not exist') 12 | }) 13 | 14 | test('parseSingle - parse CSV', async t => { 15 | t.plan(2) 16 | const result = await Parser.parseSingle('test.csv', process.cwd() + '/test/mocks/') 17 | 18 | t.is(result.length, 5) 19 | t.is(result[0]['First Name'], 'Chris') 20 | }) 21 | 22 | test('parseSingle - parse CSV with fields map', async t => { 23 | t.plan(4) 24 | 25 | const FIELDS_MAP = { 26 | 'First Name': 'firstName', 27 | 'Last Name': { 28 | name: 'lastName', 29 | type: (dataObj) => { 30 | return dataObj['Last Name'].toLowerCase() 31 | } 32 | }, 33 | 'ZIP or Postal Code': { 34 | name: 'zip', 35 | type: 'Number' 36 | }, 37 | 'Salary': { 38 | name: 'salary', 39 | type: 'NumberDouble' 40 | } 41 | } 42 | const result = await Parser.parseSingle('test.csv', process.cwd() + '/test/mocks/', ',', FIELDS_MAP) 43 | 44 | t.is(result.length, 5) 45 | t.truthy(result[0].hasOwnProperty('firstName')) 46 | t.truthy(result[0].hasOwnProperty('lastName')) 47 | t.is(result[0]['lastName'], 'green') 48 | }) 49 | 50 | test('parseSingle - parse CSV with invalid row', async t => { 51 | t.plan(1) 52 | 53 | const result = await Parser.parseSingle('invalid.csv', process.cwd() + '/test/mocks/') 54 | 55 | t.is(result.length, 4) 56 | }) 57 | 58 | test('parseSingle - parse CSV with extra field', async t => { 59 | t.plan(3) 60 | 61 | const EXTRA_FIELDS_MAP = () => { 62 | return { 63 | email: (convertedDataObj) => { 64 | return convertedDataObj['User Name'] 65 | } 66 | } 67 | } 68 | 69 | const result = await Parser.parseSingle('test.csv', process.cwd() + '/test/mocks/', ',', {}, EXTRA_FIELDS_MAP) 70 | 71 | t.is(result.length, 5) 72 | t.truthy(result[0].hasOwnProperty('email')) 73 | t.is(result[0]['email'], 'chris@contoso.com') 74 | }) 75 | 76 | test('parseSingleStream - parse CSV', async t => { 77 | t.plan(5) 78 | const expectedUsers = ['chris@contoso.com', 'ben@contoso.com', 'david@contoso.com', 'cynthia@contoso.com', 'melissa@contoso.com'] 79 | const parser = await Parser.parseSingleStream('test.csv', process.cwd() + '/test/mocks/') 80 | let data = [] 81 | 82 | parser.on('data', function (chunk) { 83 | data.push(chunk) 84 | }) 85 | 86 | await new Promise((resolve, reject) => { 87 | parser.on('end', function () { 88 | data.forEach((row, index) => { 89 | t.is(row['User Name'], expectedUsers[index], 'User Name should be as expected') 90 | }) 91 | resolve() 92 | }) 93 | }) 94 | }) 95 | 96 | test('parseSingleStream - error', async t => { 97 | const fileName = 'test.csv' 98 | const filePath = process.cwd() + '/test/mocks/' 99 | sinon.stub(fs, 'createReadStream').returns(null) 100 | 101 | const error = await t.throws(() => { 102 | Parser.parseSingleStream(fileName, filePath) 103 | }, Error) 104 | 105 | t.is(error.message, `an error occurred while parsing ${filePath}${fileName}`) 106 | fs.createReadStream.restore() 107 | }) 108 | 109 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # yap-csv 2 | [![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com) 3 | [![npm version](https://badge.fury.io/js/%40nielsen-oss%2Fyap-csv.svg)](https://badge.fury.io/js/%40nielsen-oss%2Fyap-csv) 4 | [![Build Status](https://travis-ci.org/nielsen-oss/yap-csv.svg?branch=master)](https://travis-ci.org/nielsen-oss/yap-csv) 5 | [![codecov](https://codecov.io/gh/nielsen-oss/yap-csv/branch/master/graph/badge.svg)](https://codecov.io/gh/nielsen-oss/yap-csv) 6 | [![Known Vulnerabilities](https://snyk.io/test/github/nielsen-oss/yap-csv/badge.svg)](https://snyk.io/test/github/nielsen-oss/yap-csv) 7 |
8 | The purpose of this module is to support converting a csv (with delimiter support) to an array of json objects.
9 | Using a custom map that can handle both simple fields renames and more complicated fields that are a result of calculations 10 | 11 | ## Usage 12 | ### Add to project 13 | ```bash 14 | yarn add @nielsen-oss/yap-csv 15 | ``` 16 | ### Structure 17 | The module exposes two variables a ```Parser``` and ```ConverterConsts```.
18 | One is used for the actual parsing process and one provide consts helpers. 19 | 20 | #### Simple Usage 21 | ```javascript 22 | const {Parser} = require('yap-csv') 23 | // parserPromise is a Promise 24 | const parserPromise = Parser.parseSingle(FILE_NAME, FILE_LOCATION, DELIMITER, FIELDS_MAP, EXTRA_FIELDS_MAP) 25 | parserPromise 26 | .then((formattedData) => { 27 | // Do what you want with formattedData 28 | }) 29 | .catch((e) => { 30 | console.error(e.stack) 31 | }) 32 | ``` 33 | 34 | #### Stream Usage 35 | ```javascript 36 | const {Parser} = require('yap-csv') 37 | const formattedData = [] 38 | // parserStream is a stream 39 | const parserStream = Parser.parseSingleStream(FILE_NAME, FILE_LOCATION, DELIMITER, FIELDS_MAP, EXTRA_FIELDS_MAP) 40 | parserStream.on('error', (e) => { 41 | console.error(e.stack) 42 | }) 43 | parserStream.on('data', (chunk) => { 44 | formattedData.push(chunk) 45 | }) 46 | parserStream.on('end', () => { 47 | // Do what you want with formattedData 48 | }) 49 | ``` 50 | 51 | #### Fields Specification 52 | 53 | * ```FILE_NAME``` - The name of the file being parsed 54 | * ```FILE_LOCATION``` - The location of the file being parsed 55 | * ```DELIMITER``` - The delimiter of the text 56 | * ```FIELDS_MAP``` - A conversion map of the fields 57 | * ```EXTRA_FIELDS_MAP``` - A conversion map for new fields that you would like to add 58 | 59 | #### ```FIELDS_MAP``` 60 | The following is an example of a map 61 | ```javascript 62 | const convertConsts = require('yap-csv').ConverterConsts 63 | 64 | const FIELDS_MAP = { 65 | 'FIELD1': 'simple_name_change', 66 | 'FIELD2': { 67 | name: 'my_custom_number', 68 | type: convertConsts.NUMBER_TYPE 69 | }, 70 | 'FIELD3': { 71 | name: 'functional_change', 72 | type: (dataObj) => { 73 | return dataObj['FIELD3'].toLowerCase() 74 | } 75 | } 76 | } 77 | ``` 78 | 79 | As you can see using the fields map you can: 80 | * Preform simple field name changes 81 | * Convert to the helper types that are provided in this module 82 | * Preform conversions using a specified function that receives the original data object (before conversion) 83 | 84 | #### ```EXTRA_FIELDS_MAP``` 85 | The following is an example of a map of extra fields 86 | ```javascript 87 | const EXTRA_FIELDS_MAP = { 88 | complicatedField: (convertedDataObj) => { 89 | return convertedDataObj['simple_name_change'] 90 | } 91 | } 92 | ``` 93 | 94 | As you can see using the fields map you can add fields that are not in the original data.
95 | Each field should be a function that receives that data after it passed the original formatting using the ```FIELDS_MAP```. 96 | 97 | #### ```ConverterConsts``` 98 | The exported consts are: 99 | * ```NUMBER_TYPE``` 100 | * ```NUMBER_DOUBLE_TYPE``` 101 | 102 | According the the types we parse the results to a ```parseInt``` or ```parseFloat``` 103 | -------------------------------------------------------------------------------- /modules/reader/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const csv = require('csv') 4 | const fs = require('fs') 5 | const Logger = require('../logger') 6 | 7 | /** 8 | * @module Parser 9 | * @exports Parser module 10 | * @description Static class parsing the files 11 | */ 12 | module.exports = class Parser { 13 | /** 14 | * @name getFileKeys 15 | * @description Extract the keys from data that was extracted by this class 16 | * @param parsedData 17 | * @returns {String[]} 18 | */ 19 | static getFileKeys (parsedData = []) { 20 | if (parsedData.length) { 21 | const keys = parsedData[ 0 ] 22 | // Logger.log(`keys - ${keys}`) 23 | return keys 24 | } else { 25 | Logger.error('no keys for file') 26 | return [] 27 | } 28 | } 29 | 30 | /** 31 | * Returns if a file key exists 32 | * @param fileKey 33 | * @return {boolean} 34 | */ 35 | static isFileKeyExists (path) { 36 | if (fs.existsSync(path)) { 37 | return true 38 | } 39 | return false 40 | } 41 | 42 | /** 43 | * @name getFilesDataObjects 44 | * @description returns an array of objects from the parsed data 45 | * @param parsedData 46 | * @returns {Object[]} 47 | */ 48 | static getFilesDataObjects (parsedData = []) { 49 | const keys = Parser.getFileKeys(parsedData) 50 | 51 | const parsedObjects = parsedData.map((parsedRow, rowIndex) => { 52 | if (rowIndex > 0) { // 53 | let parsedObject = {} 54 | keys.forEach((key, keyIndex) => { 55 | parsedObject[ key ] = parsedRow[ keyIndex ] 56 | }) 57 | 58 | return parsedObject 59 | } else { 60 | return {} 61 | } 62 | }) 63 | 64 | parsedObjects.shift() // remove the keys - the first row in the file 65 | return parsedObjects 66 | } 67 | 68 | /** 69 | * Read a csv file from source and returns that file in an array form 70 | * @param {string} filePath - The file path to parese 71 | * @param {String} delimiter - The delimiter of the file 72 | * @returns {Promise} 73 | */ 74 | static readFile (filePath, delimiter) { 75 | const readPromise = new Promise((resolve, reject) => { 76 | try { 77 | const parser = csv.parse({ delimiter: delimiter, relax: true }, (err, data) => { 78 | if (err) { 79 | const message = `an error occurred while opening file ${filePath}` 80 | Logger.error(message, err) 81 | reject(err) 82 | } else { 83 | resolve(data) 84 | } 85 | }) 86 | 87 | const fileStream = fs.createReadStream(filePath) 88 | 89 | fileStream.on('open', () => { 90 | Logger.log(`opened file ${filePath}`) 91 | fileStream.pipe(parser) 92 | }) 93 | 94 | fileStream.on('error', (error) => { 95 | const message = `an error occurred while opening file ${filePath}` 96 | Logger.error(message, error) 97 | reject(message) 98 | }) 99 | } catch (e) { 100 | const message = `an error occurred while parsing ${filePath}` 101 | Logger.error(message, e) 102 | reject(message) 103 | } 104 | }) 105 | return readPromise 106 | } 107 | 108 | /** 109 | * 110 | * @param filePath 111 | * @param delimiter 112 | * @returns {*} 113 | */ 114 | static readFileStream (filePath, delimiter) { 115 | try { 116 | const parser = csv.parse({ delimiter: delimiter, relax_column_count: true }) 117 | const fileStream = fs.createReadStream(filePath) 118 | 119 | fileStream.on('error', (error) => { 120 | const message = `an error occurred while opening file ${filePath}` 121 | Logger.error(message, error) 122 | throw error 123 | }) 124 | 125 | return fileStream.pipe(parser) 126 | } catch (error) { 127 | const message = `an error occurred while parsing ${filePath}` 128 | Logger.error(message, error) 129 | throw new Error(message) 130 | } 131 | } 132 | } 133 | -------------------------------------------------------------------------------- /modules/parser/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const converter = require('../converter') 4 | const Logger = require('../logger') 5 | const Progress = require('../progress') 6 | const Reader = require('../reader') 7 | const DataTransform = require('../datatransform') 8 | const { Transform } = require('stream') 9 | 10 | /** 11 | * @module Parser 12 | * @exports Parser module 13 | * @description Static class for parsing files 14 | */ 15 | module.exports = class Parser { 16 | 17 | /** 18 | * Reader a single file and returns a fulfilled promise with converted data 19 | * @name parseSingle 20 | * @param {String} fileKey - File key to parse 21 | * @param {String} filesLocation - the location of the files 22 | * @return {Promise} 23 | */ 24 | static parseSingle (fileKey, filesLocation, delimiter = ',', FIELDS_MAP = {}, EXTRA_FIELDS_MAP = () => {}, EXCLUDE_FIELDS = []) { 25 | const fileName = filesLocation + fileKey 26 | 27 | if (!Reader.isFileKeyExists(fileName)) { 28 | return Promise.reject(new Error(`file ${fileKey} does not exist`)) 29 | } 30 | 31 | return Reader.readFile(fileName, delimiter).then((parsedData) => { 32 | let parsedRows = Reader.getFilesDataObjects(parsedData) 33 | const convertedRows = [] 34 | const printedProgress = [] 35 | 36 | Logger.log(`starting conversion ${fileKey}`) 37 | let unFulfilled = false 38 | 39 | // Convert each row 40 | parsedRows.forEach((parsedRow, i) => { 41 | if (Parser.isValidRow(parsedRow)) { 42 | convertedRows.push(converter.convertObjectByMap({ 43 | dataObject: parsedRow, 44 | newFieldsMap: FIELDS_MAP, 45 | extraFieldsMap: EXTRA_FIELDS_MAP(), 46 | fieldsToExclude: EXCLUDE_FIELDS 47 | })) 48 | } else { 49 | unFulfilled = true 50 | } 51 | 52 | const currentProgress = Parser.getCurrentParseProgress(i, parsedRows.length, fileKey) 53 | if (!printedProgress.includes(currentProgress)) { 54 | printedProgress.push(currentProgress) 55 | Progress.report(`${fileKey} progress ${currentProgress}%`) 56 | } 57 | }) 58 | 59 | if (unFulfilled) { 60 | Logger.error(`file ${fileKey} has empty rows`) 61 | } 62 | 63 | if (convertedRows.length !== parsedRows.length) { 64 | Logger.error(`${fileKey} is not the same size as converted expected ${parsedRows.length} got ${convertedRows.length}`) 65 | } 66 | 67 | Logger.log(`COMPLETED: file ${fileKey} with ${convertedRows.length} rows`) 68 | return Promise.resolve(convertedRows) 69 | }) 70 | } 71 | 72 | /** 73 | * Validated that there are no empty or nullified (including null string) 74 | * @param dataObject 75 | * @return {boolean} 76 | */ 77 | static isValidRow (dataObject = {}) { 78 | return Object.keys(dataObject).every((key) => { 79 | return dataObject[ key ] != null && dataObject[ key ] !== '' && dataObject[ key ] !== 'NULL' 80 | }) 81 | } 82 | 83 | /** 84 | * Gets progress of parsing data 85 | * @name getCurrentParseProgress 86 | * @description Returns progress of parsing data 87 | * @param {Number} index - The currently parsed row 88 | * @param {Number} totalSize - Number of total rows 89 | * @param {String} fileKey - The file key 90 | * @return {Number} - THe current progress 91 | */ 92 | static getCurrentParseProgress (index, totalSize, fileKey) { 93 | const percentagesRound = 2 94 | const totalPercentage = (index / totalSize) * 100 95 | const percentageProgressToFive = Math.ceil(totalPercentage / percentagesRound) * percentagesRound // nearest dividable by percentagesRound 96 | 97 | return percentageProgressToFive 98 | } 99 | 100 | /** 101 | * 102 | * @param fileKey 103 | * @param filesLocation 104 | * @param delimiter 105 | * @param FIELDS_MAP 106 | * @param EXTRA_FIELDS_MAP 107 | * @param EXCLUDE_FIELDS 108 | * @returns {*} 109 | */ 110 | static parseSingleStream (fileKey, filesLocation, delimiter = ',', FIELDS_MAP = {}, EXTRA_FIELDS_MAP = () => {}, EXCLUDE_FIELDS = []) { 111 | try { 112 | const fileName = filesLocation + fileKey 113 | const parser = Reader.readFileStream(fileName, delimiter) 114 | 115 | // Report Progress 116 | const reportProgress = new Transform({ 117 | writableObjectMode: true, 118 | readableObjectMode: true, 119 | transform (chunk, encoding, callback) { 120 | Progress.report(`${fileKey} - Processing row ${parser.info.records}`) 121 | this.push(chunk) 122 | callback() 123 | } 124 | }) 125 | 126 | return parser 127 | .pipe(DataTransform.addKeyNameToFields(parser)) 128 | .pipe(DataTransform.convertObjectByMap(FIELDS_MAP, EXTRA_FIELDS_MAP, EXCLUDE_FIELDS)) 129 | .pipe(reportProgress) 130 | } catch (error) { 131 | throw error 132 | } 133 | } 134 | } 135 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | 2 | Apache License 3 | Version 2.0, January 2004 4 | http://www.apache.org/licenses/ 5 | 6 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 7 | 8 | 1. Definitions. 9 | 10 | "License" shall mean the terms and conditions for use, reproduction, 11 | and distribution as defined by Sections 1 through 9 of this document. 12 | 13 | "Licensor" shall mean the copyright owner or entity authorized by 14 | the copyright owner that is granting the License. 15 | 16 | "Legal Entity" shall mean the union of the acting entity and all 17 | other entities that control, are controlled by, or are under common 18 | control with that entity. For the purposes of this definition, 19 | "control" means (i) the power, direct or indirect, to cause the 20 | direction or management of such entity, whether by contract or 21 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 22 | outstanding shares, or (iii) beneficial ownership of such entity. 23 | 24 | "You" (or "Your") shall mean an individual or Legal Entity 25 | exercising permissions granted by this License. 26 | 27 | "Source" form shall mean the preferred form for making modifications, 28 | including but not limited to software source code, documentation 29 | source, and configuration files. 30 | 31 | "Object" form shall mean any form resulting from mechanical 32 | transformation or translation of a Source form, including but 33 | not limited to compiled object code, generated documentation, 34 | and conversions to other media types. 35 | 36 | "Work" shall mean the work of authorship, whether in Source or 37 | Object form, made available under the License, as indicated by a 38 | copyright notice that is included in or attached to the work 39 | (an example is provided in the Appendix below). 40 | 41 | "Derivative Works" shall mean any work, whether in Source or Object 42 | form, that is based on (or derived from) the Work and for which the 43 | editorial revisions, annotations, elaborations, or other modifications 44 | represent, as a whole, an original work of authorship. For the purposes 45 | of this License, Derivative Works shall not include works that remain 46 | separable from, or merely link (or bind by name) to the interfaces of, 47 | the Work and Derivative Works thereof. 48 | 49 | "Contribution" shall mean any work of authorship, including 50 | the original version of the Work and any modifications or additions 51 | to that Work or Derivative Works thereof, that is intentionally 52 | submitted to Licensor for inclusion in the Work by the copyright owner 53 | or by an individual or Legal Entity authorized to submit on behalf of 54 | the copyright owner. For the purposes of this definition, "submitted" 55 | means any form of electronic, verbal, or written communication sent 56 | to the Licensor or its representatives, including but not limited to 57 | communication on electronic mailing lists, source code control systems, 58 | and issue tracking systems that are managed by, or on behalf of, the 59 | Licensor for the purpose of discussing and improving the Work, but 60 | excluding communication that is conspicuously marked or otherwise 61 | designated in writing by the copyright owner as "Not a Contribution." 62 | 63 | "Contributor" shall mean Licensor and any individual or Legal Entity 64 | on behalf of whom a Contribution has been received by Licensor and 65 | subsequently incorporated within the Work. 66 | 67 | 2. Grant of Copyright License. Subject to the terms and conditions of 68 | this License, each Contributor hereby grants to You a perpetual, 69 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 70 | copyright license to reproduce, prepare Derivative Works of, 71 | publicly display, publicly perform, sublicense, and distribute the 72 | Work and such Derivative Works in Source or Object form. 73 | 74 | 3. Grant of Patent License. Subject to the terms and conditions of 75 | this License, each Contributor hereby grants to You a perpetual, 76 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 77 | (except as stated in this section) patent license to make, have made, 78 | use, offer to sell, sell, import, and otherwise transfer the Work, 79 | where such license applies only to those patent claims licensable 80 | by such Contributor that are necessarily infringed by their 81 | Contribution(s) alone or by combination of their Contribution(s) 82 | with the Work to which such Contribution(s) was submitted. If You 83 | institute patent litigation against any entity (including a 84 | cross-claim or counterclaim in a lawsuit) alleging that the Work 85 | or a Contribution incorporated within the Work constitutes direct 86 | or contributory patent infringement, then any patent licenses 87 | granted to You under this License for that Work shall terminate 88 | as of the date such litigation is filed. 89 | 90 | 4. Redistribution. You may reproduce and distribute copies of the 91 | Work or Derivative Works thereof in any medium, with or without 92 | modifications, and in Source or Object form, provided that You 93 | meet the following conditions: 94 | 95 | (a) You must give any other recipients of the Work or 96 | Derivative Works a copy of this License; and 97 | 98 | (b) You must cause any modified files to carry prominent notices 99 | stating that You changed the files; and 100 | 101 | (c) You must retain, in the Source form of any Derivative Works 102 | that You distribute, all copyright, patent, trademark, and 103 | attribution notices from the Source form of the Work, 104 | excluding those notices that do not pertain to any part of 105 | the Derivative Works; and 106 | 107 | (d) If the Work includes a "NOTICE" text file as part of its 108 | distribution, then any Derivative Works that You distribute must 109 | include a readable copy of the attribution notices contained 110 | within such NOTICE file, excluding those notices that do not 111 | pertain to any part of the Derivative Works, in at least one 112 | of the following places: within a NOTICE text file distributed 113 | as part of the Derivative Works; within the Source form or 114 | documentation, if provided along with the Derivative Works; or, 115 | within a display generated by the Derivative Works, if and 116 | wherever such third-party notices normally appear. The contents 117 | of the NOTICE file are for informational purposes only and 118 | do not modify the License. You may add Your own attribution 119 | notices within Derivative Works that You distribute, alongside 120 | or as an addendum to the NOTICE text from the Work, provided 121 | that such additional attribution notices cannot be construed 122 | as modifying the License. 123 | 124 | You may add Your own copyright statement to Your modifications and 125 | may provide additional or different license terms and conditions 126 | for use, reproduction, or distribution of Your modifications, or 127 | for any such Derivative Works as a whole, provided Your use, 128 | reproduction, and distribution of the Work otherwise complies with 129 | the conditions stated in this License. 130 | 131 | 5. Submission of Contributions. Unless You explicitly state otherwise, 132 | any Contribution intentionally submitted for inclusion in the Work 133 | by You to the Licensor shall be under the terms and conditions of 134 | this License, without any additional terms or conditions. 135 | Notwithstanding the above, nothing herein shall supersede or modify 136 | the terms of any separate license agreement you may have executed 137 | with Licensor regarding such Contributions. 138 | 139 | 6. Trademarks. This License does not grant permission to use the trade 140 | names, trademarks, service marks, or product names of the Licensor, 141 | except as required for reasonable and customary use in describing the 142 | origin of the Work and reproducing the content of the NOTICE file. 143 | 144 | 7. Disclaimer of Warranty. Unless required by applicable law or 145 | agreed to in writing, Licensor provides the Work (and each 146 | Contributor provides its Contributions) on an "AS IS" BASIS, 147 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 148 | implied, including, without limitation, any warranties or conditions 149 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 150 | PARTICULAR PURPOSE. You are solely responsible for determining the 151 | appropriateness of using or redistributing the Work and assume any 152 | risks associated with Your exercise of permissions under this License. 153 | 154 | 8. Limitation of Liability. In no event and under no legal theory, 155 | whether in tort (including negligence), contract, or otherwise, 156 | unless required by applicable law (such as deliberate and grossly 157 | negligent acts) or agreed to in writing, shall any Contributor be 158 | liable to You for damages, including any direct, indirect, special, 159 | incidental, or consequential damages of any character arising as a 160 | result of this License or out of the use or inability to use the 161 | Work (including but not limited to damages for loss of goodwill, 162 | work stoppage, computer failure or malfunction, or any and all 163 | other commercial damages or losses), even if such Contributor 164 | has been advised of the possibility of such damages. 165 | 166 | 9. Accepting Warranty or Additional Liability. While redistributing 167 | the Work or Derivative Works thereof, You may choose to offer, 168 | and charge a fee for, acceptance of support, warranty, indemnity, 169 | or other liability obligations and/or rights consistent with this 170 | License. However, in accepting such obligations, You may act only 171 | on Your own behalf and on Your sole responsibility, not on behalf 172 | of any other Contributor, and only if You agree to indemnify, 173 | defend, and hold each Contributor harmless for any liability 174 | incurred by, or claims asserted against, such Contributor by reason 175 | of your accepting any such warranty or additional liability. 176 | 177 | END OF TERMS AND CONDITIONS 178 | 179 | APPENDIX: How to apply the Apache License to your work. 180 | 181 | To apply the Apache License to your work, attach the following 182 | boilerplate notice, with the fields enclosed by brackets "[]" 183 | replaced with your own identifying information. (Don't include 184 | the brackets!) The text should be enclosed in the appropriate 185 | comment syntax for the file format. We also recommend that a 186 | file or class name and description of purpose be included on the 187 | same "printed page" as the copyright notice for easier 188 | identification within third-party archives. 189 | 190 | Copyright [yyyy] [name of copyright owner] 191 | 192 | Licensed under the Apache License, Version 2.0 (the "License"); 193 | you may not use this file except in compliance with the License. 194 | You may obtain a copy of the License at 195 | 196 | http://www.apache.org/licenses/LICENSE-2.0 197 | 198 | Unless required by applicable law or agreed to in writing, software 199 | distributed under the License is distributed on an "AS IS" BASIS, 200 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 201 | See the License for the specific language governing permissions and 202 | limitations under the License. -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@ava/babel-preset-stage-4@^1.0.0": 6 | version "1.0.0" 7 | resolved "https://registry.yarnpkg.com/@ava/babel-preset-stage-4/-/babel-preset-stage-4-1.0.0.tgz#a613b5e152f529305422546b072d47facfb26291" 8 | dependencies: 9 | babel-plugin-check-es2015-constants "^6.8.0" 10 | babel-plugin-syntax-trailing-function-commas "^6.20.0" 11 | babel-plugin-transform-async-to-generator "^6.16.0" 12 | babel-plugin-transform-es2015-destructuring "^6.19.0" 13 | babel-plugin-transform-es2015-function-name "^6.9.0" 14 | babel-plugin-transform-es2015-modules-commonjs "^6.18.0" 15 | babel-plugin-transform-es2015-parameters "^6.21.0" 16 | babel-plugin-transform-es2015-spread "^6.8.0" 17 | babel-plugin-transform-es2015-sticky-regex "^6.8.0" 18 | babel-plugin-transform-es2015-unicode-regex "^6.11.0" 19 | babel-plugin-transform-exponentiation-operator "^6.8.0" 20 | package-hash "^1.2.0" 21 | 22 | "@ava/babel-preset-transform-test-files@^2.0.0": 23 | version "2.0.1" 24 | resolved "https://registry.yarnpkg.com/@ava/babel-preset-transform-test-files/-/babel-preset-transform-test-files-2.0.1.tgz#d75232cc6d71dc9c7eae4b76a9004fd81501d0c1" 25 | dependencies: 26 | babel-plugin-ava-throws-helper "^1.0.0" 27 | babel-plugin-espower "^2.3.2" 28 | package-hash "^1.2.0" 29 | 30 | "@ava/pretty-format@^1.1.0": 31 | version "1.1.0" 32 | resolved "https://registry.yarnpkg.com/@ava/pretty-format/-/pretty-format-1.1.0.tgz#d0a57d25eb9aeab9643bdd1a030642b91c123e28" 33 | dependencies: 34 | ansi-styles "^2.2.1" 35 | esutils "^2.0.2" 36 | 37 | abbrev@1: 38 | version "1.1.0" 39 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 40 | 41 | accepts@~1.3.7: 42 | version "1.3.7" 43 | resolved "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd" 44 | dependencies: 45 | mime-types "~2.1.24" 46 | negotiator "0.6.2" 47 | 48 | acorn-jsx@^3.0.0: 49 | version "3.0.1" 50 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 51 | dependencies: 52 | acorn "^3.0.4" 53 | 54 | acorn@^3.0.4, acorn@^3.1.0, acorn@^3.3.0: 55 | version "3.3.0" 56 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 57 | 58 | ajv-keywords@^1.0.0: 59 | version "1.5.1" 60 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 61 | 62 | ajv@^4.7.0, ajv@^4.9.1: 63 | version "4.11.5" 64 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.5.tgz#b6ee74657b993a01dce44b7944d56f485828d5bd" 65 | dependencies: 66 | co "^4.6.0" 67 | json-stable-stringify "^1.0.1" 68 | 69 | align-text@^0.1.1, align-text@^0.1.3: 70 | version "0.1.4" 71 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 72 | dependencies: 73 | kind-of "^3.0.2" 74 | longest "^1.0.1" 75 | repeat-string "^1.5.2" 76 | 77 | amdefine@>=0.0.4: 78 | version "1.0.1" 79 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 80 | 81 | ansi-align@^1.1.0: 82 | version "1.1.0" 83 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-1.1.0.tgz#2f0c1658829739add5ebb15e6b0c6e3423f016ba" 84 | dependencies: 85 | string-width "^1.0.1" 86 | 87 | ansi-escapes@^1.1.0: 88 | version "1.4.0" 89 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 90 | 91 | ansi-regex@^2.0.0: 92 | version "2.1.1" 93 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 94 | 95 | ansi-styles@^2.2.1: 96 | version "2.2.1" 97 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 98 | 99 | ansi-styles@~1.0.0: 100 | version "1.0.0" 101 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-1.0.0.tgz#cb102df1c56f5123eab8b67cd7b98027a0279178" 102 | 103 | anymatch@^1.3.0: 104 | version "1.3.0" 105 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 106 | dependencies: 107 | arrify "^1.0.0" 108 | micromatch "^2.1.5" 109 | 110 | append-transform@^0.4.0: 111 | version "0.4.0" 112 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 113 | dependencies: 114 | default-require-extensions "^1.0.0" 115 | 116 | aproba@^1.0.3: 117 | version "1.1.1" 118 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.1.tgz#95d3600f07710aa0e9298c726ad5ecf2eacbabab" 119 | 120 | are-we-there-yet@~1.1.2: 121 | version "1.1.2" 122 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" 123 | dependencies: 124 | delegates "^1.0.0" 125 | readable-stream "^2.0.0 || ^1.1.13" 126 | 127 | argparse@^1.0.7: 128 | version "1.0.9" 129 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 130 | dependencies: 131 | sprintf-js "~1.0.2" 132 | 133 | arr-diff@^2.0.0: 134 | version "2.0.0" 135 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 136 | dependencies: 137 | arr-flatten "^1.0.1" 138 | 139 | arr-exclude@^1.0.0: 140 | version "1.0.0" 141 | resolved "https://registry.yarnpkg.com/arr-exclude/-/arr-exclude-1.0.0.tgz#dfc7c2e552a270723ccda04cf3128c8cbfe5c631" 142 | 143 | arr-flatten@^1.0.1: 144 | version "1.0.1" 145 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 146 | 147 | array-differ@^1.0.0: 148 | version "1.0.0" 149 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" 150 | 151 | array-find-index@^1.0.1: 152 | version "1.0.2" 153 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 154 | 155 | array-flatten@1.1.1: 156 | version "1.1.1" 157 | resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" 158 | 159 | array-union@^1.0.1: 160 | version "1.0.2" 161 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 162 | dependencies: 163 | array-uniq "^1.0.1" 164 | 165 | array-uniq@^1.0.1, array-uniq@^1.0.2: 166 | version "1.0.3" 167 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 168 | 169 | array-unique@^0.2.1: 170 | version "0.2.1" 171 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 172 | 173 | arrify@^1.0.0, arrify@^1.0.1: 174 | version "1.0.1" 175 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 176 | 177 | asn1@~0.2.3: 178 | version "0.2.3" 179 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 180 | 181 | assert-plus@1.0.0, assert-plus@^1.0.0: 182 | version "1.0.0" 183 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 184 | 185 | assert-plus@^0.2.0: 186 | version "0.2.0" 187 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 188 | 189 | async-each@^1.0.0: 190 | version "1.0.1" 191 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 192 | 193 | async@^1.4.0, async@^1.5.2: 194 | version "1.5.2" 195 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 196 | 197 | async@^2.6.1: 198 | version "2.6.3" 199 | resolved "https://registry.npmjs.org/async/-/async-2.6.3.tgz#d72625e2344a3656e3a3ad4fa749fa83299d82ff" 200 | dependencies: 201 | lodash "^4.17.14" 202 | 203 | asynckit@^0.4.0: 204 | version "0.4.0" 205 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 206 | 207 | auto-bind@^1.1.0: 208 | version "1.1.0" 209 | resolved "https://registry.yarnpkg.com/auto-bind/-/auto-bind-1.1.0.tgz#93b864dc7ee01a326281775d5c75ca0a751e5961" 210 | 211 | ava-init@^0.2.0: 212 | version "0.2.0" 213 | resolved "https://registry.yarnpkg.com/ava-init/-/ava-init-0.2.0.tgz#9304c8b4c357d66e3dfdae1fbff47b1199d5c55d" 214 | dependencies: 215 | arr-exclude "^1.0.0" 216 | execa "^0.5.0" 217 | has-yarn "^1.0.0" 218 | read-pkg-up "^2.0.0" 219 | write-pkg "^2.0.0" 220 | 221 | ava@^0.18.2: 222 | version "0.18.2" 223 | resolved "https://registry.yarnpkg.com/ava/-/ava-0.18.2.tgz#79253d1636077034a2780bb55b5c3e6c3d7f312f" 224 | dependencies: 225 | "@ava/babel-preset-stage-4" "^1.0.0" 226 | "@ava/babel-preset-transform-test-files" "^2.0.0" 227 | "@ava/pretty-format" "^1.1.0" 228 | arr-flatten "^1.0.1" 229 | array-union "^1.0.1" 230 | array-uniq "^1.0.2" 231 | arrify "^1.0.0" 232 | auto-bind "^1.1.0" 233 | ava-init "^0.2.0" 234 | babel-code-frame "^6.16.0" 235 | babel-core "^6.17.0" 236 | bluebird "^3.0.0" 237 | caching-transform "^1.0.0" 238 | chalk "^1.0.0" 239 | chokidar "^1.4.2" 240 | clean-stack "^1.1.1" 241 | clean-yaml-object "^0.1.0" 242 | cli-cursor "^2.1.0" 243 | cli-spinners "^1.0.0" 244 | cli-truncate "^0.2.0" 245 | co-with-promise "^4.6.0" 246 | code-excerpt "^2.1.0" 247 | common-path-prefix "^1.0.0" 248 | convert-source-map "^1.2.0" 249 | core-assert "^0.2.0" 250 | currently-unhandled "^0.4.1" 251 | debug "^2.2.0" 252 | diff "^3.0.1" 253 | dot-prop "^4.1.0" 254 | empower-core "^0.6.1" 255 | equal-length "^1.0.0" 256 | figures "^2.0.0" 257 | find-cache-dir "^0.1.1" 258 | fn-name "^2.0.0" 259 | get-port "^2.1.0" 260 | globby "^6.0.0" 261 | has-flag "^2.0.0" 262 | ignore-by-default "^1.0.0" 263 | indent-string "^3.0.0" 264 | is-ci "^1.0.7" 265 | is-generator-fn "^1.0.0" 266 | is-obj "^1.0.0" 267 | is-observable "^0.2.0" 268 | is-promise "^2.1.0" 269 | jest-snapshot "^18.1.0" 270 | last-line-stream "^1.0.0" 271 | lodash.debounce "^4.0.3" 272 | lodash.difference "^4.3.0" 273 | lodash.flatten "^4.2.0" 274 | lodash.isequal "^4.5.0" 275 | loud-rejection "^1.2.0" 276 | matcher "^0.1.1" 277 | max-timeout "^1.0.0" 278 | md5-hex "^2.0.0" 279 | meow "^3.7.0" 280 | ms "^0.7.1" 281 | multimatch "^2.1.0" 282 | observable-to-promise "^0.4.0" 283 | option-chain "^0.1.0" 284 | package-hash "^1.2.0" 285 | pkg-conf "^2.0.0" 286 | plur "^2.0.0" 287 | pretty-ms "^2.0.0" 288 | require-precompiled "^0.1.0" 289 | resolve-cwd "^1.0.0" 290 | slash "^1.0.0" 291 | source-map-support "^0.4.0" 292 | stack-utils "^1.0.0" 293 | strip-ansi "^3.0.1" 294 | strip-bom-buf "^1.0.0" 295 | time-require "^0.1.2" 296 | unique-temp-dir "^1.0.0" 297 | update-notifier "^1.0.0" 298 | 299 | aws-sign2@~0.6.0: 300 | version "0.6.0" 301 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 302 | 303 | aws4@^1.2.1: 304 | version "1.6.0" 305 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 306 | 307 | babel-code-frame@^6.16.0, babel-code-frame@^6.22.0: 308 | version "6.22.0" 309 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 310 | dependencies: 311 | chalk "^1.1.0" 312 | esutils "^2.0.2" 313 | js-tokens "^3.0.0" 314 | 315 | babel-core@^6.17.0, babel-core@^6.24.0: 316 | version "6.24.0" 317 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.0.tgz#8f36a0a77f5c155aed6f920b844d23ba56742a02" 318 | dependencies: 319 | babel-code-frame "^6.22.0" 320 | babel-generator "^6.24.0" 321 | babel-helpers "^6.23.0" 322 | babel-messages "^6.23.0" 323 | babel-register "^6.24.0" 324 | babel-runtime "^6.22.0" 325 | babel-template "^6.23.0" 326 | babel-traverse "^6.23.1" 327 | babel-types "^6.23.0" 328 | babylon "^6.11.0" 329 | convert-source-map "^1.1.0" 330 | debug "^2.1.1" 331 | json5 "^0.5.0" 332 | lodash "^4.2.0" 333 | minimatch "^3.0.2" 334 | path-is-absolute "^1.0.0" 335 | private "^0.1.6" 336 | slash "^1.0.0" 337 | source-map "^0.5.0" 338 | 339 | babel-eslint@^6.0.4: 340 | version "6.1.2" 341 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-6.1.2.tgz#5293419fe3672d66598d327da9694567ba6a5f2f" 342 | dependencies: 343 | babel-traverse "^6.0.20" 344 | babel-types "^6.0.19" 345 | babylon "^6.0.18" 346 | lodash.assign "^4.0.0" 347 | lodash.pickby "^4.0.0" 348 | 349 | babel-generator@^6.1.0, babel-generator@^6.18.0, babel-generator@^6.24.0: 350 | version "6.24.0" 351 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.0.tgz#eba270a8cc4ce6e09a61be43465d7c62c1f87c56" 352 | dependencies: 353 | babel-messages "^6.23.0" 354 | babel-runtime "^6.22.0" 355 | babel-types "^6.23.0" 356 | detect-indent "^4.0.0" 357 | jsesc "^1.3.0" 358 | lodash "^4.2.0" 359 | source-map "^0.5.0" 360 | trim-right "^1.0.1" 361 | 362 | babel-helper-builder-binary-assignment-operator-visitor@^6.22.0: 363 | version "6.22.0" 364 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.22.0.tgz#29df56be144d81bdeac08262bfa41d2c5e91cdcd" 365 | dependencies: 366 | babel-helper-explode-assignable-expression "^6.22.0" 367 | babel-runtime "^6.22.0" 368 | babel-types "^6.22.0" 369 | 370 | babel-helper-call-delegate@^6.22.0: 371 | version "6.22.0" 372 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.22.0.tgz#119921b56120f17e9dae3f74b4f5cc7bcc1b37ef" 373 | dependencies: 374 | babel-helper-hoist-variables "^6.22.0" 375 | babel-runtime "^6.22.0" 376 | babel-traverse "^6.22.0" 377 | babel-types "^6.22.0" 378 | 379 | babel-helper-define-map@^6.23.0: 380 | version "6.23.0" 381 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.23.0.tgz#1444f960c9691d69a2ced6a205315f8fd00804e7" 382 | dependencies: 383 | babel-helper-function-name "^6.23.0" 384 | babel-runtime "^6.22.0" 385 | babel-types "^6.23.0" 386 | lodash "^4.2.0" 387 | 388 | babel-helper-explode-assignable-expression@^6.22.0: 389 | version "6.22.0" 390 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.22.0.tgz#c97bf76eed3e0bae4048121f2b9dae1a4e7d0478" 391 | dependencies: 392 | babel-runtime "^6.22.0" 393 | babel-traverse "^6.22.0" 394 | babel-types "^6.22.0" 395 | 396 | babel-helper-function-name@^6.22.0, babel-helper-function-name@^6.23.0: 397 | version "6.23.0" 398 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.23.0.tgz#25742d67175c8903dbe4b6cb9d9e1fcb8dcf23a6" 399 | dependencies: 400 | babel-helper-get-function-arity "^6.22.0" 401 | babel-runtime "^6.22.0" 402 | babel-template "^6.23.0" 403 | babel-traverse "^6.23.0" 404 | babel-types "^6.23.0" 405 | 406 | babel-helper-get-function-arity@^6.22.0: 407 | version "6.22.0" 408 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.22.0.tgz#0beb464ad69dc7347410ac6ade9f03a50634f5ce" 409 | dependencies: 410 | babel-runtime "^6.22.0" 411 | babel-types "^6.22.0" 412 | 413 | babel-helper-hoist-variables@^6.22.0: 414 | version "6.22.0" 415 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.22.0.tgz#3eacbf731d80705845dd2e9718f600cfb9b4ba72" 416 | dependencies: 417 | babel-runtime "^6.22.0" 418 | babel-types "^6.22.0" 419 | 420 | babel-helper-optimise-call-expression@^6.23.0: 421 | version "6.23.0" 422 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.23.0.tgz#f3ee7eed355b4282138b33d02b78369e470622f5" 423 | dependencies: 424 | babel-runtime "^6.22.0" 425 | babel-types "^6.23.0" 426 | 427 | babel-helper-regex@^6.22.0: 428 | version "6.22.0" 429 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.22.0.tgz#79f532be1647b1f0ee3474b5f5c3da58001d247d" 430 | dependencies: 431 | babel-runtime "^6.22.0" 432 | babel-types "^6.22.0" 433 | lodash "^4.2.0" 434 | 435 | babel-helper-remap-async-to-generator@^6.22.0: 436 | version "6.22.0" 437 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.22.0.tgz#2186ae73278ed03b8b15ced089609da981053383" 438 | dependencies: 439 | babel-helper-function-name "^6.22.0" 440 | babel-runtime "^6.22.0" 441 | babel-template "^6.22.0" 442 | babel-traverse "^6.22.0" 443 | babel-types "^6.22.0" 444 | 445 | babel-helper-replace-supers@^6.22.0, babel-helper-replace-supers@^6.23.0: 446 | version "6.23.0" 447 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.23.0.tgz#eeaf8ad9b58ec4337ca94223bacdca1f8d9b4bfd" 448 | dependencies: 449 | babel-helper-optimise-call-expression "^6.23.0" 450 | babel-messages "^6.23.0" 451 | babel-runtime "^6.22.0" 452 | babel-template "^6.23.0" 453 | babel-traverse "^6.23.0" 454 | babel-types "^6.23.0" 455 | 456 | babel-helpers@^6.23.0: 457 | version "6.23.0" 458 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.23.0.tgz#4f8f2e092d0b6a8808a4bde79c27f1e2ecf0d992" 459 | dependencies: 460 | babel-runtime "^6.22.0" 461 | babel-template "^6.23.0" 462 | 463 | babel-messages@^6.23.0: 464 | version "6.23.0" 465 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 466 | dependencies: 467 | babel-runtime "^6.22.0" 468 | 469 | babel-plugin-ava-throws-helper@^1.0.0: 470 | version "1.0.0" 471 | resolved "https://registry.yarnpkg.com/babel-plugin-ava-throws-helper/-/babel-plugin-ava-throws-helper-1.0.0.tgz#8fe6e79d2fd19838b5c3649f89cfb03fd563e241" 472 | dependencies: 473 | babel-template "^6.7.0" 474 | babel-types "^6.7.2" 475 | 476 | babel-plugin-check-es2015-constants@^6.22.0, babel-plugin-check-es2015-constants@^6.8.0: 477 | version "6.22.0" 478 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 479 | dependencies: 480 | babel-runtime "^6.22.0" 481 | 482 | babel-plugin-espower@^2.3.2: 483 | version "2.3.2" 484 | resolved "https://registry.yarnpkg.com/babel-plugin-espower/-/babel-plugin-espower-2.3.2.tgz#5516b8fcdb26c9f0e1d8160749f6e4c65e71271e" 485 | dependencies: 486 | babel-generator "^6.1.0" 487 | babylon "^6.1.0" 488 | call-matcher "^1.0.0" 489 | core-js "^2.0.0" 490 | espower-location-detector "^1.0.0" 491 | espurify "^1.6.0" 492 | estraverse "^4.1.1" 493 | 494 | babel-plugin-syntax-async-functions@^6.5.0, babel-plugin-syntax-async-functions@^6.8.0: 495 | version "6.13.0" 496 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 497 | 498 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 499 | version "6.13.0" 500 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 501 | 502 | babel-plugin-syntax-trailing-function-commas@^6.20.0: 503 | version "6.22.0" 504 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 505 | 506 | babel-plugin-transform-async-to-generator@^6.16.0: 507 | version "6.22.0" 508 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.22.0.tgz#194b6938ec195ad36efc4c33a971acf00d8cd35e" 509 | dependencies: 510 | babel-helper-remap-async-to-generator "^6.22.0" 511 | babel-plugin-syntax-async-functions "^6.8.0" 512 | babel-runtime "^6.22.0" 513 | 514 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 515 | version "6.22.0" 516 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 517 | dependencies: 518 | babel-runtime "^6.22.0" 519 | 520 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 521 | version "6.22.0" 522 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 523 | dependencies: 524 | babel-runtime "^6.22.0" 525 | 526 | babel-plugin-transform-es2015-block-scoping@^6.22.0: 527 | version "6.23.0" 528 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.23.0.tgz#e48895cf0b375be148cd7c8879b422707a053b51" 529 | dependencies: 530 | babel-runtime "^6.22.0" 531 | babel-template "^6.23.0" 532 | babel-traverse "^6.23.0" 533 | babel-types "^6.23.0" 534 | lodash "^4.2.0" 535 | 536 | babel-plugin-transform-es2015-classes@^6.22.0: 537 | version "6.23.0" 538 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.23.0.tgz#49b53f326202a2fd1b3bbaa5e2edd8a4f78643c1" 539 | dependencies: 540 | babel-helper-define-map "^6.23.0" 541 | babel-helper-function-name "^6.23.0" 542 | babel-helper-optimise-call-expression "^6.23.0" 543 | babel-helper-replace-supers "^6.23.0" 544 | babel-messages "^6.23.0" 545 | babel-runtime "^6.22.0" 546 | babel-template "^6.23.0" 547 | babel-traverse "^6.23.0" 548 | babel-types "^6.23.0" 549 | 550 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 551 | version "6.22.0" 552 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.22.0.tgz#7c383e9629bba4820c11b0425bdd6290f7f057e7" 553 | dependencies: 554 | babel-runtime "^6.22.0" 555 | babel-template "^6.22.0" 556 | 557 | babel-plugin-transform-es2015-destructuring@^6.19.0, babel-plugin-transform-es2015-destructuring@^6.22.0: 558 | version "6.23.0" 559 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 560 | dependencies: 561 | babel-runtime "^6.22.0" 562 | 563 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 564 | version "6.22.0" 565 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.22.0.tgz#672397031c21610d72dd2bbb0ba9fb6277e1c36b" 566 | dependencies: 567 | babel-runtime "^6.22.0" 568 | babel-types "^6.22.0" 569 | 570 | babel-plugin-transform-es2015-for-of@^6.22.0: 571 | version "6.23.0" 572 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 573 | dependencies: 574 | babel-runtime "^6.22.0" 575 | 576 | babel-plugin-transform-es2015-function-name@^6.22.0, babel-plugin-transform-es2015-function-name@^6.9.0: 577 | version "6.22.0" 578 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.22.0.tgz#f5fcc8b09093f9a23c76ac3d9e392c3ec4b77104" 579 | dependencies: 580 | babel-helper-function-name "^6.22.0" 581 | babel-runtime "^6.22.0" 582 | babel-types "^6.22.0" 583 | 584 | babel-plugin-transform-es2015-literals@^6.22.0: 585 | version "6.22.0" 586 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 587 | dependencies: 588 | babel-runtime "^6.22.0" 589 | 590 | babel-plugin-transform-es2015-modules-amd@^6.24.0: 591 | version "6.24.0" 592 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.0.tgz#a1911fb9b7ec7e05a43a63c5995007557bcf6a2e" 593 | dependencies: 594 | babel-plugin-transform-es2015-modules-commonjs "^6.24.0" 595 | babel-runtime "^6.22.0" 596 | babel-template "^6.22.0" 597 | 598 | babel-plugin-transform-es2015-modules-commonjs@^6.18.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.0: 599 | version "6.24.0" 600 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.0.tgz#e921aefb72c2cc26cb03d107626156413222134f" 601 | dependencies: 602 | babel-plugin-transform-strict-mode "^6.22.0" 603 | babel-runtime "^6.22.0" 604 | babel-template "^6.23.0" 605 | babel-types "^6.23.0" 606 | 607 | babel-plugin-transform-es2015-modules-systemjs@^6.22.0: 608 | version "6.23.0" 609 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.23.0.tgz#ae3469227ffac39b0310d90fec73bfdc4f6317b0" 610 | dependencies: 611 | babel-helper-hoist-variables "^6.22.0" 612 | babel-runtime "^6.22.0" 613 | babel-template "^6.23.0" 614 | 615 | babel-plugin-transform-es2015-modules-umd@^6.24.0: 616 | version "6.24.0" 617 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.0.tgz#fd5fa63521cae8d273927c3958afd7c067733450" 618 | dependencies: 619 | babel-plugin-transform-es2015-modules-amd "^6.24.0" 620 | babel-runtime "^6.22.0" 621 | babel-template "^6.23.0" 622 | 623 | babel-plugin-transform-es2015-object-super@^6.22.0: 624 | version "6.22.0" 625 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.22.0.tgz#daa60e114a042ea769dd53fe528fc82311eb98fc" 626 | dependencies: 627 | babel-helper-replace-supers "^6.22.0" 628 | babel-runtime "^6.22.0" 629 | 630 | babel-plugin-transform-es2015-parameters@^6.21.0, babel-plugin-transform-es2015-parameters@^6.22.0: 631 | version "6.23.0" 632 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.23.0.tgz#3a2aabb70c8af945d5ce386f1a4250625a83ae3b" 633 | dependencies: 634 | babel-helper-call-delegate "^6.22.0" 635 | babel-helper-get-function-arity "^6.22.0" 636 | babel-runtime "^6.22.0" 637 | babel-template "^6.23.0" 638 | babel-traverse "^6.23.0" 639 | babel-types "^6.23.0" 640 | 641 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 642 | version "6.22.0" 643 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.22.0.tgz#8ba776e0affaa60bff21e921403b8a652a2ff723" 644 | dependencies: 645 | babel-runtime "^6.22.0" 646 | babel-types "^6.22.0" 647 | 648 | babel-plugin-transform-es2015-spread@^6.22.0, babel-plugin-transform-es2015-spread@^6.8.0: 649 | version "6.22.0" 650 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 651 | dependencies: 652 | babel-runtime "^6.22.0" 653 | 654 | babel-plugin-transform-es2015-sticky-regex@^6.22.0, babel-plugin-transform-es2015-sticky-regex@^6.8.0: 655 | version "6.22.0" 656 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.22.0.tgz#ab316829e866ee3f4b9eb96939757d19a5bc4593" 657 | dependencies: 658 | babel-helper-regex "^6.22.0" 659 | babel-runtime "^6.22.0" 660 | babel-types "^6.22.0" 661 | 662 | babel-plugin-transform-es2015-template-literals@^6.22.0: 663 | version "6.22.0" 664 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 665 | dependencies: 666 | babel-runtime "^6.22.0" 667 | 668 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0: 669 | version "6.23.0" 670 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 671 | dependencies: 672 | babel-runtime "^6.22.0" 673 | 674 | babel-plugin-transform-es2015-unicode-regex@^6.11.0, babel-plugin-transform-es2015-unicode-regex@^6.22.0: 675 | version "6.22.0" 676 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.22.0.tgz#8d9cc27e7ee1decfe65454fb986452a04a613d20" 677 | dependencies: 678 | babel-helper-regex "^6.22.0" 679 | babel-runtime "^6.22.0" 680 | regexpu-core "^2.0.0" 681 | 682 | babel-plugin-transform-exponentiation-operator@^6.8.0: 683 | version "6.22.0" 684 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.22.0.tgz#d57c8335281918e54ef053118ce6eb108468084d" 685 | dependencies: 686 | babel-helper-builder-binary-assignment-operator-visitor "^6.22.0" 687 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 688 | babel-runtime "^6.22.0" 689 | 690 | babel-plugin-transform-regenerator@^6.22.0, babel-plugin-transform-regenerator@^6.6.5: 691 | version "6.22.0" 692 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.22.0.tgz#65740593a319c44522157538d690b84094617ea6" 693 | dependencies: 694 | regenerator-transform "0.9.8" 695 | 696 | babel-plugin-transform-strict-mode@^6.22.0: 697 | version "6.22.0" 698 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.22.0.tgz#e008df01340fdc87e959da65991b7e05970c8c7c" 699 | dependencies: 700 | babel-runtime "^6.22.0" 701 | babel-types "^6.22.0" 702 | 703 | babel-polyfill@^6.3.14: 704 | version "6.23.0" 705 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.23.0.tgz#8364ca62df8eafb830499f699177466c3b03499d" 706 | dependencies: 707 | babel-runtime "^6.22.0" 708 | core-js "^2.4.0" 709 | regenerator-runtime "^0.10.0" 710 | 711 | babel-preset-es2015@^6.6.0: 712 | version "6.24.0" 713 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.0.tgz#c162d68b1932696e036cd3110dc1ccd303d2673a" 714 | dependencies: 715 | babel-plugin-check-es2015-constants "^6.22.0" 716 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 717 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 718 | babel-plugin-transform-es2015-block-scoping "^6.22.0" 719 | babel-plugin-transform-es2015-classes "^6.22.0" 720 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 721 | babel-plugin-transform-es2015-destructuring "^6.22.0" 722 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 723 | babel-plugin-transform-es2015-for-of "^6.22.0" 724 | babel-plugin-transform-es2015-function-name "^6.22.0" 725 | babel-plugin-transform-es2015-literals "^6.22.0" 726 | babel-plugin-transform-es2015-modules-amd "^6.24.0" 727 | babel-plugin-transform-es2015-modules-commonjs "^6.24.0" 728 | babel-plugin-transform-es2015-modules-systemjs "^6.22.0" 729 | babel-plugin-transform-es2015-modules-umd "^6.24.0" 730 | babel-plugin-transform-es2015-object-super "^6.22.0" 731 | babel-plugin-transform-es2015-parameters "^6.22.0" 732 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 733 | babel-plugin-transform-es2015-spread "^6.22.0" 734 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 735 | babel-plugin-transform-es2015-template-literals "^6.22.0" 736 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 737 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 738 | babel-plugin-transform-regenerator "^6.22.0" 739 | 740 | babel-register@^6.24.0, babel-register@^6.3.13: 741 | version "6.24.0" 742 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.0.tgz#5e89f8463ba9970356d02eb07dabe3308b080cfd" 743 | dependencies: 744 | babel-core "^6.24.0" 745 | babel-runtime "^6.22.0" 746 | core-js "^2.4.0" 747 | home-or-tmp "^2.0.0" 748 | lodash "^4.2.0" 749 | mkdirp "^0.5.1" 750 | source-map-support "^0.4.2" 751 | 752 | babel-runtime@^6.18.0, babel-runtime@^6.22.0: 753 | version "6.23.0" 754 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 755 | dependencies: 756 | core-js "^2.4.0" 757 | regenerator-runtime "^0.10.0" 758 | 759 | babel-tape-runner@^2.0.1: 760 | version "2.0.1" 761 | resolved "https://registry.yarnpkg.com/babel-tape-runner/-/babel-tape-runner-2.0.1.tgz#9c012ff9ab0f30020ac11fcc8e848f203f222173" 762 | dependencies: 763 | babel-polyfill "^6.3.14" 764 | babel-register "^6.3.13" 765 | glob "^6.0.1" 766 | 767 | babel-template@^6.16.0, babel-template@^6.22.0, babel-template@^6.23.0, babel-template@^6.7.0: 768 | version "6.23.0" 769 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.23.0.tgz#04d4f270adbb3aa704a8143ae26faa529238e638" 770 | dependencies: 771 | babel-runtime "^6.22.0" 772 | babel-traverse "^6.23.0" 773 | babel-types "^6.23.0" 774 | babylon "^6.11.0" 775 | lodash "^4.2.0" 776 | 777 | babel-traverse@^6.0.20, babel-traverse@^6.18.0, babel-traverse@^6.22.0, babel-traverse@^6.23.0, babel-traverse@^6.23.1: 778 | version "6.23.1" 779 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.23.1.tgz#d3cb59010ecd06a97d81310065f966b699e14f48" 780 | dependencies: 781 | babel-code-frame "^6.22.0" 782 | babel-messages "^6.23.0" 783 | babel-runtime "^6.22.0" 784 | babel-types "^6.23.0" 785 | babylon "^6.15.0" 786 | debug "^2.2.0" 787 | globals "^9.0.0" 788 | invariant "^2.2.0" 789 | lodash "^4.2.0" 790 | 791 | babel-types@^6.0.19, babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.22.0, babel-types@^6.23.0, babel-types@^6.7.2: 792 | version "6.23.0" 793 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.23.0.tgz#bb17179d7538bad38cd0c9e115d340f77e7e9acf" 794 | dependencies: 795 | babel-runtime "^6.22.0" 796 | esutils "^2.0.2" 797 | lodash "^4.2.0" 798 | to-fast-properties "^1.0.1" 799 | 800 | babylon@^6.0.18, babylon@^6.1.0, babylon@^6.11.0, babylon@^6.13.0, babylon@^6.15.0: 801 | version "6.16.1" 802 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.16.1.tgz#30c5a22f481978a9e7f8cdfdf496b11d94b404d3" 803 | 804 | balanced-match@^0.4.1: 805 | version "0.4.2" 806 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 807 | 808 | bcrypt-pbkdf@^1.0.0: 809 | version "1.0.1" 810 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 811 | dependencies: 812 | tweetnacl "^0.14.3" 813 | 814 | binary-extensions@^1.0.0: 815 | version "1.8.0" 816 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 817 | 818 | block-stream@*: 819 | version "0.0.9" 820 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 821 | dependencies: 822 | inherits "~2.0.0" 823 | 824 | bluebird@^3.0.0, bluebird@^3.3.1, bluebird@^3.3.3: 825 | version "3.5.0" 826 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.0.tgz#791420d7f551eea2897453a8a77653f96606d67c" 827 | 828 | bluebird@~3.4.6: 829 | version "3.4.7" 830 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.4.7.tgz#f72d760be09b7f76d08ed8fae98b289a8d05fab3" 831 | 832 | body-parser@1.19.0, body-parser@^1.18.2: 833 | version "1.19.0" 834 | resolved "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz#96b2709e57c9c4e09a6fd66a8fd979844f69f08a" 835 | dependencies: 836 | bytes "3.1.0" 837 | content-type "~1.0.4" 838 | debug "2.6.9" 839 | depd "~1.1.2" 840 | http-errors "1.7.2" 841 | iconv-lite "0.4.24" 842 | on-finished "~2.3.0" 843 | qs "6.7.0" 844 | raw-body "2.4.0" 845 | type-is "~1.6.17" 846 | 847 | boom@2.x.x: 848 | version "2.10.1" 849 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 850 | dependencies: 851 | hoek "2.x.x" 852 | 853 | boxen@^0.6.0: 854 | version "0.6.0" 855 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-0.6.0.tgz#8364d4248ac34ff0ef1b2f2bf49a6c60ce0d81b6" 856 | dependencies: 857 | ansi-align "^1.1.0" 858 | camelcase "^2.1.0" 859 | chalk "^1.1.1" 860 | cli-boxes "^1.0.0" 861 | filled-array "^1.0.0" 862 | object-assign "^4.0.1" 863 | repeating "^2.0.0" 864 | string-width "^1.0.1" 865 | widest-line "^1.0.0" 866 | 867 | brace-expansion@^1.0.0: 868 | version "1.1.6" 869 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 870 | dependencies: 871 | balanced-match "^0.4.1" 872 | concat-map "0.0.1" 873 | 874 | braces@^1.8.2: 875 | version "1.8.5" 876 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 877 | dependencies: 878 | expand-range "^1.8.1" 879 | preserve "^0.2.0" 880 | repeat-element "^1.1.2" 881 | 882 | buf-compare@^1.0.0: 883 | version "1.0.1" 884 | resolved "https://registry.yarnpkg.com/buf-compare/-/buf-compare-1.0.1.tgz#fef28da8b8113a0a0db4430b0b6467b69730b34a" 885 | 886 | buffer-shims@^1.0.0: 887 | version "1.0.0" 888 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 889 | 890 | builtin-modules@^1.0.0: 891 | version "1.1.1" 892 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 893 | 894 | bytes@3.1.0: 895 | version "3.1.0" 896 | resolved "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" 897 | 898 | caching-transform@^1.0.0: 899 | version "1.0.1" 900 | resolved "https://registry.yarnpkg.com/caching-transform/-/caching-transform-1.0.1.tgz#6dbdb2f20f8d8fbce79f3e94e9d1742dcdf5c0a1" 901 | dependencies: 902 | md5-hex "^1.2.0" 903 | mkdirp "^0.5.1" 904 | write-file-atomic "^1.1.4" 905 | 906 | call-matcher@^1.0.0: 907 | version "1.0.1" 908 | resolved "https://registry.yarnpkg.com/call-matcher/-/call-matcher-1.0.1.tgz#5134d077984f712a54dad3cbf62de28dce416ca8" 909 | dependencies: 910 | core-js "^2.0.0" 911 | deep-equal "^1.0.0" 912 | espurify "^1.6.0" 913 | estraverse "^4.0.0" 914 | 915 | call-signature@0.0.2: 916 | version "0.0.2" 917 | resolved "https://registry.yarnpkg.com/call-signature/-/call-signature-0.0.2.tgz#a84abc825a55ef4cb2b028bd74e205a65b9a4996" 918 | 919 | caller-path@^0.1.0: 920 | version "0.1.0" 921 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 922 | dependencies: 923 | callsites "^0.2.0" 924 | 925 | callsites@^0.2.0: 926 | version "0.2.0" 927 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 928 | 929 | camelcase-keys@^2.0.0: 930 | version "2.1.0" 931 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 932 | dependencies: 933 | camelcase "^2.0.0" 934 | map-obj "^1.0.0" 935 | 936 | camelcase@^1.0.2: 937 | version "1.2.1" 938 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 939 | 940 | camelcase@^2.0.0, camelcase@^2.1.0: 941 | version "2.1.1" 942 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 943 | 944 | camelcase@^3.0.0: 945 | version "3.0.0" 946 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 947 | 948 | capture-stack-trace@^1.0.0: 949 | version "1.0.0" 950 | resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d" 951 | 952 | caseless@~0.12.0: 953 | version "0.12.0" 954 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 955 | 956 | catharsis@~0.8.8: 957 | version "0.8.8" 958 | resolved "https://registry.yarnpkg.com/catharsis/-/catharsis-0.8.8.tgz#693479f43aac549d806bd73e924cd0d944951a06" 959 | dependencies: 960 | underscore-contrib "~0.3.0" 961 | 962 | center-align@^0.1.1: 963 | version "0.1.3" 964 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 965 | dependencies: 966 | align-text "^0.1.3" 967 | lazy-cache "^1.0.3" 968 | 969 | chalk@^0.4.0, chalk@~0.4.0: 970 | version "0.4.0" 971 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-0.4.0.tgz#5199a3ddcd0c1efe23bc08c1b027b06176e0c64f" 972 | dependencies: 973 | ansi-styles "~1.0.0" 974 | has-color "~0.1.0" 975 | strip-ansi "~0.1.0" 976 | 977 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 978 | version "1.1.3" 979 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 980 | dependencies: 981 | ansi-styles "^2.2.1" 982 | escape-string-regexp "^1.0.2" 983 | has-ansi "^2.0.0" 984 | strip-ansi "^3.0.0" 985 | supports-color "^2.0.0" 986 | 987 | chokidar@^1.4.2: 988 | version "1.6.1" 989 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" 990 | dependencies: 991 | anymatch "^1.3.0" 992 | async-each "^1.0.0" 993 | glob-parent "^2.0.0" 994 | inherits "^2.0.1" 995 | is-binary-path "^1.0.0" 996 | is-glob "^2.0.0" 997 | path-is-absolute "^1.0.0" 998 | readdirp "^2.0.0" 999 | optionalDependencies: 1000 | fsevents "^1.0.0" 1001 | 1002 | ci-info@^1.0.0: 1003 | version "1.0.0" 1004 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 1005 | 1006 | circular-json@^0.3.1: 1007 | version "0.3.1" 1008 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 1009 | 1010 | clean-stack@^1.1.1: 1011 | version "1.1.1" 1012 | resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-1.1.1.tgz#a1b3711122df162df7c7cb9b3c0470f28cb58adb" 1013 | 1014 | clean-yaml-object@^0.1.0: 1015 | version "0.1.0" 1016 | resolved "https://registry.yarnpkg.com/clean-yaml-object/-/clean-yaml-object-0.1.0.tgz#63fb110dc2ce1a84dc21f6d9334876d010ae8b68" 1017 | 1018 | cli-boxes@^1.0.0: 1019 | version "1.0.0" 1020 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" 1021 | 1022 | cli-cursor@^1.0.1: 1023 | version "1.0.2" 1024 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 1025 | dependencies: 1026 | restore-cursor "^1.0.1" 1027 | 1028 | cli-cursor@^2.1.0: 1029 | version "2.1.0" 1030 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 1031 | dependencies: 1032 | restore-cursor "^2.0.0" 1033 | 1034 | cli-spinners@^1.0.0: 1035 | version "1.0.0" 1036 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-1.0.0.tgz#ef987ed3d48391ac3dab9180b406a742180d6e6a" 1037 | 1038 | cli-truncate@^0.2.0: 1039 | version "0.2.1" 1040 | resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-0.2.1.tgz#9f15cfbb0705005369216c626ac7d05ab90dd574" 1041 | dependencies: 1042 | slice-ansi "0.0.4" 1043 | string-width "^1.0.1" 1044 | 1045 | cli-width@^2.0.0: 1046 | version "2.1.0" 1047 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 1048 | 1049 | cliui@^2.1.0: 1050 | version "2.1.0" 1051 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 1052 | dependencies: 1053 | center-align "^0.1.1" 1054 | right-align "^0.1.1" 1055 | wordwrap "0.0.2" 1056 | 1057 | cliui@^3.2.0: 1058 | version "3.2.0" 1059 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 1060 | dependencies: 1061 | string-width "^1.0.1" 1062 | strip-ansi "^3.0.1" 1063 | wrap-ansi "^2.0.0" 1064 | 1065 | clone@^1.0.2: 1066 | version "1.0.4" 1067 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" 1068 | 1069 | co-with-promise@^4.6.0: 1070 | version "4.6.0" 1071 | resolved "https://registry.yarnpkg.com/co-with-promise/-/co-with-promise-4.6.0.tgz#413e7db6f5893a60b942cf492c4bec93db415ab7" 1072 | dependencies: 1073 | pinkie-promise "^1.0.0" 1074 | 1075 | co@^4.6.0: 1076 | version "4.6.0" 1077 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 1078 | 1079 | code-excerpt@^2.1.0: 1080 | version "2.1.0" 1081 | resolved "https://registry.yarnpkg.com/code-excerpt/-/code-excerpt-2.1.0.tgz#5dcc081e88f4a7e3b554e9e35d7ef232d47f8147" 1082 | dependencies: 1083 | convert-to-spaces "^1.0.1" 1084 | 1085 | code-point-at@^1.0.0: 1086 | version "1.1.0" 1087 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 1088 | 1089 | color-convert@^1.9.1: 1090 | version "1.9.3" 1091 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 1092 | dependencies: 1093 | color-name "1.1.3" 1094 | 1095 | color-name@1.1.3: 1096 | version "1.1.3" 1097 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 1098 | 1099 | color-name@^1.0.0: 1100 | version "1.1.4" 1101 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 1102 | 1103 | color-string@^1.5.2: 1104 | version "1.5.3" 1105 | resolved "https://registry.npmjs.org/color-string/-/color-string-1.5.3.tgz#c9bbc5f01b58b5492f3d6857459cb6590ce204cc" 1106 | dependencies: 1107 | color-name "^1.0.0" 1108 | simple-swizzle "^0.2.2" 1109 | 1110 | color@3.0.x: 1111 | version "3.0.0" 1112 | resolved "https://registry.npmjs.org/color/-/color-3.0.0.tgz#d920b4328d534a3ac8295d68f7bd4ba6c427be9a" 1113 | dependencies: 1114 | color-convert "^1.9.1" 1115 | color-string "^1.5.2" 1116 | 1117 | colornames@^1.1.1: 1118 | version "1.1.1" 1119 | resolved "https://registry.npmjs.org/colornames/-/colornames-1.1.1.tgz#f8889030685c7c4ff9e2a559f5077eb76a816f96" 1120 | 1121 | colors@^1.2.1: 1122 | version "1.4.0" 1123 | resolved "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz#c50491479d4c1bdaed2c9ced32cf7c7dc2360f78" 1124 | 1125 | colorspace@1.1.x: 1126 | version "1.1.2" 1127 | resolved "https://registry.npmjs.org/colorspace/-/colorspace-1.1.2.tgz#e0128950d082b86a2168580796a0aa5d6c68d8c5" 1128 | dependencies: 1129 | color "3.0.x" 1130 | text-hex "1.0.x" 1131 | 1132 | combined-stream@^1.0.5, combined-stream@~1.0.5: 1133 | version "1.0.5" 1134 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 1135 | dependencies: 1136 | delayed-stream "~1.0.0" 1137 | 1138 | common-path-prefix@^1.0.0: 1139 | version "1.0.0" 1140 | resolved "https://registry.yarnpkg.com/common-path-prefix/-/common-path-prefix-1.0.0.tgz#cd52f6f0712e0baab97d6f9732874f22f47752c0" 1141 | 1142 | commondir@^1.0.1: 1143 | version "1.0.1" 1144 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 1145 | 1146 | component-emitter@^1.2.0: 1147 | version "1.2.1" 1148 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 1149 | 1150 | concat-map@0.0.1: 1151 | version "0.0.1" 1152 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1153 | 1154 | concat-stream@^1.4.6: 1155 | version "1.6.0" 1156 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 1157 | dependencies: 1158 | inherits "^2.0.3" 1159 | readable-stream "^2.2.2" 1160 | typedarray "^0.0.6" 1161 | 1162 | configstore@^2.0.0: 1163 | version "2.1.0" 1164 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-2.1.0.tgz#737a3a7036e9886102aa6099e47bb33ab1aba1a1" 1165 | dependencies: 1166 | dot-prop "^3.0.0" 1167 | graceful-fs "^4.1.2" 1168 | mkdirp "^0.5.0" 1169 | object-assign "^4.0.1" 1170 | os-tmpdir "^1.0.0" 1171 | osenv "^0.1.0" 1172 | uuid "^2.0.1" 1173 | write-file-atomic "^1.1.2" 1174 | xdg-basedir "^2.0.0" 1175 | 1176 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1177 | version "1.1.0" 1178 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1179 | 1180 | content-disposition@0.5.3: 1181 | version "0.5.3" 1182 | resolved "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz#e130caf7e7279087c5616c2007d0485698984fbd" 1183 | dependencies: 1184 | safe-buffer "5.1.2" 1185 | 1186 | content-type@~1.0.4: 1187 | version "1.0.4" 1188 | resolved "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" 1189 | 1190 | convert-source-map@^1.1.0, convert-source-map@^1.2.0, convert-source-map@^1.3.0: 1191 | version "1.5.0" 1192 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 1193 | 1194 | convert-to-spaces@^1.0.1: 1195 | version "1.0.2" 1196 | resolved "https://registry.yarnpkg.com/convert-to-spaces/-/convert-to-spaces-1.0.2.tgz#7e3e48bbe6d997b1417ddca2868204b4d3d85715" 1197 | 1198 | cookie-signature@1.0.6: 1199 | version "1.0.6" 1200 | resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" 1201 | 1202 | cookie@0.4.0: 1203 | version "0.4.0" 1204 | resolved "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz#beb437e7022b3b6d49019d088665303ebe9c14ba" 1205 | 1206 | cookiejar@^2.0.6: 1207 | version "2.1.0" 1208 | resolved "https://registry.yarnpkg.com/cookiejar/-/cookiejar-2.1.0.tgz#86549689539b6d0e269b6637a304be508194d898" 1209 | 1210 | core-assert@^0.2.0: 1211 | version "0.2.1" 1212 | resolved "https://registry.yarnpkg.com/core-assert/-/core-assert-0.2.1.tgz#f85e2cf9bfed28f773cc8b3fa5c5b69bdc02fe3f" 1213 | dependencies: 1214 | buf-compare "^1.0.0" 1215 | is-error "^2.2.0" 1216 | 1217 | core-js@^2.0.0, core-js@^2.4.0: 1218 | version "2.4.1" 1219 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 1220 | 1221 | core-util-is@~1.0.0: 1222 | version "1.0.2" 1223 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1224 | 1225 | create-error-class@^3.0.1: 1226 | version "3.0.2" 1227 | resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" 1228 | dependencies: 1229 | capture-stack-trace "^1.0.0" 1230 | 1231 | cross-spawn@^4, cross-spawn@^4.0.0: 1232 | version "4.0.2" 1233 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.2.tgz#7b9247621c23adfdd3856004a823cbe397424d41" 1234 | dependencies: 1235 | lru-cache "^4.0.1" 1236 | which "^1.2.9" 1237 | 1238 | cryptiles@2.x.x: 1239 | version "2.0.5" 1240 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1241 | dependencies: 1242 | boom "2.x.x" 1243 | 1244 | csv-generate@^3.2.3: 1245 | version "3.2.3" 1246 | resolved "https://registry.yarnpkg.com/csv-generate/-/csv-generate-3.2.3.tgz#24004f21de61c2ea1c4474d3e65a18261f638a80" 1247 | 1248 | csv-parse@^4.4.6: 1249 | version "4.6.5" 1250 | resolved "https://registry.yarnpkg.com/csv-parse/-/csv-parse-4.6.5.tgz#e5175166dd883d6d89e29ad8174a63224cb02182" 1251 | dependencies: 1252 | pad "^3.2.0" 1253 | 1254 | csv-stringify@^5.3.3: 1255 | version "5.3.3" 1256 | resolved "https://registry.yarnpkg.com/csv-stringify/-/csv-stringify-5.3.3.tgz#c4725686a33db9f61e70d87af712285baefebe21" 1257 | 1258 | csv@^5.0.0: 1259 | version "5.1.3" 1260 | resolved "https://registry.yarnpkg.com/csv/-/csv-5.1.3.tgz#0ba228854f03769711cc45d71f771276d2ccbdbb" 1261 | dependencies: 1262 | csv-generate "^3.2.3" 1263 | csv-parse "^4.4.6" 1264 | csv-stringify "^5.3.3" 1265 | stream-transform "^2.0.1" 1266 | 1267 | currently-unhandled@^0.4.1: 1268 | version "0.4.1" 1269 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 1270 | dependencies: 1271 | array-find-index "^1.0.1" 1272 | 1273 | d@1: 1274 | version "1.0.0" 1275 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 1276 | dependencies: 1277 | es5-ext "^0.10.9" 1278 | 1279 | dashdash@^1.12.0: 1280 | version "1.14.1" 1281 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1282 | dependencies: 1283 | assert-plus "^1.0.0" 1284 | 1285 | date-time@^0.1.1: 1286 | version "0.1.1" 1287 | resolved "https://registry.yarnpkg.com/date-time/-/date-time-0.1.1.tgz#ed2f6d93d9790ce2fd66d5b5ff3edd5bbcbf3b07" 1288 | 1289 | debug-log@^1.0.0: 1290 | version "1.0.1" 1291 | resolved "https://registry.yarnpkg.com/debug-log/-/debug-log-1.0.1.tgz#2307632d4c04382b8df8a32f70b895046d52745f" 1292 | 1293 | debug@2.6.9: 1294 | version "2.6.9" 1295 | resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1296 | dependencies: 1297 | ms "2.0.0" 1298 | 1299 | debug@^2.1.1, debug@^2.2.0: 1300 | version "2.6.1" 1301 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.1.tgz#79855090ba2c4e3115cc7d8769491d58f0491351" 1302 | dependencies: 1303 | ms "0.7.2" 1304 | 1305 | decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: 1306 | version "1.2.0" 1307 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1308 | 1309 | deep-equal@^1.0.0, deep-equal@~1.0.1: 1310 | version "1.0.1" 1311 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" 1312 | 1313 | deep-extend@~0.4.0: 1314 | version "0.4.1" 1315 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 1316 | 1317 | deep-is@~0.1.3: 1318 | version "0.1.3" 1319 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1320 | 1321 | default-require-extensions@^1.0.0: 1322 | version "1.0.0" 1323 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 1324 | dependencies: 1325 | strip-bom "^2.0.0" 1326 | 1327 | defaults@^1.0.2, defaults@^1.0.3: 1328 | version "1.0.3" 1329 | resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" 1330 | dependencies: 1331 | clone "^1.0.2" 1332 | 1333 | define-properties@^1.1.2: 1334 | version "1.1.2" 1335 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 1336 | dependencies: 1337 | foreach "^2.0.5" 1338 | object-keys "^1.0.8" 1339 | 1340 | defined@~1.0.0: 1341 | version "1.0.0" 1342 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 1343 | 1344 | deglob@^1.0.0: 1345 | version "1.1.2" 1346 | resolved "https://registry.yarnpkg.com/deglob/-/deglob-1.1.2.tgz#76d577c25fe3f7329412a2b59eadea57ac500e3f" 1347 | dependencies: 1348 | find-root "^1.0.0" 1349 | glob "^7.0.5" 1350 | ignore "^3.0.9" 1351 | pkg-config "^1.1.0" 1352 | run-parallel "^1.1.2" 1353 | uniq "^1.0.1" 1354 | xtend "^4.0.0" 1355 | 1356 | del@^2.0.2: 1357 | version "2.2.2" 1358 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 1359 | dependencies: 1360 | globby "^5.0.0" 1361 | is-path-cwd "^1.0.0" 1362 | is-path-in-cwd "^1.0.0" 1363 | object-assign "^4.0.1" 1364 | pify "^2.0.0" 1365 | pinkie-promise "^2.0.0" 1366 | rimraf "^2.2.8" 1367 | 1368 | delayed-stream@~1.0.0: 1369 | version "1.0.0" 1370 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1371 | 1372 | delegates@^1.0.0: 1373 | version "1.0.0" 1374 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1375 | 1376 | depd@~1.1.2: 1377 | version "1.1.2" 1378 | resolved "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" 1379 | 1380 | destroy@~1.0.4: 1381 | version "1.0.4" 1382 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 1383 | 1384 | detect-indent@^4.0.0: 1385 | version "4.0.0" 1386 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1387 | dependencies: 1388 | repeating "^2.0.0" 1389 | 1390 | diagnostics@^1.1.1: 1391 | version "1.1.1" 1392 | resolved "https://registry.npmjs.org/diagnostics/-/diagnostics-1.1.1.tgz#cab6ac33df70c9d9a727490ae43ac995a769b22a" 1393 | dependencies: 1394 | colorspace "1.1.x" 1395 | enabled "1.0.x" 1396 | kuler "1.0.x" 1397 | 1398 | diff@^3.0.0, diff@^3.0.1, diff@^3.1.0: 1399 | version "3.2.0" 1400 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 1401 | 1402 | doctrine@^1.2.1, doctrine@^1.2.2: 1403 | version "1.5.0" 1404 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 1405 | dependencies: 1406 | esutils "^2.0.2" 1407 | isarray "^1.0.0" 1408 | 1409 | dot-prop@^3.0.0: 1410 | version "3.0.0" 1411 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-3.0.0.tgz#1b708af094a49c9a0e7dbcad790aba539dac1177" 1412 | dependencies: 1413 | is-obj "^1.0.0" 1414 | 1415 | dot-prop@^4.1.0: 1416 | version "4.1.1" 1417 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.1.1.tgz#a8493f0b7b5eeec82525b5c7587fa7de7ca859c1" 1418 | dependencies: 1419 | is-obj "^1.0.0" 1420 | 1421 | duplexer2@^0.1.4: 1422 | version "0.1.4" 1423 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" 1424 | dependencies: 1425 | readable-stream "^2.0.2" 1426 | 1427 | duplexer@^0.1.1, duplexer@~0.1.1: 1428 | version "0.1.1" 1429 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" 1430 | 1431 | ecc-jsbn@~0.1.1: 1432 | version "0.1.1" 1433 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1434 | dependencies: 1435 | jsbn "~0.1.0" 1436 | 1437 | ee-first@1.1.1: 1438 | version "1.1.1" 1439 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 1440 | 1441 | empower-core@^0.6.1: 1442 | version "0.6.1" 1443 | resolved "https://registry.yarnpkg.com/empower-core/-/empower-core-0.6.1.tgz#6c187f502fcef7554d57933396aac655483772b1" 1444 | dependencies: 1445 | call-signature "0.0.2" 1446 | core-js "^2.0.0" 1447 | 1448 | enabled@1.0.x: 1449 | version "1.0.2" 1450 | resolved "https://registry.npmjs.org/enabled/-/enabled-1.0.2.tgz#965f6513d2c2d1c5f4652b64a2e3396467fc2f93" 1451 | dependencies: 1452 | env-variable "0.0.x" 1453 | 1454 | encodeurl@~1.0.2: 1455 | version "1.0.2" 1456 | resolved "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" 1457 | 1458 | env-variable@0.0.x: 1459 | version "0.0.5" 1460 | resolved "https://registry.npmjs.org/env-variable/-/env-variable-0.0.5.tgz#913dd830bef11e96a039c038d4130604eba37f88" 1461 | 1462 | equal-length@^1.0.0: 1463 | version "1.0.1" 1464 | resolved "https://registry.yarnpkg.com/equal-length/-/equal-length-1.0.1.tgz#21ca112d48ab24b4e1e7ffc0e5339d31fdfc274c" 1465 | 1466 | error-ex@^1.2.0: 1467 | version "1.3.1" 1468 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1469 | dependencies: 1470 | is-arrayish "^0.2.1" 1471 | 1472 | es-abstract@^1.5.0: 1473 | version "1.7.0" 1474 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.7.0.tgz#dfade774e01bfcd97f96180298c449c8623fb94c" 1475 | dependencies: 1476 | es-to-primitive "^1.1.1" 1477 | function-bind "^1.1.0" 1478 | is-callable "^1.1.3" 1479 | is-regex "^1.0.3" 1480 | 1481 | es-to-primitive@^1.1.1: 1482 | version "1.1.1" 1483 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 1484 | dependencies: 1485 | is-callable "^1.1.1" 1486 | is-date-object "^1.0.1" 1487 | is-symbol "^1.0.1" 1488 | 1489 | es5-ext@^0.10.14, es5-ext@^0.10.9, es5-ext@~0.10.14: 1490 | version "0.10.15" 1491 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.15.tgz#c330a5934c1ee21284a7c081a86e5fd937c91ea6" 1492 | dependencies: 1493 | es6-iterator "2" 1494 | es6-symbol "~3.1" 1495 | 1496 | es6-iterator@2, es6-iterator@^2.0.1, es6-iterator@~2.0.1: 1497 | version "2.0.1" 1498 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512" 1499 | dependencies: 1500 | d "1" 1501 | es5-ext "^0.10.14" 1502 | es6-symbol "^3.1" 1503 | 1504 | es6-map@^0.1.3: 1505 | version "0.1.5" 1506 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" 1507 | dependencies: 1508 | d "1" 1509 | es5-ext "~0.10.14" 1510 | es6-iterator "~2.0.1" 1511 | es6-set "~0.1.5" 1512 | es6-symbol "~3.1.1" 1513 | event-emitter "~0.3.5" 1514 | 1515 | es6-set@~0.1.5: 1516 | version "0.1.5" 1517 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" 1518 | dependencies: 1519 | d "1" 1520 | es5-ext "~0.10.14" 1521 | es6-iterator "~2.0.1" 1522 | es6-symbol "3.1.1" 1523 | event-emitter "~0.3.5" 1524 | 1525 | es6-symbol@3.1.1, es6-symbol@^3.1, es6-symbol@^3.1.1, es6-symbol@~3.1, es6-symbol@~3.1.1: 1526 | version "3.1.1" 1527 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 1528 | dependencies: 1529 | d "1" 1530 | es5-ext "~0.10.14" 1531 | 1532 | es6-weak-map@^2.0.1: 1533 | version "2.0.2" 1534 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" 1535 | dependencies: 1536 | d "1" 1537 | es5-ext "^0.10.14" 1538 | es6-iterator "^2.0.1" 1539 | es6-symbol "^3.1.1" 1540 | 1541 | escape-html@~1.0.3: 1542 | version "1.0.3" 1543 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 1544 | 1545 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.4, escape-string-regexp@^1.0.5, escape-string-regexp@~1.0.5: 1546 | version "1.0.5" 1547 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1548 | 1549 | escope@^3.6.0: 1550 | version "3.6.0" 1551 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 1552 | dependencies: 1553 | es6-map "^0.1.3" 1554 | es6-weak-map "^2.0.1" 1555 | esrecurse "^4.1.0" 1556 | estraverse "^4.1.1" 1557 | 1558 | eslint-config-standard-jsx@1.2.1: 1559 | version "1.2.1" 1560 | resolved "https://registry.yarnpkg.com/eslint-config-standard-jsx/-/eslint-config-standard-jsx-1.2.1.tgz#0d19b1705f0ad48363ef2a8bbfa71df012d989b3" 1561 | 1562 | eslint-config-standard@5.3.1: 1563 | version "5.3.1" 1564 | resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-5.3.1.tgz#591c969151744132f561d3b915a812ea413fe490" 1565 | 1566 | eslint-plugin-promise@^1.0.8: 1567 | version "1.3.2" 1568 | resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-1.3.2.tgz#fce332d6f5ff523200a537704863ec3c2422ba7c" 1569 | 1570 | eslint-plugin-react@^5.0.1: 1571 | version "5.2.2" 1572 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-5.2.2.tgz#7db068e1f5487f6871e4deef36a381c303eac161" 1573 | dependencies: 1574 | doctrine "^1.2.2" 1575 | jsx-ast-utils "^1.2.1" 1576 | 1577 | eslint-plugin-standard@^1.3.1: 1578 | version "1.3.3" 1579 | resolved "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-1.3.3.tgz#a3085451523431e76f409c70cb8f94e32bf0ec7f" 1580 | 1581 | eslint@~2.10.2: 1582 | version "2.10.2" 1583 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-2.10.2.tgz#b2309482fef043d3203365a321285e6cce01c3d7" 1584 | dependencies: 1585 | chalk "^1.1.3" 1586 | concat-stream "^1.4.6" 1587 | debug "^2.1.1" 1588 | doctrine "^1.2.1" 1589 | es6-map "^0.1.3" 1590 | escope "^3.6.0" 1591 | espree "3.1.4" 1592 | estraverse "^4.2.0" 1593 | esutils "^2.0.2" 1594 | file-entry-cache "^1.1.1" 1595 | glob "^7.0.3" 1596 | globals "^9.2.0" 1597 | ignore "^3.1.2" 1598 | imurmurhash "^0.1.4" 1599 | inquirer "^0.12.0" 1600 | is-my-json-valid "^2.10.0" 1601 | is-resolvable "^1.0.0" 1602 | js-yaml "^3.5.1" 1603 | json-stable-stringify "^1.0.0" 1604 | lodash "^4.0.0" 1605 | mkdirp "^0.5.0" 1606 | optionator "^0.8.1" 1607 | path-is-absolute "^1.0.0" 1608 | path-is-inside "^1.0.1" 1609 | pluralize "^1.2.1" 1610 | progress "^1.1.8" 1611 | require-uncached "^1.0.2" 1612 | shelljs "^0.6.0" 1613 | strip-json-comments "~1.0.1" 1614 | table "^3.7.8" 1615 | text-table "~0.2.0" 1616 | user-home "^2.0.0" 1617 | 1618 | espower-location-detector@^1.0.0: 1619 | version "1.0.0" 1620 | resolved "https://registry.yarnpkg.com/espower-location-detector/-/espower-location-detector-1.0.0.tgz#a17b7ecc59d30e179e2bef73fb4137704cb331b5" 1621 | dependencies: 1622 | is-url "^1.2.1" 1623 | path-is-absolute "^1.0.0" 1624 | source-map "^0.5.0" 1625 | xtend "^4.0.0" 1626 | 1627 | espree@3.1.4: 1628 | version "3.1.4" 1629 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.1.4.tgz#0726d7ac83af97a7c8498da9b363a3609d2a68a1" 1630 | dependencies: 1631 | acorn "^3.1.0" 1632 | acorn-jsx "^3.0.0" 1633 | 1634 | espree@~3.1.7: 1635 | version "3.1.7" 1636 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.1.7.tgz#fd5deec76a97a5120a9cd3a7cb1177a0923b11d2" 1637 | dependencies: 1638 | acorn "^3.3.0" 1639 | acorn-jsx "^3.0.0" 1640 | 1641 | esprima@^3.1.1: 1642 | version "3.1.3" 1643 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1644 | 1645 | espurify@^1.6.0: 1646 | version "1.7.0" 1647 | resolved "https://registry.yarnpkg.com/espurify/-/espurify-1.7.0.tgz#1c5cf6cbccc32e6f639380bd4f991fab9ba9d226" 1648 | dependencies: 1649 | core-js "^2.0.0" 1650 | 1651 | esrecurse@^4.1.0: 1652 | version "4.1.0" 1653 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" 1654 | dependencies: 1655 | estraverse "~4.1.0" 1656 | object-assign "^4.0.1" 1657 | 1658 | estraverse@^4.0.0, estraverse@^4.1.1, estraverse@^4.2.0: 1659 | version "4.2.0" 1660 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1661 | 1662 | estraverse@~4.1.0: 1663 | version "4.1.1" 1664 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" 1665 | 1666 | esutils@^2.0.2: 1667 | version "2.0.2" 1668 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1669 | 1670 | etag@~1.8.1: 1671 | version "1.8.1" 1672 | resolved "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" 1673 | 1674 | event-emitter@~0.3.5: 1675 | version "0.3.5" 1676 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 1677 | dependencies: 1678 | d "1" 1679 | es5-ext "~0.10.14" 1680 | 1681 | execa@^0.5.0: 1682 | version "0.5.1" 1683 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.5.1.tgz#de3fb85cb8d6e91c85bcbceb164581785cb57b36" 1684 | dependencies: 1685 | cross-spawn "^4.0.0" 1686 | get-stream "^2.2.0" 1687 | is-stream "^1.1.0" 1688 | npm-run-path "^2.0.0" 1689 | p-finally "^1.0.0" 1690 | signal-exit "^3.0.0" 1691 | strip-eof "^1.0.0" 1692 | 1693 | exit-hook@^1.0.0: 1694 | version "1.1.1" 1695 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1696 | 1697 | expand-brackets@^0.1.4: 1698 | version "0.1.5" 1699 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1700 | dependencies: 1701 | is-posix-bracket "^0.1.0" 1702 | 1703 | expand-range@^1.8.1: 1704 | version "1.8.2" 1705 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1706 | dependencies: 1707 | fill-range "^2.1.0" 1708 | 1709 | express-validation@^0.6.0: 1710 | version "0.6.0" 1711 | resolved "https://registry.yarnpkg.com/express-validation/-/express-validation-0.6.0.tgz#0d77f4afc7e58b12016adec59b325beefd9dc268" 1712 | dependencies: 1713 | lodash "^4.9.0" 1714 | 1715 | express-winston-middleware@^0.1.0: 1716 | version "0.1.0" 1717 | resolved "https://registry.yarnpkg.com/express-winston-middleware/-/express-winston-middleware-0.1.0.tgz#52516ede58c63d6e0ffed779e2ecfbc038ea4988" 1718 | dependencies: 1719 | lodash "2.4.0" 1720 | 1721 | express-winston@^2.5.0: 1722 | version "2.6.0" 1723 | resolved "https://registry.yarnpkg.com/express-winston/-/express-winston-2.6.0.tgz#3e94a8b5934e8971119653ad18f031274e3a2cb7" 1724 | dependencies: 1725 | chalk "~0.4.0" 1726 | lodash "~4.17.5" 1727 | 1728 | express@^4.16.0: 1729 | version "4.17.1" 1730 | resolved "https://registry.npmjs.org/express/-/express-4.17.1.tgz#4491fc38605cf51f8629d39c2b5d026f98a4c134" 1731 | dependencies: 1732 | accepts "~1.3.7" 1733 | array-flatten "1.1.1" 1734 | body-parser "1.19.0" 1735 | content-disposition "0.5.3" 1736 | content-type "~1.0.4" 1737 | cookie "0.4.0" 1738 | cookie-signature "1.0.6" 1739 | debug "2.6.9" 1740 | depd "~1.1.2" 1741 | encodeurl "~1.0.2" 1742 | escape-html "~1.0.3" 1743 | etag "~1.8.1" 1744 | finalhandler "~1.1.2" 1745 | fresh "0.5.2" 1746 | merge-descriptors "1.0.1" 1747 | methods "~1.1.2" 1748 | on-finished "~2.3.0" 1749 | parseurl "~1.3.3" 1750 | path-to-regexp "0.1.7" 1751 | proxy-addr "~2.0.5" 1752 | qs "6.7.0" 1753 | range-parser "~1.2.1" 1754 | safe-buffer "5.1.2" 1755 | send "0.17.1" 1756 | serve-static "1.14.1" 1757 | setprototypeof "1.1.1" 1758 | statuses "~1.5.0" 1759 | type-is "~1.6.18" 1760 | utils-merge "1.0.1" 1761 | vary "~1.1.2" 1762 | 1763 | extend@^3.0.0, extend@~3.0.0: 1764 | version "3.0.0" 1765 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 1766 | 1767 | extglob@^0.3.1: 1768 | version "0.3.2" 1769 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1770 | dependencies: 1771 | is-extglob "^1.0.0" 1772 | 1773 | extsprintf@1.0.2: 1774 | version "1.0.2" 1775 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1776 | 1777 | fast-levenshtein@~2.0.4: 1778 | version "2.0.6" 1779 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1780 | 1781 | fast-safe-stringify@^2.0.4: 1782 | version "2.0.7" 1783 | resolved "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.0.7.tgz#124aa885899261f68aedb42a7c080de9da608743" 1784 | 1785 | fecha@^2.3.3: 1786 | version "2.3.3" 1787 | resolved "https://registry.npmjs.org/fecha/-/fecha-2.3.3.tgz#948e74157df1a32fd1b12c3a3c3cdcb6ec9d96cd" 1788 | 1789 | figures@^1.3.5, figures@^1.4.0: 1790 | version "1.7.0" 1791 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1792 | dependencies: 1793 | escape-string-regexp "^1.0.5" 1794 | object-assign "^4.1.0" 1795 | 1796 | figures@^2.0.0: 1797 | version "2.0.0" 1798 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1799 | dependencies: 1800 | escape-string-regexp "^1.0.5" 1801 | 1802 | file-entry-cache@^1.1.1: 1803 | version "1.3.1" 1804 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-1.3.1.tgz#44c61ea607ae4be9c1402f41f44270cbfe334ff8" 1805 | dependencies: 1806 | flat-cache "^1.2.1" 1807 | object-assign "^4.0.1" 1808 | 1809 | filename-regex@^2.0.0: 1810 | version "2.0.0" 1811 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 1812 | 1813 | fill-keys@^1.0.2: 1814 | version "1.0.2" 1815 | resolved "https://registry.yarnpkg.com/fill-keys/-/fill-keys-1.0.2.tgz#9a8fa36f4e8ad634e3bf6b4f3c8882551452eb20" 1816 | dependencies: 1817 | is-object "~1.0.1" 1818 | merge-descriptors "~1.0.0" 1819 | 1820 | fill-range@^2.1.0: 1821 | version "2.2.3" 1822 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1823 | dependencies: 1824 | is-number "^2.1.0" 1825 | isobject "^2.0.0" 1826 | randomatic "^1.1.3" 1827 | repeat-element "^1.1.2" 1828 | repeat-string "^1.5.2" 1829 | 1830 | filled-array@^1.0.0: 1831 | version "1.1.0" 1832 | resolved "https://registry.yarnpkg.com/filled-array/-/filled-array-1.1.0.tgz#c3c4f6c663b923459a9aa29912d2d031f1507f84" 1833 | 1834 | finalhandler@~1.1.2: 1835 | version "1.1.2" 1836 | resolved "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d" 1837 | dependencies: 1838 | debug "2.6.9" 1839 | encodeurl "~1.0.2" 1840 | escape-html "~1.0.3" 1841 | on-finished "~2.3.0" 1842 | parseurl "~1.3.3" 1843 | statuses "~1.5.0" 1844 | unpipe "~1.0.0" 1845 | 1846 | find-cache-dir@^0.1.1: 1847 | version "0.1.1" 1848 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" 1849 | dependencies: 1850 | commondir "^1.0.1" 1851 | mkdirp "^0.5.1" 1852 | pkg-dir "^1.0.0" 1853 | 1854 | find-root@^1.0.0: 1855 | version "1.0.0" 1856 | resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.0.0.tgz#962ff211aab25c6520feeeb8d6287f8f6e95807a" 1857 | 1858 | find-up@^1.0.0, find-up@^1.1.2: 1859 | version "1.1.2" 1860 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1861 | dependencies: 1862 | path-exists "^2.0.0" 1863 | pinkie-promise "^2.0.0" 1864 | 1865 | find-up@^2.0.0: 1866 | version "2.1.0" 1867 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1868 | dependencies: 1869 | locate-path "^2.0.0" 1870 | 1871 | flat-cache@^1.2.1: 1872 | version "1.2.2" 1873 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 1874 | dependencies: 1875 | circular-json "^0.3.1" 1876 | del "^2.0.2" 1877 | graceful-fs "^4.1.2" 1878 | write "^0.2.1" 1879 | 1880 | fn-name@^2.0.0: 1881 | version "2.0.1" 1882 | resolved "https://registry.yarnpkg.com/fn-name/-/fn-name-2.0.1.tgz#5214d7537a4d06a4a301c0cc262feb84188002e7" 1883 | 1884 | for-each@~0.3.2: 1885 | version "0.3.2" 1886 | resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.2.tgz#2c40450b9348e97f281322593ba96704b9abd4d4" 1887 | dependencies: 1888 | is-function "~1.0.0" 1889 | 1890 | for-in@^1.0.1: 1891 | version "1.0.2" 1892 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1893 | 1894 | for-own@^0.1.4: 1895 | version "0.1.5" 1896 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1897 | dependencies: 1898 | for-in "^1.0.1" 1899 | 1900 | foreach@^2.0.5: 1901 | version "2.0.5" 1902 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1903 | 1904 | foreground-child@^1.5.3, foreground-child@^1.5.6: 1905 | version "1.5.6" 1906 | resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-1.5.6.tgz#4fd71ad2dfde96789b980a5c0a295937cb2f5ce9" 1907 | dependencies: 1908 | cross-spawn "^4" 1909 | signal-exit "^3.0.0" 1910 | 1911 | forever-agent@~0.6.1: 1912 | version "0.6.1" 1913 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1914 | 1915 | form-data@1.0.0-rc4: 1916 | version "1.0.0-rc4" 1917 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-1.0.0-rc4.tgz#05ac6bc22227b43e4461f488161554699d4f8b5e" 1918 | dependencies: 1919 | async "^1.5.2" 1920 | combined-stream "^1.0.5" 1921 | mime-types "^2.1.10" 1922 | 1923 | form-data@~2.1.1: 1924 | version "2.1.2" 1925 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4" 1926 | dependencies: 1927 | asynckit "^0.4.0" 1928 | combined-stream "^1.0.5" 1929 | mime-types "^2.1.12" 1930 | 1931 | formatio@1.2.0: 1932 | version "1.2.0" 1933 | resolved "https://registry.yarnpkg.com/formatio/-/formatio-1.2.0.tgz#f3b2167d9068c4698a8d51f4f760a39a54d818eb" 1934 | dependencies: 1935 | samsam "1.x" 1936 | 1937 | formidable@^1.0.17: 1938 | version "1.1.1" 1939 | resolved "https://registry.yarnpkg.com/formidable/-/formidable-1.1.1.tgz#96b8886f7c3c3508b932d6bd70c4d3a88f35f1a9" 1940 | 1941 | forwarded@~0.1.2: 1942 | version "0.1.2" 1943 | resolved "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84" 1944 | 1945 | fresh@0.5.2: 1946 | version "0.5.2" 1947 | resolved "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" 1948 | 1949 | fs.realpath@^1.0.0: 1950 | version "1.0.0" 1951 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1952 | 1953 | fsevents@^1.0.0: 1954 | version "1.1.1" 1955 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.1.tgz#f19fd28f43eeaf761680e519a203c4d0b3d31aff" 1956 | dependencies: 1957 | nan "^2.3.0" 1958 | node-pre-gyp "^0.6.29" 1959 | 1960 | fstream-ignore@^1.0.5: 1961 | version "1.0.5" 1962 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1963 | dependencies: 1964 | fstream "^1.0.0" 1965 | inherits "2" 1966 | minimatch "^3.0.0" 1967 | 1968 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1969 | version "1.0.11" 1970 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1971 | dependencies: 1972 | graceful-fs "^4.1.2" 1973 | inherits "~2.0.0" 1974 | mkdirp ">=0.5 0" 1975 | rimraf "2" 1976 | 1977 | function-bind@^1.0.2, function-bind@^1.1.0, function-bind@~1.1.0: 1978 | version "1.1.0" 1979 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 1980 | 1981 | gauge@~2.7.1: 1982 | version "2.7.3" 1983 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.3.tgz#1c23855f962f17b3ad3d0dc7443f304542edfe09" 1984 | dependencies: 1985 | aproba "^1.0.3" 1986 | console-control-strings "^1.0.0" 1987 | has-unicode "^2.0.0" 1988 | object-assign "^4.1.0" 1989 | signal-exit "^3.0.0" 1990 | string-width "^1.0.1" 1991 | strip-ansi "^3.0.1" 1992 | wide-align "^1.1.0" 1993 | 1994 | generate-function@^2.0.0: 1995 | version "2.0.0" 1996 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1997 | 1998 | generate-object-property@^1.1.0: 1999 | version "1.2.0" 2000 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 2001 | dependencies: 2002 | is-property "^1.0.0" 2003 | 2004 | get-caller-file@^1.0.1: 2005 | version "1.0.2" 2006 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 2007 | 2008 | get-port@^2.1.0: 2009 | version "2.1.0" 2010 | resolved "https://registry.yarnpkg.com/get-port/-/get-port-2.1.0.tgz#8783f9dcebd1eea495a334e1a6a251e78887ab1a" 2011 | dependencies: 2012 | pinkie-promise "^2.0.0" 2013 | 2014 | get-stdin@^4.0.1: 2015 | version "4.0.1" 2016 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 2017 | 2018 | get-stdin@^5.0.1: 2019 | version "5.0.1" 2020 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" 2021 | 2022 | get-stream@^2.2.0: 2023 | version "2.3.1" 2024 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-2.3.1.tgz#5f38f93f346009666ee0150a054167f91bdd95de" 2025 | dependencies: 2026 | object-assign "^4.0.1" 2027 | pinkie-promise "^2.0.0" 2028 | 2029 | getpass@^0.1.1: 2030 | version "0.1.6" 2031 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 2032 | dependencies: 2033 | assert-plus "^1.0.0" 2034 | 2035 | glob-base@^0.3.0: 2036 | version "0.3.0" 2037 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 2038 | dependencies: 2039 | glob-parent "^2.0.0" 2040 | is-glob "^2.0.0" 2041 | 2042 | glob-parent@^2.0.0: 2043 | version "2.0.0" 2044 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 2045 | dependencies: 2046 | is-glob "^2.0.0" 2047 | 2048 | glob@^6.0.1: 2049 | version "6.0.4" 2050 | resolved "https://registry.yarnpkg.com/glob/-/glob-6.0.4.tgz#0f08860f6a155127b2fadd4f9ce24b1aab6e4d22" 2051 | dependencies: 2052 | inflight "^1.0.4" 2053 | inherits "2" 2054 | minimatch "2 || 3" 2055 | once "^1.3.0" 2056 | path-is-absolute "^1.0.0" 2057 | 2058 | glob@^7.0.3, glob@^7.0.5, glob@~7.1.1: 2059 | version "7.1.1" 2060 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 2061 | dependencies: 2062 | fs.realpath "^1.0.0" 2063 | inflight "^1.0.4" 2064 | inherits "2" 2065 | minimatch "^3.0.2" 2066 | once "^1.3.0" 2067 | path-is-absolute "^1.0.0" 2068 | 2069 | globals@^9.0.0, globals@^9.2.0: 2070 | version "9.17.0" 2071 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" 2072 | 2073 | globby@^5.0.0: 2074 | version "5.0.0" 2075 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 2076 | dependencies: 2077 | array-union "^1.0.1" 2078 | arrify "^1.0.0" 2079 | glob "^7.0.3" 2080 | object-assign "^4.0.1" 2081 | pify "^2.0.0" 2082 | pinkie-promise "^2.0.0" 2083 | 2084 | globby@^6.0.0: 2085 | version "6.1.0" 2086 | resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" 2087 | dependencies: 2088 | array-union "^1.0.1" 2089 | glob "^7.0.3" 2090 | object-assign "^4.0.1" 2091 | pify "^2.0.0" 2092 | pinkie-promise "^2.0.0" 2093 | 2094 | got@^5.0.0: 2095 | version "5.7.1" 2096 | resolved "https://registry.yarnpkg.com/got/-/got-5.7.1.tgz#5f81635a61e4a6589f180569ea4e381680a51f35" 2097 | dependencies: 2098 | create-error-class "^3.0.1" 2099 | duplexer2 "^0.1.4" 2100 | is-redirect "^1.0.0" 2101 | is-retry-allowed "^1.0.0" 2102 | is-stream "^1.0.0" 2103 | lowercase-keys "^1.0.0" 2104 | node-status-codes "^1.0.0" 2105 | object-assign "^4.0.1" 2106 | parse-json "^2.1.0" 2107 | pinkie-promise "^2.0.0" 2108 | read-all-stream "^3.0.0" 2109 | readable-stream "^2.0.5" 2110 | timed-out "^3.0.0" 2111 | unzip-response "^1.0.2" 2112 | url-parse-lax "^1.0.0" 2113 | 2114 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9: 2115 | version "4.1.11" 2116 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 2117 | 2118 | handlebars@^4.0.3: 2119 | version "4.0.6" 2120 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.6.tgz#2ce4484850537f9c97a8026d5399b935c4ed4ed7" 2121 | dependencies: 2122 | async "^1.4.0" 2123 | optimist "^0.6.1" 2124 | source-map "^0.4.4" 2125 | optionalDependencies: 2126 | uglify-js "^2.6" 2127 | 2128 | har-schema@^1.0.5: 2129 | version "1.0.5" 2130 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 2131 | 2132 | har-validator@~4.2.1: 2133 | version "4.2.1" 2134 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 2135 | dependencies: 2136 | ajv "^4.9.1" 2137 | har-schema "^1.0.5" 2138 | 2139 | has-ansi@^2.0.0: 2140 | version "2.0.0" 2141 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 2142 | dependencies: 2143 | ansi-regex "^2.0.0" 2144 | 2145 | has-color@~0.1.0: 2146 | version "0.1.7" 2147 | resolved "https://registry.yarnpkg.com/has-color/-/has-color-0.1.7.tgz#67144a5260c34fc3cca677d041daf52fe7b78b2f" 2148 | 2149 | has-flag@^1.0.0: 2150 | version "1.0.0" 2151 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 2152 | 2153 | has-flag@^2.0.0: 2154 | version "2.0.0" 2155 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 2156 | 2157 | has-unicode@^2.0.0: 2158 | version "2.0.1" 2159 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 2160 | 2161 | has-yarn@^1.0.0: 2162 | version "1.0.0" 2163 | resolved "https://registry.yarnpkg.com/has-yarn/-/has-yarn-1.0.0.tgz#89e25db604b725c8f5976fff0addc921b828a5a7" 2164 | 2165 | has@^1.0.1, has@~1.0.1: 2166 | version "1.0.1" 2167 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 2168 | dependencies: 2169 | function-bind "^1.0.2" 2170 | 2171 | hawk@~3.1.3: 2172 | version "3.1.3" 2173 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 2174 | dependencies: 2175 | boom "2.x.x" 2176 | cryptiles "2.x.x" 2177 | hoek "2.x.x" 2178 | sntp "1.x.x" 2179 | 2180 | hoek@2.x.x: 2181 | version "2.16.3" 2182 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 2183 | 2184 | home-or-tmp@^2.0.0: 2185 | version "2.0.0" 2186 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 2187 | dependencies: 2188 | os-homedir "^1.0.0" 2189 | os-tmpdir "^1.0.1" 2190 | 2191 | hosted-git-info@^2.1.4: 2192 | version "2.4.1" 2193 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.1.tgz#4b0445e41c004a8bd1337773a4ff790ca40318c8" 2194 | 2195 | http-errors@1.7.2: 2196 | version "1.7.2" 2197 | resolved "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz#4f5029cf13239f31036e5b2e55292bcfbcc85c8f" 2198 | dependencies: 2199 | depd "~1.1.2" 2200 | inherits "2.0.3" 2201 | setprototypeof "1.1.1" 2202 | statuses ">= 1.5.0 < 2" 2203 | toidentifier "1.0.0" 2204 | 2205 | http-errors@~1.7.2: 2206 | version "1.7.3" 2207 | resolved "https://registry.npmjs.org/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06" 2208 | dependencies: 2209 | depd "~1.1.2" 2210 | inherits "2.0.4" 2211 | setprototypeof "1.1.1" 2212 | statuses ">= 1.5.0 < 2" 2213 | toidentifier "1.0.0" 2214 | 2215 | http-signature@~1.1.0: 2216 | version "1.1.1" 2217 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 2218 | dependencies: 2219 | assert-plus "^0.2.0" 2220 | jsprim "^1.2.2" 2221 | sshpk "^1.7.0" 2222 | 2223 | iconv-lite@0.4.24: 2224 | version "0.4.24" 2225 | resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 2226 | dependencies: 2227 | safer-buffer ">= 2.1.2 < 3" 2228 | 2229 | ignore-by-default@^1.0.0: 2230 | version "1.0.1" 2231 | resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" 2232 | 2233 | ignore@^3.0.9, ignore@^3.1.2: 2234 | version "3.2.6" 2235 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.2.6.tgz#26e8da0644be0bb4cb39516f6c79f0e0f4ffe48c" 2236 | 2237 | imurmurhash@^0.1.4: 2238 | version "0.1.4" 2239 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 2240 | 2241 | indent-string@^2.1.0: 2242 | version "2.1.0" 2243 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 2244 | dependencies: 2245 | repeating "^2.0.0" 2246 | 2247 | indent-string@^3.0.0: 2248 | version "3.1.0" 2249 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.1.0.tgz#08ff4334603388399b329e6b9538dc7a3cf5de7d" 2250 | 2251 | inflight@^1.0.4: 2252 | version "1.0.6" 2253 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 2254 | dependencies: 2255 | once "^1.3.0" 2256 | wrappy "1" 2257 | 2258 | inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: 2259 | version "2.0.3" 2260 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 2261 | 2262 | inherits@2.0.4: 2263 | version "2.0.4" 2264 | resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 2265 | 2266 | ini@~1.3.0: 2267 | version "1.3.4" 2268 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 2269 | 2270 | inquirer@^0.12.0: 2271 | version "0.12.0" 2272 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 2273 | dependencies: 2274 | ansi-escapes "^1.1.0" 2275 | ansi-regex "^2.0.0" 2276 | chalk "^1.0.0" 2277 | cli-cursor "^1.0.1" 2278 | cli-width "^2.0.0" 2279 | figures "^1.3.5" 2280 | lodash "^4.3.0" 2281 | readline2 "^1.0.1" 2282 | run-async "^0.1.0" 2283 | rx-lite "^3.1.2" 2284 | string-width "^1.0.1" 2285 | strip-ansi "^3.0.0" 2286 | through "^2.3.6" 2287 | 2288 | invariant@^2.2.0: 2289 | version "2.2.2" 2290 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 2291 | dependencies: 2292 | loose-envify "^1.0.0" 2293 | 2294 | invert-kv@^1.0.0: 2295 | version "1.0.0" 2296 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 2297 | 2298 | ipaddr.js@1.9.0: 2299 | version "1.9.0" 2300 | resolved "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.0.tgz#37df74e430a0e47550fe54a2defe30d8acd95f65" 2301 | 2302 | irregular-plurals@^1.0.0: 2303 | version "1.2.0" 2304 | resolved "https://registry.yarnpkg.com/irregular-plurals/-/irregular-plurals-1.2.0.tgz#38f299834ba8c00c30be9c554e137269752ff3ac" 2305 | 2306 | is-arrayish@^0.2.1: 2307 | version "0.2.1" 2308 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 2309 | 2310 | is-arrayish@^0.3.1: 2311 | version "0.3.2" 2312 | resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" 2313 | 2314 | is-binary-path@^1.0.0: 2315 | version "1.0.1" 2316 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 2317 | dependencies: 2318 | binary-extensions "^1.0.0" 2319 | 2320 | is-buffer@^1.0.2: 2321 | version "1.1.5" 2322 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 2323 | 2324 | is-builtin-module@^1.0.0: 2325 | version "1.0.0" 2326 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 2327 | dependencies: 2328 | builtin-modules "^1.0.0" 2329 | 2330 | is-callable@^1.1.1, is-callable@^1.1.3: 2331 | version "1.1.3" 2332 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 2333 | 2334 | is-ci@^1.0.7: 2335 | version "1.0.10" 2336 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 2337 | dependencies: 2338 | ci-info "^1.0.0" 2339 | 2340 | is-date-object@^1.0.1: 2341 | version "1.0.1" 2342 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 2343 | 2344 | is-dotfile@^1.0.0: 2345 | version "1.0.2" 2346 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 2347 | 2348 | is-equal-shallow@^0.1.3: 2349 | version "0.1.3" 2350 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 2351 | dependencies: 2352 | is-primitive "^2.0.0" 2353 | 2354 | is-error@^2.2.0: 2355 | version "2.2.1" 2356 | resolved "https://registry.yarnpkg.com/is-error/-/is-error-2.2.1.tgz#684a96d84076577c98f4cdb40c6d26a5123bf19c" 2357 | 2358 | is-extendable@^0.1.1: 2359 | version "0.1.1" 2360 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 2361 | 2362 | is-extglob@^1.0.0: 2363 | version "1.0.0" 2364 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 2365 | 2366 | is-finite@^1.0.0, is-finite@^1.0.1: 2367 | version "1.0.2" 2368 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 2369 | dependencies: 2370 | number-is-nan "^1.0.0" 2371 | 2372 | is-fullwidth-code-point@^1.0.0: 2373 | version "1.0.0" 2374 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 2375 | dependencies: 2376 | number-is-nan "^1.0.0" 2377 | 2378 | is-fullwidth-code-point@^2.0.0: 2379 | version "2.0.0" 2380 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 2381 | 2382 | is-function@~1.0.0: 2383 | version "1.0.1" 2384 | resolved "https://registry.yarnpkg.com/is-function/-/is-function-1.0.1.tgz#12cfb98b65b57dd3d193a3121f5f6e2f437602b5" 2385 | 2386 | is-generator-fn@^1.0.0: 2387 | version "1.0.0" 2388 | resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-1.0.0.tgz#969d49e1bb3329f6bb7f09089be26578b2ddd46a" 2389 | 2390 | is-glob@^2.0.0, is-glob@^2.0.1: 2391 | version "2.0.1" 2392 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 2393 | dependencies: 2394 | is-extglob "^1.0.0" 2395 | 2396 | is-my-json-valid@^2.10.0: 2397 | version "2.16.0" 2398 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz#f079dd9bfdae65ee2038aae8acbc86ab109e3693" 2399 | dependencies: 2400 | generate-function "^2.0.0" 2401 | generate-object-property "^1.1.0" 2402 | jsonpointer "^4.0.0" 2403 | xtend "^4.0.0" 2404 | 2405 | is-npm@^1.0.0: 2406 | version "1.0.0" 2407 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 2408 | 2409 | is-number@^2.0.2, is-number@^2.1.0: 2410 | version "2.1.0" 2411 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 2412 | dependencies: 2413 | kind-of "^3.0.2" 2414 | 2415 | is-obj@^1.0.0: 2416 | version "1.0.1" 2417 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 2418 | 2419 | is-object@~1.0.1: 2420 | version "1.0.1" 2421 | resolved "https://registry.yarnpkg.com/is-object/-/is-object-1.0.1.tgz#8952688c5ec2ffd6b03ecc85e769e02903083470" 2422 | 2423 | is-observable@^0.2.0: 2424 | version "0.2.0" 2425 | resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-0.2.0.tgz#b361311d83c6e5d726cabf5e250b0237106f5ae2" 2426 | dependencies: 2427 | symbol-observable "^0.2.2" 2428 | 2429 | is-path-cwd@^1.0.0: 2430 | version "1.0.0" 2431 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 2432 | 2433 | is-path-in-cwd@^1.0.0: 2434 | version "1.0.0" 2435 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 2436 | dependencies: 2437 | is-path-inside "^1.0.0" 2438 | 2439 | is-path-inside@^1.0.0: 2440 | version "1.0.0" 2441 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 2442 | dependencies: 2443 | path-is-inside "^1.0.1" 2444 | 2445 | is-plain-obj@^1.0.0: 2446 | version "1.1.0" 2447 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 2448 | 2449 | is-posix-bracket@^0.1.0: 2450 | version "0.1.1" 2451 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 2452 | 2453 | is-primitive@^2.0.0: 2454 | version "2.0.0" 2455 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 2456 | 2457 | is-promise@^2.1.0: 2458 | version "2.1.0" 2459 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 2460 | 2461 | is-property@^1.0.0: 2462 | version "1.0.2" 2463 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 2464 | 2465 | is-redirect@^1.0.0: 2466 | version "1.0.0" 2467 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 2468 | 2469 | is-regex@^1.0.3: 2470 | version "1.0.4" 2471 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 2472 | dependencies: 2473 | has "^1.0.1" 2474 | 2475 | is-resolvable@^1.0.0: 2476 | version "1.0.0" 2477 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 2478 | dependencies: 2479 | tryit "^1.0.1" 2480 | 2481 | is-retry-allowed@^1.0.0: 2482 | version "1.1.0" 2483 | resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" 2484 | 2485 | is-stream@^1.0.0, is-stream@^1.1.0: 2486 | version "1.1.0" 2487 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2488 | 2489 | is-symbol@^1.0.1: 2490 | version "1.0.1" 2491 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 2492 | 2493 | is-typedarray@~1.0.0: 2494 | version "1.0.0" 2495 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2496 | 2497 | is-url@^1.2.1: 2498 | version "1.2.2" 2499 | resolved "https://registry.yarnpkg.com/is-url/-/is-url-1.2.2.tgz#498905a593bf47cc2d9e7f738372bbf7696c7f26" 2500 | 2501 | is-utf8@^0.2.0, is-utf8@^0.2.1: 2502 | version "0.2.1" 2503 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 2504 | 2505 | isarray@0.0.1: 2506 | version "0.0.1" 2507 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 2508 | 2509 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 2510 | version "1.0.0" 2511 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2512 | 2513 | isexe@^2.0.0: 2514 | version "2.0.0" 2515 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2516 | 2517 | isobject@^2.0.0: 2518 | version "2.1.0" 2519 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2520 | dependencies: 2521 | isarray "1.0.0" 2522 | 2523 | isstream@~0.1.2: 2524 | version "0.1.2" 2525 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2526 | 2527 | istanbul-lib-coverage@^1.0.0-alpha.4, istanbul-lib-coverage@^1.0.2: 2528 | version "1.0.2" 2529 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.0.2.tgz#87a0c015b6910651cb3b184814dfb339337e25e1" 2530 | 2531 | istanbul-lib-hook@^1.0.0-alpha.4: 2532 | version "1.0.5" 2533 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.5.tgz#6ca3d16d60c5f4082da39f7c5cd38ea8a772b88e" 2534 | dependencies: 2535 | append-transform "^0.4.0" 2536 | 2537 | istanbul-lib-instrument@^1.1.0-alpha.3: 2538 | version "1.7.0" 2539 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.0.tgz#b8e0dc25709bb44e17336ab47b7bb5c97c23f659" 2540 | dependencies: 2541 | babel-generator "^6.18.0" 2542 | babel-template "^6.16.0" 2543 | babel-traverse "^6.18.0" 2544 | babel-types "^6.18.0" 2545 | babylon "^6.13.0" 2546 | istanbul-lib-coverage "^1.0.2" 2547 | semver "^5.3.0" 2548 | 2549 | istanbul-lib-report@^1.0.0-alpha.3: 2550 | version "1.0.0" 2551 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.0.0.tgz#d83dac7f26566b521585569367fe84ccfc7aaecb" 2552 | dependencies: 2553 | istanbul-lib-coverage "^1.0.2" 2554 | mkdirp "^0.5.1" 2555 | path-parse "^1.0.5" 2556 | supports-color "^3.1.2" 2557 | 2558 | istanbul-lib-source-maps@^1.0.0-alpha.10: 2559 | version "1.1.1" 2560 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.1.1.tgz#f8c8c2e8f2160d1d91526d97e5bd63b2079af71c" 2561 | dependencies: 2562 | istanbul-lib-coverage "^1.0.2" 2563 | mkdirp "^0.5.1" 2564 | rimraf "^2.4.4" 2565 | source-map "^0.5.3" 2566 | 2567 | istanbul-reports@^1.0.0-alpha.8: 2568 | version "1.0.2" 2569 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.0.2.tgz#4e8366abe6fa746cc1cd6633f108de12cc6ac6fa" 2570 | dependencies: 2571 | handlebars "^4.0.3" 2572 | 2573 | jest-diff@^18.1.0: 2574 | version "18.1.0" 2575 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-18.1.0.tgz#4ff79e74dd988c139195b365dc65d87f606f4803" 2576 | dependencies: 2577 | chalk "^1.1.3" 2578 | diff "^3.0.0" 2579 | jest-matcher-utils "^18.1.0" 2580 | pretty-format "^18.1.0" 2581 | 2582 | jest-file-exists@^17.0.0: 2583 | version "17.0.0" 2584 | resolved "https://registry.yarnpkg.com/jest-file-exists/-/jest-file-exists-17.0.0.tgz#7f63eb73a1c43a13f461be261768b45af2cdd169" 2585 | 2586 | jest-matcher-utils@^18.1.0: 2587 | version "18.1.0" 2588 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-18.1.0.tgz#1ac4651955ee2a60cef1e7fcc98cdfd773c0f932" 2589 | dependencies: 2590 | chalk "^1.1.3" 2591 | pretty-format "^18.1.0" 2592 | 2593 | jest-mock@^18.0.0: 2594 | version "18.0.0" 2595 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-18.0.0.tgz#5c248846ea33fa558b526f5312ab4a6765e489b3" 2596 | 2597 | jest-snapshot@^18.1.0: 2598 | version "18.1.0" 2599 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-18.1.0.tgz#55b96d2ee639c9bce76f87f2a3fd40b71c7a5916" 2600 | dependencies: 2601 | jest-diff "^18.1.0" 2602 | jest-file-exists "^17.0.0" 2603 | jest-matcher-utils "^18.1.0" 2604 | jest-util "^18.1.0" 2605 | natural-compare "^1.4.0" 2606 | pretty-format "^18.1.0" 2607 | 2608 | jest-util@^18.1.0: 2609 | version "18.1.0" 2610 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-18.1.0.tgz#3a99c32114ab17f84be094382527006e6d4bfc6a" 2611 | dependencies: 2612 | chalk "^1.1.1" 2613 | diff "^3.0.0" 2614 | graceful-fs "^4.1.6" 2615 | jest-file-exists "^17.0.0" 2616 | jest-mock "^18.0.0" 2617 | mkdirp "^0.5.1" 2618 | 2619 | jodid25519@^1.0.0: 2620 | version "1.0.2" 2621 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 2622 | dependencies: 2623 | jsbn "~0.1.0" 2624 | 2625 | js-tokens@^3.0.0: 2626 | version "3.0.1" 2627 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 2628 | 2629 | js-yaml@^3.5.1: 2630 | version "3.8.2" 2631 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.2.tgz#02d3e2c0f6beab20248d412c352203827d786721" 2632 | dependencies: 2633 | argparse "^1.0.7" 2634 | esprima "^3.1.1" 2635 | 2636 | js2xmlparser@~1.0.0: 2637 | version "1.0.0" 2638 | resolved "https://registry.yarnpkg.com/js2xmlparser/-/js2xmlparser-1.0.0.tgz#5a170f2e8d6476ce45405e04823242513782fe30" 2639 | 2640 | jsbn@~0.1.0: 2641 | version "0.1.1" 2642 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2643 | 2644 | jsdoc@^3.4.2: 2645 | version "3.4.3" 2646 | resolved "https://registry.yarnpkg.com/jsdoc/-/jsdoc-3.4.3.tgz#e5740d6145c681f6679e6c17783a88dbdd97ccd3" 2647 | dependencies: 2648 | bluebird "~3.4.6" 2649 | catharsis "~0.8.8" 2650 | escape-string-regexp "~1.0.5" 2651 | espree "~3.1.7" 2652 | js2xmlparser "~1.0.0" 2653 | klaw "~1.3.0" 2654 | marked "~0.3.6" 2655 | mkdirp "~0.5.1" 2656 | requizzle "~0.2.1" 2657 | strip-json-comments "~2.0.1" 2658 | taffydb "2.6.2" 2659 | underscore "~1.8.3" 2660 | 2661 | jsesc@^1.3.0: 2662 | version "1.3.0" 2663 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2664 | 2665 | jsesc@~0.5.0: 2666 | version "0.5.0" 2667 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2668 | 2669 | json-schema@0.2.3: 2670 | version "0.2.3" 2671 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2672 | 2673 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 2674 | version "1.0.1" 2675 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2676 | dependencies: 2677 | jsonify "~0.0.0" 2678 | 2679 | json-stringify-safe@~5.0.1: 2680 | version "5.0.1" 2681 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2682 | 2683 | json5@^0.5.0: 2684 | version "0.5.1" 2685 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2686 | 2687 | jsonify@~0.0.0: 2688 | version "0.0.0" 2689 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2690 | 2691 | jsonpointer@^4.0.0: 2692 | version "4.0.1" 2693 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 2694 | 2695 | jsprim@^1.2.2: 2696 | version "1.4.0" 2697 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 2698 | dependencies: 2699 | assert-plus "1.0.0" 2700 | extsprintf "1.0.2" 2701 | json-schema "0.2.3" 2702 | verror "1.3.6" 2703 | 2704 | jsx-ast-utils@^1.2.1: 2705 | version "1.4.0" 2706 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-1.4.0.tgz#5afe38868f56bc8cc7aeaef0100ba8c75bd12591" 2707 | dependencies: 2708 | object-assign "^4.1.0" 2709 | 2710 | kind-of@^3.0.2: 2711 | version "3.1.0" 2712 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47" 2713 | dependencies: 2714 | is-buffer "^1.0.2" 2715 | 2716 | klaw@~1.3.0: 2717 | version "1.3.1" 2718 | resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" 2719 | optionalDependencies: 2720 | graceful-fs "^4.1.9" 2721 | 2722 | kuler@1.0.x: 2723 | version "1.0.1" 2724 | resolved "https://registry.npmjs.org/kuler/-/kuler-1.0.1.tgz#ef7c784f36c9fb6e16dd3150d152677b2b0228a6" 2725 | dependencies: 2726 | colornames "^1.1.1" 2727 | 2728 | last-line-stream@^1.0.0: 2729 | version "1.0.0" 2730 | resolved "https://registry.yarnpkg.com/last-line-stream/-/last-line-stream-1.0.0.tgz#d1b64d69f86ff24af2d04883a2ceee14520a5600" 2731 | dependencies: 2732 | through2 "^2.0.0" 2733 | 2734 | latest-version@^2.0.0: 2735 | version "2.0.0" 2736 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-2.0.0.tgz#56f8d6139620847b8017f8f1f4d78e211324168b" 2737 | dependencies: 2738 | package-json "^2.0.0" 2739 | 2740 | lazy-cache@^1.0.3: 2741 | version "1.0.4" 2742 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2743 | 2744 | lazy-req@^1.1.0: 2745 | version "1.1.0" 2746 | resolved "https://registry.yarnpkg.com/lazy-req/-/lazy-req-1.1.0.tgz#bdaebead30f8d824039ce0ce149d4daa07ba1fac" 2747 | 2748 | lcid@^1.0.0: 2749 | version "1.0.0" 2750 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2751 | dependencies: 2752 | invert-kv "^1.0.0" 2753 | 2754 | levn@~0.3.0: 2755 | version "0.3.0" 2756 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2757 | dependencies: 2758 | prelude-ls "~1.1.2" 2759 | type-check "~0.3.2" 2760 | 2761 | load-json-file@^1.0.0: 2762 | version "1.1.0" 2763 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2764 | dependencies: 2765 | graceful-fs "^4.1.2" 2766 | parse-json "^2.2.0" 2767 | pify "^2.0.0" 2768 | pinkie-promise "^2.0.0" 2769 | strip-bom "^2.0.0" 2770 | 2771 | load-json-file@^2.0.0: 2772 | version "2.0.0" 2773 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 2774 | dependencies: 2775 | graceful-fs "^4.1.2" 2776 | parse-json "^2.2.0" 2777 | pify "^2.0.0" 2778 | strip-bom "^3.0.0" 2779 | 2780 | locate-path@^2.0.0: 2781 | version "2.0.0" 2782 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2783 | dependencies: 2784 | p-locate "^2.0.0" 2785 | path-exists "^3.0.0" 2786 | 2787 | lodash.assign@^4.0.0, lodash.assign@^4.0.3, lodash.assign@^4.0.6, lodash.assign@^4.0.9: 2788 | version "4.2.0" 2789 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" 2790 | 2791 | lodash.debounce@^4.0.3: 2792 | version "4.0.8" 2793 | resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" 2794 | 2795 | lodash.difference@^4.3.0: 2796 | version "4.5.0" 2797 | resolved "https://registry.yarnpkg.com/lodash.difference/-/lodash.difference-4.5.0.tgz#9ccb4e505d486b91651345772885a2df27fd017c" 2798 | 2799 | lodash.flatten@^4.2.0: 2800 | version "4.4.0" 2801 | resolved "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f" 2802 | 2803 | lodash.isequal@^4.5.0: 2804 | version "4.5.0" 2805 | resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" 2806 | 2807 | lodash.pickby@^4.0.0: 2808 | version "4.6.0" 2809 | resolved "https://registry.yarnpkg.com/lodash.pickby/-/lodash.pickby-4.6.0.tgz#7dea21d8c18d7703a27c704c15d3b84a67e33aff" 2810 | 2811 | lodash@2.4.0: 2812 | version "2.4.0" 2813 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-2.4.0.tgz#55074982883381b6b7134b742a5900bbbdab6b09" 2814 | 2815 | lodash@^3.6.0: 2816 | version "3.10.1" 2817 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6" 2818 | 2819 | lodash@^4.0.0, lodash@^4.2.0, lodash@^4.3.0: 2820 | version "4.17.4" 2821 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2822 | 2823 | lodash@^4.17.11, lodash@^4.17.14, lodash@^4.9.0, lodash@~4.17.5: 2824 | version "4.17.15" 2825 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" 2826 | 2827 | logform@^2.1.1: 2828 | version "2.1.2" 2829 | resolved "https://registry.npmjs.org/logform/-/logform-2.1.2.tgz#957155ebeb67a13164069825ce67ddb5bb2dd360" 2830 | dependencies: 2831 | colors "^1.2.1" 2832 | fast-safe-stringify "^2.0.4" 2833 | fecha "^2.3.3" 2834 | ms "^2.1.1" 2835 | triple-beam "^1.3.0" 2836 | 2837 | lolex@^1.6.0: 2838 | version "1.6.0" 2839 | resolved "https://registry.yarnpkg.com/lolex/-/lolex-1.6.0.tgz#3a9a0283452a47d7439e72731b9e07d7386e49f6" 2840 | 2841 | longest@^1.0.1: 2842 | version "1.0.1" 2843 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2844 | 2845 | loose-envify@^1.0.0: 2846 | version "1.3.1" 2847 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2848 | dependencies: 2849 | js-tokens "^3.0.0" 2850 | 2851 | loud-rejection@^1.0.0, loud-rejection@^1.2.0: 2852 | version "1.6.0" 2853 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 2854 | dependencies: 2855 | currently-unhandled "^0.4.1" 2856 | signal-exit "^3.0.0" 2857 | 2858 | lowercase-keys@^1.0.0: 2859 | version "1.0.0" 2860 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" 2861 | 2862 | lru-cache@^4.0.1: 2863 | version "4.0.2" 2864 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.0.2.tgz#1d17679c069cda5d040991a09dbc2c0db377e55e" 2865 | dependencies: 2866 | pseudomap "^1.0.1" 2867 | yallist "^2.0.0" 2868 | 2869 | map-obj@^1.0.0, map-obj@^1.0.1: 2870 | version "1.0.1" 2871 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 2872 | 2873 | marked@~0.3.6: 2874 | version "0.3.6" 2875 | resolved "https://registry.yarnpkg.com/marked/-/marked-0.3.6.tgz#b2c6c618fccece4ef86c4fc6cb8a7cbf5aeda8d7" 2876 | 2877 | matcher@^0.1.1: 2878 | version "0.1.2" 2879 | resolved "https://registry.yarnpkg.com/matcher/-/matcher-0.1.2.tgz#ef20cbde64c24c50cc61af5b83ee0b1b8ff00101" 2880 | dependencies: 2881 | escape-string-regexp "^1.0.4" 2882 | 2883 | max-timeout@^1.0.0: 2884 | version "1.0.0" 2885 | resolved "https://registry.yarnpkg.com/max-timeout/-/max-timeout-1.0.0.tgz#b68f69a2f99e0b476fd4cb23e2059ca750715e1f" 2886 | 2887 | md5-hex@^1.2.0, md5-hex@^1.3.0: 2888 | version "1.3.0" 2889 | resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-1.3.0.tgz#d2c4afe983c4370662179b8cad145219135046c4" 2890 | dependencies: 2891 | md5-o-matic "^0.1.1" 2892 | 2893 | md5-hex@^2.0.0: 2894 | version "2.0.0" 2895 | resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-2.0.0.tgz#d0588e9f1c74954492ecd24ac0ac6ce997d92e33" 2896 | dependencies: 2897 | md5-o-matic "^0.1.1" 2898 | 2899 | md5-o-matic@^0.1.1: 2900 | version "0.1.1" 2901 | resolved "https://registry.yarnpkg.com/md5-o-matic/-/md5-o-matic-0.1.1.tgz#822bccd65e117c514fab176b25945d54100a03c3" 2902 | 2903 | media-typer@0.3.0: 2904 | version "0.3.0" 2905 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 2906 | 2907 | meow@^3.7.0: 2908 | version "3.7.0" 2909 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 2910 | dependencies: 2911 | camelcase-keys "^2.0.0" 2912 | decamelize "^1.1.2" 2913 | loud-rejection "^1.0.0" 2914 | map-obj "^1.0.1" 2915 | minimist "^1.1.3" 2916 | normalize-package-data "^2.3.4" 2917 | object-assign "^4.0.1" 2918 | read-pkg-up "^1.0.1" 2919 | redent "^1.0.0" 2920 | trim-newlines "^1.0.0" 2921 | 2922 | merge-descriptors@1.0.1, merge-descriptors@~1.0.0: 2923 | version "1.0.1" 2924 | resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" 2925 | 2926 | methods@1.x, methods@^1.1.1, methods@~1.1.2: 2927 | version "1.1.2" 2928 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" 2929 | 2930 | micromatch@^2.1.5, micromatch@^2.3.11, micromatch@^2.3.8: 2931 | version "2.3.11" 2932 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2933 | dependencies: 2934 | arr-diff "^2.0.0" 2935 | array-unique "^0.2.1" 2936 | braces "^1.8.2" 2937 | expand-brackets "^0.1.4" 2938 | extglob "^0.3.1" 2939 | filename-regex "^2.0.0" 2940 | is-extglob "^1.0.0" 2941 | is-glob "^2.0.1" 2942 | kind-of "^3.0.2" 2943 | normalize-path "^2.0.1" 2944 | object.omit "^2.0.0" 2945 | parse-glob "^3.0.4" 2946 | regex-cache "^0.4.2" 2947 | 2948 | mime-db@1.40.0: 2949 | version "1.40.0" 2950 | resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.40.0.tgz#a65057e998db090f732a68f6c276d387d4126c32" 2951 | 2952 | mime-db@~1.27.0: 2953 | version "1.27.0" 2954 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 2955 | 2956 | mime-types@^2.1.10, mime-types@^2.1.12, mime-types@~2.1.7: 2957 | version "2.1.15" 2958 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 2959 | dependencies: 2960 | mime-db "~1.27.0" 2961 | 2962 | mime-types@~2.1.24: 2963 | version "2.1.24" 2964 | resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.24.tgz#b6f8d0b3e951efb77dedeca194cff6d16f676f81" 2965 | dependencies: 2966 | mime-db "1.40.0" 2967 | 2968 | mime@1.6.0: 2969 | version "1.6.0" 2970 | resolved "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" 2971 | 2972 | mime@^1.3.4: 2973 | version "1.3.4" 2974 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53" 2975 | 2976 | mimic-fn@^1.0.0: 2977 | version "1.1.0" 2978 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 2979 | 2980 | "minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2: 2981 | version "3.0.3" 2982 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 2983 | dependencies: 2984 | brace-expansion "^1.0.0" 2985 | 2986 | minimist@0.0.8, minimist@~0.0.1: 2987 | version "0.0.8" 2988 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2989 | 2990 | minimist@^1.1.0, minimist@^1.1.3, minimist@^1.2.0, minimist@~1.2.0: 2991 | version "1.2.0" 2992 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2993 | 2994 | mixme@^0.3.1: 2995 | version "0.3.2" 2996 | resolved "https://registry.yarnpkg.com/mixme/-/mixme-0.3.2.tgz#cbda53e3009da0b5035361954232019d776720da" 2997 | 2998 | "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.1: 2999 | version "0.5.1" 3000 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 3001 | dependencies: 3002 | minimist "0.0.8" 3003 | 3004 | module-not-found-error@^1.0.0: 3005 | version "1.0.1" 3006 | resolved "https://registry.yarnpkg.com/module-not-found-error/-/module-not-found-error-1.0.1.tgz#cf8b4ff4f29640674d6cdd02b0e3bc523c2bbdc0" 3007 | 3008 | ms@0.7.2: 3009 | version "0.7.2" 3010 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 3011 | 3012 | ms@2.0.0: 3013 | version "2.0.0" 3014 | resolved "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 3015 | 3016 | ms@2.1.1: 3017 | version "2.1.1" 3018 | resolved "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" 3019 | 3020 | ms@^0.7.1: 3021 | version "0.7.3" 3022 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.3.tgz#708155a5e44e33f5fd0fc53e81d0d40a91be1fff" 3023 | 3024 | ms@^2.1.1: 3025 | version "2.1.2" 3026 | resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 3027 | 3028 | multiline@^1.0.2: 3029 | version "1.0.2" 3030 | resolved "https://registry.yarnpkg.com/multiline/-/multiline-1.0.2.tgz#69b1f25ff074d2828904f244ddd06b7d96ef6c93" 3031 | dependencies: 3032 | strip-indent "^1.0.0" 3033 | 3034 | multimatch@^2.1.0: 3035 | version "2.1.0" 3036 | resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-2.1.0.tgz#9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b" 3037 | dependencies: 3038 | array-differ "^1.0.0" 3039 | array-union "^1.0.1" 3040 | arrify "^1.0.0" 3041 | minimatch "^3.0.0" 3042 | 3043 | mute-stream@0.0.5: 3044 | version "0.0.5" 3045 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 3046 | 3047 | nan@^2.3.0: 3048 | version "2.5.1" 3049 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.5.1.tgz#d5b01691253326a97a2bbee9e61c55d8d60351e2" 3050 | 3051 | native-promise-only@^0.8.1: 3052 | version "0.8.1" 3053 | resolved "https://registry.yarnpkg.com/native-promise-only/-/native-promise-only-0.8.1.tgz#20a318c30cb45f71fe7adfbf7b21c99c1472ef11" 3054 | 3055 | natural-compare@^1.4.0: 3056 | version "1.4.0" 3057 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 3058 | 3059 | negotiator@0.6.2: 3060 | version "0.6.2" 3061 | resolved "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" 3062 | 3063 | node-pre-gyp@^0.6.29: 3064 | version "0.6.34" 3065 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.34.tgz#94ad1c798a11d7fc67381b50d47f8cc18d9799f7" 3066 | dependencies: 3067 | mkdirp "^0.5.1" 3068 | nopt "^4.0.1" 3069 | npmlog "^4.0.2" 3070 | rc "^1.1.7" 3071 | request "^2.81.0" 3072 | rimraf "^2.6.1" 3073 | semver "^5.3.0" 3074 | tar "^2.2.1" 3075 | tar-pack "^3.4.0" 3076 | 3077 | node-status-codes@^1.0.0: 3078 | version "1.0.0" 3079 | resolved "https://registry.yarnpkg.com/node-status-codes/-/node-status-codes-1.0.0.tgz#5ae5541d024645d32a58fcddc9ceecea7ae3ac2f" 3080 | 3081 | nopt@^4.0.1: 3082 | version "4.0.1" 3083 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 3084 | dependencies: 3085 | abbrev "1" 3086 | osenv "^0.1.4" 3087 | 3088 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: 3089 | version "2.3.6" 3090 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.6.tgz#498fa420c96401f787402ba21e600def9f981fff" 3091 | dependencies: 3092 | hosted-git-info "^2.1.4" 3093 | is-builtin-module "^1.0.0" 3094 | semver "2 || 3 || 4 || 5" 3095 | validate-npm-package-license "^3.0.1" 3096 | 3097 | normalize-path@^2.0.1: 3098 | version "2.1.1" 3099 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 3100 | dependencies: 3101 | remove-trailing-separator "^1.0.1" 3102 | 3103 | npm-run-path@^2.0.0: 3104 | version "2.0.2" 3105 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 3106 | dependencies: 3107 | path-key "^2.0.0" 3108 | 3109 | npmlog@^4.0.2: 3110 | version "4.0.2" 3111 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.2.tgz#d03950e0e78ce1527ba26d2a7592e9348ac3e75f" 3112 | dependencies: 3113 | are-we-there-yet "~1.1.2" 3114 | console-control-strings "~1.1.0" 3115 | gauge "~2.7.1" 3116 | set-blocking "~2.0.0" 3117 | 3118 | number-is-nan@^1.0.0: 3119 | version "1.0.1" 3120 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 3121 | 3122 | nyc@^7.1.0: 3123 | version "7.1.0" 3124 | resolved "https://registry.yarnpkg.com/nyc/-/nyc-7.1.0.tgz#8e14971f3a15d1abbec7ac610ef54cb889e9ffb4" 3125 | dependencies: 3126 | arrify "^1.0.1" 3127 | caching-transform "^1.0.0" 3128 | convert-source-map "^1.3.0" 3129 | default-require-extensions "^1.0.0" 3130 | find-cache-dir "^0.1.1" 3131 | find-up "^1.1.2" 3132 | foreground-child "^1.5.3" 3133 | glob "^7.0.3" 3134 | istanbul-lib-coverage "^1.0.0-alpha.4" 3135 | istanbul-lib-hook "^1.0.0-alpha.4" 3136 | istanbul-lib-instrument "^1.1.0-alpha.3" 3137 | istanbul-lib-report "^1.0.0-alpha.3" 3138 | istanbul-lib-source-maps "^1.0.0-alpha.10" 3139 | istanbul-reports "^1.0.0-alpha.8" 3140 | md5-hex "^1.2.0" 3141 | micromatch "^2.3.11" 3142 | mkdirp "^0.5.0" 3143 | pkg-up "^1.0.0" 3144 | resolve-from "^2.0.0" 3145 | rimraf "^2.5.4" 3146 | signal-exit "^3.0.0" 3147 | spawn-wrap "^1.2.4" 3148 | test-exclude "^1.1.0" 3149 | yargs "^4.8.1" 3150 | yargs-parser "^2.4.1" 3151 | 3152 | oauth-sign@~0.8.1: 3153 | version "0.8.2" 3154 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 3155 | 3156 | object-assign@^4.0.1, object-assign@^4.1.0: 3157 | version "4.1.1" 3158 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 3159 | 3160 | object-inspect@~1.2.1: 3161 | version "1.2.2" 3162 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.2.2.tgz#c82115e4fcc888aea14d64c22e4f17f6a70d5e5a" 3163 | 3164 | object-keys@^1.0.8: 3165 | version "1.0.11" 3166 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 3167 | 3168 | object-keys@~0.4.0: 3169 | version "0.4.0" 3170 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-0.4.0.tgz#28a6aae7428dd2c3a92f3d95f21335dd204e0336" 3171 | 3172 | object.omit@^2.0.0: 3173 | version "2.0.1" 3174 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 3175 | dependencies: 3176 | for-own "^0.1.4" 3177 | is-extendable "^0.1.1" 3178 | 3179 | observable-to-promise@^0.4.0: 3180 | version "0.4.0" 3181 | resolved "https://registry.yarnpkg.com/observable-to-promise/-/observable-to-promise-0.4.0.tgz#28afe71645308f2d41d71f47ad3fece1a377e52b" 3182 | dependencies: 3183 | is-observable "^0.2.0" 3184 | symbol-observable "^0.2.2" 3185 | 3186 | on-finished@~2.3.0: 3187 | version "2.3.0" 3188 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 3189 | dependencies: 3190 | ee-first "1.1.1" 3191 | 3192 | once@^1.3.0, once@^1.3.3: 3193 | version "1.4.0" 3194 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 3195 | dependencies: 3196 | wrappy "1" 3197 | 3198 | one-time@0.0.4: 3199 | version "0.0.4" 3200 | resolved "https://registry.npmjs.org/one-time/-/one-time-0.0.4.tgz#f8cdf77884826fe4dff93e3a9cc37b1e4480742e" 3201 | 3202 | onetime@^1.0.0: 3203 | version "1.1.0" 3204 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 3205 | 3206 | onetime@^2.0.0: 3207 | version "2.0.1" 3208 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 3209 | dependencies: 3210 | mimic-fn "^1.0.0" 3211 | 3212 | optimist@^0.6.1: 3213 | version "0.6.1" 3214 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 3215 | dependencies: 3216 | minimist "~0.0.1" 3217 | wordwrap "~0.0.2" 3218 | 3219 | option-chain@^0.1.0: 3220 | version "0.1.1" 3221 | resolved "https://registry.yarnpkg.com/option-chain/-/option-chain-0.1.1.tgz#e9b811e006f1c0f54802f28295bfc8970f8dcfbd" 3222 | dependencies: 3223 | object-assign "^4.0.1" 3224 | 3225 | optionator@^0.8.1: 3226 | version "0.8.2" 3227 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 3228 | dependencies: 3229 | deep-is "~0.1.3" 3230 | fast-levenshtein "~2.0.4" 3231 | levn "~0.3.0" 3232 | prelude-ls "~1.1.2" 3233 | type-check "~0.3.2" 3234 | wordwrap "~1.0.0" 3235 | 3236 | os-homedir@^1.0.0, os-homedir@^1.0.1: 3237 | version "1.0.2" 3238 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 3239 | 3240 | os-locale@^1.4.0: 3241 | version "1.4.0" 3242 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 3243 | dependencies: 3244 | lcid "^1.0.0" 3245 | 3246 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 3247 | version "1.0.2" 3248 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 3249 | 3250 | osenv@^0.1.0, osenv@^0.1.4: 3251 | version "0.1.4" 3252 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 3253 | dependencies: 3254 | os-homedir "^1.0.0" 3255 | os-tmpdir "^1.0.0" 3256 | 3257 | p-finally@^1.0.0: 3258 | version "1.0.0" 3259 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 3260 | 3261 | p-limit@^1.1.0: 3262 | version "1.1.0" 3263 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 3264 | 3265 | p-locate@^2.0.0: 3266 | version "2.0.0" 3267 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 3268 | dependencies: 3269 | p-limit "^1.1.0" 3270 | 3271 | package-hash@^1.2.0: 3272 | version "1.2.0" 3273 | resolved "https://registry.yarnpkg.com/package-hash/-/package-hash-1.2.0.tgz#003e56cd57b736a6ed6114cc2b81542672770e44" 3274 | dependencies: 3275 | md5-hex "^1.3.0" 3276 | 3277 | package-json@^2.0.0: 3278 | version "2.4.0" 3279 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-2.4.0.tgz#0d15bd67d1cbbddbb2ca222ff2edb86bcb31a8bb" 3280 | dependencies: 3281 | got "^5.0.0" 3282 | registry-auth-token "^3.0.1" 3283 | registry-url "^3.0.3" 3284 | semver "^5.1.0" 3285 | 3286 | pad@^3.2.0: 3287 | version "3.2.0" 3288 | resolved "https://registry.yarnpkg.com/pad/-/pad-3.2.0.tgz#be7a1d1cb6757049b4ad5b70e71977158fea95d1" 3289 | dependencies: 3290 | wcwidth "^1.0.1" 3291 | 3292 | parse-glob@^3.0.4: 3293 | version "3.0.4" 3294 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 3295 | dependencies: 3296 | glob-base "^0.3.0" 3297 | is-dotfile "^1.0.0" 3298 | is-extglob "^1.0.0" 3299 | is-glob "^2.0.0" 3300 | 3301 | parse-json@^2.1.0, parse-json@^2.2.0: 3302 | version "2.2.0" 3303 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 3304 | dependencies: 3305 | error-ex "^1.2.0" 3306 | 3307 | parse-ms@^0.1.0: 3308 | version "0.1.2" 3309 | resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-0.1.2.tgz#dd3fa25ed6c2efc7bdde12ad9b46c163aa29224e" 3310 | 3311 | parse-ms@^1.0.0: 3312 | version "1.0.1" 3313 | resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-1.0.1.tgz#56346d4749d78f23430ca0c713850aef91aa361d" 3314 | 3315 | parseurl@~1.3.3: 3316 | version "1.3.3" 3317 | resolved "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" 3318 | 3319 | path-exists@^2.0.0: 3320 | version "2.1.0" 3321 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 3322 | dependencies: 3323 | pinkie-promise "^2.0.0" 3324 | 3325 | path-exists@^3.0.0: 3326 | version "3.0.0" 3327 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 3328 | 3329 | path-is-absolute@^1.0.0: 3330 | version "1.0.1" 3331 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 3332 | 3333 | path-is-inside@^1.0.1: 3334 | version "1.0.2" 3335 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 3336 | 3337 | path-key@^2.0.0: 3338 | version "2.0.1" 3339 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 3340 | 3341 | path-parse@^1.0.5: 3342 | version "1.0.5" 3343 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 3344 | 3345 | path-to-regexp@0.1.7: 3346 | version "0.1.7" 3347 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" 3348 | 3349 | path-to-regexp@^1.7.0: 3350 | version "1.7.0" 3351 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-1.7.0.tgz#59fde0f435badacba103a84e9d3bc64e96b9937d" 3352 | dependencies: 3353 | isarray "0.0.1" 3354 | 3355 | path-type@^1.0.0: 3356 | version "1.1.0" 3357 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 3358 | dependencies: 3359 | graceful-fs "^4.1.2" 3360 | pify "^2.0.0" 3361 | pinkie-promise "^2.0.0" 3362 | 3363 | path-type@^2.0.0: 3364 | version "2.0.0" 3365 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 3366 | dependencies: 3367 | pify "^2.0.0" 3368 | 3369 | performance-now@^0.2.0: 3370 | version "0.2.0" 3371 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 3372 | 3373 | pify@^2.0.0: 3374 | version "2.3.0" 3375 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 3376 | 3377 | pinkie-promise@^1.0.0: 3378 | version "1.0.0" 3379 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-1.0.0.tgz#d1da67f5482563bb7cf57f286ae2822ecfbf3670" 3380 | dependencies: 3381 | pinkie "^1.0.0" 3382 | 3383 | pinkie-promise@^2.0.0: 3384 | version "2.0.1" 3385 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 3386 | dependencies: 3387 | pinkie "^2.0.0" 3388 | 3389 | pinkie@^1.0.0: 3390 | version "1.0.0" 3391 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-1.0.0.tgz#5a47f28ba1015d0201bda7bf0f358e47bec8c7e4" 3392 | 3393 | pinkie@^2.0.0: 3394 | version "2.0.4" 3395 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 3396 | 3397 | pkg-conf@^2.0.0: 3398 | version "2.0.0" 3399 | resolved "https://registry.yarnpkg.com/pkg-conf/-/pkg-conf-2.0.0.tgz#071c87650403bccfb9c627f58751bfe47c067279" 3400 | dependencies: 3401 | find-up "^2.0.0" 3402 | load-json-file "^2.0.0" 3403 | 3404 | pkg-config@^1.0.1, pkg-config@^1.1.0: 3405 | version "1.1.1" 3406 | resolved "https://registry.yarnpkg.com/pkg-config/-/pkg-config-1.1.1.tgz#557ef22d73da3c8837107766c52eadabde298fe4" 3407 | dependencies: 3408 | debug-log "^1.0.0" 3409 | find-root "^1.0.0" 3410 | xtend "^4.0.1" 3411 | 3412 | pkg-dir@^1.0.0: 3413 | version "1.0.0" 3414 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 3415 | dependencies: 3416 | find-up "^1.0.0" 3417 | 3418 | pkg-up@^1.0.0: 3419 | version "1.0.0" 3420 | resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-1.0.0.tgz#3e08fb461525c4421624a33b9f7e6d0af5b05a26" 3421 | dependencies: 3422 | find-up "^1.0.0" 3423 | 3424 | plur@^1.0.0: 3425 | version "1.0.0" 3426 | resolved "https://registry.yarnpkg.com/plur/-/plur-1.0.0.tgz#db85c6814f5e5e5a3b49efc28d604fec62975156" 3427 | 3428 | plur@^2.0.0: 3429 | version "2.1.2" 3430 | resolved "https://registry.yarnpkg.com/plur/-/plur-2.1.2.tgz#7482452c1a0f508e3e344eaec312c91c29dc655a" 3431 | dependencies: 3432 | irregular-plurals "^1.0.0" 3433 | 3434 | pluralize@^1.2.1: 3435 | version "1.2.1" 3436 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" 3437 | 3438 | prelude-ls@~1.1.2: 3439 | version "1.1.2" 3440 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 3441 | 3442 | prepend-http@^1.0.1: 3443 | version "1.0.4" 3444 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 3445 | 3446 | preserve@^0.2.0: 3447 | version "0.2.0" 3448 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 3449 | 3450 | pretty-format@^18.1.0: 3451 | version "18.1.0" 3452 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-18.1.0.tgz#fb65a86f7a7f9194963eee91865c1bcf1039e284" 3453 | dependencies: 3454 | ansi-styles "^2.2.1" 3455 | 3456 | pretty-ms@^0.2.1: 3457 | version "0.2.2" 3458 | resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-0.2.2.tgz#da879a682ff33a37011046f13d627f67c73b84f6" 3459 | dependencies: 3460 | parse-ms "^0.1.0" 3461 | 3462 | pretty-ms@^2.0.0, pretty-ms@^2.1.0: 3463 | version "2.1.0" 3464 | resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-2.1.0.tgz#4257c256df3fb0b451d6affaab021884126981dc" 3465 | dependencies: 3466 | is-finite "^1.0.1" 3467 | parse-ms "^1.0.0" 3468 | plur "^1.0.0" 3469 | 3470 | private@^0.1.6: 3471 | version "0.1.7" 3472 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 3473 | 3474 | process-nextick-args@~1.0.6: 3475 | version "1.0.7" 3476 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 3477 | 3478 | process-nextick-args@~2.0.0: 3479 | version "2.0.1" 3480 | resolved "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" 3481 | 3482 | progress@^1.1.8: 3483 | version "1.1.8" 3484 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 3485 | 3486 | proxy-addr@~2.0.5: 3487 | version "2.0.5" 3488 | resolved "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.5.tgz#34cbd64a2d81f4b1fd21e76f9f06c8a45299ee34" 3489 | dependencies: 3490 | forwarded "~0.1.2" 3491 | ipaddr.js "1.9.0" 3492 | 3493 | proxyquire@^1.7.10: 3494 | version "1.7.11" 3495 | resolved "https://registry.yarnpkg.com/proxyquire/-/proxyquire-1.7.11.tgz#13b494eb1e71fb21cc3ebe3699e637d3bec1af9e" 3496 | dependencies: 3497 | fill-keys "^1.0.2" 3498 | module-not-found-error "^1.0.0" 3499 | resolve "~1.1.7" 3500 | 3501 | pseudomap@^1.0.1: 3502 | version "1.0.2" 3503 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 3504 | 3505 | punycode@^1.4.1: 3506 | version "1.4.1" 3507 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 3508 | 3509 | qs@6.7.0: 3510 | version "6.7.0" 3511 | resolved "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz#41dc1a015e3d581f1621776be31afb2876a9b1bc" 3512 | 3513 | qs@^6.1.0, qs@~6.4.0: 3514 | version "6.4.0" 3515 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 3516 | 3517 | randomatic@^1.1.3: 3518 | version "1.1.6" 3519 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 3520 | dependencies: 3521 | is-number "^2.0.2" 3522 | kind-of "^3.0.2" 3523 | 3524 | range-parser@~1.2.1: 3525 | version "1.2.1" 3526 | resolved "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" 3527 | 3528 | raw-body@2.4.0: 3529 | version "2.4.0" 3530 | resolved "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz#a1ce6fb9c9bc356ca52e89256ab59059e13d0332" 3531 | dependencies: 3532 | bytes "3.1.0" 3533 | http-errors "1.7.2" 3534 | iconv-lite "0.4.24" 3535 | unpipe "1.0.0" 3536 | 3537 | rc@^1.0.1, rc@^1.1.6, rc@^1.1.7: 3538 | version "1.2.0" 3539 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.0.tgz#c7de973b7b46297c041366b2fd3d2363b1697c66" 3540 | dependencies: 3541 | deep-extend "~0.4.0" 3542 | ini "~1.3.0" 3543 | minimist "^1.2.0" 3544 | strip-json-comments "~2.0.1" 3545 | 3546 | re-emitter@^1.0.0: 3547 | version "1.1.3" 3548 | resolved "https://registry.yarnpkg.com/re-emitter/-/re-emitter-1.1.3.tgz#fa9e319ffdeeeb35b27296ef0f3d374dac2f52a7" 3549 | 3550 | read-all-stream@^3.0.0: 3551 | version "3.1.0" 3552 | resolved "https://registry.yarnpkg.com/read-all-stream/-/read-all-stream-3.1.0.tgz#35c3e177f2078ef789ee4bfafa4373074eaef4fa" 3553 | dependencies: 3554 | pinkie-promise "^2.0.0" 3555 | readable-stream "^2.0.0" 3556 | 3557 | read-pkg-up@^1.0.1: 3558 | version "1.0.1" 3559 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 3560 | dependencies: 3561 | find-up "^1.0.0" 3562 | read-pkg "^1.0.0" 3563 | 3564 | read-pkg-up@^2.0.0: 3565 | version "2.0.0" 3566 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 3567 | dependencies: 3568 | find-up "^2.0.0" 3569 | read-pkg "^2.0.0" 3570 | 3571 | read-pkg@^1.0.0: 3572 | version "1.1.0" 3573 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 3574 | dependencies: 3575 | load-json-file "^1.0.0" 3576 | normalize-package-data "^2.3.2" 3577 | path-type "^1.0.0" 3578 | 3579 | read-pkg@^2.0.0: 3580 | version "2.0.0" 3581 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 3582 | dependencies: 3583 | load-json-file "^2.0.0" 3584 | normalize-package-data "^2.3.2" 3585 | path-type "^2.0.0" 3586 | 3587 | readable-stream@^2.0.0, "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.1.4, readable-stream@^2.1.5, readable-stream@^2.2.2: 3588 | version "2.2.6" 3589 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.6.tgz#8b43aed76e71483938d12a8d46c6cf1a00b1f816" 3590 | dependencies: 3591 | buffer-shims "^1.0.0" 3592 | core-util-is "~1.0.0" 3593 | inherits "~2.0.1" 3594 | isarray "~1.0.0" 3595 | process-nextick-args "~1.0.6" 3596 | string_decoder "~0.10.x" 3597 | util-deprecate "~1.0.1" 3598 | 3599 | readable-stream@^2.3.6: 3600 | version "2.3.6" 3601 | resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 3602 | dependencies: 3603 | core-util-is "~1.0.0" 3604 | inherits "~2.0.3" 3605 | isarray "~1.0.0" 3606 | process-nextick-args "~2.0.0" 3607 | safe-buffer "~5.1.1" 3608 | string_decoder "~1.1.1" 3609 | util-deprecate "~1.0.1" 3610 | 3611 | readable-stream@^3.1.1: 3612 | version "3.4.0" 3613 | resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-3.4.0.tgz#a51c26754658e0a3c21dbf59163bd45ba6f447fc" 3614 | dependencies: 3615 | inherits "^2.0.3" 3616 | string_decoder "^1.1.1" 3617 | util-deprecate "^1.0.1" 3618 | 3619 | readable-stream@~1.1.11, readable-stream@~1.1.9: 3620 | version "1.1.14" 3621 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" 3622 | dependencies: 3623 | core-util-is "~1.0.0" 3624 | inherits "~2.0.1" 3625 | isarray "0.0.1" 3626 | string_decoder "~0.10.x" 3627 | 3628 | readdirp@^2.0.0: 3629 | version "2.1.0" 3630 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 3631 | dependencies: 3632 | graceful-fs "^4.1.2" 3633 | minimatch "^3.0.2" 3634 | readable-stream "^2.0.2" 3635 | set-immediate-shim "^1.0.1" 3636 | 3637 | readline2@^1.0.1: 3638 | version "1.0.1" 3639 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 3640 | dependencies: 3641 | code-point-at "^1.0.0" 3642 | is-fullwidth-code-point "^1.0.0" 3643 | mute-stream "0.0.5" 3644 | 3645 | redent@^1.0.0: 3646 | version "1.0.0" 3647 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 3648 | dependencies: 3649 | indent-string "^2.1.0" 3650 | strip-indent "^1.0.1" 3651 | 3652 | regenerate@^1.2.1: 3653 | version "1.3.2" 3654 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 3655 | 3656 | regenerator-runtime@^0.10.0: 3657 | version "0.10.3" 3658 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.3.tgz#8c4367a904b51ea62a908ac310bf99ff90a82a3e" 3659 | 3660 | regenerator-transform@0.9.8: 3661 | version "0.9.8" 3662 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.8.tgz#0f88bb2bc03932ddb7b6b7312e68078f01026d6c" 3663 | dependencies: 3664 | babel-runtime "^6.18.0" 3665 | babel-types "^6.19.0" 3666 | private "^0.1.6" 3667 | 3668 | regex-cache@^0.4.2: 3669 | version "0.4.3" 3670 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 3671 | dependencies: 3672 | is-equal-shallow "^0.1.3" 3673 | is-primitive "^2.0.0" 3674 | 3675 | regexpu-core@^2.0.0: 3676 | version "2.0.0" 3677 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 3678 | dependencies: 3679 | regenerate "^1.2.1" 3680 | regjsgen "^0.2.0" 3681 | regjsparser "^0.1.4" 3682 | 3683 | registry-auth-token@^3.0.1: 3684 | version "3.1.0" 3685 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.1.0.tgz#997c08256e0c7999837b90e944db39d8a790276b" 3686 | dependencies: 3687 | rc "^1.1.6" 3688 | 3689 | registry-url@^3.0.3: 3690 | version "3.1.0" 3691 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 3692 | dependencies: 3693 | rc "^1.0.1" 3694 | 3695 | regjsgen@^0.2.0: 3696 | version "0.2.0" 3697 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 3698 | 3699 | regjsparser@^0.1.4: 3700 | version "0.1.5" 3701 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 3702 | dependencies: 3703 | jsesc "~0.5.0" 3704 | 3705 | remove-trailing-separator@^1.0.1: 3706 | version "1.0.1" 3707 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4" 3708 | 3709 | repeat-element@^1.1.2: 3710 | version "1.1.2" 3711 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 3712 | 3713 | repeat-string@^1.5.2: 3714 | version "1.6.1" 3715 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3716 | 3717 | repeating@^2.0.0: 3718 | version "2.0.1" 3719 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 3720 | dependencies: 3721 | is-finite "^1.0.0" 3722 | 3723 | request@^2.81.0: 3724 | version "2.81.0" 3725 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 3726 | dependencies: 3727 | aws-sign2 "~0.6.0" 3728 | aws4 "^1.2.1" 3729 | caseless "~0.12.0" 3730 | combined-stream "~1.0.5" 3731 | extend "~3.0.0" 3732 | forever-agent "~0.6.1" 3733 | form-data "~2.1.1" 3734 | har-validator "~4.2.1" 3735 | hawk "~3.1.3" 3736 | http-signature "~1.1.0" 3737 | is-typedarray "~1.0.0" 3738 | isstream "~0.1.2" 3739 | json-stringify-safe "~5.0.1" 3740 | mime-types "~2.1.7" 3741 | oauth-sign "~0.8.1" 3742 | performance-now "^0.2.0" 3743 | qs "~6.4.0" 3744 | safe-buffer "^5.0.1" 3745 | stringstream "~0.0.4" 3746 | tough-cookie "~2.3.0" 3747 | tunnel-agent "^0.6.0" 3748 | uuid "^3.0.0" 3749 | 3750 | require-directory@^2.1.1: 3751 | version "2.1.1" 3752 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3753 | 3754 | require-main-filename@^1.0.1: 3755 | version "1.0.1" 3756 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3757 | 3758 | require-precompiled@^0.1.0: 3759 | version "0.1.0" 3760 | resolved "https://registry.yarnpkg.com/require-precompiled/-/require-precompiled-0.1.0.tgz#5a1b52eb70ebed43eb982e974c85ab59571e56fa" 3761 | 3762 | require-uncached@^1.0.2: 3763 | version "1.0.3" 3764 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 3765 | dependencies: 3766 | caller-path "^0.1.0" 3767 | resolve-from "^1.0.0" 3768 | 3769 | requizzle@~0.2.1: 3770 | version "0.2.1" 3771 | resolved "https://registry.yarnpkg.com/requizzle/-/requizzle-0.2.1.tgz#6943c3530c4d9a7e46f1cddd51c158fc670cdbde" 3772 | dependencies: 3773 | underscore "~1.6.0" 3774 | 3775 | resolve-cwd@^1.0.0: 3776 | version "1.0.0" 3777 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-1.0.0.tgz#4eaeea41ed040d1702457df64a42b2b07d246f9f" 3778 | dependencies: 3779 | resolve-from "^2.0.0" 3780 | 3781 | resolve-from@^1.0.0: 3782 | version "1.0.1" 3783 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 3784 | 3785 | resolve-from@^2.0.0: 3786 | version "2.0.0" 3787 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57" 3788 | 3789 | resolve@~1.1.7: 3790 | version "1.1.7" 3791 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 3792 | 3793 | restore-cursor@^1.0.1: 3794 | version "1.0.1" 3795 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 3796 | dependencies: 3797 | exit-hook "^1.0.0" 3798 | onetime "^1.0.0" 3799 | 3800 | restore-cursor@^2.0.0: 3801 | version "2.0.0" 3802 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 3803 | dependencies: 3804 | onetime "^2.0.0" 3805 | signal-exit "^3.0.2" 3806 | 3807 | resumer@~0.0.0: 3808 | version "0.0.0" 3809 | resolved "https://registry.yarnpkg.com/resumer/-/resumer-0.0.0.tgz#f1e8f461e4064ba39e82af3cdc2a8c893d076759" 3810 | dependencies: 3811 | through "~2.3.4" 3812 | 3813 | right-align@^0.1.1: 3814 | version "0.1.3" 3815 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3816 | dependencies: 3817 | align-text "^0.1.1" 3818 | 3819 | rimraf@2, rimraf@^2.2.8, rimraf@^2.3.3, rimraf@^2.4.4, rimraf@^2.5.1, rimraf@^2.5.4, rimraf@^2.6.1: 3820 | version "2.6.1" 3821 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 3822 | dependencies: 3823 | glob "^7.0.5" 3824 | 3825 | run-async@^0.1.0: 3826 | version "0.1.0" 3827 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 3828 | dependencies: 3829 | once "^1.3.0" 3830 | 3831 | run-parallel@^1.1.2: 3832 | version "1.1.6" 3833 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.1.6.tgz#29003c9a2163e01e2d2dfc90575f2c6c1d61a039" 3834 | 3835 | rx-lite@^3.1.2: 3836 | version "3.1.2" 3837 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 3838 | 3839 | safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 3840 | version "5.1.2" 3841 | resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 3842 | 3843 | safe-buffer@^5.0.1: 3844 | version "5.0.1" 3845 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 3846 | 3847 | safe-buffer@~5.2.0: 3848 | version "5.2.0" 3849 | resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.0.tgz#b74daec49b1148f88c64b68d49b1e815c1f2f519" 3850 | 3851 | "safer-buffer@>= 2.1.2 < 3": 3852 | version "2.1.2" 3853 | resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 3854 | 3855 | samsam@1.x, samsam@^1.1.3: 3856 | version "1.2.1" 3857 | resolved "https://registry.yarnpkg.com/samsam/-/samsam-1.2.1.tgz#edd39093a3184370cb859243b2bdf255e7d8ea67" 3858 | 3859 | semver-diff@^2.0.0: 3860 | version "2.1.0" 3861 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 3862 | dependencies: 3863 | semver "^5.0.3" 3864 | 3865 | "semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.3.0: 3866 | version "5.3.0" 3867 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 3868 | 3869 | send@0.17.1: 3870 | version "0.17.1" 3871 | resolved "https://registry.npmjs.org/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8" 3872 | dependencies: 3873 | debug "2.6.9" 3874 | depd "~1.1.2" 3875 | destroy "~1.0.4" 3876 | encodeurl "~1.0.2" 3877 | escape-html "~1.0.3" 3878 | etag "~1.8.1" 3879 | fresh "0.5.2" 3880 | http-errors "~1.7.2" 3881 | mime "1.6.0" 3882 | ms "2.1.1" 3883 | on-finished "~2.3.0" 3884 | range-parser "~1.2.1" 3885 | statuses "~1.5.0" 3886 | 3887 | serve-static@1.14.1: 3888 | version "1.14.1" 3889 | resolved "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz#666e636dc4f010f7ef29970a88a674320898b2f9" 3890 | dependencies: 3891 | encodeurl "~1.0.2" 3892 | escape-html "~1.0.3" 3893 | parseurl "~1.3.3" 3894 | send "0.17.1" 3895 | 3896 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3897 | version "2.0.0" 3898 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3899 | 3900 | set-immediate-shim@^1.0.1: 3901 | version "1.0.1" 3902 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3903 | 3904 | setprototypeof@1.1.1: 3905 | version "1.1.1" 3906 | resolved "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683" 3907 | 3908 | shelljs@^0.6.0: 3909 | version "0.6.1" 3910 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.6.1.tgz#ec6211bed1920442088fe0f70b2837232ed2c8a8" 3911 | 3912 | signal-exit@^2.0.0: 3913 | version "2.1.2" 3914 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-2.1.2.tgz#375879b1f92ebc3b334480d038dc546a6d558564" 3915 | 3916 | signal-exit@^3.0.0, signal-exit@^3.0.2: 3917 | version "3.0.2" 3918 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3919 | 3920 | simple-swizzle@^0.2.2: 3921 | version "0.2.2" 3922 | resolved "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a" 3923 | dependencies: 3924 | is-arrayish "^0.3.1" 3925 | 3926 | sinon@^2.0.0-pre.4: 3927 | version "2.1.0" 3928 | resolved "https://registry.yarnpkg.com/sinon/-/sinon-2.1.0.tgz#e057a9d2bf1b32f5d6dd62628ca9ee3961b0cafb" 3929 | dependencies: 3930 | diff "^3.1.0" 3931 | formatio "1.2.0" 3932 | lolex "^1.6.0" 3933 | native-promise-only "^0.8.1" 3934 | path-to-regexp "^1.7.0" 3935 | samsam "^1.1.3" 3936 | text-encoding "0.6.4" 3937 | type-detect "^4.0.0" 3938 | 3939 | slash@^1.0.0: 3940 | version "1.0.0" 3941 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3942 | 3943 | slice-ansi@0.0.4: 3944 | version "0.0.4" 3945 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 3946 | 3947 | slide@^1.1.5: 3948 | version "1.1.6" 3949 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 3950 | 3951 | sntp@1.x.x: 3952 | version "1.0.9" 3953 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3954 | dependencies: 3955 | hoek "2.x.x" 3956 | 3957 | sort-keys@^1.1.1, sort-keys@^1.1.2: 3958 | version "1.1.2" 3959 | resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" 3960 | dependencies: 3961 | is-plain-obj "^1.0.0" 3962 | 3963 | source-map-support@^0.4.0, source-map-support@^0.4.2: 3964 | version "0.4.14" 3965 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.14.tgz#9d4463772598b86271b4f523f6c1f4e02a7d6aef" 3966 | dependencies: 3967 | source-map "^0.5.6" 3968 | 3969 | source-map@^0.4.4: 3970 | version "0.4.4" 3971 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 3972 | dependencies: 3973 | amdefine ">=0.0.4" 3974 | 3975 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: 3976 | version "0.5.6" 3977 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 3978 | 3979 | spawn-wrap@^1.2.4: 3980 | version "1.3.4" 3981 | resolved "https://registry.yarnpkg.com/spawn-wrap/-/spawn-wrap-1.3.4.tgz#5d133070fef81cd26d8259acaa07fc1a86fd45dc" 3982 | dependencies: 3983 | foreground-child "^1.5.6" 3984 | mkdirp "^0.5.0" 3985 | os-homedir "^1.0.1" 3986 | rimraf "^2.3.3" 3987 | signal-exit "^2.0.0" 3988 | which "^1.2.4" 3989 | 3990 | spdx-correct@~1.0.0: 3991 | version "1.0.2" 3992 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3993 | dependencies: 3994 | spdx-license-ids "^1.0.2" 3995 | 3996 | spdx-expression-parse@~1.0.0: 3997 | version "1.0.4" 3998 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3999 | 4000 | spdx-license-ids@^1.0.2: 4001 | version "1.2.2" 4002 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 4003 | 4004 | split@^1.0.0: 4005 | version "1.0.0" 4006 | resolved "https://registry.yarnpkg.com/split/-/split-1.0.0.tgz#c4395ce683abcd254bc28fe1dabb6e5c27dcffae" 4007 | dependencies: 4008 | through "2" 4009 | 4010 | sprintf-js@~1.0.2: 4011 | version "1.0.3" 4012 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 4013 | 4014 | sshpk@^1.7.0: 4015 | version "1.11.0" 4016 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.11.0.tgz#2d8d5ebb4a6fab28ffba37fa62a90f4a3ea59d77" 4017 | dependencies: 4018 | asn1 "~0.2.3" 4019 | assert-plus "^1.0.0" 4020 | dashdash "^1.12.0" 4021 | getpass "^0.1.1" 4022 | optionalDependencies: 4023 | bcrypt-pbkdf "^1.0.0" 4024 | ecc-jsbn "~0.1.1" 4025 | jodid25519 "^1.0.0" 4026 | jsbn "~0.1.0" 4027 | tweetnacl "~0.14.0" 4028 | 4029 | stack-trace@0.0.x: 4030 | version "0.0.10" 4031 | resolved "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz#547c70b347e8d32b4e108ea1a2a159e5fdde19c0" 4032 | 4033 | stack-utils@^1.0.0: 4034 | version "1.0.0" 4035 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.0.tgz#2392cd8ddbd222492ed6c047960f7414b46c0f83" 4036 | 4037 | standard-engine@^4.0.0: 4038 | version "4.1.3" 4039 | resolved "https://registry.yarnpkg.com/standard-engine/-/standard-engine-4.1.3.tgz#7a31aad54f03d9f39355f43389ce0694f4094155" 4040 | dependencies: 4041 | defaults "^1.0.2" 4042 | deglob "^1.0.0" 4043 | find-root "^1.0.0" 4044 | get-stdin "^5.0.1" 4045 | minimist "^1.1.0" 4046 | multiline "^1.0.2" 4047 | pkg-config "^1.0.1" 4048 | xtend "^4.0.0" 4049 | 4050 | standard@^7.1.0: 4051 | version "7.1.2" 4052 | resolved "https://registry.yarnpkg.com/standard/-/standard-7.1.2.tgz#40166eeec2405065d1a4f0e3f15babc6e274607e" 4053 | dependencies: 4054 | eslint "~2.10.2" 4055 | eslint-config-standard "5.3.1" 4056 | eslint-config-standard-jsx "1.2.1" 4057 | eslint-plugin-promise "^1.0.8" 4058 | eslint-plugin-react "^5.0.1" 4059 | eslint-plugin-standard "^1.3.1" 4060 | standard-engine "^4.0.0" 4061 | 4062 | "statuses@>= 1.5.0 < 2", statuses@~1.5.0: 4063 | version "1.5.0" 4064 | resolved "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" 4065 | 4066 | stream-transform@^2.0.1: 4067 | version "2.0.1" 4068 | resolved "https://registry.yarnpkg.com/stream-transform/-/stream-transform-2.0.1.tgz#112ef2b4d8b9b517f9a6994b0bf7b946fa4d51bc" 4069 | dependencies: 4070 | mixme "^0.3.1" 4071 | 4072 | string-width@^1.0.1: 4073 | version "1.0.2" 4074 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 4075 | dependencies: 4076 | code-point-at "^1.0.0" 4077 | is-fullwidth-code-point "^1.0.0" 4078 | strip-ansi "^3.0.0" 4079 | 4080 | string-width@^2.0.0: 4081 | version "2.0.0" 4082 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 4083 | dependencies: 4084 | is-fullwidth-code-point "^2.0.0" 4085 | strip-ansi "^3.0.0" 4086 | 4087 | string.prototype.trim@~1.1.2: 4088 | version "1.1.2" 4089 | resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.1.2.tgz#d04de2c89e137f4d7d206f086b5ed2fae6be8cea" 4090 | dependencies: 4091 | define-properties "^1.1.2" 4092 | es-abstract "^1.5.0" 4093 | function-bind "^1.0.2" 4094 | 4095 | string_decoder@^1.1.1: 4096 | version "1.3.0" 4097 | resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" 4098 | dependencies: 4099 | safe-buffer "~5.2.0" 4100 | 4101 | string_decoder@~0.10.x: 4102 | version "0.10.31" 4103 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 4104 | 4105 | string_decoder@~1.1.1: 4106 | version "1.1.1" 4107 | resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 4108 | dependencies: 4109 | safe-buffer "~5.1.0" 4110 | 4111 | stringstream@~0.0.4: 4112 | version "0.0.5" 4113 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 4114 | 4115 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 4116 | version "3.0.1" 4117 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 4118 | dependencies: 4119 | ansi-regex "^2.0.0" 4120 | 4121 | strip-ansi@~0.1.0: 4122 | version "0.1.1" 4123 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-0.1.1.tgz#39e8a98d044d150660abe4a6808acf70bb7bc991" 4124 | 4125 | strip-bom-buf@^1.0.0: 4126 | version "1.0.0" 4127 | resolved "https://registry.yarnpkg.com/strip-bom-buf/-/strip-bom-buf-1.0.0.tgz#1cb45aaf57530f4caf86c7f75179d2c9a51dd572" 4128 | dependencies: 4129 | is-utf8 "^0.2.1" 4130 | 4131 | strip-bom@^2.0.0: 4132 | version "2.0.0" 4133 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 4134 | dependencies: 4135 | is-utf8 "^0.2.0" 4136 | 4137 | strip-bom@^3.0.0: 4138 | version "3.0.0" 4139 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 4140 | 4141 | strip-eof@^1.0.0: 4142 | version "1.0.0" 4143 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 4144 | 4145 | strip-indent@^1.0.0, strip-indent@^1.0.1: 4146 | version "1.0.1" 4147 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 4148 | dependencies: 4149 | get-stdin "^4.0.1" 4150 | 4151 | strip-json-comments@~1.0.1: 4152 | version "1.0.4" 4153 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91" 4154 | 4155 | strip-json-comments@~2.0.1: 4156 | version "2.0.1" 4157 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 4158 | 4159 | superagent@^2.0.0: 4160 | version "2.3.0" 4161 | resolved "https://registry.yarnpkg.com/superagent/-/superagent-2.3.0.tgz#703529a0714e57e123959ddefbce193b2e50d115" 4162 | dependencies: 4163 | component-emitter "^1.2.0" 4164 | cookiejar "^2.0.6" 4165 | debug "^2.2.0" 4166 | extend "^3.0.0" 4167 | form-data "1.0.0-rc4" 4168 | formidable "^1.0.17" 4169 | methods "^1.1.1" 4170 | mime "^1.3.4" 4171 | qs "^6.1.0" 4172 | readable-stream "^2.0.5" 4173 | 4174 | supertest-as-promised@^4.0.2: 4175 | version "4.0.2" 4176 | resolved "https://registry.yarnpkg.com/supertest-as-promised/-/supertest-as-promised-4.0.2.tgz#0464f2bd256568d4a59bce84269c0548f6879f1a" 4177 | dependencies: 4178 | bluebird "^3.3.1" 4179 | methods "^1.1.1" 4180 | 4181 | supertest@^2.0.1: 4182 | version "2.0.1" 4183 | resolved "https://registry.yarnpkg.com/supertest/-/supertest-2.0.1.tgz#a058081d788f1515d4700d7502881e6b759e44cd" 4184 | dependencies: 4185 | methods "1.x" 4186 | superagent "^2.0.0" 4187 | 4188 | supports-color@^2.0.0: 4189 | version "2.0.0" 4190 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 4191 | 4192 | supports-color@^3.1.2: 4193 | version "3.2.3" 4194 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 4195 | dependencies: 4196 | has-flag "^1.0.0" 4197 | 4198 | symbol-observable@^0.2.2: 4199 | version "0.2.4" 4200 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-0.2.4.tgz#95a83db26186d6af7e7a18dbd9760a2f86d08f40" 4201 | 4202 | table@^3.7.8: 4203 | version "3.8.3" 4204 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" 4205 | dependencies: 4206 | ajv "^4.7.0" 4207 | ajv-keywords "^1.0.0" 4208 | chalk "^1.1.1" 4209 | lodash "^4.0.0" 4210 | slice-ansi "0.0.4" 4211 | string-width "^2.0.0" 4212 | 4213 | taffydb@2.6.2: 4214 | version "2.6.2" 4215 | resolved "https://registry.yarnpkg.com/taffydb/-/taffydb-2.6.2.tgz#7cbcb64b5a141b6a2efc2c5d2c67b4e150b2a268" 4216 | 4217 | tap-nyan@0.0.2: 4218 | version "0.0.2" 4219 | resolved "https://registry.yarnpkg.com/tap-nyan/-/tap-nyan-0.0.2.tgz#fc3c29e232dbc362c8dd1d3ddce2d58c988a50ba" 4220 | dependencies: 4221 | chalk "~0.4.0" 4222 | duplexer "~0.1.1" 4223 | tap-parser "~0.4.1" 4224 | through2 "~0.2.3" 4225 | 4226 | tap-out@^1.4.1: 4227 | version "1.4.2" 4228 | resolved "https://registry.yarnpkg.com/tap-out/-/tap-out-1.4.2.tgz#c907ec1bf9405111d088263e92f5608b88cbb37a" 4229 | dependencies: 4230 | re-emitter "^1.0.0" 4231 | readable-stream "^2.0.0" 4232 | split "^1.0.0" 4233 | trim "0.0.1" 4234 | 4235 | tap-parser@~0.4.1: 4236 | version "0.4.3" 4237 | resolved "https://registry.yarnpkg.com/tap-parser/-/tap-parser-0.4.3.tgz#a4eae190c10d76c7a111921ff38bbe4d58f09eea" 4238 | dependencies: 4239 | inherits "~2.0.1" 4240 | readable-stream "~1.1.11" 4241 | 4242 | tap-spec@^4.1.1: 4243 | version "4.1.1" 4244 | resolved "https://registry.yarnpkg.com/tap-spec/-/tap-spec-4.1.1.tgz#e2e9f26f5208232b1f562288c97624d58a88f05a" 4245 | dependencies: 4246 | chalk "^1.0.0" 4247 | duplexer "^0.1.1" 4248 | figures "^1.4.0" 4249 | lodash "^3.6.0" 4250 | pretty-ms "^2.1.0" 4251 | repeat-string "^1.5.2" 4252 | tap-out "^1.4.1" 4253 | through2 "^2.0.0" 4254 | 4255 | tape@^4.6.0: 4256 | version "4.6.3" 4257 | resolved "https://registry.yarnpkg.com/tape/-/tape-4.6.3.tgz#637e77581e9ab2ce17577e9bd4ce4f575806d8b6" 4258 | dependencies: 4259 | deep-equal "~1.0.1" 4260 | defined "~1.0.0" 4261 | for-each "~0.3.2" 4262 | function-bind "~1.1.0" 4263 | glob "~7.1.1" 4264 | has "~1.0.1" 4265 | inherits "~2.0.3" 4266 | minimist "~1.2.0" 4267 | object-inspect "~1.2.1" 4268 | resolve "~1.1.7" 4269 | resumer "~0.0.0" 4270 | string.prototype.trim "~1.1.2" 4271 | through "~2.3.8" 4272 | 4273 | tar-pack@^3.4.0: 4274 | version "3.4.0" 4275 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 4276 | dependencies: 4277 | debug "^2.2.0" 4278 | fstream "^1.0.10" 4279 | fstream-ignore "^1.0.5" 4280 | once "^1.3.3" 4281 | readable-stream "^2.1.4" 4282 | rimraf "^2.5.1" 4283 | tar "^2.2.1" 4284 | uid-number "^0.0.6" 4285 | 4286 | tar@^2.2.1: 4287 | version "2.2.1" 4288 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 4289 | dependencies: 4290 | block-stream "*" 4291 | fstream "^1.0.2" 4292 | inherits "2" 4293 | 4294 | test-exclude@^1.1.0: 4295 | version "1.1.0" 4296 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-1.1.0.tgz#f5ddd718927b12fd02f270a0aa939ceb6eea4151" 4297 | dependencies: 4298 | arrify "^1.0.1" 4299 | lodash.assign "^4.0.9" 4300 | micromatch "^2.3.8" 4301 | read-pkg-up "^1.0.1" 4302 | require-main-filename "^1.0.1" 4303 | 4304 | text-encoding@0.6.4: 4305 | version "0.6.4" 4306 | resolved "https://registry.yarnpkg.com/text-encoding/-/text-encoding-0.6.4.tgz#e399a982257a276dae428bb92845cb71bdc26d19" 4307 | 4308 | text-hex@1.0.x: 4309 | version "1.0.0" 4310 | resolved "https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz#69dc9c1b17446ee79a92bf5b884bb4b9127506f5" 4311 | 4312 | text-table@^0.2.0, text-table@~0.2.0: 4313 | version "0.2.0" 4314 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 4315 | 4316 | through2@^2.0.0: 4317 | version "2.0.3" 4318 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 4319 | dependencies: 4320 | readable-stream "^2.1.5" 4321 | xtend "~4.0.1" 4322 | 4323 | through2@~0.2.3: 4324 | version "0.2.3" 4325 | resolved "https://registry.yarnpkg.com/through2/-/through2-0.2.3.tgz#eb3284da4ea311b6cc8ace3653748a52abf25a3f" 4326 | dependencies: 4327 | readable-stream "~1.1.9" 4328 | xtend "~2.1.1" 4329 | 4330 | through@2, through@^2.3.6, through@~2.3.4, through@~2.3.8: 4331 | version "2.3.8" 4332 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 4333 | 4334 | time-require@^0.1.2: 4335 | version "0.1.2" 4336 | resolved "https://registry.yarnpkg.com/time-require/-/time-require-0.1.2.tgz#f9e12cb370fc2605e11404582ba54ef5ca2b2d98" 4337 | dependencies: 4338 | chalk "^0.4.0" 4339 | date-time "^0.1.1" 4340 | pretty-ms "^0.2.1" 4341 | text-table "^0.2.0" 4342 | 4343 | timed-out@^3.0.0: 4344 | version "3.1.3" 4345 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-3.1.3.tgz#95860bfcc5c76c277f8f8326fd0f5b2e20eba217" 4346 | 4347 | to-fast-properties@^1.0.1: 4348 | version "1.0.2" 4349 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 4350 | 4351 | toidentifier@1.0.0: 4352 | version "1.0.0" 4353 | resolved "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553" 4354 | 4355 | tough-cookie@~2.3.0: 4356 | version "2.3.2" 4357 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 4358 | dependencies: 4359 | punycode "^1.4.1" 4360 | 4361 | trim-newlines@^1.0.0: 4362 | version "1.0.0" 4363 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 4364 | 4365 | trim-right@^1.0.1: 4366 | version "1.0.1" 4367 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 4368 | 4369 | trim@0.0.1: 4370 | version "0.0.1" 4371 | resolved "https://registry.yarnpkg.com/trim/-/trim-0.0.1.tgz#5858547f6b290757ee95cccc666fb50084c460dd" 4372 | 4373 | triple-beam@^1.2.0, triple-beam@^1.3.0: 4374 | version "1.3.0" 4375 | resolved "https://registry.npmjs.org/triple-beam/-/triple-beam-1.3.0.tgz#a595214c7298db8339eeeee083e4d10bd8cb8dd9" 4376 | 4377 | tryit@^1.0.1: 4378 | version "1.0.3" 4379 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 4380 | 4381 | tunnel-agent@^0.6.0: 4382 | version "0.6.0" 4383 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 4384 | dependencies: 4385 | safe-buffer "^5.0.1" 4386 | 4387 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 4388 | version "0.14.5" 4389 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 4390 | 4391 | type-check@~0.3.2: 4392 | version "0.3.2" 4393 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 4394 | dependencies: 4395 | prelude-ls "~1.1.2" 4396 | 4397 | type-detect@^4.0.0: 4398 | version "4.0.0" 4399 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.0.tgz#62053883542a321f2f7b25746dc696478b18ff6b" 4400 | 4401 | type-is@~1.6.17, type-is@~1.6.18: 4402 | version "1.6.18" 4403 | resolved "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" 4404 | dependencies: 4405 | media-typer "0.3.0" 4406 | mime-types "~2.1.24" 4407 | 4408 | typedarray@^0.0.6: 4409 | version "0.0.6" 4410 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 4411 | 4412 | uglify-js@^2.6: 4413 | version "2.8.21" 4414 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.21.tgz#1733f669ae6f82fc90c7b25ec0f5c783ee375314" 4415 | dependencies: 4416 | source-map "~0.5.1" 4417 | yargs "~3.10.0" 4418 | optionalDependencies: 4419 | uglify-to-browserify "~1.0.0" 4420 | 4421 | uglify-to-browserify@~1.0.0: 4422 | version "1.0.2" 4423 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 4424 | 4425 | uid-number@^0.0.6: 4426 | version "0.0.6" 4427 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 4428 | 4429 | uid2@0.0.3: 4430 | version "0.0.3" 4431 | resolved "https://registry.yarnpkg.com/uid2/-/uid2-0.0.3.tgz#483126e11774df2f71b8b639dcd799c376162b82" 4432 | 4433 | underscore-contrib@~0.3.0: 4434 | version "0.3.0" 4435 | resolved "https://registry.yarnpkg.com/underscore-contrib/-/underscore-contrib-0.3.0.tgz#665b66c24783f8fa2b18c9f8cbb0e2c7d48c26c7" 4436 | dependencies: 4437 | underscore "1.6.0" 4438 | 4439 | underscore@1.6.0, underscore@~1.6.0: 4440 | version "1.6.0" 4441 | resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.6.0.tgz#8b38b10cacdef63337b8b24e4ff86d45aea529a8" 4442 | 4443 | underscore@~1.8.3: 4444 | version "1.8.3" 4445 | resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.8.3.tgz#4f3fb53b106e6097fcf9cb4109f2a5e9bdfa5022" 4446 | 4447 | uniq@^1.0.1: 4448 | version "1.0.1" 4449 | resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" 4450 | 4451 | unique-temp-dir@^1.0.0: 4452 | version "1.0.0" 4453 | resolved "https://registry.yarnpkg.com/unique-temp-dir/-/unique-temp-dir-1.0.0.tgz#6dce95b2681ca003eebfb304a415f9cbabcc5385" 4454 | dependencies: 4455 | mkdirp "^0.5.1" 4456 | os-tmpdir "^1.0.1" 4457 | uid2 "0.0.3" 4458 | 4459 | unpipe@1.0.0, unpipe@~1.0.0: 4460 | version "1.0.0" 4461 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 4462 | 4463 | unzip-response@^1.0.2: 4464 | version "1.0.2" 4465 | resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-1.0.2.tgz#b984f0877fc0a89c2c773cc1ef7b5b232b5b06fe" 4466 | 4467 | update-notifier@^1.0.0: 4468 | version "1.0.3" 4469 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-1.0.3.tgz#8f92c515482bd6831b7c93013e70f87552c7cf5a" 4470 | dependencies: 4471 | boxen "^0.6.0" 4472 | chalk "^1.0.0" 4473 | configstore "^2.0.0" 4474 | is-npm "^1.0.0" 4475 | latest-version "^2.0.0" 4476 | lazy-req "^1.1.0" 4477 | semver-diff "^2.0.0" 4478 | xdg-basedir "^2.0.0" 4479 | 4480 | url-parse-lax@^1.0.0: 4481 | version "1.0.0" 4482 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" 4483 | dependencies: 4484 | prepend-http "^1.0.1" 4485 | 4486 | user-home@^2.0.0: 4487 | version "2.0.0" 4488 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 4489 | dependencies: 4490 | os-homedir "^1.0.0" 4491 | 4492 | util-deprecate@^1.0.1, util-deprecate@~1.0.1: 4493 | version "1.0.2" 4494 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 4495 | 4496 | utils-merge@1.0.1: 4497 | version "1.0.1" 4498 | resolved "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" 4499 | 4500 | uuid@^2.0.1: 4501 | version "2.0.3" 4502 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" 4503 | 4504 | uuid@^3.0.0, uuid@^3.0.1: 4505 | version "3.0.1" 4506 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 4507 | 4508 | validate-npm-package-license@^3.0.1: 4509 | version "3.0.1" 4510 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 4511 | dependencies: 4512 | spdx-correct "~1.0.0" 4513 | spdx-expression-parse "~1.0.0" 4514 | 4515 | vary@~1.1.2: 4516 | version "1.1.2" 4517 | resolved "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" 4518 | 4519 | verror@1.3.6: 4520 | version "1.3.6" 4521 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 4522 | dependencies: 4523 | extsprintf "1.0.2" 4524 | 4525 | wcwidth@^1.0.1: 4526 | version "1.0.1" 4527 | resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" 4528 | dependencies: 4529 | defaults "^1.0.3" 4530 | 4531 | which-module@^1.0.0: 4532 | version "1.0.0" 4533 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 4534 | 4535 | which@^1.2.4, which@^1.2.9: 4536 | version "1.2.14" 4537 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 4538 | dependencies: 4539 | isexe "^2.0.0" 4540 | 4541 | wide-align@^1.1.0: 4542 | version "1.1.0" 4543 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 4544 | dependencies: 4545 | string-width "^1.0.1" 4546 | 4547 | widest-line@^1.0.0: 4548 | version "1.0.0" 4549 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-1.0.0.tgz#0c09c85c2a94683d0d7eaf8ee097d564bf0e105c" 4550 | dependencies: 4551 | string-width "^1.0.1" 4552 | 4553 | window-size@0.1.0: 4554 | version "0.1.0" 4555 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 4556 | 4557 | window-size@^0.2.0: 4558 | version "0.2.0" 4559 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.2.0.tgz#b4315bb4214a3d7058ebeee892e13fa24d98b075" 4560 | 4561 | winston-transport@^4.3.0: 4562 | version "4.3.0" 4563 | resolved "https://registry.npmjs.org/winston-transport/-/winston-transport-4.3.0.tgz#df68c0c202482c448d9b47313c07304c2d7c2c66" 4564 | dependencies: 4565 | readable-stream "^2.3.6" 4566 | triple-beam "^1.2.0" 4567 | 4568 | winston@^3.2.1: 4569 | version "3.2.1" 4570 | resolved "https://registry.npmjs.org/winston/-/winston-3.2.1.tgz#63061377976c73584028be2490a1846055f77f07" 4571 | dependencies: 4572 | async "^2.6.1" 4573 | diagnostics "^1.1.1" 4574 | is-stream "^1.1.0" 4575 | logform "^2.1.1" 4576 | one-time "0.0.4" 4577 | readable-stream "^3.1.1" 4578 | stack-trace "0.0.x" 4579 | triple-beam "^1.3.0" 4580 | winston-transport "^4.3.0" 4581 | 4582 | wordwrap@0.0.2: 4583 | version "0.0.2" 4584 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 4585 | 4586 | wordwrap@~0.0.2: 4587 | version "0.0.3" 4588 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 4589 | 4590 | wordwrap@~1.0.0: 4591 | version "1.0.0" 4592 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 4593 | 4594 | wrap-ansi@^2.0.0: 4595 | version "2.1.0" 4596 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 4597 | dependencies: 4598 | string-width "^1.0.1" 4599 | strip-ansi "^3.0.1" 4600 | 4601 | wrappy@1: 4602 | version "1.0.2" 4603 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 4604 | 4605 | write-file-atomic@^1.1.2, write-file-atomic@^1.1.4: 4606 | version "1.3.1" 4607 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.1.tgz#7d45ba32316328dd1ec7d90f60ebc0d845bb759a" 4608 | dependencies: 4609 | graceful-fs "^4.1.11" 4610 | imurmurhash "^0.1.4" 4611 | slide "^1.1.5" 4612 | 4613 | write-json-file@^2.0.0: 4614 | version "2.0.0" 4615 | resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-2.0.0.tgz#0eaec981fcf9288dbc2806cbd26e06ab9bdca4ed" 4616 | dependencies: 4617 | graceful-fs "^4.1.2" 4618 | mkdirp "^0.5.1" 4619 | pify "^2.0.0" 4620 | sort-keys "^1.1.1" 4621 | write-file-atomic "^1.1.2" 4622 | 4623 | write-pkg@^2.0.0: 4624 | version "2.1.0" 4625 | resolved "https://registry.yarnpkg.com/write-pkg/-/write-pkg-2.1.0.tgz#353aa44c39c48c21440f5c08ce6abd46141c9c08" 4626 | dependencies: 4627 | sort-keys "^1.1.2" 4628 | write-json-file "^2.0.0" 4629 | 4630 | write@^0.2.1: 4631 | version "0.2.1" 4632 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 4633 | dependencies: 4634 | mkdirp "^0.5.1" 4635 | 4636 | xdg-basedir@^2.0.0: 4637 | version "2.0.0" 4638 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-2.0.0.tgz#edbc903cc385fc04523d966a335504b5504d1bd2" 4639 | dependencies: 4640 | os-homedir "^1.0.0" 4641 | 4642 | xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.1: 4643 | version "4.0.1" 4644 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 4645 | 4646 | xtend@~2.1.1: 4647 | version "2.1.2" 4648 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-2.1.2.tgz#6efecc2a4dad8e6962c4901b337ce7ba87b5d28b" 4649 | dependencies: 4650 | object-keys "~0.4.0" 4651 | 4652 | y18n@^3.2.1: 4653 | version "3.2.1" 4654 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 4655 | 4656 | yallist@^2.0.0: 4657 | version "2.1.2" 4658 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 4659 | 4660 | yargs-parser@^2.4.1: 4661 | version "2.4.1" 4662 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-2.4.1.tgz#85568de3cf150ff49fa51825f03a8c880ddcc5c4" 4663 | dependencies: 4664 | camelcase "^3.0.0" 4665 | lodash.assign "^4.0.6" 4666 | 4667 | yargs@^4.8.1: 4668 | version "4.8.1" 4669 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-4.8.1.tgz#c0c42924ca4aaa6b0e6da1739dfb216439f9ddc0" 4670 | dependencies: 4671 | cliui "^3.2.0" 4672 | decamelize "^1.1.1" 4673 | get-caller-file "^1.0.1" 4674 | lodash.assign "^4.0.3" 4675 | os-locale "^1.4.0" 4676 | read-pkg-up "^1.0.1" 4677 | require-directory "^2.1.1" 4678 | require-main-filename "^1.0.1" 4679 | set-blocking "^2.0.0" 4680 | string-width "^1.0.1" 4681 | which-module "^1.0.0" 4682 | window-size "^0.2.0" 4683 | y18n "^3.2.1" 4684 | yargs-parser "^2.4.1" 4685 | 4686 | yargs@~3.10.0: 4687 | version "3.10.0" 4688 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 4689 | dependencies: 4690 | camelcase "^1.0.2" 4691 | cliui "^2.1.0" 4692 | decamelize "^1.0.0" 4693 | window-size "0.1.0" 4694 | --------------------------------------------------------------------------------