├── History.md ├── .eslintignore ├── config ├── .gitignore ├── production.yaml ├── development.yaml ├── coins │ └── dogecoin.yaml ├── pools │ └── sample.yaml └── default.yaml ├── test ├── mocha.opts ├── .eslintrc.yaml └── bootstrap.js ├── .eslintrc.yaml ├── README.md ├── contrib └── coin │ └── sample.conf ├── .gitattributes ├── src ├── pool │ ├── managers │ │ ├── job.js │ │ ├── block.js │ │ └── share.js │ ├── manager.js │ └── pool.js ├── common │ ├── env.js │ ├── log │ │ └── logger.js │ ├── db │ │ └── mongodb.js │ └── utils.js ├── algorithms │ └── algorithms.js ├── .eslintrc.yaml ├── server.js ├── daemon │ ├── errors.js │ └── daemon.js └── stratum │ ├── server.js │ └── client.js ├── circle.yml ├── .gitignore ├── Gruntfile.js ├── package.json └── yarn.lock /History.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /config/.gitignore: -------------------------------------------------------------------------------- 1 | local.yaml 2 | -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --recursive 2 | test/bootstrap.js 3 | -------------------------------------------------------------------------------- /.eslintrc.yaml: -------------------------------------------------------------------------------- 1 | parserOptions: 2 | sourceType: module 3 | -------------------------------------------------------------------------------- /test/.eslintrc.yaml: -------------------------------------------------------------------------------- 1 | env: 2 | node: true 3 | mocha: true 4 | -------------------------------------------------------------------------------- /config/production.yaml: -------------------------------------------------------------------------------- 1 | database: 2 | mongodb: 3 | name: hypeserv 4 | -------------------------------------------------------------------------------- /config/development.yaml: -------------------------------------------------------------------------------- 1 | database: 2 | mongodb: 3 | name: hypeserv-development 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## info 2 | 3 | project abandoned, please instead check [hypepool](https://github.com/bonesoul/hypepool) 4 | -------------------------------------------------------------------------------- /contrib/coin/sample.conf: -------------------------------------------------------------------------------- 1 | testnet=1 2 | server=1 3 | rpcbind=0.0.0.0 4 | rpcuser=testuser 5 | rpcpassword=testpass 6 | rpcport=9333 7 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.html eol=lf 2 | *.js eol=lf 3 | *.json eol=lf 4 | *.less eol=lf 5 | *.md eol=lf 6 | *.svg eol=lf 7 | *.xml eol=lf 8 | -------------------------------------------------------------------------------- /config/coins/dogecoin.yaml: -------------------------------------------------------------------------------- 1 | name: Dogecoin 2 | symbol: DOGE", 3 | algorithm: scrypt 4 | node: 5 | magic: c0c0c0c0 6 | testnetMagic: fcc1b7dc 7 | -------------------------------------------------------------------------------- /test/bootstrap.js: -------------------------------------------------------------------------------- 1 | // 2 | // hypeengine 3 | // Copyright (C) 2013 - 2017, Hüseyin Uslu, Int6ware - http://www.int6ware.com 4 | // 5 | 'use strict'; 6 | 7 | process.env.NODE_ENV = 'test'; // change the env immediatly so everything runs in 'test' mode. 8 | -------------------------------------------------------------------------------- /src/pool/managers/job.js: -------------------------------------------------------------------------------- 1 | // 2 | // hypeengine 3 | // Copyright (C) 2013 - 2017, Hüseyin Uslu, Int6ware - http://www.int6ware.com 4 | // 5 | 'use strict'; 6 | 7 | const winston = require('winston'); 8 | const events = require('events'); 9 | 10 | var jobManager = module.exports = function () { 11 | }; 12 | 13 | jobManager.prototype.__proto__ = events.EventEmitter.prototype; 14 | -------------------------------------------------------------------------------- /src/pool/managers/block.js: -------------------------------------------------------------------------------- 1 | // 2 | // hypeengine 3 | // Copyright (C) 2013 - 2017, Hüseyin Uslu, Int6ware - http://www.int6ware.com 4 | // 5 | 'use strict'; 6 | 7 | const winston = require('winston'); 8 | const events = require('events'); 9 | 10 | var blockManager = module.exports = function () { 11 | }; 12 | 13 | blockManager.prototype.__proto__ = events.EventEmitter.prototype; 14 | -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- 1 | machine: 2 | 3 | node: 4 | version: 8.1.1 5 | 6 | environment: 7 | NODE_ENV: test 8 | NODE_PENDING_DEPRECATION: 1 9 | 10 | dependencies: 11 | override: 12 | - yarn global add grunt-cli 13 | - yarn install 14 | 15 | test: 16 | override: 17 | - grunt test 18 | - grunt lint 19 | - npm run cover 20 | 21 | general: 22 | artifacts: 23 | - logs/ 24 | - build/ 25 | -------------------------------------------------------------------------------- /config/pools/sample.yaml: -------------------------------------------------------------------------------- 1 | enabled: true 2 | name: dogecoin 3 | 4 | daemon: 5 | host: 127.0.0.1 6 | port: 9333 7 | user: testuser 8 | password: testpass 9 | 10 | wallet: 11 | address: nib2LgCtNghgojBiz6Ynu8jWaWHjLFiL47 12 | 13 | rewards: 14 | myxWybbhUkGzGF7yaf2QVNx3hh3HWTya5t: 1 15 | 16 | stratum: 17 | bind: 0.0.0.0 18 | port: 3333 19 | diff: 16 20 | vardiff: 21 | enabled: true 22 | minDiff: 8 23 | maxDiff: 512 24 | targetTime: 15 25 | retargetTime: 90 26 | variancePercent: 30 27 | -------------------------------------------------------------------------------- /src/pool/managers/share.js: -------------------------------------------------------------------------------- 1 | // 2 | // hypeengine 3 | // Copyright (C) 2013 - 2017, Hüseyin Uslu, Int6ware - http://www.int6ware.com 4 | // 5 | 'use strict'; 6 | 7 | const winston = require('winston'); 8 | const events = require('events'); 9 | const bignum = require('bignum'); 10 | const crypto = require('crypto'); 11 | const algorithms = require('algorithms/algorithms'); 12 | 13 | var shareManager = module.exports = function () { 14 | var _this = this; 15 | 16 | 17 | }; 18 | 19 | shareManager.prototype.__proto__ = events.EventEmitter.prototype; 20 | -------------------------------------------------------------------------------- /src/common/env.js: -------------------------------------------------------------------------------- 1 | // 2 | // hypeengine 3 | // Copyright (C) 2013 - 2017, Hüseyin Uslu, Int6ware - http://www.int6ware.com 4 | // 5 | 'use strict'; 6 | 7 | const prettyError = require('pretty-error'); 8 | 9 | var EnvManager = (function () { 10 | // check if we have an invalid node_env set. 11 | if (process.env.NODE_ENV !== 'development' && process.env.NODE_ENV !== 'production' && process.env.NODE_ENV !== 'test') process.env.NODE_ENV = 'development'; // set to development by default. 12 | var env = global.env = process.env.NODE_ENV; 13 | if (env === 'development') prettyError.start(); // on development mode start the pretty errors. 14 | })(); 15 | 16 | module.exports = exports = EnvManager; 17 | -------------------------------------------------------------------------------- /config/default.yaml: -------------------------------------------------------------------------------- 1 | # The default config that will be merged with the mode config [development, production, test]. 2 | 3 | ############################ 4 | # Database config. 5 | ############################ 6 | database: 7 | mongodb: # mongodb config. 8 | host: localhost # the mongodb host. 9 | name: hypserv-default # the mongodb database name 10 | debug: false # should we enable mongoose debugging 11 | 12 | ############################ 13 | # Logging config. 14 | ############################ 15 | logging: 16 | console: # console logging. 17 | enabled: true # enable console log? 18 | level: debug # minimum log level. 19 | file: # file logging. 20 | enabled: true # enable loggin to file? 21 | level: info # minimum log level. 22 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # misc stuff 2 | .DS_Store 3 | 4 | # Logs 5 | logs 6 | *.log 7 | 8 | # Runtime data 9 | pids 10 | *.pid 11 | *.seed 12 | 13 | # Directory for instrumented libs generated by jscoverage/JSCover 14 | lib-cov 15 | 16 | # build directory 17 | build/ 18 | 19 | # Coverage directory used by tools like istanbul 20 | coverage 21 | 22 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 23 | .grunt 24 | 25 | # node-waf configuration 26 | .lock-wscript 27 | 28 | # Compiled binary addons (http://nodejs.org/api/addons.html) 29 | build/Release 30 | 31 | # Dependency directory 32 | # https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git 33 | node_modules 34 | 35 | # visual studio 36 | typings/ 37 | obj/ 38 | bin/ 39 | .vs/ 40 | 41 | # backups 42 | backups/ 43 | -------------------------------------------------------------------------------- /src/algorithms/algorithms.js: -------------------------------------------------------------------------------- 1 | // 2 | // hypeengine 3 | // Copyright (C) 2013 - 2017, Hüseyin Uslu, Int6ware - http://www.int6ware.com 4 | // 5 | 'use strict'; 6 | 7 | const bignum = require('bignum'); 8 | const util = require('common/utils.js'); 9 | 10 | const diff1 = global.diff1 = 0x00000000ffff0000000000000000000000000000000000000000000000000000; 11 | 12 | module.exports = global.algorithms = { 13 | sha256: { 14 | multiplier: 1, 15 | hash: function () { 16 | return function () { 17 | return util.sha256d.apply(this, arguments); 18 | }; 19 | } 20 | }, 21 | scrypt: { 22 | multiplier: Math.pow(2, 16), 23 | hash: function (coinConfig) { 24 | var nValue = coinConfig.nValue || 1024; 25 | var rValue = coinConfig.rValue || 1; 26 | return function (data) { 27 | return null; //hashlib.scrypt(data, nValue, rValue); 28 | }; 29 | } 30 | } 31 | }; 32 | -------------------------------------------------------------------------------- /src/.eslintrc.yaml: -------------------------------------------------------------------------------- 1 | env: 2 | node: true 3 | es6: true 4 | jquery: false 5 | browser: false 6 | 7 | plugins: 8 | - import 9 | - promise 10 | - mocha 11 | - node 12 | 13 | extends: 14 | - eslint:recommended 15 | - semistandard 16 | - plugin:import/errors 17 | - plugin:import/warnings 18 | 19 | rules: 20 | promise/always-return: error 21 | promise/no-return-wrap: error 22 | promise/param-names: error 23 | promise/catch-or-return: error 24 | promise/no-native: warn 25 | promise/no-nesting: warn 26 | promise/no-promise-in-callback: warn 27 | promise/no-callback-in-promise: warn 28 | mocha/no-exclusive-tests: error 29 | mocha/no-pending-tests: error 30 | mocha/handle-done-callback: error 31 | mocha/no-identical-title: error 32 | mocha/max-top-level-suites: error 33 | mocha/no-nested-tests: error 34 | node/no-deprecated-api: error 35 | node/process-exit-as-throw: error 36 | node/no-unsupported-features: error 37 | -------------------------------------------------------------------------------- /src/common/log/logger.js: -------------------------------------------------------------------------------- 1 | // 2 | // hypeengine 3 | // Copyright (C) 2013 - 2017, Hüseyin Uslu, Int6ware - http://www.int6ware.com 4 | // 5 | 'use strict'; 6 | 7 | const fs = require('fs'); 8 | const path = require('path'); 9 | const winston = require('winston'); 10 | const config = require('config'); 11 | 12 | module.exports = function (processName) { 13 | // setup the logging directory and ensure it exists. 14 | const logDir = path.join(__dirname, '../../../logs'); 15 | fs.existsSync(logDir) || fs.mkdirSync(logDir); 16 | 17 | winston.remove(winston.transports.Console); // remove the default console log. 18 | 19 | if (config.get('logging.console.enabled')) { // re-setup the console log if enabled. 20 | winston.add(winston.transports.Console, { 21 | colorize: true, 22 | prettyPrint: true, 23 | timestamp: function () { 24 | var date = new Date(); 25 | return `${date.getDate()}/${(date.getMonth() + 1)} ${date.toTimeString().substr(0, 8)} [${global.process.pid}]`; 26 | }, 27 | level: config.get('logging.console.level') 28 | }); 29 | } 30 | 31 | if (config.get('logging.file.enabled')) { // setup the server log if enabled. 32 | winston.add(winston.transports.File, { 33 | filename: path.join(logDir, `/${processName}.log`), 34 | level: config.get('logging.file.level'), 35 | json: false 36 | }); 37 | } 38 | }; 39 | -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- 1 | // 2 | // hypeengine 3 | // Copyright (C) 2013 - 2017, Hüseyin Uslu, Int6ware - http://www.int6ware.com 4 | // 5 | 'use strict'; 6 | 7 | module.exports = function (grunt) { 8 | require('time-grunt')(grunt); 9 | 10 | grunt.initConfig({ 11 | pkg: grunt.file.readJSON('package.json'), 12 | shell: { 13 | semistandard: 'semistandard src/**/*.js --verbose | snazzy', 14 | cover: 'npm run cover' 15 | }, 16 | mochaTest: { 17 | options: { 18 | reporter: 'mochawesome', 19 | reporterOptions: { 20 | reportDir: 'build/test/mocha/', 21 | reportName: 'result', 22 | inlineAssets: true 23 | }, 24 | quiet: false 25 | }, 26 | src: ['test/**/*.js'] 27 | }, 28 | eslint: { 29 | target: ['src/**/*.js', 'assets/js/**/*.js', 'test/**/*.js', 'contrib/**/*.js'], 30 | options: { 31 | configFile: '.eslintrc.yaml', 32 | ingorePath: '.eslintignore', 33 | format: 'html', 34 | outputFile: 'build/lint/eslint/result.html', 35 | maxWarnings: -1 36 | } 37 | } 38 | }); 39 | 40 | // load all plugins. 41 | require('load-grunt-tasks')(grunt); 42 | 43 | // tasks. 44 | grunt.registerTask('test', ['mochaTest']); 45 | grunt.registerTask('lint', ['eslint']); 46 | grunt.registerTask('cover', 'shell:cover'); 47 | grunt.registerTask('semistandard', 'shell:semistandard'); 48 | grunt.registerTask('default', ['test']); 49 | }; 50 | -------------------------------------------------------------------------------- /src/pool/manager.js: -------------------------------------------------------------------------------- 1 | // 2 | // hypeengine 3 | // Copyright (C) 2013 - 2017, Hüseyin Uslu, Int6ware - http://www.int6ware.com 4 | // 5 | 'use strict'; 6 | 7 | const _ = require('lodash'); 8 | const Promise = require('bluebird'); 9 | const winston = require('winston'); 10 | const fs = require('fs'); 11 | const path = require('path'); 12 | const yaml = require('js-yaml'); 13 | const Pool = require('pool/pool'); 14 | 15 | const pools = []; 16 | 17 | module.exports = function () { 18 | return new Promise(async (resolve, reject) => { 19 | try { 20 | let configs = await discover(); 21 | winston.info('[MANAGER] discovered %d pools..', configs.length); 22 | 23 | _.forEach(configs, async entry => { 24 | if (!entry.enabled) return; 25 | let pool = new Pool(entry); 26 | pools.push(pool); 27 | }); 28 | 29 | return resolve(); 30 | } catch (err) { 31 | return reject(err); 32 | } 33 | }); 34 | }; 35 | 36 | function discover () { 37 | return new Promise(async (resolve, reject) => { 38 | try { 39 | let poolConfigDir = 'config/pools/'; 40 | let coinConfigDir = 'config/coins/'; 41 | 42 | let configs = []; 43 | 44 | // loop through pool configuration files 45 | fs.readdirSync(poolConfigDir).forEach(function (entry) { 46 | let file = path.join(poolConfigDir, entry); 47 | 48 | // make sure the file exists and is a json file 49 | if (!fs.existsSync(file) || path.extname(file) !== '.yaml') return; 50 | 51 | // read the config. 52 | let data = yaml.safeLoad(fs.readFileSync(file, 'utf8')); 53 | 54 | configs.push(data); 55 | return resolve(configs); 56 | }); 57 | } catch (err) { 58 | return reject(err); 59 | } 60 | }); 61 | } 62 | -------------------------------------------------------------------------------- /src/server.js: -------------------------------------------------------------------------------- 1 | // 2 | // hypeengine 3 | // Copyright (C) 2013 - 2017, Hüseyin Uslu, Int6ware - http://www.int6ware.com 4 | // 5 | 'use strict'; 6 | 7 | require('app-module-path').addPath(__dirname); 8 | const config = require('config'); 9 | const os = require('os'); 10 | const path = require('path'); 11 | const winston = require('winston'); 12 | const Promise = require('bluebird'); 13 | const packageInfo = require('../package.json'); 14 | 15 | async function startup () { 16 | try { 17 | // ======================================== 18 | // initialize env manager. 19 | // ======================================== 20 | require('common/env.js'); 21 | 22 | // ======================================== 23 | // initialize log manager. 24 | // ======================================== 25 | require('common/log/logger.js')('server'); 26 | 27 | // ======================================== 28 | // print startup banner. 29 | // ======================================== 30 | winston.info('[APP] starting up hpool-server version: %s [%s]', packageInfo.version, env); // eslint-disable-line no-undef 31 | winston.info('[APP] running on: %s-%s [%s %s]', os.platform(), os.arch(), os.type(), os.release()); 32 | winston.info('[APP] node: %s, v8: %s, uv: %s, openssl: %s', process.versions.node, process.versions.v8, process.versions.uv, process.versions.openssl); 33 | winston.info('[APP] running over %d core system', os.cpus().length); 34 | 35 | // ======================================== 36 | // database manager. 37 | // ======================================== 38 | await require('common/db/mongodb.js')(); 39 | 40 | // ======================================== 41 | // pool manager. 42 | // ======================================== 43 | await require('pool/manager.js')(); 44 | } catch (err) { 45 | winston.error('startup error: %s', err); 46 | } 47 | } 48 | 49 | startup(); 50 | -------------------------------------------------------------------------------- /src/common/db/mongodb.js: -------------------------------------------------------------------------------- 1 | // 2 | // hypeengine 3 | // Copyright (C) 2013 - 2017, Hüseyin Uslu, Int6ware - http://www.int6ware.com 4 | // 5 | 'use strict'; 6 | 7 | const Promise = require('bluebird'); 8 | const winston = require('winston'); 9 | const mongoose = require('mongoose'); 10 | const path = require('path'); 11 | const config = require('config'); 12 | const glob = require('glob-promise'); 13 | const forEach = require('lodash/forEach'); 14 | 15 | function load () { 16 | return new Promise(async (resolve, reject) => { 17 | try { 18 | mongoose.Promise = require('bluebird'); // let mongoose use bluebird. 19 | const db = `mongodb://${config.get('database.mongodb.host')}/${config.get('database.mongodb.name')}`; 20 | 21 | winston.log('info', '[DB] initializing mongodb connection:', db); 22 | 23 | // set the connection options 24 | const options = { server: { socketOptions: { keepAlive: 1 } } }; 25 | 26 | mongoose.connect(db, options); 27 | 28 | // TODO: let winston log the events 29 | mongoose.connection.on('error', console.log); // eslint-disable-line no-console 30 | mongoose.connection.on('disconnected', console.log); // eslint-disable-line no-console 31 | 32 | // enable logging collection methods + arguments to the console 33 | mongoose.set('debug', config.get('database.mongodb.debug')); 34 | 35 | winston.info('[DB] bootstrapping the mongo models..'); 36 | 37 | // find all available models and bootstrap them. 38 | let files = await glob('src/models/**/*.js'); 39 | winston.info('[DB] loading %d mongo models.', files.length); 40 | 41 | // loop through all available models files. 42 | forEach(files, function (model) { 43 | require(path.join(__dirname, '../../../', model)); 44 | }); 45 | 46 | winston.info('[DB] mongo database initialization complete..'); 47 | return resolve(); 48 | } catch (err) { 49 | return reject(err); 50 | } 51 | }); 52 | } 53 | 54 | module.exports = exports = load; 55 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hypeengine", 3 | "version": "0.0.1", 4 | "description": "hypeengine is the next-gen successor of CoiniumServ. Extending the outstanding features of CoiniumServ, hypeengine will support the modern needs for crypto-currency mining.", 5 | "os": [ 6 | "linux", 7 | "darwin", 8 | "win32" 9 | ], 10 | "cpu": [ 11 | "x64", 12 | "ia32" 13 | ], 14 | "author": "Huseyin Uslu (http://www.int6ware.com)", 15 | "homepage": "https://github.com/bonesoul/hypeengine#readme", 16 | "repository": { 17 | "type": "git", 18 | "url": "git+https://github.com/bonesoul/hypeengine.git" 19 | }, 20 | "bugs": { 21 | "url": "https://github.com/bonesoul/hypeengine/issues" 22 | }, 23 | "dependencies": { 24 | "app-module-path": "2.2.0", 25 | "base58-native": "0.1.4", 26 | "bignum": "0.12.5", 27 | "bluebird": "3.5.1", 28 | "config": "1.28.1", 29 | "crypto": "1.0.1", 30 | "glob": "7.1.2", 31 | "glob-promise": "3.3.0", 32 | "js-yaml": "3.10.0", 33 | "lodash": "4.17.4", 34 | "mongoose": "4.13.6", 35 | "pretty-error": "2.1.1", 36 | "winston": "2.4.0" 37 | }, 38 | "devDependencies": { 39 | "eslint": "4.12.1", 40 | "eslint-config-semistandard": "11.0.0", 41 | "eslint-plugin-import": "2.8.0", 42 | "eslint-plugin-mocha": "4.11.0", 43 | "eslint-plugin-node": "5.2.1", 44 | "eslint-plugin-promise": "3.6.0", 45 | "istanbul": "1.1.0-alpha.1", 46 | "grunt": "1.0.1", 47 | "grunt-eslint": "20.1.0", 48 | "grunt-mocha-test": "0.13.3", 49 | "grunt-shell": "2.1.0", 50 | "mocha": "3.4.2", 51 | "mochawesome": "2.2.1", 52 | "load-grunt-tasks": "3.5.2", 53 | "time-grunt": "1.4.0", 54 | "semistandard": "11.0.0", 55 | "snazzy": "7.0.0" 56 | }, 57 | "main": "src/server.js", 58 | "scripts": { 59 | "start": "node src/server.js", 60 | "cover": "node_modules/.bin/istanbul cover node_modules/mocha/bin/_mocha --dir ./build/coverage/ -- --reporter dot test/**/*.js" 61 | }, 62 | "engines": { 63 | "node": ">=9.2.0", 64 | "npm": ">=5.5.1" 65 | } 66 | } 67 | -------------------------------------------------------------------------------- /src/daemon/errors.js: -------------------------------------------------------------------------------- 1 | // 2 | // hypeengine 3 | // Copyright (C) 2013 - 2017, Hüseyin Uslu, Int6ware - http://www.int6ware.com 4 | // 5 | 'use strict'; 6 | 7 | exports.Rpc = { 8 | // Standard JSON-RPC 2.0 errors 9 | INVALID_REQUEST: -32600, 10 | METHOD_NOT_FOUND: -32601, 11 | INVALID_PARAMS: -32602, 12 | INTERNAL_ERROR: -32603, 13 | PARSE_ERROR: -32700, 14 | 15 | // General application defined errors 16 | MISC_ERROR: -1, // std::exception thrown in command handling 17 | FORBIDDEN_BY_SAFE_MODE: -2, // Server is in safe mode, and command is not allowed in safe mode 18 | TYPE_ERROR: -3, // Unexpected type was passed as parameter 19 | INVALID_ADDRESS_OR_KEY: -5, // Invalid address or key 20 | OUT_OF_MEMORY: -7, // Ran out of memory during operation 21 | INVALID_PARAMETER: -8, // Invalid, missing or duplicate parameter 22 | DATABASE_ERROR: -20, // Database error 23 | DESERIALIZATION_ERROR: -22, // Error parsing or validating structure in raw format 24 | TRANSACTION_ERROR: -25, // General error during transaction submission 25 | TRANSACTION_REJECTED: -26, // Transaction was rejected by network rules 26 | TRANSACTION_ALREADY_IN_CHAIN: -27, // Transaction already in chain 27 | 28 | // P2P client errors 29 | CLIENT_NOT_CONNECTED: -9, // Bitcoin is not connected 30 | CLIENT_IN_INITIAL_DOWNLOAD: -10, // Still downloading initial blocks 31 | CLIENT_NODE_ALREADY_ADDED: -23, // Node is already added 32 | CLIENT_NODE_NOT_ADDED: -24, // Node has not been added before 33 | 34 | // Wallet errors 35 | WALLET_ERROR: -4, // Unspecified problem with wallet (key not found etc.) 36 | WALLET_INSUFFICIENT_FUNDS: -6, // Not enough funds in wallet or account 37 | WALLET_INVALID_ACCOUNT_NAME: -11, // Invalid account name 38 | WALLET_KEYPOOL_RAN_OUT: -12, // Keypool ran out, call keypoolrefill first 39 | WALLET_UNLOCK_NEEDED: -13, // Enter the wallet passphrase with walletpassphrase first 40 | WALLET_PASSPHRASE_INCORRECT: -14, // The wallet passphrase entered was incorrect 41 | WALLET_WRONG_ENC_STATE: -15, // Command given in wrong wallet encryption state (encrypting an encrypted wallet etc.) 42 | WALLET_ENCRYPTION_FAILED: -16, // Failed to encrypt the wallet 43 | WALLET_ALREADY_UNLOCKED: -17 // Wallet is already unlocked 44 | }; 45 | -------------------------------------------------------------------------------- /src/stratum/server.js: -------------------------------------------------------------------------------- 1 | // 2 | // hypeengine 3 | // Copyright (C) 2013 - 2017, Hüseyin Uslu, Int6ware - http://www.int6ware.com 4 | // 5 | 'use strict'; 6 | 7 | const net = require('net'); 8 | const events = require('events'); 9 | const winston = require('winston'); 10 | const utils = require('common/utils.js'); 11 | const Client = require('stratum/client'); 12 | 13 | var stratum = module.exports = function (context) { 14 | var _this = this; 15 | _this.clients = {}; 16 | 17 | let subscriptionCounter = SubscriptionCounter(); // create a subscri.ption counter for the server that's used for assinging id's to clients. 18 | 19 | // create the tcp server for stratum+tp:// connections 20 | let server = net.createServer({ allowHalfOpen: false }, function (socket) { 21 | handleConnection(socket); // handle the new connection 22 | }); 23 | 24 | server.maxConnections = 1000000; // set max connections to as much as possible. 25 | 26 | // start listening for connections 27 | server.listen(context.config.stratum.port, function () { 28 | winston.log('info', '[STRATUM] listening on %s:%d', server.address().address, server.address().port); 29 | _this.emit('server.started'); 30 | }) 31 | .on('error', function (err) { 32 | if (err.code === 'EADDRINUSE') winston.error("Can not listen on port %d as it's already in use, retrying..", context.config.stratum.port); 33 | else winston.error('Can not listen for stratum; %s', err); 34 | }); 35 | 36 | // Handles incoming connections 37 | function handleConnection (socket) { 38 | winston.debug('[STRATUM] client connected %s:%d', socket.remoteAddress, socket.remotePort); 39 | 40 | socket.setKeepAlive(true); // set keep-alive on as we want a continous connection. 41 | 42 | let client = new Client({ 43 | socket: socket, // assigned socket to client's connection. 44 | subscriptionId: subscriptionCounter.next() // get a new subscription id for the client. 45 | }) 46 | .on('subscribe', function (params, callback) { 47 | // on subscription reques 48 | // var extraNonce = context.jobManager.extraNonceCounter.next() 49 | // callback(null, extraNonce, context.extraNonce2.size) 50 | }) 51 | .on('authorize', function (params, callback) { 52 | // on authorization request 53 | // callback(true, null) 54 | // this.sendJob(context.jobManager.current) 55 | }) 56 | .on('socket.disconnect', function () { 57 | // delete _this.clients[client.id] 58 | // _this.emit('client.disconnected', client) 59 | }); 60 | 61 | _this.clients[client.id] = client; 62 | _this.emit('client.connected', client); 63 | } 64 | }; 65 | 66 | // subscriptions counter for the stratum server. 67 | var SubscriptionCounter = function () { 68 | var count = 0; 69 | var padding = 'deadc0de'; 70 | 71 | return { 72 | next: function () { 73 | count++; 74 | if (Number.MAX_VALUE === count) count = 0;// once we reach the maximum allowed value, reset back. 75 | 76 | return padding + utils.packInt64LE(count).toString('hex'); 77 | } 78 | }; 79 | }; 80 | 81 | stratum.prototype.__proto__ = events.EventEmitter.prototype; 82 | -------------------------------------------------------------------------------- /src/stratum/client.js: -------------------------------------------------------------------------------- 1 | // 2 | // hypeengine 3 | // Copyright (C) 2013 - 2017, Hüseyin Uslu, Int6ware - http://www.int6ware.com 4 | // 5 | 'use strict'; 6 | 7 | var events = require('events'); 8 | var winston = require('winston'); 9 | 10 | var client = module.exports = function (options) { 11 | var _this = this; 12 | _this.id = options.subscriptionId; // subscription id for the client. 13 | _this.lastActivity = Date.now(); // last activity by the client. 14 | _this.difficulty = 16; 15 | _this.authorized = false; 16 | _this.subscribed = false; 17 | _this.workerName = null; 18 | _this.workerPassword = null; 19 | _this.extraNonce1 = null; // extraNonce1 for the client. 20 | 21 | // number of shares submissions by the client - used by ban manager to evaluate a ban. 22 | _this.shares = { 23 | valid: 0, // valid shares counter 24 | invalid: 0 // invalid shares counter. 25 | }; 26 | 27 | _this.socket = options.socket; 28 | setupSocket(); 29 | 30 | function setupSocket () { 31 | _this.socket.setEncoding('utf8'); // set the encoding. 32 | var buffer = ''; // our data buffer. 33 | 34 | _this.socket.on('data', function (data) { // data recieve event 35 | buffer += data; 36 | 37 | // check for flooded socket - only allow a maximum of 10 KB of data. 38 | if (Buffer.byteLength(buffer, 'utf8') > 10240) { 39 | buffer = ''; 40 | _this.emit('socket.flooded'); 41 | _this.socket.destroy(); 42 | return; 43 | } 44 | 45 | // check for a new message 46 | if (buffer.indexOf('\n') !== -1) { 47 | var messages = buffer.split('\n'); // get the messages. 48 | var incomplete = buffer.slice(-1) === '\n' ? '' : messages.pop(); // make sure to keep existing incomplete message if any. 49 | 50 | messages.forEach(function (message) { 51 | if (message === '') return; // skip empty lines 52 | 53 | // try to parse the message as json. 54 | var json; 55 | 56 | try { 57 | json = JSON.parse(message); 58 | } catch (e) { 59 | /* destroy connections that submit messages we can't handle */ 60 | _this.emit('protocol.error', message); 61 | _this.socket.destroy(); 62 | return; 63 | } 64 | 65 | // if we do have a valid json message 66 | if (json) { 67 | handleMessage(json); 68 | } 69 | }); 70 | 71 | buffer = incomplete; // keep the incomplete data in buffer. 72 | } 73 | }) 74 | .on('close', function () { 75 | _this.emit('socket.disconnect'); 76 | }) 77 | .on('error', function (err) { 78 | if (err.code !== 'ECONNRESET') _this.emit('socket.error', err); 79 | }); 80 | } 81 | 82 | // Handles json-rpc messages from the client 83 | function handleMessage (message) { 84 | winston.debug('[STRATUM] recv: %j', message); 85 | 86 | // check the method. 87 | switch (message.method) { 88 | case 'mining.subscribe': // subscription request 89 | // handleSubscribe(message); 90 | break; 91 | case 'mining.extranonce.subscribe': 92 | // handleExtraNonceSubscribe(message) 93 | break; 94 | case 'mining.authorize': // authorization request 95 | // handleAuthorize(message) 96 | break; 97 | case 'mining.submit': // share submission 98 | _this.lastActivity = Date.now(); // update the activity for the client. 99 | // handleSubmit(message) 100 | break; 101 | case 'mining.get_transactions': 102 | // handleGetTransactions(message) 103 | break; 104 | case 'mining.capabilities': 105 | // handleCapabilities(message) 106 | break; 107 | case 'mining.suggest_target': 108 | // handleSuggestTarget(message) 109 | break; 110 | default: 111 | _this.emit('stratum.error', message); 112 | // errorReply(message.id, errors.stratum.METHOD_NOT_FOUND) 113 | break; 114 | } 115 | } 116 | }; 117 | 118 | client.prototype.__proto__ = events.EventEmitter.prototype; 119 | -------------------------------------------------------------------------------- /src/daemon/daemon.js: -------------------------------------------------------------------------------- 1 | // 2 | // hypeengine 3 | // Copyright (C) 2013 - 2017, Hüseyin Uslu, Int6ware - http://www.int6ware.com 4 | // 5 | 'use strict'; 6 | 7 | const winston = require('winston'); 8 | const events = require('events'); 9 | const http = require('http'); 10 | 11 | var daemon = module.exports = function (config) { 12 | var _this = this; 13 | _this.config = config; 14 | 15 | this.cmd = cmd; 16 | this.batch = batch; 17 | http.globalAgent.maxSockets = Infinity; // free the limits of http connections. 18 | 19 | winston.info('[DAEMON] Checking connectivity [%s:%d]..', _this.config.host, _this.config.port); 20 | 21 | waitDaemonConnectivity(function () { 22 | winston.info('[DAEMON] Connection check succesfull [%s:%d]', _this.config.host, _this.config.port); 23 | _this.emit('online'); 24 | }); 25 | 26 | function waitDaemonConnectivity (callback) { 27 | var retryCount = 0; 28 | 29 | var check = function () { 30 | // make sure we can connect to configured coin daemon. 31 | cmd('getinfo', [], function (error, response) { 32 | if (error !== null || response === 'undefined' || response.error) { 33 | // case when we can't get a response back from coin daemon. 34 | retryCount++; 35 | winston.warn('[DAEMON] Waiting for daemon [%s:%d] to come online - retry: %d', _this.config.host, _this.config.port, retryCount); 36 | setTimeout(check, 1000); 37 | } else if (response.result.connections === 0) { 38 | // case where coin daemon is not connected to coin network (getinfo.connections = 0) 39 | retryCount++; 40 | winston.warn('[DAEMON] Waiting for daemon [%s:%d] to get connected - retry: %d', _this.config.host, _this.config.port, retryCount); 41 | setTimeout(check, 1000); 42 | } else { 43 | // once we can get a reply back from coin daemon and it's connected to other peers, 44 | // we are ready to rock 45 | callback(); 46 | } 47 | }); 48 | }; 49 | 50 | check(); 51 | } 52 | 53 | function cmd (method, params, callback) { 54 | var request = JSON.stringify({ 55 | method: method, 56 | params: params, 57 | id: Date.now() + Math.floor(Math.random() * 10) 58 | }); 59 | 60 | makeHttpRequest(request, function (error, result) { 61 | callback(error, result); 62 | }); 63 | } 64 | 65 | function batch (methods, callback) { 66 | var requests = []; 67 | 68 | for (var i = 0; i < methods.length; i++) { 69 | requests.push({ 70 | method: methods[i][0], 71 | params: methods[i][1], 72 | id: Date.now() + Math.floor(Math.random() * 10) + i 73 | }); 74 | } 75 | 76 | var json = JSON.stringify(requests); 77 | 78 | makeHttpRequest(json, function (error, results) { 79 | callback(error, results); 80 | }); 81 | } 82 | 83 | function makeHttpRequest (requestData, callback) { 84 | var options = { 85 | hostname: (typeof (_this.config.host) === 'undefined' ? '127.0.0.1' : _this.config.host), // default to 127.0.0.1 86 | port: _this.config.port, 87 | method: 'POST', 88 | auth: _this.config.user + ':' + _this.config.password, 89 | headers: { 90 | 'Content-Length': requestData.length 91 | } 92 | }; 93 | 94 | var request = http.request(options, function (response) { 95 | var data = ''; 96 | response.setEncoding('utf8'); 97 | response.on('data', function (chunk) { 98 | data += chunk; 99 | }); 100 | response.on('end', function () { 101 | parseResponse(response, data); 102 | }); 103 | }); 104 | 105 | request.on('error', function (e) { 106 | callback(e); 107 | }); 108 | 109 | request.end(requestData); 110 | 111 | var parseResponse = function (response, responseData) { 112 | var json; 113 | 114 | // handle 401 - Unauthorized 115 | if (response.statusCode === 401) { 116 | winston.error('[DAEMON] Unauthorized RPC access - invalid RPC username or password'); 117 | return; 118 | } 119 | 120 | try { 121 | json = JSON.parse(responseData); 122 | } catch (e) { 123 | winston.error('[DAEMON] Could not parse rpc data from coin daemon; \n request: ' + requestData + '\nresponse: ' + responseData); 124 | callback(e); 125 | } 126 | 127 | if (json) callback(json.error, json); 128 | }; 129 | } 130 | }; 131 | 132 | daemon.prototype.__proto__ = events.EventEmitter.prototype; 133 | -------------------------------------------------------------------------------- /src/common/utils.js: -------------------------------------------------------------------------------- 1 | // 2 | // hypeengine 3 | // Copyright (C) 2013 - 2017, Hüseyin Uslu, Int6ware - http://www.int6ware.com 4 | // 5 | 'use strict'; 6 | 7 | var base58 = require('base58-native'); 8 | var bignum = require('bignum'); 9 | var crypto = require('crypto'); 10 | 11 | // For POS coins - used to format wallet address for use in generation transaction's output 12 | exports.pubkeyToScript = function (key) { 13 | if (key.length !== 66) { 14 | console.error('Invalid pubkey: ' + key); 15 | throw new Error(); 16 | } 17 | var pubkey = new Buffer(35); 18 | pubkey[0] = 0x21; 19 | pubkey[34] = 0xac; 20 | new Buffer(key, 'hex').copy(pubkey, 1); 21 | return pubkey; 22 | }; 23 | 24 | // For POW coins - used to format wallet address for use in generation transaction's output 25 | exports.addressToScript = function (addr) { 26 | var decoded = base58.decode(addr); 27 | 28 | if (decoded.length != 25) { 29 | console.error('invalid address length for ' + addr); 30 | throw new Error(); 31 | } 32 | 33 | if (!decoded) { 34 | console.error('base58 decode failed for ' + addr); 35 | throw new Error(); 36 | } 37 | 38 | var pubkey = decoded.slice(1, -4); 39 | 40 | return Buffer.concat([new Buffer([0x76, 0xa9, 0x14]), pubkey, new Buffer([0x88, 0xac])]); 41 | }; 42 | 43 | exports.reverseBuffer = function (buff) { 44 | var reversed = new Buffer(buff.length); 45 | for (var i = buff.length - 1; i >= 0; i--) 46 | reversed[buff.length - i - 1] = buff[i]; 47 | return reversed; 48 | }; 49 | 50 | exports.reverseByteOrder = function (buff) { 51 | for (var i = 0; i < 8; i++) buff.writeUInt32LE(buff.readUInt32BE(i * 4), i * 4); 52 | return exports.reverseBuffer(buff); 53 | }; 54 | 55 | exports.uint256BufferFromHash = function (hex) { 56 | var fromHex = new Buffer(hex, 'hex'); 57 | 58 | if (fromHex.length != 32) { 59 | var empty = new Buffer(32); 60 | empty.fill(0); 61 | fromHex.copy(empty); 62 | fromHex = empty; 63 | } 64 | 65 | return exports.reverseBuffer(fromHex); 66 | }; 67 | 68 | exports.sha256 = function (buffer) { 69 | var hash1 = crypto.createHash('sha256'); 70 | hash1.update(buffer); 71 | return hash1.digest(); 72 | }; 73 | 74 | exports.sha256d = function (buffer) { 75 | return exports.sha256(exports.sha256(buffer)); 76 | }; 77 | 78 | /* 79 | Used to convert getblocktemplate bits field into target if target is not included. 80 | More info: https://en.bitcoin.it/wiki/Target 81 | */ 82 | exports.bignumFromBitsBuffer = function (bitsBuff) { 83 | var numBytes = bitsBuff.readUInt8(0); 84 | var bigBits = bignum.fromBuffer(bitsBuff.slice(1)); 85 | var target = bigBits.mul( 86 | bignum(2).pow( 87 | bignum(8).mul( 88 | numBytes - 3 89 | ) 90 | ) 91 | ); 92 | return target; 93 | }; 94 | 95 | exports.bignumFromBitsHex = function (bitsString) { 96 | var bitsBuff = new Buffer(bitsString, 'hex'); 97 | return exports.bignumFromBitsBuffer(bitsBuff); 98 | }; 99 | 100 | // An exact copy of python's range feature. Written by Tadeck: http://stackoverflow.com/a/8273091 101 | exports.range = function (start, stop, step) { 102 | if (typeof stop === 'undefined') { 103 | stop = start; 104 | start = 0; 105 | } 106 | if (typeof step === 'undefined') { 107 | step = 1; 108 | } 109 | if ((step > 0 && start >= stop) || (step < 0 && start <= stop)) { 110 | return []; 111 | } 112 | var result = []; 113 | for (var i = start; step > 0 ? i < stop : i > stop; i += step) { 114 | result.push(i); 115 | } 116 | return result; 117 | }; 118 | 119 | /* 120 | Used for serializing strings used in script signature 121 | */ 122 | exports.serializeString = function (s) { 123 | if (s.length < 253) 124 | return Buffer.concat([ 125 | new Buffer([s.length]), 126 | new Buffer(s) 127 | ]); 128 | else if (s.length < 0x10000) 129 | return Buffer.concat([ 130 | new Buffer([253]), 131 | exports.packUInt16LE(s.length), 132 | new Buffer(s) 133 | ]); 134 | else if (s.length < 0x100000000) 135 | return Buffer.concat([ 136 | new Buffer([254]), 137 | exports.packUInt32LE(s.length), 138 | new Buffer(s) 139 | ]); 140 | else 141 | return Buffer.concat([ 142 | new Buffer([255]), 143 | exports.packUInt16LE(s.length), 144 | new Buffer(s) 145 | ]); 146 | }; 147 | 148 | exports.packUInt16LE = function (num) { 149 | var buff = new Buffer(2); 150 | buff.writeUInt16LE(num, 0); 151 | return buff; 152 | }; 153 | exports.packInt32LE = function (num) { 154 | var buff = new Buffer(4); 155 | buff.writeInt32LE(num, 0); 156 | return buff; 157 | }; 158 | exports.packInt32BE = function (num) { 159 | var buff = new Buffer(4); 160 | buff.writeInt32BE(num, 0); 161 | return buff; 162 | }; 163 | exports.packUInt32LE = function (num) { 164 | var buff = new Buffer(4); 165 | buff.writeUInt32LE(num, 0); 166 | return buff; 167 | }; 168 | exports.packUInt32BE = function (num) { 169 | var buff = new Buffer(4); 170 | buff.writeUInt32BE(num, 0); 171 | return buff; 172 | }; 173 | exports.packInt64LE = function (num) { 174 | var buff = new Buffer(8); 175 | buff.writeUInt32LE(num % Math.pow(2, 32), 0); 176 | buff.writeUInt32LE(Math.floor(num / Math.pow(2, 32)), 4); 177 | return buff; 178 | }; 179 | 180 | exports.serializeNumber = function (n) { 181 | if (n >= 1 && n <= 16) 182 | return new Buffer([0x50 + n]); 183 | 184 | var l = 1; 185 | var buff = new Buffer(9); 186 | while (n > 0x7f) { 187 | buff.writeUInt8(n & 0xff, l++); 188 | n >>= 8; 189 | } 190 | buff.writeUInt8(l, 0); 191 | buff.writeUInt8(n, l++); 192 | return buff.slice(0, l); 193 | }; 194 | 195 | /* 196 | Defined in bitcoin protocol here: 197 | https://en.bitcoin.it/wiki/Protocol_specification#Variable_length_integer 198 | */ 199 | exports.varIntBuffer = function (n) { 200 | if (n < 0xfd) 201 | return new Buffer([n]); 202 | else if (n < 0xffff) { 203 | var buff = new Buffer(3); 204 | buff[0] = 0xfd; 205 | buff.writeUInt16LE(n, 1); 206 | return buff; 207 | } 208 | else if (n < 0xffffffff) { 209 | var buff = new Buffer(5); 210 | buff[0] = 0xfe; 211 | buff.writeUInt32LE(n, 1); 212 | return buff; 213 | }else { 214 | var buff = new Buffer(9); 215 | buff[0] = 0xff; 216 | exports.packUInt16LE(n).copy(buff, 1); 217 | return buff; 218 | } 219 | }; 220 | -------------------------------------------------------------------------------- /src/pool/pool.js: -------------------------------------------------------------------------------- 1 | // 2 | // hypeengine 3 | // Copyright (C) 2013 - 2017, Hüseyin Uslu, Int6ware - http://www.int6ware.com 4 | // 5 | 'use strict'; 6 | 7 | const winston = require('winston'); 8 | const events = require('events'); 9 | const _ = require('lodash'); 10 | const Promise = require('bluebird'); 11 | const StratumServer = require('stratum/server'); 12 | const Daemon = require('daemon/daemon'); 13 | const ShareManager = require('pool/managers/share'); 14 | const BlockManager = require('pool/managers/block'); 15 | const JobManager = require('pool/managers/job'); 16 | const errors = require('daemon/errors'); 17 | const utils = require('common/utils.js'); 18 | 19 | var pool = module.exports = function (config) { 20 | var _this = this; 21 | winston.info('[POOL] starting %s pool..', config.name); 22 | 23 | _this.context = { 24 | config: config, 25 | coin: { 26 | coinVersion: null, 27 | protocolVersion: null, 28 | walletVersion: null, 29 | capatabilities: { 30 | submitBlockSupported: null 31 | } 32 | }, 33 | network: { 34 | testnet: null, 35 | connections: null, 36 | errors: null, 37 | difficulty: null, 38 | hashRate: null 39 | }, 40 | wallet: { 41 | central: null 42 | }, 43 | fees: { 44 | percent: 0, // total percent of pool fees. 45 | recipients: [] // recipients of fees. 46 | } 47 | }; 48 | 49 | startup(); 50 | 51 | async function startup () { 52 | _this.context.daemon = await setupDaemon(_this.context.config.daemon); // start daemon connection. 53 | _this.context.coin.capatabilities.submitBlockSupported = await detectSubmitBlock(); // get coin capatabilities. 54 | _this.context.wallet.central = await validatePoolAddress(); // validate central pool address. 55 | await readNetworkInfo(); // read network info. 56 | await waitBlockChainSync(); // wait for blockchain synchronization. 57 | await setupRecipients(); // setup pool's fee recipients. 58 | await startManagers(); // startup managers. 59 | await startStratumServer(); // startup stratum server. 60 | 61 | winston.info('[COIN] submitblock: %s, difficulty: %d', _this.context.coin.capatabilities.submitBlockSupported, _this.context.network.difficulty); 62 | winston.info('[POOL] startup done..'); 63 | } 64 | 65 | // starts up the daemon connection 66 | function setupDaemon () { 67 | return new Promise(async (resolve, reject) => { 68 | try { 69 | if (typeof (_this.context.config) === 'undefined') { 70 | // make sure we have been supplied a daemon configuration. 71 | return reject(new Error('No coin daemons have been configured. Pool initialization failed..')); 72 | } 73 | 74 | let daemon = new Daemon(_this.context.config.daemon); 75 | 76 | // wait until daemon interface reports that we are online (got connected to daemon succesfully). 77 | daemon.once('online', function () { 78 | return resolve(daemon); 79 | }); 80 | } catch (err) { 81 | return reject(err); 82 | } 83 | }); 84 | } 85 | 86 | // detects if the coin supports submitblock() call. 87 | function detectSubmitBlock () { 88 | return new Promise(async (resolve, reject) => { 89 | try { 90 | // issue a submitblock() call too see if it's supported. 91 | // If the coin supports the submitblock() call it's should return a DESERIALIZATION_ERROR (-22) - 'Block decode failed' 92 | // Otherwise if it doesn't support the call, it should return a METHOD_NOT_FOUND(-32601) - 'Method not found' error. 93 | _this.context.daemon.cmd('submitblock', ['invalid-hash'], function (error, response) { 94 | if (error.code === errors.Rpc.DESERIALIZATION_ERROR) return resolve(true); // the coin supports submitblock(). 95 | else if (error.code === errors.Rpc.METHOD_NOT_FOUND) return resolve(false); // the coin doesn't have submitblock() method. 96 | }); 97 | } catch (err) { 98 | return reject(err); 99 | } 100 | }); 101 | } 102 | 103 | // validates the configured pool address for recieving mined blocks. 104 | function validatePoolAddress () { 105 | return new Promise(async (resolve, reject) => { 106 | try { 107 | _this.context.daemon.cmd('validateaddress', [_this.context.config.wallet.address], function (error, response) { 108 | if (error) return reject(new Error(`Pool initilization failed as rpc call validateaddress() call failed: ${response.error.message}`)); 109 | 110 | let result = response.result; 111 | 112 | // make sure configured address is valid. 113 | if (!result.isvalid || !result.ismine) return reject(new Error(`Pool initilization failed as configured pool address '${_this.context.config.wallet.address}' is not owned by the connected wallet.`)); 114 | 115 | // get the script for the pool address. 116 | result.script = utils.addressToScript(result.address); // pure pow coins just use the address within the coinbase transaction. 117 | 118 | return resolve(result); 119 | }); 120 | } catch (err) { 121 | return reject(err); 122 | } 123 | }); 124 | } 125 | 126 | // reads coin's network information. 127 | function readNetworkInfo () { 128 | return new Promise(async (resolve, reject) => { 129 | try { 130 | let calls = [ 131 | ['getinfo', []], 132 | ['getmininginfo', []] 133 | ]; 134 | 135 | // make a batch call of getinfo() and getmininginfo() 136 | _this.context.daemon.batch(calls, function (error, responses) { 137 | if (error) return reject(new Error(`Error reading network info`)); 138 | 139 | var results = []; 140 | responses.forEach(function (response, index) { 141 | var call = calls[index][0]; 142 | if (response.error) return reject(new Error(`Pool initilization failed as rpc call '${call}' failed: ${response.error.message}`)); // catch any rpc errors. 143 | 144 | results[call] = response.result; 145 | }); 146 | 147 | // set the data. 148 | _this.context.coin.coinVersion = results.getinfo.version; 149 | _this.context.coin.protocolVersion = results.getinfo.protocolversion; 150 | _this.context.coin.walletVersion = results.getinfo.walletversion; 151 | _this.context.network.testnet = results.getinfo.testnet; 152 | _this.context.network.connections = results.getinfo.connections; 153 | _this.context.network.errors = results.getinfo.errors; 154 | _this.context.network.difficulty = results.getmininginfo.difficulty; 155 | _this.context.network.hashRate = results.getmininginfo.networkhashps; 156 | 157 | return resolve(); 158 | }); 159 | } catch (err) { 160 | return reject(err); 161 | } 162 | }); 163 | } 164 | 165 | // awaits for the block chain synchronization. 166 | function waitBlockChainSync () { 167 | return new Promise(async (resolve, reject) => { 168 | try { 169 | // getblocktemplate() will fail if coin daemon still sync blocks from the network. 170 | // we'll be using it with getinfo() and getpeerinfo() together to see if we are synced with the network. 171 | 172 | var recheck = function () { 173 | let calls = [ 174 | ['getblocktemplate', []], 175 | ['getinfo', []], 176 | ['getpeerinfo', []] 177 | ]; 178 | 179 | _this.context.daemon.batch(calls, function (error, responses) { 180 | if (error) return reject(new Error(`Error reading network info`)); 181 | 182 | var results = []; 183 | responses.forEach(function (response, index) { 184 | var call = calls[index][0]; 185 | if (response.error) return reject(new Error(`Pool initilization failed as rpc call '${call}' failed: ${response.error.message}`)); // catch any rpc errors. 186 | 187 | results[call] = response.result; 188 | }); 189 | 190 | let synced = !results.getblocktemplate.error || results.getblocktemplate.error.code !== errors.Rpc.CLIENT_IN_INITIAL_DOWNLOAD; 191 | if (synced) return resolve(); 192 | 193 | setTimeout(recheck, 5000); // re-schedule recheck(). 194 | 195 | var blockCount = results.getinfo.blocks; 196 | var peers = results.getpeerinfo; 197 | var sorted = peers.sort(function (a, b) { 198 | return b.startingheight - a.startingheight; 199 | }); 200 | 201 | var longestChain = sorted[0].startingheight; 202 | var percent = (blockCount / longestChain * 100).toFixed(2); 203 | 204 | winston.warn(new Error(`Waiting for block chain syncronization, downloaded ${percent}% from ${peers.length} peers.`)); 205 | }); 206 | }; 207 | 208 | recheck(); 209 | } catch (err) { 210 | return reject(err); 211 | } 212 | }); 213 | } 214 | 215 | // reads coin's network information. 216 | function setupRecipients () { 217 | return new Promise(async (resolve, reject) => { 218 | try { 219 | _.forEach(_this.context.config.rewards, (percent, address) => { 220 | let recipient = { 221 | percent: percent / 100, 222 | script: utils.addressToScript(address) 223 | }; 224 | 225 | _this.context.fees.recipients.push(recipient); 226 | _this.context.fees.percent += percent; 227 | }); 228 | 229 | if (_this.context.fees.percent === 0) winston.warn('Your pool is configured with 0% fees!'); 230 | 231 | return resolve(); 232 | } catch (err) { 233 | return reject(err); 234 | } 235 | }); 236 | } 237 | 238 | // start managers. 239 | function startManagers () { 240 | return new Promise(async (resolve, reject) => { 241 | try { 242 | _this.context.shareManager = new ShareManager(); 243 | _this.context.blockManager = new BlockManager(); 244 | _this.context.jobManager = new JobManager(); 245 | return resolve(); 246 | } catch (err) { 247 | return reject(err); 248 | } 249 | }); 250 | } 251 | 252 | function startStratumServer () { 253 | return new Promise(async (resolve, reject) => { 254 | try { 255 | _this.context.server = new StratumServer(_this.context) 256 | .on('client.connected', function (client) { 257 | winston.info('client connected'); 258 | }) 259 | .on('server.started', function () { 260 | return resolve(); 261 | }); 262 | } catch (err) { 263 | return reject(err); 264 | } 265 | }); 266 | } 267 | }; 268 | 269 | pool.prototype.__proto__ = events.EventEmitter.prototype; 270 | -------------------------------------------------------------------------------- /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-escapes@^2.0.0: 51 | version "2.0.0" 52 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-2.0.0.tgz#5bae52be424878dd9783e8910e3fc2922e83c81b" 53 | 54 | ansi-regex@^2.0.0: 55 | version "2.1.1" 56 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 57 | 58 | ansi-styles@^2.2.1: 59 | version "2.2.1" 60 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 61 | 62 | app-module-path@2.2.0: 63 | version "2.2.0" 64 | resolved "https://registry.yarnpkg.com/app-module-path/-/app-module-path-2.2.0.tgz#641aa55dfb7d6a6f0a8141c4b9c0aa50b6c24dd5" 65 | 66 | append-transform@^0.4.0: 67 | version "0.4.0" 68 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 69 | dependencies: 70 | default-require-extensions "^1.0.0" 71 | 72 | aproba@^1.0.3: 73 | version "1.1.2" 74 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.2.tgz#45c6629094de4e96f693ef7eab74ae079c240fc1" 75 | 76 | are-we-there-yet@~1.1.2: 77 | version "1.1.4" 78 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 79 | dependencies: 80 | delegates "^1.0.0" 81 | readable-stream "^2.0.6" 82 | 83 | argparse@^1.0.2, argparse@^1.0.7: 84 | version "1.0.9" 85 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 86 | dependencies: 87 | sprintf-js "~1.0.2" 88 | 89 | array-differ@^1.0.0: 90 | version "1.0.0" 91 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" 92 | 93 | array-find-index@^1.0.1: 94 | version "1.0.2" 95 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 96 | 97 | array-union@^1.0.1: 98 | version "1.0.2" 99 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 100 | dependencies: 101 | array-uniq "^1.0.1" 102 | 103 | array-uniq@^1.0.1: 104 | version "1.0.3" 105 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 106 | 107 | array.prototype.find@^2.0.1: 108 | version "2.0.4" 109 | resolved "https://registry.yarnpkg.com/array.prototype.find/-/array.prototype.find-2.0.4.tgz#556a5c5362c08648323ddaeb9de9d14bc1864c90" 110 | dependencies: 111 | define-properties "^1.1.2" 112 | es-abstract "^1.7.0" 113 | 114 | arrify@^1.0.0: 115 | version "1.0.1" 116 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 117 | 118 | asap@~2.0.3: 119 | version "2.0.5" 120 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.5.tgz#522765b50c3510490e52d7dcfe085ef9ba96958f" 121 | 122 | asn1@~0.2.3: 123 | version "0.2.3" 124 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 125 | 126 | assert-plus@1.0.0, assert-plus@^1.0.0: 127 | version "1.0.0" 128 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 129 | 130 | assert-plus@^0.2.0: 131 | version "0.2.0" 132 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 133 | 134 | async@1.x, async@~1.0.0: 135 | version "1.0.0" 136 | resolved "https://registry.yarnpkg.com/async/-/async-1.0.0.tgz#f8fc04ca3a13784ade9e1641af98578cfbd647a9" 137 | 138 | async@2.1.4, async@^2.1.4: 139 | version "2.1.4" 140 | resolved "https://registry.yarnpkg.com/async/-/async-2.1.4.tgz#2d2160c7788032e4dd6cbe2502f1f9a2c8f6cde4" 141 | dependencies: 142 | lodash "^4.14.0" 143 | 144 | async@^1.4.0, async@~1.5.2: 145 | version "1.5.2" 146 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 147 | 148 | asynckit@^0.4.0: 149 | version "0.4.0" 150 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 151 | 152 | aws-sign2@~0.6.0: 153 | version "0.6.0" 154 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 155 | 156 | aws4@^1.2.1: 157 | version "1.6.0" 158 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 159 | 160 | babel-code-frame@^6.16.0, babel-code-frame@^6.22.0: 161 | version "6.22.0" 162 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 163 | dependencies: 164 | chalk "^1.1.0" 165 | esutils "^2.0.2" 166 | js-tokens "^3.0.0" 167 | 168 | babel-generator@^6.18.0: 169 | version "6.25.0" 170 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.25.0.tgz#33a1af70d5f2890aeb465a4a7793c1df6a9ea9fc" 171 | dependencies: 172 | babel-messages "^6.23.0" 173 | babel-runtime "^6.22.0" 174 | babel-types "^6.25.0" 175 | detect-indent "^4.0.0" 176 | jsesc "^1.3.0" 177 | lodash "^4.2.0" 178 | source-map "^0.5.0" 179 | trim-right "^1.0.1" 180 | 181 | babel-messages@^6.23.0: 182 | version "6.23.0" 183 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 184 | dependencies: 185 | babel-runtime "^6.22.0" 186 | 187 | babel-runtime@^6.20.0, babel-runtime@^6.22.0: 188 | version "6.23.0" 189 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 190 | dependencies: 191 | core-js "^2.4.0" 192 | regenerator-runtime "^0.10.0" 193 | 194 | babel-template@^6.16.0: 195 | version "6.25.0" 196 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.25.0.tgz#665241166b7c2aa4c619d71e192969552b10c071" 197 | dependencies: 198 | babel-runtime "^6.22.0" 199 | babel-traverse "^6.25.0" 200 | babel-types "^6.25.0" 201 | babylon "^6.17.2" 202 | lodash "^4.2.0" 203 | 204 | babel-traverse@^6.18.0, babel-traverse@^6.25.0: 205 | version "6.25.0" 206 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.25.0.tgz#2257497e2fcd19b89edc13c4c91381f9512496f1" 207 | dependencies: 208 | babel-code-frame "^6.22.0" 209 | babel-messages "^6.23.0" 210 | babel-runtime "^6.22.0" 211 | babel-types "^6.25.0" 212 | babylon "^6.17.2" 213 | debug "^2.2.0" 214 | globals "^9.0.0" 215 | invariant "^2.2.0" 216 | lodash "^4.2.0" 217 | 218 | babel-types@^6.18.0, babel-types@^6.25.0: 219 | version "6.25.0" 220 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.25.0.tgz#70afb248d5660e5d18f811d91c8303b54134a18e" 221 | dependencies: 222 | babel-runtime "^6.22.0" 223 | esutils "^2.0.2" 224 | lodash "^4.2.0" 225 | to-fast-properties "^1.0.1" 226 | 227 | babylon@^6.13.0, babylon@^6.17.2: 228 | version "6.17.3" 229 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.3.tgz#1327d709950b558f204e5352587fd0290f8d8e48" 230 | 231 | balanced-match@^1.0.0: 232 | version "1.0.0" 233 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 234 | 235 | base58-native@0.1.4: 236 | version "0.1.4" 237 | resolved "https://registry.yarnpkg.com/base58-native/-/base58-native-0.1.4.tgz#bb9234a8df2662d04b0b715aeee1f89b15fef134" 238 | dependencies: 239 | bignum ">=0.6.1" 240 | 241 | bcrypt-pbkdf@^1.0.0: 242 | version "1.0.1" 243 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 244 | dependencies: 245 | tweetnacl "^0.14.3" 246 | 247 | bignum@0.12.5, bignum@>=0.6.1: 248 | version "0.12.5" 249 | resolved "https://registry.yarnpkg.com/bignum/-/bignum-0.12.5.tgz#208f2b0e18eb8fd6950917e3718e4cd85cccffcd" 250 | dependencies: 251 | nan "^2.3.4" 252 | node-pre-gyp "~0.6.28" 253 | 254 | block-stream@*: 255 | version "0.0.9" 256 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 257 | dependencies: 258 | inherits "~2.0.0" 259 | 260 | bluebird@2.10.2: 261 | version "2.10.2" 262 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-2.10.2.tgz#024a5517295308857f14f91f1106fc3b555f446b" 263 | 264 | bluebird@3.5.0: 265 | version "3.5.0" 266 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.0.tgz#791420d7f551eea2897453a8a77653f96606d67c" 267 | 268 | boolbase@~1.0.0: 269 | version "1.0.0" 270 | resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" 271 | 272 | boom@2.x.x: 273 | version "2.10.1" 274 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 275 | dependencies: 276 | hoek "2.x.x" 277 | 278 | brace-expansion@^1.1.7: 279 | version "1.1.8" 280 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 281 | dependencies: 282 | balanced-match "^1.0.0" 283 | concat-map "0.0.1" 284 | 285 | browser-stdout@1.3.0: 286 | version "1.3.0" 287 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f" 288 | 289 | bson@~1.0.4: 290 | version "1.0.4" 291 | resolved "https://registry.yarnpkg.com/bson/-/bson-1.0.4.tgz#93c10d39eaa5b58415cbc4052f3e53e562b0b72c" 292 | 293 | buffer-shims@~1.0.0: 294 | version "1.0.0" 295 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 296 | 297 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 298 | version "1.1.1" 299 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 300 | 301 | caller-path@^0.1.0: 302 | version "0.1.0" 303 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 304 | dependencies: 305 | callsites "^0.2.0" 306 | 307 | callsites@^0.2.0: 308 | version "0.2.0" 309 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 310 | 311 | camelcase-keys@^2.0.0: 312 | version "2.1.0" 313 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 314 | dependencies: 315 | camelcase "^2.0.0" 316 | map-obj "^1.0.0" 317 | 318 | camelcase@^1.0.2: 319 | version "1.2.1" 320 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 321 | 322 | camelcase@^2.0.0: 323 | version "2.1.1" 324 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 325 | 326 | camelcase@^3.0.0: 327 | version "3.0.0" 328 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 329 | 330 | caseless@~0.12.0: 331 | version "0.12.0" 332 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 333 | 334 | center-align@^0.1.1: 335 | version "0.1.3" 336 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 337 | dependencies: 338 | align-text "^0.1.3" 339 | lazy-cache "^1.0.3" 340 | 341 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3, chalk@~1.1.1: 342 | version "1.1.3" 343 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 344 | dependencies: 345 | ansi-styles "^2.2.1" 346 | escape-string-regexp "^1.0.2" 347 | has-ansi "^2.0.0" 348 | strip-ansi "^3.0.0" 349 | supports-color "^2.0.0" 350 | 351 | circular-json@^0.3.1: 352 | version "0.3.1" 353 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 354 | 355 | cli-cursor@^1.0.1: 356 | version "1.0.2" 357 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 358 | dependencies: 359 | restore-cursor "^1.0.1" 360 | 361 | cli-cursor@^2.1.0: 362 | version "2.1.0" 363 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 364 | dependencies: 365 | restore-cursor "^2.0.0" 366 | 367 | cli-width@^2.0.0: 368 | version "2.1.0" 369 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 370 | 371 | cliui@^2.1.0: 372 | version "2.1.0" 373 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 374 | dependencies: 375 | center-align "^0.1.1" 376 | right-align "^0.1.1" 377 | wordwrap "0.0.2" 378 | 379 | cliui@^3.2.0: 380 | version "3.2.0" 381 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 382 | dependencies: 383 | string-width "^1.0.1" 384 | strip-ansi "^3.0.1" 385 | wrap-ansi "^2.0.0" 386 | 387 | co@^4.6.0: 388 | version "4.6.0" 389 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 390 | 391 | code-point-at@^1.0.0: 392 | version "1.1.0" 393 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 394 | 395 | coffee-script@~1.10.0: 396 | version "1.10.0" 397 | resolved "https://registry.yarnpkg.com/coffee-script/-/coffee-script-1.10.0.tgz#12938bcf9be1948fa006f92e0c4c9e81705108c0" 398 | 399 | colors@1.0.x: 400 | version "1.0.3" 401 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.0.3.tgz#0433f44d809680fdeb60ed260f1b0c262e82a40b" 402 | 403 | colors@~1.1.2: 404 | version "1.1.2" 405 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" 406 | 407 | combined-stream@^1.0.5, combined-stream@~1.0.5: 408 | version "1.0.5" 409 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 410 | dependencies: 411 | delayed-stream "~1.0.0" 412 | 413 | commander@2.9.0: 414 | version "2.9.0" 415 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 416 | dependencies: 417 | graceful-readlink ">= 1.0.0" 418 | 419 | concat-map@0.0.1: 420 | version "0.0.1" 421 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 422 | 423 | concat-stream@^1.5.0, concat-stream@^1.5.2, concat-stream@^1.6.0: 424 | version "1.6.0" 425 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 426 | dependencies: 427 | inherits "^2.0.3" 428 | readable-stream "^2.2.2" 429 | typedarray "^0.0.6" 430 | 431 | config@1.26.1: 432 | version "1.26.1" 433 | resolved "https://registry.yarnpkg.com/config/-/config-1.26.1.tgz#f647ce32c345e80ba73a8eaa7a9a4b4e5b290ca1" 434 | dependencies: 435 | json5 "0.4.0" 436 | os-homedir "1.0.2" 437 | 438 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 439 | version "1.1.0" 440 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 441 | 442 | contains-path@^0.1.0: 443 | version "0.1.0" 444 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 445 | 446 | core-js@^1.0.0: 447 | version "1.2.7" 448 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 449 | 450 | core-js@^2.4.0: 451 | version "2.4.1" 452 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 453 | 454 | core-util-is@~1.0.0: 455 | version "1.0.2" 456 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 457 | 458 | create-react-class@^15.5.2: 459 | version "15.5.4" 460 | resolved "https://registry.yarnpkg.com/create-react-class/-/create-react-class-15.5.4.tgz#188875cb15e2fbe4ca595b6f43eb0e4a1f00fe50" 461 | dependencies: 462 | fbjs "^0.8.9" 463 | loose-envify "^1.3.1" 464 | object-assign "^4.1.1" 465 | 466 | cryptiles@2.x.x: 467 | version "2.0.5" 468 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 469 | dependencies: 470 | boom "2.x.x" 471 | 472 | crypto@0.0.3: 473 | version "0.0.3" 474 | resolved "https://registry.yarnpkg.com/crypto/-/crypto-0.0.3.tgz#470a81b86be4c5ee17acc8207a1f5315ae20dbb0" 475 | 476 | css-select@^1.1.0: 477 | version "1.2.0" 478 | resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" 479 | dependencies: 480 | boolbase "~1.0.0" 481 | css-what "2.1" 482 | domutils "1.5.1" 483 | nth-check "~1.0.1" 484 | 485 | css-what@2.1: 486 | version "2.1.0" 487 | resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.0.tgz#9467d032c38cfaefb9f2d79501253062f87fa1bd" 488 | 489 | currently-unhandled@^0.4.1: 490 | version "0.4.1" 491 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 492 | dependencies: 493 | array-find-index "^1.0.1" 494 | 495 | cycle@1.0.x: 496 | version "1.0.3" 497 | resolved "https://registry.yarnpkg.com/cycle/-/cycle-1.0.3.tgz#21e80b2be8580f98b468f379430662b046c34ad2" 498 | 499 | d@1: 500 | version "1.0.0" 501 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 502 | dependencies: 503 | es5-ext "^0.10.9" 504 | 505 | dashdash@^1.12.0: 506 | version "1.14.1" 507 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 508 | dependencies: 509 | assert-plus "^1.0.0" 510 | 511 | date-time@^1.1.0: 512 | version "1.1.0" 513 | resolved "https://registry.yarnpkg.com/date-time/-/date-time-1.1.0.tgz#18876d0bda4c19fe70dd3bf4b034f281b12a40b6" 514 | dependencies: 515 | time-zone "^0.1.0" 516 | 517 | dateformat@^2.0.0: 518 | version "2.0.0" 519 | resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-2.0.0.tgz#2743e3abb5c3fc2462e527dca445e04e9f4dee17" 520 | 521 | dateformat@~1.0.12: 522 | version "1.0.12" 523 | resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-1.0.12.tgz#9f124b67594c937ff706932e4a642cca8dbbfee9" 524 | dependencies: 525 | get-stdin "^4.0.1" 526 | meow "^3.3.0" 527 | 528 | debug-log@^1.0.0: 529 | version "1.0.1" 530 | resolved "https://registry.yarnpkg.com/debug-log/-/debug-log-1.0.1.tgz#2307632d4c04382b8df8a32f70b895046d52745f" 531 | 532 | debug@2.2.0: 533 | version "2.2.0" 534 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 535 | dependencies: 536 | ms "0.7.1" 537 | 538 | debug@2.6.0: 539 | version "2.6.0" 540 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.0.tgz#bc596bcabe7617f11d9fa15361eded5608b8499b" 541 | dependencies: 542 | ms "0.7.2" 543 | 544 | debug@2.6.8, debug@^2.1.1, debug@^2.2.0, debug@^2.6.3, debug@^2.6.8: 545 | version "2.6.8" 546 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 547 | dependencies: 548 | ms "2.0.0" 549 | 550 | decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: 551 | version "1.2.0" 552 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 553 | 554 | deep-extend@~0.4.0: 555 | version "0.4.2" 556 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 557 | 558 | deep-is@~0.1.3: 559 | version "0.1.3" 560 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 561 | 562 | default-require-extensions@^1.0.0: 563 | version "1.0.0" 564 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 565 | dependencies: 566 | strip-bom "^2.0.0" 567 | 568 | define-properties@^1.1.2: 569 | version "1.1.2" 570 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 571 | dependencies: 572 | foreach "^2.0.5" 573 | object-keys "^1.0.8" 574 | 575 | deglob@^2.1.0: 576 | version "2.1.0" 577 | resolved "https://registry.yarnpkg.com/deglob/-/deglob-2.1.0.tgz#4d44abe16ef32c779b4972bd141a80325029a14a" 578 | dependencies: 579 | find-root "^1.0.0" 580 | glob "^7.0.5" 581 | ignore "^3.0.9" 582 | pkg-config "^1.1.0" 583 | run-parallel "^1.1.2" 584 | uniq "^1.0.1" 585 | 586 | del@^2.0.2: 587 | version "2.2.2" 588 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 589 | dependencies: 590 | globby "^5.0.0" 591 | is-path-cwd "^1.0.0" 592 | is-path-in-cwd "^1.0.0" 593 | object-assign "^4.0.1" 594 | pify "^2.0.0" 595 | pinkie-promise "^2.0.0" 596 | rimraf "^2.2.8" 597 | 598 | delayed-stream@~1.0.0: 599 | version "1.0.0" 600 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 601 | 602 | delegates@^1.0.0: 603 | version "1.0.0" 604 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 605 | 606 | detect-indent@^4.0.0: 607 | version "4.0.0" 608 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 609 | dependencies: 610 | repeating "^2.0.0" 611 | 612 | diff@3.2.0, diff@^3.0.0: 613 | version "3.2.0" 614 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 615 | 616 | doctrine@1.5.0, doctrine@^1.2.2: 617 | version "1.5.0" 618 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 619 | dependencies: 620 | esutils "^2.0.2" 621 | isarray "^1.0.0" 622 | 623 | doctrine@^2.0.0: 624 | version "2.0.0" 625 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" 626 | dependencies: 627 | esutils "^2.0.2" 628 | isarray "^1.0.0" 629 | 630 | dom-converter@~0.1: 631 | version "0.1.4" 632 | resolved "https://registry.yarnpkg.com/dom-converter/-/dom-converter-0.1.4.tgz#a45ef5727b890c9bffe6d7c876e7b19cb0e17f3b" 633 | dependencies: 634 | utila "~0.3" 635 | 636 | dom-serializer@0: 637 | version "0.1.0" 638 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82" 639 | dependencies: 640 | domelementtype "~1.1.1" 641 | entities "~1.1.1" 642 | 643 | domelementtype@1: 644 | version "1.3.0" 645 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.0.tgz#b17aed82e8ab59e52dd9c19b1756e0fc187204c2" 646 | 647 | domelementtype@~1.1.1: 648 | version "1.1.3" 649 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.1.3.tgz#bd28773e2642881aec51544924299c5cd822185b" 650 | 651 | domhandler@2.1: 652 | version "2.1.0" 653 | resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.1.0.tgz#d2646f5e57f6c3bab11cf6cb05d3c0acf7412594" 654 | dependencies: 655 | domelementtype "1" 656 | 657 | domutils@1.1: 658 | version "1.1.6" 659 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.1.6.tgz#bddc3de099b9a2efacc51c623f28f416ecc57485" 660 | dependencies: 661 | domelementtype "1" 662 | 663 | domutils@1.5.1: 664 | version "1.5.1" 665 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" 666 | dependencies: 667 | dom-serializer "0" 668 | domelementtype "1" 669 | 670 | ecc-jsbn@~0.1.1: 671 | version "0.1.1" 672 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 673 | dependencies: 674 | jsbn "~0.1.0" 675 | 676 | encoding@^0.1.11: 677 | version "0.1.12" 678 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 679 | dependencies: 680 | iconv-lite "~0.4.13" 681 | 682 | entities@~1.1.1: 683 | version "1.1.1" 684 | resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0" 685 | 686 | error-ex@^1.2.0: 687 | version "1.3.1" 688 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 689 | dependencies: 690 | is-arrayish "^0.2.1" 691 | 692 | es-abstract@^1.7.0: 693 | version "1.7.0" 694 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.7.0.tgz#dfade774e01bfcd97f96180298c449c8623fb94c" 695 | dependencies: 696 | es-to-primitive "^1.1.1" 697 | function-bind "^1.1.0" 698 | is-callable "^1.1.3" 699 | is-regex "^1.0.3" 700 | 701 | es-to-primitive@^1.1.1: 702 | version "1.1.1" 703 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 704 | dependencies: 705 | is-callable "^1.1.1" 706 | is-date-object "^1.0.1" 707 | is-symbol "^1.0.1" 708 | 709 | es5-ext@^0.10.14, es5-ext@^0.10.9, es5-ext@~0.10.14: 710 | version "0.10.23" 711 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.23.tgz#7578b51be974207a5487821b56538c224e4e7b38" 712 | dependencies: 713 | es6-iterator "2" 714 | es6-symbol "~3.1" 715 | 716 | es6-iterator@2, es6-iterator@^2.0.1, es6-iterator@~2.0.1: 717 | version "2.0.1" 718 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512" 719 | dependencies: 720 | d "1" 721 | es5-ext "^0.10.14" 722 | es6-symbol "^3.1" 723 | 724 | es6-map@^0.1.3: 725 | version "0.1.5" 726 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" 727 | dependencies: 728 | d "1" 729 | es5-ext "~0.10.14" 730 | es6-iterator "~2.0.1" 731 | es6-set "~0.1.5" 732 | es6-symbol "~3.1.1" 733 | event-emitter "~0.3.5" 734 | 735 | es6-promise@3.2.1: 736 | version "3.2.1" 737 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-3.2.1.tgz#ec56233868032909207170c39448e24449dd1fc4" 738 | 739 | es6-set@~0.1.5: 740 | version "0.1.5" 741 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" 742 | dependencies: 743 | d "1" 744 | es5-ext "~0.10.14" 745 | es6-iterator "~2.0.1" 746 | es6-symbol "3.1.1" 747 | event-emitter "~0.3.5" 748 | 749 | es6-symbol@3.1.1, es6-symbol@^3.1, es6-symbol@^3.1.1, es6-symbol@~3.1, es6-symbol@~3.1.1: 750 | version "3.1.1" 751 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 752 | dependencies: 753 | d "1" 754 | es5-ext "~0.10.14" 755 | 756 | es6-weak-map@^2.0.1: 757 | version "2.0.2" 758 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" 759 | dependencies: 760 | d "1" 761 | es5-ext "^0.10.14" 762 | es6-iterator "^2.0.1" 763 | es6-symbol "^3.1.1" 764 | 765 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 766 | version "1.0.5" 767 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 768 | 769 | escope@^3.6.0: 770 | version "3.6.0" 771 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 772 | dependencies: 773 | es6-map "^0.1.3" 774 | es6-weak-map "^2.0.1" 775 | esrecurse "^4.1.0" 776 | estraverse "^4.1.1" 777 | 778 | eslint-config-semistandard@11.0.0, eslint-config-semistandard@^11.0.0: 779 | version "11.0.0" 780 | resolved "https://registry.yarnpkg.com/eslint-config-semistandard/-/eslint-config-semistandard-11.0.0.tgz#44eef7cfdfd47219e3a7b81b91b540e880bb2615" 781 | 782 | eslint-config-standard-jsx@4.0.1: 783 | version "4.0.1" 784 | resolved "https://registry.yarnpkg.com/eslint-config-standard-jsx/-/eslint-config-standard-jsx-4.0.1.tgz#cd4e463d0268e2d9e707f61f42f73f5b3333c642" 785 | 786 | eslint-config-standard@^10.2.1: 787 | version "10.2.1" 788 | resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-10.2.1.tgz#c061e4d066f379dc17cd562c64e819b4dd454591" 789 | 790 | eslint-import-resolver-node@^0.2.0: 791 | version "0.2.3" 792 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.2.3.tgz#5add8106e8c928db2cba232bcd9efa846e3da16c" 793 | dependencies: 794 | debug "^2.2.0" 795 | object-assign "^4.0.1" 796 | resolve "^1.1.6" 797 | 798 | eslint-module-utils@^2.0.0: 799 | version "2.0.0" 800 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.0.0.tgz#a6f8c21d901358759cdc35dbac1982ae1ee58bce" 801 | dependencies: 802 | debug "2.2.0" 803 | pkg-dir "^1.0.0" 804 | 805 | eslint-plugin-import@2.3.0: 806 | version "2.3.0" 807 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.3.0.tgz#37c801e0ada0e296cbdf20c3f393acb5b52af36b" 808 | dependencies: 809 | builtin-modules "^1.1.1" 810 | contains-path "^0.1.0" 811 | debug "^2.2.0" 812 | doctrine "1.5.0" 813 | eslint-import-resolver-node "^0.2.0" 814 | eslint-module-utils "^2.0.0" 815 | has "^1.0.1" 816 | lodash.cond "^4.3.0" 817 | minimatch "^3.0.3" 818 | read-pkg-up "^2.0.0" 819 | 820 | eslint-plugin-import@~2.2.0: 821 | version "2.2.0" 822 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.2.0.tgz#72ba306fad305d67c4816348a4699a4229ac8b4e" 823 | dependencies: 824 | builtin-modules "^1.1.1" 825 | contains-path "^0.1.0" 826 | debug "^2.2.0" 827 | doctrine "1.5.0" 828 | eslint-import-resolver-node "^0.2.0" 829 | eslint-module-utils "^2.0.0" 830 | has "^1.0.1" 831 | lodash.cond "^4.3.0" 832 | minimatch "^3.0.3" 833 | pkg-up "^1.0.0" 834 | 835 | eslint-plugin-mocha@4.10.1: 836 | version "4.10.1" 837 | resolved "https://registry.yarnpkg.com/eslint-plugin-mocha/-/eslint-plugin-mocha-4.10.1.tgz#c63ccb83933bdb01d2bef922332dc4c44b30f3f8" 838 | dependencies: 839 | ramda "^0.24.1" 840 | 841 | eslint-plugin-node@5.0.0: 842 | version "5.0.0" 843 | resolved "https://registry.yarnpkg.com/eslint-plugin-node/-/eslint-plugin-node-5.0.0.tgz#948b1fb82e3f0a744e86fad19aa4f49537d246cc" 844 | dependencies: 845 | ignore "^3.3.3" 846 | minimatch "^3.0.4" 847 | resolve "^1.3.3" 848 | semver "5.3.0" 849 | 850 | eslint-plugin-node@~4.2.2: 851 | version "4.2.2" 852 | resolved "https://registry.yarnpkg.com/eslint-plugin-node/-/eslint-plugin-node-4.2.2.tgz#82959ca9aed79fcbd28bb1b188d05cac04fb3363" 853 | dependencies: 854 | ignore "^3.0.11" 855 | minimatch "^3.0.2" 856 | object-assign "^4.0.1" 857 | resolve "^1.1.7" 858 | semver "5.3.0" 859 | 860 | eslint-plugin-promise@3.5.0, eslint-plugin-promise@~3.5.0: 861 | version "3.5.0" 862 | resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-3.5.0.tgz#78fbb6ffe047201627569e85a6c5373af2a68fca" 863 | 864 | eslint-plugin-react@~6.10.0: 865 | version "6.10.3" 866 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-6.10.3.tgz#c5435beb06774e12c7db2f6abaddcbf900cd3f78" 867 | dependencies: 868 | array.prototype.find "^2.0.1" 869 | doctrine "^1.2.2" 870 | has "^1.0.1" 871 | jsx-ast-utils "^1.3.4" 872 | object.assign "^4.0.4" 873 | 874 | eslint-plugin-standard@~3.0.1: 875 | version "3.0.1" 876 | resolved "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-3.0.1.tgz#34d0c915b45edc6f010393c7eef3823b08565cf2" 877 | 878 | eslint-scope@^3.7.1: 879 | version "3.7.1" 880 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" 881 | dependencies: 882 | esrecurse "^4.1.0" 883 | estraverse "^4.1.1" 884 | 885 | eslint@4.0.0, eslint@^4.0.0: 886 | version "4.0.0" 887 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.0.0.tgz#7277c01437fdf41dccd168d5aa0e49b75ca1f260" 888 | dependencies: 889 | babel-code-frame "^6.22.0" 890 | chalk "^1.1.3" 891 | concat-stream "^1.6.0" 892 | debug "^2.6.8" 893 | doctrine "^2.0.0" 894 | eslint-scope "^3.7.1" 895 | espree "^3.4.3" 896 | esquery "^1.0.0" 897 | estraverse "^4.2.0" 898 | esutils "^2.0.2" 899 | file-entry-cache "^2.0.0" 900 | glob "^7.1.2" 901 | globals "^9.17.0" 902 | ignore "^3.3.3" 903 | imurmurhash "^0.1.4" 904 | inquirer "^3.0.6" 905 | is-my-json-valid "^2.16.0" 906 | is-resolvable "^1.0.0" 907 | js-yaml "^3.8.4" 908 | json-stable-stringify "^1.0.1" 909 | levn "^0.3.0" 910 | lodash "^4.17.4" 911 | mkdirp "^0.5.1" 912 | natural-compare "^1.4.0" 913 | optionator "^0.8.2" 914 | path-is-inside "^1.0.2" 915 | pluralize "^4.0.0" 916 | progress "^2.0.0" 917 | require-uncached "^1.0.3" 918 | strip-json-comments "~2.0.1" 919 | table "^4.0.1" 920 | text-table "~0.2.0" 921 | 922 | eslint@~3.19.0: 923 | version "3.19.0" 924 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.19.0.tgz#c8fc6201c7f40dd08941b87c085767386a679acc" 925 | dependencies: 926 | babel-code-frame "^6.16.0" 927 | chalk "^1.1.3" 928 | concat-stream "^1.5.2" 929 | debug "^2.1.1" 930 | doctrine "^2.0.0" 931 | escope "^3.6.0" 932 | espree "^3.4.0" 933 | esquery "^1.0.0" 934 | estraverse "^4.2.0" 935 | esutils "^2.0.2" 936 | file-entry-cache "^2.0.0" 937 | glob "^7.0.3" 938 | globals "^9.14.0" 939 | ignore "^3.2.0" 940 | imurmurhash "^0.1.4" 941 | inquirer "^0.12.0" 942 | is-my-json-valid "^2.10.0" 943 | is-resolvable "^1.0.0" 944 | js-yaml "^3.5.1" 945 | json-stable-stringify "^1.0.0" 946 | levn "^0.3.0" 947 | lodash "^4.0.0" 948 | mkdirp "^0.5.0" 949 | natural-compare "^1.4.0" 950 | optionator "^0.8.2" 951 | path-is-inside "^1.0.1" 952 | pluralize "^1.2.1" 953 | progress "^1.1.8" 954 | require-uncached "^1.0.2" 955 | shelljs "^0.7.5" 956 | strip-bom "^3.0.0" 957 | strip-json-comments "~2.0.1" 958 | table "^3.7.8" 959 | text-table "~0.2.0" 960 | user-home "^2.0.0" 961 | 962 | espree@^3.4.0, espree@^3.4.3: 963 | version "3.4.3" 964 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.3.tgz#2910b5ccd49ce893c2ffffaab4fd8b3a31b82374" 965 | dependencies: 966 | acorn "^5.0.1" 967 | acorn-jsx "^3.0.0" 968 | 969 | esprima@^2.6.0: 970 | version "2.7.3" 971 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 972 | 973 | esprima@^3.1.1: 974 | version "3.1.3" 975 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 976 | 977 | esquery@^1.0.0: 978 | version "1.0.0" 979 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 980 | dependencies: 981 | estraverse "^4.0.0" 982 | 983 | esrecurse@^4.1.0: 984 | version "4.1.0" 985 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" 986 | dependencies: 987 | estraverse "~4.1.0" 988 | object-assign "^4.0.1" 989 | 990 | estraverse@^4.0.0, estraverse@^4.1.1, estraverse@^4.2.0: 991 | version "4.2.0" 992 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 993 | 994 | estraverse@~4.1.0: 995 | version "4.1.1" 996 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" 997 | 998 | esutils@^2.0.2: 999 | version "2.0.2" 1000 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1001 | 1002 | event-emitter@~0.3.5: 1003 | version "0.3.5" 1004 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 1005 | dependencies: 1006 | d "1" 1007 | es5-ext "~0.10.14" 1008 | 1009 | eventemitter2@~0.4.13: 1010 | version "0.4.14" 1011 | resolved "https://registry.yarnpkg.com/eventemitter2/-/eventemitter2-0.4.14.tgz#8f61b75cde012b2e9eb284d4545583b5643b61ab" 1012 | 1013 | exit-hook@^1.0.0: 1014 | version "1.1.1" 1015 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1016 | 1017 | exit@~0.1.1: 1018 | version "0.1.2" 1019 | resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" 1020 | 1021 | extend@~3.0.0: 1022 | version "3.0.1" 1023 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1024 | 1025 | external-editor@^2.0.4: 1026 | version "2.0.4" 1027 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.0.4.tgz#1ed9199da9cbfe2ef2f7a31b2fde8b0d12368972" 1028 | dependencies: 1029 | iconv-lite "^0.4.17" 1030 | jschardet "^1.4.2" 1031 | tmp "^0.0.31" 1032 | 1033 | extsprintf@1.0.2: 1034 | version "1.0.2" 1035 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1036 | 1037 | eyes@0.1.x: 1038 | version "0.1.8" 1039 | resolved "https://registry.yarnpkg.com/eyes/-/eyes-0.1.8.tgz#62cf120234c683785d902348a800ef3e0cc20bc0" 1040 | 1041 | fast-levenshtein@~2.0.4: 1042 | version "2.0.6" 1043 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1044 | 1045 | fbjs@^0.8.9: 1046 | version "0.8.12" 1047 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.12.tgz#10b5d92f76d45575fd63a217d4ea02bea2f8ed04" 1048 | dependencies: 1049 | core-js "^1.0.0" 1050 | isomorphic-fetch "^2.1.1" 1051 | loose-envify "^1.0.0" 1052 | object-assign "^4.1.0" 1053 | promise "^7.1.1" 1054 | setimmediate "^1.0.5" 1055 | ua-parser-js "^0.7.9" 1056 | 1057 | figures@^1.0.0, figures@^1.3.5: 1058 | version "1.7.0" 1059 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1060 | dependencies: 1061 | escape-string-regexp "^1.0.5" 1062 | object-assign "^4.1.0" 1063 | 1064 | figures@^2.0.0: 1065 | version "2.0.0" 1066 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1067 | dependencies: 1068 | escape-string-regexp "^1.0.5" 1069 | 1070 | file-entry-cache@^2.0.0: 1071 | version "2.0.0" 1072 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1073 | dependencies: 1074 | flat-cache "^1.2.1" 1075 | object-assign "^4.0.1" 1076 | 1077 | fileset@^2.0.2: 1078 | version "2.0.3" 1079 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 1080 | dependencies: 1081 | glob "^7.0.3" 1082 | minimatch "^3.0.3" 1083 | 1084 | find-root@^1.0.0: 1085 | version "1.0.0" 1086 | resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.0.0.tgz#962ff211aab25c6520feeeb8d6287f8f6e95807a" 1087 | 1088 | find-up@^1.0.0: 1089 | version "1.1.2" 1090 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1091 | dependencies: 1092 | path-exists "^2.0.0" 1093 | pinkie-promise "^2.0.0" 1094 | 1095 | find-up@^2.0.0: 1096 | version "2.1.0" 1097 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1098 | dependencies: 1099 | locate-path "^2.0.0" 1100 | 1101 | findup-sync@~0.3.0: 1102 | version "0.3.0" 1103 | resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-0.3.0.tgz#37930aa5d816b777c03445e1966cc6790a4c0b16" 1104 | dependencies: 1105 | glob "~5.0.0" 1106 | 1107 | flat-cache@^1.2.1: 1108 | version "1.2.2" 1109 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 1110 | dependencies: 1111 | circular-json "^0.3.1" 1112 | del "^2.0.2" 1113 | graceful-fs "^4.1.2" 1114 | write "^0.2.1" 1115 | 1116 | foreach@^2.0.5: 1117 | version "2.0.5" 1118 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1119 | 1120 | forever-agent@~0.6.1: 1121 | version "0.6.1" 1122 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1123 | 1124 | form-data@~2.1.1: 1125 | version "2.1.4" 1126 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1127 | dependencies: 1128 | asynckit "^0.4.0" 1129 | combined-stream "^1.0.5" 1130 | mime-types "^2.1.12" 1131 | 1132 | fs-extra@^3.0.0: 1133 | version "3.0.1" 1134 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-3.0.1.tgz#3794f378c58b342ea7dbbb23095109c4b3b62291" 1135 | dependencies: 1136 | graceful-fs "^4.1.2" 1137 | jsonfile "^3.0.0" 1138 | universalify "^0.1.0" 1139 | 1140 | fs.realpath@^1.0.0: 1141 | version "1.0.0" 1142 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1143 | 1144 | fstream-ignore@^1.0.5: 1145 | version "1.0.5" 1146 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1147 | dependencies: 1148 | fstream "^1.0.0" 1149 | inherits "2" 1150 | minimatch "^3.0.0" 1151 | 1152 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1153 | version "1.0.11" 1154 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1155 | dependencies: 1156 | graceful-fs "^4.1.2" 1157 | inherits "~2.0.0" 1158 | mkdirp ">=0.5 0" 1159 | rimraf "2" 1160 | 1161 | fsu@^1.0.2: 1162 | version "1.0.3" 1163 | resolved "https://registry.yarnpkg.com/fsu/-/fsu-1.0.3.tgz#82302b4c5d97c871422eda554cb3de46e61da347" 1164 | 1165 | function-bind@^1.0.2, function-bind@^1.1.0: 1166 | version "1.1.0" 1167 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 1168 | 1169 | gauge@~2.7.3: 1170 | version "2.7.4" 1171 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1172 | dependencies: 1173 | aproba "^1.0.3" 1174 | console-control-strings "^1.0.0" 1175 | has-unicode "^2.0.0" 1176 | object-assign "^4.1.0" 1177 | signal-exit "^3.0.0" 1178 | string-width "^1.0.1" 1179 | strip-ansi "^3.0.1" 1180 | wide-align "^1.1.0" 1181 | 1182 | generate-function@^2.0.0: 1183 | version "2.0.0" 1184 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1185 | 1186 | generate-object-property@^1.1.0: 1187 | version "1.2.0" 1188 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1189 | dependencies: 1190 | is-property "^1.0.0" 1191 | 1192 | get-caller-file@^1.0.1: 1193 | version "1.0.2" 1194 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1195 | 1196 | get-stdin@^4.0.1: 1197 | version "4.0.1" 1198 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 1199 | 1200 | get-stdin@^5.0.1: 1201 | version "5.0.1" 1202 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" 1203 | 1204 | getobject@~0.1.0: 1205 | version "0.1.0" 1206 | resolved "https://registry.yarnpkg.com/getobject/-/getobject-0.1.0.tgz#047a449789fa160d018f5486ed91320b6ec7885c" 1207 | 1208 | getpass@^0.1.1: 1209 | version "0.1.7" 1210 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1211 | dependencies: 1212 | assert-plus "^1.0.0" 1213 | 1214 | glob-promise@3.1.0: 1215 | version "3.1.0" 1216 | resolved "https://registry.yarnpkg.com/glob-promise/-/glob-promise-3.1.0.tgz#198882a3817be7dc2c55f92623aa9e7b3f82d1eb" 1217 | 1218 | glob@7.1.1: 1219 | version "7.1.1" 1220 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1221 | dependencies: 1222 | fs.realpath "^1.0.0" 1223 | inflight "^1.0.4" 1224 | inherits "2" 1225 | minimatch "^3.0.2" 1226 | once "^1.3.0" 1227 | path-is-absolute "^1.0.0" 1228 | 1229 | glob@7.1.2, glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.1.2: 1230 | version "7.1.2" 1231 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1232 | dependencies: 1233 | fs.realpath "^1.0.0" 1234 | inflight "^1.0.4" 1235 | inherits "2" 1236 | minimatch "^3.0.4" 1237 | once "^1.3.0" 1238 | path-is-absolute "^1.0.0" 1239 | 1240 | glob@~5.0.0: 1241 | version "5.0.15" 1242 | resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" 1243 | dependencies: 1244 | inflight "^1.0.4" 1245 | inherits "2" 1246 | minimatch "2 || 3" 1247 | once "^1.3.0" 1248 | path-is-absolute "^1.0.0" 1249 | 1250 | glob@~7.0.0: 1251 | version "7.0.6" 1252 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.0.6.tgz#211bafaf49e525b8cd93260d14ab136152b3f57a" 1253 | dependencies: 1254 | fs.realpath "^1.0.0" 1255 | inflight "^1.0.4" 1256 | inherits "2" 1257 | minimatch "^3.0.2" 1258 | once "^1.3.0" 1259 | path-is-absolute "^1.0.0" 1260 | 1261 | globals@^9.0.0, globals@^9.14.0, globals@^9.17.0: 1262 | version "9.18.0" 1263 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1264 | 1265 | globby@^5.0.0: 1266 | version "5.0.0" 1267 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1268 | dependencies: 1269 | array-union "^1.0.1" 1270 | arrify "^1.0.0" 1271 | glob "^7.0.3" 1272 | object-assign "^4.0.1" 1273 | pify "^2.0.0" 1274 | pinkie-promise "^2.0.0" 1275 | 1276 | graceful-fs@^4.1.2, graceful-fs@^4.1.6: 1277 | version "4.1.11" 1278 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1279 | 1280 | "graceful-readlink@>= 1.0.0": 1281 | version "1.0.1" 1282 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1283 | 1284 | growl@1.9.2: 1285 | version "1.9.2" 1286 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f" 1287 | 1288 | grunt-cli@~1.2.0: 1289 | version "1.2.0" 1290 | resolved "https://registry.yarnpkg.com/grunt-cli/-/grunt-cli-1.2.0.tgz#562b119ebb069ddb464ace2845501be97b35b6a8" 1291 | dependencies: 1292 | findup-sync "~0.3.0" 1293 | grunt-known-options "~1.1.0" 1294 | nopt "~3.0.6" 1295 | resolve "~1.1.0" 1296 | 1297 | grunt-eslint@20.0.0: 1298 | version "20.0.0" 1299 | resolved "https://registry.yarnpkg.com/grunt-eslint/-/grunt-eslint-20.0.0.tgz#5bdac1c6922680512345ebf3df18ae2e23f41e38" 1300 | dependencies: 1301 | chalk "^1.0.0" 1302 | eslint "^4.0.0" 1303 | 1304 | grunt-known-options@~1.1.0: 1305 | version "1.1.0" 1306 | resolved "https://registry.yarnpkg.com/grunt-known-options/-/grunt-known-options-1.1.0.tgz#a4274eeb32fa765da5a7a3b1712617ce3b144149" 1307 | 1308 | grunt-legacy-log-utils@~1.0.0: 1309 | version "1.0.0" 1310 | resolved "https://registry.yarnpkg.com/grunt-legacy-log-utils/-/grunt-legacy-log-utils-1.0.0.tgz#a7b8e2d0fb35b5a50f4af986fc112749ebc96f3d" 1311 | dependencies: 1312 | chalk "~1.1.1" 1313 | lodash "~4.3.0" 1314 | 1315 | grunt-legacy-log@~1.0.0: 1316 | version "1.0.0" 1317 | resolved "https://registry.yarnpkg.com/grunt-legacy-log/-/grunt-legacy-log-1.0.0.tgz#fb86f1809847bc07dc47843f9ecd6cacb62df2d5" 1318 | dependencies: 1319 | colors "~1.1.2" 1320 | grunt-legacy-log-utils "~1.0.0" 1321 | hooker "~0.2.3" 1322 | lodash "~3.10.1" 1323 | underscore.string "~3.2.3" 1324 | 1325 | grunt-legacy-util@~1.0.0: 1326 | version "1.0.0" 1327 | resolved "https://registry.yarnpkg.com/grunt-legacy-util/-/grunt-legacy-util-1.0.0.tgz#386aa78dc6ed50986c2b18957265b1b48abb9b86" 1328 | dependencies: 1329 | async "~1.5.2" 1330 | exit "~0.1.1" 1331 | getobject "~0.1.0" 1332 | hooker "~0.2.3" 1333 | lodash "~4.3.0" 1334 | underscore.string "~3.2.3" 1335 | which "~1.2.1" 1336 | 1337 | grunt-mocha-test@0.13.2: 1338 | version "0.13.2" 1339 | resolved "https://registry.yarnpkg.com/grunt-mocha-test/-/grunt-mocha-test-0.13.2.tgz#0f3abcc6ab543647b1effc5ab44ebd3702f0ab8c" 1340 | dependencies: 1341 | hooker "^0.2.3" 1342 | mkdirp "^0.5.0" 1343 | 1344 | grunt-shell@2.1.0: 1345 | version "2.1.0" 1346 | resolved "https://registry.yarnpkg.com/grunt-shell/-/grunt-shell-2.1.0.tgz#439f79159ed11e64a651a69cc8a3d02bebf5ecc2" 1347 | dependencies: 1348 | chalk "^1.0.0" 1349 | npm-run-path "^2.0.0" 1350 | 1351 | grunt@1.0.1: 1352 | version "1.0.1" 1353 | resolved "https://registry.yarnpkg.com/grunt/-/grunt-1.0.1.tgz#e8778764e944b18f32bb0f10b9078475c9dfb56b" 1354 | dependencies: 1355 | coffee-script "~1.10.0" 1356 | dateformat "~1.0.12" 1357 | eventemitter2 "~0.4.13" 1358 | exit "~0.1.1" 1359 | findup-sync "~0.3.0" 1360 | glob "~7.0.0" 1361 | grunt-cli "~1.2.0" 1362 | grunt-known-options "~1.1.0" 1363 | grunt-legacy-log "~1.0.0" 1364 | grunt-legacy-util "~1.0.0" 1365 | iconv-lite "~0.4.13" 1366 | js-yaml "~3.5.2" 1367 | minimatch "~3.0.0" 1368 | nopt "~3.0.6" 1369 | path-is-absolute "~1.0.0" 1370 | rimraf "~2.2.8" 1371 | 1372 | handlebars@^4.0.3: 1373 | version "4.0.10" 1374 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.10.tgz#3d30c718b09a3d96f23ea4cc1f403c4d3ba9ff4f" 1375 | dependencies: 1376 | async "^1.4.0" 1377 | optimist "^0.6.1" 1378 | source-map "^0.4.4" 1379 | optionalDependencies: 1380 | uglify-js "^2.6" 1381 | 1382 | har-schema@^1.0.5: 1383 | version "1.0.5" 1384 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1385 | 1386 | har-validator@~4.2.1: 1387 | version "4.2.1" 1388 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1389 | dependencies: 1390 | ajv "^4.9.1" 1391 | har-schema "^1.0.5" 1392 | 1393 | has-ansi@^2.0.0: 1394 | version "2.0.0" 1395 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1396 | dependencies: 1397 | ansi-regex "^2.0.0" 1398 | 1399 | has-flag@^1.0.0: 1400 | version "1.0.0" 1401 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1402 | 1403 | has-unicode@^2.0.0: 1404 | version "2.0.1" 1405 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1406 | 1407 | has@^1.0.1: 1408 | version "1.0.1" 1409 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1410 | dependencies: 1411 | function-bind "^1.0.2" 1412 | 1413 | hawk@~3.1.3: 1414 | version "3.1.3" 1415 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1416 | dependencies: 1417 | boom "2.x.x" 1418 | cryptiles "2.x.x" 1419 | hoek "2.x.x" 1420 | sntp "1.x.x" 1421 | 1422 | hoek@2.x.x: 1423 | version "2.16.3" 1424 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1425 | 1426 | hooker@^0.2.3, hooker@~0.2.3: 1427 | version "0.2.3" 1428 | resolved "https://registry.yarnpkg.com/hooker/-/hooker-0.2.3.tgz#b834f723cc4a242aa65963459df6d984c5d3d959" 1429 | 1430 | hooks-fixed@2.0.0: 1431 | version "2.0.0" 1432 | resolved "https://registry.yarnpkg.com/hooks-fixed/-/hooks-fixed-2.0.0.tgz#a01d894d52ac7f6599bbb1f63dfc9c411df70cba" 1433 | 1434 | hosted-git-info@^2.1.4: 1435 | version "2.4.2" 1436 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.2.tgz#0076b9f46a270506ddbaaea56496897460612a67" 1437 | 1438 | htmlparser2@~3.3.0: 1439 | version "3.3.0" 1440 | resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.3.0.tgz#cc70d05a59f6542e43f0e685c982e14c924a9efe" 1441 | dependencies: 1442 | domelementtype "1" 1443 | domhandler "2.1" 1444 | domutils "1.1" 1445 | readable-stream "1.0" 1446 | 1447 | http-signature@~1.1.0: 1448 | version "1.1.1" 1449 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1450 | dependencies: 1451 | assert-plus "^0.2.0" 1452 | jsprim "^1.2.2" 1453 | sshpk "^1.7.0" 1454 | 1455 | iconv-lite@^0.4.17, iconv-lite@~0.4.13: 1456 | version "0.4.18" 1457 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.18.tgz#23d8656b16aae6742ac29732ea8f0336a4789cf2" 1458 | 1459 | ignore@^3.0.11, ignore@^3.0.9, ignore@^3.2.0, ignore@^3.3.3: 1460 | version "3.3.3" 1461 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.3.tgz#432352e57accd87ab3110e82d3fea0e47812156d" 1462 | 1463 | imurmurhash@^0.1.4: 1464 | version "0.1.4" 1465 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1466 | 1467 | indent-string@^2.1.0: 1468 | version "2.1.0" 1469 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 1470 | dependencies: 1471 | repeating "^2.0.0" 1472 | 1473 | inflight@^1.0.4: 1474 | version "1.0.6" 1475 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1476 | dependencies: 1477 | once "^1.3.0" 1478 | wrappy "1" 1479 | 1480 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1: 1481 | version "2.0.3" 1482 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1483 | 1484 | ini@~1.3.0: 1485 | version "1.3.4" 1486 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1487 | 1488 | inquirer@^0.12.0: 1489 | version "0.12.0" 1490 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 1491 | dependencies: 1492 | ansi-escapes "^1.1.0" 1493 | ansi-regex "^2.0.0" 1494 | chalk "^1.0.0" 1495 | cli-cursor "^1.0.1" 1496 | cli-width "^2.0.0" 1497 | figures "^1.3.5" 1498 | lodash "^4.3.0" 1499 | readline2 "^1.0.1" 1500 | run-async "^0.1.0" 1501 | rx-lite "^3.1.2" 1502 | string-width "^1.0.1" 1503 | strip-ansi "^3.0.0" 1504 | through "^2.3.6" 1505 | 1506 | inquirer@^3.0.6: 1507 | version "3.1.0" 1508 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.1.0.tgz#e05400d48b94937c2d3caa7038663ba9189aab01" 1509 | dependencies: 1510 | ansi-escapes "^2.0.0" 1511 | chalk "^1.0.0" 1512 | cli-cursor "^2.1.0" 1513 | cli-width "^2.0.0" 1514 | external-editor "^2.0.4" 1515 | figures "^2.0.0" 1516 | lodash "^4.3.0" 1517 | mute-stream "0.0.7" 1518 | run-async "^2.2.0" 1519 | rx-lite "^4.0.8" 1520 | rx-lite-aggregates "^4.0.8" 1521 | string-width "^2.0.0" 1522 | strip-ansi "^3.0.0" 1523 | through "^2.3.6" 1524 | 1525 | interpret@^1.0.0: 1526 | version "1.0.3" 1527 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.3.tgz#cbc35c62eeee73f19ab7b10a801511401afc0f90" 1528 | 1529 | invariant@^2.2.0: 1530 | version "2.2.2" 1531 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1532 | dependencies: 1533 | loose-envify "^1.0.0" 1534 | 1535 | invert-kv@^1.0.0: 1536 | version "1.0.0" 1537 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1538 | 1539 | is-arrayish@^0.2.1: 1540 | version "0.2.1" 1541 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1542 | 1543 | is-buffer@^1.1.5: 1544 | version "1.1.5" 1545 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1546 | 1547 | is-builtin-module@^1.0.0: 1548 | version "1.0.0" 1549 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1550 | dependencies: 1551 | builtin-modules "^1.0.0" 1552 | 1553 | is-callable@^1.1.1, is-callable@^1.1.3: 1554 | version "1.1.3" 1555 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 1556 | 1557 | is-date-object@^1.0.1: 1558 | version "1.0.1" 1559 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 1560 | 1561 | is-finite@^1.0.0, is-finite@^1.0.1: 1562 | version "1.0.2" 1563 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1564 | dependencies: 1565 | number-is-nan "^1.0.0" 1566 | 1567 | is-fullwidth-code-point@^1.0.0: 1568 | version "1.0.0" 1569 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1570 | dependencies: 1571 | number-is-nan "^1.0.0" 1572 | 1573 | is-fullwidth-code-point@^2.0.0: 1574 | version "2.0.0" 1575 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1576 | 1577 | is-my-json-valid@^2.10.0, is-my-json-valid@^2.16.0: 1578 | version "2.16.0" 1579 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz#f079dd9bfdae65ee2038aae8acbc86ab109e3693" 1580 | dependencies: 1581 | generate-function "^2.0.0" 1582 | generate-object-property "^1.1.0" 1583 | jsonpointer "^4.0.0" 1584 | xtend "^4.0.0" 1585 | 1586 | is-path-cwd@^1.0.0: 1587 | version "1.0.0" 1588 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1589 | 1590 | is-path-in-cwd@^1.0.0: 1591 | version "1.0.0" 1592 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 1593 | dependencies: 1594 | is-path-inside "^1.0.0" 1595 | 1596 | is-path-inside@^1.0.0: 1597 | version "1.0.0" 1598 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 1599 | dependencies: 1600 | path-is-inside "^1.0.1" 1601 | 1602 | is-promise@^2.1.0: 1603 | version "2.1.0" 1604 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1605 | 1606 | is-property@^1.0.0: 1607 | version "1.0.2" 1608 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1609 | 1610 | is-regex@^1.0.3: 1611 | version "1.0.4" 1612 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 1613 | dependencies: 1614 | has "^1.0.1" 1615 | 1616 | is-resolvable@^1.0.0: 1617 | version "1.0.0" 1618 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 1619 | dependencies: 1620 | tryit "^1.0.1" 1621 | 1622 | is-stream@^1.0.1: 1623 | version "1.1.0" 1624 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1625 | 1626 | is-symbol@^1.0.1: 1627 | version "1.0.1" 1628 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 1629 | 1630 | is-typedarray@~1.0.0: 1631 | version "1.0.0" 1632 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1633 | 1634 | is-utf8@^0.2.0: 1635 | version "0.2.1" 1636 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1637 | 1638 | isarray@0.0.1: 1639 | version "0.0.1" 1640 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 1641 | 1642 | isarray@^1.0.0, isarray@~1.0.0: 1643 | version "1.0.0" 1644 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1645 | 1646 | isexe@^2.0.0: 1647 | version "2.0.0" 1648 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1649 | 1650 | isomorphic-fetch@^2.1.1: 1651 | version "2.2.1" 1652 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" 1653 | dependencies: 1654 | node-fetch "^1.0.1" 1655 | whatwg-fetch ">=0.10.0" 1656 | 1657 | isstream@0.1.x, isstream@~0.1.2: 1658 | version "0.1.2" 1659 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1660 | 1661 | istanbul-api@^1.1.0-alpha: 1662 | version "1.1.9" 1663 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.1.9.tgz#2827920d380d4286d857d57a2968a841db8a7ec8" 1664 | dependencies: 1665 | async "^2.1.4" 1666 | fileset "^2.0.2" 1667 | istanbul-lib-coverage "^1.1.1" 1668 | istanbul-lib-hook "^1.0.7" 1669 | istanbul-lib-instrument "^1.7.2" 1670 | istanbul-lib-report "^1.1.1" 1671 | istanbul-lib-source-maps "^1.2.1" 1672 | istanbul-reports "^1.1.1" 1673 | js-yaml "^3.7.0" 1674 | mkdirp "^0.5.1" 1675 | once "^1.4.0" 1676 | 1677 | istanbul-lib-coverage@^1.1.1: 1678 | version "1.1.1" 1679 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da" 1680 | 1681 | istanbul-lib-hook@^1.0.7: 1682 | version "1.0.7" 1683 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.7.tgz#dd6607f03076578fe7d6f2a630cf143b49bacddc" 1684 | dependencies: 1685 | append-transform "^0.4.0" 1686 | 1687 | istanbul-lib-instrument@^1.7.2: 1688 | version "1.7.2" 1689 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.2.tgz#6014b03d3470fb77638d5802508c255c06312e56" 1690 | dependencies: 1691 | babel-generator "^6.18.0" 1692 | babel-template "^6.16.0" 1693 | babel-traverse "^6.18.0" 1694 | babel-types "^6.18.0" 1695 | babylon "^6.13.0" 1696 | istanbul-lib-coverage "^1.1.1" 1697 | semver "^5.3.0" 1698 | 1699 | istanbul-lib-report@^1.1.1: 1700 | version "1.1.1" 1701 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#f0e55f56655ffa34222080b7a0cd4760e1405fc9" 1702 | dependencies: 1703 | istanbul-lib-coverage "^1.1.1" 1704 | mkdirp "^0.5.1" 1705 | path-parse "^1.0.5" 1706 | supports-color "^3.1.2" 1707 | 1708 | istanbul-lib-source-maps@^1.2.1: 1709 | version "1.2.1" 1710 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.1.tgz#a6fe1acba8ce08eebc638e572e294d267008aa0c" 1711 | dependencies: 1712 | debug "^2.6.3" 1713 | istanbul-lib-coverage "^1.1.1" 1714 | mkdirp "^0.5.1" 1715 | rimraf "^2.6.1" 1716 | source-map "^0.5.3" 1717 | 1718 | istanbul-reports@^1.1.1: 1719 | version "1.1.1" 1720 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.1.tgz#042be5c89e175bc3f86523caab29c014e77fee4e" 1721 | dependencies: 1722 | handlebars "^4.0.3" 1723 | 1724 | istanbul@1.1.0-alpha.1: 1725 | version "1.1.0-alpha.1" 1726 | resolved "https://registry.yarnpkg.com/istanbul/-/istanbul-1.1.0-alpha.1.tgz#781795656018a2174c5f60f367ee5d361cb57b77" 1727 | dependencies: 1728 | abbrev "1.0.x" 1729 | async "1.x" 1730 | istanbul-api "^1.1.0-alpha" 1731 | js-yaml "3.x" 1732 | mkdirp "0.5.x" 1733 | nopt "3.x" 1734 | which "^1.1.1" 1735 | wordwrap "^1.0.0" 1736 | 1737 | js-tokens@^3.0.0: 1738 | version "3.0.1" 1739 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 1740 | 1741 | js-yaml@3.8.4, js-yaml@3.x, js-yaml@^3.5.1, js-yaml@^3.7.0, js-yaml@^3.8.4: 1742 | version "3.8.4" 1743 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.4.tgz#520b4564f86573ba96662af85a8cafa7b4b5a6f6" 1744 | dependencies: 1745 | argparse "^1.0.7" 1746 | esprima "^3.1.1" 1747 | 1748 | js-yaml@~3.5.2: 1749 | version "3.5.5" 1750 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.5.5.tgz#0377c38017cabc7322b0d1fbcd25a491641f2fbe" 1751 | dependencies: 1752 | argparse "^1.0.2" 1753 | esprima "^2.6.0" 1754 | 1755 | jsbn@~0.1.0: 1756 | version "0.1.1" 1757 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1758 | 1759 | jschardet@^1.4.2: 1760 | version "1.4.2" 1761 | resolved "https://registry.yarnpkg.com/jschardet/-/jschardet-1.4.2.tgz#2aa107f142af4121d145659d44f50830961e699a" 1762 | 1763 | jsesc@^1.3.0: 1764 | version "1.3.0" 1765 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1766 | 1767 | json-schema@0.2.3: 1768 | version "0.2.3" 1769 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1770 | 1771 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 1772 | version "1.0.1" 1773 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1774 | dependencies: 1775 | jsonify "~0.0.0" 1776 | 1777 | json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.1: 1778 | version "5.0.1" 1779 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1780 | 1781 | json3@3.3.2: 1782 | version "3.3.2" 1783 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" 1784 | 1785 | json5@0.4.0: 1786 | version "0.4.0" 1787 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.4.0.tgz#054352e4c4c80c86c0923877d449de176a732c8d" 1788 | 1789 | jsonfile@^3.0.0: 1790 | version "3.0.0" 1791 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-3.0.0.tgz#92e7c7444e5ffd5fa32e6a9ae8b85034df8347d0" 1792 | optionalDependencies: 1793 | graceful-fs "^4.1.6" 1794 | 1795 | jsonify@~0.0.0: 1796 | version "0.0.0" 1797 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1798 | 1799 | jsonpointer@^4.0.0: 1800 | version "4.0.1" 1801 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 1802 | 1803 | jsprim@^1.2.2: 1804 | version "1.4.0" 1805 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 1806 | dependencies: 1807 | assert-plus "1.0.0" 1808 | extsprintf "1.0.2" 1809 | json-schema "0.2.3" 1810 | verror "1.3.6" 1811 | 1812 | jsx-ast-utils@^1.3.4: 1813 | version "1.4.1" 1814 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-1.4.1.tgz#3867213e8dd79bf1e8f2300c0cfc1efb182c0df1" 1815 | 1816 | kareem@1.4.1: 1817 | version "1.4.1" 1818 | resolved "https://registry.yarnpkg.com/kareem/-/kareem-1.4.1.tgz#ed76200044fa041ef32b4da8261e2553f1173531" 1819 | 1820 | kind-of@^3.0.2: 1821 | version "3.2.2" 1822 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1823 | dependencies: 1824 | is-buffer "^1.1.5" 1825 | 1826 | lazy-cache@^1.0.3: 1827 | version "1.0.4" 1828 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1829 | 1830 | lcid@^1.0.0: 1831 | version "1.0.0" 1832 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1833 | dependencies: 1834 | invert-kv "^1.0.0" 1835 | 1836 | levn@^0.3.0, levn@~0.3.0: 1837 | version "0.3.0" 1838 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1839 | dependencies: 1840 | prelude-ls "~1.1.2" 1841 | type-check "~0.3.2" 1842 | 1843 | load-grunt-tasks@3.5.2: 1844 | version "3.5.2" 1845 | resolved "https://registry.yarnpkg.com/load-grunt-tasks/-/load-grunt-tasks-3.5.2.tgz#0728561180fd20ff8a6927505852fc58aaea0c88" 1846 | dependencies: 1847 | arrify "^1.0.0" 1848 | multimatch "^2.0.0" 1849 | pkg-up "^1.0.0" 1850 | resolve-pkg "^0.1.0" 1851 | 1852 | load-json-file@^1.0.0: 1853 | version "1.1.0" 1854 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1855 | dependencies: 1856 | graceful-fs "^4.1.2" 1857 | parse-json "^2.2.0" 1858 | pify "^2.0.0" 1859 | pinkie-promise "^2.0.0" 1860 | strip-bom "^2.0.0" 1861 | 1862 | load-json-file@^2.0.0: 1863 | version "2.0.0" 1864 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 1865 | dependencies: 1866 | graceful-fs "^4.1.2" 1867 | parse-json "^2.2.0" 1868 | pify "^2.0.0" 1869 | strip-bom "^3.0.0" 1870 | 1871 | locate-path@^2.0.0: 1872 | version "2.0.0" 1873 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1874 | dependencies: 1875 | p-locate "^2.0.0" 1876 | path-exists "^3.0.0" 1877 | 1878 | lodash._baseassign@^3.0.0: 1879 | version "3.2.0" 1880 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 1881 | dependencies: 1882 | lodash._basecopy "^3.0.0" 1883 | lodash.keys "^3.0.0" 1884 | 1885 | lodash._basecopy@^3.0.0: 1886 | version "3.0.1" 1887 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 1888 | 1889 | lodash._basecreate@^3.0.0: 1890 | version "3.0.3" 1891 | resolved "https://registry.yarnpkg.com/lodash._basecreate/-/lodash._basecreate-3.0.3.tgz#1bc661614daa7fc311b7d03bf16806a0213cf821" 1892 | 1893 | lodash._getnative@^3.0.0: 1894 | version "3.9.1" 1895 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 1896 | 1897 | lodash._isiterateecall@^3.0.0: 1898 | version "3.0.9" 1899 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 1900 | 1901 | lodash.cond@^4.3.0: 1902 | version "4.5.2" 1903 | resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5" 1904 | 1905 | lodash.create@3.1.1: 1906 | version "3.1.1" 1907 | resolved "https://registry.yarnpkg.com/lodash.create/-/lodash.create-3.1.1.tgz#d7f2849f0dbda7e04682bb8cd72ab022461debe7" 1908 | dependencies: 1909 | lodash._baseassign "^3.0.0" 1910 | lodash._basecreate "^3.0.0" 1911 | lodash._isiterateecall "^3.0.0" 1912 | 1913 | lodash.isarguments@^3.0.0: 1914 | version "3.1.0" 1915 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 1916 | 1917 | lodash.isarray@^3.0.0: 1918 | version "3.0.4" 1919 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 1920 | 1921 | lodash.isfunction@^3.0.8: 1922 | version "3.0.8" 1923 | resolved "https://registry.yarnpkg.com/lodash.isfunction/-/lodash.isfunction-3.0.8.tgz#4db709fc81bc4a8fd7127a458a5346c5cdce2c6b" 1924 | 1925 | lodash.keys@^3.0.0: 1926 | version "3.1.2" 1927 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 1928 | dependencies: 1929 | lodash._getnative "^3.0.0" 1930 | lodash.isarguments "^3.0.0" 1931 | lodash.isarray "^3.0.0" 1932 | 1933 | lodash@4.17.4, lodash@^4.0.0, lodash@^4.14.0, lodash@^4.17.3, lodash@^4.17.4, lodash@^4.2.0, lodash@^4.3.0: 1934 | version "4.17.4" 1935 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1936 | 1937 | lodash@~3.10.1: 1938 | version "3.10.1" 1939 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6" 1940 | 1941 | lodash@~4.3.0: 1942 | version "4.3.0" 1943 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.3.0.tgz#efd9c4a6ec53f3b05412429915c3e4824e4d25a4" 1944 | 1945 | longest@^1.0.1: 1946 | version "1.0.1" 1947 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 1948 | 1949 | loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.3.1: 1950 | version "1.3.1" 1951 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1952 | dependencies: 1953 | js-tokens "^3.0.0" 1954 | 1955 | loud-rejection@^1.0.0: 1956 | version "1.6.0" 1957 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 1958 | dependencies: 1959 | currently-unhandled "^0.4.1" 1960 | signal-exit "^3.0.0" 1961 | 1962 | map-obj@^1.0.0, map-obj@^1.0.1: 1963 | version "1.0.1" 1964 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 1965 | 1966 | meow@^3.3.0: 1967 | version "3.7.0" 1968 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 1969 | dependencies: 1970 | camelcase-keys "^2.0.0" 1971 | decamelize "^1.1.2" 1972 | loud-rejection "^1.0.0" 1973 | map-obj "^1.0.1" 1974 | minimist "^1.1.3" 1975 | normalize-package-data "^2.3.4" 1976 | object-assign "^4.0.1" 1977 | read-pkg-up "^1.0.1" 1978 | redent "^1.0.0" 1979 | trim-newlines "^1.0.0" 1980 | 1981 | mime-db@~1.27.0: 1982 | version "1.27.0" 1983 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 1984 | 1985 | mime-types@^2.1.12, mime-types@~2.1.7: 1986 | version "2.1.15" 1987 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 1988 | dependencies: 1989 | mime-db "~1.27.0" 1990 | 1991 | mimic-fn@^1.0.0: 1992 | version "1.1.0" 1993 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 1994 | 1995 | "minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4, minimatch@~3.0.0: 1996 | version "3.0.4" 1997 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1998 | dependencies: 1999 | brace-expansion "^1.1.7" 2000 | 2001 | minimist@0.0.8, minimist@~0.0.1: 2002 | version "0.0.8" 2003 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2004 | 2005 | minimist@^1.1.0, minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0: 2006 | version "1.2.0" 2007 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2008 | 2009 | mkdirp@0.5.1, mkdirp@0.5.x, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1: 2010 | version "0.5.1" 2011 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2012 | dependencies: 2013 | minimist "0.0.8" 2014 | 2015 | mocha@3.4.2: 2016 | version "3.4.2" 2017 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-3.4.2.tgz#d0ef4d332126dbf18d0d640c9b382dd48be97594" 2018 | dependencies: 2019 | browser-stdout "1.3.0" 2020 | commander "2.9.0" 2021 | debug "2.6.0" 2022 | diff "3.2.0" 2023 | escape-string-regexp "1.0.5" 2024 | glob "7.1.1" 2025 | growl "1.9.2" 2026 | json3 "3.3.2" 2027 | lodash.create "3.1.1" 2028 | mkdirp "0.5.1" 2029 | supports-color "3.1.2" 2030 | 2031 | mochawesome-report-generator@^2.1.0: 2032 | version "2.1.0" 2033 | resolved "https://registry.yarnpkg.com/mochawesome-report-generator/-/mochawesome-report-generator-2.1.0.tgz#86b22fc90b677e0128b411bb6b0779ff7df68184" 2034 | dependencies: 2035 | chalk "^1.1.3" 2036 | dateformat "^2.0.0" 2037 | fs-extra "^3.0.0" 2038 | fsu "^1.0.2" 2039 | lodash.isfunction "^3.0.8" 2040 | opener "^1.4.2" 2041 | prop-types "^15.5.8" 2042 | react "^15.3.2" 2043 | react-dom "^15.3.2" 2044 | tcomb "^3.2.17" 2045 | tcomb-validation "^3.3.0" 2046 | validator "^7.0.0" 2047 | yargs "^7.0.2" 2048 | 2049 | mochawesome@2.2.1: 2050 | version "2.2.1" 2051 | resolved "https://registry.yarnpkg.com/mochawesome/-/mochawesome-2.2.1.tgz#f009301e0ddefc9b7423d899476730de1213a89b" 2052 | dependencies: 2053 | babel-runtime "^6.20.0" 2054 | chalk "^1.1.3" 2055 | diff "^3.0.0" 2056 | json-stringify-safe "^5.0.1" 2057 | lodash "^4.17.3" 2058 | mochawesome-report-generator "^2.1.0" 2059 | uuid "^3.0.1" 2060 | 2061 | mongodb-core@2.1.11: 2062 | version "2.1.11" 2063 | resolved "https://registry.yarnpkg.com/mongodb-core/-/mongodb-core-2.1.11.tgz#1c38776ceb174997a99c28860eed9028da9b3e1a" 2064 | dependencies: 2065 | bson "~1.0.4" 2066 | require_optional "~1.0.0" 2067 | 2068 | mongodb@2.2.27: 2069 | version "2.2.27" 2070 | resolved "https://registry.yarnpkg.com/mongodb/-/mongodb-2.2.27.tgz#34122034db66d983bcf6ab5adb26a24a70fef6e6" 2071 | dependencies: 2072 | es6-promise "3.2.1" 2073 | mongodb-core "2.1.11" 2074 | readable-stream "2.2.7" 2075 | 2076 | mongoose@4.10.5: 2077 | version "4.10.5" 2078 | resolved "https://registry.yarnpkg.com/mongoose/-/mongoose-4.10.5.tgz#7cd50ee38d5057815e83962e3985f7dd9da769ad" 2079 | dependencies: 2080 | async "2.1.4" 2081 | bson "~1.0.4" 2082 | hooks-fixed "2.0.0" 2083 | kareem "1.4.1" 2084 | mongodb "2.2.27" 2085 | mpath "0.3.0" 2086 | mpromise "0.5.5" 2087 | mquery "2.3.1" 2088 | ms "2.0.0" 2089 | muri "1.2.1" 2090 | regexp-clone "0.0.1" 2091 | sliced "1.0.1" 2092 | 2093 | mpath@0.3.0: 2094 | version "0.3.0" 2095 | resolved "https://registry.yarnpkg.com/mpath/-/mpath-0.3.0.tgz#7a58f789e9b5fd3c94520634157960f26bd5ef44" 2096 | 2097 | mpromise@0.5.5: 2098 | version "0.5.5" 2099 | resolved "https://registry.yarnpkg.com/mpromise/-/mpromise-0.5.5.tgz#f5b24259d763acc2257b0a0c8c6d866fd51732e6" 2100 | 2101 | mquery@2.3.1: 2102 | version "2.3.1" 2103 | resolved "https://registry.yarnpkg.com/mquery/-/mquery-2.3.1.tgz#9ab36749714800ff0bb53a681ce4bc4d5f07c87b" 2104 | dependencies: 2105 | bluebird "2.10.2" 2106 | debug "2.6.8" 2107 | regexp-clone "0.0.1" 2108 | sliced "0.0.5" 2109 | 2110 | ms@0.7.1: 2111 | version "0.7.1" 2112 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 2113 | 2114 | ms@0.7.2: 2115 | version "0.7.2" 2116 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 2117 | 2118 | ms@2.0.0: 2119 | version "2.0.0" 2120 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2121 | 2122 | multimatch@^2.0.0: 2123 | version "2.1.0" 2124 | resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-2.1.0.tgz#9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b" 2125 | dependencies: 2126 | array-differ "^1.0.0" 2127 | array-union "^1.0.1" 2128 | arrify "^1.0.0" 2129 | minimatch "^3.0.0" 2130 | 2131 | muri@1.2.1: 2132 | version "1.2.1" 2133 | resolved "https://registry.yarnpkg.com/muri/-/muri-1.2.1.tgz#ec7ea5ce6ca6a523eb1ab35bacda5fa816c9aa3c" 2134 | 2135 | mute-stream@0.0.5: 2136 | version "0.0.5" 2137 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 2138 | 2139 | mute-stream@0.0.7: 2140 | version "0.0.7" 2141 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 2142 | 2143 | nan@^2.3.4: 2144 | version "2.6.2" 2145 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45" 2146 | 2147 | natural-compare@^1.4.0: 2148 | version "1.4.0" 2149 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2150 | 2151 | node-fetch@^1.0.1: 2152 | version "1.7.1" 2153 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.1.tgz#899cb3d0a3c92f952c47f1b876f4c8aeabd400d5" 2154 | dependencies: 2155 | encoding "^0.1.11" 2156 | is-stream "^1.0.1" 2157 | 2158 | node-pre-gyp@~0.6.28: 2159 | version "0.6.36" 2160 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz#db604112cb74e0d477554e9b505b17abddfab786" 2161 | dependencies: 2162 | mkdirp "^0.5.1" 2163 | nopt "^4.0.1" 2164 | npmlog "^4.0.2" 2165 | rc "^1.1.7" 2166 | request "^2.81.0" 2167 | rimraf "^2.6.1" 2168 | semver "^5.3.0" 2169 | tar "^2.2.1" 2170 | tar-pack "^3.4.0" 2171 | 2172 | nopt@3.x, nopt@~3.0.6: 2173 | version "3.0.6" 2174 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 2175 | dependencies: 2176 | abbrev "1" 2177 | 2178 | nopt@^4.0.1: 2179 | version "4.0.1" 2180 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2181 | dependencies: 2182 | abbrev "1" 2183 | osenv "^0.1.4" 2184 | 2185 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: 2186 | version "2.3.8" 2187 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb" 2188 | dependencies: 2189 | hosted-git-info "^2.1.4" 2190 | is-builtin-module "^1.0.0" 2191 | semver "2 || 3 || 4 || 5" 2192 | validate-npm-package-license "^3.0.1" 2193 | 2194 | npm-run-path@^2.0.0: 2195 | version "2.0.2" 2196 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2197 | dependencies: 2198 | path-key "^2.0.0" 2199 | 2200 | npmlog@^4.0.2: 2201 | version "4.1.0" 2202 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.0.tgz#dc59bee85f64f00ed424efb2af0783df25d1c0b5" 2203 | dependencies: 2204 | are-we-there-yet "~1.1.2" 2205 | console-control-strings "~1.1.0" 2206 | gauge "~2.7.3" 2207 | set-blocking "~2.0.0" 2208 | 2209 | nth-check@~1.0.1: 2210 | version "1.0.1" 2211 | resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.1.tgz#9929acdf628fc2c41098deab82ac580cf149aae4" 2212 | dependencies: 2213 | boolbase "~1.0.0" 2214 | 2215 | number-is-nan@^1.0.0: 2216 | version "1.0.1" 2217 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2218 | 2219 | oauth-sign@~0.8.1: 2220 | version "0.8.2" 2221 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2222 | 2223 | object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: 2224 | version "4.1.1" 2225 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2226 | 2227 | object-keys@^1.0.10, object-keys@^1.0.8: 2228 | version "1.0.11" 2229 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 2230 | 2231 | object.assign@^4.0.4: 2232 | version "4.0.4" 2233 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.0.4.tgz#b1c9cc044ef1b9fe63606fc141abbb32e14730cc" 2234 | dependencies: 2235 | define-properties "^1.1.2" 2236 | function-bind "^1.1.0" 2237 | object-keys "^1.0.10" 2238 | 2239 | once@^1.3.0, once@^1.3.3, once@^1.4.0: 2240 | version "1.4.0" 2241 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2242 | dependencies: 2243 | wrappy "1" 2244 | 2245 | onetime@^1.0.0: 2246 | version "1.1.0" 2247 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 2248 | 2249 | onetime@^2.0.0: 2250 | version "2.0.1" 2251 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2252 | dependencies: 2253 | mimic-fn "^1.0.0" 2254 | 2255 | opener@^1.4.2: 2256 | version "1.4.3" 2257 | resolved "https://registry.yarnpkg.com/opener/-/opener-1.4.3.tgz#5c6da2c5d7e5831e8ffa3964950f8d6674ac90b8" 2258 | 2259 | optimist@^0.6.1: 2260 | version "0.6.1" 2261 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2262 | dependencies: 2263 | minimist "~0.0.1" 2264 | wordwrap "~0.0.2" 2265 | 2266 | optionator@^0.8.2: 2267 | version "0.8.2" 2268 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2269 | dependencies: 2270 | deep-is "~0.1.3" 2271 | fast-levenshtein "~2.0.4" 2272 | levn "~0.3.0" 2273 | prelude-ls "~1.1.2" 2274 | type-check "~0.3.2" 2275 | wordwrap "~1.0.0" 2276 | 2277 | os-homedir@1.0.2, os-homedir@^1.0.0: 2278 | version "1.0.2" 2279 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2280 | 2281 | os-locale@^1.4.0: 2282 | version "1.4.0" 2283 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2284 | dependencies: 2285 | lcid "^1.0.0" 2286 | 2287 | os-tmpdir@^1.0.0, os-tmpdir@~1.0.1: 2288 | version "1.0.2" 2289 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2290 | 2291 | osenv@^0.1.4: 2292 | version "0.1.4" 2293 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2294 | dependencies: 2295 | os-homedir "^1.0.0" 2296 | os-tmpdir "^1.0.0" 2297 | 2298 | p-limit@^1.1.0: 2299 | version "1.1.0" 2300 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 2301 | 2302 | p-locate@^2.0.0: 2303 | version "2.0.0" 2304 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2305 | dependencies: 2306 | p-limit "^1.1.0" 2307 | 2308 | parse-json@^2.2.0: 2309 | version "2.2.0" 2310 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2311 | dependencies: 2312 | error-ex "^1.2.0" 2313 | 2314 | parse-ms@^1.0.0: 2315 | version "1.0.1" 2316 | resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-1.0.1.tgz#56346d4749d78f23430ca0c713850aef91aa361d" 2317 | 2318 | path-exists@^2.0.0: 2319 | version "2.1.0" 2320 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2321 | dependencies: 2322 | pinkie-promise "^2.0.0" 2323 | 2324 | path-exists@^3.0.0: 2325 | version "3.0.0" 2326 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2327 | 2328 | path-is-absolute@^1.0.0, path-is-absolute@~1.0.0: 2329 | version "1.0.1" 2330 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2331 | 2332 | path-is-inside@^1.0.1, path-is-inside@^1.0.2: 2333 | version "1.0.2" 2334 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2335 | 2336 | path-key@^2.0.0: 2337 | version "2.0.1" 2338 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2339 | 2340 | path-parse@^1.0.5: 2341 | version "1.0.5" 2342 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2343 | 2344 | path-type@^1.0.0: 2345 | version "1.1.0" 2346 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2347 | dependencies: 2348 | graceful-fs "^4.1.2" 2349 | pify "^2.0.0" 2350 | pinkie-promise "^2.0.0" 2351 | 2352 | path-type@^2.0.0: 2353 | version "2.0.0" 2354 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 2355 | dependencies: 2356 | pify "^2.0.0" 2357 | 2358 | performance-now@^0.2.0: 2359 | version "0.2.0" 2360 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2361 | 2362 | pify@^2.0.0: 2363 | version "2.3.0" 2364 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2365 | 2366 | pinkie-promise@^2.0.0: 2367 | version "2.0.1" 2368 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2369 | dependencies: 2370 | pinkie "^2.0.0" 2371 | 2372 | pinkie@^2.0.0: 2373 | version "2.0.4" 2374 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2375 | 2376 | pkg-conf@^2.0.0: 2377 | version "2.0.0" 2378 | resolved "https://registry.yarnpkg.com/pkg-conf/-/pkg-conf-2.0.0.tgz#071c87650403bccfb9c627f58751bfe47c067279" 2379 | dependencies: 2380 | find-up "^2.0.0" 2381 | load-json-file "^2.0.0" 2382 | 2383 | pkg-config@^1.1.0: 2384 | version "1.1.1" 2385 | resolved "https://registry.yarnpkg.com/pkg-config/-/pkg-config-1.1.1.tgz#557ef22d73da3c8837107766c52eadabde298fe4" 2386 | dependencies: 2387 | debug-log "^1.0.0" 2388 | find-root "^1.0.0" 2389 | xtend "^4.0.1" 2390 | 2391 | pkg-dir@^1.0.0: 2392 | version "1.0.0" 2393 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 2394 | dependencies: 2395 | find-up "^1.0.0" 2396 | 2397 | pkg-up@^1.0.0: 2398 | version "1.0.0" 2399 | resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-1.0.0.tgz#3e08fb461525c4421624a33b9f7e6d0af5b05a26" 2400 | dependencies: 2401 | find-up "^1.0.0" 2402 | 2403 | plur@^1.0.0: 2404 | version "1.0.0" 2405 | resolved "https://registry.yarnpkg.com/plur/-/plur-1.0.0.tgz#db85c6814f5e5e5a3b49efc28d604fec62975156" 2406 | 2407 | pluralize@^1.2.1: 2408 | version "1.2.1" 2409 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" 2410 | 2411 | pluralize@^4.0.0: 2412 | version "4.0.0" 2413 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-4.0.0.tgz#59b708c1c0190a2f692f1c7618c446b052fd1762" 2414 | 2415 | prelude-ls@~1.1.2: 2416 | version "1.1.2" 2417 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2418 | 2419 | pretty-error@2.1.0: 2420 | version "2.1.0" 2421 | resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-2.1.0.tgz#87f4e9d706a24c87d6cbee9fabec001fcf8c75d8" 2422 | dependencies: 2423 | renderkid "^2.0.1" 2424 | utila "~0.4" 2425 | 2426 | pretty-ms@^2.1.0: 2427 | version "2.1.0" 2428 | resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-2.1.0.tgz#4257c256df3fb0b451d6affaab021884126981dc" 2429 | dependencies: 2430 | is-finite "^1.0.1" 2431 | parse-ms "^1.0.0" 2432 | plur "^1.0.0" 2433 | 2434 | process-nextick-args@~1.0.6: 2435 | version "1.0.7" 2436 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2437 | 2438 | progress@^1.1.8: 2439 | version "1.1.8" 2440 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 2441 | 2442 | progress@^2.0.0: 2443 | version "2.0.0" 2444 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" 2445 | 2446 | promise@^7.1.1: 2447 | version "7.1.1" 2448 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.1.1.tgz#489654c692616b8aa55b0724fa809bb7db49c5bf" 2449 | dependencies: 2450 | asap "~2.0.3" 2451 | 2452 | prop-types@^15.5.7, prop-types@^15.5.8, prop-types@~15.5.7: 2453 | version "15.5.10" 2454 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.5.10.tgz#2797dfc3126182e3a95e3dfbb2e893ddd7456154" 2455 | dependencies: 2456 | fbjs "^0.8.9" 2457 | loose-envify "^1.3.1" 2458 | 2459 | punycode@^1.4.1: 2460 | version "1.4.1" 2461 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2462 | 2463 | qs@~6.4.0: 2464 | version "6.4.0" 2465 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2466 | 2467 | ramda@^0.24.1: 2468 | version "0.24.1" 2469 | resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.24.1.tgz#c3b7755197f35b8dc3502228262c4c91ddb6b857" 2470 | 2471 | rc@^1.1.7: 2472 | version "1.2.1" 2473 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 2474 | dependencies: 2475 | deep-extend "~0.4.0" 2476 | ini "~1.3.0" 2477 | minimist "^1.2.0" 2478 | strip-json-comments "~2.0.1" 2479 | 2480 | react-dom@^15.3.2: 2481 | version "15.6.0" 2482 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-15.6.0.tgz#8bc23cb0c80e706355b76ca9f8ce47cf7bdfb6d1" 2483 | dependencies: 2484 | fbjs "^0.8.9" 2485 | loose-envify "^1.1.0" 2486 | object-assign "^4.1.0" 2487 | prop-types "~15.5.7" 2488 | 2489 | react@^15.3.2: 2490 | version "15.6.0" 2491 | resolved "https://registry.yarnpkg.com/react/-/react-15.6.0.tgz#c23299b48e30ed302508ce89e1a02c919f826bce" 2492 | dependencies: 2493 | create-react-class "^15.5.2" 2494 | fbjs "^0.8.9" 2495 | loose-envify "^1.1.0" 2496 | object-assign "^4.1.0" 2497 | prop-types "^15.5.7" 2498 | 2499 | read-pkg-up@^1.0.1: 2500 | version "1.0.1" 2501 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2502 | dependencies: 2503 | find-up "^1.0.0" 2504 | read-pkg "^1.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@^1.0.0: 2514 | version "1.1.0" 2515 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2516 | dependencies: 2517 | load-json-file "^1.0.0" 2518 | normalize-package-data "^2.3.2" 2519 | path-type "^1.0.0" 2520 | 2521 | read-pkg@^2.0.0: 2522 | version "2.0.0" 2523 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 2524 | dependencies: 2525 | load-json-file "^2.0.0" 2526 | normalize-package-data "^2.3.2" 2527 | path-type "^2.0.0" 2528 | 2529 | readable-stream@1.0: 2530 | version "1.0.34" 2531 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" 2532 | dependencies: 2533 | core-util-is "~1.0.0" 2534 | inherits "~2.0.1" 2535 | isarray "0.0.1" 2536 | string_decoder "~0.10.x" 2537 | 2538 | readable-stream@2.2.7: 2539 | version "2.2.7" 2540 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.7.tgz#07057acbe2467b22042d36f98c5ad507054e95b1" 2541 | dependencies: 2542 | buffer-shims "~1.0.0" 2543 | core-util-is "~1.0.0" 2544 | inherits "~2.0.1" 2545 | isarray "~1.0.0" 2546 | process-nextick-args "~1.0.6" 2547 | string_decoder "~1.0.0" 2548 | util-deprecate "~1.0.1" 2549 | 2550 | readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.2: 2551 | version "2.2.11" 2552 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.11.tgz#0796b31f8d7688007ff0b93a8088d34aa17c0f72" 2553 | dependencies: 2554 | core-util-is "~1.0.0" 2555 | inherits "~2.0.1" 2556 | isarray "~1.0.0" 2557 | process-nextick-args "~1.0.6" 2558 | safe-buffer "~5.0.1" 2559 | string_decoder "~1.0.0" 2560 | util-deprecate "~1.0.1" 2561 | 2562 | readline2@^1.0.1: 2563 | version "1.0.1" 2564 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 2565 | dependencies: 2566 | code-point-at "^1.0.0" 2567 | is-fullwidth-code-point "^1.0.0" 2568 | mute-stream "0.0.5" 2569 | 2570 | rechoir@^0.6.2: 2571 | version "0.6.2" 2572 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 2573 | dependencies: 2574 | resolve "^1.1.6" 2575 | 2576 | redent@^1.0.0: 2577 | version "1.0.0" 2578 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 2579 | dependencies: 2580 | indent-string "^2.1.0" 2581 | strip-indent "^1.0.1" 2582 | 2583 | regenerator-runtime@^0.10.0: 2584 | version "0.10.5" 2585 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 2586 | 2587 | regexp-clone@0.0.1: 2588 | version "0.0.1" 2589 | resolved "https://registry.yarnpkg.com/regexp-clone/-/regexp-clone-0.0.1.tgz#a7c2e09891fdbf38fbb10d376fb73003e68ac589" 2590 | 2591 | renderkid@^2.0.1: 2592 | version "2.0.1" 2593 | resolved "https://registry.yarnpkg.com/renderkid/-/renderkid-2.0.1.tgz#898cabfc8bede4b7b91135a3ffd323e58c0db319" 2594 | dependencies: 2595 | css-select "^1.1.0" 2596 | dom-converter "~0.1" 2597 | htmlparser2 "~3.3.0" 2598 | strip-ansi "^3.0.0" 2599 | utila "~0.3" 2600 | 2601 | repeat-string@^1.5.2: 2602 | version "1.6.1" 2603 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2604 | 2605 | repeating@^2.0.0: 2606 | version "2.0.1" 2607 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2608 | dependencies: 2609 | is-finite "^1.0.0" 2610 | 2611 | request@^2.81.0: 2612 | version "2.81.0" 2613 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2614 | dependencies: 2615 | aws-sign2 "~0.6.0" 2616 | aws4 "^1.2.1" 2617 | caseless "~0.12.0" 2618 | combined-stream "~1.0.5" 2619 | extend "~3.0.0" 2620 | forever-agent "~0.6.1" 2621 | form-data "~2.1.1" 2622 | har-validator "~4.2.1" 2623 | hawk "~3.1.3" 2624 | http-signature "~1.1.0" 2625 | is-typedarray "~1.0.0" 2626 | isstream "~0.1.2" 2627 | json-stringify-safe "~5.0.1" 2628 | mime-types "~2.1.7" 2629 | oauth-sign "~0.8.1" 2630 | performance-now "^0.2.0" 2631 | qs "~6.4.0" 2632 | safe-buffer "^5.0.1" 2633 | stringstream "~0.0.4" 2634 | tough-cookie "~2.3.0" 2635 | tunnel-agent "^0.6.0" 2636 | uuid "^3.0.0" 2637 | 2638 | require-directory@^2.1.1: 2639 | version "2.1.1" 2640 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2641 | 2642 | require-main-filename@^1.0.1: 2643 | version "1.0.1" 2644 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2645 | 2646 | require-uncached@^1.0.2, require-uncached@^1.0.3: 2647 | version "1.0.3" 2648 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 2649 | dependencies: 2650 | caller-path "^0.1.0" 2651 | resolve-from "^1.0.0" 2652 | 2653 | require_optional@~1.0.0: 2654 | version "1.0.1" 2655 | resolved "https://registry.yarnpkg.com/require_optional/-/require_optional-1.0.1.tgz#4cf35a4247f64ca3df8c2ef208cc494b1ca8fc2e" 2656 | dependencies: 2657 | resolve-from "^2.0.0" 2658 | semver "^5.1.0" 2659 | 2660 | resolve-from@^1.0.0: 2661 | version "1.0.1" 2662 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 2663 | 2664 | resolve-from@^2.0.0: 2665 | version "2.0.0" 2666 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57" 2667 | 2668 | resolve-pkg@^0.1.0: 2669 | version "0.1.0" 2670 | resolved "https://registry.yarnpkg.com/resolve-pkg/-/resolve-pkg-0.1.0.tgz#02cc993410e2936962bd97166a1b077da9725531" 2671 | dependencies: 2672 | resolve-from "^2.0.0" 2673 | 2674 | resolve@^1.1.6, resolve@^1.1.7, resolve@^1.3.3: 2675 | version "1.3.3" 2676 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.3.tgz#655907c3469a8680dc2de3a275a8fdd69691f0e5" 2677 | dependencies: 2678 | path-parse "^1.0.5" 2679 | 2680 | resolve@~1.1.0: 2681 | version "1.1.7" 2682 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2683 | 2684 | restore-cursor@^1.0.1: 2685 | version "1.0.1" 2686 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 2687 | dependencies: 2688 | exit-hook "^1.0.0" 2689 | onetime "^1.0.0" 2690 | 2691 | restore-cursor@^2.0.0: 2692 | version "2.0.0" 2693 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 2694 | dependencies: 2695 | onetime "^2.0.0" 2696 | signal-exit "^3.0.2" 2697 | 2698 | right-align@^0.1.1: 2699 | version "0.1.3" 2700 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2701 | dependencies: 2702 | align-text "^0.1.1" 2703 | 2704 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1: 2705 | version "2.6.1" 2706 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 2707 | dependencies: 2708 | glob "^7.0.5" 2709 | 2710 | rimraf@~2.2.8: 2711 | version "2.2.8" 2712 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.2.8.tgz#e439be2aaee327321952730f99a8929e4fc50582" 2713 | 2714 | run-async@^0.1.0: 2715 | version "0.1.0" 2716 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 2717 | dependencies: 2718 | once "^1.3.0" 2719 | 2720 | run-async@^2.2.0: 2721 | version "2.3.0" 2722 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 2723 | dependencies: 2724 | is-promise "^2.1.0" 2725 | 2726 | run-parallel@^1.1.2: 2727 | version "1.1.6" 2728 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.1.6.tgz#29003c9a2163e01e2d2dfc90575f2c6c1d61a039" 2729 | 2730 | rx-lite-aggregates@^4.0.8: 2731 | version "4.0.8" 2732 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 2733 | dependencies: 2734 | rx-lite "*" 2735 | 2736 | rx-lite@*, rx-lite@^4.0.8: 2737 | version "4.0.8" 2738 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 2739 | 2740 | rx-lite@^3.1.2: 2741 | version "3.1.2" 2742 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 2743 | 2744 | safe-buffer@^5.0.1, safe-buffer@~5.0.1: 2745 | version "5.0.1" 2746 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 2747 | 2748 | semistandard@11.0.0: 2749 | version "11.0.0" 2750 | resolved "https://registry.yarnpkg.com/semistandard/-/semistandard-11.0.0.tgz#d2d9fc8ac393de21312195e006e50c8861391c47" 2751 | dependencies: 2752 | eslint "~3.19.0" 2753 | eslint-config-semistandard "^11.0.0" 2754 | eslint-config-standard "^10.2.1" 2755 | eslint-config-standard-jsx "4.0.1" 2756 | eslint-plugin-import "~2.2.0" 2757 | eslint-plugin-node "~4.2.2" 2758 | eslint-plugin-promise "~3.5.0" 2759 | eslint-plugin-react "~6.10.0" 2760 | eslint-plugin-standard "~3.0.1" 2761 | standard-engine "~7.0.0" 2762 | 2763 | "semver@2 || 3 || 4 || 5", semver@5.3.0, semver@^5.1.0, semver@^5.3.0: 2764 | version "5.3.0" 2765 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 2766 | 2767 | set-blocking@^2.0.0, set-blocking@~2.0.0: 2768 | version "2.0.0" 2769 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2770 | 2771 | setimmediate@^1.0.5: 2772 | version "1.0.5" 2773 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 2774 | 2775 | shelljs@^0.7.5: 2776 | version "0.7.8" 2777 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.8.tgz#decbcf874b0d1e5fb72e14b164a9683048e9acb3" 2778 | dependencies: 2779 | glob "^7.0.0" 2780 | interpret "^1.0.0" 2781 | rechoir "^0.6.2" 2782 | 2783 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2784 | version "3.0.2" 2785 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2786 | 2787 | slice-ansi@0.0.4: 2788 | version "0.0.4" 2789 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 2790 | 2791 | sliced@0.0.5: 2792 | version "0.0.5" 2793 | resolved "https://registry.yarnpkg.com/sliced/-/sliced-0.0.5.tgz#5edc044ca4eb6f7816d50ba2fc63e25d8fe4707f" 2794 | 2795 | sliced@1.0.1: 2796 | version "1.0.1" 2797 | resolved "https://registry.yarnpkg.com/sliced/-/sliced-1.0.1.tgz#0b3a662b5d04c3177b1926bea82b03f837a2ef41" 2798 | 2799 | snazzy@7.0.0: 2800 | version "7.0.0" 2801 | resolved "https://registry.yarnpkg.com/snazzy/-/snazzy-7.0.0.tgz#95edaccc4a8d6f80f4ac5cc7b520e8f8f9ac2325" 2802 | dependencies: 2803 | chalk "^1.1.0" 2804 | inherits "^2.0.1" 2805 | minimist "^1.1.1" 2806 | readable-stream "^2.0.6" 2807 | standard-json "^1.0.0" 2808 | text-table "^0.2.0" 2809 | 2810 | sntp@1.x.x: 2811 | version "1.0.9" 2812 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2813 | dependencies: 2814 | hoek "2.x.x" 2815 | 2816 | source-map@^0.4.4: 2817 | version "0.4.4" 2818 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 2819 | dependencies: 2820 | amdefine ">=0.0.4" 2821 | 2822 | source-map@^0.5.0, source-map@^0.5.3, source-map@~0.5.1: 2823 | version "0.5.6" 2824 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 2825 | 2826 | spdx-correct@~1.0.0: 2827 | version "1.0.2" 2828 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2829 | dependencies: 2830 | spdx-license-ids "^1.0.2" 2831 | 2832 | spdx-expression-parse@~1.0.0: 2833 | version "1.0.4" 2834 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2835 | 2836 | spdx-license-ids@^1.0.2: 2837 | version "1.2.2" 2838 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2839 | 2840 | sprintf-js@~1.0.2: 2841 | version "1.0.3" 2842 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2843 | 2844 | sshpk@^1.7.0: 2845 | version "1.13.1" 2846 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 2847 | dependencies: 2848 | asn1 "~0.2.3" 2849 | assert-plus "^1.0.0" 2850 | dashdash "^1.12.0" 2851 | getpass "^0.1.1" 2852 | optionalDependencies: 2853 | bcrypt-pbkdf "^1.0.0" 2854 | ecc-jsbn "~0.1.1" 2855 | jsbn "~0.1.0" 2856 | tweetnacl "~0.14.0" 2857 | 2858 | stack-trace@0.0.x: 2859 | version "0.0.10" 2860 | resolved "https://registry.yarnpkg.com/stack-trace/-/stack-trace-0.0.10.tgz#547c70b347e8d32b4e108ea1a2a159e5fdde19c0" 2861 | 2862 | standard-engine@~7.0.0: 2863 | version "7.0.0" 2864 | resolved "https://registry.yarnpkg.com/standard-engine/-/standard-engine-7.0.0.tgz#ebb77b9c8fc2c8165ffa353bd91ba0dff41af690" 2865 | dependencies: 2866 | deglob "^2.1.0" 2867 | get-stdin "^5.0.1" 2868 | minimist "^1.1.0" 2869 | pkg-conf "^2.0.0" 2870 | 2871 | standard-json@^1.0.0: 2872 | version "1.0.2" 2873 | resolved "https://registry.yarnpkg.com/standard-json/-/standard-json-1.0.2.tgz#82dea4a14c78cd9e35d38cde4b88ac6b62596a23" 2874 | dependencies: 2875 | concat-stream "^1.5.0" 2876 | 2877 | string-width@^1.0.1, string-width@^1.0.2: 2878 | version "1.0.2" 2879 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2880 | dependencies: 2881 | code-point-at "^1.0.0" 2882 | is-fullwidth-code-point "^1.0.0" 2883 | strip-ansi "^3.0.0" 2884 | 2885 | string-width@^2.0.0: 2886 | version "2.0.0" 2887 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 2888 | dependencies: 2889 | is-fullwidth-code-point "^2.0.0" 2890 | strip-ansi "^3.0.0" 2891 | 2892 | string_decoder@~0.10.x: 2893 | version "0.10.31" 2894 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 2895 | 2896 | string_decoder@~1.0.0: 2897 | version "1.0.2" 2898 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.2.tgz#b29e1f4e1125fa97a10382b8a533737b7491e179" 2899 | dependencies: 2900 | safe-buffer "~5.0.1" 2901 | 2902 | stringstream@~0.0.4: 2903 | version "0.0.5" 2904 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2905 | 2906 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2907 | version "3.0.1" 2908 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2909 | dependencies: 2910 | ansi-regex "^2.0.0" 2911 | 2912 | strip-bom@^2.0.0: 2913 | version "2.0.0" 2914 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2915 | dependencies: 2916 | is-utf8 "^0.2.0" 2917 | 2918 | strip-bom@^3.0.0: 2919 | version "3.0.0" 2920 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2921 | 2922 | strip-indent@^1.0.1: 2923 | version "1.0.1" 2924 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 2925 | dependencies: 2926 | get-stdin "^4.0.1" 2927 | 2928 | strip-json-comments@~2.0.1: 2929 | version "2.0.1" 2930 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2931 | 2932 | supports-color@3.1.2, supports-color@^3.1.2: 2933 | version "3.1.2" 2934 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5" 2935 | dependencies: 2936 | has-flag "^1.0.0" 2937 | 2938 | supports-color@^2.0.0: 2939 | version "2.0.0" 2940 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2941 | 2942 | table@^3.7.8: 2943 | version "3.8.3" 2944 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" 2945 | dependencies: 2946 | ajv "^4.7.0" 2947 | ajv-keywords "^1.0.0" 2948 | chalk "^1.1.1" 2949 | lodash "^4.0.0" 2950 | slice-ansi "0.0.4" 2951 | string-width "^2.0.0" 2952 | 2953 | table@^4.0.1: 2954 | version "4.0.1" 2955 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.1.tgz#a8116c133fac2c61f4a420ab6cdf5c4d61f0e435" 2956 | dependencies: 2957 | ajv "^4.7.0" 2958 | ajv-keywords "^1.0.0" 2959 | chalk "^1.1.1" 2960 | lodash "^4.0.0" 2961 | slice-ansi "0.0.4" 2962 | string-width "^2.0.0" 2963 | 2964 | tar-pack@^3.4.0: 2965 | version "3.4.0" 2966 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 2967 | dependencies: 2968 | debug "^2.2.0" 2969 | fstream "^1.0.10" 2970 | fstream-ignore "^1.0.5" 2971 | once "^1.3.3" 2972 | readable-stream "^2.1.4" 2973 | rimraf "^2.5.1" 2974 | tar "^2.2.1" 2975 | uid-number "^0.0.6" 2976 | 2977 | tar@^2.2.1: 2978 | version "2.2.1" 2979 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 2980 | dependencies: 2981 | block-stream "*" 2982 | fstream "^1.0.2" 2983 | inherits "2" 2984 | 2985 | tcomb-validation@^3.3.0: 2986 | version "3.3.0" 2987 | resolved "https://registry.yarnpkg.com/tcomb-validation/-/tcomb-validation-3.3.0.tgz#29ada8534203500e90b245eedd0e1a80f1909ba2" 2988 | dependencies: 2989 | tcomb "^3.0.0" 2990 | 2991 | tcomb@^3.0.0, tcomb@^3.2.17: 2992 | version "3.2.20" 2993 | resolved "https://registry.yarnpkg.com/tcomb/-/tcomb-3.2.20.tgz#823e689dcf3518d82c4b6c890a822aa6916692cd" 2994 | 2995 | text-table@^0.2.0, text-table@~0.2.0: 2996 | version "0.2.0" 2997 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 2998 | 2999 | through@^2.3.6: 3000 | version "2.3.8" 3001 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3002 | 3003 | time-grunt@1.4.0: 3004 | version "1.4.0" 3005 | resolved "https://registry.yarnpkg.com/time-grunt/-/time-grunt-1.4.0.tgz#062213e660c907e86f440556c01ea6597b712420" 3006 | dependencies: 3007 | chalk "^1.0.0" 3008 | date-time "^1.1.0" 3009 | figures "^1.0.0" 3010 | hooker "^0.2.3" 3011 | number-is-nan "^1.0.0" 3012 | pretty-ms "^2.1.0" 3013 | text-table "^0.2.0" 3014 | 3015 | time-zone@^0.1.0: 3016 | version "0.1.0" 3017 | resolved "https://registry.yarnpkg.com/time-zone/-/time-zone-0.1.0.tgz#4a7728b6ac28db0e008f514043fd555bd5573b46" 3018 | 3019 | tmp@^0.0.31: 3020 | version "0.0.31" 3021 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.31.tgz#8f38ab9438e17315e5dbd8b3657e8bfb277ae4a7" 3022 | dependencies: 3023 | os-tmpdir "~1.0.1" 3024 | 3025 | to-fast-properties@^1.0.1: 3026 | version "1.0.3" 3027 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3028 | 3029 | tough-cookie@~2.3.0: 3030 | version "2.3.2" 3031 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 3032 | dependencies: 3033 | punycode "^1.4.1" 3034 | 3035 | trim-newlines@^1.0.0: 3036 | version "1.0.0" 3037 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 3038 | 3039 | trim-right@^1.0.1: 3040 | version "1.0.1" 3041 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3042 | 3043 | tryit@^1.0.1: 3044 | version "1.0.3" 3045 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 3046 | 3047 | tunnel-agent@^0.6.0: 3048 | version "0.6.0" 3049 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3050 | dependencies: 3051 | safe-buffer "^5.0.1" 3052 | 3053 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3054 | version "0.14.5" 3055 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3056 | 3057 | type-check@~0.3.2: 3058 | version "0.3.2" 3059 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3060 | dependencies: 3061 | prelude-ls "~1.1.2" 3062 | 3063 | typedarray@^0.0.6: 3064 | version "0.0.6" 3065 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3066 | 3067 | ua-parser-js@^0.7.9: 3068 | version "0.7.12" 3069 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.12.tgz#04c81a99bdd5dc52263ea29d24c6bf8d4818a4bb" 3070 | 3071 | uglify-js@^2.6: 3072 | version "2.8.29" 3073 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 3074 | dependencies: 3075 | source-map "~0.5.1" 3076 | yargs "~3.10.0" 3077 | optionalDependencies: 3078 | uglify-to-browserify "~1.0.0" 3079 | 3080 | uglify-to-browserify@~1.0.0: 3081 | version "1.0.2" 3082 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3083 | 3084 | uid-number@^0.0.6: 3085 | version "0.0.6" 3086 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3087 | 3088 | underscore.string@~3.2.3: 3089 | version "3.2.3" 3090 | resolved "https://registry.yarnpkg.com/underscore.string/-/underscore.string-3.2.3.tgz#806992633665d5e5fcb4db1fb3a862eb68e9e6da" 3091 | 3092 | uniq@^1.0.1: 3093 | version "1.0.1" 3094 | resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" 3095 | 3096 | universalify@^0.1.0: 3097 | version "0.1.0" 3098 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.0.tgz#9eb1c4651debcc670cc94f1a75762332bb967778" 3099 | 3100 | user-home@^2.0.0: 3101 | version "2.0.0" 3102 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 3103 | dependencies: 3104 | os-homedir "^1.0.0" 3105 | 3106 | util-deprecate@~1.0.1: 3107 | version "1.0.2" 3108 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3109 | 3110 | utila@~0.3: 3111 | version "0.3.3" 3112 | resolved "https://registry.yarnpkg.com/utila/-/utila-0.3.3.tgz#d7e8e7d7e309107092b05f8d9688824d633a4226" 3113 | 3114 | utila@~0.4: 3115 | version "0.4.0" 3116 | resolved "https://registry.yarnpkg.com/utila/-/utila-0.4.0.tgz#8a16a05d445657a3aea5eecc5b12a4fa5379772c" 3117 | 3118 | uuid@^3.0.0, uuid@^3.0.1: 3119 | version "3.0.1" 3120 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 3121 | 3122 | validate-npm-package-license@^3.0.1: 3123 | version "3.0.1" 3124 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3125 | dependencies: 3126 | spdx-correct "~1.0.0" 3127 | spdx-expression-parse "~1.0.0" 3128 | 3129 | validator@^7.0.0: 3130 | version "7.0.0" 3131 | resolved "https://registry.yarnpkg.com/validator/-/validator-7.0.0.tgz#c74deb8063512fac35547938e6f0b1504a282fd2" 3132 | 3133 | verror@1.3.6: 3134 | version "1.3.6" 3135 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 3136 | dependencies: 3137 | extsprintf "1.0.2" 3138 | 3139 | whatwg-fetch@>=0.10.0: 3140 | version "2.0.3" 3141 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz#9c84ec2dcf68187ff00bc64e1274b442176e1c84" 3142 | 3143 | which-module@^1.0.0: 3144 | version "1.0.0" 3145 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 3146 | 3147 | which@^1.1.1, which@~1.2.1: 3148 | version "1.2.14" 3149 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 3150 | dependencies: 3151 | isexe "^2.0.0" 3152 | 3153 | wide-align@^1.1.0: 3154 | version "1.1.2" 3155 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 3156 | dependencies: 3157 | string-width "^1.0.2" 3158 | 3159 | window-size@0.1.0: 3160 | version "0.1.0" 3161 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3162 | 3163 | winston@2.3.1: 3164 | version "2.3.1" 3165 | resolved "https://registry.yarnpkg.com/winston/-/winston-2.3.1.tgz#0b48420d978c01804cf0230b648861598225a119" 3166 | dependencies: 3167 | async "~1.0.0" 3168 | colors "1.0.x" 3169 | cycle "1.0.x" 3170 | eyes "0.1.x" 3171 | isstream "0.1.x" 3172 | stack-trace "0.0.x" 3173 | 3174 | wordwrap@0.0.2: 3175 | version "0.0.2" 3176 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3177 | 3178 | wordwrap@^1.0.0, wordwrap@~1.0.0: 3179 | version "1.0.0" 3180 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3181 | 3182 | wordwrap@~0.0.2: 3183 | version "0.0.3" 3184 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3185 | 3186 | wrap-ansi@^2.0.0: 3187 | version "2.1.0" 3188 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3189 | dependencies: 3190 | string-width "^1.0.1" 3191 | strip-ansi "^3.0.1" 3192 | 3193 | wrappy@1: 3194 | version "1.0.2" 3195 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3196 | 3197 | write@^0.2.1: 3198 | version "0.2.1" 3199 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 3200 | dependencies: 3201 | mkdirp "^0.5.1" 3202 | 3203 | xtend@^4.0.0, xtend@^4.0.1: 3204 | version "4.0.1" 3205 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3206 | 3207 | y18n@^3.2.1: 3208 | version "3.2.1" 3209 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3210 | 3211 | yargs-parser@^5.0.0: 3212 | version "5.0.0" 3213 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" 3214 | dependencies: 3215 | camelcase "^3.0.0" 3216 | 3217 | yargs@^7.0.2: 3218 | version "7.1.0" 3219 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" 3220 | dependencies: 3221 | camelcase "^3.0.0" 3222 | cliui "^3.2.0" 3223 | decamelize "^1.1.1" 3224 | get-caller-file "^1.0.1" 3225 | os-locale "^1.4.0" 3226 | read-pkg-up "^1.0.1" 3227 | require-directory "^2.1.1" 3228 | require-main-filename "^1.0.1" 3229 | set-blocking "^2.0.0" 3230 | string-width "^1.0.2" 3231 | which-module "^1.0.0" 3232 | y18n "^3.2.1" 3233 | yargs-parser "^5.0.0" 3234 | 3235 | yargs@~3.10.0: 3236 | version "3.10.0" 3237 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3238 | dependencies: 3239 | camelcase "^1.0.2" 3240 | cliui "^2.1.0" 3241 | decamelize "^1.0.0" 3242 | window-size "0.1.0" 3243 | --------------------------------------------------------------------------------