├── .npmignore ├── getme-sm.png ├── gifs ├── getme-ip.gif ├── getme-quote.gif ├── getme-speed.gif ├── getme-currency.gif ├── getme-search.gif ├── getme-upload.gif ├── getme-weather.gif ├── getme-definition.gif └── getme-translation.gif ├── istanbul.yml ├── .travis.yml ├── .editorconfig ├── .gitignore ├── src ├── options │ ├── optQuote.js │ ├── optSearch.js │ ├── optTwitter.test.js │ ├── optRepo.js │ ├── optSpeed.js │ ├── optDate.js │ ├── optChuckNorris.js │ ├── optIP.js │ ├── optUpload.js │ ├── optDate.test.js │ ├── optSearch.test.js │ ├── optSpeed.test.js │ ├── optTwitter.js │ ├── optCurrency.js │ ├── optDefinition.js │ ├── optTranslate.js │ ├── optIP.test.js │ ├── optCurrency.test.js │ ├── optGit.js │ ├── optWeather.js │ └── optWeather.test.js └── index.js ├── stubs ├── currency.js └── weather.js ├── CONTRIBUTING.md ├── package.json ├── README.md └── yarn.lock /.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | -------------------------------------------------------------------------------- /getme-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielgodoy-zz/getme/HEAD/getme-sm.png -------------------------------------------------------------------------------- /gifs/getme-ip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielgodoy-zz/getme/HEAD/gifs/getme-ip.gif -------------------------------------------------------------------------------- /gifs/getme-quote.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielgodoy-zz/getme/HEAD/gifs/getme-quote.gif -------------------------------------------------------------------------------- /gifs/getme-speed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielgodoy-zz/getme/HEAD/gifs/getme-speed.gif -------------------------------------------------------------------------------- /gifs/getme-currency.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielgodoy-zz/getme/HEAD/gifs/getme-currency.gif -------------------------------------------------------------------------------- /gifs/getme-search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielgodoy-zz/getme/HEAD/gifs/getme-search.gif -------------------------------------------------------------------------------- /gifs/getme-upload.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielgodoy-zz/getme/HEAD/gifs/getme-upload.gif -------------------------------------------------------------------------------- /gifs/getme-weather.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielgodoy-zz/getme/HEAD/gifs/getme-weather.gif -------------------------------------------------------------------------------- /gifs/getme-definition.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielgodoy-zz/getme/HEAD/gifs/getme-definition.gif -------------------------------------------------------------------------------- /istanbul.yml: -------------------------------------------------------------------------------- 1 | instrumentation: 2 | excludes: 3 | - 'src/**/*.test.js' 4 | - 'stubs/**/*.js' 5 | -------------------------------------------------------------------------------- /gifs/getme-translation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielgodoy-zz/getme/HEAD/gifs/getme-translation.gif -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "stable" 4 | - "6.1" 5 | notifications: 6 | email: 7 | on_success: never 8 | on_failure: always 9 | script: 10 | - npm run build 11 | - npm run lint 12 | - npm test 13 | after_success: 14 | - npm run coveralls 15 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # top-most EditorConfig file 2 | root = true 3 | 4 | [*] 5 | charset = utf-8 6 | indent_style = space 7 | indent_size = 2 8 | end_of_line = lf 9 | insert_final_newline = true 10 | trim_trailing_whitespace = true 11 | 12 | [*.md] 13 | insert_final_newline = false 14 | trim_trailing_whitespace = false 15 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | .AppleDouble 3 | .LSOverride 4 | 5 | Icon 6 | ._* 7 | .DocumentRevisions-V100 8 | .fseventsd 9 | .Spotlight-V100 10 | .TemporaryItems 11 | .Trashes 12 | .VolumeIcon.icns 13 | .com.apple.timemachine.donotpresent 14 | .AppleDB 15 | .AppleDesktop 16 | Network Trash Folder 17 | Temporary Items 18 | .apdisk 19 | 20 | node_modules 21 | .idea 22 | coverage 23 | npm-debug.log 24 | dist 25 | -------------------------------------------------------------------------------- /src/options/optQuote.js: -------------------------------------------------------------------------------- 1 | const chalk = require('chalk'); 2 | const request = require('request'); 3 | 4 | const apiPrefix = 'http://api.forismatic.com/api/1.0/?method=getQuote&format=json&lang=en'; 5 | 6 | function optQuote() { 7 | request.get(apiPrefix, (error, response, body) => { 8 | const parsedResponse = JSON.parse(body); 9 | console.log(`"${parsedResponse.quoteText.trim()}", ${chalk.yellow(parsedResponse.quoteAuthor)}`); 10 | }); 11 | } 12 | 13 | module.exports = optQuote; 14 | -------------------------------------------------------------------------------- /src/options/optSearch.js: -------------------------------------------------------------------------------- 1 | const chalk = require('chalk'); 2 | const childProcess = require('child_process'); 3 | 4 | function optSearch(query) { 5 | const queryGoogle = 'https://www.google.com/search?q='; 6 | const searchQuery = query.join('+'); 7 | const searchAddress = queryGoogle + searchQuery; 8 | const openCmd = process.platform === 'win32' ? 'start' : 'open'; 9 | 10 | console.log(chalk.blue(`Searching for "${query.join(' ')}" on Google`)); 11 | setTimeout(() => { 12 | childProcess.exec(`${openCmd} ${searchAddress}`, () => { 13 | }); 14 | }, 300); 15 | } 16 | 17 | module.exports = optSearch; 18 | -------------------------------------------------------------------------------- /src/options/optTwitter.test.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable no-unused-expressions */ 2 | 3 | const chai = require('chai'); 4 | const sinonChai = require('sinon-chai'); 5 | const sinon = require('sinon'); 6 | const optTwitter = require('./optTwitter'); 7 | 8 | 9 | chai.use(sinonChai); 10 | let queryMock; 11 | 12 | describe('optTwitter', () => { 13 | beforeEach(() => { 14 | queryMock = ['arg1', 'arg2']; 15 | sinon.stub(console, 'log'); 16 | }); 17 | 18 | afterEach(() => { 19 | console.log.restore(); 20 | }); 21 | 22 | it('Should call \' searchTwitter()\' and console log tweets', (done) => { 23 | optTwitter(queryMock); 24 | done(); 25 | }); 26 | }); 27 | -------------------------------------------------------------------------------- /src/options/optRepo.js: -------------------------------------------------------------------------------- 1 | import fs from 'fs'; 2 | import ini from 'ini'; 3 | import chalk from 'chalk'; 4 | import open from 'open'; 5 | 6 | require('babel-polyfill'); 7 | 8 | function openRepo() { 9 | try { 10 | const config = ini.parse(fs.readFileSync('.git/config', 'utf-8')); 11 | const url = config['remote "origin"'].url; 12 | const isSSHRemoteUrl = url.indexOf('git@') > -1; 13 | let finalUrl; 14 | 15 | if (isSSHRemoteUrl) { 16 | finalUrl = `http://${url.replace('git@', '').replace(':', '/').replace('.git', '')}`; 17 | } else { 18 | finalUrl = url; 19 | } 20 | 21 | open(finalUrl); 22 | } catch (err) { 23 | console.log(chalk.red('No Git repo found')); 24 | } 25 | } 26 | 27 | module.exports = openRepo; 28 | -------------------------------------------------------------------------------- /stubs/currency.js: -------------------------------------------------------------------------------- 1 | exports.response = JSON.stringify({ 2 | base: 'USD', 3 | date: '2017-01-04', 4 | rates: { 5 | AUD: 1.3771, 6 | BGN: 1.8739, 7 | BRL: 3.2369, 8 | CAD: 1.3312, 9 | CHF: 1.0259, 10 | CNY: 6.9351, 11 | CZK: 25.89, 12 | DKK: 7.123, 13 | GBP: 0.81388, 14 | HKD: 7.7559, 15 | HRK: 7.2567, 16 | HUF: 295.44, 17 | IDR: 13384.0, 18 | ILS: 3.8567, 19 | INR: 68.065, 20 | JPY: 117.51, 21 | KRW: 1199.5, 22 | MXN: 21.147, 23 | MYR: 4.4975, 24 | NOK: 8.6141, 25 | NZD: 1.4395, 26 | PHP: 49.642, 27 | PLN: 4.1945, 28 | RON: 4.3198, 29 | RUB: 60.753, 30 | SEK: 9.125, 31 | SGD: 1.4417, 32 | THB: 35.81, 33 | TRY: 3.5822, 34 | ZAR: 13.645, 35 | EUR: 0.95813, 36 | }, 37 | }); 38 | -------------------------------------------------------------------------------- /src/options/optSpeed.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable prefer-const */ 2 | 3 | let speedTest = require('speedtest-net'); 4 | const chalk = require('chalk'); 5 | const ora = require('ora'); 6 | 7 | const spinner = ora({ 8 | text: 'Loading speed results, can take a few seconds', 9 | color: 'yellow', 10 | }); 11 | 12 | function optSpeed() { 13 | spinner.start(); 14 | const test = speedTest({ maxTime: 5000 }); 15 | 16 | test.on('data', (data) => { 17 | spinner.stop(); 18 | console.log(`\nDownload ${chalk.green(data.speeds.download)} Mbps`); 19 | console.log(`Upload ${chalk.blue(data.speeds.upload)} Mbps`); 20 | console.log(`Ping ${chalk.blue(data.server.ping)} ms`); 21 | }); 22 | test.on('error', () => { 23 | console.log('An error ocurred'); 24 | }); 25 | } 26 | 27 | module.exports = optSpeed; 28 | -------------------------------------------------------------------------------- /src/options/optDate.js: -------------------------------------------------------------------------------- 1 | const chalk = require('chalk'); 2 | const moment = require('moment/min/moment-with-locales'); 3 | 4 | function calculateDate(date, period, value, subtract) { 5 | const dt = moment(date); 6 | if (subtract) { 7 | dt.subtract(value, period); 8 | } else { 9 | dt.add(value, period); 10 | } 11 | return dt; 12 | } 13 | 14 | function optDate(value, data) { 15 | const formatString = '(ddd) YYYY-MM-DD'; 16 | const period = data.period || 'd'; 17 | const date = moment(data.date); 18 | const newDate = calculateDate(date, period, value, data.subtract); 19 | const sDate = date.format(formatString); 20 | const sNewDate = newDate.format(formatString); 21 | console.log(`\nInformed date: ${chalk.yellow(sDate)}`); 22 | return console.log(`Calculated Date: ${chalk.yellow(sNewDate)}`); 23 | } 24 | 25 | module.exports = optDate; 26 | -------------------------------------------------------------------------------- /src/options/optChuckNorris.js: -------------------------------------------------------------------------------- 1 | const request = require('request'); 2 | const chalk = require('chalk'); 3 | const ora = require('ora'); 4 | 5 | const spinner = ora({ 6 | text: 'Waiting Chuck Norris, you have no option.', 7 | color: 'yellow', 8 | }); 9 | 10 | function optChuck() { 11 | spinner.start(); 12 | 13 | request('https://api.chucknorris.io/jokes/random', (error, response, body) => { 14 | let apiResponse; 15 | 16 | try { 17 | spinner.stop(); 18 | apiResponse = JSON.parse(body); 19 | } catch (parseError) { 20 | spinner.stop(); 21 | console.log('Chuck is busy now, try again later.'); 22 | return false; 23 | } 24 | 25 | if ('error' in apiResponse) { 26 | console.log(chalk.red('It was not possible to retrieve what you want')); 27 | return false; 28 | } 29 | 30 | return console.log(`Chuck says: ${chalk.red(JSON.parse(body).value)}`); 31 | }); 32 | } 33 | 34 | module.exports = optChuck; 35 | -------------------------------------------------------------------------------- /src/options/optIP.js: -------------------------------------------------------------------------------- 1 | const request = require('request'); 2 | const chalk = require('chalk'); 3 | const ora = require('ora'); 4 | const os = require('os'); 5 | 6 | const spinner = ora({ 7 | text: 'Loading IPs', 8 | color: 'yellow', 9 | }); 10 | 11 | function getLocalIP() { 12 | const interfaces = os.networkInterfaces(); 13 | const addresses = []; 14 | 15 | Object.keys(interfaces).forEach((netInterface) => { 16 | interfaces[netInterface].forEach((interfaceObject) => { 17 | if (interfaceObject.family === 'IPv4' && !interfaceObject.internal) { 18 | addresses.push(interfaceObject.address); 19 | } 20 | }); 21 | }); 22 | return addresses; 23 | } 24 | 25 | function optIP() { 26 | spinner.start(); 27 | 28 | request('https://api.ipify.org?format=json', (error, response, body) => { 29 | if (!error && response.statusCode === 200) { 30 | spinner.stop(); 31 | return console.log(`\nPublic IP ${chalk.blue(JSON.parse(body).ip)}\nNetwork IP ${chalk.blue(getLocalIP())}`); 32 | } 33 | spinner.stop(); 34 | return console.log('It was not possible to retrieve your IP this time'); 35 | }); 36 | } 37 | 38 | module.exports = optIP; 39 | 40 | -------------------------------------------------------------------------------- /src/options/optUpload.js: -------------------------------------------------------------------------------- 1 | const chalk = require('chalk'); 2 | const request = require('request'); 3 | const fs = require('fs'); 4 | const ora = require('ora'); 5 | 6 | const spinner = ora({ 7 | text: 'Uploading your file, can take a few seconds', 8 | color: 'yellow', 9 | }); 10 | 11 | function handlerError(errCode) { 12 | switch (errCode) { 13 | case ('ENOENT'): 14 | return 'No such file or directory'; 15 | case ('EISDIR'): 16 | return 'Illegal operation on a directory'; 17 | default: 18 | return 'Some error occurred, try again.'; 19 | } 20 | } 21 | 22 | function optUpload(file, options) { 23 | spinner.start(); 24 | const expiration = options.expiration || ''; 25 | const req = request.post(`https://file.io?expires=${expiration}`, (err, resp, body) => { 26 | spinner.stop(); 27 | if (err) { 28 | console.log(chalk.red(handlerError(err.code))); 29 | console.log('Also file must be less than 5gb of size'); 30 | } else { 31 | const responseBody = JSON.parse(body); 32 | console.log(`${chalk.green(responseBody.link)}`); 33 | console.log(`This file expires in ${chalk.yellow(responseBody.expiry)}`); 34 | } 35 | }); 36 | 37 | const form = req.form(); 38 | form.append('file', fs.createReadStream(file)); 39 | } 40 | 41 | module.exports = optUpload; 42 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing 2 | 3 | 1. Fork it! 4 | 2. Create your feature/fix branch from the master branch: `git checkout -b my-new-feature` 5 | 3. Commit your changes: `git commit -m 'Add some feature'` 6 | 4. Push to github: `git push origin my-new-feature` 7 | 5. Create a pull request for the getme repository 8 | 9 | ## For pull requests that have new `getme` commands and functionalities 10 | 11 | If your pull request have new `getme` commands and functionalities with new files in it, it is good to: 12 | 13 | ### Test it 14 | 15 | * Create a file named [YOUR_FEATURE].test.js next to your new feature file 16 | * Create your test cases for that new feature on that test file. Use the existing test files as an example 17 | * Run `npm run coverage`. It will generate a `coverage` folder. Open the `index.html` in it, and see if the tests you made are covering all the code in your feature file 18 | * Run `npm test` to check if your tests are ok 19 | 20 | ### Update existing documentation 21 | 22 | * Do not forget to update the getme options table in *README.md* with your new commands 23 | 24 | --- 25 | 26 | *Remember that we have a pre-push hook with steps that analyzes and prevents mistakes.* 27 | 28 | **After your pull request is merged**, you can safely delete your branch. 29 | 30 | --- 31 | 32 | ### [<= Back](https://github.com/gabrielgodoy/getme) 33 | -------------------------------------------------------------------------------- /stubs/weather.js: -------------------------------------------------------------------------------- 1 | exports.forecastResponseMock = JSON.stringify({ 2 | city: { 3 | id: 3473648, 4 | name: 'Icaraí', 5 | coord: { 6 | lon: -43.09972, 7 | lat: -22.9, 8 | }, 9 | country: 'BR', 10 | population: 0, 11 | sys: { 12 | population: 0, 13 | }, 14 | }, 15 | list: [ 16 | { 17 | dt: 1483574400, 18 | main: { 19 | temp: 27.2, 20 | temp_min: 27.2, 21 | temp_max: 29.16, 22 | }, 23 | weather: [ 24 | { 25 | id: 802, 26 | main: 'Clouds', 27 | description: 'scattered clouds', 28 | icon: '03n', 29 | }, 30 | ], 31 | dt_txt: '2017-01-05 12:00:00', 32 | }, 33 | { 34 | dt: 1483606800, 35 | main: { 36 | temp: 24.98, 37 | temp_min: 24.98, 38 | temp_max: 25.47, 39 | }, 40 | weather: [ 41 | { 42 | id: 500, 43 | main: 'Rain', 44 | description: 'light rain', 45 | icon: '10d', 46 | }, 47 | ], 48 | dt_txt: '2017-01-05 09:00:00', 49 | }, 50 | ] 51 | }); 52 | 53 | const weatherResponseMock = JSON.stringify({ 54 | weather: [ 55 | { 56 | id: 211, 57 | main: 'Thunderstorm', 58 | description: 'thunderstorm', 59 | icon: '11n', 60 | }, 61 | ], 62 | main: { 63 | temp: 30.57, 64 | pressure: 1009, 65 | humidity: 59, 66 | temp_min: 28, 67 | temp_max: 33, 68 | }, 69 | dt: 1483567200, 70 | }); 71 | 72 | exports.weatherResponseMock = weatherResponseMock; 73 | 74 | exports.getIconMocks = function getIconMocks () { 75 | ['02d','03d','04d','09d','10d','11d','13d','50d','01n','02n','03n','04n','09n','10n','11n','13n','50n'] 76 | .map(icon => { 77 | const res = Object.assign({}, weatherResponseMock) 78 | res.weather[0].icon = icon; 79 | }); 80 | } 81 | -------------------------------------------------------------------------------- /src/options/optDate.test.js: -------------------------------------------------------------------------------- 1 | const chalk = require('chalk'); 2 | const chai = require('chai'); 3 | const sinonChai = require('sinon-chai'); 4 | const optDate = require('./optDate'); 5 | const sinon = require('sinon'); 6 | 7 | const expect = chai.expect; 8 | chai.use(sinonChai); 9 | 10 | let consoleStub; 11 | 12 | describe('optDate', () => { 13 | beforeEach(() => { 14 | consoleStub = sinon.stub(console, 'log'); 15 | }); 16 | afterEach(() => { 17 | console.log.restore(); 18 | }); 19 | it('Should add 2 days', (done) => { 20 | const date = '2017-05-01'; 21 | const sDate = '(Mon) 2017-05-01'; 22 | const sNewDate = '(Wed) 2017-05-03'; 23 | optDate(2, { 24 | date, 25 | }); 26 | setTimeout(() => { 27 | expect(consoleStub).to.have.been.calledWith(`\nInformed date: ${chalk.yellow(sDate)}`); 28 | expect(consoleStub).to.have.been.calledWith(`Calculated Date: ${chalk.yellow(sNewDate)}`); 29 | done(); 30 | }, 300); 31 | }); 32 | it('Should add 4 months', (done) => { 33 | const date = '2017-05-01'; 34 | const sDate = '(Mon) 2017-05-01'; 35 | const sNewDate = '(Fri) 2017-09-01'; 36 | optDate(4, { 37 | date, 38 | period: 'M', 39 | }); 40 | setTimeout(() => { 41 | expect(consoleStub).to.have.been.calledWith(`\nInformed date: ${chalk.yellow(sDate)}`); 42 | expect(consoleStub).to.have.been.calledWith(`Calculated Date: ${chalk.yellow(sNewDate)}`); 43 | done(); 44 | }, 300); 45 | }); 46 | it('Should subtract 35 days', (done) => { 47 | const date = '2017-05-01'; 48 | const sDate = '(Mon) 2017-05-01'; 49 | const sNewDate = '(Mon) 2017-03-27'; 50 | optDate(35, { 51 | date, 52 | subtract: true, 53 | }); 54 | setTimeout(() => { 55 | expect(consoleStub).to.have.been.calledWith(`\nInformed date: ${chalk.yellow(sDate)}`); 56 | expect(consoleStub).to.have.been.calledWith(`Calculated Date: ${chalk.yellow(sNewDate)}`); 57 | done(); 58 | }, 300); 59 | }); 60 | }); 61 | -------------------------------------------------------------------------------- /src/options/optSearch.test.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable no-unused-expressions */ 2 | 3 | const chalk = require('chalk'); 4 | const chai = require('chai'); 5 | const sinonChai = require('sinon-chai'); 6 | const sinon = require('sinon'); 7 | const childProcess = require('child_process'); 8 | const optSearch = require('./optSearch'); 9 | 10 | const expect = chai.expect; 11 | chai.use(sinonChai); 12 | 13 | let queryMock; 14 | let childProcessStub; 15 | let consoleLogStub; 16 | 17 | describe('optSearch', () => { 18 | beforeEach(() => { 19 | queryMock = ['arg1', 'arg2']; 20 | 21 | consoleLogStub = sinon.stub(console, 'log'); 22 | // Stub to prevent exec() from opening the browser while testing 23 | childProcessStub = sinon.stub(childProcess, 'exec'); 24 | }); 25 | 26 | afterEach(() => { 27 | childProcess.exec.restore(); 28 | console.log.restore(); 29 | }); 30 | 31 | it('Should call child_process.exec with correct search URL', (done) => { 32 | const queryGoogle = 'https://www.google.com/search?q='; 33 | // mock process for proper open command call 34 | Object.defineProperty(process, 'platform', { value: 'unix' }); 35 | optSearch(queryMock); 36 | setTimeout(() => { 37 | expect(childProcessStub).to.have.been.calledWith(`open ${queryGoogle}${queryMock.join('+')}`); 38 | done(); 39 | }, 300); 40 | }); 41 | 42 | it('Should call child_process.exec with correct search URL and win32 open command', (done) => { 43 | const queryGoogle = 'https://www.google.com/search?q='; 44 | // mock process for proper open command call 45 | Object.defineProperty(process, 'platform', { value: 'win32' }); 46 | optSearch(queryMock); 47 | setTimeout(() => { 48 | expect(childProcessStub).to.have.been.calledWith(`start ${queryGoogle}${queryMock.join('+')}`); 49 | done(); 50 | }, 300); 51 | }); 52 | 53 | it('Should log Searching message to user', (done) => { 54 | optSearch(queryMock); 55 | setTimeout(() => { 56 | expect(consoleLogStub).to.have.been.calledWith(chalk.blue('Searching for "arg1 arg2" on Google')); 57 | done(); 58 | }, 300); 59 | }); 60 | }); 61 | -------------------------------------------------------------------------------- /src/options/optSpeed.test.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable no-unused-expressions */ 2 | /* eslint-disable no-underscore-dangle */ 3 | 4 | const chalk = require('chalk'); 5 | const chai = require('chai'); 6 | const sinonChai = require('sinon-chai'); 7 | const sinon = require('sinon'); 8 | const rewire = require('rewire'); 9 | 10 | const optSpeed = rewire('./optSpeed'); 11 | const expect = chai.expect; 12 | chai.use(sinonChai); 13 | 14 | let consoleStub; 15 | 16 | describe('optSpeed', () => { 17 | beforeEach(() => { 18 | consoleStub = sinon.stub(console, 'log'); 19 | }); 20 | 21 | afterEach(() => { 22 | console.log.restore(); 23 | }); 24 | 25 | it('should log to user internet speeds', (done) => { 26 | const speedTestMock = function speedTestMock() { 27 | return { 28 | on: (event, callback) => { 29 | if (event === 'data') { 30 | const data = { 31 | speeds: { 32 | download: 999, 33 | upload: 999, 34 | }, 35 | server: { 36 | ping: 999, 37 | }, 38 | }; 39 | callback(data); 40 | } 41 | }, 42 | }; 43 | }; 44 | optSpeed.__set__('speedTest', speedTestMock); 45 | optSpeed(); 46 | setTimeout(() => { 47 | expect(consoleStub).to.have.been.calledWith(`\nDownload ${chalk.green(999)} Mbps`); 48 | expect(consoleStub).to.have.been.calledWith(`Upload ${chalk.blue(999)} Mbps`); 49 | expect(consoleStub).to.have.been.calledWith(`Ping ${chalk.blue(999)} ms`); 50 | done(); 51 | }, 300); 52 | }); 53 | 54 | it('should log error message if some problem occurs', (done) => { 55 | const speedTestMock = function speedTestMock() { 56 | return { 57 | on: (event, callback) => { 58 | if (event === 'error') { 59 | callback('error'); 60 | } 61 | }, 62 | }; 63 | }; 64 | optSpeed.__set__('speedTest', speedTestMock); 65 | 66 | optSpeed(); 67 | setTimeout(() => { 68 | expect(consoleStub).to.have.been.calledWith('An error ocurred'); 69 | done(); 70 | }, 300); 71 | }); 72 | }); 73 | -------------------------------------------------------------------------------- /src/options/optTwitter.js: -------------------------------------------------------------------------------- 1 | const chalk = require('chalk'); 2 | const https = require('https'); 3 | const ora = require('ora'); 4 | const OAuth2 = require('oauth').OAuth2; 5 | const urlencode = require('urlencode'); 6 | 7 | const spinner = ora({ 8 | text: 'Loading Twitter results, can take a few seconds', 9 | color: 'yellow', 10 | }); 11 | const CONSUMER_KEY = 'p5qURsUwMRxOw4AiN3yMkSuwg'; 12 | const SECRET = 'uVWQhRBl3cqsgJsoBpblKpG6kfgeUffFInanfGEoRpQybx2Bcx'; 13 | const oauth2 = new OAuth2(CONSUMER_KEY, SECRET, 'https://api.twitter.com/', null, 'oauth2/token', null); 14 | 15 | function searchTwitter(query, cb) { 16 | const searchQuery = urlencode(`${query}`); 17 | spinner.start(); 18 | oauth2.getOAuthAccessToken('', { 19 | grant_type: 'client_credentials', 20 | }, (error, accessToken) => { 21 | const options = { 22 | hostname: 'api.twitter.com', 23 | path: `/1.1/search/tweets.json?q=${searchQuery}`, 24 | headers: { 25 | Authorization: `Bearer ${accessToken}`, 26 | }, 27 | }; 28 | 29 | https.get(options, (result) => { 30 | let buffer = ''; 31 | result.setEncoding('utf8'); 32 | result.on('data', (data) => { 33 | buffer += data; 34 | }); 35 | result.on('end', () => { 36 | const tweets = JSON.parse(buffer); 37 | cb(error, tweets); 38 | }); 39 | }); 40 | }); 41 | } 42 | 43 | function optTwitter(query) { 44 | const searchQuery = query.join(' '); 45 | searchTwitter(searchQuery, (err, data) => { 46 | if (err) { 47 | spinner.stop(); 48 | console.log(chalk.red(`Error searching tweets: ${err}`)); 49 | process.exit(); 50 | } 51 | 52 | const tweets = data.statuses; 53 | if (!tweets.length) { 54 | spinner.stop(); 55 | console.log('No tweets to show!'); 56 | process.exit(); 57 | } 58 | spinner.stop(); 59 | tweets.slice(10); 60 | tweets.forEach((t) => { 61 | console.log(`${chalk.yellow('From :')} ${t.user.name}`); 62 | console.log(`${chalk.yellow('Tweet :')} ${t.text}`); 63 | console.log(`${chalk.yellow('Time :')} ${t.created_at} \n`); 64 | }); 65 | }); 66 | } 67 | 68 | module.exports = optTwitter; 69 | -------------------------------------------------------------------------------- /src/options/optCurrency.js: -------------------------------------------------------------------------------- 1 | const request = require('request'); 2 | const chalk = require('chalk'); 3 | const emoji = require('node-emoji'); 4 | 5 | const emojis = { 6 | USD: 'flag-us', 7 | JPY: 'flag-jp', 8 | BGN: 'flag-bg', 9 | CZK: 'flag-cz', 10 | DKK: 'flag-dk', 11 | GBP: 'flag-gb', 12 | HUF: 'flag-hu', 13 | PLN: 'flag-pl', 14 | RON: 'flag-ro', 15 | SEK: 'flag-se', 16 | CHF: 'flag-ch', 17 | NOK: 'flag-no', 18 | HRK: 'flag-hr', 19 | RUB: 'flag-ru', 20 | TRY: 'flag-tr', 21 | AUD: 'flag-au', 22 | BRL: 'flag-br', 23 | CAD: 'flag-ca', 24 | CNY: 'flag-cn', 25 | HKD: 'flag-hk', 26 | IDR: 'flag-id', 27 | ILS: 'flag-il', 28 | INR: 'flag-in', 29 | KRW: 'flag-kr', 30 | MXN: 'flag-mx', 31 | MYR: 'flag-my', 32 | NZD: 'flag-nz', 33 | PHP: 'flag-ph', 34 | SGD: 'flag-sg', 35 | THB: 'flag-th', 36 | ZAR: 'flag-za', 37 | EUR: 'euro', 38 | }; 39 | 40 | function getCountryIcon(countryInitial) { 41 | return emoji.get(emojis[countryInitial]); 42 | } 43 | 44 | function formatRates(rates) { 45 | return Object 46 | .keys(rates) 47 | .map(rate => `${getCountryIcon(rate)} ${rate} ${chalk.green(rates[rate])}\n-------------\n`) 48 | .join(''); 49 | } 50 | 51 | function optCurrency({ base = 'USD', symbols } = {}) { 52 | let apiURL = 'http://api.fixer.io/latest?base='; 53 | 54 | apiURL += `${base}&`; 55 | 56 | if (symbols) { 57 | apiURL += `symbols=${symbols}`; 58 | } 59 | 60 | request(apiURL, (error, response, body) => { // eslint-disable-line consistent-return 61 | let apiResponse; 62 | 63 | try { 64 | apiResponse = JSON.parse(body); 65 | } catch (parseError) { 66 | console.log(chalk.red('Something went wrong in the API. Try in a few minutes')); 67 | return parseError; 68 | } 69 | 70 | if ('error' in apiResponse) { 71 | console.log(chalk.red('It was not possible to retrieve what you want')); 72 | return false; 73 | } 74 | 75 | console.log(`\n${chalk.yellow('Base currency')} ${getCountryIcon(apiResponse.base)} ${chalk.cyan(apiResponse.base)}`); 76 | console.log(`\nCurrency Rates\n\n${formatRates(apiResponse.rates)}`); 77 | }); 78 | } 79 | 80 | module.exports = optCurrency; 81 | -------------------------------------------------------------------------------- /src/options/optDefinition.js: -------------------------------------------------------------------------------- 1 | const request = require('request'); 2 | const chalk = require('chalk'); 3 | 4 | const wordsAPIPrefix = 'https://api.pearson.com/v2/dictionaries/ldoce5/entries?'; 5 | const KEYS = { 6 | KEY: 'IN8GvOkYsnN9s8tCw57H7kPS803OoY4W', 7 | SECRET: 'ESMU69gBujOVDQi9', 8 | }; 9 | 10 | function capitalize(string) { 11 | return string.charAt(0).toUpperCase() + string.slice(1); 12 | } 13 | 14 | function formatLogMessage(definitions) { 15 | definitions.forEach((definition) => { 16 | const { example, synonymWord, number, definition: def, partOfSpeech } = definition; 17 | let logMessage = `${partOfSpeech ? chalk.yellow(partOfSpeech) : ''} ${def}`; 18 | 19 | console.log('------------------------'); 20 | 21 | if (synonymWord) { 22 | console.log(`${chalk.yellow(number)}. ${capitalize(synonymWord)}`); 23 | } else { 24 | logMessage = `${chalk.yellow(number)}. ${logMessage}`; 25 | } 26 | 27 | console.log(logMessage); 28 | 29 | if (example) { 30 | console.log(`${chalk.blue('Example: ')} ${example}`); 31 | } 32 | }); 33 | } 34 | 35 | function formatDefinitions(parsedResponse) { 36 | const definitions = parsedResponse.results 37 | .map((result, index) => result.senses 38 | .filter(sense => sense.definition) 39 | .map((sense) => { 40 | const definitionObject = { 41 | number: index + 1, 42 | partOfSpeech: result.part_of_speech ? `[${result.part_of_speech}]` : '', 43 | definition: `${capitalize(sense.definition[0])}`, 44 | }; 45 | 46 | if (sense.examples) { 47 | definitionObject.example = `${capitalize(sense.examples[0].text)}`; 48 | } 49 | 50 | if (parsedResponse.url.includes('synonyms')) { 51 | definitionObject.synonymWord = result.headword; 52 | } 53 | 54 | return definitionObject; 55 | })); 56 | 57 | formatLogMessage([].concat(...definitions)); 58 | } 59 | 60 | function optDefinition(word) { 61 | const headwordOrSynonyms = word.synonym ? 'synonyms' : 'headword'; 62 | const url = `${wordsAPIPrefix}${headwordOrSynonyms}=${word.synonym ? word.synonym : word}&apikey=${KEYS.KEY}`; 63 | 64 | request(url, (error, response, body) => { 65 | const parsedResponse = JSON.parse(body); 66 | 67 | if (parsedResponse.count === 0) { 68 | console.log(chalk.red('No matches found for that word')); 69 | } else { 70 | formatDefinitions(parsedResponse); 71 | } 72 | }); 73 | } 74 | 75 | module.exports = optDefinition; 76 | -------------------------------------------------------------------------------- /src/options/optTranslate.js: -------------------------------------------------------------------------------- 1 | const chalk = require('chalk'); 2 | const ora = require('ora'); 3 | const request = require('request'); 4 | 5 | const key = 'trnsl.1.1.20170105T060308Z.f3f9bcb6f1acfc21.b8b98c7a8899c9532a26b8c0a665696bd9b6aa83'; 6 | const languageCode = 'pt'; 7 | 8 | const spinner = ora({ 9 | text: 'Loading translation', 10 | color: 'yellow', 11 | }); 12 | 13 | function formatFromtoCombinations(combinations) { 14 | const formattedGroupsOfTen = []; 15 | let dirsGroup = []; 16 | combinations.forEach((fromto, index, array) => { 17 | const isDivisibleByTen = index % 10 === 0; 18 | const groupsOfTenInArray = Math.ceil(array.length / 10); 19 | 20 | if (isDivisibleByTen && groupsOfTenInArray > formattedGroupsOfTen.length) { 21 | formattedGroupsOfTen.push(dirsGroup.join(' | ')); 22 | dirsGroup = []; 23 | } 24 | dirsGroup.push(fromto); 25 | 26 | const isFinalItemInArray = index === (array.length - 1); 27 | const groupsOfTenFinished = groupsOfTenInArray === formattedGroupsOfTen.length; 28 | if (groupsOfTenFinished && isFinalItemInArray) { 29 | formattedGroupsOfTen.push(dirsGroup.join(' | ')); 30 | } 31 | }); 32 | return formattedGroupsOfTen.join('\n'); 33 | } 34 | 35 | function optTranslate(textToTranslateArray, options) { 36 | if (options.list) { 37 | const listLangsPrefix = 'https://translate.yandex.net/api/v1.5/tr.json/getLangs'; 38 | const listSupportedLangs = `${listLangsPrefix}?key=${key}&ui=${languageCode}`; 39 | request.get(listSupportedLangs, (error, response, body) => { 40 | const parsedResponse = JSON.parse(body); 41 | console.log(`\n${chalk.yellow('--fromto')} options`); 42 | console.log(formatFromtoCombinations(parsedResponse.dirs)); 43 | }); 44 | } else if (options.fromto && options.text) { 45 | spinner.start(); 46 | const translatePrefix = 'https://translate.yandex.net/api/v1.5/tr.json/translate'; 47 | const fromto = options.fromto; 48 | const text = `${options.text}${textToTranslateArray.length ? `+${textToTranslateArray.join('+')}` : ''}`; 49 | const apiTranslate = `${translatePrefix}?key=${key}&text=${text}&lang=${fromto}&options=1`; 50 | request.get(apiTranslate, (error, response, body) => { 51 | spinner.stop(); 52 | const parsedResponse = JSON.parse(body); 53 | console.log(text.replace(/\+/g, ' ')); 54 | console.log(chalk.blue(parsedResponse.text[0])); 55 | }); 56 | } else { 57 | console.log(`\nIn order to translate a text you need to pass ${chalk.yellow('--fromto')} and ${chalk.yellow('--text')} arguments`); 58 | console.log(`Example: ${chalk.blue('getme translation --fromto en-es --text The book is on the table')}`); 59 | } 60 | } 61 | 62 | module.exports = optTranslate; 63 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "getme", 3 | "version": "1.4.10", 4 | "description": "CLI utility for everyday tasks", 5 | "repository": { 6 | "type": "git", 7 | "url": "https://github.com/gabrielgodoy/getme" 8 | }, 9 | "watch": { 10 | "build": "src/**/*.js" 11 | }, 12 | "scripts": { 13 | "prepublish": "npm run build", 14 | "build": "./node_modules/.bin/babel ./src -d dist", 15 | "watch": "npm-watch", 16 | "test": "mocha --colors --reporter spec ./src/**/*.test.js", 17 | "test:watch": "npm test -- --watch", 18 | "coverage": "istanbul cover --report lcov --report text --config istanbul.yml _mocha ./src/**/*.js", 19 | "coveralls": "NODE_ENV=test istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly --config istanbul.yml -- -R spec ./src/**/*.js && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage", 20 | "lint": "./node_modules/.bin/eslint './src/**/*.js'", 21 | "precommit": "npm run lint && npm test", 22 | "prepush": "npm run lint" 23 | }, 24 | "eslintConfig": { 25 | "extends": "airbnb-base", 26 | "plugins": [ 27 | "import" 28 | ], 29 | "rules": { 30 | "no-console": 0 31 | }, 32 | "env": { 33 | "browser": true, 34 | "mocha": true 35 | } 36 | }, 37 | "author": "Gabriel Godoy", 38 | "keywords": [ 39 | "google", 40 | "maps", 41 | "places", 42 | "weather" 43 | ], 44 | "bin": { 45 | "getme": "./dist/index.js" 46 | }, 47 | "babel": { 48 | "presets": [ 49 | "es2015" 50 | ] 51 | }, 52 | "preferGlobal": true, 53 | "license": "MIT", 54 | "dependencies": { 55 | "babel-polyfill": "^6.23.0", 56 | "chalk": "^1.1.3", 57 | "co": "^4.6.0", 58 | "co-prompt": "^1.0.0", 59 | "commander": "^2.9.0", 60 | "ini": "^1.3.4", 61 | "inquirer": "^3.0.6", 62 | "moment": "^2.18.1", 63 | "node-emoji": "^1.4.3", 64 | "oauth": "^0.9.15", 65 | "open": "0.0.5", 66 | "ora": "^1.2.0", 67 | "request": "^2.81.0", 68 | "speedtest-net": "^1.2.11", 69 | "thunkify": "^2.1.2", 70 | "urlencode": "^1.1.0" 71 | }, 72 | "bugs": { 73 | "url": "https://github.com/gabrielgodoy/getme/issues", 74 | "email": "hi@gabrielgodoy.com" 75 | }, 76 | "devDependencies": { 77 | "babel-cli": "^6.18.0", 78 | "babel-preset-es2015": "^6.18.0", 79 | "chai": "^3.5.0", 80 | "coveralls": "^2.11.15", 81 | "eslint": "^3.12.2", 82 | "eslint-config-airbnb-base": "^11.0.0", 83 | "eslint-plugin-import": "^2.2.0", 84 | "husky": "^0.13.3", 85 | "istanbul": "^0.4.5", 86 | "mocha": "^3.2.0", 87 | "mocha-lcov-reporter": "^1.2.0", 88 | "nock": "^9.0.2", 89 | "npm-watch": "^0.1.7", 90 | "rewire": "^2.5.2", 91 | "sinon": "^2.1.0", 92 | "sinon-chai": "^2.8.0" 93 | } 94 | } 95 | -------------------------------------------------------------------------------- /src/options/optIP.test.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable no-unused-expressions */ 2 | 3 | const nock = require('nock'); 4 | const os = require('os'); 5 | const chai = require('chai'); 6 | const chalk = require('chalk'); 7 | const sinonChai = require('sinon-chai'); 8 | const sinon = require('sinon'); 9 | const optIP = require('./optIP'); 10 | 11 | const expect = chai.expect; 12 | chai.use(sinonChai); 13 | 14 | let consoleStub; 15 | let responseMock; 16 | let networkInterfacesMock; 17 | 18 | describe('optIP', () => { 19 | beforeEach(() => { 20 | networkInterfacesMock = { 21 | lo0: [ 22 | { 23 | address: '127.0.0.1', 24 | netmask: '255.0.0.0', 25 | family: 'IPv4', 26 | mac: '00:00:00:00:00:00', 27 | internal: true, 28 | }, 29 | { 30 | address: '::1', 31 | netmask: 'ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff', 32 | family: 'IPv6', 33 | mac: '00:00:00:00:00:00', 34 | scopeid: 0, 35 | internal: true, 36 | }, 37 | { 38 | address: 'fe80::1', 39 | netmask: 'ffff:ffff:ffff:ffff::', 40 | family: 'IPv6', 41 | mac: '00:00:00:00:00:00', 42 | scopeid: 1, 43 | internal: true, 44 | }], 45 | en0: [ 46 | { 47 | address: 'fe80::10db:a989:c30d:629', 48 | netmask: 'ffff:ffff:ffff:ffff::', 49 | family: 'IPv6', 50 | mac: '3c:15:c2:d1:8e:3e', 51 | scopeid: 4, 52 | internal: false, 53 | }, 54 | { 55 | address: '192.168.0.21', 56 | netmask: '255.255.255.0', 57 | family: 'IPv4', 58 | mac: '3c:15:c2:d1:8e:3e', 59 | internal: false, 60 | }], 61 | awdl0: [{ 62 | address: 'fe80::409a:b7ff:fe03:69d2', 63 | netmask: 'ffff:ffff:ffff:ffff::', 64 | family: 'IPv6', 65 | mac: '42:9a:b7:03:69:d2', 66 | scopeid: 8, 67 | internal: false, 68 | }, 69 | ], 70 | }; 71 | responseMock = JSON.stringify({ ip: '179.215.28.27' }); // Response is valid JSON 72 | 73 | consoleStub = sinon.stub(console, 'log'); 74 | sinon.stub(os, 'networkInterfaces').returns(networkInterfacesMock); 75 | }); 76 | 77 | afterEach(() => { 78 | os.networkInterfaces.restore(); 79 | console.log.restore(); 80 | }); 81 | 82 | it('Should log correct IP addresses to user', (done) => { 83 | nock('https://api.ipify.org') 84 | .get('/') 85 | .query({ format: 'json' }) // GET Query for the API 86 | .reply(200, responseMock); 87 | 88 | optIP(); 89 | setTimeout(() => { 90 | expect(consoleStub).to.have.been.calledWith(`\nPublic IP ${chalk.blue('179.215.28.27')}\nNetwork IP ${chalk.blue('192.168.0.21')}`); 91 | done(); 92 | }, 300); 93 | }); 94 | 95 | it('Should log an error to user if API problem occurs', (done) => { 96 | nock('https://api.ipify.org') 97 | .get('/') 98 | .query({ format: 'json' }) // GET Query for the API 99 | .replyWithError('Error'); 100 | 101 | optIP(); 102 | setTimeout(() => { 103 | expect(consoleStub).to.have.been.calledWith('It was not possible to retrieve your IP this time'); 104 | done(); 105 | }, 300); 106 | }); 107 | }); 108 | -------------------------------------------------------------------------------- /src/options/optCurrency.test.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable no-unused-expressions */ 2 | /* eslint-disable no-underscore-dangle */ 3 | 4 | const nock = require('nock'); 5 | const chalk = require('chalk'); 6 | const chai = require('chai'); 7 | const rewire = require('rewire'); 8 | const sinonChai = require('sinon-chai'); 9 | const sinon = require('sinon'); 10 | 11 | const optCurrency = rewire('./optCurrency'); 12 | const expect = chai.expect; 13 | chai.use(sinonChai); 14 | 15 | const stubs = require('../../stubs/currency'); 16 | 17 | let responseMock; 18 | let commanderMock; 19 | let consoleStub; 20 | 21 | describe('optCurrency', () => { 22 | beforeEach(() => { 23 | responseMock = stubs.response; 24 | consoleStub = sinon.stub(console, 'log'); 25 | }); 26 | 27 | afterEach(() => { 28 | console.log.restore(); 29 | }); 30 | 31 | it('should console log USD base currency against all currencies', (done) => { 32 | nock('http://api.fixer.io') 33 | .get('/latest') 34 | .query({ base: 'USD' }) 35 | .reply(200, responseMock); 36 | 37 | commanderMock = {}; 38 | optCurrency(commanderMock); 39 | const responseMockParsed = JSON.parse(responseMock); 40 | 41 | setTimeout(() => { 42 | expect(consoleStub).to.have.been.calledWith(`\n${chalk.yellow('Base currency')} ${optCurrency.__get__('getCountryIcon')(responseMockParsed.base)} ${chalk.cyan(responseMockParsed.base)}`); 43 | expect(consoleStub).to.have.been.calledWith(`\nCurrency Rates\n\n${optCurrency.__get__('formatRates')(responseMockParsed.rates)}`); 44 | done(); 45 | }, 300); 46 | }); 47 | 48 | it('should console log USD base currency against currencies defined in symbols parameter', (done) => { 49 | const responseMockSymbols = JSON.stringify({ 50 | base: 'USD', 51 | date: '2017-01-04', 52 | rates: { 53 | BRL: 3.2369, 54 | EUR: 0.95813, 55 | }, 56 | }); 57 | 58 | const responseMockParsed = JSON.parse(responseMockSymbols); 59 | 60 | nock('http://api.fixer.io') 61 | .get('/latest') 62 | .query({ base: 'USD', symbols: 'BRL,EUR' }) 63 | .reply(200, responseMockSymbols); 64 | 65 | commanderMock = { symbols: 'BRL,EUR' }; 66 | optCurrency(commanderMock); 67 | 68 | setTimeout(() => { 69 | expect(consoleStub).to.have.been.calledWith(`\n${chalk.yellow('Base currency')} ${optCurrency.__get__('getCountryIcon')(responseMockParsed.base)} ${chalk.cyan(responseMockParsed.base)}`); 70 | expect(consoleStub).to.have.been.calledWith(`\nCurrency Rates\n\n${optCurrency.__get__('formatRates')(responseMockParsed.rates)}`); 71 | done(); 72 | }, 300); 73 | }); 74 | 75 | it('should message user when api reply with error', (done) => { 76 | nock('http://api.fixer.io') 77 | .get('/latest') 78 | .query({ base: 'USD' }) 79 | .replyWithError('Error'); 80 | 81 | commanderMock = {}; 82 | optCurrency(commanderMock); 83 | setTimeout(() => { 84 | expect(consoleStub).to.have.been.calledWith(`${chalk.red('Something went wrong in the API. Try in a few minutes')}`); 85 | done(); 86 | }, 300); 87 | }); 88 | 89 | it('should message user when request is made with unusual get parameters', (done) => { 90 | nock('http://api.fixer.io') 91 | .get('/latest') 92 | .query({ base: 'UWERSD' }) 93 | .reply(200, JSON.stringify({ error: 'Some error' })); 94 | 95 | commanderMock = { base: 'UWERSD' }; 96 | optCurrency(commanderMock); 97 | setTimeout(() => { 98 | expect(consoleStub).to.have.been.calledWith(`${chalk.red('It was not possible to retrieve what you want')}`); 99 | done(); 100 | }, 300); 101 | }); 102 | }); 103 | -------------------------------------------------------------------------------- /src/options/optGit.js: -------------------------------------------------------------------------------- 1 | const chalk = require('chalk'); 2 | const co = require('co'); 3 | const request = require('request'); 4 | const inquirer = require('inquirer'); 5 | const childProcess = require('child_process'); 6 | const fs = require('fs'); 7 | const prompt = require('co-prompt'); 8 | const ora = require('ora'); 9 | require('babel-polyfill'); 10 | 11 | const openCmd = process.platform === 'win32' ? 'start' : 'open'; 12 | const spinner = ora({ 13 | text: 'Loading Git notifications, can take a few seconds', 14 | color: 'yellow', 15 | }); 16 | 17 | const notificationsURL = 'https://api.github.com/notifications'; 18 | const HOMEDIR = process.env[(process.platform === 'WIN32') ? 'USERPROFILE' : 'HOME']; 19 | const gitConfig = '.git-config'; 20 | 21 | function configExists() { 22 | if (!fs.existsSync(`${HOMEDIR}/${gitConfig}`)) { 23 | return false; 24 | } 25 | 26 | if (!fs.existsSync(`${HOMEDIR}/${gitConfig}/config.json`)) { 27 | return false; 28 | } 29 | 30 | return fs.readFileSync(`${HOMEDIR}/${gitConfig}/config.json`); 31 | } 32 | 33 | function saveConfig(params) { 34 | const userconfig = { 35 | username: params.username, 36 | password: params.password, 37 | }; 38 | 39 | if (!fs.existsSync(`${HOMEDIR}/${gitConfig}`)) { 40 | fs.mkdir(`${HOMEDIR}/${gitConfig}`); 41 | fs.writeFileSync(`${HOMEDIR}/${gitConfig}/config.json`, JSON.stringify(userconfig)); 42 | } else { 43 | fs.writeFileSync(`${HOMEDIR}/${gitConfig}/config.json`, JSON.stringify(userconfig)); 44 | } 45 | } 46 | 47 | function optGit() { 48 | co(function* () { 49 | if (!configExists()) { 50 | const username = yield prompt('GitHub Username: '); 51 | const password = yield prompt.password('GitHub Password: '); 52 | saveConfig({ username, password }); 53 | } 54 | 55 | const userConfig = JSON.parse(configExists()); 56 | spinner.start(); 57 | const notificationsMap = {}; 58 | const notificationsArray = []; 59 | const gitRequest = request.defaults({ 60 | headers: { 61 | 'User-Agent': 'ua', 62 | }, 63 | auth: { 64 | username: userConfig.username, 65 | password: userConfig.password, 66 | }, 67 | }); 68 | 69 | gitRequest(notificationsURL, (err, resp, body) => { 70 | if (err) { 71 | console.log(`Error: ${err}`.red); 72 | process.exit(0); 73 | } 74 | 75 | const notifications = JSON.parse(body); 76 | 77 | spinner.stop(); 78 | if (!notifications.length) { 79 | console.log(chalk.green('No new notifications')); 80 | process.exit(); 81 | } 82 | 83 | for (let i = 0; i < notifications.length; i + 1) { 84 | const notification = notifications[i]; 85 | notificationsArray.push(notification.subject.title); 86 | notificationsMap[notification.subject.title] = notification; 87 | } 88 | 89 | inquirer.prompt([{ 90 | type: 'list', 91 | name: 'choice', 92 | message: 'Select notification...', 93 | choices: notificationsArray, 94 | }, 95 | ]).then((answer) => { 96 | const notification = notificationsMap[answer.choice]; 97 | 98 | console.log(`${chalk.yellow('Type :')} ${notification.subject.type}`); 99 | console.log(`${chalk.yellow('Repo :')} ${notification.repository.name}`); 100 | console.log(`${chalk.yellow('Title :')} ${notification.subject.title}`); 101 | console.log(`${chalk.yellow('URL :')} ${notification.repository.url}`); 102 | 103 | inquirer.prompt([{ 104 | type: 'confirm', 105 | name: 'Open', 106 | message: 'Open in Browser?', 107 | }, 108 | ]).then((browser) => { 109 | if (browser.Open) { 110 | setTimeout(() => { 111 | childProcess.exec(`${openCmd} https://www.github.com/${notification.repository.full_name}/issues`, () => { 112 | }); 113 | }, 300); 114 | } 115 | }); 116 | }); 117 | }); 118 | }); 119 | } 120 | 121 | module.exports = optGit; 122 | -------------------------------------------------------------------------------- /src/options/optWeather.js: -------------------------------------------------------------------------------- 1 | const request = require('request'); 2 | const chalk = require('chalk'); 3 | const ora = require('ora'); 4 | const emoji = require('node-emoji'); 5 | 6 | let spinner; 7 | const openWeatherPrefix = 'http://api.openweathermap.org/data/2.5/'; 8 | const key = '59a950ae5e900327f88558d5cce6dfae'; 9 | 10 | const emojis = { 11 | '01d': 'sunny', 12 | '02d': 'partly_sunny', 13 | '03d': 'cloud', 14 | '04d': 'cloud', 15 | '09d': 'rain_cloud', 16 | '10d': 'partly_sunny_rain', 17 | '11d': 'partly_sunny_rain', 18 | '13d': 'snowflake', 19 | '50d': 'wind_blowing_face', 20 | '01n': 'full_moon_with_face', 21 | '02n': 'cloud', 22 | '03n': 'cloud', 23 | '04n': 'cloud', 24 | '09n': 'rain_cloud', 25 | '10n': 'rain_cloud', 26 | '11n': 'lightning', 27 | '13n': 'snowflake', 28 | '50n': 'wind_blowing_face', 29 | }; 30 | 31 | function capitalize(string) { 32 | return string.charAt(0).toUpperCase() + string.slice(1).toLowerCase(); 33 | } 34 | 35 | function weatherUnitAPI(command, formatted = false) { 36 | switch (true) { 37 | case (command.fahrenheit): 38 | return formatted ? '°F' : 'imperial'; 39 | case (command.kelvin): 40 | return formatted ? 'K' : undefined; 41 | case (command.celsius): 42 | default: 43 | return formatted ? '°C' : 'metric'; 44 | } 45 | } 46 | 47 | function getWeatherIcon(iconID) { 48 | return emoji.get(emojis[iconID]); 49 | } 50 | 51 | function logWeather(address, date, weatherObject, weatherUnit) { 52 | const { icon, main, description } = weatherObject.weather[0]; 53 | const { city, country } = address; 54 | const { temp, temp_min: tempMin, temp_max: tempMax } = weatherObject.main; 55 | console.log(`${city}, ${country} | ${chalk.yellow(date.toDateString())}`); 56 | console.log(`${getWeatherIcon(icon)} ${main} | ${capitalize(description)}`); 57 | console.log(`Temperature ${chalk.blue(temp, weatherUnit)}`); 58 | console.log(`Min. ${chalk.blue(tempMin, weatherUnit)} | Max. ${chalk.blue(tempMax, weatherUnit)}`); 59 | console.log(); 60 | } 61 | 62 | function logForecast(address, weatherObject, weatherUnit) { 63 | console.log(`${address.city}, ${address.country}`); 64 | weatherObject.list 65 | .map((weather) => { 66 | const date = new Date(weather.dt_txt); 67 | const { icon, main, description } = weather.weather[0]; 68 | const { temp, temp_min: tempMin, temp_max: tempMax } = weather.main; 69 | 70 | return { date, icon, main, description, temp, tempMin, tempMax }; 71 | }) 72 | .filter(weather => weather.date.getHours() === 12) 73 | .forEach((weather) => { 74 | const { date, icon, main, description, temp, tempMin, tempMax } = weather; 75 | console.log(); 76 | console.log(`${chalk.yellow(date.toDateString(), ' | ', date.getHours(), 'h')}`); 77 | console.log(`${getWeatherIcon(icon)} ${main} | ${capitalize(description)}`); 78 | console.log(`Temperature ${chalk.blue(temp, weatherUnit)}`); 79 | console.log(`Min. ${chalk.blue(tempMin, weatherUnit)} | Max. ${chalk.blue(tempMax, weatherUnit)}`); 80 | console.log(); 81 | }); 82 | } 83 | 84 | function getWeather(address, command) { 85 | const searchType = command.name() === 'weather' ? 'weather' : 'forecast'; 86 | const latAndLon = `lat=${address.lat}&lon=${address.lon}`; 87 | const units = `units=${weatherUnitAPI(command)}`; 88 | const APICall = `${openWeatherPrefix}${searchType}?${latAndLon}&${units}&APPID=${key}`; 89 | const formattedWeatherUnit = weatherUnitAPI(command, true); 90 | 91 | request(APICall, (error, response, body) => { 92 | spinner.stop(); 93 | if (!error && response.statusCode === 200) { 94 | const weatherObject = JSON.parse(body); 95 | 96 | console.log(); 97 | if (command.name() === 'weather') { 98 | const date = new Date(weatherObject.dt * 1000); 99 | logWeather(address, date, weatherObject, formattedWeatherUnit); 100 | } else { 101 | logForecast(address, weatherObject, formattedWeatherUnit); 102 | } 103 | } 104 | }); 105 | } 106 | 107 | function getAddress(ip, command) { 108 | request(`http://ip-api.com/json/${ip}`, (error, response, body) => { 109 | if (!error && response.statusCode === 200) { 110 | const address = JSON.parse(body); 111 | getWeather(address, command); 112 | } 113 | }); 114 | } 115 | 116 | function optWeather(command) { 117 | const loadingType = command.name() === 'weather' ? 'weather' : 'forecast'; 118 | spinner = ora({ 119 | text: `Loading ${loadingType}`, 120 | color: 'yellow', 121 | }).start(); 122 | request('https://api.ipify.org?format=json', (error, response, body) => { 123 | if (!error && response.statusCode === 200) { 124 | const ip = JSON.parse(body).ip; 125 | getAddress(ip, command); 126 | } 127 | }); 128 | } 129 | 130 | module.exports = optWeather; 131 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env node 2 | const commander = require('commander'); 3 | const chalk = require('chalk'); 4 | const currVersion = require('../package.json').version; 5 | const optSearch = require('./options/optSearch'); 6 | const optWeather = require('./options/optWeather'); 7 | const optIP = require('./options/optIP'); 8 | const optSpeed = require('./options/optSpeed'); 9 | const optCurrency = require('./options/optCurrency'); 10 | const optDefinition = require('./options/optDefinition'); 11 | const optTranslate = require('./options/optTranslate'); 12 | const optUpload = require('./options/optUpload'); 13 | const optQuote = require('./options/optQuote'); 14 | const optChuckNorris = require('./options/optChuckNorris'); 15 | const optGit = require('./options/optGit'); 16 | const optRepo = require('./options/optRepo'); 17 | const optTwitter = require('./options/optTwitter'); 18 | const optDate = require('./options/optDate'); 19 | 20 | commander 21 | .command('chuck') 22 | .description('Get Chuck Norris facts') 23 | .action(command => optChuckNorris(command)); 24 | 25 | commander 26 | .command('currency') 27 | .alias('cur') 28 | .description('Get currency rates') 29 | .option('-b, --base ', 'Sets which base currency will be compared against the others (Default: USD)') 30 | .option('-s, --symbols ', 'Sets which currencies you want to compare against the base currency (Default: All currencies)') 31 | .action(command => optCurrency(command)); 32 | 33 | commander 34 | .command('date ') 35 | .description('Add or subtract date') 36 | .alias('dt') 37 | .option('-d, --date ', 'Sets the start date (Default: Current Date)') 38 | .option('-p, --period ', 'Sets the period. Day(d), Month(M), Year(y), Week(w) (Default: d)', 'd') 39 | .option('-a, --add', 'Inform to add value to date (Default Option)', true) 40 | .option('-s, --subtract', 'Inform to subtract value from date', false) 41 | .action((value, command) => optDate(value, command)); 42 | 43 | commander 44 | .command('definition') 45 | .alias('d') 46 | .description('Get definition of words') 47 | .option('-s, --synonym ', 'Get synonyms of a specific word') 48 | .action(command => optDefinition(command)); 49 | 50 | commander 51 | .command('ip') 52 | .description('Get the your public and local IP address') 53 | .action(command => optIP(command)); 54 | 55 | commander 56 | .command('quote') 57 | .alias('q') 58 | .description('Get an inspirational quote') 59 | .action(command => optQuote(command)); 60 | 61 | commander 62 | .command('forecast') 63 | .alias('f') 64 | .description('Get weather forecast of five days ahead') 65 | .option('-c, --celsius', 'Get the weather in celsius unit (Default)') 66 | .option('-f, --fahrenheit', 'Get the weather in fahrenheit unit') 67 | .option('-k, --kelvin', 'Get the weather in kelvin unit') 68 | .action(command => optWeather(command)); 69 | 70 | commander 71 | .command('git') 72 | .description('Notifications from GitHub') 73 | .action(command => optGit(command)); 74 | 75 | commander 76 | .command('repo') 77 | .description('Open current Github/Gitlab project page') 78 | .action(command => optRepo(command)); 79 | 80 | commander 81 | .command('search [query...]') 82 | .alias('s') 83 | .description('Search string on Google') 84 | .action(query => optSearch(query)); 85 | 86 | commander 87 | .command('speed') 88 | .description('Get the speed of your connection') 89 | .action(command => optSpeed(command)); 90 | 91 | commander 92 | .command('translation [text...]') 93 | .alias('t') 94 | .description('Get translations for words') 95 | .option('-l, --list', 'List all possible language combinations of translation to insert on --fromto') 96 | .option('-f, --fromto ', 'The translation direction. As a pair of language codes separated by a hyphen ("from"-"to"). For example, en-ru indicates translating from English to Russian.') 97 | .option('-t, --text [text...]', 'Insert all the text you want to translate after this flag') 98 | .action((textToTranslateArray, options) => optTranslate(textToTranslateArray, options)); 99 | 100 | commander 101 | .command('tweets [query...]') 102 | .alias('tw') 103 | .description('Search string on Twitter') 104 | .action(query => optTwitter(query)); 105 | 106 | commander 107 | .command('upload ') 108 | .alias('u') 109 | .description('Uploads a file and generates a link for download') 110 | .option('-e, --expiration ', 'Set custom time for generated link to expirate, default is 14 days') 111 | .action((file, options) => optUpload(file, options)); 112 | 113 | commander 114 | .version(currVersion) 115 | .command('weather') 116 | .alias('w') 117 | .description('Get weather') 118 | .option('-c, --celsius', 'Get the weather in celsius unit (Default)') 119 | .option('-f, --fahrenheit', 'Get the weather in fahrenheit unit') 120 | .option('-k, --kelvin', 'Get the weather in kelvin unit') 121 | .action(command => optWeather(command)); 122 | 123 | commander.on('*', (command) => { 124 | console.log(`The command "${chalk.red(command)}" does not exist`); 125 | console.log(`Please refer to the help section ${chalk.blue('getme -h')} for options`); 126 | }); 127 | 128 | commander.parse(process.argv); 129 | -------------------------------------------------------------------------------- /src/options/optWeather.test.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable no-unused-expressions */ 2 | /* eslint-disable no-underscore-dangle */ 3 | 4 | const chai = require('chai'); 5 | const sinonChai = require('sinon-chai'); 6 | const sinon = require('sinon'); 7 | const nock = require('nock'); 8 | const rewire = require('rewire'); 9 | 10 | const optWeather = rewire('./optWeather'); 11 | const expect = chai.expect; 12 | chai.use(sinonChai); 13 | 14 | const stubs = require('../../stubs/weather'); 15 | 16 | let consoleStub; 17 | let commanderMock; 18 | let responseAPIMock; 19 | let responseAddressMock; 20 | let weatherResponseMock; 21 | let forecastResponseMock; 22 | 23 | describe('optWeather', () => { 24 | beforeEach(() => { 25 | responseAPIMock = JSON.stringify({ ip: '179.215.28.27' }); // Response is valid JSON 26 | 27 | nock('https://api.ipify.org') 28 | .get('/') 29 | .query({ format: 'json' }) // GET Query for the API 30 | .reply(200, responseAPIMock); 31 | 32 | responseAddressMock = JSON.stringify({ 33 | city: 'Niterói', 34 | country: 'Brazil', 35 | countryCode: 'BR', 36 | lat: -22.9021, 37 | lon: -43.1303, 38 | }); 39 | 40 | nock('http://ip-api.com') 41 | .get(`/json/${JSON.parse(responseAPIMock).ip}`) 42 | .reply(200, responseAddressMock); 43 | 44 | consoleStub = sinon.stub(console, 'log'); 45 | commanderMock = {}; 46 | 47 | forecastResponseMock = stubs.forecastResponseMock; 48 | weatherResponseMock = stubs.weatherResponseMock; 49 | }); 50 | 51 | afterEach(() => { 52 | console.log.restore(); 53 | }); 54 | 55 | it('should log weather', (done) => { 56 | const openWeatherPrefix = 'http://api.openweathermap.org'; 57 | nock(openWeatherPrefix) 58 | .get('/data/2.5/weather') 59 | .query({ 60 | lat: -22.9021, 61 | lon: -43.1303, 62 | units: 'metric', 63 | APPID: '59a950ae5e900327f88558d5cce6dfae', 64 | }) 65 | .reply(200, weatherResponseMock); 66 | 67 | commanderMock.name = () => 'weather'; 68 | optWeather(commanderMock); 69 | setTimeout(() => { 70 | expect(consoleStub).to.have.been.calledWithMatch(/Niterói, Brazil | Wed Jan 04 2017/); 71 | expect(consoleStub).to.have.been.calledWithMatch(/30.57 °C/); 72 | expect(consoleStub).to.have.been.calledWithMatch(/28 °C/); 73 | expect(consoleStub).to.have.been.calledWithMatch(/33 °C/); 74 | done(); 75 | }, 300); 76 | }); 77 | 78 | it('should log forecast', (done) => { 79 | const openWeatherPrefix = 'http://api.openweathermap.org'; 80 | nock(openWeatherPrefix) 81 | .get('/data/2.5/forecast') 82 | .query({ 83 | lat: -22.9021, 84 | lon: -43.1303, 85 | units: 'metric', 86 | APPID: '59a950ae5e900327f88558d5cce6dfae', 87 | }) 88 | .reply(200, forecastResponseMock); 89 | 90 | commanderMock.name = () => 'forecast'; 91 | optWeather(commanderMock); 92 | setTimeout(() => { 93 | JSON.parse(forecastResponseMock).list 94 | .forEach((item) => { 95 | const { temp, temp_min: tempMin, temp_max: tempMax } = item.main; 96 | if (new Date(item.dt).getHours() === 12) { 97 | expect(consoleStub).to.have.been.calledWithMatch(temp); 98 | expect(consoleStub).to.have.been.calledWithMatch(tempMin); 99 | expect(consoleStub).to.have.been.calledWithMatch(tempMax); 100 | } else { 101 | expect(consoleStub).not.to.have.been.calledWithMatch(temp); 102 | expect(consoleStub).not.to.have.been.calledWithMatch(tempMin); 103 | expect(consoleStub).not.to.have.been.calledWithMatch(tempMax); 104 | } 105 | }); 106 | done(); 107 | }, 300); 108 | }); 109 | 110 | it('should use fahrenheit', (done) => { 111 | const openWeatherPrefix = 'http://api.openweathermap.org'; 112 | commanderMock.name = () => 'forecast'; 113 | commanderMock.fahrenheit = true; 114 | 115 | nock(openWeatherPrefix) 116 | .get('/data/2.5/forecast') 117 | .query({ 118 | lat: -22.9021, 119 | lon: -43.1303, 120 | units: 'imperial', 121 | APPID: '59a950ae5e900327f88558d5cce6dfae', 122 | }) 123 | .reply(200, forecastResponseMock); 124 | 125 | optWeather(commanderMock); 126 | setTimeout(() => { 127 | expect(consoleStub).to.have.been.calledWithMatch(/27.2 °F/); 128 | done(); 129 | }, 300); 130 | }); 131 | 132 | it('should use celsius', (done) => { 133 | const openWeatherPrefix = 'http://api.openweathermap.org'; 134 | commanderMock.name = () => 'forecast'; 135 | commanderMock.celsius = true; 136 | 137 | nock(openWeatherPrefix) 138 | .get('/data/2.5/forecast') 139 | .query({ 140 | lat: -22.9021, 141 | lon: -43.1303, 142 | units: 'metric', 143 | APPID: '59a950ae5e900327f88558d5cce6dfae', 144 | }) 145 | .reply(200, forecastResponseMock); 146 | 147 | optWeather(commanderMock); 148 | setTimeout(() => { 149 | expect(consoleStub).to.have.been.calledWithMatch(/27.2 °C/); 150 | done(); 151 | }, 300); 152 | }); 153 | 154 | it('should use kelvin', (done) => { 155 | const openWeatherPrefix = 'http://api.openweathermap.org'; 156 | commanderMock.name = () => 'forecast'; 157 | commanderMock.kelvin = true; 158 | 159 | nock(openWeatherPrefix) 160 | .get('/data/2.5/forecast') 161 | .query({ 162 | lat: -22.9021, 163 | lon: -43.1303, 164 | units: 'undefined', 165 | APPID: '59a950ae5e900327f88558d5cce6dfae', 166 | }) 167 | .reply(200, forecastResponseMock); 168 | 169 | optWeather(commanderMock); 170 | setTimeout(() => { 171 | expect(consoleStub).to.have.been.calledWithMatch(/27.2 K/); 172 | done(); 173 | }, 300); 174 | }); 175 | }); 176 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![getme](./getme-sm.png) 2 | 3 | CLI utility for everyday tasks 4 | 5 | With `getme` you can get weather, forecast, currency rate, upload files, IP address, word definitions, text translations, internet speed, do google searches, get inspirational quotes and get Chuck Norris jokes. 6 | 7 | ✨ All from the terminal ✨ 8 | 9 | [![NPM](https://nodei.co/npm/getme.png?downloads=true)](https://nodei.co/npm/getme/) 10 | 11 | [![npm](https://img.shields.io/npm/v/getme.svg)](https://www.npmjs.com/package/getme) 12 | [![Travis](https://img.shields.io/travis/gabrielgodoy/getme.svg)]() 13 | [![npm](https://img.shields.io/npm/dm/getme.svg)]() 14 | [![Coverage Status](https://coveralls.io/repos/github/gabrielgodoy/getme/badge.svg?branch=master)](https://coveralls.io/github/gabrielgodoy/getme?branch=master) 15 | 16 | Install it globally 17 | 18 | `npm i getme -g` 19 | 20 | ### Getme Options 21 | 22 | | command | definition | 23 | |----------------------------------------------| :--------------------------------------------------------------------------------| 24 | |`getme -h, --help` or `getme [COMMAND] -h, --help` | Output usage information | 25 | |`getme chuck` | Displays a random Chuck Norris joke | 26 | |`getme cur, currency [base] [currs]` | Get currency rates against a base currency (default base USD, default currencies All) | 27 | |`getme d, definition [word]` | Get word definitions (Only works for english words) | 28 | |`getme d, definition -s [word]` | Get synonyms of a specific word (Only works for english words) | 29 | |`getme dt, date [options] [value]` | Get x days from now, and the corresponding day of the week | 30 | |`getme f, forecast [unit]` | Get weather forecast of 5 days ahead, default unit is Celsius | 31 | |`getme git` | Get new notifications from GitHub | 32 | |`getme repo` | Opens current Github project page in the browser | 33 | |`getme ip` | Get public and network IP addresses | 34 | |`getme q, quote` | Displays an inspirational quote and its author | 35 | |`getme s, search [query]` | Search in Google | 36 | |`getme speed` | Get internet speed based on [speedtest](http://www.speedtest.net/) | 37 | |`getme t, translation [options]` | Get translations of text from a language to another | 38 | |`getme tw, search [query]` | Search on twitter | 39 | |`getme u, upload [filepath][options]` | Uploads a file to file.io and generates a link for you to share that file | 40 | |`getme w, weather [unit]` | Get weather, default unit is Celsius, can be **celsius, fahrenheit, or kelvin** | 41 | 42 | 43 | 44 | ## Google search 45 | `getme search dogs and cats` Opens browser, searching for "dogs and cats" 46 | 47 | ![getme-search](./gifs/getme-search.gif) 48 | 49 | 50 | 51 | ## GitHub notifications 52 | `getme git` Option to open selected notification in browser also. 53 | 54 | ## Github Repository 55 | `getme repo` Open current Github project repository in the browser 56 | 57 | 58 | 59 | ## Weather and forecast 60 | `getme weather` Weather in celsius 61 | 62 | `getme weather -f` Weather in fahrenheit 63 | 64 | `getme forecast` Forecast of five days ahead in celsius 65 | 66 | `getme forecast -f` Forecast of five days ahead in fahrenheit 67 | 68 | ![getme-weather](./gifs/getme-weather.gif) 69 | 70 | 71 | 72 | ## Currency rates 73 | `getme currency -s JPY,BRL,CAD` Get JPY, BRL and CAD currencies where base currency is USD (USD is default if no base currency is set) 74 | 75 | `getme currency -b EUR -s USD,BRL` Get USD and BRL currency where base currency is EUR 76 | 77 | ![getme-currency](./gifs/getme-currency.gif) 78 | 79 | ##### Currency options 80 | Most common base currencies to be passed as parameter: 81 | - USD (Dollar) Default 82 | - EUR (Euro) 83 | 84 | For entire list of possible currency initials: 85 | [European Central Bank](http://www.ecb.europa.eu/stats/exchange/eurofxref/html/index.en.html) 86 | 87 | 88 | ## Public and network IP addresses 89 | `getme ip` 90 | 91 | ![getme-ip](./gifs/getme-ip.gif) 92 | 93 | 94 | 95 | ## Internet download/upload speed, and your ping 96 | `getme speed` 97 | 98 | ![getme-speed](./gifs/getme-speed.gif) 99 | 100 | 101 | 102 | ## Word definitions (Only works for english words) 103 | `getme definition chair` Get definitions for the word chair 104 | 105 | ![getme-definition](./gifs/getme-definition.gif) 106 | 107 | 108 | 109 | ## Word synonyms 110 | `getme definition -s teacher` Get synonyms for the word teacher 111 | 112 | 113 | 114 | ## Text translations 115 | `getme translation --fromto en-pt --text The book is on the table` Translate from English to Portuguese "the book is on the table" becomes "O livro está sobre a mesa" 116 | 117 | `getme translation --fromto es-en --text El libro está sobre la mesa` Translate from Spanish to English "El libro está sobre la mesa" becomes "The book is on the table" 118 | 119 | All text after the `--text` flag will be interpreted as text to be translated 120 | 121 | `--fromto` works as a pair of language codes separated by a hyphen ("from"-"to"). For example, en-ru indicates translating from English to Russian. 122 | 123 | To get a list of all the possible --fromto combinations, type 124 | 125 | `getme translation --list` or `getme translation -l` 126 | 127 | 128 | ![getme-translation](./gifs/getme-translation.gif) 129 | 130 | 131 | 132 | ## Inspirational quotes 133 | `getme quote` 134 | `getme q` 135 | 136 | ![getme-quote](./gifs/getme-quote.gif) 137 | 138 | ## Upload files and generate links 139 | 140 | Usage: 141 | `getme upload 'path/to/file'` 142 | Example: `getme upload ~/Desktop/test.txt` 143 | 144 | Setting custom link expiration 145 | 146 | Example: `getme upload ~/Desktop/test.txt -e 1w` 147 | 148 | File is uploaded and link will expire in one week 149 | 150 | If no expiration is declared, default link expiration is 14 days 151 | 152 | Expiration can be in 153 | - days. Example: '1d', '10d' 154 | - weeks. Example: '1w', '5w' 155 | - months. Example: '1m', '5m' 156 | - years. Example: '1y', '5y' 157 | 158 | ![getme-upload](./gifs/getme-upload.gif) 159 | 160 | 161 | 162 | ## Twitter search 163 | 164 | - `getme tweets #node #npm` 165 | - `getme tw node npm` 166 | 167 | You can search by using @ or #. 168 | 169 | ### Example 170 | 171 | Important: 172 | 173 | After the file is downloaded from the generated link, just once, this link will no longer work, it will be destroyed. They call file.io the snapchat for files 174 | 175 | File is anonymous and is erased after link expires also, and cannot be retrieved later by accesing the generated link 176 | 177 | Read more in [file.io](https://www.file.io/) 178 | 179 | 180 | 181 | ## Dates calculation 182 | 183 | Usage: 184 | ```getme date|dt [value]``` 185 | 186 | - value - Integer value of period to add/subtract 187 | - --period, -p - Specify the period of time ([See momentJS Keys](https://momentjs.com/docs/#/manipulating/add/)) 188 | - --date, -d - Specify the base date to manipulate (Default: Today) 189 | - --add, -a - Set the current action to add to date (This is the default option) 190 | - --subtract, -s - Set the current action to subtract to date (Not compatible with add parameter) 191 | 192 | ### Examples 193 | Add 5 days to current date 194 | `getme date 5` 195 | 196 | Add 10 days to specific date 197 | `getme dt 10 -d 2017-05-01` 198 | 199 | Subtract 2 months 200 | `getme dt 2 --period M -d 2017-05-01` 201 | 202 | 203 | And much more 🚀 204 | 205 | --- 206 | 207 | ## Contributing 208 | 209 | We'd love to have your helping hand on getme! 210 | 211 | See [CONTRIBUTING.md](https://github.com/gabrielgodoy/getme/blob/master/CONTRIBUTING.md) for more information on what we're looking for and how to get started. 212 | 213 | 214 | ## License 215 | 216 | [MIT License](https://gabrielgodoy.mit-license.org/license.html) @ [Gabriel Godoy](https://github.com/gabrielgodoy) 217 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abbrev@1, abbrev@1.0.x: 6 | version "1.0.9" 7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135" 8 | 9 | acorn-jsx@^3.0.0: 10 | version "3.0.1" 11 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 12 | dependencies: 13 | acorn "^3.0.4" 14 | 15 | acorn@^3.0.4: 16 | version "3.3.0" 17 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 18 | 19 | acorn@^5.0.1: 20 | version "5.0.3" 21 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.0.3.tgz#c460df08491463f028ccb82eab3730bf01087b3d" 22 | 23 | ajv-keywords@^1.0.0: 24 | version "1.5.1" 25 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 26 | 27 | ajv@^4.7.0, ajv@^4.9.1: 28 | version "4.11.8" 29 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 30 | dependencies: 31 | co "^4.6.0" 32 | json-stable-stringify "^1.0.1" 33 | 34 | align-text@^0.1.1, align-text@^0.1.3: 35 | version "0.1.4" 36 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 37 | dependencies: 38 | kind-of "^3.0.2" 39 | longest "^1.0.1" 40 | repeat-string "^1.5.2" 41 | 42 | amdefine@>=0.0.4: 43 | version "1.0.1" 44 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 45 | 46 | ansi-escapes@^1.1.0: 47 | version "1.4.0" 48 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 49 | 50 | ansi-regex@^2.0.0: 51 | version "2.1.1" 52 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 53 | 54 | ansi-styles@^2.2.1: 55 | version "2.2.1" 56 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 57 | 58 | anymatch@^1.3.0: 59 | version "1.3.0" 60 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 61 | dependencies: 62 | arrify "^1.0.0" 63 | micromatch "^2.1.5" 64 | 65 | aproba@^1.0.3: 66 | version "1.1.2" 67 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.2.tgz#45c6629094de4e96f693ef7eab74ae079c240fc1" 68 | 69 | are-we-there-yet@~1.1.2: 70 | version "1.1.4" 71 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 72 | dependencies: 73 | delegates "^1.0.0" 74 | readable-stream "^2.0.6" 75 | 76 | argparse@^1.0.7: 77 | version "1.0.9" 78 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 79 | dependencies: 80 | sprintf-js "~1.0.2" 81 | 82 | arr-diff@^2.0.0: 83 | version "2.0.0" 84 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 85 | dependencies: 86 | arr-flatten "^1.0.1" 87 | 88 | arr-flatten@^1.0.1: 89 | version "1.0.3" 90 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.3.tgz#a274ed85ac08849b6bd7847c4580745dc51adfb1" 91 | 92 | array-union@^1.0.1: 93 | version "1.0.2" 94 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 95 | dependencies: 96 | array-uniq "^1.0.1" 97 | 98 | array-uniq@^1.0.1: 99 | version "1.0.3" 100 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 101 | 102 | array-unique@^0.2.1: 103 | version "0.2.1" 104 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 105 | 106 | arrify@^1.0.0: 107 | version "1.0.1" 108 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 109 | 110 | asn1@~0.2.3: 111 | version "0.2.3" 112 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 113 | 114 | assert-plus@1.0.0, assert-plus@^1.0.0: 115 | version "1.0.0" 116 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 117 | 118 | assert-plus@^0.2.0: 119 | version "0.2.0" 120 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 121 | 122 | assertion-error@^1.0.1: 123 | version "1.0.2" 124 | resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.0.2.tgz#13ca515d86206da0bac66e834dd397d87581094c" 125 | 126 | async-each@^1.0.0: 127 | version "1.0.1" 128 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 129 | 130 | async@1.x, async@^1.4.0: 131 | version "1.5.2" 132 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 133 | 134 | asynckit@^0.4.0: 135 | version "0.4.0" 136 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 137 | 138 | aws-sign2@~0.6.0: 139 | version "0.6.0" 140 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 141 | 142 | aws4@^1.2.1: 143 | version "1.6.0" 144 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 145 | 146 | babel-cli@^6.18.0: 147 | version "6.24.1" 148 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.24.1.tgz#207cd705bba61489b2ea41b5312341cf6aca2283" 149 | dependencies: 150 | babel-core "^6.24.1" 151 | babel-polyfill "^6.23.0" 152 | babel-register "^6.24.1" 153 | babel-runtime "^6.22.0" 154 | commander "^2.8.1" 155 | convert-source-map "^1.1.0" 156 | fs-readdir-recursive "^1.0.0" 157 | glob "^7.0.0" 158 | lodash "^4.2.0" 159 | output-file-sync "^1.1.0" 160 | path-is-absolute "^1.0.0" 161 | slash "^1.0.0" 162 | source-map "^0.5.0" 163 | v8flags "^2.0.10" 164 | optionalDependencies: 165 | chokidar "^1.6.1" 166 | 167 | babel-code-frame@^6.16.0, babel-code-frame@^6.22.0: 168 | version "6.22.0" 169 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 170 | dependencies: 171 | chalk "^1.1.0" 172 | esutils "^2.0.2" 173 | js-tokens "^3.0.0" 174 | 175 | babel-core@^6.24.1: 176 | version "6.24.1" 177 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.1.tgz#8c428564dce1e1f41fb337ec34f4c3b022b5ad83" 178 | dependencies: 179 | babel-code-frame "^6.22.0" 180 | babel-generator "^6.24.1" 181 | babel-helpers "^6.24.1" 182 | babel-messages "^6.23.0" 183 | babel-register "^6.24.1" 184 | babel-runtime "^6.22.0" 185 | babel-template "^6.24.1" 186 | babel-traverse "^6.24.1" 187 | babel-types "^6.24.1" 188 | babylon "^6.11.0" 189 | convert-source-map "^1.1.0" 190 | debug "^2.1.1" 191 | json5 "^0.5.0" 192 | lodash "^4.2.0" 193 | minimatch "^3.0.2" 194 | path-is-absolute "^1.0.0" 195 | private "^0.1.6" 196 | slash "^1.0.0" 197 | source-map "^0.5.0" 198 | 199 | babel-generator@^6.24.1: 200 | version "6.24.1" 201 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.1.tgz#e715f486c58ded25649d888944d52aa07c5d9497" 202 | dependencies: 203 | babel-messages "^6.23.0" 204 | babel-runtime "^6.22.0" 205 | babel-types "^6.24.1" 206 | detect-indent "^4.0.0" 207 | jsesc "^1.3.0" 208 | lodash "^4.2.0" 209 | source-map "^0.5.0" 210 | trim-right "^1.0.1" 211 | 212 | babel-helper-call-delegate@^6.24.1: 213 | version "6.24.1" 214 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 215 | dependencies: 216 | babel-helper-hoist-variables "^6.24.1" 217 | babel-runtime "^6.22.0" 218 | babel-traverse "^6.24.1" 219 | babel-types "^6.24.1" 220 | 221 | babel-helper-define-map@^6.24.1: 222 | version "6.24.1" 223 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.24.1.tgz#7a9747f258d8947d32d515f6aa1c7bd02204a080" 224 | dependencies: 225 | babel-helper-function-name "^6.24.1" 226 | babel-runtime "^6.22.0" 227 | babel-types "^6.24.1" 228 | lodash "^4.2.0" 229 | 230 | babel-helper-function-name@^6.24.1: 231 | version "6.24.1" 232 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 233 | dependencies: 234 | babel-helper-get-function-arity "^6.24.1" 235 | babel-runtime "^6.22.0" 236 | babel-template "^6.24.1" 237 | babel-traverse "^6.24.1" 238 | babel-types "^6.24.1" 239 | 240 | babel-helper-get-function-arity@^6.24.1: 241 | version "6.24.1" 242 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 243 | dependencies: 244 | babel-runtime "^6.22.0" 245 | babel-types "^6.24.1" 246 | 247 | babel-helper-hoist-variables@^6.24.1: 248 | version "6.24.1" 249 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 250 | dependencies: 251 | babel-runtime "^6.22.0" 252 | babel-types "^6.24.1" 253 | 254 | babel-helper-optimise-call-expression@^6.24.1: 255 | version "6.24.1" 256 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 257 | dependencies: 258 | babel-runtime "^6.22.0" 259 | babel-types "^6.24.1" 260 | 261 | babel-helper-regex@^6.24.1: 262 | version "6.24.1" 263 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz#d36e22fab1008d79d88648e32116868128456ce8" 264 | dependencies: 265 | babel-runtime "^6.22.0" 266 | babel-types "^6.24.1" 267 | lodash "^4.2.0" 268 | 269 | babel-helper-replace-supers@^6.24.1: 270 | version "6.24.1" 271 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 272 | dependencies: 273 | babel-helper-optimise-call-expression "^6.24.1" 274 | babel-messages "^6.23.0" 275 | babel-runtime "^6.22.0" 276 | babel-template "^6.24.1" 277 | babel-traverse "^6.24.1" 278 | babel-types "^6.24.1" 279 | 280 | babel-helpers@^6.24.1: 281 | version "6.24.1" 282 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 283 | dependencies: 284 | babel-runtime "^6.22.0" 285 | babel-template "^6.24.1" 286 | 287 | babel-messages@^6.23.0: 288 | version "6.23.0" 289 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 290 | dependencies: 291 | babel-runtime "^6.22.0" 292 | 293 | babel-plugin-check-es2015-constants@^6.22.0: 294 | version "6.22.0" 295 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 296 | dependencies: 297 | babel-runtime "^6.22.0" 298 | 299 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 300 | version "6.22.0" 301 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 302 | dependencies: 303 | babel-runtime "^6.22.0" 304 | 305 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 306 | version "6.22.0" 307 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 308 | dependencies: 309 | babel-runtime "^6.22.0" 310 | 311 | babel-plugin-transform-es2015-block-scoping@^6.24.1: 312 | version "6.24.1" 313 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.24.1.tgz#76c295dc3a4741b1665adfd3167215dcff32a576" 314 | dependencies: 315 | babel-runtime "^6.22.0" 316 | babel-template "^6.24.1" 317 | babel-traverse "^6.24.1" 318 | babel-types "^6.24.1" 319 | lodash "^4.2.0" 320 | 321 | babel-plugin-transform-es2015-classes@^6.24.1: 322 | version "6.24.1" 323 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 324 | dependencies: 325 | babel-helper-define-map "^6.24.1" 326 | babel-helper-function-name "^6.24.1" 327 | babel-helper-optimise-call-expression "^6.24.1" 328 | babel-helper-replace-supers "^6.24.1" 329 | babel-messages "^6.23.0" 330 | babel-runtime "^6.22.0" 331 | babel-template "^6.24.1" 332 | babel-traverse "^6.24.1" 333 | babel-types "^6.24.1" 334 | 335 | babel-plugin-transform-es2015-computed-properties@^6.24.1: 336 | version "6.24.1" 337 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 338 | dependencies: 339 | babel-runtime "^6.22.0" 340 | babel-template "^6.24.1" 341 | 342 | babel-plugin-transform-es2015-destructuring@^6.22.0: 343 | version "6.23.0" 344 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 345 | dependencies: 346 | babel-runtime "^6.22.0" 347 | 348 | babel-plugin-transform-es2015-duplicate-keys@^6.24.1: 349 | version "6.24.1" 350 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 351 | dependencies: 352 | babel-runtime "^6.22.0" 353 | babel-types "^6.24.1" 354 | 355 | babel-plugin-transform-es2015-for-of@^6.22.0: 356 | version "6.23.0" 357 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 358 | dependencies: 359 | babel-runtime "^6.22.0" 360 | 361 | babel-plugin-transform-es2015-function-name@^6.24.1: 362 | version "6.24.1" 363 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 364 | dependencies: 365 | babel-helper-function-name "^6.24.1" 366 | babel-runtime "^6.22.0" 367 | babel-types "^6.24.1" 368 | 369 | babel-plugin-transform-es2015-literals@^6.22.0: 370 | version "6.22.0" 371 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 372 | dependencies: 373 | babel-runtime "^6.22.0" 374 | 375 | babel-plugin-transform-es2015-modules-amd@^6.24.1: 376 | version "6.24.1" 377 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 378 | dependencies: 379 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 380 | babel-runtime "^6.22.0" 381 | babel-template "^6.24.1" 382 | 383 | babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 384 | version "6.24.1" 385 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz#d3e310b40ef664a36622200097c6d440298f2bfe" 386 | dependencies: 387 | babel-plugin-transform-strict-mode "^6.24.1" 388 | babel-runtime "^6.22.0" 389 | babel-template "^6.24.1" 390 | babel-types "^6.24.1" 391 | 392 | babel-plugin-transform-es2015-modules-systemjs@^6.24.1: 393 | version "6.24.1" 394 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 395 | dependencies: 396 | babel-helper-hoist-variables "^6.24.1" 397 | babel-runtime "^6.22.0" 398 | babel-template "^6.24.1" 399 | 400 | babel-plugin-transform-es2015-modules-umd@^6.24.1: 401 | version "6.24.1" 402 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 403 | dependencies: 404 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 405 | babel-runtime "^6.22.0" 406 | babel-template "^6.24.1" 407 | 408 | babel-plugin-transform-es2015-object-super@^6.24.1: 409 | version "6.24.1" 410 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 411 | dependencies: 412 | babel-helper-replace-supers "^6.24.1" 413 | babel-runtime "^6.22.0" 414 | 415 | babel-plugin-transform-es2015-parameters@^6.24.1: 416 | version "6.24.1" 417 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 418 | dependencies: 419 | babel-helper-call-delegate "^6.24.1" 420 | babel-helper-get-function-arity "^6.24.1" 421 | babel-runtime "^6.22.0" 422 | babel-template "^6.24.1" 423 | babel-traverse "^6.24.1" 424 | babel-types "^6.24.1" 425 | 426 | babel-plugin-transform-es2015-shorthand-properties@^6.24.1: 427 | version "6.24.1" 428 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 429 | dependencies: 430 | babel-runtime "^6.22.0" 431 | babel-types "^6.24.1" 432 | 433 | babel-plugin-transform-es2015-spread@^6.22.0: 434 | version "6.22.0" 435 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 436 | dependencies: 437 | babel-runtime "^6.22.0" 438 | 439 | babel-plugin-transform-es2015-sticky-regex@^6.24.1: 440 | version "6.24.1" 441 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 442 | dependencies: 443 | babel-helper-regex "^6.24.1" 444 | babel-runtime "^6.22.0" 445 | babel-types "^6.24.1" 446 | 447 | babel-plugin-transform-es2015-template-literals@^6.22.0: 448 | version "6.22.0" 449 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 450 | dependencies: 451 | babel-runtime "^6.22.0" 452 | 453 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0: 454 | version "6.23.0" 455 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 456 | dependencies: 457 | babel-runtime "^6.22.0" 458 | 459 | babel-plugin-transform-es2015-unicode-regex@^6.24.1: 460 | version "6.24.1" 461 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 462 | dependencies: 463 | babel-helper-regex "^6.24.1" 464 | babel-runtime "^6.22.0" 465 | regexpu-core "^2.0.0" 466 | 467 | babel-plugin-transform-regenerator@^6.24.1: 468 | version "6.24.1" 469 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.24.1.tgz#b8da305ad43c3c99b4848e4fe4037b770d23c418" 470 | dependencies: 471 | regenerator-transform "0.9.11" 472 | 473 | babel-plugin-transform-strict-mode@^6.24.1: 474 | version "6.24.1" 475 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 476 | dependencies: 477 | babel-runtime "^6.22.0" 478 | babel-types "^6.24.1" 479 | 480 | babel-polyfill@^6.23.0: 481 | version "6.23.0" 482 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.23.0.tgz#8364ca62df8eafb830499f699177466c3b03499d" 483 | dependencies: 484 | babel-runtime "^6.22.0" 485 | core-js "^2.4.0" 486 | regenerator-runtime "^0.10.0" 487 | 488 | babel-preset-es2015@^6.18.0: 489 | version "6.24.1" 490 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939" 491 | dependencies: 492 | babel-plugin-check-es2015-constants "^6.22.0" 493 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 494 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 495 | babel-plugin-transform-es2015-block-scoping "^6.24.1" 496 | babel-plugin-transform-es2015-classes "^6.24.1" 497 | babel-plugin-transform-es2015-computed-properties "^6.24.1" 498 | babel-plugin-transform-es2015-destructuring "^6.22.0" 499 | babel-plugin-transform-es2015-duplicate-keys "^6.24.1" 500 | babel-plugin-transform-es2015-for-of "^6.22.0" 501 | babel-plugin-transform-es2015-function-name "^6.24.1" 502 | babel-plugin-transform-es2015-literals "^6.22.0" 503 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 504 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 505 | babel-plugin-transform-es2015-modules-systemjs "^6.24.1" 506 | babel-plugin-transform-es2015-modules-umd "^6.24.1" 507 | babel-plugin-transform-es2015-object-super "^6.24.1" 508 | babel-plugin-transform-es2015-parameters "^6.24.1" 509 | babel-plugin-transform-es2015-shorthand-properties "^6.24.1" 510 | babel-plugin-transform-es2015-spread "^6.22.0" 511 | babel-plugin-transform-es2015-sticky-regex "^6.24.1" 512 | babel-plugin-transform-es2015-template-literals "^6.22.0" 513 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 514 | babel-plugin-transform-es2015-unicode-regex "^6.24.1" 515 | babel-plugin-transform-regenerator "^6.24.1" 516 | 517 | babel-register@^6.24.1: 518 | version "6.24.1" 519 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 520 | dependencies: 521 | babel-core "^6.24.1" 522 | babel-runtime "^6.22.0" 523 | core-js "^2.4.0" 524 | home-or-tmp "^2.0.0" 525 | lodash "^4.2.0" 526 | mkdirp "^0.5.1" 527 | source-map-support "^0.4.2" 528 | 529 | babel-runtime@^6.18.0, babel-runtime@^6.22.0: 530 | version "6.23.0" 531 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 532 | dependencies: 533 | core-js "^2.4.0" 534 | regenerator-runtime "^0.10.0" 535 | 536 | babel-template@^6.24.1: 537 | version "6.24.1" 538 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.24.1.tgz#04ae514f1f93b3a2537f2a0f60a5a45fb8308333" 539 | dependencies: 540 | babel-runtime "^6.22.0" 541 | babel-traverse "^6.24.1" 542 | babel-types "^6.24.1" 543 | babylon "^6.11.0" 544 | lodash "^4.2.0" 545 | 546 | babel-traverse@^6.24.1: 547 | version "6.24.1" 548 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.24.1.tgz#ab36673fd356f9a0948659e7b338d5feadb31695" 549 | dependencies: 550 | babel-code-frame "^6.22.0" 551 | babel-messages "^6.23.0" 552 | babel-runtime "^6.22.0" 553 | babel-types "^6.24.1" 554 | babylon "^6.15.0" 555 | debug "^2.2.0" 556 | globals "^9.0.0" 557 | invariant "^2.2.0" 558 | lodash "^4.2.0" 559 | 560 | babel-types@^6.19.0, babel-types@^6.24.1: 561 | version "6.24.1" 562 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.24.1.tgz#a136879dc15b3606bda0d90c1fc74304c2ff0975" 563 | dependencies: 564 | babel-runtime "^6.22.0" 565 | esutils "^2.0.2" 566 | lodash "^4.2.0" 567 | to-fast-properties "^1.0.1" 568 | 569 | babylon@^6.11.0, babylon@^6.15.0: 570 | version "6.17.2" 571 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.2.tgz#201d25ef5f892c41bae49488b08db0dd476e9f5c" 572 | 573 | balanced-match@^0.4.1: 574 | version "0.4.2" 575 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 576 | 577 | bcrypt-pbkdf@^1.0.0: 578 | version "1.0.1" 579 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 580 | dependencies: 581 | tweetnacl "^0.14.3" 582 | 583 | binary-extensions@^1.0.0: 584 | version "1.8.0" 585 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 586 | 587 | block-stream@*: 588 | version "0.0.9" 589 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 590 | dependencies: 591 | inherits "~2.0.0" 592 | 593 | boom@2.x.x: 594 | version "2.10.1" 595 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 596 | dependencies: 597 | hoek "2.x.x" 598 | 599 | brace-expansion@^1.1.7: 600 | version "1.1.7" 601 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.7.tgz#3effc3c50e000531fb720eaff80f0ae8ef23cf59" 602 | dependencies: 603 | balanced-match "^0.4.1" 604 | concat-map "0.0.1" 605 | 606 | braces@^1.8.2: 607 | version "1.8.5" 608 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 609 | dependencies: 610 | expand-range "^1.8.1" 611 | preserve "^0.2.0" 612 | repeat-element "^1.1.2" 613 | 614 | browser-stdout@1.3.0: 615 | version "1.3.0" 616 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f" 617 | 618 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 619 | version "1.1.1" 620 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 621 | 622 | caller-path@^0.1.0: 623 | version "0.1.0" 624 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 625 | dependencies: 626 | callsites "^0.2.0" 627 | 628 | callsites@^0.2.0: 629 | version "0.2.0" 630 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 631 | 632 | camelcase@^1.0.2: 633 | version "1.2.1" 634 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 635 | 636 | caseless@~0.11.0: 637 | version "0.11.0" 638 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 639 | 640 | caseless@~0.12.0: 641 | version "0.12.0" 642 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 643 | 644 | center-align@^0.1.1: 645 | version "0.1.3" 646 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 647 | dependencies: 648 | align-text "^0.1.3" 649 | lazy-cache "^1.0.3" 650 | 651 | "chai@>=1.9.2 <4.0.0", chai@^3.5.0: 652 | version "3.5.0" 653 | resolved "https://registry.yarnpkg.com/chai/-/chai-3.5.0.tgz#4d02637b067fe958bdbfdd3a40ec56fef7373247" 654 | dependencies: 655 | assertion-error "^1.0.1" 656 | deep-eql "^0.1.3" 657 | type-detect "^1.0.0" 658 | 659 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 660 | version "1.1.3" 661 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 662 | dependencies: 663 | ansi-styles "^2.2.1" 664 | escape-string-regexp "^1.0.2" 665 | has-ansi "^2.0.0" 666 | strip-ansi "^3.0.0" 667 | supports-color "^2.0.0" 668 | 669 | chokidar@^1.4.3, chokidar@^1.6.1: 670 | version "1.7.0" 671 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 672 | dependencies: 673 | anymatch "^1.3.0" 674 | async-each "^1.0.0" 675 | glob-parent "^2.0.0" 676 | inherits "^2.0.1" 677 | is-binary-path "^1.0.0" 678 | is-glob "^2.0.0" 679 | path-is-absolute "^1.0.0" 680 | readdirp "^2.0.0" 681 | optionalDependencies: 682 | fsevents "^1.0.0" 683 | 684 | ci-info@^1.0.0: 685 | version "1.0.0" 686 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 687 | 688 | circular-json@^0.3.1: 689 | version "0.3.1" 690 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 691 | 692 | cli-cursor@^1.0.1: 693 | version "1.0.2" 694 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 695 | dependencies: 696 | restore-cursor "^1.0.1" 697 | 698 | cli-cursor@^2.1.0: 699 | version "2.1.0" 700 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 701 | dependencies: 702 | restore-cursor "^2.0.0" 703 | 704 | cli-spinners@^1.0.0: 705 | version "1.0.0" 706 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-1.0.0.tgz#ef987ed3d48391ac3dab9180b406a742180d6e6a" 707 | 708 | cli-width@^2.0.0: 709 | version "2.1.0" 710 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 711 | 712 | cliui@^2.1.0: 713 | version "2.1.0" 714 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 715 | dependencies: 716 | center-align "^0.1.1" 717 | right-align "^0.1.1" 718 | wordwrap "0.0.2" 719 | 720 | co-prompt@^1.0.0: 721 | version "1.0.0" 722 | resolved "https://registry.yarnpkg.com/co-prompt/-/co-prompt-1.0.0.tgz#fb370e9edac48576b27a732fe5d7f21d9fc6e6f6" 723 | dependencies: 724 | keypress "~0.2.1" 725 | 726 | co@^4.6.0: 727 | version "4.6.0" 728 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 729 | 730 | code-point-at@^1.0.0: 731 | version "1.1.0" 732 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 733 | 734 | combined-stream@^1.0.5, combined-stream@~1.0.5: 735 | version "1.0.5" 736 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 737 | dependencies: 738 | delayed-stream "~1.0.0" 739 | 740 | commander@2.9.0, commander@^2.8.1, commander@^2.9.0: 741 | version "2.9.0" 742 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 743 | dependencies: 744 | graceful-readlink ">= 1.0.0" 745 | 746 | concat-map@0.0.1: 747 | version "0.0.1" 748 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 749 | 750 | concat-stream@^1.5.2: 751 | version "1.6.0" 752 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 753 | dependencies: 754 | inherits "^2.0.3" 755 | readable-stream "^2.2.2" 756 | typedarray "^0.0.6" 757 | 758 | configstore@^1.0.0: 759 | version "1.4.0" 760 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-1.4.0.tgz#c35781d0501d268c25c54b8b17f6240e8a4fb021" 761 | dependencies: 762 | graceful-fs "^4.1.2" 763 | mkdirp "^0.5.0" 764 | object-assign "^4.0.1" 765 | os-tmpdir "^1.0.0" 766 | osenv "^0.1.0" 767 | uuid "^2.0.1" 768 | write-file-atomic "^1.1.2" 769 | xdg-basedir "^2.0.0" 770 | 771 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 772 | version "1.1.0" 773 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 774 | 775 | contains-path@^0.1.0: 776 | version "0.1.0" 777 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 778 | 779 | convert-source-map@^1.1.0: 780 | version "1.5.0" 781 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 782 | 783 | core-js@^2.4.0: 784 | version "2.4.1" 785 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 786 | 787 | core-util-is@~1.0.0: 788 | version "1.0.2" 789 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 790 | 791 | coveralls@^2.11.15: 792 | version "2.13.1" 793 | resolved "https://registry.yarnpkg.com/coveralls/-/coveralls-2.13.1.tgz#d70bb9acc1835ec4f063ff9dac5423c17b11f178" 794 | dependencies: 795 | js-yaml "3.6.1" 796 | lcov-parse "0.0.10" 797 | log-driver "1.2.5" 798 | minimist "1.2.0" 799 | request "2.79.0" 800 | 801 | cryptiles@2.x.x: 802 | version "2.0.5" 803 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 804 | dependencies: 805 | boom "2.x.x" 806 | 807 | d@1: 808 | version "1.0.0" 809 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 810 | dependencies: 811 | es5-ext "^0.10.9" 812 | 813 | dashdash@^1.12.0: 814 | version "1.14.1" 815 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 816 | dependencies: 817 | assert-plus "^1.0.0" 818 | 819 | debug@2.2.0: 820 | version "2.2.0" 821 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 822 | dependencies: 823 | ms "0.7.1" 824 | 825 | debug@2.6.0: 826 | version "2.6.0" 827 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.0.tgz#bc596bcabe7617f11d9fa15361eded5608b8499b" 828 | dependencies: 829 | ms "0.7.2" 830 | 831 | debug@^2.1.1, debug@^2.2.0: 832 | version "2.6.8" 833 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 834 | dependencies: 835 | ms "2.0.0" 836 | 837 | decamelize@^1.0.0: 838 | version "1.2.0" 839 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 840 | 841 | deep-eql@^0.1.3: 842 | version "0.1.3" 843 | resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-0.1.3.tgz#ef558acab8de25206cd713906d74e56930eb69f2" 844 | dependencies: 845 | type-detect "0.1.1" 846 | 847 | deep-equal@^1.0.0: 848 | version "1.0.1" 849 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" 850 | 851 | deep-extend@~0.4.0: 852 | version "0.4.2" 853 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 854 | 855 | deep-is@~0.1.3: 856 | version "0.1.3" 857 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 858 | 859 | del@^2.0.2: 860 | version "2.2.2" 861 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 862 | dependencies: 863 | globby "^5.0.0" 864 | is-path-cwd "^1.0.0" 865 | is-path-in-cwd "^1.0.0" 866 | object-assign "^4.0.1" 867 | pify "^2.0.0" 868 | pinkie-promise "^2.0.0" 869 | rimraf "^2.2.8" 870 | 871 | delayed-stream@~1.0.0: 872 | version "1.0.0" 873 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 874 | 875 | delegates@^1.0.0: 876 | version "1.0.0" 877 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 878 | 879 | detect-indent@^4.0.0: 880 | version "4.0.0" 881 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 882 | dependencies: 883 | repeating "^2.0.0" 884 | 885 | diff@3.2.0, diff@^3.1.0: 886 | version "3.2.0" 887 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 888 | 889 | doctrine@1.5.0: 890 | version "1.5.0" 891 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 892 | dependencies: 893 | esutils "^2.0.2" 894 | isarray "^1.0.0" 895 | 896 | doctrine@^2.0.0: 897 | version "2.0.0" 898 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" 899 | dependencies: 900 | esutils "^2.0.2" 901 | isarray "^1.0.0" 902 | 903 | draftlog@^1.0.12: 904 | version "1.0.12" 905 | resolved "https://registry.yarnpkg.com/draftlog/-/draftlog-1.0.12.tgz#7db6a3c5b62106bb32dd4a35d67bcccb6c7d9da0" 906 | 907 | duplexer@~0.1.1: 908 | version "0.1.1" 909 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" 910 | 911 | duplexify@^3.2.0: 912 | version "3.5.0" 913 | resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.5.0.tgz#1aa773002e1578457e9d9d4a50b0ccaaebcbd604" 914 | dependencies: 915 | end-of-stream "1.0.0" 916 | inherits "^2.0.1" 917 | readable-stream "^2.0.0" 918 | stream-shift "^1.0.0" 919 | 920 | ecc-jsbn@~0.1.1: 921 | version "0.1.1" 922 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 923 | dependencies: 924 | jsbn "~0.1.0" 925 | 926 | end-of-stream@1.0.0: 927 | version "1.0.0" 928 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.0.0.tgz#d4596e702734a93e40e9af864319eabd99ff2f0e" 929 | dependencies: 930 | once "~1.3.0" 931 | 932 | error-ex@^1.2.0: 933 | version "1.3.1" 934 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 935 | dependencies: 936 | is-arrayish "^0.2.1" 937 | 938 | es5-ext@^0.10.14, es5-ext@^0.10.9, es5-ext@~0.10.14: 939 | version "0.10.22" 940 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.22.tgz#1876c51f990769c112c781ea3ebe89f84fd39071" 941 | dependencies: 942 | es6-iterator "2" 943 | es6-symbol "~3.1" 944 | 945 | es6-iterator@2, es6-iterator@^2.0.1, es6-iterator@~2.0.1: 946 | version "2.0.1" 947 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512" 948 | dependencies: 949 | d "1" 950 | es5-ext "^0.10.14" 951 | es6-symbol "^3.1" 952 | 953 | es6-map@^0.1.3: 954 | version "0.1.5" 955 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" 956 | dependencies: 957 | d "1" 958 | es5-ext "~0.10.14" 959 | es6-iterator "~2.0.1" 960 | es6-set "~0.1.5" 961 | es6-symbol "~3.1.1" 962 | event-emitter "~0.3.5" 963 | 964 | es6-promise@^3.0.2: 965 | version "3.3.1" 966 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-3.3.1.tgz#a08cdde84ccdbf34d027a1451bc91d4bcd28a613" 967 | 968 | es6-set@~0.1.5: 969 | version "0.1.5" 970 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" 971 | dependencies: 972 | d "1" 973 | es5-ext "~0.10.14" 974 | es6-iterator "~2.0.1" 975 | es6-symbol "3.1.1" 976 | event-emitter "~0.3.5" 977 | 978 | es6-symbol@3.1.1, es6-symbol@^3.1, es6-symbol@^3.1.1, es6-symbol@~3.1, es6-symbol@~3.1.1: 979 | version "3.1.1" 980 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 981 | dependencies: 982 | d "1" 983 | es5-ext "~0.10.14" 984 | 985 | es6-weak-map@^2.0.1: 986 | version "2.0.2" 987 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" 988 | dependencies: 989 | d "1" 990 | es5-ext "^0.10.14" 991 | es6-iterator "^2.0.1" 992 | es6-symbol "^3.1.1" 993 | 994 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 995 | version "1.0.5" 996 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 997 | 998 | escodegen@1.8.x: 999 | version "1.8.1" 1000 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 1001 | dependencies: 1002 | esprima "^2.7.1" 1003 | estraverse "^1.9.1" 1004 | esutils "^2.0.2" 1005 | optionator "^0.8.1" 1006 | optionalDependencies: 1007 | source-map "~0.2.0" 1008 | 1009 | escope@^3.6.0: 1010 | version "3.6.0" 1011 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 1012 | dependencies: 1013 | es6-map "^0.1.3" 1014 | es6-weak-map "^2.0.1" 1015 | esrecurse "^4.1.0" 1016 | estraverse "^4.1.1" 1017 | 1018 | eslint-config-airbnb-base@^11.0.0: 1019 | version "11.2.0" 1020 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-11.2.0.tgz#19a9dc4481a26f70904545ec040116876018f853" 1021 | 1022 | eslint-import-resolver-node@^0.2.0: 1023 | version "0.2.3" 1024 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.2.3.tgz#5add8106e8c928db2cba232bcd9efa846e3da16c" 1025 | dependencies: 1026 | debug "^2.2.0" 1027 | object-assign "^4.0.1" 1028 | resolve "^1.1.6" 1029 | 1030 | eslint-module-utils@^2.0.0: 1031 | version "2.0.0" 1032 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.0.0.tgz#a6f8c21d901358759cdc35dbac1982ae1ee58bce" 1033 | dependencies: 1034 | debug "2.2.0" 1035 | pkg-dir "^1.0.0" 1036 | 1037 | eslint-plugin-import@^2.2.0: 1038 | version "2.3.0" 1039 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.3.0.tgz#37c801e0ada0e296cbdf20c3f393acb5b52af36b" 1040 | dependencies: 1041 | builtin-modules "^1.1.1" 1042 | contains-path "^0.1.0" 1043 | debug "^2.2.0" 1044 | doctrine "1.5.0" 1045 | eslint-import-resolver-node "^0.2.0" 1046 | eslint-module-utils "^2.0.0" 1047 | has "^1.0.1" 1048 | lodash.cond "^4.3.0" 1049 | minimatch "^3.0.3" 1050 | read-pkg-up "^2.0.0" 1051 | 1052 | eslint@^3.12.2: 1053 | version "3.19.0" 1054 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.19.0.tgz#c8fc6201c7f40dd08941b87c085767386a679acc" 1055 | dependencies: 1056 | babel-code-frame "^6.16.0" 1057 | chalk "^1.1.3" 1058 | concat-stream "^1.5.2" 1059 | debug "^2.1.1" 1060 | doctrine "^2.0.0" 1061 | escope "^3.6.0" 1062 | espree "^3.4.0" 1063 | esquery "^1.0.0" 1064 | estraverse "^4.2.0" 1065 | esutils "^2.0.2" 1066 | file-entry-cache "^2.0.0" 1067 | glob "^7.0.3" 1068 | globals "^9.14.0" 1069 | ignore "^3.2.0" 1070 | imurmurhash "^0.1.4" 1071 | inquirer "^0.12.0" 1072 | is-my-json-valid "^2.10.0" 1073 | is-resolvable "^1.0.0" 1074 | js-yaml "^3.5.1" 1075 | json-stable-stringify "^1.0.0" 1076 | levn "^0.3.0" 1077 | lodash "^4.0.0" 1078 | mkdirp "^0.5.0" 1079 | natural-compare "^1.4.0" 1080 | optionator "^0.8.2" 1081 | path-is-inside "^1.0.1" 1082 | pluralize "^1.2.1" 1083 | progress "^1.1.8" 1084 | require-uncached "^1.0.2" 1085 | shelljs "^0.7.5" 1086 | strip-bom "^3.0.0" 1087 | strip-json-comments "~2.0.1" 1088 | table "^3.7.8" 1089 | text-table "~0.2.0" 1090 | user-home "^2.0.0" 1091 | 1092 | espree@^3.4.0: 1093 | version "3.4.3" 1094 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.3.tgz#2910b5ccd49ce893c2ffffaab4fd8b3a31b82374" 1095 | dependencies: 1096 | acorn "^5.0.1" 1097 | acorn-jsx "^3.0.0" 1098 | 1099 | esprima@2.7.x, esprima@^2.6.0, esprima@^2.7.1: 1100 | version "2.7.3" 1101 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 1102 | 1103 | esquery@^1.0.0: 1104 | version "1.0.0" 1105 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 1106 | dependencies: 1107 | estraverse "^4.0.0" 1108 | 1109 | esrecurse@^4.1.0: 1110 | version "4.1.0" 1111 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" 1112 | dependencies: 1113 | estraverse "~4.1.0" 1114 | object-assign "^4.0.1" 1115 | 1116 | estraverse@^1.9.1: 1117 | version "1.9.3" 1118 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 1119 | 1120 | estraverse@^4.0.0, estraverse@^4.1.1, estraverse@^4.2.0: 1121 | version "4.2.0" 1122 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1123 | 1124 | estraverse@~4.1.0: 1125 | version "4.1.1" 1126 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" 1127 | 1128 | esutils@^2.0.2: 1129 | version "2.0.2" 1130 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1131 | 1132 | event-emitter@~0.3.5: 1133 | version "0.3.5" 1134 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 1135 | dependencies: 1136 | d "1" 1137 | es5-ext "~0.10.14" 1138 | 1139 | event-stream@~3.3.0: 1140 | version "3.3.4" 1141 | resolved "https://registry.yarnpkg.com/event-stream/-/event-stream-3.3.4.tgz#4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571" 1142 | dependencies: 1143 | duplexer "~0.1.1" 1144 | from "~0" 1145 | map-stream "~0.1.0" 1146 | pause-stream "0.0.11" 1147 | split "0.3" 1148 | stream-combiner "~0.0.4" 1149 | through "~2.3.1" 1150 | 1151 | exit-hook@^1.0.0: 1152 | version "1.1.1" 1153 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1154 | 1155 | expand-brackets@^0.1.4: 1156 | version "0.1.5" 1157 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1158 | dependencies: 1159 | is-posix-bracket "^0.1.0" 1160 | 1161 | expand-range@^1.8.1: 1162 | version "1.8.2" 1163 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1164 | dependencies: 1165 | fill-range "^2.1.0" 1166 | 1167 | extend@~3.0.0: 1168 | version "3.0.1" 1169 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1170 | 1171 | external-editor@^2.0.1: 1172 | version "2.0.4" 1173 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.0.4.tgz#1ed9199da9cbfe2ef2f7a31b2fde8b0d12368972" 1174 | dependencies: 1175 | iconv-lite "^0.4.17" 1176 | jschardet "^1.4.2" 1177 | tmp "^0.0.31" 1178 | 1179 | extglob@^0.3.1: 1180 | version "0.3.2" 1181 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1182 | dependencies: 1183 | is-extglob "^1.0.0" 1184 | 1185 | extsprintf@1.0.2: 1186 | version "1.0.2" 1187 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1188 | 1189 | fast-levenshtein@~2.0.4: 1190 | version "2.0.6" 1191 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1192 | 1193 | figures@^1.3.5: 1194 | version "1.7.0" 1195 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1196 | dependencies: 1197 | escape-string-regexp "^1.0.5" 1198 | object-assign "^4.1.0" 1199 | 1200 | figures@^2.0.0: 1201 | version "2.0.0" 1202 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1203 | dependencies: 1204 | escape-string-regexp "^1.0.5" 1205 | 1206 | file-entry-cache@^2.0.0: 1207 | version "2.0.0" 1208 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1209 | dependencies: 1210 | flat-cache "^1.2.1" 1211 | object-assign "^4.0.1" 1212 | 1213 | filename-regex@^2.0.0: 1214 | version "2.0.1" 1215 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1216 | 1217 | fill-range@^2.1.0: 1218 | version "2.2.3" 1219 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1220 | dependencies: 1221 | is-number "^2.1.0" 1222 | isobject "^2.0.0" 1223 | randomatic "^1.1.3" 1224 | repeat-element "^1.1.2" 1225 | repeat-string "^1.5.2" 1226 | 1227 | find-parent-dir@^0.3.0: 1228 | version "0.3.0" 1229 | resolved "https://registry.yarnpkg.com/find-parent-dir/-/find-parent-dir-0.3.0.tgz#33c44b429ab2b2f0646299c5f9f718f376ff8d54" 1230 | 1231 | find-up@^1.0.0: 1232 | version "1.1.2" 1233 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1234 | dependencies: 1235 | path-exists "^2.0.0" 1236 | pinkie-promise "^2.0.0" 1237 | 1238 | find-up@^2.0.0: 1239 | version "2.1.0" 1240 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1241 | dependencies: 1242 | locate-path "^2.0.0" 1243 | 1244 | flat-cache@^1.2.1: 1245 | version "1.2.2" 1246 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 1247 | dependencies: 1248 | circular-json "^0.3.1" 1249 | del "^2.0.2" 1250 | graceful-fs "^4.1.2" 1251 | write "^0.2.1" 1252 | 1253 | for-in@^1.0.1: 1254 | version "1.0.2" 1255 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1256 | 1257 | for-own@^0.1.4: 1258 | version "0.1.5" 1259 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1260 | dependencies: 1261 | for-in "^1.0.1" 1262 | 1263 | forever-agent@~0.6.1: 1264 | version "0.6.1" 1265 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1266 | 1267 | form-data@~2.1.1: 1268 | version "2.1.4" 1269 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1270 | dependencies: 1271 | asynckit "^0.4.0" 1272 | combined-stream "^1.0.5" 1273 | mime-types "^2.1.12" 1274 | 1275 | formatio@1.2.0: 1276 | version "1.2.0" 1277 | resolved "https://registry.yarnpkg.com/formatio/-/formatio-1.2.0.tgz#f3b2167d9068c4698a8d51f4f760a39a54d818eb" 1278 | dependencies: 1279 | samsam "1.x" 1280 | 1281 | from@~0: 1282 | version "0.1.7" 1283 | resolved "https://registry.yarnpkg.com/from/-/from-0.1.7.tgz#83c60afc58b9c56997007ed1a768b3ab303a44fe" 1284 | 1285 | fs-readdir-recursive@^1.0.0: 1286 | version "1.0.0" 1287 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 1288 | 1289 | fs.realpath@^1.0.0: 1290 | version "1.0.0" 1291 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1292 | 1293 | fsevents@^1.0.0: 1294 | version "1.1.1" 1295 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.1.tgz#f19fd28f43eeaf761680e519a203c4d0b3d31aff" 1296 | dependencies: 1297 | nan "^2.3.0" 1298 | node-pre-gyp "^0.6.29" 1299 | 1300 | fstream-ignore@^1.0.5: 1301 | version "1.0.5" 1302 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1303 | dependencies: 1304 | fstream "^1.0.0" 1305 | inherits "2" 1306 | minimatch "^3.0.0" 1307 | 1308 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1309 | version "1.0.11" 1310 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1311 | dependencies: 1312 | graceful-fs "^4.1.2" 1313 | inherits "~2.0.0" 1314 | mkdirp ">=0.5 0" 1315 | rimraf "2" 1316 | 1317 | function-bind@^1.0.2: 1318 | version "1.1.0" 1319 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 1320 | 1321 | gauge@~2.7.3: 1322 | version "2.7.4" 1323 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1324 | dependencies: 1325 | aproba "^1.0.3" 1326 | console-control-strings "^1.0.0" 1327 | has-unicode "^2.0.0" 1328 | object-assign "^4.1.0" 1329 | signal-exit "^3.0.0" 1330 | string-width "^1.0.1" 1331 | strip-ansi "^3.0.1" 1332 | wide-align "^1.1.0" 1333 | 1334 | generate-function@^2.0.0: 1335 | version "2.0.0" 1336 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1337 | 1338 | generate-object-property@^1.1.0: 1339 | version "1.2.0" 1340 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1341 | dependencies: 1342 | is-property "^1.0.0" 1343 | 1344 | getpass@^0.1.1: 1345 | version "0.1.7" 1346 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1347 | dependencies: 1348 | assert-plus "^1.0.0" 1349 | 1350 | glob-base@^0.3.0: 1351 | version "0.3.0" 1352 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1353 | dependencies: 1354 | glob-parent "^2.0.0" 1355 | is-glob "^2.0.0" 1356 | 1357 | glob-parent@^2.0.0: 1358 | version "2.0.0" 1359 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1360 | dependencies: 1361 | is-glob "^2.0.0" 1362 | 1363 | glob@7.1.1: 1364 | version "7.1.1" 1365 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1366 | dependencies: 1367 | fs.realpath "^1.0.0" 1368 | inflight "^1.0.4" 1369 | inherits "2" 1370 | minimatch "^3.0.2" 1371 | once "^1.3.0" 1372 | path-is-absolute "^1.0.0" 1373 | 1374 | glob@^5.0.15: 1375 | version "5.0.15" 1376 | resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" 1377 | dependencies: 1378 | inflight "^1.0.4" 1379 | inherits "2" 1380 | minimatch "2 || 3" 1381 | once "^1.3.0" 1382 | path-is-absolute "^1.0.0" 1383 | 1384 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5: 1385 | version "7.1.2" 1386 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1387 | dependencies: 1388 | fs.realpath "^1.0.0" 1389 | inflight "^1.0.4" 1390 | inherits "2" 1391 | minimatch "^3.0.4" 1392 | once "^1.3.0" 1393 | path-is-absolute "^1.0.0" 1394 | 1395 | globals@^9.0.0, globals@^9.14.0: 1396 | version "9.17.0" 1397 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" 1398 | 1399 | globby@^5.0.0: 1400 | version "5.0.0" 1401 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1402 | dependencies: 1403 | array-union "^1.0.1" 1404 | arrify "^1.0.0" 1405 | glob "^7.0.3" 1406 | object-assign "^4.0.1" 1407 | pify "^2.0.0" 1408 | pinkie-promise "^2.0.0" 1409 | 1410 | got@^3.2.0: 1411 | version "3.3.1" 1412 | resolved "https://registry.yarnpkg.com/got/-/got-3.3.1.tgz#e5d0ed4af55fc3eef4d56007769d98192bcb2eca" 1413 | dependencies: 1414 | duplexify "^3.2.0" 1415 | infinity-agent "^2.0.0" 1416 | is-redirect "^1.0.0" 1417 | is-stream "^1.0.0" 1418 | lowercase-keys "^1.0.0" 1419 | nested-error-stacks "^1.0.0" 1420 | object-assign "^3.0.0" 1421 | prepend-http "^1.0.0" 1422 | read-all-stream "^3.0.0" 1423 | timed-out "^2.0.0" 1424 | 1425 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1426 | version "4.1.11" 1427 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1428 | 1429 | "graceful-readlink@>= 1.0.0": 1430 | version "1.0.1" 1431 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1432 | 1433 | growl@1.9.2: 1434 | version "1.9.2" 1435 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f" 1436 | 1437 | handlebars@^4.0.1: 1438 | version "4.0.10" 1439 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.10.tgz#3d30c718b09a3d96f23ea4cc1f403c4d3ba9ff4f" 1440 | dependencies: 1441 | async "^1.4.0" 1442 | optimist "^0.6.1" 1443 | source-map "^0.4.4" 1444 | optionalDependencies: 1445 | uglify-js "^2.6" 1446 | 1447 | har-schema@^1.0.5: 1448 | version "1.0.5" 1449 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1450 | 1451 | har-validator@~2.0.6: 1452 | version "2.0.6" 1453 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 1454 | dependencies: 1455 | chalk "^1.1.1" 1456 | commander "^2.9.0" 1457 | is-my-json-valid "^2.12.4" 1458 | pinkie-promise "^2.0.0" 1459 | 1460 | har-validator@~4.2.1: 1461 | version "4.2.1" 1462 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1463 | dependencies: 1464 | ajv "^4.9.1" 1465 | har-schema "^1.0.5" 1466 | 1467 | has-ansi@^2.0.0: 1468 | version "2.0.0" 1469 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1470 | dependencies: 1471 | ansi-regex "^2.0.0" 1472 | 1473 | has-flag@^1.0.0: 1474 | version "1.0.0" 1475 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1476 | 1477 | has-unicode@^2.0.0: 1478 | version "2.0.1" 1479 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1480 | 1481 | has@^1.0.1: 1482 | version "1.0.1" 1483 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1484 | dependencies: 1485 | function-bind "^1.0.2" 1486 | 1487 | hawk@~3.1.3: 1488 | version "3.1.3" 1489 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1490 | dependencies: 1491 | boom "2.x.x" 1492 | cryptiles "2.x.x" 1493 | hoek "2.x.x" 1494 | sntp "1.x.x" 1495 | 1496 | hoek@2.x.x: 1497 | version "2.16.3" 1498 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1499 | 1500 | home-or-tmp@^2.0.0: 1501 | version "2.0.0" 1502 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1503 | dependencies: 1504 | os-homedir "^1.0.0" 1505 | os-tmpdir "^1.0.1" 1506 | 1507 | hosted-git-info@^2.1.4: 1508 | version "2.4.2" 1509 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.2.tgz#0076b9f46a270506ddbaaea56496897460612a67" 1510 | 1511 | http-signature@~1.1.0: 1512 | version "1.1.1" 1513 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1514 | dependencies: 1515 | assert-plus "^0.2.0" 1516 | jsprim "^1.2.2" 1517 | sshpk "^1.7.0" 1518 | 1519 | husky@^0.13.3: 1520 | version "0.13.4" 1521 | resolved "https://registry.yarnpkg.com/husky/-/husky-0.13.4.tgz#48785c5028de3452a51c48c12c4f94b2124a1407" 1522 | dependencies: 1523 | chalk "^1.1.3" 1524 | find-parent-dir "^0.3.0" 1525 | is-ci "^1.0.9" 1526 | normalize-path "^1.0.0" 1527 | 1528 | iconv-lite@^0.4.17, iconv-lite@~0.4.11: 1529 | version "0.4.17" 1530 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.17.tgz#4fdaa3b38acbc2c031b045d0edcdfe1ecab18c8d" 1531 | 1532 | ignore-by-default@^1.0.0: 1533 | version "1.0.1" 1534 | resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" 1535 | 1536 | ignore@^3.2.0: 1537 | version "3.3.3" 1538 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.3.tgz#432352e57accd87ab3110e82d3fea0e47812156d" 1539 | 1540 | imurmurhash@^0.1.4: 1541 | version "0.1.4" 1542 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1543 | 1544 | infinity-agent@^2.0.0: 1545 | version "2.0.3" 1546 | resolved "https://registry.yarnpkg.com/infinity-agent/-/infinity-agent-2.0.3.tgz#45e0e2ff7a9eb030b27d62b74b3744b7a7ac4216" 1547 | 1548 | inflight@^1.0.4: 1549 | version "1.0.6" 1550 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1551 | dependencies: 1552 | once "^1.3.0" 1553 | wrappy "1" 1554 | 1555 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1: 1556 | version "2.0.3" 1557 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1558 | 1559 | ini@^1.3.4, ini@~1.3.0: 1560 | version "1.3.4" 1561 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1562 | 1563 | inquirer@^0.12.0: 1564 | version "0.12.0" 1565 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 1566 | dependencies: 1567 | ansi-escapes "^1.1.0" 1568 | ansi-regex "^2.0.0" 1569 | chalk "^1.0.0" 1570 | cli-cursor "^1.0.1" 1571 | cli-width "^2.0.0" 1572 | figures "^1.3.5" 1573 | lodash "^4.3.0" 1574 | readline2 "^1.0.1" 1575 | run-async "^0.1.0" 1576 | rx-lite "^3.1.2" 1577 | string-width "^1.0.1" 1578 | strip-ansi "^3.0.0" 1579 | through "^2.3.6" 1580 | 1581 | inquirer@^3.0.6: 1582 | version "3.0.6" 1583 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.0.6.tgz#e04aaa9d05b7a3cb9b0f407d04375f0447190347" 1584 | dependencies: 1585 | ansi-escapes "^1.1.0" 1586 | chalk "^1.0.0" 1587 | cli-cursor "^2.1.0" 1588 | cli-width "^2.0.0" 1589 | external-editor "^2.0.1" 1590 | figures "^2.0.0" 1591 | lodash "^4.3.0" 1592 | mute-stream "0.0.7" 1593 | run-async "^2.2.0" 1594 | rx "^4.1.0" 1595 | string-width "^2.0.0" 1596 | strip-ansi "^3.0.0" 1597 | through "^2.3.6" 1598 | 1599 | interpret@^1.0.0: 1600 | version "1.0.3" 1601 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.3.tgz#cbc35c62eeee73f19ab7b10a801511401afc0f90" 1602 | 1603 | invariant@^2.2.0: 1604 | version "2.2.2" 1605 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1606 | dependencies: 1607 | loose-envify "^1.0.0" 1608 | 1609 | is-arrayish@^0.2.1: 1610 | version "0.2.1" 1611 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1612 | 1613 | is-binary-path@^1.0.0: 1614 | version "1.0.1" 1615 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1616 | dependencies: 1617 | binary-extensions "^1.0.0" 1618 | 1619 | is-buffer@^1.1.5: 1620 | version "1.1.5" 1621 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1622 | 1623 | is-builtin-module@^1.0.0: 1624 | version "1.0.0" 1625 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1626 | dependencies: 1627 | builtin-modules "^1.0.0" 1628 | 1629 | is-ci@^1.0.9: 1630 | version "1.0.10" 1631 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 1632 | dependencies: 1633 | ci-info "^1.0.0" 1634 | 1635 | is-dotfile@^1.0.0: 1636 | version "1.0.3" 1637 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1638 | 1639 | is-equal-shallow@^0.1.3: 1640 | version "0.1.3" 1641 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1642 | dependencies: 1643 | is-primitive "^2.0.0" 1644 | 1645 | is-extendable@^0.1.1: 1646 | version "0.1.1" 1647 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1648 | 1649 | is-extglob@^1.0.0: 1650 | version "1.0.0" 1651 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1652 | 1653 | is-finite@^1.0.0: 1654 | version "1.0.2" 1655 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1656 | dependencies: 1657 | number-is-nan "^1.0.0" 1658 | 1659 | is-fullwidth-code-point@^1.0.0: 1660 | version "1.0.0" 1661 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1662 | dependencies: 1663 | number-is-nan "^1.0.0" 1664 | 1665 | is-fullwidth-code-point@^2.0.0: 1666 | version "2.0.0" 1667 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1668 | 1669 | is-glob@^2.0.0, is-glob@^2.0.1: 1670 | version "2.0.1" 1671 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1672 | dependencies: 1673 | is-extglob "^1.0.0" 1674 | 1675 | is-my-json-valid@^2.10.0, is-my-json-valid@^2.12.4: 1676 | version "2.16.0" 1677 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz#f079dd9bfdae65ee2038aae8acbc86ab109e3693" 1678 | dependencies: 1679 | generate-function "^2.0.0" 1680 | generate-object-property "^1.1.0" 1681 | jsonpointer "^4.0.0" 1682 | xtend "^4.0.0" 1683 | 1684 | is-npm@^1.0.0: 1685 | version "1.0.0" 1686 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 1687 | 1688 | is-number@^2.0.2, is-number@^2.1.0: 1689 | version "2.1.0" 1690 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1691 | dependencies: 1692 | kind-of "^3.0.2" 1693 | 1694 | is-path-cwd@^1.0.0: 1695 | version "1.0.0" 1696 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1697 | 1698 | is-path-in-cwd@^1.0.0: 1699 | version "1.0.0" 1700 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 1701 | dependencies: 1702 | is-path-inside "^1.0.0" 1703 | 1704 | is-path-inside@^1.0.0: 1705 | version "1.0.0" 1706 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 1707 | dependencies: 1708 | path-is-inside "^1.0.1" 1709 | 1710 | is-posix-bracket@^0.1.0: 1711 | version "0.1.1" 1712 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1713 | 1714 | is-primitive@^2.0.0: 1715 | version "2.0.0" 1716 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1717 | 1718 | is-promise@^2.1.0: 1719 | version "2.1.0" 1720 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1721 | 1722 | is-property@^1.0.0: 1723 | version "1.0.2" 1724 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1725 | 1726 | is-redirect@^1.0.0: 1727 | version "1.0.0" 1728 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 1729 | 1730 | is-resolvable@^1.0.0: 1731 | version "1.0.0" 1732 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 1733 | dependencies: 1734 | tryit "^1.0.1" 1735 | 1736 | is-stream@^1.0.0: 1737 | version "1.1.0" 1738 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1739 | 1740 | is-typedarray@~1.0.0: 1741 | version "1.0.0" 1742 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1743 | 1744 | isarray@0.0.1: 1745 | version "0.0.1" 1746 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 1747 | 1748 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1749 | version "1.0.0" 1750 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1751 | 1752 | isexe@^2.0.0: 1753 | version "2.0.0" 1754 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1755 | 1756 | isobject@^2.0.0: 1757 | version "2.1.0" 1758 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1759 | dependencies: 1760 | isarray "1.0.0" 1761 | 1762 | isstream@~0.1.2: 1763 | version "0.1.2" 1764 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1765 | 1766 | istanbul@^0.4.5: 1767 | version "0.4.5" 1768 | resolved "https://registry.yarnpkg.com/istanbul/-/istanbul-0.4.5.tgz#65c7d73d4c4da84d4f3ac310b918fb0b8033733b" 1769 | dependencies: 1770 | abbrev "1.0.x" 1771 | async "1.x" 1772 | escodegen "1.8.x" 1773 | esprima "2.7.x" 1774 | glob "^5.0.15" 1775 | handlebars "^4.0.1" 1776 | js-yaml "3.x" 1777 | mkdirp "0.5.x" 1778 | nopt "3.x" 1779 | once "1.x" 1780 | resolve "1.1.x" 1781 | supports-color "^3.1.0" 1782 | which "^1.1.1" 1783 | wordwrap "^1.0.0" 1784 | 1785 | jodid25519@^1.0.0: 1786 | version "1.0.2" 1787 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 1788 | dependencies: 1789 | jsbn "~0.1.0" 1790 | 1791 | js-tokens@^3.0.0: 1792 | version "3.0.1" 1793 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 1794 | 1795 | js-yaml@3.6.1, js-yaml@3.x, js-yaml@^3.5.1: 1796 | version "3.6.1" 1797 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.6.1.tgz#6e5fe67d8b205ce4d22fad05b7781e8dadcc4b30" 1798 | dependencies: 1799 | argparse "^1.0.7" 1800 | esprima "^2.6.0" 1801 | 1802 | jsbn@~0.1.0: 1803 | version "0.1.1" 1804 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1805 | 1806 | jschardet@^1.4.2: 1807 | version "1.4.2" 1808 | resolved "https://registry.yarnpkg.com/jschardet/-/jschardet-1.4.2.tgz#2aa107f142af4121d145659d44f50830961e699a" 1809 | 1810 | jsesc@^1.3.0: 1811 | version "1.3.0" 1812 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1813 | 1814 | jsesc@~0.5.0: 1815 | version "0.5.0" 1816 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1817 | 1818 | json-schema@0.2.3: 1819 | version "0.2.3" 1820 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1821 | 1822 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 1823 | version "1.0.1" 1824 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1825 | dependencies: 1826 | jsonify "~0.0.0" 1827 | 1828 | json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.1: 1829 | version "5.0.1" 1830 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1831 | 1832 | json3@3.3.2: 1833 | version "3.3.2" 1834 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" 1835 | 1836 | json5@^0.5.0: 1837 | version "0.5.1" 1838 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1839 | 1840 | jsonify@~0.0.0: 1841 | version "0.0.0" 1842 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1843 | 1844 | jsonpointer@^4.0.0: 1845 | version "4.0.1" 1846 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 1847 | 1848 | jsprim@^1.2.2: 1849 | version "1.4.0" 1850 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 1851 | dependencies: 1852 | assert-plus "1.0.0" 1853 | extsprintf "1.0.2" 1854 | json-schema "0.2.3" 1855 | verror "1.3.6" 1856 | 1857 | keypress@~0.2.1: 1858 | version "0.2.1" 1859 | resolved "https://registry.yarnpkg.com/keypress/-/keypress-0.2.1.tgz#1e80454250018dbad4c3fe94497d6e67b6269c77" 1860 | 1861 | kind-of@^3.0.2: 1862 | version "3.2.2" 1863 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1864 | dependencies: 1865 | is-buffer "^1.1.5" 1866 | 1867 | latest-version@^1.0.0: 1868 | version "1.0.1" 1869 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-1.0.1.tgz#72cfc46e3e8d1be651e1ebb54ea9f6ea96f374bb" 1870 | dependencies: 1871 | package-json "^1.0.0" 1872 | 1873 | lazy-cache@^1.0.3: 1874 | version "1.0.4" 1875 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1876 | 1877 | lcov-parse@0.0.10: 1878 | version "0.0.10" 1879 | resolved "https://registry.yarnpkg.com/lcov-parse/-/lcov-parse-0.0.10.tgz#1b0b8ff9ac9c7889250582b70b71315d9da6d9a3" 1880 | 1881 | levn@^0.3.0, levn@~0.3.0: 1882 | version "0.3.0" 1883 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1884 | dependencies: 1885 | prelude-ls "~1.1.2" 1886 | type-check "~0.3.2" 1887 | 1888 | load-json-file@^2.0.0: 1889 | version "2.0.0" 1890 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 1891 | dependencies: 1892 | graceful-fs "^4.1.2" 1893 | parse-json "^2.2.0" 1894 | pify "^2.0.0" 1895 | strip-bom "^3.0.0" 1896 | 1897 | locate-path@^2.0.0: 1898 | version "2.0.0" 1899 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1900 | dependencies: 1901 | p-locate "^2.0.0" 1902 | path-exists "^3.0.0" 1903 | 1904 | lodash._baseassign@^3.0.0: 1905 | version "3.2.0" 1906 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 1907 | dependencies: 1908 | lodash._basecopy "^3.0.0" 1909 | lodash.keys "^3.0.0" 1910 | 1911 | lodash._basecopy@^3.0.0: 1912 | version "3.0.1" 1913 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 1914 | 1915 | lodash._basecreate@^3.0.0: 1916 | version "3.0.3" 1917 | resolved "https://registry.yarnpkg.com/lodash._basecreate/-/lodash._basecreate-3.0.3.tgz#1bc661614daa7fc311b7d03bf16806a0213cf821" 1918 | 1919 | lodash._bindcallback@^3.0.0: 1920 | version "3.0.1" 1921 | resolved "https://registry.yarnpkg.com/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz#e531c27644cf8b57a99e17ed95b35c748789392e" 1922 | 1923 | lodash._createassigner@^3.0.0: 1924 | version "3.1.1" 1925 | resolved "https://registry.yarnpkg.com/lodash._createassigner/-/lodash._createassigner-3.1.1.tgz#838a5bae2fdaca63ac22dee8e19fa4e6d6970b11" 1926 | dependencies: 1927 | lodash._bindcallback "^3.0.0" 1928 | lodash._isiterateecall "^3.0.0" 1929 | lodash.restparam "^3.0.0" 1930 | 1931 | lodash._getnative@^3.0.0: 1932 | version "3.9.1" 1933 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 1934 | 1935 | lodash._isiterateecall@^3.0.0: 1936 | version "3.0.9" 1937 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 1938 | 1939 | lodash.assign@^3.0.0: 1940 | version "3.2.0" 1941 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-3.2.0.tgz#3ce9f0234b4b2223e296b8fa0ac1fee8ebca64fa" 1942 | dependencies: 1943 | lodash._baseassign "^3.0.0" 1944 | lodash._createassigner "^3.0.0" 1945 | lodash.keys "^3.0.0" 1946 | 1947 | lodash.cond@^4.3.0: 1948 | version "4.5.2" 1949 | resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5" 1950 | 1951 | lodash.create@3.1.1: 1952 | version "3.1.1" 1953 | resolved "https://registry.yarnpkg.com/lodash.create/-/lodash.create-3.1.1.tgz#d7f2849f0dbda7e04682bb8cd72ab022461debe7" 1954 | dependencies: 1955 | lodash._baseassign "^3.0.0" 1956 | lodash._basecreate "^3.0.0" 1957 | lodash._isiterateecall "^3.0.0" 1958 | 1959 | lodash.defaults@^3.1.2: 1960 | version "3.1.2" 1961 | resolved "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-3.1.2.tgz#c7308b18dbf8bc9372d701a73493c61192bd2e2c" 1962 | dependencies: 1963 | lodash.assign "^3.0.0" 1964 | lodash.restparam "^3.0.0" 1965 | 1966 | lodash.isarguments@^3.0.0: 1967 | version "3.1.0" 1968 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 1969 | 1970 | lodash.isarray@^3.0.0: 1971 | version "3.0.4" 1972 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 1973 | 1974 | lodash.keys@^3.0.0: 1975 | version "3.1.2" 1976 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 1977 | dependencies: 1978 | lodash._getnative "^3.0.0" 1979 | lodash.isarguments "^3.0.0" 1980 | lodash.isarray "^3.0.0" 1981 | 1982 | lodash.restparam@^3.0.0: 1983 | version "3.6.1" 1984 | resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" 1985 | 1986 | lodash@^4.0.0, lodash@^4.2.0, lodash@^4.3.0, lodash@~4.17.2: 1987 | version "4.17.4" 1988 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1989 | 1990 | log-driver@1.2.5: 1991 | version "1.2.5" 1992 | resolved "https://registry.yarnpkg.com/log-driver/-/log-driver-1.2.5.tgz#7ae4ec257302fd790d557cb10c97100d857b0056" 1993 | 1994 | log-symbols@^1.0.2: 1995 | version "1.0.2" 1996 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" 1997 | dependencies: 1998 | chalk "^1.0.0" 1999 | 2000 | lolex@^1.6.0: 2001 | version "1.6.0" 2002 | resolved "https://registry.yarnpkg.com/lolex/-/lolex-1.6.0.tgz#3a9a0283452a47d7439e72731b9e07d7386e49f6" 2003 | 2004 | longest@^1.0.1: 2005 | version "1.0.1" 2006 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2007 | 2008 | loose-envify@^1.0.0: 2009 | version "1.3.1" 2010 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2011 | dependencies: 2012 | js-tokens "^3.0.0" 2013 | 2014 | lowercase-keys@^1.0.0: 2015 | version "1.0.0" 2016 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" 2017 | 2018 | map-stream@~0.1.0: 2019 | version "0.1.0" 2020 | resolved "https://registry.yarnpkg.com/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194" 2021 | 2022 | micromatch@^2.1.5: 2023 | version "2.3.11" 2024 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2025 | dependencies: 2026 | arr-diff "^2.0.0" 2027 | array-unique "^0.2.1" 2028 | braces "^1.8.2" 2029 | expand-brackets "^0.1.4" 2030 | extglob "^0.3.1" 2031 | filename-regex "^2.0.0" 2032 | is-extglob "^1.0.0" 2033 | is-glob "^2.0.1" 2034 | kind-of "^3.0.2" 2035 | normalize-path "^2.0.1" 2036 | object.omit "^2.0.0" 2037 | parse-glob "^3.0.4" 2038 | regex-cache "^0.4.2" 2039 | 2040 | mime-db@~1.27.0: 2041 | version "1.27.0" 2042 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 2043 | 2044 | mime-types@^2.1.12, mime-types@~2.1.7: 2045 | version "2.1.15" 2046 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 2047 | dependencies: 2048 | mime-db "~1.27.0" 2049 | 2050 | mimic-fn@^1.0.0: 2051 | version "1.1.0" 2052 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 2053 | 2054 | "minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 2055 | version "3.0.4" 2056 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2057 | dependencies: 2058 | brace-expansion "^1.1.7" 2059 | 2060 | minimist@0.0.8, minimist@~0.0.1: 2061 | version "0.0.8" 2062 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2063 | 2064 | minimist@1.2.0, minimist@^1.2.0: 2065 | version "1.2.0" 2066 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2067 | 2068 | mkdirp@0.5.1, mkdirp@0.5.x, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1: 2069 | version "0.5.1" 2070 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2071 | dependencies: 2072 | minimist "0.0.8" 2073 | 2074 | mocha-lcov-reporter@^1.2.0: 2075 | version "1.3.0" 2076 | resolved "https://registry.yarnpkg.com/mocha-lcov-reporter/-/mocha-lcov-reporter-1.3.0.tgz#469bdef4f8afc9a116056f079df6182d0afb0384" 2077 | 2078 | mocha@^3.2.0: 2079 | version "3.4.2" 2080 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-3.4.2.tgz#d0ef4d332126dbf18d0d640c9b382dd48be97594" 2081 | dependencies: 2082 | browser-stdout "1.3.0" 2083 | commander "2.9.0" 2084 | debug "2.6.0" 2085 | diff "3.2.0" 2086 | escape-string-regexp "1.0.5" 2087 | glob "7.1.1" 2088 | growl "1.9.2" 2089 | json3 "3.3.2" 2090 | lodash.create "3.1.1" 2091 | mkdirp "0.5.1" 2092 | supports-color "3.1.2" 2093 | 2094 | moment@^2.18.1: 2095 | version "2.18.1" 2096 | resolved "https://registry.yarnpkg.com/moment/-/moment-2.18.1.tgz#c36193dd3ce1c2eed2adb7c802dbbc77a81b1c0f" 2097 | 2098 | ms@0.7.1: 2099 | version "0.7.1" 2100 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 2101 | 2102 | ms@0.7.2: 2103 | version "0.7.2" 2104 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 2105 | 2106 | ms@2.0.0: 2107 | version "2.0.0" 2108 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2109 | 2110 | mute-stream@0.0.5: 2111 | version "0.0.5" 2112 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 2113 | 2114 | mute-stream@0.0.7: 2115 | version "0.0.7" 2116 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 2117 | 2118 | nan@^2.3.0: 2119 | version "2.6.2" 2120 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45" 2121 | 2122 | native-promise-only@^0.8.1: 2123 | version "0.8.1" 2124 | resolved "https://registry.yarnpkg.com/native-promise-only/-/native-promise-only-0.8.1.tgz#20a318c30cb45f71fe7adfbf7b21c99c1472ef11" 2125 | 2126 | natural-compare@^1.4.0: 2127 | version "1.4.0" 2128 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2129 | 2130 | nested-error-stacks@^1.0.0: 2131 | version "1.0.2" 2132 | resolved "https://registry.yarnpkg.com/nested-error-stacks/-/nested-error-stacks-1.0.2.tgz#19f619591519f096769a5ba9a86e6eeec823c3cf" 2133 | dependencies: 2134 | inherits "~2.0.1" 2135 | 2136 | nock@^9.0.2: 2137 | version "9.0.13" 2138 | resolved "https://registry.yarnpkg.com/nock/-/nock-9.0.13.tgz#d0bc39ef43d3179981e22b2e8ea069f916c5781a" 2139 | dependencies: 2140 | chai ">=1.9.2 <4.0.0" 2141 | debug "^2.2.0" 2142 | deep-equal "^1.0.0" 2143 | json-stringify-safe "^5.0.1" 2144 | lodash "~4.17.2" 2145 | mkdirp "^0.5.0" 2146 | propagate "0.4.0" 2147 | qs "^6.0.2" 2148 | 2149 | node-emoji@^1.4.3: 2150 | version "1.5.1" 2151 | resolved "https://registry.yarnpkg.com/node-emoji/-/node-emoji-1.5.1.tgz#fd918e412769bf8c448051238233840b2aff16a1" 2152 | dependencies: 2153 | string.prototype.codepointat "^0.2.0" 2154 | 2155 | node-pre-gyp@^0.6.29: 2156 | version "0.6.36" 2157 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz#db604112cb74e0d477554e9b505b17abddfab786" 2158 | dependencies: 2159 | mkdirp "^0.5.1" 2160 | nopt "^4.0.1" 2161 | npmlog "^4.0.2" 2162 | rc "^1.1.7" 2163 | request "^2.81.0" 2164 | rimraf "^2.6.1" 2165 | semver "^5.3.0" 2166 | tar "^2.2.1" 2167 | tar-pack "^3.4.0" 2168 | 2169 | nodemon@^1.3.8: 2170 | version "1.11.0" 2171 | resolved "https://registry.yarnpkg.com/nodemon/-/nodemon-1.11.0.tgz#226c562bd2a7b13d3d7518b49ad4828a3623d06c" 2172 | dependencies: 2173 | chokidar "^1.4.3" 2174 | debug "^2.2.0" 2175 | es6-promise "^3.0.2" 2176 | ignore-by-default "^1.0.0" 2177 | lodash.defaults "^3.1.2" 2178 | minimatch "^3.0.0" 2179 | ps-tree "^1.0.1" 2180 | touch "1.0.0" 2181 | undefsafe "0.0.3" 2182 | update-notifier "0.5.0" 2183 | 2184 | nopt@3.x: 2185 | version "3.0.6" 2186 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 2187 | dependencies: 2188 | abbrev "1" 2189 | 2190 | nopt@^4.0.1: 2191 | version "4.0.1" 2192 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2193 | dependencies: 2194 | abbrev "1" 2195 | osenv "^0.1.4" 2196 | 2197 | nopt@~1.0.10: 2198 | version "1.0.10" 2199 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz#6ddd21bd2a31417b92727dd585f8a6f37608ebee" 2200 | dependencies: 2201 | abbrev "1" 2202 | 2203 | normalize-package-data@^2.3.2: 2204 | version "2.3.8" 2205 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb" 2206 | dependencies: 2207 | hosted-git-info "^2.1.4" 2208 | is-builtin-module "^1.0.0" 2209 | semver "2 || 3 || 4 || 5" 2210 | validate-npm-package-license "^3.0.1" 2211 | 2212 | normalize-path@^1.0.0: 2213 | version "1.0.0" 2214 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-1.0.0.tgz#32d0e472f91ff345701c15a8311018d3b0a90379" 2215 | 2216 | normalize-path@^2.0.1: 2217 | version "2.1.1" 2218 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2219 | dependencies: 2220 | remove-trailing-separator "^1.0.1" 2221 | 2222 | npm-watch@^0.1.7: 2223 | version "0.1.9" 2224 | resolved "https://registry.yarnpkg.com/npm-watch/-/npm-watch-0.1.9.tgz#30991072ce8cee0d72c0c75ac648c14a039b9902" 2225 | dependencies: 2226 | nodemon "^1.3.8" 2227 | through2 "^2.0.0" 2228 | 2229 | npmlog@^4.0.2: 2230 | version "4.1.0" 2231 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.0.tgz#dc59bee85f64f00ed424efb2af0783df25d1c0b5" 2232 | dependencies: 2233 | are-we-there-yet "~1.1.2" 2234 | console-control-strings "~1.1.0" 2235 | gauge "~2.7.3" 2236 | set-blocking "~2.0.0" 2237 | 2238 | number-is-nan@^1.0.0: 2239 | version "1.0.1" 2240 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2241 | 2242 | oauth-sign@~0.8.1: 2243 | version "0.8.2" 2244 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2245 | 2246 | oauth@^0.9.15: 2247 | version "0.9.15" 2248 | resolved "https://registry.yarnpkg.com/oauth/-/oauth-0.9.15.tgz#bd1fefaf686c96b75475aed5196412ff60cfb9c1" 2249 | 2250 | object-assign@^3.0.0: 2251 | version "3.0.0" 2252 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-3.0.0.tgz#9bedd5ca0897949bca47e7ff408062d549f587f2" 2253 | 2254 | object-assign@^4.0.1, object-assign@^4.1.0: 2255 | version "4.1.1" 2256 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2257 | 2258 | object.omit@^2.0.0: 2259 | version "2.0.1" 2260 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2261 | dependencies: 2262 | for-own "^0.1.4" 2263 | is-extendable "^0.1.1" 2264 | 2265 | once@1.x, once@^1.3.0, once@^1.3.3: 2266 | version "1.4.0" 2267 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2268 | dependencies: 2269 | wrappy "1" 2270 | 2271 | once@~1.3.0: 2272 | version "1.3.3" 2273 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 2274 | dependencies: 2275 | wrappy "1" 2276 | 2277 | onetime@^1.0.0: 2278 | version "1.1.0" 2279 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 2280 | 2281 | onetime@^2.0.0: 2282 | version "2.0.1" 2283 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2284 | dependencies: 2285 | mimic-fn "^1.0.0" 2286 | 2287 | open@0.0.5: 2288 | version "0.0.5" 2289 | resolved "https://registry.yarnpkg.com/open/-/open-0.0.5.tgz#42c3e18ec95466b6bf0dc42f3a2945c3f0cad8fc" 2290 | 2291 | optimist@^0.6.1: 2292 | version "0.6.1" 2293 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2294 | dependencies: 2295 | minimist "~0.0.1" 2296 | wordwrap "~0.0.2" 2297 | 2298 | optionator@^0.8.1, optionator@^0.8.2: 2299 | version "0.8.2" 2300 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2301 | dependencies: 2302 | deep-is "~0.1.3" 2303 | fast-levenshtein "~2.0.4" 2304 | levn "~0.3.0" 2305 | prelude-ls "~1.1.2" 2306 | type-check "~0.3.2" 2307 | wordwrap "~1.0.0" 2308 | 2309 | ora@^1.2.0: 2310 | version "1.2.0" 2311 | resolved "https://registry.yarnpkg.com/ora/-/ora-1.2.0.tgz#32fb3183500efe83f5ea89101785f0ee6060fec9" 2312 | dependencies: 2313 | chalk "^1.1.1" 2314 | cli-cursor "^2.1.0" 2315 | cli-spinners "^1.0.0" 2316 | log-symbols "^1.0.2" 2317 | 2318 | os-homedir@^1.0.0: 2319 | version "1.0.2" 2320 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2321 | 2322 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.1: 2323 | version "1.0.2" 2324 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2325 | 2326 | osenv@^0.1.0, osenv@^0.1.4: 2327 | version "0.1.4" 2328 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2329 | dependencies: 2330 | os-homedir "^1.0.0" 2331 | os-tmpdir "^1.0.0" 2332 | 2333 | output-file-sync@^1.1.0: 2334 | version "1.1.2" 2335 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 2336 | dependencies: 2337 | graceful-fs "^4.1.4" 2338 | mkdirp "^0.5.1" 2339 | object-assign "^4.1.0" 2340 | 2341 | p-limit@^1.1.0: 2342 | version "1.1.0" 2343 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 2344 | 2345 | p-locate@^2.0.0: 2346 | version "2.0.0" 2347 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2348 | dependencies: 2349 | p-limit "^1.1.0" 2350 | 2351 | package-json@^1.0.0: 2352 | version "1.2.0" 2353 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-1.2.0.tgz#c8ecac094227cdf76a316874ed05e27cc939a0e0" 2354 | dependencies: 2355 | got "^3.2.0" 2356 | registry-url "^3.0.0" 2357 | 2358 | parse-glob@^3.0.4: 2359 | version "3.0.4" 2360 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2361 | dependencies: 2362 | glob-base "^0.3.0" 2363 | is-dotfile "^1.0.0" 2364 | is-extglob "^1.0.0" 2365 | is-glob "^2.0.0" 2366 | 2367 | parse-json@^2.2.0: 2368 | version "2.2.0" 2369 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2370 | dependencies: 2371 | error-ex "^1.2.0" 2372 | 2373 | path-exists@^2.0.0: 2374 | version "2.1.0" 2375 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2376 | dependencies: 2377 | pinkie-promise "^2.0.0" 2378 | 2379 | path-exists@^3.0.0: 2380 | version "3.0.0" 2381 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2382 | 2383 | path-is-absolute@^1.0.0: 2384 | version "1.0.1" 2385 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2386 | 2387 | path-is-inside@^1.0.1: 2388 | version "1.0.2" 2389 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2390 | 2391 | path-to-regexp@^1.7.0: 2392 | version "1.7.0" 2393 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-1.7.0.tgz#59fde0f435badacba103a84e9d3bc64e96b9937d" 2394 | dependencies: 2395 | isarray "0.0.1" 2396 | 2397 | path-type@^2.0.0: 2398 | version "2.0.0" 2399 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 2400 | dependencies: 2401 | pify "^2.0.0" 2402 | 2403 | pause-stream@0.0.11: 2404 | version "0.0.11" 2405 | resolved "https://registry.yarnpkg.com/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" 2406 | dependencies: 2407 | through "~2.3" 2408 | 2409 | performance-now@^0.2.0: 2410 | version "0.2.0" 2411 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2412 | 2413 | pify@^2.0.0: 2414 | version "2.3.0" 2415 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2416 | 2417 | pinkie-promise@^2.0.0: 2418 | version "2.0.1" 2419 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2420 | dependencies: 2421 | pinkie "^2.0.0" 2422 | 2423 | pinkie@^2.0.0: 2424 | version "2.0.4" 2425 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2426 | 2427 | pkg-dir@^1.0.0: 2428 | version "1.0.0" 2429 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 2430 | dependencies: 2431 | find-up "^1.0.0" 2432 | 2433 | pluralize@^1.2.1: 2434 | version "1.2.1" 2435 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" 2436 | 2437 | prelude-ls@~1.1.2: 2438 | version "1.1.2" 2439 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2440 | 2441 | prepend-http@^1.0.0: 2442 | version "1.0.4" 2443 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 2444 | 2445 | preserve@^0.2.0: 2446 | version "0.2.0" 2447 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2448 | 2449 | private@^0.1.6: 2450 | version "0.1.7" 2451 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 2452 | 2453 | process-nextick-args@~1.0.6: 2454 | version "1.0.7" 2455 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2456 | 2457 | progress@^1.1.8: 2458 | version "1.1.8" 2459 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 2460 | 2461 | propagate@0.4.0: 2462 | version "0.4.0" 2463 | resolved "https://registry.yarnpkg.com/propagate/-/propagate-0.4.0.tgz#f3fcca0a6fe06736a7ba572966069617c130b481" 2464 | 2465 | ps-tree@^1.0.1: 2466 | version "1.1.0" 2467 | resolved "https://registry.yarnpkg.com/ps-tree/-/ps-tree-1.1.0.tgz#b421b24140d6203f1ed3c76996b4427b08e8c014" 2468 | dependencies: 2469 | event-stream "~3.3.0" 2470 | 2471 | punycode@^1.4.1: 2472 | version "1.4.1" 2473 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2474 | 2475 | qs@^6.0.2, qs@~6.4.0: 2476 | version "6.4.0" 2477 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2478 | 2479 | qs@~6.3.0: 2480 | version "6.3.2" 2481 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.2.tgz#e75bd5f6e268122a2a0e0bda630b2550c166502c" 2482 | 2483 | randomatic@^1.1.3: 2484 | version "1.1.6" 2485 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 2486 | dependencies: 2487 | is-number "^2.0.2" 2488 | kind-of "^3.0.2" 2489 | 2490 | rc@^1.0.1, rc@^1.1.7: 2491 | version "1.2.1" 2492 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 2493 | dependencies: 2494 | deep-extend "~0.4.0" 2495 | ini "~1.3.0" 2496 | minimist "^1.2.0" 2497 | strip-json-comments "~2.0.1" 2498 | 2499 | read-all-stream@^3.0.0: 2500 | version "3.1.0" 2501 | resolved "https://registry.yarnpkg.com/read-all-stream/-/read-all-stream-3.1.0.tgz#35c3e177f2078ef789ee4bfafa4373074eaef4fa" 2502 | dependencies: 2503 | pinkie-promise "^2.0.0" 2504 | readable-stream "^2.0.0" 2505 | 2506 | read-pkg-up@^2.0.0: 2507 | version "2.0.0" 2508 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 2509 | dependencies: 2510 | find-up "^2.0.0" 2511 | read-pkg "^2.0.0" 2512 | 2513 | read-pkg@^2.0.0: 2514 | version "2.0.0" 2515 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 2516 | dependencies: 2517 | load-json-file "^2.0.0" 2518 | normalize-package-data "^2.3.2" 2519 | path-type "^2.0.0" 2520 | 2521 | readable-stream@^2.0.0, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.1.5, readable-stream@^2.2.2: 2522 | version "2.2.10" 2523 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.10.tgz#effe72bb7c884c0dd335e2379d526196d9d011ee" 2524 | dependencies: 2525 | core-util-is "~1.0.0" 2526 | inherits "~2.0.1" 2527 | isarray "~1.0.0" 2528 | process-nextick-args "~1.0.6" 2529 | safe-buffer "^5.0.1" 2530 | string_decoder "~1.0.0" 2531 | util-deprecate "~1.0.1" 2532 | 2533 | readdirp@^2.0.0: 2534 | version "2.1.0" 2535 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2536 | dependencies: 2537 | graceful-fs "^4.1.2" 2538 | minimatch "^3.0.2" 2539 | readable-stream "^2.0.2" 2540 | set-immediate-shim "^1.0.1" 2541 | 2542 | readline2@^1.0.1: 2543 | version "1.0.1" 2544 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 2545 | dependencies: 2546 | code-point-at "^1.0.0" 2547 | is-fullwidth-code-point "^1.0.0" 2548 | mute-stream "0.0.5" 2549 | 2550 | rechoir@^0.6.2: 2551 | version "0.6.2" 2552 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 2553 | dependencies: 2554 | resolve "^1.1.6" 2555 | 2556 | regenerate@^1.2.1: 2557 | version "1.3.2" 2558 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 2559 | 2560 | regenerator-runtime@^0.10.0: 2561 | version "0.10.5" 2562 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 2563 | 2564 | regenerator-transform@0.9.11: 2565 | version "0.9.11" 2566 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.11.tgz#3a7d067520cb7b7176769eb5ff868691befe1283" 2567 | dependencies: 2568 | babel-runtime "^6.18.0" 2569 | babel-types "^6.19.0" 2570 | private "^0.1.6" 2571 | 2572 | regex-cache@^0.4.2: 2573 | version "0.4.3" 2574 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 2575 | dependencies: 2576 | is-equal-shallow "^0.1.3" 2577 | is-primitive "^2.0.0" 2578 | 2579 | regexpu-core@^2.0.0: 2580 | version "2.0.0" 2581 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2582 | dependencies: 2583 | regenerate "^1.2.1" 2584 | regjsgen "^0.2.0" 2585 | regjsparser "^0.1.4" 2586 | 2587 | registry-url@^3.0.0: 2588 | version "3.1.0" 2589 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 2590 | dependencies: 2591 | rc "^1.0.1" 2592 | 2593 | regjsgen@^0.2.0: 2594 | version "0.2.0" 2595 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2596 | 2597 | regjsparser@^0.1.4: 2598 | version "0.1.5" 2599 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2600 | dependencies: 2601 | jsesc "~0.5.0" 2602 | 2603 | remove-trailing-separator@^1.0.1: 2604 | version "1.0.1" 2605 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4" 2606 | 2607 | repeat-element@^1.1.2: 2608 | version "1.1.2" 2609 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2610 | 2611 | repeat-string@^1.5.2: 2612 | version "1.6.1" 2613 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2614 | 2615 | repeating@^1.1.2: 2616 | version "1.1.3" 2617 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-1.1.3.tgz#3d4114218877537494f97f77f9785fab810fa4ac" 2618 | dependencies: 2619 | is-finite "^1.0.0" 2620 | 2621 | repeating@^2.0.0: 2622 | version "2.0.1" 2623 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2624 | dependencies: 2625 | is-finite "^1.0.0" 2626 | 2627 | request@2.79.0: 2628 | version "2.79.0" 2629 | resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" 2630 | dependencies: 2631 | aws-sign2 "~0.6.0" 2632 | aws4 "^1.2.1" 2633 | caseless "~0.11.0" 2634 | combined-stream "~1.0.5" 2635 | extend "~3.0.0" 2636 | forever-agent "~0.6.1" 2637 | form-data "~2.1.1" 2638 | har-validator "~2.0.6" 2639 | hawk "~3.1.3" 2640 | http-signature "~1.1.0" 2641 | is-typedarray "~1.0.0" 2642 | isstream "~0.1.2" 2643 | json-stringify-safe "~5.0.1" 2644 | mime-types "~2.1.7" 2645 | oauth-sign "~0.8.1" 2646 | qs "~6.3.0" 2647 | stringstream "~0.0.4" 2648 | tough-cookie "~2.3.0" 2649 | tunnel-agent "~0.4.1" 2650 | uuid "^3.0.0" 2651 | 2652 | request@^2.81.0: 2653 | version "2.81.0" 2654 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2655 | dependencies: 2656 | aws-sign2 "~0.6.0" 2657 | aws4 "^1.2.1" 2658 | caseless "~0.12.0" 2659 | combined-stream "~1.0.5" 2660 | extend "~3.0.0" 2661 | forever-agent "~0.6.1" 2662 | form-data "~2.1.1" 2663 | har-validator "~4.2.1" 2664 | hawk "~3.1.3" 2665 | http-signature "~1.1.0" 2666 | is-typedarray "~1.0.0" 2667 | isstream "~0.1.2" 2668 | json-stringify-safe "~5.0.1" 2669 | mime-types "~2.1.7" 2670 | oauth-sign "~0.8.1" 2671 | performance-now "^0.2.0" 2672 | qs "~6.4.0" 2673 | safe-buffer "^5.0.1" 2674 | stringstream "~0.0.4" 2675 | tough-cookie "~2.3.0" 2676 | tunnel-agent "^0.6.0" 2677 | uuid "^3.0.0" 2678 | 2679 | require-uncached@^1.0.2: 2680 | version "1.0.3" 2681 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 2682 | dependencies: 2683 | caller-path "^0.1.0" 2684 | resolve-from "^1.0.0" 2685 | 2686 | resolve-from@^1.0.0: 2687 | version "1.0.1" 2688 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 2689 | 2690 | resolve@1.1.x, resolve@^1.1.6: 2691 | version "1.1.7" 2692 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2693 | 2694 | restore-cursor@^1.0.1: 2695 | version "1.0.1" 2696 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 2697 | dependencies: 2698 | exit-hook "^1.0.0" 2699 | onetime "^1.0.0" 2700 | 2701 | restore-cursor@^2.0.0: 2702 | version "2.0.0" 2703 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 2704 | dependencies: 2705 | onetime "^2.0.0" 2706 | signal-exit "^3.0.2" 2707 | 2708 | rewire@^2.5.2: 2709 | version "2.5.2" 2710 | resolved "https://registry.yarnpkg.com/rewire/-/rewire-2.5.2.tgz#6427de7b7feefa7d36401507eb64a5385bc58dc7" 2711 | 2712 | right-align@^0.1.1: 2713 | version "0.1.3" 2714 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2715 | dependencies: 2716 | align-text "^0.1.1" 2717 | 2718 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1: 2719 | version "2.6.1" 2720 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 2721 | dependencies: 2722 | glob "^7.0.5" 2723 | 2724 | run-async@^0.1.0: 2725 | version "0.1.0" 2726 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 2727 | dependencies: 2728 | once "^1.3.0" 2729 | 2730 | run-async@^2.2.0: 2731 | version "2.3.0" 2732 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 2733 | dependencies: 2734 | is-promise "^2.1.0" 2735 | 2736 | rx-lite@^3.1.2: 2737 | version "3.1.2" 2738 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 2739 | 2740 | rx@^4.1.0: 2741 | version "4.1.0" 2742 | resolved "https://registry.yarnpkg.com/rx/-/rx-4.1.0.tgz#a5f13ff79ef3b740fe30aa803fb09f98805d4782" 2743 | 2744 | safe-buffer@^5.0.1: 2745 | version "5.1.0" 2746 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.0.tgz#fe4c8460397f9eaaaa58e73be46273408a45e223" 2747 | 2748 | samsam@1.x, samsam@^1.1.3: 2749 | version "1.2.1" 2750 | resolved "https://registry.yarnpkg.com/samsam/-/samsam-1.2.1.tgz#edd39093a3184370cb859243b2bdf255e7d8ea67" 2751 | 2752 | sax@>=0.6.0: 2753 | version "1.2.2" 2754 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.2.tgz#fd8631a23bc7826bef5d871bdb87378c95647828" 2755 | 2756 | semver-diff@^2.0.0: 2757 | version "2.1.0" 2758 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 2759 | dependencies: 2760 | semver "^5.0.3" 2761 | 2762 | "semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.3.0: 2763 | version "5.3.0" 2764 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 2765 | 2766 | set-blocking@~2.0.0: 2767 | version "2.0.0" 2768 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2769 | 2770 | set-immediate-shim@^1.0.1: 2771 | version "1.0.1" 2772 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2773 | 2774 | shelljs@^0.7.5: 2775 | version "0.7.7" 2776 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.7.tgz#b2f5c77ef97148f4b4f6e22682e10bba8667cff1" 2777 | dependencies: 2778 | glob "^7.0.0" 2779 | interpret "^1.0.0" 2780 | rechoir "^0.6.2" 2781 | 2782 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2783 | version "3.0.2" 2784 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2785 | 2786 | sinon-chai@^2.8.0: 2787 | version "2.10.0" 2788 | resolved "https://registry.yarnpkg.com/sinon-chai/-/sinon-chai-2.10.0.tgz#6ab3008bb8cae9929e744d766574b4cf35f34b5b" 2789 | 2790 | sinon@^2.1.0: 2791 | version "2.3.2" 2792 | resolved "https://registry.yarnpkg.com/sinon/-/sinon-2.3.2.tgz#c43a9c570f32baac1159505cfeed19108855df89" 2793 | dependencies: 2794 | diff "^3.1.0" 2795 | formatio "1.2.0" 2796 | lolex "^1.6.0" 2797 | native-promise-only "^0.8.1" 2798 | path-to-regexp "^1.7.0" 2799 | samsam "^1.1.3" 2800 | text-encoding "0.6.4" 2801 | type-detect "^4.0.0" 2802 | 2803 | slash@^1.0.0: 2804 | version "1.0.0" 2805 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2806 | 2807 | slice-ansi@0.0.4: 2808 | version "0.0.4" 2809 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 2810 | 2811 | slide@^1.1.5: 2812 | version "1.1.6" 2813 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 2814 | 2815 | sntp@1.x.x: 2816 | version "1.0.9" 2817 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2818 | dependencies: 2819 | hoek "2.x.x" 2820 | 2821 | source-map-support@^0.4.2: 2822 | version "0.4.15" 2823 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1" 2824 | dependencies: 2825 | source-map "^0.5.6" 2826 | 2827 | source-map@^0.4.4: 2828 | version "0.4.4" 2829 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 2830 | dependencies: 2831 | amdefine ">=0.0.4" 2832 | 2833 | source-map@^0.5.0, source-map@^0.5.6, source-map@~0.5.1: 2834 | version "0.5.6" 2835 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 2836 | 2837 | source-map@~0.2.0: 2838 | version "0.2.0" 2839 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 2840 | dependencies: 2841 | amdefine ">=0.0.4" 2842 | 2843 | spdx-correct@~1.0.0: 2844 | version "1.0.2" 2845 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2846 | dependencies: 2847 | spdx-license-ids "^1.0.2" 2848 | 2849 | spdx-expression-parse@~1.0.0: 2850 | version "1.0.4" 2851 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2852 | 2853 | spdx-license-ids@^1.0.2: 2854 | version "1.2.2" 2855 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2856 | 2857 | speedtest-net@^1.2.11: 2858 | version "1.3.1" 2859 | resolved "https://registry.yarnpkg.com/speedtest-net/-/speedtest-net-1.3.1.tgz#d52a9d7f9566279763112821e6f8172637700a2d" 2860 | dependencies: 2861 | chalk "^1.1.3" 2862 | draftlog "^1.0.12" 2863 | xml2js "^0.4.4" 2864 | 2865 | split@0.3: 2866 | version "0.3.3" 2867 | resolved "https://registry.yarnpkg.com/split/-/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f" 2868 | dependencies: 2869 | through "2" 2870 | 2871 | sprintf-js@~1.0.2: 2872 | version "1.0.3" 2873 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2874 | 2875 | sshpk@^1.7.0: 2876 | version "1.13.0" 2877 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.0.tgz#ff2a3e4fd04497555fed97b39a0fd82fafb3a33c" 2878 | dependencies: 2879 | asn1 "~0.2.3" 2880 | assert-plus "^1.0.0" 2881 | dashdash "^1.12.0" 2882 | getpass "^0.1.1" 2883 | optionalDependencies: 2884 | bcrypt-pbkdf "^1.0.0" 2885 | ecc-jsbn "~0.1.1" 2886 | jodid25519 "^1.0.0" 2887 | jsbn "~0.1.0" 2888 | tweetnacl "~0.14.0" 2889 | 2890 | stream-combiner@~0.0.4: 2891 | version "0.0.4" 2892 | resolved "https://registry.yarnpkg.com/stream-combiner/-/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14" 2893 | dependencies: 2894 | duplexer "~0.1.1" 2895 | 2896 | stream-shift@^1.0.0: 2897 | version "1.0.0" 2898 | resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952" 2899 | 2900 | string-length@^1.0.0: 2901 | version "1.0.1" 2902 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" 2903 | dependencies: 2904 | strip-ansi "^3.0.0" 2905 | 2906 | string-width@^1.0.1, string-width@^1.0.2: 2907 | version "1.0.2" 2908 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2909 | dependencies: 2910 | code-point-at "^1.0.0" 2911 | is-fullwidth-code-point "^1.0.0" 2912 | strip-ansi "^3.0.0" 2913 | 2914 | string-width@^2.0.0: 2915 | version "2.0.0" 2916 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 2917 | dependencies: 2918 | is-fullwidth-code-point "^2.0.0" 2919 | strip-ansi "^3.0.0" 2920 | 2921 | string.prototype.codepointat@^0.2.0: 2922 | version "0.2.0" 2923 | resolved "https://registry.yarnpkg.com/string.prototype.codepointat/-/string.prototype.codepointat-0.2.0.tgz#6b26e9bd3afcaa7be3b4269b526de1b82000ac78" 2924 | 2925 | string_decoder@~1.0.0: 2926 | version "1.0.1" 2927 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.1.tgz#62e200f039955a6810d8df0a33ffc0f013662d98" 2928 | dependencies: 2929 | safe-buffer "^5.0.1" 2930 | 2931 | stringstream@~0.0.4: 2932 | version "0.0.5" 2933 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2934 | 2935 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2936 | version "3.0.1" 2937 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2938 | dependencies: 2939 | ansi-regex "^2.0.0" 2940 | 2941 | strip-bom@^3.0.0: 2942 | version "3.0.0" 2943 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2944 | 2945 | strip-json-comments@~2.0.1: 2946 | version "2.0.1" 2947 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2948 | 2949 | supports-color@3.1.2: 2950 | version "3.1.2" 2951 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5" 2952 | dependencies: 2953 | has-flag "^1.0.0" 2954 | 2955 | supports-color@^2.0.0: 2956 | version "2.0.0" 2957 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2958 | 2959 | supports-color@^3.1.0: 2960 | version "3.2.3" 2961 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 2962 | dependencies: 2963 | has-flag "^1.0.0" 2964 | 2965 | table@^3.7.8: 2966 | version "3.8.3" 2967 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" 2968 | dependencies: 2969 | ajv "^4.7.0" 2970 | ajv-keywords "^1.0.0" 2971 | chalk "^1.1.1" 2972 | lodash "^4.0.0" 2973 | slice-ansi "0.0.4" 2974 | string-width "^2.0.0" 2975 | 2976 | tar-pack@^3.4.0: 2977 | version "3.4.0" 2978 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 2979 | dependencies: 2980 | debug "^2.2.0" 2981 | fstream "^1.0.10" 2982 | fstream-ignore "^1.0.5" 2983 | once "^1.3.3" 2984 | readable-stream "^2.1.4" 2985 | rimraf "^2.5.1" 2986 | tar "^2.2.1" 2987 | uid-number "^0.0.6" 2988 | 2989 | tar@^2.2.1: 2990 | version "2.2.1" 2991 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 2992 | dependencies: 2993 | block-stream "*" 2994 | fstream "^1.0.2" 2995 | inherits "2" 2996 | 2997 | text-encoding@0.6.4: 2998 | version "0.6.4" 2999 | resolved "https://registry.yarnpkg.com/text-encoding/-/text-encoding-0.6.4.tgz#e399a982257a276dae428bb92845cb71bdc26d19" 3000 | 3001 | text-table@~0.2.0: 3002 | version "0.2.0" 3003 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3004 | 3005 | through2@^2.0.0: 3006 | version "2.0.3" 3007 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 3008 | dependencies: 3009 | readable-stream "^2.1.5" 3010 | xtend "~4.0.1" 3011 | 3012 | through@2, through@^2.3.6, through@~2.3, through@~2.3.1: 3013 | version "2.3.8" 3014 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3015 | 3016 | thunkify@^2.1.2: 3017 | version "2.1.2" 3018 | resolved "https://registry.yarnpkg.com/thunkify/-/thunkify-2.1.2.tgz#faa0e9d230c51acc95ca13a361ac05ca7e04553d" 3019 | 3020 | timed-out@^2.0.0: 3021 | version "2.0.0" 3022 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-2.0.0.tgz#f38b0ae81d3747d628001f41dafc652ace671c0a" 3023 | 3024 | tmp@^0.0.31: 3025 | version "0.0.31" 3026 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.31.tgz#8f38ab9438e17315e5dbd8b3657e8bfb277ae4a7" 3027 | dependencies: 3028 | os-tmpdir "~1.0.1" 3029 | 3030 | to-fast-properties@^1.0.1: 3031 | version "1.0.3" 3032 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3033 | 3034 | touch@1.0.0: 3035 | version "1.0.0" 3036 | resolved "https://registry.yarnpkg.com/touch/-/touch-1.0.0.tgz#449cbe2dbae5a8c8038e30d71fa0ff464947c4de" 3037 | dependencies: 3038 | nopt "~1.0.10" 3039 | 3040 | tough-cookie@~2.3.0: 3041 | version "2.3.2" 3042 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 3043 | dependencies: 3044 | punycode "^1.4.1" 3045 | 3046 | trim-right@^1.0.1: 3047 | version "1.0.1" 3048 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3049 | 3050 | tryit@^1.0.1: 3051 | version "1.0.3" 3052 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 3053 | 3054 | tunnel-agent@^0.6.0: 3055 | version "0.6.0" 3056 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3057 | dependencies: 3058 | safe-buffer "^5.0.1" 3059 | 3060 | tunnel-agent@~0.4.1: 3061 | version "0.4.3" 3062 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 3063 | 3064 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3065 | version "0.14.5" 3066 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3067 | 3068 | type-check@~0.3.2: 3069 | version "0.3.2" 3070 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3071 | dependencies: 3072 | prelude-ls "~1.1.2" 3073 | 3074 | type-detect@0.1.1: 3075 | version "0.1.1" 3076 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-0.1.1.tgz#0ba5ec2a885640e470ea4e8505971900dac58822" 3077 | 3078 | type-detect@^1.0.0: 3079 | version "1.0.0" 3080 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-1.0.0.tgz#762217cc06db258ec48908a1298e8b95121e8ea2" 3081 | 3082 | type-detect@^4.0.0: 3083 | version "4.0.3" 3084 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.3.tgz#0e3f2670b44099b0b46c284d136a7ef49c74c2ea" 3085 | 3086 | typedarray@^0.0.6: 3087 | version "0.0.6" 3088 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3089 | 3090 | uglify-js@^2.6: 3091 | version "2.8.28" 3092 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.28.tgz#e335032df9bb20dcb918f164589d5af47f38834a" 3093 | dependencies: 3094 | source-map "~0.5.1" 3095 | yargs "~3.10.0" 3096 | optionalDependencies: 3097 | uglify-to-browserify "~1.0.0" 3098 | 3099 | uglify-to-browserify@~1.0.0: 3100 | version "1.0.2" 3101 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3102 | 3103 | uid-number@^0.0.6: 3104 | version "0.0.6" 3105 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3106 | 3107 | undefsafe@0.0.3: 3108 | version "0.0.3" 3109 | resolved "https://registry.yarnpkg.com/undefsafe/-/undefsafe-0.0.3.tgz#ecca3a03e56b9af17385baac812ac83b994a962f" 3110 | 3111 | update-notifier@0.5.0: 3112 | version "0.5.0" 3113 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-0.5.0.tgz#07b5dc2066b3627ab3b4f530130f7eddda07a4cc" 3114 | dependencies: 3115 | chalk "^1.0.0" 3116 | configstore "^1.0.0" 3117 | is-npm "^1.0.0" 3118 | latest-version "^1.0.0" 3119 | repeating "^1.1.2" 3120 | semver-diff "^2.0.0" 3121 | string-length "^1.0.0" 3122 | 3123 | urlencode@^1.1.0: 3124 | version "1.1.0" 3125 | resolved "https://registry.yarnpkg.com/urlencode/-/urlencode-1.1.0.tgz#1f2ba26f013c85f0133f7a3ad6ff2730adf7cbb7" 3126 | dependencies: 3127 | iconv-lite "~0.4.11" 3128 | 3129 | user-home@^1.1.1: 3130 | version "1.1.1" 3131 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 3132 | 3133 | user-home@^2.0.0: 3134 | version "2.0.0" 3135 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 3136 | dependencies: 3137 | os-homedir "^1.0.0" 3138 | 3139 | util-deprecate@~1.0.1: 3140 | version "1.0.2" 3141 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3142 | 3143 | uuid@^2.0.1: 3144 | version "2.0.3" 3145 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" 3146 | 3147 | uuid@^3.0.0: 3148 | version "3.0.1" 3149 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 3150 | 3151 | v8flags@^2.0.10: 3152 | version "2.1.1" 3153 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 3154 | dependencies: 3155 | user-home "^1.1.1" 3156 | 3157 | validate-npm-package-license@^3.0.1: 3158 | version "3.0.1" 3159 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3160 | dependencies: 3161 | spdx-correct "~1.0.0" 3162 | spdx-expression-parse "~1.0.0" 3163 | 3164 | verror@1.3.6: 3165 | version "1.3.6" 3166 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 3167 | dependencies: 3168 | extsprintf "1.0.2" 3169 | 3170 | which@^1.1.1: 3171 | version "1.2.14" 3172 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 3173 | dependencies: 3174 | isexe "^2.0.0" 3175 | 3176 | wide-align@^1.1.0: 3177 | version "1.1.2" 3178 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 3179 | dependencies: 3180 | string-width "^1.0.2" 3181 | 3182 | window-size@0.1.0: 3183 | version "0.1.0" 3184 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3185 | 3186 | wordwrap@0.0.2: 3187 | version "0.0.2" 3188 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3189 | 3190 | wordwrap@^1.0.0, wordwrap@~1.0.0: 3191 | version "1.0.0" 3192 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3193 | 3194 | wordwrap@~0.0.2: 3195 | version "0.0.3" 3196 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3197 | 3198 | wrappy@1: 3199 | version "1.0.2" 3200 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3201 | 3202 | write-file-atomic@^1.1.2: 3203 | version "1.3.4" 3204 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.4.tgz#f807a4f0b1d9e913ae7a48112e6cc3af1991b45f" 3205 | dependencies: 3206 | graceful-fs "^4.1.11" 3207 | imurmurhash "^0.1.4" 3208 | slide "^1.1.5" 3209 | 3210 | write@^0.2.1: 3211 | version "0.2.1" 3212 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 3213 | dependencies: 3214 | mkdirp "^0.5.1" 3215 | 3216 | xdg-basedir@^2.0.0: 3217 | version "2.0.0" 3218 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-2.0.0.tgz#edbc903cc385fc04523d966a335504b5504d1bd2" 3219 | dependencies: 3220 | os-homedir "^1.0.0" 3221 | 3222 | xml2js@^0.4.4: 3223 | version "0.4.17" 3224 | resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.17.tgz#17be93eaae3f3b779359c795b419705a8817e868" 3225 | dependencies: 3226 | sax ">=0.6.0" 3227 | xmlbuilder "^4.1.0" 3228 | 3229 | xmlbuilder@^4.1.0: 3230 | version "4.2.1" 3231 | resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-4.2.1.tgz#aa58a3041a066f90eaa16c2f5389ff19f3f461a5" 3232 | dependencies: 3233 | lodash "^4.0.0" 3234 | 3235 | xtend@^4.0.0, xtend@~4.0.1: 3236 | version "4.0.1" 3237 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3238 | 3239 | yargs@~3.10.0: 3240 | version "3.10.0" 3241 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3242 | dependencies: 3243 | camelcase "^1.0.2" 3244 | cliui "^2.1.0" 3245 | decamelize "^1.0.0" 3246 | window-size "0.1.0" 3247 | --------------------------------------------------------------------------------