├── .gitignore ├── LICENSE ├── README.md ├── index.js ├── package.json ├── test.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | node_modules 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2017 Sam Gluck 2 | 3 | MIT License 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining 6 | a copy of this software and associated documentation files (the 7 | "Software"), to deal in the Software without restriction, including 8 | without limitation the rights to use, copy, modify, merge, publish, 9 | distribute, sublicense, and/or sell copies of the Software, and to 10 | permit persons to whom the Software is furnished to do so, subject to 11 | the following conditions: 12 | 13 | The above copyright notice and this permission notice shall be 14 | included in all copies or substantial portions of the Software. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 17 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 18 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 19 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 20 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 21 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 22 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # carbonate 2 | 3 | > 🎨 colourful sprintf 4 | 5 | Made with ❤ at [@outlandish](http://www.twitter.com/outlandish) 6 | 7 | npm version 8 | [![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg)](http://standardjs.com/) 9 | 10 | ```js 11 | sprintf('I do not like %s(green) and ham.', 'green eggs') 12 | sprintf('I do not like them, %s(yellow.bold.underline).', 'Sam-I-am') 13 | ``` 14 | 15 | 🍪 Give some colour to your sprintf strings with [chalk](https://github.com/chalk/chalk). 16 | 17 | ✨ Written for ES2015 environments. 18 | 19 | 👉 Use your preferred bundler and transpiler as required. 20 | 21 | ## Install 22 | 23 | ```sh 24 | npm install --save carbonate 25 | ``` 26 | 27 | ```sh 28 | yarn add carbonate 29 | ``` 30 | 31 | ## Import 32 | 33 | ```js 34 | // ES2015 35 | import sprintf from 'carbonate' 36 | ``` 37 | 38 | ```js 39 | // CommonJS 40 | var sprintf = require('carbonate') 41 | ``` 42 | 43 | ## Usage 44 | 45 | ### `sprintf(str[, ...values]) : String` 46 | 47 | Format a string with values. 48 | 49 | - __str__ {String} The string to format 50 | - [__values__] {Any} Values to interpolate 51 | 52 | Returns a string. 53 | 54 | Examples: 55 | 56 | ```js 57 | // simple colour 58 | sprintf('I do not like %s(green) and ham.', 'green eggs') 59 | 60 | // use chalk's chaining for bold, etc. 61 | sprintf('I do not like them, %s(yellow.bold.underline).', 'Sam-I-am') 62 | ``` 63 | 64 | ### `sprintf.log(str[, ...values])` 65 | 66 | Format and console.log a string. 67 | 68 | - __str__ {String} The string to format 69 | - [__values__] {Any} Values to interpolate 70 | 71 | ### Type specifiers 72 | 73 | All specifiers in [`sprintf.js`](https://github.com/alexei/sprintf.js) are available. 74 | 75 | ## Contributing 76 | 77 | All pull requests and issues welcome! 78 | 79 | If you're not sure how, check out the [great video tutorials on egghead.io](http://bit.ly/2aVzthz)! 80 | 81 | ## License 82 | 83 | MIT © [Sam Gluck](github.com/sdgluck) 84 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const chalk = require('chalk') 4 | 5 | const tmplRe = /%([bcijefostTuvxX])(\(([a-zA-Z.]+)\))?/g 6 | 7 | const formatFns = { 8 | b: (v) => parseInt(v, 10).toString(2), 9 | c: (v) => String.fromCharCode(parseInt(v, 10)), 10 | i: (v) => parseInt(v, 10), 11 | j: (v) => JSON.stringify(v), 12 | e: (v) => parseFloat(v).toExponential(), 13 | f: (v) => parseFloat(v), 14 | o: (v) => v.toString(8), 15 | s: (v) => String(v), 16 | t: (v) => String(!!v), 17 | T: (v) => type(v), 18 | u: (v) => parseInt(v, 10) >>> 0, 19 | v: (v) => v.valueOf(), 20 | x: (v) => parseInt(v, 10).toString(16), 21 | X: (v) => parseInt(v, 10).toString(16).toUpperCase() 22 | } 23 | 24 | function type (v) { 25 | if (Array.isArray(v)) return 'array' 26 | if (typeof v === 'number') return 'number' 27 | if (typeof v === 'string') return 'string' 28 | if (v === null) return 'null' 29 | return typeof v 30 | } 31 | 32 | function carbonate (input) { 33 | if (typeof input !== 'string') { 34 | throw new Error(`Expecting template to be a string, got ${typeof input}.`) 35 | } 36 | 37 | const vars = Array.prototype.splice.call(arguments, 1) 38 | let interpolated = input 39 | let i = -1 40 | let matches 41 | 42 | while ((matches = tmplRe.exec(interpolated)) !== null) { 43 | i++ 44 | 45 | if (typeof vars[i] === 'undefined') { 46 | return 47 | } 48 | 49 | const formatter = formatFns[matches[1]] 50 | const start = matches.index 51 | const end = matches.index + matches[0].length 52 | const seen = ['chalk'] 53 | 54 | const fn = matches[3] ? matches[3].split('.').reduce((chain, prop) => { 55 | seen.push(prop) 56 | 57 | if (!chain[prop]) { 58 | throw new Error(`[carbonate] ${seen.join('.')} does not exist.`) 59 | } 60 | 61 | return chain[prop] 62 | }, chalk) : (v) => v 63 | 64 | if (!formatter) { 65 | throw new Error(`[carbonate] unrecognised type specifier "${matches[1]}".`) 66 | } 67 | 68 | let newStr = interpolated.substr(0, start) 69 | newStr += fn(formatter(vars[i])) 70 | newStr += interpolated.substr(end) 71 | interpolated = newStr 72 | } 73 | 74 | return interpolated 75 | } 76 | 77 | module.exports = carbonate 78 | 79 | module.exports.log = function () { 80 | const interpolated = carbonate.apply(null, arguments) 81 | console.log(interpolated) 82 | } 83 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "carbonate", 3 | "version": "1.0.2", 4 | "description": "colourful sprintf", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "jest" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/sdgluck/carbonate.git" 12 | }, 13 | "keywords": [ 14 | "chalk", 15 | "carbonate", 16 | "colour", 17 | "string", 18 | "str", 19 | "color", 20 | "colours", 21 | "colors" 22 | ], 23 | "author": "Sam Gluck ", 24 | "license": "MIT", 25 | "bugs": { 26 | "url": "https://github.com/sdgluck/carbonate/issues" 27 | }, 28 | "homepage": "https://github.com/sdgluck/carbonate#readme", 29 | "dependencies": { 30 | "chalk": "^1.1.3", 31 | "jest": "^19.0.2" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- 1 | const chalk = require('chalk') 2 | const sprintf = require('./index') 3 | 4 | test('handles no colour', () => { 5 | const str = sprintf('Hello %s, how are you?', 'Sam') 6 | expect(str).toBe('Hello Sam, how are you?') 7 | }) 8 | 9 | test('handles single colour', () => { 10 | const str = sprintf('Hello %s(green), how are you?', 'Sam') 11 | expect(str).toBe(`Hello ${chalk.green('Sam')}, how are you?`) 12 | }) 13 | 14 | test('handles chalk chains', () => { 15 | const str = sprintf('Hello %s(green.underline), how are you?', 'Sam') 16 | expect(str).toBe(`Hello ${chalk.green.underline('Sam')}, how are you?`) 17 | }) 18 | 19 | test('handles multiple placeholders', () => { 20 | const str = sprintf('Hello %s(green.underline.bold), how are you %s(green.underline.bold)?', 'Sam', 'today') 21 | expect(str).toBe(`Hello ${chalk.green.underline.bold('Sam')}, how are you ${chalk.green.underline.bold('today')}?`) 22 | }) 23 | 24 | test('multiple with and without colour', () => { 25 | const str = sprintf('Hello %s, how are you %s(green.underline.bold)?', 'Sam', 'today') 26 | expect(str).toBe(`Hello Sam, how are you ${chalk.green.underline.bold('today')}?`) 27 | }) 28 | 29 | test('works with different specifiers', () => { 30 | const results = { 31 | b: [100, '1100100'], 32 | c: [97, 'a'], 33 | i: [10, '10'], 34 | j: [{a: 1}, '{"a":1}'], 35 | e: [100, '1e+2'], 36 | f: [10.1, '10.1'], 37 | o: [10, '12'], 38 | s: ['hi', 'hi'], 39 | t: [true, 'true'], 40 | T: [[], 'array'], 41 | u: [0o100, '64'], 42 | v: [{valueOf: () => 100}, '100'], 43 | x: [100, '64'], 44 | X: [1000, '3E8'] 45 | } 46 | 47 | Object.keys(results).forEach((specifier) => { 48 | const [input, output] = results[specifier] 49 | const str = sprintf('%' + specifier, input) 50 | expect(str).toEqual(output) 51 | }) 52 | }) 53 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | abab@^1.0.3: 4 | version "1.0.3" 5 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.3.tgz#b81de5f7274ec4e756d797cd834f303642724e5d" 6 | 7 | acorn-globals@^3.1.0: 8 | version "3.1.0" 9 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" 10 | dependencies: 11 | acorn "^4.0.4" 12 | 13 | acorn@^4.0.4: 14 | version "4.0.11" 15 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.11.tgz#edcda3bd937e7556410d42ed5860f67399c794c0" 16 | 17 | ajv@^4.9.1: 18 | version "4.11.7" 19 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.7.tgz#8655a5d86d0824985cc471a1d913fb6729a0ec48" 20 | dependencies: 21 | co "^4.6.0" 22 | json-stable-stringify "^1.0.1" 23 | 24 | align-text@^0.1.1, align-text@^0.1.3: 25 | version "0.1.4" 26 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 27 | dependencies: 28 | kind-of "^3.0.2" 29 | longest "^1.0.1" 30 | repeat-string "^1.5.2" 31 | 32 | amdefine@>=0.0.4: 33 | version "1.0.1" 34 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 35 | 36 | ansi-escapes@^1.4.0: 37 | version "1.4.0" 38 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 39 | 40 | ansi-regex@^2.0.0: 41 | version "2.1.1" 42 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 43 | 44 | ansi-styles@^2.2.1: 45 | version "2.2.1" 46 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 47 | 48 | ansi-styles@^3.0.0: 49 | version "3.0.0" 50 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.0.0.tgz#5404e93a544c4fec7f048262977bebfe3155e0c1" 51 | dependencies: 52 | color-convert "^1.0.0" 53 | 54 | anymatch@^1.3.0: 55 | version "1.3.0" 56 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 57 | dependencies: 58 | arrify "^1.0.0" 59 | micromatch "^2.1.5" 60 | 61 | append-transform@^0.4.0: 62 | version "0.4.0" 63 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 64 | dependencies: 65 | default-require-extensions "^1.0.0" 66 | 67 | argparse@^1.0.7: 68 | version "1.0.9" 69 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 70 | dependencies: 71 | sprintf-js "~1.0.2" 72 | 73 | arr-diff@^2.0.0: 74 | version "2.0.0" 75 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 76 | dependencies: 77 | arr-flatten "^1.0.1" 78 | 79 | arr-flatten@^1.0.1: 80 | version "1.0.3" 81 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.3.tgz#a274ed85ac08849b6bd7847c4580745dc51adfb1" 82 | 83 | array-equal@^1.0.0: 84 | version "1.0.0" 85 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 86 | 87 | array-unique@^0.2.1: 88 | version "0.2.1" 89 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 90 | 91 | arrify@^1.0.0, arrify@^1.0.1: 92 | version "1.0.1" 93 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 94 | 95 | asn1@~0.2.3: 96 | version "0.2.3" 97 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 98 | 99 | assert-plus@^0.2.0: 100 | version "0.2.0" 101 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 102 | 103 | assert-plus@^1.0.0, assert-plus@1.0.0: 104 | version "1.0.0" 105 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 106 | 107 | async@^1.4.0: 108 | version "1.5.2" 109 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 110 | 111 | async@^2.1.4: 112 | version "2.3.0" 113 | resolved "https://registry.yarnpkg.com/async/-/async-2.3.0.tgz#1013d1051047dd320fe24e494d5c66ecaf6147d9" 114 | dependencies: 115 | lodash "^4.14.0" 116 | 117 | asynckit@^0.4.0: 118 | version "0.4.0" 119 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 120 | 121 | aws-sign2@~0.6.0: 122 | version "0.6.0" 123 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 124 | 125 | aws4@^1.2.1: 126 | version "1.6.0" 127 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 128 | 129 | babel-code-frame@^6.22.0: 130 | version "6.22.0" 131 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 132 | dependencies: 133 | chalk "^1.1.0" 134 | esutils "^2.0.2" 135 | js-tokens "^3.0.0" 136 | 137 | babel-core@^6.0.0, babel-core@^6.24.1: 138 | version "6.24.1" 139 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.1.tgz#8c428564dce1e1f41fb337ec34f4c3b022b5ad83" 140 | dependencies: 141 | babel-code-frame "^6.22.0" 142 | babel-generator "^6.24.1" 143 | babel-helpers "^6.24.1" 144 | babel-messages "^6.23.0" 145 | babel-register "^6.24.1" 146 | babel-runtime "^6.22.0" 147 | babel-template "^6.24.1" 148 | babel-traverse "^6.24.1" 149 | babel-types "^6.24.1" 150 | babylon "^6.11.0" 151 | convert-source-map "^1.1.0" 152 | debug "^2.1.1" 153 | json5 "^0.5.0" 154 | lodash "^4.2.0" 155 | minimatch "^3.0.2" 156 | path-is-absolute "^1.0.0" 157 | private "^0.1.6" 158 | slash "^1.0.0" 159 | source-map "^0.5.0" 160 | 161 | babel-generator@^6.18.0, babel-generator@^6.24.1: 162 | version "6.24.1" 163 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.1.tgz#e715f486c58ded25649d888944d52aa07c5d9497" 164 | dependencies: 165 | babel-messages "^6.23.0" 166 | babel-runtime "^6.22.0" 167 | babel-types "^6.24.1" 168 | detect-indent "^4.0.0" 169 | jsesc "^1.3.0" 170 | lodash "^4.2.0" 171 | source-map "^0.5.0" 172 | trim-right "^1.0.1" 173 | 174 | babel-helpers@^6.24.1: 175 | version "6.24.1" 176 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 177 | dependencies: 178 | babel-runtime "^6.22.0" 179 | babel-template "^6.24.1" 180 | 181 | babel-jest@^19.0.0: 182 | version "19.0.0" 183 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-19.0.0.tgz#59323ced99a3a84d359da219ca881074ffc6ce3f" 184 | dependencies: 185 | babel-core "^6.0.0" 186 | babel-plugin-istanbul "^4.0.0" 187 | babel-preset-jest "^19.0.0" 188 | 189 | babel-messages@^6.23.0: 190 | version "6.23.0" 191 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 192 | dependencies: 193 | babel-runtime "^6.22.0" 194 | 195 | babel-plugin-istanbul@^4.0.0: 196 | version "4.1.1" 197 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.1.tgz#c12de0fc6fe42adfb16be56f1ad11e4a9782eca9" 198 | dependencies: 199 | find-up "^2.1.0" 200 | istanbul-lib-instrument "^1.6.2" 201 | test-exclude "^4.0.3" 202 | 203 | babel-plugin-jest-hoist@^19.0.0: 204 | version "19.0.0" 205 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-19.0.0.tgz#4ae2a04ea612a6e73651f3fde52c178991304bea" 206 | 207 | babel-preset-jest@^19.0.0: 208 | version "19.0.0" 209 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-19.0.0.tgz#22d67201d02324a195811288eb38294bb3cac396" 210 | dependencies: 211 | babel-plugin-jest-hoist "^19.0.0" 212 | 213 | babel-register@^6.24.1: 214 | version "6.24.1" 215 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 216 | dependencies: 217 | babel-core "^6.24.1" 218 | babel-runtime "^6.22.0" 219 | core-js "^2.4.0" 220 | home-or-tmp "^2.0.0" 221 | lodash "^4.2.0" 222 | mkdirp "^0.5.1" 223 | source-map-support "^0.4.2" 224 | 225 | babel-runtime@^6.22.0: 226 | version "6.23.0" 227 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 228 | dependencies: 229 | core-js "^2.4.0" 230 | regenerator-runtime "^0.10.0" 231 | 232 | babel-template@^6.16.0, babel-template@^6.24.1: 233 | version "6.24.1" 234 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.24.1.tgz#04ae514f1f93b3a2537f2a0f60a5a45fb8308333" 235 | dependencies: 236 | babel-runtime "^6.22.0" 237 | babel-traverse "^6.24.1" 238 | babel-types "^6.24.1" 239 | babylon "^6.11.0" 240 | lodash "^4.2.0" 241 | 242 | babel-traverse@^6.18.0, babel-traverse@^6.24.1: 243 | version "6.24.1" 244 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.24.1.tgz#ab36673fd356f9a0948659e7b338d5feadb31695" 245 | dependencies: 246 | babel-code-frame "^6.22.0" 247 | babel-messages "^6.23.0" 248 | babel-runtime "^6.22.0" 249 | babel-types "^6.24.1" 250 | babylon "^6.15.0" 251 | debug "^2.2.0" 252 | globals "^9.0.0" 253 | invariant "^2.2.0" 254 | lodash "^4.2.0" 255 | 256 | babel-types@^6.18.0, babel-types@^6.24.1: 257 | version "6.24.1" 258 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.24.1.tgz#a136879dc15b3606bda0d90c1fc74304c2ff0975" 259 | dependencies: 260 | babel-runtime "^6.22.0" 261 | esutils "^2.0.2" 262 | lodash "^4.2.0" 263 | to-fast-properties "^1.0.1" 264 | 265 | babylon@^6.11.0, babylon@^6.13.0, babylon@^6.15.0: 266 | version "6.17.0" 267 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.0.tgz#37da948878488b9c4e3c4038893fa3314b3fc932" 268 | 269 | balanced-match@^0.4.1: 270 | version "0.4.2" 271 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 272 | 273 | bcrypt-pbkdf@^1.0.0: 274 | version "1.0.1" 275 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 276 | dependencies: 277 | tweetnacl "^0.14.3" 278 | 279 | boom@2.x.x: 280 | version "2.10.1" 281 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 282 | dependencies: 283 | hoek "2.x.x" 284 | 285 | brace-expansion@^1.0.0: 286 | version "1.1.7" 287 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.7.tgz#3effc3c50e000531fb720eaff80f0ae8ef23cf59" 288 | dependencies: 289 | balanced-match "^0.4.1" 290 | concat-map "0.0.1" 291 | 292 | braces@^1.8.2: 293 | version "1.8.5" 294 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 295 | dependencies: 296 | expand-range "^1.8.1" 297 | preserve "^0.2.0" 298 | repeat-element "^1.1.2" 299 | 300 | browser-resolve@^1.11.2: 301 | version "1.11.2" 302 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 303 | dependencies: 304 | resolve "1.1.7" 305 | 306 | bser@^2.0.0: 307 | version "2.0.0" 308 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 309 | dependencies: 310 | node-int64 "^0.4.0" 311 | 312 | bser@1.0.2: 313 | version "1.0.2" 314 | resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" 315 | dependencies: 316 | node-int64 "^0.4.0" 317 | 318 | builtin-modules@^1.0.0: 319 | version "1.1.1" 320 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 321 | 322 | callsites@^2.0.0: 323 | version "2.0.0" 324 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 325 | 326 | camelcase@^1.0.2: 327 | version "1.2.1" 328 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 329 | 330 | camelcase@^3.0.0: 331 | version "3.0.0" 332 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 333 | 334 | caseless@~0.12.0: 335 | version "0.12.0" 336 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 337 | 338 | center-align@^0.1.1: 339 | version "0.1.3" 340 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 341 | dependencies: 342 | align-text "^0.1.3" 343 | lazy-cache "^1.0.3" 344 | 345 | chalk, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 346 | version "1.1.3" 347 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 348 | dependencies: 349 | ansi-styles "^2.2.1" 350 | escape-string-regexp "^1.0.2" 351 | has-ansi "^2.0.0" 352 | strip-ansi "^3.0.0" 353 | supports-color "^2.0.0" 354 | 355 | ci-info@^1.0.0: 356 | version "1.0.0" 357 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 358 | 359 | cliui@^2.1.0: 360 | version "2.1.0" 361 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 362 | dependencies: 363 | center-align "^0.1.1" 364 | right-align "^0.1.1" 365 | wordwrap "0.0.2" 366 | 367 | cliui@^3.2.0: 368 | version "3.2.0" 369 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 370 | dependencies: 371 | string-width "^1.0.1" 372 | strip-ansi "^3.0.1" 373 | wrap-ansi "^2.0.0" 374 | 375 | co@^4.6.0: 376 | version "4.6.0" 377 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 378 | 379 | code-point-at@^1.0.0: 380 | version "1.1.0" 381 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 382 | 383 | color-convert@^1.0.0: 384 | version "1.9.0" 385 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 386 | dependencies: 387 | color-name "^1.1.1" 388 | 389 | color-name@^1.1.1: 390 | version "1.1.2" 391 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.2.tgz#5c8ab72b64bd2215d617ae9559ebb148475cf98d" 392 | 393 | combined-stream@^1.0.5, combined-stream@~1.0.5: 394 | version "1.0.5" 395 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 396 | dependencies: 397 | delayed-stream "~1.0.0" 398 | 399 | concat-map@0.0.1: 400 | version "0.0.1" 401 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 402 | 403 | content-type-parser@^1.0.1: 404 | version "1.0.1" 405 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 406 | 407 | convert-source-map@^1.1.0: 408 | version "1.5.0" 409 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 410 | 411 | core-js@^2.4.0: 412 | version "2.4.1" 413 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 414 | 415 | cryptiles@2.x.x: 416 | version "2.0.5" 417 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 418 | dependencies: 419 | boom "2.x.x" 420 | 421 | "cssom@>= 0.3.2 < 0.4.0", cssom@0.3.x: 422 | version "0.3.2" 423 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 424 | 425 | "cssstyle@>= 0.2.37 < 0.3.0": 426 | version "0.2.37" 427 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 428 | dependencies: 429 | cssom "0.3.x" 430 | 431 | dashdash@^1.12.0: 432 | version "1.14.1" 433 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 434 | dependencies: 435 | assert-plus "^1.0.0" 436 | 437 | debug@^2.1.1, debug@^2.2.0: 438 | version "2.6.4" 439 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.4.tgz#7586a9b3c39741c0282ae33445c4e8ac74734fe0" 440 | dependencies: 441 | ms "0.7.3" 442 | 443 | decamelize@^1.0.0, decamelize@^1.1.1: 444 | version "1.2.0" 445 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 446 | 447 | deep-is@~0.1.3: 448 | version "0.1.3" 449 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 450 | 451 | default-require-extensions@^1.0.0: 452 | version "1.0.0" 453 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 454 | dependencies: 455 | strip-bom "^2.0.0" 456 | 457 | delayed-stream@~1.0.0: 458 | version "1.0.0" 459 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 460 | 461 | detect-indent@^4.0.0: 462 | version "4.0.0" 463 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 464 | dependencies: 465 | repeating "^2.0.0" 466 | 467 | diff@^3.0.0: 468 | version "3.2.0" 469 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 470 | 471 | ecc-jsbn@~0.1.1: 472 | version "0.1.1" 473 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 474 | dependencies: 475 | jsbn "~0.1.0" 476 | 477 | "errno@>=0.1.1 <0.2.0-0": 478 | version "0.1.4" 479 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 480 | dependencies: 481 | prr "~0.0.0" 482 | 483 | error-ex@^1.2.0: 484 | version "1.3.1" 485 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 486 | dependencies: 487 | is-arrayish "^0.2.1" 488 | 489 | escape-string-regexp@^1.0.2: 490 | version "1.0.5" 491 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 492 | 493 | escodegen@^1.6.1: 494 | version "1.8.1" 495 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 496 | dependencies: 497 | esprima "^2.7.1" 498 | estraverse "^1.9.1" 499 | esutils "^2.0.2" 500 | optionator "^0.8.1" 501 | optionalDependencies: 502 | source-map "~0.2.0" 503 | 504 | esprima@^2.7.1: 505 | version "2.7.3" 506 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 507 | 508 | esprima@^3.1.1: 509 | version "3.1.3" 510 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 511 | 512 | estraverse@^1.9.1: 513 | version "1.9.3" 514 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 515 | 516 | esutils@^2.0.2: 517 | version "2.0.2" 518 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 519 | 520 | exec-sh@^0.2.0: 521 | version "0.2.0" 522 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.0.tgz#14f75de3f20d286ef933099b2ce50a90359cef10" 523 | dependencies: 524 | merge "^1.1.3" 525 | 526 | expand-brackets@^0.1.4: 527 | version "0.1.5" 528 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 529 | dependencies: 530 | is-posix-bracket "^0.1.0" 531 | 532 | expand-range@^1.8.1: 533 | version "1.8.2" 534 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 535 | dependencies: 536 | fill-range "^2.1.0" 537 | 538 | extend@~3.0.0: 539 | version "3.0.0" 540 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 541 | 542 | extglob@^0.3.1: 543 | version "0.3.2" 544 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 545 | dependencies: 546 | is-extglob "^1.0.0" 547 | 548 | extsprintf@1.0.2: 549 | version "1.0.2" 550 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 551 | 552 | fast-levenshtein@~2.0.4: 553 | version "2.0.6" 554 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 555 | 556 | fb-watchman@^1.8.0: 557 | version "1.9.2" 558 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-1.9.2.tgz#a24cf47827f82d38fb59a69ad70b76e3b6ae7383" 559 | dependencies: 560 | bser "1.0.2" 561 | 562 | fb-watchman@^2.0.0: 563 | version "2.0.0" 564 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 565 | dependencies: 566 | bser "^2.0.0" 567 | 568 | filename-regex@^2.0.0: 569 | version "2.0.0" 570 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 571 | 572 | fileset@^2.0.2: 573 | version "2.0.3" 574 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 575 | dependencies: 576 | glob "^7.0.3" 577 | minimatch "^3.0.3" 578 | 579 | fill-range@^2.1.0: 580 | version "2.2.3" 581 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 582 | dependencies: 583 | is-number "^2.1.0" 584 | isobject "^2.0.0" 585 | randomatic "^1.1.3" 586 | repeat-element "^1.1.2" 587 | repeat-string "^1.5.2" 588 | 589 | find-up@^1.0.0: 590 | version "1.1.2" 591 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 592 | dependencies: 593 | path-exists "^2.0.0" 594 | pinkie-promise "^2.0.0" 595 | 596 | find-up@^2.1.0: 597 | version "2.1.0" 598 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 599 | dependencies: 600 | locate-path "^2.0.0" 601 | 602 | for-in@^1.0.1: 603 | version "1.0.2" 604 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 605 | 606 | for-own@^0.1.4: 607 | version "0.1.5" 608 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 609 | dependencies: 610 | for-in "^1.0.1" 611 | 612 | forever-agent@~0.6.1: 613 | version "0.6.1" 614 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 615 | 616 | form-data@~2.1.1: 617 | version "2.1.4" 618 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 619 | dependencies: 620 | asynckit "^0.4.0" 621 | combined-stream "^1.0.5" 622 | mime-types "^2.1.12" 623 | 624 | fs.realpath@^1.0.0: 625 | version "1.0.0" 626 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 627 | 628 | get-caller-file@^1.0.1: 629 | version "1.0.2" 630 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 631 | 632 | getpass@^0.1.1: 633 | version "0.1.6" 634 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 635 | dependencies: 636 | assert-plus "^1.0.0" 637 | 638 | glob-base@^0.3.0: 639 | version "0.3.0" 640 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 641 | dependencies: 642 | glob-parent "^2.0.0" 643 | is-glob "^2.0.0" 644 | 645 | glob-parent@^2.0.0: 646 | version "2.0.0" 647 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 648 | dependencies: 649 | is-glob "^2.0.0" 650 | 651 | glob@^7.0.3, glob@^7.0.5: 652 | version "7.1.1" 653 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 654 | dependencies: 655 | fs.realpath "^1.0.0" 656 | inflight "^1.0.4" 657 | inherits "2" 658 | minimatch "^3.0.2" 659 | once "^1.3.0" 660 | path-is-absolute "^1.0.0" 661 | 662 | globals@^9.0.0: 663 | version "9.17.0" 664 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" 665 | 666 | graceful-fs@^4.1.2, graceful-fs@^4.1.6: 667 | version "4.1.11" 668 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 669 | 670 | growly@^1.3.0: 671 | version "1.3.0" 672 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 673 | 674 | handlebars@^4.0.3: 675 | version "4.0.6" 676 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.6.tgz#2ce4484850537f9c97a8026d5399b935c4ed4ed7" 677 | dependencies: 678 | async "^1.4.0" 679 | optimist "^0.6.1" 680 | source-map "^0.4.4" 681 | optionalDependencies: 682 | uglify-js "^2.6" 683 | 684 | har-schema@^1.0.5: 685 | version "1.0.5" 686 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 687 | 688 | har-validator@~4.2.1: 689 | version "4.2.1" 690 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 691 | dependencies: 692 | ajv "^4.9.1" 693 | har-schema "^1.0.5" 694 | 695 | has-ansi@^2.0.0: 696 | version "2.0.0" 697 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 698 | dependencies: 699 | ansi-regex "^2.0.0" 700 | 701 | has-flag@^1.0.0: 702 | version "1.0.0" 703 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 704 | 705 | hawk@~3.1.3: 706 | version "3.1.3" 707 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 708 | dependencies: 709 | boom "2.x.x" 710 | cryptiles "2.x.x" 711 | hoek "2.x.x" 712 | sntp "1.x.x" 713 | 714 | hoek@2.x.x: 715 | version "2.16.3" 716 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 717 | 718 | home-or-tmp@^2.0.0: 719 | version "2.0.0" 720 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 721 | dependencies: 722 | os-homedir "^1.0.0" 723 | os-tmpdir "^1.0.1" 724 | 725 | hosted-git-info@^2.1.4: 726 | version "2.4.2" 727 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.2.tgz#0076b9f46a270506ddbaaea56496897460612a67" 728 | 729 | html-encoding-sniffer@^1.0.1: 730 | version "1.0.1" 731 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 732 | dependencies: 733 | whatwg-encoding "^1.0.1" 734 | 735 | http-signature@~1.1.0: 736 | version "1.1.1" 737 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 738 | dependencies: 739 | assert-plus "^0.2.0" 740 | jsprim "^1.2.2" 741 | sshpk "^1.7.0" 742 | 743 | iconv-lite@0.4.13: 744 | version "0.4.13" 745 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 746 | 747 | inflight@^1.0.4: 748 | version "1.0.6" 749 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 750 | dependencies: 751 | once "^1.3.0" 752 | wrappy "1" 753 | 754 | inherits@2: 755 | version "2.0.3" 756 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 757 | 758 | invariant@^2.2.0: 759 | version "2.2.2" 760 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 761 | dependencies: 762 | loose-envify "^1.0.0" 763 | 764 | invert-kv@^1.0.0: 765 | version "1.0.0" 766 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 767 | 768 | is-arrayish@^0.2.1: 769 | version "0.2.1" 770 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 771 | 772 | is-buffer@^1.0.2: 773 | version "1.1.5" 774 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 775 | 776 | is-builtin-module@^1.0.0: 777 | version "1.0.0" 778 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 779 | dependencies: 780 | builtin-modules "^1.0.0" 781 | 782 | is-ci@^1.0.9: 783 | version "1.0.10" 784 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 785 | dependencies: 786 | ci-info "^1.0.0" 787 | 788 | is-dotfile@^1.0.0: 789 | version "1.0.2" 790 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 791 | 792 | is-equal-shallow@^0.1.3: 793 | version "0.1.3" 794 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 795 | dependencies: 796 | is-primitive "^2.0.0" 797 | 798 | is-extendable@^0.1.1: 799 | version "0.1.1" 800 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 801 | 802 | is-extglob@^1.0.0: 803 | version "1.0.0" 804 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 805 | 806 | is-finite@^1.0.0: 807 | version "1.0.2" 808 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 809 | dependencies: 810 | number-is-nan "^1.0.0" 811 | 812 | is-fullwidth-code-point@^1.0.0: 813 | version "1.0.0" 814 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 815 | dependencies: 816 | number-is-nan "^1.0.0" 817 | 818 | is-glob@^2.0.0, is-glob@^2.0.1: 819 | version "2.0.1" 820 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 821 | dependencies: 822 | is-extglob "^1.0.0" 823 | 824 | is-number@^2.0.2, is-number@^2.1.0: 825 | version "2.1.0" 826 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 827 | dependencies: 828 | kind-of "^3.0.2" 829 | 830 | is-posix-bracket@^0.1.0: 831 | version "0.1.1" 832 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 833 | 834 | is-primitive@^2.0.0: 835 | version "2.0.0" 836 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 837 | 838 | is-typedarray@~1.0.0: 839 | version "1.0.0" 840 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 841 | 842 | is-utf8@^0.2.0: 843 | version "0.2.1" 844 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 845 | 846 | isarray@1.0.0: 847 | version "1.0.0" 848 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 849 | 850 | isexe@^2.0.0: 851 | version "2.0.0" 852 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 853 | 854 | isobject@^2.0.0: 855 | version "2.1.0" 856 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 857 | dependencies: 858 | isarray "1.0.0" 859 | 860 | isstream@~0.1.2: 861 | version "0.1.2" 862 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 863 | 864 | istanbul-api@^1.1.0-alpha.1: 865 | version "1.1.7" 866 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.1.7.tgz#f6f37f09f8002b130f891c646b70ee4a8e7345ae" 867 | dependencies: 868 | async "^2.1.4" 869 | fileset "^2.0.2" 870 | istanbul-lib-coverage "^1.0.2" 871 | istanbul-lib-hook "^1.0.5" 872 | istanbul-lib-instrument "^1.7.0" 873 | istanbul-lib-report "^1.0.0" 874 | istanbul-lib-source-maps "^1.1.1" 875 | istanbul-reports "^1.0.2" 876 | js-yaml "^3.7.0" 877 | mkdirp "^0.5.1" 878 | once "^1.4.0" 879 | 880 | istanbul-lib-coverage@^1.0.0, istanbul-lib-coverage@^1.0.2: 881 | version "1.0.2" 882 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.0.2.tgz#87a0c015b6910651cb3b184814dfb339337e25e1" 883 | 884 | istanbul-lib-hook@^1.0.5: 885 | version "1.0.5" 886 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.5.tgz#6ca3d16d60c5f4082da39f7c5cd38ea8a772b88e" 887 | dependencies: 888 | append-transform "^0.4.0" 889 | 890 | istanbul-lib-instrument@^1.1.1, istanbul-lib-instrument@^1.6.2, istanbul-lib-instrument@^1.7.0: 891 | version "1.7.0" 892 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.0.tgz#b8e0dc25709bb44e17336ab47b7bb5c97c23f659" 893 | dependencies: 894 | babel-generator "^6.18.0" 895 | babel-template "^6.16.0" 896 | babel-traverse "^6.18.0" 897 | babel-types "^6.18.0" 898 | babylon "^6.13.0" 899 | istanbul-lib-coverage "^1.0.2" 900 | semver "^5.3.0" 901 | 902 | istanbul-lib-report@^1.0.0: 903 | version "1.0.0" 904 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.0.0.tgz#d83dac7f26566b521585569367fe84ccfc7aaecb" 905 | dependencies: 906 | istanbul-lib-coverage "^1.0.2" 907 | mkdirp "^0.5.1" 908 | path-parse "^1.0.5" 909 | supports-color "^3.1.2" 910 | 911 | istanbul-lib-source-maps@^1.1.1: 912 | version "1.1.1" 913 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.1.1.tgz#f8c8c2e8f2160d1d91526d97e5bd63b2079af71c" 914 | dependencies: 915 | istanbul-lib-coverage "^1.0.2" 916 | mkdirp "^0.5.1" 917 | rimraf "^2.4.4" 918 | source-map "^0.5.3" 919 | 920 | istanbul-reports@^1.0.2: 921 | version "1.0.2" 922 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.0.2.tgz#4e8366abe6fa746cc1cd6633f108de12cc6ac6fa" 923 | dependencies: 924 | handlebars "^4.0.3" 925 | 926 | jest: 927 | version "19.0.2" 928 | resolved "https://registry.yarnpkg.com/jest/-/jest-19.0.2.tgz#b794faaf8ff461e7388f28beef559a54f20b2c10" 929 | dependencies: 930 | jest-cli "^19.0.2" 931 | 932 | jest-changed-files@^19.0.2: 933 | version "19.0.2" 934 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-19.0.2.tgz#16c54c84c3270be408e06d2e8af3f3e37a885824" 935 | 936 | jest-cli@^19.0.2: 937 | version "19.0.2" 938 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-19.0.2.tgz#cc3620b62acac5f2d93a548cb6ef697d4ec85443" 939 | dependencies: 940 | ansi-escapes "^1.4.0" 941 | callsites "^2.0.0" 942 | chalk "^1.1.1" 943 | graceful-fs "^4.1.6" 944 | is-ci "^1.0.9" 945 | istanbul-api "^1.1.0-alpha.1" 946 | istanbul-lib-coverage "^1.0.0" 947 | istanbul-lib-instrument "^1.1.1" 948 | jest-changed-files "^19.0.2" 949 | jest-config "^19.0.2" 950 | jest-environment-jsdom "^19.0.2" 951 | jest-haste-map "^19.0.0" 952 | jest-jasmine2 "^19.0.2" 953 | jest-message-util "^19.0.0" 954 | jest-regex-util "^19.0.0" 955 | jest-resolve-dependencies "^19.0.0" 956 | jest-runtime "^19.0.2" 957 | jest-snapshot "^19.0.2" 958 | jest-util "^19.0.2" 959 | micromatch "^2.3.11" 960 | node-notifier "^5.0.1" 961 | slash "^1.0.0" 962 | string-length "^1.0.1" 963 | throat "^3.0.0" 964 | which "^1.1.1" 965 | worker-farm "^1.3.1" 966 | yargs "^6.3.0" 967 | 968 | jest-config@^19.0.2: 969 | version "19.0.2" 970 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-19.0.2.tgz#1b9bd2db0ddd16df61c2b10a54009e1768da6411" 971 | dependencies: 972 | chalk "^1.1.1" 973 | jest-environment-jsdom "^19.0.2" 974 | jest-environment-node "^19.0.2" 975 | jest-jasmine2 "^19.0.2" 976 | jest-regex-util "^19.0.0" 977 | jest-resolve "^19.0.2" 978 | jest-validate "^19.0.2" 979 | pretty-format "^19.0.0" 980 | 981 | jest-diff@^19.0.0: 982 | version "19.0.0" 983 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-19.0.0.tgz#d1563cfc56c8b60232988fbc05d4d16ed90f063c" 984 | dependencies: 985 | chalk "^1.1.3" 986 | diff "^3.0.0" 987 | jest-matcher-utils "^19.0.0" 988 | pretty-format "^19.0.0" 989 | 990 | jest-environment-jsdom@^19.0.2: 991 | version "19.0.2" 992 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-19.0.2.tgz#ceda859c4a4b94ab35e4de7dab54b926f293e4a3" 993 | dependencies: 994 | jest-mock "^19.0.0" 995 | jest-util "^19.0.2" 996 | jsdom "^9.11.0" 997 | 998 | jest-environment-node@^19.0.2: 999 | version "19.0.2" 1000 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-19.0.2.tgz#6e84079db87ed21d0c05e1f9669f207b116fe99b" 1001 | dependencies: 1002 | jest-mock "^19.0.0" 1003 | jest-util "^19.0.2" 1004 | 1005 | jest-file-exists@^19.0.0: 1006 | version "19.0.0" 1007 | resolved "https://registry.yarnpkg.com/jest-file-exists/-/jest-file-exists-19.0.0.tgz#cca2e587a11ec92e24cfeab3f8a94d657f3fceb8" 1008 | 1009 | jest-haste-map@^19.0.0: 1010 | version "19.0.1" 1011 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-19.0.1.tgz#7616222491275050c7af39dbeab0a57c32ef9652" 1012 | dependencies: 1013 | fb-watchman "^2.0.0" 1014 | graceful-fs "^4.1.6" 1015 | micromatch "^2.3.11" 1016 | sane "~1.5.0" 1017 | worker-farm "^1.3.1" 1018 | 1019 | jest-jasmine2@^19.0.2: 1020 | version "19.0.2" 1021 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-19.0.2.tgz#167991ac825981fb1a800af126e83afcca832c73" 1022 | dependencies: 1023 | graceful-fs "^4.1.6" 1024 | jest-matcher-utils "^19.0.0" 1025 | jest-matchers "^19.0.0" 1026 | jest-message-util "^19.0.0" 1027 | jest-snapshot "^19.0.2" 1028 | 1029 | jest-matcher-utils@^19.0.0: 1030 | version "19.0.0" 1031 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-19.0.0.tgz#5ecd9b63565d2b001f61fbf7ec4c7f537964564d" 1032 | dependencies: 1033 | chalk "^1.1.3" 1034 | pretty-format "^19.0.0" 1035 | 1036 | jest-matchers@^19.0.0: 1037 | version "19.0.0" 1038 | resolved "https://registry.yarnpkg.com/jest-matchers/-/jest-matchers-19.0.0.tgz#c74ecc6ebfec06f384767ba4d6fa4a42d6755754" 1039 | dependencies: 1040 | jest-diff "^19.0.0" 1041 | jest-matcher-utils "^19.0.0" 1042 | jest-message-util "^19.0.0" 1043 | jest-regex-util "^19.0.0" 1044 | 1045 | jest-message-util@^19.0.0: 1046 | version "19.0.0" 1047 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-19.0.0.tgz#721796b89c0e4d761606f9ba8cb828a3b6246416" 1048 | dependencies: 1049 | chalk "^1.1.1" 1050 | micromatch "^2.3.11" 1051 | 1052 | jest-mock@^19.0.0: 1053 | version "19.0.0" 1054 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-19.0.0.tgz#67038641e9607ab2ce08ec4a8cb83aabbc899d01" 1055 | 1056 | jest-regex-util@^19.0.0: 1057 | version "19.0.0" 1058 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-19.0.0.tgz#b7754587112aede1456510bb1f6afe74ef598691" 1059 | 1060 | jest-resolve-dependencies@^19.0.0: 1061 | version "19.0.0" 1062 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-19.0.0.tgz#a741ad1fa094140e64ecf2642a504f834ece22ee" 1063 | dependencies: 1064 | jest-file-exists "^19.0.0" 1065 | 1066 | jest-resolve@^19.0.2: 1067 | version "19.0.2" 1068 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-19.0.2.tgz#5793575de4f07aec32f7d7ff0c6c181963eefb3c" 1069 | dependencies: 1070 | browser-resolve "^1.11.2" 1071 | jest-haste-map "^19.0.0" 1072 | resolve "^1.2.0" 1073 | 1074 | jest-runtime@^19.0.2: 1075 | version "19.0.2" 1076 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-19.0.2.tgz#d9a43e72de416d27d196fd9c7940d98fe6685407" 1077 | dependencies: 1078 | babel-core "^6.0.0" 1079 | babel-jest "^19.0.0" 1080 | babel-plugin-istanbul "^4.0.0" 1081 | chalk "^1.1.3" 1082 | graceful-fs "^4.1.6" 1083 | jest-config "^19.0.2" 1084 | jest-file-exists "^19.0.0" 1085 | jest-haste-map "^19.0.0" 1086 | jest-regex-util "^19.0.0" 1087 | jest-resolve "^19.0.2" 1088 | jest-util "^19.0.2" 1089 | json-stable-stringify "^1.0.1" 1090 | micromatch "^2.3.11" 1091 | strip-bom "3.0.0" 1092 | yargs "^6.3.0" 1093 | 1094 | jest-snapshot@^19.0.2: 1095 | version "19.0.2" 1096 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-19.0.2.tgz#9c1b216214f7187c38bfd5c70b1efab16b0ff50b" 1097 | dependencies: 1098 | chalk "^1.1.3" 1099 | jest-diff "^19.0.0" 1100 | jest-file-exists "^19.0.0" 1101 | jest-matcher-utils "^19.0.0" 1102 | jest-util "^19.0.2" 1103 | natural-compare "^1.4.0" 1104 | pretty-format "^19.0.0" 1105 | 1106 | jest-util@^19.0.2: 1107 | version "19.0.2" 1108 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-19.0.2.tgz#e0a0232a2ab9e6b2b53668bdb3534c2b5977ed41" 1109 | dependencies: 1110 | chalk "^1.1.1" 1111 | graceful-fs "^4.1.6" 1112 | jest-file-exists "^19.0.0" 1113 | jest-message-util "^19.0.0" 1114 | jest-mock "^19.0.0" 1115 | jest-validate "^19.0.2" 1116 | leven "^2.0.0" 1117 | mkdirp "^0.5.1" 1118 | 1119 | jest-validate@^19.0.2: 1120 | version "19.0.2" 1121 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-19.0.2.tgz#dc534df5f1278d5b63df32b14241d4dbf7244c0c" 1122 | dependencies: 1123 | chalk "^1.1.1" 1124 | jest-matcher-utils "^19.0.0" 1125 | leven "^2.0.0" 1126 | pretty-format "^19.0.0" 1127 | 1128 | jodid25519@^1.0.0: 1129 | version "1.0.2" 1130 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 1131 | dependencies: 1132 | jsbn "~0.1.0" 1133 | 1134 | js-tokens@^3.0.0: 1135 | version "3.0.1" 1136 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 1137 | 1138 | js-yaml@^3.7.0: 1139 | version "3.8.3" 1140 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.3.tgz#33a05ec481c850c8875929166fe1beb61c728766" 1141 | dependencies: 1142 | argparse "^1.0.7" 1143 | esprima "^3.1.1" 1144 | 1145 | jsbn@~0.1.0: 1146 | version "0.1.1" 1147 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1148 | 1149 | jsdom@^9.11.0: 1150 | version "9.12.0" 1151 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 1152 | dependencies: 1153 | abab "^1.0.3" 1154 | acorn "^4.0.4" 1155 | acorn-globals "^3.1.0" 1156 | array-equal "^1.0.0" 1157 | content-type-parser "^1.0.1" 1158 | cssom ">= 0.3.2 < 0.4.0" 1159 | cssstyle ">= 0.2.37 < 0.3.0" 1160 | escodegen "^1.6.1" 1161 | html-encoding-sniffer "^1.0.1" 1162 | nwmatcher ">= 1.3.9 < 2.0.0" 1163 | parse5 "^1.5.1" 1164 | request "^2.79.0" 1165 | sax "^1.2.1" 1166 | symbol-tree "^3.2.1" 1167 | tough-cookie "^2.3.2" 1168 | webidl-conversions "^4.0.0" 1169 | whatwg-encoding "^1.0.1" 1170 | whatwg-url "^4.3.0" 1171 | xml-name-validator "^2.0.1" 1172 | 1173 | jsesc@^1.3.0: 1174 | version "1.3.0" 1175 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1176 | 1177 | json-schema@0.2.3: 1178 | version "0.2.3" 1179 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1180 | 1181 | json-stable-stringify@^1.0.1: 1182 | version "1.0.1" 1183 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1184 | dependencies: 1185 | jsonify "~0.0.0" 1186 | 1187 | json-stringify-safe@~5.0.1: 1188 | version "5.0.1" 1189 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1190 | 1191 | json5@^0.5.0: 1192 | version "0.5.1" 1193 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1194 | 1195 | jsonify@~0.0.0: 1196 | version "0.0.0" 1197 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1198 | 1199 | jsprim@^1.2.2: 1200 | version "1.4.0" 1201 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 1202 | dependencies: 1203 | assert-plus "1.0.0" 1204 | extsprintf "1.0.2" 1205 | json-schema "0.2.3" 1206 | verror "1.3.6" 1207 | 1208 | kind-of@^3.0.2: 1209 | version "3.1.0" 1210 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47" 1211 | dependencies: 1212 | is-buffer "^1.0.2" 1213 | 1214 | lazy-cache@^1.0.3: 1215 | version "1.0.4" 1216 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1217 | 1218 | lcid@^1.0.0: 1219 | version "1.0.0" 1220 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1221 | dependencies: 1222 | invert-kv "^1.0.0" 1223 | 1224 | leven@^2.0.0: 1225 | version "2.1.0" 1226 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 1227 | 1228 | levn@~0.3.0: 1229 | version "0.3.0" 1230 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1231 | dependencies: 1232 | prelude-ls "~1.1.2" 1233 | type-check "~0.3.2" 1234 | 1235 | load-json-file@^1.0.0: 1236 | version "1.1.0" 1237 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1238 | dependencies: 1239 | graceful-fs "^4.1.2" 1240 | parse-json "^2.2.0" 1241 | pify "^2.0.0" 1242 | pinkie-promise "^2.0.0" 1243 | strip-bom "^2.0.0" 1244 | 1245 | locate-path@^2.0.0: 1246 | version "2.0.0" 1247 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1248 | dependencies: 1249 | p-locate "^2.0.0" 1250 | path-exists "^3.0.0" 1251 | 1252 | lodash@^4.14.0, lodash@^4.2.0: 1253 | version "4.17.4" 1254 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1255 | 1256 | longest@^1.0.1: 1257 | version "1.0.1" 1258 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 1259 | 1260 | loose-envify@^1.0.0: 1261 | version "1.3.1" 1262 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1263 | dependencies: 1264 | js-tokens "^3.0.0" 1265 | 1266 | makeerror@1.0.x: 1267 | version "1.0.11" 1268 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 1269 | dependencies: 1270 | tmpl "1.0.x" 1271 | 1272 | merge@^1.1.3: 1273 | version "1.2.0" 1274 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 1275 | 1276 | micromatch@^2.1.5, micromatch@^2.3.11: 1277 | version "2.3.11" 1278 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1279 | dependencies: 1280 | arr-diff "^2.0.0" 1281 | array-unique "^0.2.1" 1282 | braces "^1.8.2" 1283 | expand-brackets "^0.1.4" 1284 | extglob "^0.3.1" 1285 | filename-regex "^2.0.0" 1286 | is-extglob "^1.0.0" 1287 | is-glob "^2.0.1" 1288 | kind-of "^3.0.2" 1289 | normalize-path "^2.0.1" 1290 | object.omit "^2.0.0" 1291 | parse-glob "^3.0.4" 1292 | regex-cache "^0.4.2" 1293 | 1294 | mime-db@~1.27.0: 1295 | version "1.27.0" 1296 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 1297 | 1298 | mime-types@^2.1.12, mime-types@~2.1.7: 1299 | version "2.1.15" 1300 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 1301 | dependencies: 1302 | mime-db "~1.27.0" 1303 | 1304 | minimatch@^3.0.2, minimatch@^3.0.3: 1305 | version "3.0.3" 1306 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 1307 | dependencies: 1308 | brace-expansion "^1.0.0" 1309 | 1310 | minimist@^1.1.1: 1311 | version "1.2.0" 1312 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1313 | 1314 | minimist@~0.0.1: 1315 | version "0.0.10" 1316 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 1317 | 1318 | minimist@0.0.8: 1319 | version "0.0.8" 1320 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1321 | 1322 | mkdirp@^0.5.1: 1323 | version "0.5.1" 1324 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1325 | dependencies: 1326 | minimist "0.0.8" 1327 | 1328 | ms@0.7.3: 1329 | version "0.7.3" 1330 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.3.tgz#708155a5e44e33f5fd0fc53e81d0d40a91be1fff" 1331 | 1332 | natural-compare@^1.4.0: 1333 | version "1.4.0" 1334 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1335 | 1336 | node-int64@^0.4.0: 1337 | version "0.4.0" 1338 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 1339 | 1340 | node-notifier@^5.0.1: 1341 | version "5.1.2" 1342 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" 1343 | dependencies: 1344 | growly "^1.3.0" 1345 | semver "^5.3.0" 1346 | shellwords "^0.1.0" 1347 | which "^1.2.12" 1348 | 1349 | normalize-package-data@^2.3.2: 1350 | version "2.3.8" 1351 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb" 1352 | dependencies: 1353 | hosted-git-info "^2.1.4" 1354 | is-builtin-module "^1.0.0" 1355 | semver "2 || 3 || 4 || 5" 1356 | validate-npm-package-license "^3.0.1" 1357 | 1358 | normalize-path@^2.0.1: 1359 | version "2.1.1" 1360 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1361 | dependencies: 1362 | remove-trailing-separator "^1.0.1" 1363 | 1364 | number-is-nan@^1.0.0: 1365 | version "1.0.1" 1366 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1367 | 1368 | "nwmatcher@>= 1.3.9 < 2.0.0": 1369 | version "1.3.9" 1370 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.3.9.tgz#8bab486ff7fa3dfd086656bbe8b17116d3692d2a" 1371 | 1372 | oauth-sign@~0.8.1: 1373 | version "0.8.2" 1374 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1375 | 1376 | object-assign@^4.1.0: 1377 | version "4.1.1" 1378 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1379 | 1380 | object.omit@^2.0.0: 1381 | version "2.0.1" 1382 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1383 | dependencies: 1384 | for-own "^0.1.4" 1385 | is-extendable "^0.1.1" 1386 | 1387 | once@^1.3.0, once@^1.4.0: 1388 | version "1.4.0" 1389 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1390 | dependencies: 1391 | wrappy "1" 1392 | 1393 | optimist@^0.6.1: 1394 | version "0.6.1" 1395 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 1396 | dependencies: 1397 | minimist "~0.0.1" 1398 | wordwrap "~0.0.2" 1399 | 1400 | optionator@^0.8.1: 1401 | version "0.8.2" 1402 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 1403 | dependencies: 1404 | deep-is "~0.1.3" 1405 | fast-levenshtein "~2.0.4" 1406 | levn "~0.3.0" 1407 | prelude-ls "~1.1.2" 1408 | type-check "~0.3.2" 1409 | wordwrap "~1.0.0" 1410 | 1411 | os-homedir@^1.0.0: 1412 | version "1.0.2" 1413 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1414 | 1415 | os-locale@^1.4.0: 1416 | version "1.4.0" 1417 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 1418 | dependencies: 1419 | lcid "^1.0.0" 1420 | 1421 | os-tmpdir@^1.0.1: 1422 | version "1.0.2" 1423 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1424 | 1425 | p-limit@^1.1.0: 1426 | version "1.1.0" 1427 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 1428 | 1429 | p-locate@^2.0.0: 1430 | version "2.0.0" 1431 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1432 | dependencies: 1433 | p-limit "^1.1.0" 1434 | 1435 | parse-glob@^3.0.4: 1436 | version "3.0.4" 1437 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1438 | dependencies: 1439 | glob-base "^0.3.0" 1440 | is-dotfile "^1.0.0" 1441 | is-extglob "^1.0.0" 1442 | is-glob "^2.0.0" 1443 | 1444 | parse-json@^2.2.0: 1445 | version "2.2.0" 1446 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1447 | dependencies: 1448 | error-ex "^1.2.0" 1449 | 1450 | parse5@^1.5.1: 1451 | version "1.5.1" 1452 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 1453 | 1454 | path-exists@^2.0.0: 1455 | version "2.1.0" 1456 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1457 | dependencies: 1458 | pinkie-promise "^2.0.0" 1459 | 1460 | path-exists@^3.0.0: 1461 | version "3.0.0" 1462 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1463 | 1464 | path-is-absolute@^1.0.0: 1465 | version "1.0.1" 1466 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1467 | 1468 | path-parse@^1.0.5: 1469 | version "1.0.5" 1470 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 1471 | 1472 | path-type@^1.0.0: 1473 | version "1.1.0" 1474 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 1475 | dependencies: 1476 | graceful-fs "^4.1.2" 1477 | pify "^2.0.0" 1478 | pinkie-promise "^2.0.0" 1479 | 1480 | performance-now@^0.2.0: 1481 | version "0.2.0" 1482 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 1483 | 1484 | pify@^2.0.0: 1485 | version "2.3.0" 1486 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1487 | 1488 | pinkie-promise@^2.0.0: 1489 | version "2.0.1" 1490 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1491 | dependencies: 1492 | pinkie "^2.0.0" 1493 | 1494 | pinkie@^2.0.0: 1495 | version "2.0.4" 1496 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1497 | 1498 | prelude-ls@~1.1.2: 1499 | version "1.1.2" 1500 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 1501 | 1502 | preserve@^0.2.0: 1503 | version "0.2.0" 1504 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1505 | 1506 | pretty-format@^19.0.0: 1507 | version "19.0.0" 1508 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-19.0.0.tgz#56530d32acb98a3fa4851c4e2b9d37b420684c84" 1509 | dependencies: 1510 | ansi-styles "^3.0.0" 1511 | 1512 | private@^0.1.6: 1513 | version "0.1.7" 1514 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 1515 | 1516 | prr@~0.0.0: 1517 | version "0.0.0" 1518 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 1519 | 1520 | punycode@^1.4.1: 1521 | version "1.4.1" 1522 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1523 | 1524 | qs@~6.4.0: 1525 | version "6.4.0" 1526 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 1527 | 1528 | randomatic@^1.1.3: 1529 | version "1.1.6" 1530 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 1531 | dependencies: 1532 | is-number "^2.0.2" 1533 | kind-of "^3.0.2" 1534 | 1535 | read-pkg-up@^1.0.1: 1536 | version "1.0.1" 1537 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 1538 | dependencies: 1539 | find-up "^1.0.0" 1540 | read-pkg "^1.0.0" 1541 | 1542 | read-pkg@^1.0.0: 1543 | version "1.1.0" 1544 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 1545 | dependencies: 1546 | load-json-file "^1.0.0" 1547 | normalize-package-data "^2.3.2" 1548 | path-type "^1.0.0" 1549 | 1550 | regenerator-runtime@^0.10.0: 1551 | version "0.10.3" 1552 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.3.tgz#8c4367a904b51ea62a908ac310bf99ff90a82a3e" 1553 | 1554 | regex-cache@^0.4.2: 1555 | version "0.4.3" 1556 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 1557 | dependencies: 1558 | is-equal-shallow "^0.1.3" 1559 | is-primitive "^2.0.0" 1560 | 1561 | remove-trailing-separator@^1.0.1: 1562 | version "1.0.1" 1563 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4" 1564 | 1565 | repeat-element@^1.1.2: 1566 | version "1.1.2" 1567 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1568 | 1569 | repeat-string@^1.5.2: 1570 | version "1.6.1" 1571 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1572 | 1573 | repeating@^2.0.0: 1574 | version "2.0.1" 1575 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1576 | dependencies: 1577 | is-finite "^1.0.0" 1578 | 1579 | request@^2.79.0: 1580 | version "2.81.0" 1581 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 1582 | dependencies: 1583 | aws-sign2 "~0.6.0" 1584 | aws4 "^1.2.1" 1585 | caseless "~0.12.0" 1586 | combined-stream "~1.0.5" 1587 | extend "~3.0.0" 1588 | forever-agent "~0.6.1" 1589 | form-data "~2.1.1" 1590 | har-validator "~4.2.1" 1591 | hawk "~3.1.3" 1592 | http-signature "~1.1.0" 1593 | is-typedarray "~1.0.0" 1594 | isstream "~0.1.2" 1595 | json-stringify-safe "~5.0.1" 1596 | mime-types "~2.1.7" 1597 | oauth-sign "~0.8.1" 1598 | performance-now "^0.2.0" 1599 | qs "~6.4.0" 1600 | safe-buffer "^5.0.1" 1601 | stringstream "~0.0.4" 1602 | tough-cookie "~2.3.0" 1603 | tunnel-agent "^0.6.0" 1604 | uuid "^3.0.0" 1605 | 1606 | require-directory@^2.1.1: 1607 | version "2.1.1" 1608 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 1609 | 1610 | require-main-filename@^1.0.1: 1611 | version "1.0.1" 1612 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 1613 | 1614 | resolve@^1.2.0: 1615 | version "1.3.3" 1616 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.3.tgz#655907c3469a8680dc2de3a275a8fdd69691f0e5" 1617 | dependencies: 1618 | path-parse "^1.0.5" 1619 | 1620 | resolve@1.1.7: 1621 | version "1.1.7" 1622 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 1623 | 1624 | right-align@^0.1.1: 1625 | version "0.1.3" 1626 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 1627 | dependencies: 1628 | align-text "^0.1.1" 1629 | 1630 | rimraf@^2.4.4: 1631 | version "2.6.1" 1632 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 1633 | dependencies: 1634 | glob "^7.0.5" 1635 | 1636 | safe-buffer@^5.0.1: 1637 | version "5.0.1" 1638 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 1639 | 1640 | sane@~1.5.0: 1641 | version "1.5.0" 1642 | resolved "https://registry.yarnpkg.com/sane/-/sane-1.5.0.tgz#a4adeae764d048621ecb27d5f9ecf513101939f3" 1643 | dependencies: 1644 | anymatch "^1.3.0" 1645 | exec-sh "^0.2.0" 1646 | fb-watchman "^1.8.0" 1647 | minimatch "^3.0.2" 1648 | minimist "^1.1.1" 1649 | walker "~1.0.5" 1650 | watch "~0.10.0" 1651 | 1652 | sax@^1.2.1: 1653 | version "1.2.2" 1654 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.2.tgz#fd8631a23bc7826bef5d871bdb87378c95647828" 1655 | 1656 | semver@^5.3.0, "semver@2 || 3 || 4 || 5": 1657 | version "5.3.0" 1658 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 1659 | 1660 | set-blocking@^2.0.0: 1661 | version "2.0.0" 1662 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1663 | 1664 | shellwords@^0.1.0: 1665 | version "0.1.0" 1666 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.0.tgz#66afd47b6a12932d9071cbfd98a52e785cd0ba14" 1667 | 1668 | slash@^1.0.0: 1669 | version "1.0.0" 1670 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 1671 | 1672 | sntp@1.x.x: 1673 | version "1.0.9" 1674 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 1675 | dependencies: 1676 | hoek "2.x.x" 1677 | 1678 | source-map-support@^0.4.2: 1679 | version "0.4.14" 1680 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.14.tgz#9d4463772598b86271b4f523f6c1f4e02a7d6aef" 1681 | dependencies: 1682 | source-map "^0.5.6" 1683 | 1684 | source-map@^0.4.4: 1685 | version "0.4.4" 1686 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 1687 | dependencies: 1688 | amdefine ">=0.0.4" 1689 | 1690 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: 1691 | version "0.5.6" 1692 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 1693 | 1694 | source-map@~0.2.0: 1695 | version "0.2.0" 1696 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 1697 | dependencies: 1698 | amdefine ">=0.0.4" 1699 | 1700 | spdx-correct@~1.0.0: 1701 | version "1.0.2" 1702 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 1703 | dependencies: 1704 | spdx-license-ids "^1.0.2" 1705 | 1706 | spdx-expression-parse@~1.0.0: 1707 | version "1.0.4" 1708 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 1709 | 1710 | spdx-license-ids@^1.0.2: 1711 | version "1.2.2" 1712 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 1713 | 1714 | sprintf-js@~1.0.2: 1715 | version "1.0.3" 1716 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 1717 | 1718 | sshpk@^1.7.0: 1719 | version "1.13.0" 1720 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.0.tgz#ff2a3e4fd04497555fed97b39a0fd82fafb3a33c" 1721 | dependencies: 1722 | asn1 "~0.2.3" 1723 | assert-plus "^1.0.0" 1724 | dashdash "^1.12.0" 1725 | getpass "^0.1.1" 1726 | optionalDependencies: 1727 | bcrypt-pbkdf "^1.0.0" 1728 | ecc-jsbn "~0.1.1" 1729 | jodid25519 "^1.0.0" 1730 | jsbn "~0.1.0" 1731 | tweetnacl "~0.14.0" 1732 | 1733 | string-length@^1.0.1: 1734 | version "1.0.1" 1735 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" 1736 | dependencies: 1737 | strip-ansi "^3.0.0" 1738 | 1739 | string-width@^1.0.1, string-width@^1.0.2: 1740 | version "1.0.2" 1741 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1742 | dependencies: 1743 | code-point-at "^1.0.0" 1744 | is-fullwidth-code-point "^1.0.0" 1745 | strip-ansi "^3.0.0" 1746 | 1747 | stringstream@~0.0.4: 1748 | version "0.0.5" 1749 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 1750 | 1751 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 1752 | version "3.0.1" 1753 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1754 | dependencies: 1755 | ansi-regex "^2.0.0" 1756 | 1757 | strip-bom@^2.0.0: 1758 | version "2.0.0" 1759 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 1760 | dependencies: 1761 | is-utf8 "^0.2.0" 1762 | 1763 | strip-bom@3.0.0: 1764 | version "3.0.0" 1765 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 1766 | 1767 | supports-color@^2.0.0: 1768 | version "2.0.0" 1769 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 1770 | 1771 | supports-color@^3.1.2: 1772 | version "3.2.3" 1773 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 1774 | dependencies: 1775 | has-flag "^1.0.0" 1776 | 1777 | symbol-tree@^3.2.1: 1778 | version "3.2.2" 1779 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 1780 | 1781 | test-exclude@^4.0.3: 1782 | version "4.0.3" 1783 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.0.3.tgz#86a13ce3effcc60e6c90403cf31a27a60ac6c4e7" 1784 | dependencies: 1785 | arrify "^1.0.1" 1786 | micromatch "^2.3.11" 1787 | object-assign "^4.1.0" 1788 | read-pkg-up "^1.0.1" 1789 | require-main-filename "^1.0.1" 1790 | 1791 | throat@^3.0.0: 1792 | version "3.0.0" 1793 | resolved "https://registry.yarnpkg.com/throat/-/throat-3.0.0.tgz#e7c64c867cbb3845f10877642f7b60055b8ec0d6" 1794 | 1795 | tmpl@1.0.x: 1796 | version "1.0.4" 1797 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 1798 | 1799 | to-fast-properties@^1.0.1: 1800 | version "1.0.2" 1801 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 1802 | 1803 | tough-cookie@^2.3.2, tough-cookie@~2.3.0: 1804 | version "2.3.2" 1805 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 1806 | dependencies: 1807 | punycode "^1.4.1" 1808 | 1809 | tr46@~0.0.3: 1810 | version "0.0.3" 1811 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 1812 | 1813 | trim-right@^1.0.1: 1814 | version "1.0.1" 1815 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 1816 | 1817 | tunnel-agent@^0.6.0: 1818 | version "0.6.0" 1819 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 1820 | dependencies: 1821 | safe-buffer "^5.0.1" 1822 | 1823 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 1824 | version "0.14.5" 1825 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 1826 | 1827 | type-check@~0.3.2: 1828 | version "0.3.2" 1829 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 1830 | dependencies: 1831 | prelude-ls "~1.1.2" 1832 | 1833 | uglify-js@^2.6: 1834 | version "2.8.22" 1835 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.22.tgz#d54934778a8da14903fa29a326fb24c0ab51a1a0" 1836 | dependencies: 1837 | source-map "~0.5.1" 1838 | yargs "~3.10.0" 1839 | optionalDependencies: 1840 | uglify-to-browserify "~1.0.0" 1841 | 1842 | uglify-to-browserify@~1.0.0: 1843 | version "1.0.2" 1844 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 1845 | 1846 | uuid@^3.0.0: 1847 | version "3.0.1" 1848 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 1849 | 1850 | validate-npm-package-license@^3.0.1: 1851 | version "3.0.1" 1852 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 1853 | dependencies: 1854 | spdx-correct "~1.0.0" 1855 | spdx-expression-parse "~1.0.0" 1856 | 1857 | verror@1.3.6: 1858 | version "1.3.6" 1859 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 1860 | dependencies: 1861 | extsprintf "1.0.2" 1862 | 1863 | walker@~1.0.5: 1864 | version "1.0.7" 1865 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 1866 | dependencies: 1867 | makeerror "1.0.x" 1868 | 1869 | watch@~0.10.0: 1870 | version "0.10.0" 1871 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" 1872 | 1873 | webidl-conversions@^3.0.0: 1874 | version "3.0.1" 1875 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 1876 | 1877 | webidl-conversions@^4.0.0: 1878 | version "4.0.1" 1879 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.1.tgz#8015a17ab83e7e1b311638486ace81da6ce206a0" 1880 | 1881 | whatwg-encoding@^1.0.1: 1882 | version "1.0.1" 1883 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 1884 | dependencies: 1885 | iconv-lite "0.4.13" 1886 | 1887 | whatwg-url@^4.3.0: 1888 | version "4.7.0" 1889 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.7.0.tgz#202035ac1955b087cdd20fa8b58ded3ab1cd2af5" 1890 | dependencies: 1891 | tr46 "~0.0.3" 1892 | webidl-conversions "^3.0.0" 1893 | 1894 | which-module@^1.0.0: 1895 | version "1.0.0" 1896 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 1897 | 1898 | which@^1.1.1, which@^1.2.12: 1899 | version "1.2.14" 1900 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 1901 | dependencies: 1902 | isexe "^2.0.0" 1903 | 1904 | window-size@0.1.0: 1905 | version "0.1.0" 1906 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 1907 | 1908 | wordwrap@~0.0.2: 1909 | version "0.0.3" 1910 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 1911 | 1912 | wordwrap@~1.0.0: 1913 | version "1.0.0" 1914 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 1915 | 1916 | wordwrap@0.0.2: 1917 | version "0.0.2" 1918 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 1919 | 1920 | worker-farm@^1.3.1: 1921 | version "1.3.1" 1922 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.3.1.tgz#4333112bb49b17aa050b87895ca6b2cacf40e5ff" 1923 | dependencies: 1924 | errno ">=0.1.1 <0.2.0-0" 1925 | xtend ">=4.0.0 <4.1.0-0" 1926 | 1927 | wrap-ansi@^2.0.0: 1928 | version "2.1.0" 1929 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 1930 | dependencies: 1931 | string-width "^1.0.1" 1932 | strip-ansi "^3.0.1" 1933 | 1934 | wrappy@1: 1935 | version "1.0.2" 1936 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1937 | 1938 | xml-name-validator@^2.0.1: 1939 | version "2.0.1" 1940 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 1941 | 1942 | "xtend@>=4.0.0 <4.1.0-0": 1943 | version "4.0.1" 1944 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 1945 | 1946 | y18n@^3.2.1: 1947 | version "3.2.1" 1948 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 1949 | 1950 | yargs-parser@^4.2.0: 1951 | version "4.2.1" 1952 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" 1953 | dependencies: 1954 | camelcase "^3.0.0" 1955 | 1956 | yargs@^6.3.0: 1957 | version "6.6.0" 1958 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" 1959 | dependencies: 1960 | camelcase "^3.0.0" 1961 | cliui "^3.2.0" 1962 | decamelize "^1.1.1" 1963 | get-caller-file "^1.0.1" 1964 | os-locale "^1.4.0" 1965 | read-pkg-up "^1.0.1" 1966 | require-directory "^2.1.1" 1967 | require-main-filename "^1.0.1" 1968 | set-blocking "^2.0.0" 1969 | string-width "^1.0.2" 1970 | which-module "^1.0.0" 1971 | y18n "^3.2.1" 1972 | yargs-parser "^4.2.0" 1973 | 1974 | yargs@~3.10.0: 1975 | version "3.10.0" 1976 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 1977 | dependencies: 1978 | camelcase "^1.0.2" 1979 | cliui "^2.1.0" 1980 | decamelize "^1.0.0" 1981 | window-size "0.1.0" 1982 | 1983 | --------------------------------------------------------------------------------