├── example ├── index.jade └── index.js ├── .gitignore ├── test ├── memory.js └── server.js ├── newrelic.js ├── LICENSE ├── package.json ├── README.md ├── index.js └── yarn.lock /example/index.jade: -------------------------------------------------------------------------------- 1 | html 2 | head 3 | != newRelicHead 4 | body 5 | h1 Hi -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | logs 2 | *.log 3 | pids 4 | *.pid 5 | *.seed 6 | lib-cov 7 | coverage 8 | .grunt 9 | .lock-wscript 10 | build/Release 11 | node_modules 12 | .env -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- 1 | const newrelic = require('../') 2 | const app = module.exports = require('express')() 3 | 4 | app.use(newrelic) 5 | app.set('views', __dirname) 6 | app.set('view engine', 'jade') 7 | app.get('/', function (req, res, next) { 8 | res.render('index') 9 | }) 10 | 11 | app.listen(4000, () => { console.log('Listening on 4000') }) 12 | -------------------------------------------------------------------------------- /test/memory.js: -------------------------------------------------------------------------------- 1 | process.env.WEB_MEMORY = '1' 2 | process.env.NEW_RELIC_MEMORY_CHECK_INTERVAL = '400' 3 | process.env.NEW_RELIC_LICENSE_KEY = 'foo' 4 | const sinon = require('sinon') 5 | const test = require('blue-tape') 6 | require('../') 7 | const spy = sinon.spy(console, 'error') 8 | const sleep = ms => new Promise(resolve => setTimeout(resolve, ms)) 9 | 10 | test("crashes and reports when over the enviornment's memory limit", async t => { 11 | await sleep(500) 12 | const errorMsg = spy.args[0][1] 13 | t.equal(Boolean(errorMsg.match('Memory limit exceeded')), true) 14 | }) 15 | -------------------------------------------------------------------------------- /newrelic.js: -------------------------------------------------------------------------------- 1 | /** 2 | * New Relic agent configuration. 3 | * 4 | * See lib/config.defaults.js in the agent distribution for a more complete 5 | * description of configuration variables and their potential values. 6 | */ 7 | exports.config = { 8 | /** 9 | * Array of application names. 10 | */ 11 | app_name: [process.env.APP_NAME], 12 | /** 13 | * Your New Relic license key. 14 | */ 15 | license_key: process.env.NEW_RELIC_LICENSE_KEY, 16 | ignore_status_codes: Array.apply(null, Array(499)).map(function (n, i) { 17 | return i 18 | }), 19 | logging: { 20 | /** 21 | * Level at which to log. 'trace' is most useful to New Relic when diagnosing 22 | * issues with the agent, 'info' and higher will impose the least overhead on 23 | * production applications. 24 | */ 25 | level: 'info' 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Artsy 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "artsy-newrelic", 3 | "version": "1.3.0", 4 | "description": "Plug-and-play NewRelic module wrapper configured for Artsy Node apps.", 5 | "main": "index.js", 6 | "dependencies": { 7 | "connect-timeout": "^1.8.0", 8 | "newrelic": "^2.2.1" 9 | }, 10 | "devDependencies": { 11 | "blue-tape": "^1.0.0", 12 | "express": "^4.13.3", 13 | "jade": "^1.11.0", 14 | "prettier-standard": "^6.0.0", 15 | "rewire": "^2.5.2", 16 | "sinon": "^3.3.0", 17 | "standard": "^8.6.0", 18 | "superagent": "^3.5.0", 19 | "tap-nyan": "^1.1.0" 20 | }, 21 | "scripts": { 22 | "test": "yarn test-server && yarn test-memory", 23 | "test-memory": "node test/memory.js | tnyan", 24 | "test-server": "node test/server.js | tnyan", 25 | "example": "foreman run node example/index.js" 26 | }, 27 | "repository": { 28 | "type": "git", 29 | "url": "git+https://github.com/artsy/artsy-newrelic.git" 30 | }, 31 | "author": "Craig Spaeth", 32 | "license": "MIT", 33 | "bugs": { 34 | "url": "https://github.com/artsy/artsy-newrelic/issues" 35 | }, 36 | "homepage": "https://github.com/artsy/artsy-newrelic#readme" 37 | } -------------------------------------------------------------------------------- /test/server.js: -------------------------------------------------------------------------------- 1 | process.env.NEW_RELIC_NO_MEMORY_LIMIT = 'true' 2 | process.env.NEW_RELIC_LICENSE_KEY = 'foo' 3 | const test = require('blue-tape') 4 | const app = require('express')() 5 | const newrelic = require('../') 6 | const request = require('superagent') 7 | 8 | let server 9 | app.use(newrelic) 10 | app.set('views', __dirname) 11 | app.set('view engine', 'jade') 12 | app.get('/locals', (req, res, next) => { 13 | res.send(typeof res.locals.newRelicHead) 14 | }) 15 | app.get('/timeout', (req, res, next) => { 16 | setTimeout(() => res.send('done'), 1000) 17 | }) 18 | 19 | test('before', () => 20 | new Promise(resolve => { 21 | server = app.listen(5000, () => resolve()) 22 | })) 23 | 24 | test('adds new relic to locals', async t => { 25 | const res = await request.get('http://localhost:5000/locals') 26 | t.equal(res.text, 'string') 27 | }) 28 | 29 | test('it times out requests', async t => { 30 | process.env.NEW_RELIC_TIMEOUT = '500ms' 31 | try { 32 | await request.get('http://localhost:5000/timeout') 33 | } catch (err) { 34 | t.equal(Boolean(err.response.text.match('timeout')), true) 35 | } 36 | }) 37 | 38 | test('after', async () => server.close()) 39 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # artsy-newrelic 2 | 3 | Plug-and-play NewRelic module wrapper configured for Artsy Node apps. Features include: 4 | 5 | * Middleware to inject browser monitoring 6 | * Report uncaught exceptions 7 | * No-op when the `NEW_RELIC_LICENSE_KEY` environment variable is omitted 8 | * Timeout after 30 seconds and report the timeout 9 | 10 | ## Example 11 | 12 | Require above your app instance, and mount the middleware. 13 | 14 | ````javascript 15 | var newrelic = require('artsy-newrelic'); 16 | var app = express(); 17 | app.use(newrelic); 18 | ```` 19 | 20 | Add browser-side detection 21 | 22 | ````jade 23 | head 24 | != newRelicHead 25 | ```` 26 | 27 | Use env vars to configure (values are defaults) 28 | 29 | ```` 30 | NEW_RELIC_LICENSE_KEY= 31 | NEW_RELIC_APP_NAME=process.env.APP_NAME 32 | NEW_RELIC_ERROR_COLLECTOR_IGNORE_ERROR_CODES=400,401,402,[...],499 33 | ```` 34 | 35 | Leave `NEW_RELIC_LICENSE_KEY` out in dev/test environments and NewRelic won't bother you. 36 | 37 | ## Testing 38 | 39 | Create a .env file in the root of this project with `NEW_RELIC_LICENSE_KEY` and `APP_NAME` set. Run `npm run example` and check your NewRelic panel to see it integrate. 40 | 41 | ## License 42 | MIT 43 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | if (!process.env.NEW_RELIC_LICENSE_KEY) { 2 | module.exports = (req, res, next) => next() 3 | } else { 4 | process.env.NEW_RELIC_HOME = __dirname 5 | const newrelic = require('newrelic') 6 | const timeout = require('connect-timeout') 7 | 8 | const reportAndCrash = err => { 9 | console.error(err.name, err.stack) 10 | newrelic.noticeError(err, { crash: true }) 11 | newrelic.shutdown({ collectPendingData: true }, err => { 12 | if (err) console.log('Failed to send to NewRelic.', err) 13 | else console.log('Sent to NewRelic, exiting process.') 14 | process.exit(1) 15 | }) 16 | } 17 | 18 | // Middleware to inject NewRelic browser monitoring and timeouts 19 | module.exports = (req, res, next) => { 20 | res.locals.newRelicHead = newrelic.getBrowserTimingHeader() 21 | timeout(process.env.NEW_RELIC_TIMEOUT || '29s')(req, res, next) 22 | } 23 | 24 | // Report and crash when going over memory limit of the environment 25 | if (process.env.WEB_MEMORY && !process.env.NEW_RELIC_NO_MEMORY_LIMIT) { 26 | const interval = setInterval(() => { 27 | const MBUsed = process.memoryUsage().heapUsed / 1000000 28 | if (MBUsed > Number(process.env.WEB_MEMORY)) { 29 | reportAndCrash(new Error('Memory limit exceeded')) 30 | clearInterval(interval) 31 | } 32 | }, Number(process.env.NEW_RELIC_MEMORY_CHECK_INTERVAL) || 60000) 33 | } 34 | 35 | // Report uncaught exceptions with a custom error 36 | const UncaughtError = function UncaughtError (err) { 37 | this.name = 'UncaughtError' 38 | this.message = err.message || err.toString() 39 | this.stack = err.stack 40 | } 41 | UncaughtError.prototype = Error.prototype 42 | process.on('uncaughtException', e => reportAndCrash(new UncaughtError(e))) 43 | } 44 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@newrelic/native-metrics@^2.1.0": 6 | version "2.1.1" 7 | resolved "https://registry.yarnpkg.com/@newrelic/native-metrics/-/native-metrics-2.1.1.tgz#2a7abd87373e46b3c957a08124a72c0c41968dc8" 8 | dependencies: 9 | nan "^2.4.0" 10 | 11 | abbrev@1: 12 | version "1.1.0" 13 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 14 | 15 | accepts@~1.3.3: 16 | version "1.3.3" 17 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.3.tgz#c3ca7434938648c3e0d9c1e328dd68b622c284ca" 18 | dependencies: 19 | mime-types "~2.1.11" 20 | negotiator "0.6.1" 21 | 22 | acorn-globals@^1.0.3: 23 | version "1.0.9" 24 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-1.0.9.tgz#55bb5e98691507b74579d0513413217c380c54cf" 25 | dependencies: 26 | acorn "^2.1.0" 27 | 28 | acorn-jsx@^3.0.0: 29 | version "3.0.1" 30 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 31 | dependencies: 32 | acorn "^3.0.4" 33 | 34 | acorn@4.0.4: 35 | version "4.0.4" 36 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.4.tgz#17a8d6a7a6c4ef538b814ec9abac2779293bf30a" 37 | 38 | acorn@^1.0.1: 39 | version "1.2.2" 40 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-1.2.2.tgz#c8ce27de0acc76d896d2b1fad3df588d9e82f014" 41 | 42 | acorn@^2.1.0: 43 | version "2.7.0" 44 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-2.7.0.tgz#ab6e7d9d886aaca8b085bc3312b79a198433f0e7" 45 | 46 | acorn@^3.0.4: 47 | version "3.3.0" 48 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 49 | 50 | acorn@^5.1.1: 51 | version "5.1.2" 52 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.1.2.tgz#911cb53e036807cf0fa778dc5d370fbd864246d7" 53 | 54 | agent-base@~1.0.1: 55 | version "1.0.2" 56 | resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-1.0.2.tgz#6890d3fb217004b62b70f8928e0fae5f8952a706" 57 | 58 | ajv-keywords@^1.0.0: 59 | version "1.5.1" 60 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 61 | 62 | ajv@^4.7.0: 63 | version "4.11.3" 64 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.3.tgz#ce30bdb90d1254f762c75af915fb3a63e7183d22" 65 | dependencies: 66 | co "^4.6.0" 67 | json-stable-stringify "^1.0.1" 68 | 69 | ajv@^5.2.0: 70 | version "5.2.2" 71 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.2.2.tgz#47c68d69e86f5d953103b0074a9430dc63da5e39" 72 | dependencies: 73 | co "^4.6.0" 74 | fast-deep-equal "^1.0.0" 75 | json-schema-traverse "^0.3.0" 76 | json-stable-stringify "^1.0.1" 77 | 78 | align-text@^0.1.1, align-text@^0.1.3: 79 | version "0.1.4" 80 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 81 | dependencies: 82 | kind-of "^3.0.2" 83 | longest "^1.0.1" 84 | repeat-string "^1.5.2" 85 | 86 | amdefine@>=0.0.4: 87 | version "1.0.1" 88 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 89 | 90 | ansi-escapes@^1.1.0: 91 | version "1.4.0" 92 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 93 | 94 | ansi-escapes@^3.0.0: 95 | version "3.0.0" 96 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92" 97 | 98 | ansi-regex@^2.0.0, ansi-regex@^2.1.1: 99 | version "2.1.1" 100 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 101 | 102 | ansi-regex@^3.0.0: 103 | version "3.0.0" 104 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 105 | 106 | ansi-styles@^2.2.1: 107 | version "2.2.1" 108 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 109 | 110 | ansi-styles@^3.0.0, ansi-styles@^3.1.0: 111 | version "3.2.0" 112 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 113 | dependencies: 114 | color-convert "^1.9.0" 115 | 116 | argparse@^1.0.7: 117 | version "1.0.9" 118 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 119 | dependencies: 120 | sprintf-js "~1.0.2" 121 | 122 | array-find-index@^1.0.1: 123 | version "1.0.2" 124 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 125 | 126 | array-flatten@1.1.1: 127 | version "1.1.1" 128 | resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" 129 | 130 | array-union@^1.0.1: 131 | version "1.0.2" 132 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 133 | dependencies: 134 | array-uniq "^1.0.1" 135 | 136 | array-uniq@^1.0.1: 137 | version "1.0.3" 138 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 139 | 140 | arrify@^1.0.0: 141 | version "1.0.1" 142 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 143 | 144 | asap@~1.0.0: 145 | version "1.0.0" 146 | resolved "https://registry.yarnpkg.com/asap/-/asap-1.0.0.tgz#b2a45da5fdfa20b0496fc3768cc27c12fa916a7d" 147 | 148 | async@~1.0.0: 149 | version "1.0.0" 150 | resolved "https://registry.yarnpkg.com/async/-/async-1.0.0.tgz#f8fc04ca3a13784ade9e1641af98578cfbd647a9" 151 | 152 | asynckit@^0.4.0: 153 | version "0.4.0" 154 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 155 | 156 | babel-code-frame@7.0.0-beta.0: 157 | version "7.0.0-beta.0" 158 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-7.0.0-beta.0.tgz#418a7b5f3f7dc9a4670e61b1158b4c5661bec98d" 159 | dependencies: 160 | chalk "^2.0.0" 161 | esutils "^2.0.2" 162 | js-tokens "^3.0.0" 163 | 164 | babel-code-frame@^6.16.0: 165 | version "6.22.0" 166 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 167 | dependencies: 168 | chalk "^1.1.0" 169 | esutils "^2.0.2" 170 | js-tokens "^3.0.0" 171 | 172 | babel-code-frame@^6.22.0: 173 | version "6.26.0" 174 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 175 | dependencies: 176 | chalk "^1.1.3" 177 | esutils "^2.0.2" 178 | js-tokens "^3.0.2" 179 | 180 | babel-eslint@>=7.2.3: 181 | version "8.0.0" 182 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-8.0.0.tgz#ce06f385bdfb5b6d7e603f06222f891abd14c240" 183 | dependencies: 184 | babel-code-frame "7.0.0-beta.0" 185 | babel-traverse "7.0.0-beta.0" 186 | babel-types "7.0.0-beta.0" 187 | babylon "7.0.0-beta.22" 188 | 189 | babel-helper-function-name@7.0.0-beta.0: 190 | version "7.0.0-beta.0" 191 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-7.0.0-beta.0.tgz#d1b6779b647e5c5c31ebeb05e13b998e4d352d56" 192 | dependencies: 193 | babel-helper-get-function-arity "7.0.0-beta.0" 194 | babel-template "7.0.0-beta.0" 195 | babel-traverse "7.0.0-beta.0" 196 | babel-types "7.0.0-beta.0" 197 | 198 | babel-helper-get-function-arity@7.0.0-beta.0: 199 | version "7.0.0-beta.0" 200 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-7.0.0-beta.0.tgz#9d1ab7213bb5efe1ef1638a8ea1489969b5a8b6e" 201 | dependencies: 202 | babel-types "7.0.0-beta.0" 203 | 204 | babel-messages@7.0.0-beta.0: 205 | version "7.0.0-beta.0" 206 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-7.0.0-beta.0.tgz#6df01296e49fc8fbd0637394326a167f36da817b" 207 | 208 | babel-runtime@^6.18.0, babel-runtime@^6.23.0: 209 | version "6.26.0" 210 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 211 | dependencies: 212 | core-js "^2.4.0" 213 | regenerator-runtime "^0.11.0" 214 | 215 | babel-template@7.0.0-beta.0: 216 | version "7.0.0-beta.0" 217 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-7.0.0-beta.0.tgz#85083cf9e4395d5e48bf5154d7a8d6991cafecfb" 218 | dependencies: 219 | babel-traverse "7.0.0-beta.0" 220 | babel-types "7.0.0-beta.0" 221 | babylon "7.0.0-beta.22" 222 | lodash "^4.2.0" 223 | 224 | babel-traverse@7.0.0-beta.0: 225 | version "7.0.0-beta.0" 226 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-7.0.0-beta.0.tgz#da14be9b762f62a2f060db464eaafdd8cd072a41" 227 | dependencies: 228 | babel-code-frame "7.0.0-beta.0" 229 | babel-helper-function-name "7.0.0-beta.0" 230 | babel-messages "7.0.0-beta.0" 231 | babel-types "7.0.0-beta.0" 232 | babylon "7.0.0-beta.22" 233 | debug "^3.0.1" 234 | globals "^10.0.0" 235 | invariant "^2.2.0" 236 | lodash "^4.2.0" 237 | 238 | babel-types@7.0.0-beta.0: 239 | version "7.0.0-beta.0" 240 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-7.0.0-beta.0.tgz#eb8b6e556470e6dcc4aef982d79ad229469b5169" 241 | dependencies: 242 | esutils "^2.0.2" 243 | lodash "^4.2.0" 244 | to-fast-properties "^2.0.0" 245 | 246 | babylon@7.0.0-beta.22: 247 | version "7.0.0-beta.22" 248 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-7.0.0-beta.22.tgz#74f0ad82ed7c7c3cfeab74cf684f815104161b65" 249 | 250 | balanced-match@^0.4.1: 251 | version "0.4.2" 252 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 253 | 254 | balanced-match@^1.0.0: 255 | version "1.0.0" 256 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 257 | 258 | blue-tape@^1.0.0: 259 | version "1.0.0" 260 | resolved "https://registry.yarnpkg.com/blue-tape/-/blue-tape-1.0.0.tgz#7581d04c07395c95c426b2ed6d1edb454a76b92b" 261 | dependencies: 262 | tape ">=2.0.0 <5.0.0" 263 | 264 | brace-expansion@^1.0.0: 265 | version "1.1.6" 266 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 267 | dependencies: 268 | balanced-match "^0.4.1" 269 | concat-map "0.0.1" 270 | 271 | brace-expansion@^1.1.7: 272 | version "1.1.8" 273 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 274 | dependencies: 275 | balanced-match "^1.0.0" 276 | concat-map "0.0.1" 277 | 278 | buffer-shims@^1.0.0: 279 | version "1.0.0" 280 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 281 | 282 | build@^0.1.4: 283 | version "0.1.4" 284 | resolved "https://registry.yarnpkg.com/build/-/build-0.1.4.tgz#707fe026ffceddcacbfdcdf356eafda64f151046" 285 | dependencies: 286 | cssmin "0.3.x" 287 | jsmin "1.x" 288 | jxLoader "*" 289 | moo-server "*" 290 | promised-io "*" 291 | timespan "2.x" 292 | uglify-js "1.x" 293 | walker "1.x" 294 | winston "*" 295 | wrench "1.3.x" 296 | 297 | builtin-modules@^1.0.0: 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 | center-align@^0.1.1: 327 | version "0.1.3" 328 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 329 | dependencies: 330 | align-text "^0.1.3" 331 | lazy-cache "^1.0.3" 332 | 333 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 334 | version "1.1.3" 335 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 336 | dependencies: 337 | ansi-styles "^2.2.1" 338 | escape-string-regexp "^1.0.2" 339 | has-ansi "^2.0.0" 340 | strip-ansi "^3.0.0" 341 | supports-color "^2.0.0" 342 | 343 | chalk@^2.0.0, chalk@^2.1.0: 344 | version "2.1.0" 345 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.1.0.tgz#ac5becf14fa21b99c6c92ca7a7d7cfd5b17e743e" 346 | dependencies: 347 | ansi-styles "^3.1.0" 348 | escape-string-regexp "^1.0.5" 349 | supports-color "^4.0.0" 350 | 351 | character-parser@1.2.1: 352 | version "1.2.1" 353 | resolved "https://registry.yarnpkg.com/character-parser/-/character-parser-1.2.1.tgz#c0dde4ab182713b919b970959a123ecc1a30fcd6" 354 | 355 | circular-json@^0.3.1: 356 | version "0.3.1" 357 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 358 | 359 | clean-css@^3.1.9: 360 | version "3.4.25" 361 | resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-3.4.25.tgz#9e9a52d5c1e6bc5123e1b2783fa65fe958946ede" 362 | dependencies: 363 | commander "2.8.x" 364 | source-map "0.4.x" 365 | 366 | cli-cursor@^1.0.1: 367 | version "1.0.2" 368 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 369 | dependencies: 370 | restore-cursor "^1.0.1" 371 | 372 | cli-cursor@^2.1.0: 373 | version "2.1.0" 374 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 375 | dependencies: 376 | restore-cursor "^2.0.0" 377 | 378 | cli-width@^2.0.0: 379 | version "2.1.0" 380 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 381 | 382 | cliui@^2.1.0: 383 | version "2.1.0" 384 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 385 | dependencies: 386 | center-align "^0.1.1" 387 | right-align "^0.1.1" 388 | wordwrap "0.0.2" 389 | 390 | co@^4.6.0: 391 | version "4.6.0" 392 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 393 | 394 | code-point-at@^1.0.0: 395 | version "1.1.0" 396 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 397 | 398 | color-convert@^1.9.0: 399 | version "1.9.0" 400 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 401 | dependencies: 402 | color-name "^1.1.1" 403 | 404 | color-name@^1.1.1: 405 | version "1.1.3" 406 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 407 | 408 | colors@1.0.x: 409 | version "1.0.3" 410 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.0.3.tgz#0433f44d809680fdeb60ed260f1b0c262e82a40b" 411 | 412 | combined-stream@^1.0.5: 413 | version "1.0.5" 414 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 415 | dependencies: 416 | delayed-stream "~1.0.0" 417 | 418 | commander@2.8.x: 419 | version "2.8.1" 420 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.8.1.tgz#06be367febfda0c330aa1e2a072d3dc9762425d4" 421 | dependencies: 422 | graceful-readlink ">= 1.0.0" 423 | 424 | commander@~2.6.0: 425 | version "2.6.0" 426 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.6.0.tgz#9df7e52fb2a0cb0fb89058ee80c3104225f37e1d" 427 | 428 | common-tags@^1.4.0: 429 | version "1.4.0" 430 | resolved "https://registry.yarnpkg.com/common-tags/-/common-tags-1.4.0.tgz#1187be4f3d4cf0c0427d43f74eef1f73501614c0" 431 | dependencies: 432 | babel-runtime "^6.18.0" 433 | 434 | component-emitter@^1.2.0: 435 | version "1.2.1" 436 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 437 | 438 | concat-map@0.0.1: 439 | version "0.0.1" 440 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 441 | 442 | concat-stream@^1.4.6, concat-stream@^1.5.0, concat-stream@^1.5.2, concat-stream@^1.6.0: 443 | version "1.6.0" 444 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 445 | dependencies: 446 | inherits "^2.0.3" 447 | readable-stream "^2.2.2" 448 | typedarray "^0.0.6" 449 | 450 | connect-timeout@^1.8.0: 451 | version "1.8.0" 452 | resolved "https://registry.yarnpkg.com/connect-timeout/-/connect-timeout-1.8.0.tgz#4b74c58ad0303e069e4f417af388a058cfa3b839" 453 | dependencies: 454 | http-errors "~1.5.1" 455 | ms "0.7.2" 456 | on-finished "~2.3.0" 457 | on-headers "~1.0.1" 458 | 459 | constantinople@~3.0.1: 460 | version "3.0.2" 461 | resolved "https://registry.yarnpkg.com/constantinople/-/constantinople-3.0.2.tgz#4b945d9937907bcd98ee575122c3817516544141" 462 | dependencies: 463 | acorn "^2.1.0" 464 | 465 | content-disposition@0.5.2: 466 | version "0.5.2" 467 | resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4" 468 | 469 | content-type@~1.0.2: 470 | version "1.0.2" 471 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.2.tgz#b7d113aee7a8dd27bd21133c4dc2529df1721eed" 472 | 473 | cookie-signature@1.0.6: 474 | version "1.0.6" 475 | resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" 476 | 477 | cookie@0.3.1: 478 | version "0.3.1" 479 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" 480 | 481 | cookiejar@^2.0.6: 482 | version "2.1.0" 483 | resolved "https://registry.yarnpkg.com/cookiejar/-/cookiejar-2.1.0.tgz#86549689539b6d0e269b6637a304be508194d898" 484 | 485 | core-js@^2.4.0: 486 | version "2.5.1" 487 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.1.tgz#ae6874dc66937789b80754ff5428df66819ca50b" 488 | 489 | core-util-is@~1.0.0: 490 | version "1.0.2" 491 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 492 | 493 | cross-spawn@^5.1.0: 494 | version "5.1.0" 495 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 496 | dependencies: 497 | lru-cache "^4.0.1" 498 | shebang-command "^1.2.0" 499 | which "^1.2.9" 500 | 501 | css-parse@1.0.4: 502 | version "1.0.4" 503 | resolved "https://registry.yarnpkg.com/css-parse/-/css-parse-1.0.4.tgz#38b0503fbf9da9f54e9c1dbda60e145c77117bdd" 504 | 505 | css-stringify@1.0.5: 506 | version "1.0.5" 507 | resolved "https://registry.yarnpkg.com/css-stringify/-/css-stringify-1.0.5.tgz#b0d042946db2953bb9d292900a6cb5f6d0122031" 508 | 509 | css@~1.0.8: 510 | version "1.0.8" 511 | resolved "https://registry.yarnpkg.com/css/-/css-1.0.8.tgz#9386811ca82bccc9ee7fb5a732b1e2a317c8a3e7" 512 | dependencies: 513 | css-parse "1.0.4" 514 | css-stringify "1.0.5" 515 | 516 | cssmin@0.3.x: 517 | version "0.3.2" 518 | resolved "https://registry.yarnpkg.com/cssmin/-/cssmin-0.3.2.tgz#ddce4c547b510ae0d594a8f1fbf8aaf8e2c5c00d" 519 | 520 | currently-unhandled@^0.4.1: 521 | version "0.4.1" 522 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 523 | dependencies: 524 | array-find-index "^1.0.1" 525 | 526 | cycle@1.0.x: 527 | version "1.0.3" 528 | resolved "https://registry.yarnpkg.com/cycle/-/cycle-1.0.3.tgz#21e80b2be8580f98b468f379430662b046c34ad2" 529 | 530 | d@^0.1.1, d@~0.1.1: 531 | version "0.1.1" 532 | resolved "https://registry.yarnpkg.com/d/-/d-0.1.1.tgz#da184c535d18d8ee7ba2aa229b914009fae11309" 533 | dependencies: 534 | es5-ext "~0.10.2" 535 | 536 | debug-log@^1.0.0: 537 | version "1.0.1" 538 | resolved "https://registry.yarnpkg.com/debug-log/-/debug-log-1.0.1.tgz#2307632d4c04382b8df8a32f70b895046d52745f" 539 | 540 | debug@2, debug@^2.1.1, debug@^2.2.0, debug@~2.2.0: 541 | version "2.2.0" 542 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 543 | dependencies: 544 | ms "0.7.1" 545 | 546 | debug@^3.0.1: 547 | version "3.0.1" 548 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.0.1.tgz#0564c612b521dc92d9f2988f0549e34f9c98db64" 549 | dependencies: 550 | ms "2.0.0" 551 | 552 | decamelize@^1.0.0, decamelize@^1.1.2: 553 | version "1.2.0" 554 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 555 | 556 | deep-equal@~1.0.1: 557 | version "1.0.1" 558 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" 559 | 560 | deep-is@~0.1.3: 561 | version "0.1.3" 562 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 563 | 564 | define-properties@^1.1.2: 565 | version "1.1.2" 566 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 567 | dependencies: 568 | foreach "^2.0.5" 569 | object-keys "^1.0.8" 570 | 571 | defined@~1.0.0: 572 | version "1.0.0" 573 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 574 | 575 | deglob@^2.0.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 | depd@~1.1.0: 603 | version "1.1.0" 604 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.0.tgz#e1bd82c6aab6ced965b97b88b17ed3e528ca18c3" 605 | 606 | destroy@~1.0.4: 607 | version "1.0.4" 608 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 609 | 610 | diff@^3.1.0: 611 | version "3.3.1" 612 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.3.1.tgz#aa8567a6eed03c531fc89d3f711cd0e5259dec75" 613 | 614 | dlv@^1.1.0: 615 | version "1.1.0" 616 | resolved "https://registry.yarnpkg.com/dlv/-/dlv-1.1.0.tgz#fee1a7c43f63be75f3f679e85262da5f102764a7" 617 | 618 | doctrine@^1.2.2: 619 | version "1.5.0" 620 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 621 | dependencies: 622 | esutils "^2.0.2" 623 | isarray "^1.0.0" 624 | 625 | doctrine@^2.0.0: 626 | version "2.0.0" 627 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" 628 | dependencies: 629 | esutils "^2.0.2" 630 | isarray "^1.0.0" 631 | 632 | duplexer2@^0.1.4: 633 | version "0.1.4" 634 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" 635 | dependencies: 636 | readable-stream "^2.0.2" 637 | 638 | ee-first@1.1.1: 639 | version "1.1.1" 640 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 641 | 642 | encodeurl@~1.0.1: 643 | version "1.0.1" 644 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20" 645 | 646 | error-ex@^1.2.0: 647 | version "1.3.1" 648 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 649 | dependencies: 650 | is-arrayish "^0.2.1" 651 | 652 | es-abstract@^1.5.0: 653 | version "1.7.0" 654 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.7.0.tgz#dfade774e01bfcd97f96180298c449c8623fb94c" 655 | dependencies: 656 | es-to-primitive "^1.1.1" 657 | function-bind "^1.1.0" 658 | is-callable "^1.1.3" 659 | is-regex "^1.0.3" 660 | 661 | es-to-primitive@^1.1.1: 662 | version "1.1.1" 663 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 664 | dependencies: 665 | is-callable "^1.1.1" 666 | is-date-object "^1.0.1" 667 | is-symbol "^1.0.1" 668 | 669 | es5-ext@^0.10.7, es5-ext@^0.10.8, es5-ext@~0.10.11, es5-ext@~0.10.2, es5-ext@~0.10.7: 670 | version "0.10.12" 671 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.12.tgz#aa84641d4db76b62abba5e45fd805ecbab140047" 672 | dependencies: 673 | es6-iterator "2" 674 | es6-symbol "~3.1" 675 | 676 | es6-iterator@2: 677 | version "2.0.0" 678 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.0.tgz#bd968567d61635e33c0b80727613c9cb4b096bac" 679 | dependencies: 680 | d "^0.1.1" 681 | es5-ext "^0.10.7" 682 | es6-symbol "3" 683 | 684 | es6-map@^0.1.3: 685 | version "0.1.4" 686 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.4.tgz#a34b147be224773a4d7da8072794cefa3632b897" 687 | dependencies: 688 | d "~0.1.1" 689 | es5-ext "~0.10.11" 690 | es6-iterator "2" 691 | es6-set "~0.1.3" 692 | es6-symbol "~3.1.0" 693 | event-emitter "~0.3.4" 694 | 695 | es6-set@~0.1.3: 696 | version "0.1.4" 697 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.4.tgz#9516b6761c2964b92ff479456233a247dc707ce8" 698 | dependencies: 699 | d "~0.1.1" 700 | es5-ext "~0.10.11" 701 | es6-iterator "2" 702 | es6-symbol "3" 703 | event-emitter "~0.3.4" 704 | 705 | es6-symbol@3, es6-symbol@~3.1, es6-symbol@~3.1.0: 706 | version "3.1.0" 707 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.0.tgz#94481c655e7a7cad82eba832d97d5433496d7ffa" 708 | dependencies: 709 | d "~0.1.1" 710 | es5-ext "~0.10.11" 711 | 712 | es6-weak-map@^2.0.1: 713 | version "2.0.1" 714 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.1.tgz#0d2bbd8827eb5fb4ba8f97fbfea50d43db21ea81" 715 | dependencies: 716 | d "^0.1.1" 717 | es5-ext "^0.10.8" 718 | es6-iterator "2" 719 | es6-symbol "3" 720 | 721 | escape-html@~1.0.3: 722 | version "1.0.3" 723 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 724 | 725 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 726 | version "1.0.5" 727 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 728 | 729 | escope@^3.6.0: 730 | version "3.6.0" 731 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 732 | dependencies: 733 | es6-map "^0.1.3" 734 | es6-weak-map "^2.0.1" 735 | esrecurse "^4.1.0" 736 | estraverse "^4.1.1" 737 | 738 | eslint-config-standard-jsx@3.2.0: 739 | version "3.2.0" 740 | resolved "https://registry.yarnpkg.com/eslint-config-standard-jsx/-/eslint-config-standard-jsx-3.2.0.tgz#c240e26ed919a11a42aa4de8059472b38268d620" 741 | 742 | eslint-config-standard@6.2.1: 743 | version "6.2.1" 744 | resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-6.2.1.tgz#d3a68aafc7191639e7ee441e7348739026354292" 745 | 746 | eslint-plugin-promise@~3.4.0: 747 | version "3.4.2" 748 | resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-3.4.2.tgz#1be2793eafe2d18b5b123b8136c269f804fe7122" 749 | 750 | eslint-plugin-react@~6.7.1: 751 | version "6.7.1" 752 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-6.7.1.tgz#1af96aea545856825157d97c1b50d5a8fb64a5a7" 753 | dependencies: 754 | doctrine "^1.2.2" 755 | jsx-ast-utils "^1.3.3" 756 | 757 | eslint-plugin-standard@~2.0.1: 758 | version "2.0.1" 759 | resolved "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-2.0.1.tgz#3589699ff9c917f2c25f76a916687f641c369ff3" 760 | 761 | eslint-scope@^3.7.1: 762 | version "3.7.1" 763 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" 764 | dependencies: 765 | esrecurse "^4.1.0" 766 | estraverse "^4.1.1" 767 | 768 | eslint@^3.19.0: 769 | version "3.19.0" 770 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.19.0.tgz#c8fc6201c7f40dd08941b87c085767386a679acc" 771 | dependencies: 772 | babel-code-frame "^6.16.0" 773 | chalk "^1.1.3" 774 | concat-stream "^1.5.2" 775 | debug "^2.1.1" 776 | doctrine "^2.0.0" 777 | escope "^3.6.0" 778 | espree "^3.4.0" 779 | esquery "^1.0.0" 780 | estraverse "^4.2.0" 781 | esutils "^2.0.2" 782 | file-entry-cache "^2.0.0" 783 | glob "^7.0.3" 784 | globals "^9.14.0" 785 | ignore "^3.2.0" 786 | imurmurhash "^0.1.4" 787 | inquirer "^0.12.0" 788 | is-my-json-valid "^2.10.0" 789 | is-resolvable "^1.0.0" 790 | js-yaml "^3.5.1" 791 | json-stable-stringify "^1.0.0" 792 | levn "^0.3.0" 793 | lodash "^4.0.0" 794 | mkdirp "^0.5.0" 795 | natural-compare "^1.4.0" 796 | optionator "^0.8.2" 797 | path-is-inside "^1.0.1" 798 | pluralize "^1.2.1" 799 | progress "^1.1.8" 800 | require-uncached "^1.0.2" 801 | shelljs "^0.7.5" 802 | strip-bom "^3.0.0" 803 | strip-json-comments "~2.0.1" 804 | table "^3.7.8" 805 | text-table "~0.2.0" 806 | user-home "^2.0.0" 807 | 808 | eslint@^4.5.0: 809 | version "4.7.2" 810 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.7.2.tgz#ff6f5f5193848a27ee9b627be3e73fb9cb5e662e" 811 | dependencies: 812 | ajv "^5.2.0" 813 | babel-code-frame "^6.22.0" 814 | chalk "^2.1.0" 815 | concat-stream "^1.6.0" 816 | cross-spawn "^5.1.0" 817 | debug "^3.0.1" 818 | doctrine "^2.0.0" 819 | eslint-scope "^3.7.1" 820 | espree "^3.5.1" 821 | esquery "^1.0.0" 822 | estraverse "^4.2.0" 823 | esutils "^2.0.2" 824 | file-entry-cache "^2.0.0" 825 | functional-red-black-tree "^1.0.1" 826 | glob "^7.1.2" 827 | globals "^9.17.0" 828 | ignore "^3.3.3" 829 | imurmurhash "^0.1.4" 830 | inquirer "^3.0.6" 831 | is-resolvable "^1.0.0" 832 | js-yaml "^3.9.1" 833 | json-stable-stringify "^1.0.1" 834 | levn "^0.3.0" 835 | lodash "^4.17.4" 836 | minimatch "^3.0.2" 837 | mkdirp "^0.5.1" 838 | natural-compare "^1.4.0" 839 | optionator "^0.8.2" 840 | path-is-inside "^1.0.2" 841 | pluralize "^7.0.0" 842 | progress "^2.0.0" 843 | require-uncached "^1.0.3" 844 | semver "^5.3.0" 845 | strip-ansi "^4.0.0" 846 | strip-json-comments "~2.0.1" 847 | table "^4.0.1" 848 | text-table "~0.2.0" 849 | 850 | eslint@~3.10.2: 851 | version "3.10.2" 852 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.10.2.tgz#c9a10e8bf6e9d65651204778c503341f1eac3ce7" 853 | dependencies: 854 | babel-code-frame "^6.16.0" 855 | chalk "^1.1.3" 856 | concat-stream "^1.4.6" 857 | debug "^2.1.1" 858 | doctrine "^1.2.2" 859 | escope "^3.6.0" 860 | espree "^3.3.1" 861 | estraverse "^4.2.0" 862 | esutils "^2.0.2" 863 | file-entry-cache "^2.0.0" 864 | glob "^7.0.3" 865 | globals "^9.2.0" 866 | ignore "^3.2.0" 867 | imurmurhash "^0.1.4" 868 | inquirer "^0.12.0" 869 | is-my-json-valid "^2.10.0" 870 | is-resolvable "^1.0.0" 871 | js-yaml "^3.5.1" 872 | json-stable-stringify "^1.0.0" 873 | levn "^0.3.0" 874 | lodash "^4.0.0" 875 | mkdirp "^0.5.0" 876 | natural-compare "^1.4.0" 877 | optionator "^0.8.2" 878 | path-is-inside "^1.0.1" 879 | pluralize "^1.2.1" 880 | progress "^1.1.8" 881 | require-uncached "^1.0.2" 882 | shelljs "^0.7.5" 883 | strip-bom "^3.0.0" 884 | strip-json-comments "~1.0.1" 885 | table "^3.7.8" 886 | text-table "~0.2.0" 887 | user-home "^2.0.0" 888 | 889 | espree@^3.3.1: 890 | version "3.4.0" 891 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.0.tgz#41656fa5628e042878025ef467e78f125cb86e1d" 892 | dependencies: 893 | acorn "4.0.4" 894 | acorn-jsx "^3.0.0" 895 | 896 | espree@^3.4.0, espree@^3.5.1: 897 | version "3.5.1" 898 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.1.tgz#0c988b8ab46db53100a1954ae4ba995ddd27d87e" 899 | dependencies: 900 | acorn "^5.1.1" 901 | acorn-jsx "^3.0.0" 902 | 903 | esprima@^3.1.1: 904 | version "3.1.3" 905 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 906 | 907 | esprima@^4.0.0: 908 | version "4.0.0" 909 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 910 | 911 | esquery@^1.0.0: 912 | version "1.0.0" 913 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 914 | dependencies: 915 | estraverse "^4.0.0" 916 | 917 | esrecurse@^4.1.0: 918 | version "4.1.0" 919 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" 920 | dependencies: 921 | estraverse "~4.1.0" 922 | object-assign "^4.0.1" 923 | 924 | estraverse@^4.0.0, estraverse@^4.1.1, estraverse@^4.2.0: 925 | version "4.2.0" 926 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 927 | 928 | estraverse@~4.1.0: 929 | version "4.1.1" 930 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" 931 | 932 | esutils@^2.0.2: 933 | version "2.0.2" 934 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 935 | 936 | etag@~1.7.0: 937 | version "1.7.0" 938 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.7.0.tgz#03d30b5f67dd6e632d2945d30d6652731a34d5d8" 939 | 940 | event-emitter@~0.3.4: 941 | version "0.3.4" 942 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.4.tgz#8d63ddfb4cfe1fae3b32ca265c4c720222080bb5" 943 | dependencies: 944 | d "~0.1.1" 945 | es5-ext "~0.10.7" 946 | 947 | events-to-array@^1.0.1: 948 | version "1.0.2" 949 | resolved "https://registry.yarnpkg.com/events-to-array/-/events-to-array-1.0.2.tgz#b3484465534fe4ff66fbdd1a83b777713ba404aa" 950 | 951 | exit-hook@^1.0.0: 952 | version "1.1.1" 953 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 954 | 955 | express@^4.13.3: 956 | version "4.14.1" 957 | resolved "https://registry.yarnpkg.com/express/-/express-4.14.1.tgz#646c237f766f148c2120aff073817b9e4d7e0d33" 958 | dependencies: 959 | accepts "~1.3.3" 960 | array-flatten "1.1.1" 961 | content-disposition "0.5.2" 962 | content-type "~1.0.2" 963 | cookie "0.3.1" 964 | cookie-signature "1.0.6" 965 | debug "~2.2.0" 966 | depd "~1.1.0" 967 | encodeurl "~1.0.1" 968 | escape-html "~1.0.3" 969 | etag "~1.7.0" 970 | finalhandler "0.5.1" 971 | fresh "0.3.0" 972 | merge-descriptors "1.0.1" 973 | methods "~1.1.2" 974 | on-finished "~2.3.0" 975 | parseurl "~1.3.1" 976 | path-to-regexp "0.1.7" 977 | proxy-addr "~1.1.3" 978 | qs "6.2.0" 979 | range-parser "~1.2.0" 980 | send "0.14.2" 981 | serve-static "~1.11.2" 982 | type-is "~1.6.14" 983 | utils-merge "1.0.0" 984 | vary "~1.1.0" 985 | 986 | extend@3, extend@^3.0.0: 987 | version "3.0.0" 988 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 989 | 990 | external-editor@^2.0.4: 991 | version "2.0.5" 992 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.0.5.tgz#52c249a3981b9ba187c7cacf5beb50bf1d91a6bc" 993 | dependencies: 994 | iconv-lite "^0.4.17" 995 | jschardet "^1.4.2" 996 | tmp "^0.0.33" 997 | 998 | eyes@0.1.x: 999 | version "0.1.8" 1000 | resolved "https://registry.yarnpkg.com/eyes/-/eyes-0.1.8.tgz#62cf120234c683785d902348a800ef3e0cc20bc0" 1001 | 1002 | fast-deep-equal@^1.0.0: 1003 | version "1.0.0" 1004 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 1005 | 1006 | fast-levenshtein@~2.0.4: 1007 | version "2.0.6" 1008 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1009 | 1010 | figures@^1.3.5: 1011 | version "1.7.0" 1012 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1013 | dependencies: 1014 | escape-string-regexp "^1.0.5" 1015 | object-assign "^4.1.0" 1016 | 1017 | figures@^2.0.0: 1018 | version "2.0.0" 1019 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1020 | dependencies: 1021 | escape-string-regexp "^1.0.5" 1022 | 1023 | file-entry-cache@^2.0.0: 1024 | version "2.0.0" 1025 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1026 | dependencies: 1027 | flat-cache "^1.2.1" 1028 | object-assign "^4.0.1" 1029 | 1030 | finalhandler@0.5.1: 1031 | version "0.5.1" 1032 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-0.5.1.tgz#2c400d8d4530935bc232549c5fa385ec07de6fcd" 1033 | dependencies: 1034 | debug "~2.2.0" 1035 | escape-html "~1.0.3" 1036 | on-finished "~2.3.0" 1037 | statuses "~1.3.1" 1038 | unpipe "~1.0.0" 1039 | 1040 | find-root@^1.0.0: 1041 | version "1.0.0" 1042 | resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.0.0.tgz#962ff211aab25c6520feeeb8d6287f8f6e95807a" 1043 | 1044 | find-up@^1.0.0: 1045 | version "1.1.2" 1046 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1047 | dependencies: 1048 | path-exists "^2.0.0" 1049 | pinkie-promise "^2.0.0" 1050 | 1051 | find-up@^2.1.0: 1052 | version "2.1.0" 1053 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1054 | dependencies: 1055 | locate-path "^2.0.0" 1056 | 1057 | flat-cache@^1.2.1: 1058 | version "1.2.2" 1059 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 1060 | dependencies: 1061 | circular-json "^0.3.1" 1062 | del "^2.0.2" 1063 | graceful-fs "^4.1.2" 1064 | write "^0.2.1" 1065 | 1066 | for-each@~0.3.2: 1067 | version "0.3.2" 1068 | resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.2.tgz#2c40450b9348e97f281322593ba96704b9abd4d4" 1069 | dependencies: 1070 | is-function "~1.0.0" 1071 | 1072 | foreach@^2.0.5: 1073 | version "2.0.5" 1074 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1075 | 1076 | form-data@^2.1.1: 1077 | version "2.1.2" 1078 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4" 1079 | dependencies: 1080 | asynckit "^0.4.0" 1081 | combined-stream "^1.0.5" 1082 | mime-types "^2.1.12" 1083 | 1084 | formatio@1.2.0, formatio@^1.2.0: 1085 | version "1.2.0" 1086 | resolved "https://registry.yarnpkg.com/formatio/-/formatio-1.2.0.tgz#f3b2167d9068c4698a8d51f4f760a39a54d818eb" 1087 | dependencies: 1088 | samsam "1.x" 1089 | 1090 | formidable@^1.1.1: 1091 | version "1.1.1" 1092 | resolved "https://registry.yarnpkg.com/formidable/-/formidable-1.1.1.tgz#96b8886f7c3c3508b932d6bd70c4d3a88f35f1a9" 1093 | 1094 | forwarded@~0.1.0: 1095 | version "0.1.0" 1096 | resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.0.tgz#19ef9874c4ae1c297bcf078fde63a09b66a84363" 1097 | 1098 | fresh@0.3.0: 1099 | version "0.3.0" 1100 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.3.0.tgz#651f838e22424e7566de161d8358caa199f83d4f" 1101 | 1102 | fs.realpath@^1.0.0: 1103 | version "1.0.0" 1104 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1105 | 1106 | function-bind@^1.0.2, function-bind@^1.1.0, function-bind@~1.1.0: 1107 | version "1.1.0" 1108 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 1109 | 1110 | functional-red-black-tree@^1.0.1: 1111 | version "1.0.1" 1112 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 1113 | 1114 | generate-function@^2.0.0: 1115 | version "2.0.0" 1116 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1117 | 1118 | generate-object-property@^1.1.0: 1119 | version "1.2.0" 1120 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1121 | dependencies: 1122 | is-property "^1.0.0" 1123 | 1124 | get-stdin@^4.0.1: 1125 | version "4.0.1" 1126 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 1127 | 1128 | get-stdin@^5.0.1: 1129 | version "5.0.1" 1130 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" 1131 | 1132 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@~7.1.1: 1133 | version "7.1.1" 1134 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1135 | dependencies: 1136 | fs.realpath "^1.0.0" 1137 | inflight "^1.0.4" 1138 | inherits "2" 1139 | minimatch "^3.0.2" 1140 | once "^1.3.0" 1141 | path-is-absolute "^1.0.0" 1142 | 1143 | glob@^7.1.2: 1144 | version "7.1.2" 1145 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1146 | dependencies: 1147 | fs.realpath "^1.0.0" 1148 | inflight "^1.0.4" 1149 | inherits "2" 1150 | minimatch "^3.0.4" 1151 | once "^1.3.0" 1152 | path-is-absolute "^1.0.0" 1153 | 1154 | glob@~7.0.6: 1155 | version "7.0.6" 1156 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.0.6.tgz#211bafaf49e525b8cd93260d14ab136152b3f57a" 1157 | dependencies: 1158 | fs.realpath "^1.0.0" 1159 | inflight "^1.0.4" 1160 | inherits "2" 1161 | minimatch "^3.0.2" 1162 | once "^1.3.0" 1163 | path-is-absolute "^1.0.0" 1164 | 1165 | globals@^10.0.0: 1166 | version "10.1.0" 1167 | resolved "https://registry.yarnpkg.com/globals/-/globals-10.1.0.tgz#4425a1881be0d336b4a823a82a7be725d5dd987c" 1168 | 1169 | globals@^9.14.0, globals@^9.17.0: 1170 | version "9.18.0" 1171 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1172 | 1173 | globals@^9.2.0: 1174 | version "9.16.0" 1175 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.16.0.tgz#63e903658171ec2d9f51b1d31de5e2b8dc01fb80" 1176 | 1177 | globby@^5.0.0: 1178 | version "5.0.0" 1179 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1180 | dependencies: 1181 | array-union "^1.0.1" 1182 | arrify "^1.0.0" 1183 | glob "^7.0.3" 1184 | object-assign "^4.0.1" 1185 | pify "^2.0.0" 1186 | pinkie-promise "^2.0.0" 1187 | 1188 | graceful-fs@^4.1.2: 1189 | version "4.1.11" 1190 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1191 | 1192 | "graceful-readlink@>= 1.0.0": 1193 | version "1.0.1" 1194 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1195 | 1196 | has-ansi@^2.0.0: 1197 | version "2.0.0" 1198 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1199 | dependencies: 1200 | ansi-regex "^2.0.0" 1201 | 1202 | has-flag@^1.0.0: 1203 | version "1.0.0" 1204 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1205 | 1206 | has-flag@^2.0.0: 1207 | version "2.0.0" 1208 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1209 | 1210 | has@^1.0.1, has@~1.0.1: 1211 | version "1.0.1" 1212 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1213 | dependencies: 1214 | function-bind "^1.0.2" 1215 | 1216 | home-or-tmp@^2.0.0: 1217 | version "2.0.0" 1218 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1219 | dependencies: 1220 | os-homedir "^1.0.0" 1221 | os-tmpdir "^1.0.1" 1222 | 1223 | hosted-git-info@^2.1.4: 1224 | version "2.5.0" 1225 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 1226 | 1227 | http-errors@~1.5.1: 1228 | version "1.5.1" 1229 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.5.1.tgz#788c0d2c1de2c81b9e6e8c01843b6b97eb920750" 1230 | dependencies: 1231 | inherits "2.0.3" 1232 | setprototypeof "1.0.2" 1233 | statuses ">= 1.3.1 < 2" 1234 | 1235 | https-proxy-agent@^0.3.5: 1236 | version "0.3.6" 1237 | resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-0.3.6.tgz#713fa38e5d353f50eb14a342febe29033ed1619b" 1238 | dependencies: 1239 | agent-base "~1.0.1" 1240 | debug "2" 1241 | extend "3" 1242 | 1243 | iconv-lite@^0.4.17: 1244 | version "0.4.19" 1245 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 1246 | 1247 | ignore@^3.0.9, ignore@^3.2.0: 1248 | version "3.2.4" 1249 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.2.4.tgz#4055e03596729a8fabe45a43c100ad5ed815c4e8" 1250 | 1251 | ignore@^3.3.3: 1252 | version "3.3.5" 1253 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.5.tgz#c4e715455f6073a8d7e5dae72d2fc9d71663dba6" 1254 | 1255 | imurmurhash@^0.1.4: 1256 | version "0.1.4" 1257 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1258 | 1259 | indent-string@^2.1.0: 1260 | version "2.1.0" 1261 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 1262 | dependencies: 1263 | repeating "^2.0.0" 1264 | 1265 | indent-string@^3.1.0, indent-string@^3.2.0: 1266 | version "3.2.0" 1267 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" 1268 | 1269 | inflight@^1.0.4: 1270 | version "1.0.6" 1271 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1272 | dependencies: 1273 | once "^1.3.0" 1274 | wrappy "1" 1275 | 1276 | inherits@2, inherits@2.0.3, inherits@^2.0.3, inherits@~2.0.1, inherits@~2.0.3: 1277 | version "2.0.3" 1278 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1279 | 1280 | inquirer@^0.12.0: 1281 | version "0.12.0" 1282 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 1283 | dependencies: 1284 | ansi-escapes "^1.1.0" 1285 | ansi-regex "^2.0.0" 1286 | chalk "^1.0.0" 1287 | cli-cursor "^1.0.1" 1288 | cli-width "^2.0.0" 1289 | figures "^1.3.5" 1290 | lodash "^4.3.0" 1291 | readline2 "^1.0.1" 1292 | run-async "^0.1.0" 1293 | rx-lite "^3.1.2" 1294 | string-width "^1.0.1" 1295 | strip-ansi "^3.0.0" 1296 | through "^2.3.6" 1297 | 1298 | inquirer@^3.0.6: 1299 | version "3.3.0" 1300 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" 1301 | dependencies: 1302 | ansi-escapes "^3.0.0" 1303 | chalk "^2.0.0" 1304 | cli-cursor "^2.1.0" 1305 | cli-width "^2.0.0" 1306 | external-editor "^2.0.4" 1307 | figures "^2.0.0" 1308 | lodash "^4.3.0" 1309 | mute-stream "0.0.7" 1310 | run-async "^2.2.0" 1311 | rx-lite "^4.0.8" 1312 | rx-lite-aggregates "^4.0.8" 1313 | string-width "^2.1.0" 1314 | strip-ansi "^4.0.0" 1315 | through "^2.3.6" 1316 | 1317 | interpret@^1.0.0: 1318 | version "1.0.1" 1319 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.1.tgz#d579fb7f693b858004947af39fa0db49f795602c" 1320 | 1321 | invariant@^2.2.0: 1322 | version "2.2.2" 1323 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1324 | dependencies: 1325 | loose-envify "^1.0.0" 1326 | 1327 | ipaddr.js@1.2.0: 1328 | version "1.2.0" 1329 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.2.0.tgz#8aba49c9192799585bdd643e0ccb50e8ae777ba4" 1330 | 1331 | is-arrayish@^0.2.1: 1332 | version "0.2.1" 1333 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1334 | 1335 | is-buffer@^1.1.5: 1336 | version "1.1.5" 1337 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1338 | 1339 | is-builtin-module@^1.0.0: 1340 | version "1.0.0" 1341 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1342 | dependencies: 1343 | builtin-modules "^1.0.0" 1344 | 1345 | is-callable@^1.1.1, is-callable@^1.1.3: 1346 | version "1.1.3" 1347 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 1348 | 1349 | is-date-object@^1.0.1: 1350 | version "1.0.1" 1351 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 1352 | 1353 | is-finite@^1.0.0: 1354 | version "1.0.2" 1355 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1356 | dependencies: 1357 | number-is-nan "^1.0.0" 1358 | 1359 | is-fullwidth-code-point@^1.0.0: 1360 | version "1.0.0" 1361 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1362 | dependencies: 1363 | number-is-nan "^1.0.0" 1364 | 1365 | is-fullwidth-code-point@^2.0.0: 1366 | version "2.0.0" 1367 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1368 | 1369 | is-function@~1.0.0: 1370 | version "1.0.1" 1371 | resolved "https://registry.yarnpkg.com/is-function/-/is-function-1.0.1.tgz#12cfb98b65b57dd3d193a3121f5f6e2f437602b5" 1372 | 1373 | is-my-json-valid@^2.10.0: 1374 | version "2.16.0" 1375 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz#f079dd9bfdae65ee2038aae8acbc86ab109e3693" 1376 | dependencies: 1377 | generate-function "^2.0.0" 1378 | generate-object-property "^1.1.0" 1379 | jsonpointer "^4.0.0" 1380 | xtend "^4.0.0" 1381 | 1382 | is-path-cwd@^1.0.0: 1383 | version "1.0.0" 1384 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1385 | 1386 | is-path-in-cwd@^1.0.0: 1387 | version "1.0.0" 1388 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 1389 | dependencies: 1390 | is-path-inside "^1.0.0" 1391 | 1392 | is-path-inside@^1.0.0: 1393 | version "1.0.0" 1394 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 1395 | dependencies: 1396 | path-is-inside "^1.0.1" 1397 | 1398 | is-promise@^2.0.0, is-promise@^2.1.0: 1399 | version "2.1.0" 1400 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1401 | 1402 | is-promise@~1: 1403 | version "1.0.1" 1404 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-1.0.1.tgz#31573761c057e33c2e91aab9e96da08cefbe76e5" 1405 | 1406 | is-property@^1.0.0: 1407 | version "1.0.2" 1408 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1409 | 1410 | is-regex@^1.0.3: 1411 | version "1.0.4" 1412 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 1413 | dependencies: 1414 | has "^1.0.1" 1415 | 1416 | is-resolvable@^1.0.0: 1417 | version "1.0.0" 1418 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 1419 | dependencies: 1420 | tryit "^1.0.1" 1421 | 1422 | is-symbol@^1.0.1: 1423 | version "1.0.1" 1424 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 1425 | 1426 | is-utf8@^0.2.0: 1427 | version "0.2.1" 1428 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1429 | 1430 | isarray@0.0.1: 1431 | version "0.0.1" 1432 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 1433 | 1434 | isarray@^1.0.0, isarray@~1.0.0: 1435 | version "1.0.0" 1436 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1437 | 1438 | isexe@^2.0.0: 1439 | version "2.0.0" 1440 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1441 | 1442 | isstream@0.1.x: 1443 | version "0.1.2" 1444 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1445 | 1446 | jade@^1.11.0: 1447 | version "1.11.0" 1448 | resolved "https://registry.yarnpkg.com/jade/-/jade-1.11.0.tgz#9c80e538c12d3fb95c8d9bb9559fa0cc040405fd" 1449 | dependencies: 1450 | character-parser "1.2.1" 1451 | clean-css "^3.1.9" 1452 | commander "~2.6.0" 1453 | constantinople "~3.0.1" 1454 | jstransformer "0.0.2" 1455 | mkdirp "~0.5.0" 1456 | transformers "2.1.0" 1457 | uglify-js "^2.4.19" 1458 | void-elements "~2.0.1" 1459 | with "~4.0.0" 1460 | 1461 | js-tokens@^3.0.0: 1462 | version "3.0.1" 1463 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 1464 | 1465 | js-tokens@^3.0.2: 1466 | version "3.0.2" 1467 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1468 | 1469 | js-yaml@0.3.x: 1470 | version "0.3.7" 1471 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-0.3.7.tgz#d739d8ee86461e54b354d6a7d7d1f2ad9a167f62" 1472 | 1473 | js-yaml@^3.2.7, js-yaml@^3.5.1: 1474 | version "3.8.1" 1475 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.1.tgz#782ba50200be7b9e5a8537001b7804db3ad02628" 1476 | dependencies: 1477 | argparse "^1.0.7" 1478 | esprima "^3.1.1" 1479 | 1480 | js-yaml@^3.9.1: 1481 | version "3.10.0" 1482 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" 1483 | dependencies: 1484 | argparse "^1.0.7" 1485 | esprima "^4.0.0" 1486 | 1487 | jschardet@^1.4.2: 1488 | version "1.5.1" 1489 | resolved "https://registry.yarnpkg.com/jschardet/-/jschardet-1.5.1.tgz#c519f629f86b3a5bedba58a88d311309eec097f9" 1490 | 1491 | jsmin@1.x: 1492 | version "1.0.1" 1493 | resolved "https://registry.yarnpkg.com/jsmin/-/jsmin-1.0.1.tgz#e7bd0dcd6496c3bf4863235bf461a3d98aa3b98c" 1494 | 1495 | json-schema-traverse@^0.3.0: 1496 | version "0.3.1" 1497 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 1498 | 1499 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 1500 | version "1.0.1" 1501 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1502 | dependencies: 1503 | jsonify "~0.0.0" 1504 | 1505 | json-stringify-safe@^5.0.0: 1506 | version "5.0.1" 1507 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1508 | 1509 | jsonify@~0.0.0: 1510 | version "0.0.0" 1511 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1512 | 1513 | jsonpointer@^4.0.0: 1514 | version "4.0.1" 1515 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 1516 | 1517 | jstransformer@0.0.2: 1518 | version "0.0.2" 1519 | resolved "https://registry.yarnpkg.com/jstransformer/-/jstransformer-0.0.2.tgz#7aae29a903d196cfa0973d885d3e47947ecd76ab" 1520 | dependencies: 1521 | is-promise "^2.0.0" 1522 | promise "^6.0.1" 1523 | 1524 | jsx-ast-utils@^1.3.3: 1525 | version "1.4.0" 1526 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-1.4.0.tgz#5afe38868f56bc8cc7aeaef0100ba8c75bd12591" 1527 | dependencies: 1528 | object-assign "^4.1.0" 1529 | 1530 | just-extend@^1.1.22: 1531 | version "1.1.22" 1532 | resolved "https://registry.yarnpkg.com/just-extend/-/just-extend-1.1.22.tgz#3330af756cab6a542700c64b2e4e4aa062d52fff" 1533 | 1534 | jxLoader@*: 1535 | version "0.1.1" 1536 | resolved "https://registry.yarnpkg.com/jxLoader/-/jxLoader-0.1.1.tgz#0134ea5144e533b594fc1ff25ff194e235c53ecd" 1537 | dependencies: 1538 | js-yaml "0.3.x" 1539 | moo-server "1.3.x" 1540 | promised-io "*" 1541 | walker "1.x" 1542 | 1543 | kind-of@^3.0.2: 1544 | version "3.2.2" 1545 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1546 | dependencies: 1547 | is-buffer "^1.1.5" 1548 | 1549 | lazy-cache@^1.0.3: 1550 | version "1.0.4" 1551 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1552 | 1553 | levn@^0.3.0, levn@~0.3.0: 1554 | version "0.3.0" 1555 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1556 | dependencies: 1557 | prelude-ls "~1.1.2" 1558 | type-check "~0.3.2" 1559 | 1560 | load-json-file@^1.0.0: 1561 | version "1.1.0" 1562 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1563 | dependencies: 1564 | graceful-fs "^4.1.2" 1565 | parse-json "^2.2.0" 1566 | pify "^2.0.0" 1567 | pinkie-promise "^2.0.0" 1568 | strip-bom "^2.0.0" 1569 | 1570 | locate-path@^2.0.0: 1571 | version "2.0.0" 1572 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1573 | dependencies: 1574 | p-locate "^2.0.0" 1575 | path-exists "^3.0.0" 1576 | 1577 | lodash.get@^4.4.2: 1578 | version "4.4.2" 1579 | resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99" 1580 | 1581 | lodash.memoize@^4.1.2: 1582 | version "4.1.2" 1583 | resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" 1584 | 1585 | lodash.merge@^4.6.0: 1586 | version "4.6.0" 1587 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.0.tgz#69884ba144ac33fe699737a6086deffadd0f89c5" 1588 | 1589 | lodash@^4.0.0, lodash@^4.17.4, lodash@^4.2.0, lodash@^4.3.0: 1590 | version "4.17.4" 1591 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1592 | 1593 | loglevel-colored-level-prefix@^1.0.0: 1594 | version "1.0.0" 1595 | resolved "https://registry.yarnpkg.com/loglevel-colored-level-prefix/-/loglevel-colored-level-prefix-1.0.0.tgz#6a40218fdc7ae15fc76c3d0f3e676c465388603e" 1596 | dependencies: 1597 | chalk "^1.1.3" 1598 | loglevel "^1.4.1" 1599 | 1600 | loglevel@^1.4.1: 1601 | version "1.5.0" 1602 | resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.5.0.tgz#3863984a2c326b986fbb965f378758a6dc8a4324" 1603 | 1604 | lolex@^1.6.0: 1605 | version "1.6.0" 1606 | resolved "https://registry.yarnpkg.com/lolex/-/lolex-1.6.0.tgz#3a9a0283452a47d7439e72731b9e07d7386e49f6" 1607 | 1608 | lolex@^2.1.2: 1609 | version "2.1.2" 1610 | resolved "https://registry.yarnpkg.com/lolex/-/lolex-2.1.2.tgz#2694b953c9ea4d013e5b8bfba891c991025b2629" 1611 | 1612 | longest@^1.0.1: 1613 | version "1.0.1" 1614 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 1615 | 1616 | loose-envify@^1.0.0: 1617 | version "1.3.1" 1618 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1619 | dependencies: 1620 | js-tokens "^3.0.0" 1621 | 1622 | loud-rejection@^1.0.0: 1623 | version "1.6.0" 1624 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 1625 | dependencies: 1626 | currently-unhandled "^0.4.1" 1627 | signal-exit "^3.0.0" 1628 | 1629 | lru-cache@^4.0.1: 1630 | version "4.1.1" 1631 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 1632 | dependencies: 1633 | pseudomap "^1.0.2" 1634 | yallist "^2.1.2" 1635 | 1636 | make-plural@~3.0.6: 1637 | version "3.0.6" 1638 | resolved "https://registry.yarnpkg.com/make-plural/-/make-plural-3.0.6.tgz#2033a03bac290b8f3bb91258f65b9df7e8b01ca7" 1639 | optionalDependencies: 1640 | minimist "^1.2.0" 1641 | 1642 | makeerror@1.0.x: 1643 | version "1.0.11" 1644 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 1645 | dependencies: 1646 | tmpl "1.0.x" 1647 | 1648 | map-obj@^1.0.0, map-obj@^1.0.1: 1649 | version "1.0.1" 1650 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 1651 | 1652 | media-typer@0.3.0: 1653 | version "0.3.0" 1654 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 1655 | 1656 | meow@3.7.0: 1657 | version "3.7.0" 1658 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 1659 | dependencies: 1660 | camelcase-keys "^2.0.0" 1661 | decamelize "^1.1.2" 1662 | loud-rejection "^1.0.0" 1663 | map-obj "^1.0.1" 1664 | minimist "^1.1.3" 1665 | normalize-package-data "^2.3.4" 1666 | object-assign "^4.0.1" 1667 | read-pkg-up "^1.0.1" 1668 | redent "^1.0.0" 1669 | trim-newlines "^1.0.0" 1670 | 1671 | merge-descriptors@1.0.1: 1672 | version "1.0.1" 1673 | resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" 1674 | 1675 | messageformat-parser@^1.0.0: 1676 | version "1.1.0" 1677 | resolved "https://registry.yarnpkg.com/messageformat-parser/-/messageformat-parser-1.1.0.tgz#13ba2250a76bbde8e0fca0dbb3475f95c594a90a" 1678 | 1679 | messageformat@^1.0.2: 1680 | version "1.0.2" 1681 | resolved "https://registry.yarnpkg.com/messageformat/-/messageformat-1.0.2.tgz#908f4691f29ff28dae35c45436a24cff93402388" 1682 | dependencies: 1683 | glob "~7.0.6" 1684 | make-plural "~3.0.6" 1685 | messageformat-parser "^1.0.0" 1686 | nopt "~3.0.6" 1687 | reserved-words "^0.1.1" 1688 | 1689 | methods@^1.1.1, methods@~1.1.2: 1690 | version "1.1.2" 1691 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" 1692 | 1693 | mime-db@~1.26.0: 1694 | version "1.26.0" 1695 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.26.0.tgz#eaffcd0e4fc6935cf8134da246e2e6c35305adff" 1696 | 1697 | mime-types@^2.1.12, mime-types@~2.1.11, mime-types@~2.1.13: 1698 | version "2.1.14" 1699 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.14.tgz#f7ef7d97583fcaf3b7d282b6f8b5679dab1e94ee" 1700 | dependencies: 1701 | mime-db "~1.26.0" 1702 | 1703 | mime@1.3.4, mime@^1.3.4: 1704 | version "1.3.4" 1705 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53" 1706 | 1707 | mimic-fn@^1.0.0: 1708 | version "1.1.0" 1709 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 1710 | 1711 | minimatch@^3.0.2: 1712 | version "3.0.3" 1713 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 1714 | dependencies: 1715 | brace-expansion "^1.0.0" 1716 | 1717 | minimatch@^3.0.4: 1718 | version "3.0.4" 1719 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1720 | dependencies: 1721 | brace-expansion "^1.1.7" 1722 | 1723 | minimist@0.0.8: 1724 | version "0.0.8" 1725 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1726 | 1727 | minimist@^1.1.0, minimist@^1.1.3, minimist@^1.2.0, minimist@~1.2.0: 1728 | version "1.2.0" 1729 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1730 | 1731 | mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0: 1732 | version "0.5.1" 1733 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1734 | dependencies: 1735 | minimist "0.0.8" 1736 | 1737 | moo-server@*, moo-server@1.3.x: 1738 | version "1.3.0" 1739 | resolved "https://registry.yarnpkg.com/moo-server/-/moo-server-1.3.0.tgz#5dc79569565a10d6efed5439491e69d2392e58f1" 1740 | 1741 | ms@0.7.1: 1742 | version "0.7.1" 1743 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 1744 | 1745 | ms@0.7.2: 1746 | version "0.7.2" 1747 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 1748 | 1749 | ms@2.0.0: 1750 | version "2.0.0" 1751 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1752 | 1753 | mute-stream@0.0.5: 1754 | version "0.0.5" 1755 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 1756 | 1757 | mute-stream@0.0.7: 1758 | version "0.0.7" 1759 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 1760 | 1761 | nan@^2.4.0: 1762 | version "2.7.0" 1763 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.7.0.tgz#d95bf721ec877e08db276ed3fc6eb78f9083ad46" 1764 | 1765 | native-promise-only@^0.8.1: 1766 | version "0.8.1" 1767 | resolved "https://registry.yarnpkg.com/native-promise-only/-/native-promise-only-0.8.1.tgz#20a318c30cb45f71fe7adfbf7b21c99c1472ef11" 1768 | 1769 | natural-compare@^1.4.0: 1770 | version "1.4.0" 1771 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1772 | 1773 | negotiator@0.6.1: 1774 | version "0.6.1" 1775 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" 1776 | 1777 | newrelic@^2.2.1: 1778 | version "2.2.1" 1779 | resolved "https://registry.yarnpkg.com/newrelic/-/newrelic-2.2.1.tgz#14c9f01c0310f8d670cbed5469c3e42efd270de8" 1780 | dependencies: 1781 | concat-stream "^1.5.0" 1782 | https-proxy-agent "^0.3.5" 1783 | json-stringify-safe "^5.0.0" 1784 | readable-stream "^2.1.4" 1785 | semver "^5.3.0" 1786 | optionalDependencies: 1787 | "@newrelic/native-metrics" "^2.1.0" 1788 | 1789 | nise@^1.0.1: 1790 | version "1.1.0" 1791 | resolved "https://registry.yarnpkg.com/nise/-/nise-1.1.0.tgz#37e41b9bf0041ccb83d1bf03e79440bbc0db10ad" 1792 | dependencies: 1793 | formatio "^1.2.0" 1794 | just-extend "^1.1.22" 1795 | lolex "^1.6.0" 1796 | path-to-regexp "^1.7.0" 1797 | text-encoding "^0.6.4" 1798 | 1799 | nopt@~3.0.6: 1800 | version "3.0.6" 1801 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 1802 | dependencies: 1803 | abbrev "1" 1804 | 1805 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: 1806 | version "2.4.0" 1807 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 1808 | dependencies: 1809 | hosted-git-info "^2.1.4" 1810 | is-builtin-module "^1.0.0" 1811 | semver "2 || 3 || 4 || 5" 1812 | validate-npm-package-license "^3.0.1" 1813 | 1814 | number-is-nan@^1.0.0: 1815 | version "1.0.1" 1816 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1817 | 1818 | object-assign@^4.0.1, object-assign@^4.1.0: 1819 | version "4.1.1" 1820 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1821 | 1822 | object-inspect@~1.2.1: 1823 | version "1.2.1" 1824 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.2.1.tgz#3b62226eb8f6d441751c7d8f22a20ff80ac9dc3f" 1825 | 1826 | object-keys@^1.0.8: 1827 | version "1.0.11" 1828 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 1829 | 1830 | on-finished@~2.3.0: 1831 | version "2.3.0" 1832 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 1833 | dependencies: 1834 | ee-first "1.1.1" 1835 | 1836 | on-headers@~1.0.1: 1837 | version "1.0.1" 1838 | resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.1.tgz#928f5d0f470d49342651ea6794b0857c100693f7" 1839 | 1840 | once@^1.3.0: 1841 | version "1.4.0" 1842 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1843 | dependencies: 1844 | wrappy "1" 1845 | 1846 | onetime@^1.0.0: 1847 | version "1.1.0" 1848 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 1849 | 1850 | onetime@^2.0.0: 1851 | version "2.0.1" 1852 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 1853 | dependencies: 1854 | mimic-fn "^1.0.0" 1855 | 1856 | optimist@~0.3.5: 1857 | version "0.3.7" 1858 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.3.7.tgz#c90941ad59e4273328923074d2cf2e7cbc6ec0d9" 1859 | dependencies: 1860 | wordwrap "~0.0.2" 1861 | 1862 | optionator@^0.8.2: 1863 | version "0.8.2" 1864 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 1865 | dependencies: 1866 | deep-is "~0.1.3" 1867 | fast-levenshtein "~2.0.4" 1868 | levn "~0.3.0" 1869 | prelude-ls "~1.1.2" 1870 | type-check "~0.3.2" 1871 | wordwrap "~1.0.0" 1872 | 1873 | os-homedir@^1.0.0: 1874 | version "1.0.2" 1875 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1876 | 1877 | os-tmpdir@^1.0.1, os-tmpdir@~1.0.2: 1878 | version "1.0.2" 1879 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1880 | 1881 | p-limit@^1.1.0: 1882 | version "1.1.0" 1883 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 1884 | 1885 | p-locate@^2.0.0: 1886 | version "2.0.0" 1887 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1888 | dependencies: 1889 | p-limit "^1.1.0" 1890 | 1891 | parse-json@^2.2.0: 1892 | version "2.2.0" 1893 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1894 | dependencies: 1895 | error-ex "^1.2.0" 1896 | 1897 | parseurl@~1.3.1: 1898 | version "1.3.1" 1899 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.1.tgz#c8ab8c9223ba34888aa64a297b28853bec18da56" 1900 | 1901 | path-exists@^2.0.0: 1902 | version "2.1.0" 1903 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1904 | dependencies: 1905 | pinkie-promise "^2.0.0" 1906 | 1907 | path-exists@^3.0.0: 1908 | version "3.0.0" 1909 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1910 | 1911 | path-is-absolute@^1.0.0: 1912 | version "1.0.1" 1913 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1914 | 1915 | path-is-inside@^1.0.1, path-is-inside@^1.0.2: 1916 | version "1.0.2" 1917 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 1918 | 1919 | path-to-regexp@0.1.7: 1920 | version "0.1.7" 1921 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" 1922 | 1923 | path-to-regexp@^1.7.0: 1924 | version "1.7.0" 1925 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-1.7.0.tgz#59fde0f435badacba103a84e9d3bc64e96b9937d" 1926 | dependencies: 1927 | isarray "0.0.1" 1928 | 1929 | path-type@^1.0.0: 1930 | version "1.1.0" 1931 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 1932 | dependencies: 1933 | graceful-fs "^4.1.2" 1934 | pify "^2.0.0" 1935 | pinkie-promise "^2.0.0" 1936 | 1937 | pify@^2.0.0: 1938 | version "2.3.0" 1939 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1940 | 1941 | pinkie-promise@^2.0.0: 1942 | version "2.0.1" 1943 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1944 | dependencies: 1945 | pinkie "^2.0.0" 1946 | 1947 | pinkie@^2.0.0: 1948 | version "2.0.4" 1949 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1950 | 1951 | pkg-config@^1.0.1, pkg-config@^1.1.0: 1952 | version "1.1.1" 1953 | resolved "https://registry.yarnpkg.com/pkg-config/-/pkg-config-1.1.1.tgz#557ef22d73da3c8837107766c52eadabde298fe4" 1954 | dependencies: 1955 | debug-log "^1.0.0" 1956 | find-root "^1.0.0" 1957 | xtend "^4.0.1" 1958 | 1959 | pluralize@^1.2.1: 1960 | version "1.2.1" 1961 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" 1962 | 1963 | pluralize@^7.0.0: 1964 | version "7.0.0" 1965 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777" 1966 | 1967 | prelude-ls@~1.1.2: 1968 | version "1.1.2" 1969 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 1970 | 1971 | prettier-eslint@^6.3.0: 1972 | version "6.4.3" 1973 | resolved "https://registry.yarnpkg.com/prettier-eslint/-/prettier-eslint-6.4.3.tgz#8335b7a8bd50d01879a9d505bc0b9208caa9ecfc" 1974 | dependencies: 1975 | common-tags "^1.4.0" 1976 | dlv "^1.1.0" 1977 | eslint "^4.5.0" 1978 | indent-string "^3.2.0" 1979 | lodash.merge "^4.6.0" 1980 | loglevel-colored-level-prefix "^1.0.0" 1981 | prettier "^1.6.0" 1982 | pretty-format "^20.0.3" 1983 | require-relative "^0.8.7" 1984 | 1985 | prettier-standard@^6.0.0: 1986 | version "6.0.0" 1987 | resolved "https://registry.yarnpkg.com/prettier-standard/-/prettier-standard-6.0.0.tgz#4c55db1401b9a5c09f0547009ea2ed1494a3346c" 1988 | dependencies: 1989 | babel-eslint ">=7.2.3" 1990 | babel-runtime "^6.23.0" 1991 | chalk "^1.1.3" 1992 | eslint "^3.19.0" 1993 | find-up "^2.1.0" 1994 | get-stdin "^5.0.1" 1995 | glob "^7.1.2" 1996 | ignore "^3.3.3" 1997 | indent-string "^3.1.0" 1998 | lodash.memoize "^4.1.2" 1999 | loglevel-colored-level-prefix "^1.0.0" 2000 | meow "3.7.0" 2001 | messageformat "^1.0.2" 2002 | prettier "^1.4.4" 2003 | prettier-eslint "^6.3.0" 2004 | rxjs "^5.4.0" 2005 | 2006 | prettier@^1.4.4, prettier@^1.6.0: 2007 | version "1.7.0" 2008 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.7.0.tgz#47481588f41f7c90f63938feb202ac82554e7150" 2009 | 2010 | pretty-format@^20.0.3: 2011 | version "20.0.3" 2012 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-20.0.3.tgz#020e350a560a1fe1a98dc3beb6ccffb386de8b14" 2013 | dependencies: 2014 | ansi-regex "^2.1.1" 2015 | ansi-styles "^3.0.0" 2016 | 2017 | process-nextick-args@~1.0.6: 2018 | version "1.0.7" 2019 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2020 | 2021 | progress@^1.1.8: 2022 | version "1.1.8" 2023 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 2024 | 2025 | progress@^2.0.0: 2026 | version "2.0.0" 2027 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" 2028 | 2029 | promise@^6.0.1: 2030 | version "6.1.0" 2031 | resolved "https://registry.yarnpkg.com/promise/-/promise-6.1.0.tgz#2ce729f6b94b45c26891ad0602c5c90e04c6eef6" 2032 | dependencies: 2033 | asap "~1.0.0" 2034 | 2035 | promise@~2.0: 2036 | version "2.0.0" 2037 | resolved "https://registry.yarnpkg.com/promise/-/promise-2.0.0.tgz#46648aa9d605af5d2e70c3024bf59436da02b80e" 2038 | dependencies: 2039 | is-promise "~1" 2040 | 2041 | promised-io@*: 2042 | version "0.3.5" 2043 | resolved "https://registry.yarnpkg.com/promised-io/-/promised-io-0.3.5.tgz#4ad217bb3658bcaae9946b17a8668ecd851e1356" 2044 | 2045 | proxy-addr@~1.1.3: 2046 | version "1.1.3" 2047 | resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-1.1.3.tgz#dc97502f5722e888467b3fa2297a7b1ff47df074" 2048 | dependencies: 2049 | forwarded "~0.1.0" 2050 | ipaddr.js "1.2.0" 2051 | 2052 | pseudomap@^1.0.2: 2053 | version "1.0.2" 2054 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2055 | 2056 | qs@6.2.0, qs@^6.1.0: 2057 | version "6.2.0" 2058 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.2.0.tgz#3b7848c03c2dece69a9522b0fae8c4126d745f3b" 2059 | 2060 | range-parser@~1.2.0: 2061 | version "1.2.0" 2062 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" 2063 | 2064 | read-pkg-up@^1.0.1: 2065 | version "1.0.1" 2066 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2067 | dependencies: 2068 | find-up "^1.0.0" 2069 | read-pkg "^1.0.0" 2070 | 2071 | read-pkg@^1.0.0: 2072 | version "1.1.0" 2073 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2074 | dependencies: 2075 | load-json-file "^1.0.0" 2076 | normalize-package-data "^2.3.2" 2077 | path-type "^1.0.0" 2078 | 2079 | readable-stream@^2, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.2.2: 2080 | version "2.2.3" 2081 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.3.tgz#9cf49463985df016c8ae8813097a9293a9b33729" 2082 | dependencies: 2083 | buffer-shims "^1.0.0" 2084 | core-util-is "~1.0.0" 2085 | inherits "~2.0.1" 2086 | isarray "~1.0.0" 2087 | process-nextick-args "~1.0.6" 2088 | string_decoder "~0.10.x" 2089 | util-deprecate "~1.0.1" 2090 | 2091 | readable-stream@^2.1.4: 2092 | version "2.3.3" 2093 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 2094 | dependencies: 2095 | core-util-is "~1.0.0" 2096 | inherits "~2.0.3" 2097 | isarray "~1.0.0" 2098 | process-nextick-args "~1.0.6" 2099 | safe-buffer "~5.1.1" 2100 | string_decoder "~1.0.3" 2101 | util-deprecate "~1.0.1" 2102 | 2103 | readline2@^1.0.1: 2104 | version "1.0.1" 2105 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 2106 | dependencies: 2107 | code-point-at "^1.0.0" 2108 | is-fullwidth-code-point "^1.0.0" 2109 | mute-stream "0.0.5" 2110 | 2111 | rechoir@^0.6.2: 2112 | version "0.6.2" 2113 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 2114 | dependencies: 2115 | resolve "^1.1.6" 2116 | 2117 | redent@^1.0.0: 2118 | version "1.0.0" 2119 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 2120 | dependencies: 2121 | indent-string "^2.1.0" 2122 | strip-indent "^1.0.1" 2123 | 2124 | regenerator-runtime@^0.11.0: 2125 | version "0.11.0" 2126 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1" 2127 | 2128 | repeat-string@^1.5.2: 2129 | version "1.6.1" 2130 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2131 | 2132 | repeating@^2.0.0: 2133 | version "2.0.1" 2134 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2135 | dependencies: 2136 | is-finite "^1.0.0" 2137 | 2138 | require-relative@^0.8.7: 2139 | version "0.8.7" 2140 | resolved "https://registry.yarnpkg.com/require-relative/-/require-relative-0.8.7.tgz#7999539fc9e047a37928fa196f8e1563dabd36de" 2141 | 2142 | require-uncached@^1.0.2, require-uncached@^1.0.3: 2143 | version "1.0.3" 2144 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 2145 | dependencies: 2146 | caller-path "^0.1.0" 2147 | resolve-from "^1.0.0" 2148 | 2149 | reserved-words@^0.1.1: 2150 | version "0.1.2" 2151 | resolved "https://registry.yarnpkg.com/reserved-words/-/reserved-words-0.1.2.tgz#00a0940f98cd501aeaaac316411d9adc52b31ab1" 2152 | 2153 | resolve-from@^1.0.0: 2154 | version "1.0.1" 2155 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 2156 | 2157 | resolve@^1.1.6, resolve@~1.1.7: 2158 | version "1.1.7" 2159 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2160 | 2161 | restore-cursor@^1.0.1: 2162 | version "1.0.1" 2163 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 2164 | dependencies: 2165 | exit-hook "^1.0.0" 2166 | onetime "^1.0.0" 2167 | 2168 | restore-cursor@^2.0.0: 2169 | version "2.0.0" 2170 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 2171 | dependencies: 2172 | onetime "^2.0.0" 2173 | signal-exit "^3.0.2" 2174 | 2175 | resumer@~0.0.0: 2176 | version "0.0.0" 2177 | resolved "https://registry.yarnpkg.com/resumer/-/resumer-0.0.0.tgz#f1e8f461e4064ba39e82af3cdc2a8c893d076759" 2178 | dependencies: 2179 | through "~2.3.4" 2180 | 2181 | rewire@^2.5.2: 2182 | version "2.5.2" 2183 | resolved "https://registry.yarnpkg.com/rewire/-/rewire-2.5.2.tgz#6427de7b7feefa7d36401507eb64a5385bc58dc7" 2184 | 2185 | right-align@^0.1.1: 2186 | version "0.1.3" 2187 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2188 | dependencies: 2189 | align-text "^0.1.1" 2190 | 2191 | rimraf@^2.2.8: 2192 | version "2.6.1" 2193 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 2194 | dependencies: 2195 | glob "^7.0.5" 2196 | 2197 | run-async@^0.1.0: 2198 | version "0.1.0" 2199 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 2200 | dependencies: 2201 | once "^1.3.0" 2202 | 2203 | run-async@^2.2.0: 2204 | version "2.3.0" 2205 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 2206 | dependencies: 2207 | is-promise "^2.1.0" 2208 | 2209 | run-parallel@^1.1.2: 2210 | version "1.1.6" 2211 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.1.6.tgz#29003c9a2163e01e2d2dfc90575f2c6c1d61a039" 2212 | 2213 | rx-lite-aggregates@^4.0.8: 2214 | version "4.0.8" 2215 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 2216 | dependencies: 2217 | rx-lite "*" 2218 | 2219 | rx-lite@*, rx-lite@^4.0.8: 2220 | version "4.0.8" 2221 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 2222 | 2223 | rx-lite@^3.1.2: 2224 | version "3.1.2" 2225 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 2226 | 2227 | rxjs@^5.4.0: 2228 | version "5.4.3" 2229 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.4.3.tgz#0758cddee6033d68e0fd53676f0f3596ce3d483f" 2230 | dependencies: 2231 | symbol-observable "^1.0.1" 2232 | 2233 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2234 | version "5.1.1" 2235 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2236 | 2237 | samsam@1.x, samsam@^1.1.3: 2238 | version "1.2.1" 2239 | resolved "https://registry.yarnpkg.com/samsam/-/samsam-1.2.1.tgz#edd39093a3184370cb859243b2bdf255e7d8ea67" 2240 | 2241 | "semver@2 || 3 || 4 || 5": 2242 | version "5.4.1" 2243 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 2244 | 2245 | semver@^5.3.0: 2246 | version "5.3.0" 2247 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 2248 | 2249 | send@0.14.2: 2250 | version "0.14.2" 2251 | resolved "https://registry.yarnpkg.com/send/-/send-0.14.2.tgz#39b0438b3f510be5dc6f667a11f71689368cdeef" 2252 | dependencies: 2253 | debug "~2.2.0" 2254 | depd "~1.1.0" 2255 | destroy "~1.0.4" 2256 | encodeurl "~1.0.1" 2257 | escape-html "~1.0.3" 2258 | etag "~1.7.0" 2259 | fresh "0.3.0" 2260 | http-errors "~1.5.1" 2261 | mime "1.3.4" 2262 | ms "0.7.2" 2263 | on-finished "~2.3.0" 2264 | range-parser "~1.2.0" 2265 | statuses "~1.3.1" 2266 | 2267 | serve-static@~1.11.2: 2268 | version "1.11.2" 2269 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.11.2.tgz#2cf9889bd4435a320cc36895c9aa57bd662e6ac7" 2270 | dependencies: 2271 | encodeurl "~1.0.1" 2272 | escape-html "~1.0.3" 2273 | parseurl "~1.3.1" 2274 | send "0.14.2" 2275 | 2276 | setprototypeof@1.0.2: 2277 | version "1.0.2" 2278 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.2.tgz#81a552141ec104b88e89ce383103ad5c66564d08" 2279 | 2280 | shebang-command@^1.2.0: 2281 | version "1.2.0" 2282 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2283 | dependencies: 2284 | shebang-regex "^1.0.0" 2285 | 2286 | shebang-regex@^1.0.0: 2287 | version "1.0.0" 2288 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2289 | 2290 | shelljs@^0.7.5: 2291 | version "0.7.6" 2292 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.6.tgz#379cccfb56b91c8601e4793356eb5382924de9ad" 2293 | dependencies: 2294 | glob "^7.0.0" 2295 | interpret "^1.0.0" 2296 | rechoir "^0.6.2" 2297 | 2298 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2299 | version "3.0.2" 2300 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2301 | 2302 | sinon@^3.3.0: 2303 | version "3.3.0" 2304 | resolved "https://registry.yarnpkg.com/sinon/-/sinon-3.3.0.tgz#9132111b4bbe13c749c2848210864250165069b1" 2305 | dependencies: 2306 | build "^0.1.4" 2307 | diff "^3.1.0" 2308 | formatio "1.2.0" 2309 | lodash.get "^4.4.2" 2310 | lolex "^2.1.2" 2311 | native-promise-only "^0.8.1" 2312 | nise "^1.0.1" 2313 | path-to-regexp "^1.7.0" 2314 | samsam "^1.1.3" 2315 | text-encoding "0.6.4" 2316 | type-detect "^4.0.0" 2317 | 2318 | slice-ansi@0.0.4: 2319 | version "0.0.4" 2320 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 2321 | 2322 | source-map@0.4.x: 2323 | version "0.4.4" 2324 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 2325 | dependencies: 2326 | amdefine ">=0.0.4" 2327 | 2328 | source-map@~0.1.7: 2329 | version "0.1.43" 2330 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.1.43.tgz#c24bc146ca517c1471f5dacbe2571b2b7f9e3346" 2331 | dependencies: 2332 | amdefine ">=0.0.4" 2333 | 2334 | source-map@~0.5.1: 2335 | version "0.5.7" 2336 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2337 | 2338 | spdx-correct@~1.0.0: 2339 | version "1.0.2" 2340 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2341 | dependencies: 2342 | spdx-license-ids "^1.0.2" 2343 | 2344 | spdx-expression-parse@~1.0.0: 2345 | version "1.0.4" 2346 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2347 | 2348 | spdx-license-ids@^1.0.2: 2349 | version "1.2.2" 2350 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2351 | 2352 | sprintf-js@~1.0.2: 2353 | version "1.0.3" 2354 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2355 | 2356 | stack-trace@0.0.x: 2357 | version "0.0.10" 2358 | resolved "https://registry.yarnpkg.com/stack-trace/-/stack-trace-0.0.10.tgz#547c70b347e8d32b4e108ea1a2a159e5fdde19c0" 2359 | 2360 | standard-engine@~5.2.0: 2361 | version "5.2.0" 2362 | resolved "https://registry.yarnpkg.com/standard-engine/-/standard-engine-5.2.0.tgz#400660ae5acce8afd4db60ff2214a9190ad790a3" 2363 | dependencies: 2364 | deglob "^2.0.0" 2365 | find-root "^1.0.0" 2366 | get-stdin "^5.0.1" 2367 | home-or-tmp "^2.0.0" 2368 | minimist "^1.1.0" 2369 | pkg-config "^1.0.1" 2370 | 2371 | standard@^8.6.0: 2372 | version "8.6.0" 2373 | resolved "https://registry.yarnpkg.com/standard/-/standard-8.6.0.tgz#635132be7bfb567c2921005f30f9e350e4752aad" 2374 | dependencies: 2375 | eslint "~3.10.2" 2376 | eslint-config-standard "6.2.1" 2377 | eslint-config-standard-jsx "3.2.0" 2378 | eslint-plugin-promise "~3.4.0" 2379 | eslint-plugin-react "~6.7.1" 2380 | eslint-plugin-standard "~2.0.1" 2381 | standard-engine "~5.2.0" 2382 | 2383 | "statuses@>= 1.3.1 < 2", statuses@~1.3.1: 2384 | version "1.3.1" 2385 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" 2386 | 2387 | string-width@^1.0.1: 2388 | version "1.0.2" 2389 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2390 | dependencies: 2391 | code-point-at "^1.0.0" 2392 | is-fullwidth-code-point "^1.0.0" 2393 | strip-ansi "^3.0.0" 2394 | 2395 | string-width@^2.0.0: 2396 | version "2.0.0" 2397 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 2398 | dependencies: 2399 | is-fullwidth-code-point "^2.0.0" 2400 | strip-ansi "^3.0.0" 2401 | 2402 | string-width@^2.1.0: 2403 | version "2.1.1" 2404 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 2405 | dependencies: 2406 | is-fullwidth-code-point "^2.0.0" 2407 | strip-ansi "^4.0.0" 2408 | 2409 | string.prototype.trim@~1.1.2: 2410 | version "1.1.2" 2411 | resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.1.2.tgz#d04de2c89e137f4d7d206f086b5ed2fae6be8cea" 2412 | dependencies: 2413 | define-properties "^1.1.2" 2414 | es-abstract "^1.5.0" 2415 | function-bind "^1.0.2" 2416 | 2417 | string_decoder@~0.10.x: 2418 | version "0.10.31" 2419 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 2420 | 2421 | string_decoder@~1.0.3: 2422 | version "1.0.3" 2423 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 2424 | dependencies: 2425 | safe-buffer "~5.1.0" 2426 | 2427 | strip-ansi@^3.0.0: 2428 | version "3.0.1" 2429 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2430 | dependencies: 2431 | ansi-regex "^2.0.0" 2432 | 2433 | strip-ansi@^4.0.0: 2434 | version "4.0.0" 2435 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 2436 | dependencies: 2437 | ansi-regex "^3.0.0" 2438 | 2439 | strip-bom@^2.0.0: 2440 | version "2.0.0" 2441 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2442 | dependencies: 2443 | is-utf8 "^0.2.0" 2444 | 2445 | strip-bom@^3.0.0: 2446 | version "3.0.0" 2447 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2448 | 2449 | strip-indent@^1.0.1: 2450 | version "1.0.1" 2451 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 2452 | dependencies: 2453 | get-stdin "^4.0.1" 2454 | 2455 | strip-json-comments@~1.0.1: 2456 | version "1.0.4" 2457 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91" 2458 | 2459 | strip-json-comments@~2.0.1: 2460 | version "2.0.1" 2461 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2462 | 2463 | superagent@^3.5.0: 2464 | version "3.5.0" 2465 | resolved "https://registry.yarnpkg.com/superagent/-/superagent-3.5.0.tgz#56872b8e1ee6de994035ada2e53266899af95a6d" 2466 | dependencies: 2467 | component-emitter "^1.2.0" 2468 | cookiejar "^2.0.6" 2469 | debug "^2.2.0" 2470 | extend "^3.0.0" 2471 | form-data "^2.1.1" 2472 | formidable "^1.1.1" 2473 | methods "^1.1.1" 2474 | mime "^1.3.4" 2475 | qs "^6.1.0" 2476 | readable-stream "^2.0.5" 2477 | 2478 | supports-color@^2.0.0: 2479 | version "2.0.0" 2480 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2481 | 2482 | supports-color@^3.1.2: 2483 | version "3.2.3" 2484 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 2485 | dependencies: 2486 | has-flag "^1.0.0" 2487 | 2488 | supports-color@^4.0.0: 2489 | version "4.4.0" 2490 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.4.0.tgz#883f7ddabc165142b2a61427f3352ded195d1a3e" 2491 | dependencies: 2492 | has-flag "^2.0.0" 2493 | 2494 | symbol-observable@^1.0.1: 2495 | version "1.0.4" 2496 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d" 2497 | 2498 | table@^3.7.8: 2499 | version "3.8.3" 2500 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" 2501 | dependencies: 2502 | ajv "^4.7.0" 2503 | ajv-keywords "^1.0.0" 2504 | chalk "^1.1.1" 2505 | lodash "^4.0.0" 2506 | slice-ansi "0.0.4" 2507 | string-width "^2.0.0" 2508 | 2509 | table@^4.0.1: 2510 | version "4.0.1" 2511 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.1.tgz#a8116c133fac2c61f4a420ab6cdf5c4d61f0e435" 2512 | dependencies: 2513 | ajv "^4.7.0" 2514 | ajv-keywords "^1.0.0" 2515 | chalk "^1.1.1" 2516 | lodash "^4.0.0" 2517 | slice-ansi "0.0.4" 2518 | string-width "^2.0.0" 2519 | 2520 | tap-nyan@^1.1.0: 2521 | version "1.1.0" 2522 | resolved "https://registry.yarnpkg.com/tap-nyan/-/tap-nyan-1.1.0.tgz#2b8d13a1f9ca51c1b3ada0c6ccdb1177d2065bb0" 2523 | dependencies: 2524 | chalk "^1.1.3" 2525 | duplexer2 "^0.1.4" 2526 | supports-color "^3.1.2" 2527 | tap-parser "^3.0.3" 2528 | 2529 | tap-parser@^3.0.3: 2530 | version "3.0.5" 2531 | resolved "https://registry.yarnpkg.com/tap-parser/-/tap-parser-3.0.5.tgz#b947f69e0b3e53d4b92011f6cc552e16dadc7ec9" 2532 | dependencies: 2533 | events-to-array "^1.0.1" 2534 | js-yaml "^3.2.7" 2535 | optionalDependencies: 2536 | readable-stream "^2" 2537 | 2538 | "tape@>=2.0.0 <5.0.0": 2539 | version "4.6.3" 2540 | resolved "https://registry.yarnpkg.com/tape/-/tape-4.6.3.tgz#637e77581e9ab2ce17577e9bd4ce4f575806d8b6" 2541 | dependencies: 2542 | deep-equal "~1.0.1" 2543 | defined "~1.0.0" 2544 | for-each "~0.3.2" 2545 | function-bind "~1.1.0" 2546 | glob "~7.1.1" 2547 | has "~1.0.1" 2548 | inherits "~2.0.3" 2549 | minimist "~1.2.0" 2550 | object-inspect "~1.2.1" 2551 | resolve "~1.1.7" 2552 | resumer "~0.0.0" 2553 | string.prototype.trim "~1.1.2" 2554 | through "~2.3.8" 2555 | 2556 | text-encoding@0.6.4, text-encoding@^0.6.4: 2557 | version "0.6.4" 2558 | resolved "https://registry.yarnpkg.com/text-encoding/-/text-encoding-0.6.4.tgz#e399a982257a276dae428bb92845cb71bdc26d19" 2559 | 2560 | text-table@~0.2.0: 2561 | version "0.2.0" 2562 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 2563 | 2564 | through@^2.3.6, through@~2.3.4, through@~2.3.8: 2565 | version "2.3.8" 2566 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 2567 | 2568 | timespan@2.x: 2569 | version "2.3.0" 2570 | resolved "https://registry.yarnpkg.com/timespan/-/timespan-2.3.0.tgz#4902ce040bd13d845c8f59b27e9d59bad6f39929" 2571 | 2572 | tmp@^0.0.33: 2573 | version "0.0.33" 2574 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 2575 | dependencies: 2576 | os-tmpdir "~1.0.2" 2577 | 2578 | tmpl@1.0.x: 2579 | version "1.0.4" 2580 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 2581 | 2582 | to-fast-properties@^2.0.0: 2583 | version "2.0.0" 2584 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 2585 | 2586 | transformers@2.1.0: 2587 | version "2.1.0" 2588 | resolved "https://registry.yarnpkg.com/transformers/-/transformers-2.1.0.tgz#5d23cb35561dd85dc67fb8482309b47d53cce9a7" 2589 | dependencies: 2590 | css "~1.0.8" 2591 | promise "~2.0" 2592 | uglify-js "~2.2.5" 2593 | 2594 | trim-newlines@^1.0.0: 2595 | version "1.0.0" 2596 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 2597 | 2598 | tryit@^1.0.1: 2599 | version "1.0.3" 2600 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 2601 | 2602 | type-check@~0.3.2: 2603 | version "0.3.2" 2604 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 2605 | dependencies: 2606 | prelude-ls "~1.1.2" 2607 | 2608 | type-detect@^4.0.0: 2609 | version "4.0.3" 2610 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.3.tgz#0e3f2670b44099b0b46c284d136a7ef49c74c2ea" 2611 | 2612 | type-is@~1.6.14: 2613 | version "1.6.14" 2614 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.14.tgz#e219639c17ded1ca0789092dd54a03826b817cb2" 2615 | dependencies: 2616 | media-typer "0.3.0" 2617 | mime-types "~2.1.13" 2618 | 2619 | typedarray@^0.0.6: 2620 | version "0.0.6" 2621 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 2622 | 2623 | uglify-js@1.x: 2624 | version "1.3.5" 2625 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-1.3.5.tgz#4b5bfff9186effbaa888e4c9e94bd9fc4c94929d" 2626 | 2627 | uglify-js@^2.4.19: 2628 | version "2.8.29" 2629 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 2630 | dependencies: 2631 | source-map "~0.5.1" 2632 | yargs "~3.10.0" 2633 | optionalDependencies: 2634 | uglify-to-browserify "~1.0.0" 2635 | 2636 | uglify-js@~2.2.5: 2637 | version "2.2.5" 2638 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.2.5.tgz#a6e02a70d839792b9780488b7b8b184c095c99c7" 2639 | dependencies: 2640 | optimist "~0.3.5" 2641 | source-map "~0.1.7" 2642 | 2643 | uglify-to-browserify@~1.0.0: 2644 | version "1.0.2" 2645 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 2646 | 2647 | uniq@^1.0.1: 2648 | version "1.0.1" 2649 | resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" 2650 | 2651 | unpipe@~1.0.0: 2652 | version "1.0.0" 2653 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 2654 | 2655 | user-home@^2.0.0: 2656 | version "2.0.0" 2657 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 2658 | dependencies: 2659 | os-homedir "^1.0.0" 2660 | 2661 | util-deprecate@~1.0.1: 2662 | version "1.0.2" 2663 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2664 | 2665 | utils-merge@1.0.0: 2666 | version "1.0.0" 2667 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.0.tgz#0294fb922bb9375153541c4f7096231f287c8af8" 2668 | 2669 | validate-npm-package-license@^3.0.1: 2670 | version "3.0.1" 2671 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 2672 | dependencies: 2673 | spdx-correct "~1.0.0" 2674 | spdx-expression-parse "~1.0.0" 2675 | 2676 | vary@~1.1.0: 2677 | version "1.1.0" 2678 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.0.tgz#e1e5affbbd16ae768dd2674394b9ad3022653140" 2679 | 2680 | void-elements@~2.0.1: 2681 | version "2.0.1" 2682 | resolved "https://registry.yarnpkg.com/void-elements/-/void-elements-2.0.1.tgz#c066afb582bb1cb4128d60ea92392e94d5e9dbec" 2683 | 2684 | walker@1.x: 2685 | version "1.0.7" 2686 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 2687 | dependencies: 2688 | makeerror "1.0.x" 2689 | 2690 | which@^1.2.9: 2691 | version "1.3.0" 2692 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 2693 | dependencies: 2694 | isexe "^2.0.0" 2695 | 2696 | window-size@0.1.0: 2697 | version "0.1.0" 2698 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 2699 | 2700 | winston@*: 2701 | version "2.3.1" 2702 | resolved "https://registry.yarnpkg.com/winston/-/winston-2.3.1.tgz#0b48420d978c01804cf0230b648861598225a119" 2703 | dependencies: 2704 | async "~1.0.0" 2705 | colors "1.0.x" 2706 | cycle "1.0.x" 2707 | eyes "0.1.x" 2708 | isstream "0.1.x" 2709 | stack-trace "0.0.x" 2710 | 2711 | with@~4.0.0: 2712 | version "4.0.3" 2713 | resolved "https://registry.yarnpkg.com/with/-/with-4.0.3.tgz#eefd154e9e79d2c8d3417b647a8f14d9fecce14e" 2714 | dependencies: 2715 | acorn "^1.0.1" 2716 | acorn-globals "^1.0.3" 2717 | 2718 | wordwrap@0.0.2: 2719 | version "0.0.2" 2720 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 2721 | 2722 | wordwrap@~0.0.2: 2723 | version "0.0.3" 2724 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 2725 | 2726 | wordwrap@~1.0.0: 2727 | version "1.0.0" 2728 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 2729 | 2730 | wrappy@1: 2731 | version "1.0.2" 2732 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2733 | 2734 | wrench@1.3.x: 2735 | version "1.3.9" 2736 | resolved "https://registry.yarnpkg.com/wrench/-/wrench-1.3.9.tgz#6f13ec35145317eb292ca5f6531391b244111411" 2737 | 2738 | write@^0.2.1: 2739 | version "0.2.1" 2740 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 2741 | dependencies: 2742 | mkdirp "^0.5.1" 2743 | 2744 | xtend@^4.0.0, xtend@^4.0.1: 2745 | version "4.0.1" 2746 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2747 | 2748 | yallist@^2.1.2: 2749 | version "2.1.2" 2750 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 2751 | 2752 | yargs@~3.10.0: 2753 | version "3.10.0" 2754 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 2755 | dependencies: 2756 | camelcase "^1.0.2" 2757 | cliui "^2.1.0" 2758 | decamelize "^1.0.0" 2759 | window-size "0.1.0" 2760 | --------------------------------------------------------------------------------