├── docs ├── .nojekyll ├── landing.html ├── README.md ├── config.js └── index.html ├── .gitattributes ├── .gitignore ├── .editorconfig ├── circle.yml ├── package.json ├── src ├── index.js └── evanyou.js ├── LICENSE ├── README.md └── yarn.lock /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/landing.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- 1 | # docute 2 | 3 | just start writing... 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | .DS_Store 4 | /dist 5 | /docs/plugin 6 | -------------------------------------------------------------------------------- /docs/config.js: -------------------------------------------------------------------------------- 1 | self.$config = { 2 | title: 'My Docs', 3 | landing: true, 4 | plugins: [ 5 | evanyou() 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = space 5 | indent_size = 2 6 | end_of_line = lf 7 | charset = utf-8 8 | trim_trailing_whitespace = true 9 | insert_final_newline = true 10 | 11 | [*.md] 12 | trim_trailing_whitespace = false 13 | -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- 1 | machine: 2 | pre: 3 | - mkdir ~/.yarn-cache 4 | node: 5 | version: 7 6 | 7 | dependencies: 8 | pre: 9 | - curl -o- -L https://yarnpkg.com/install.sh | bash 10 | cache_directories: 11 | - "~/.yarn-cache" 12 | override: 13 | - yarn install 14 | -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Docute 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "docute-evanyou", 3 | "version": "0.5.0", 4 | "description": "A docute plugin inspired by evan you.", 5 | "license": "MIT", 6 | "repository": "egoist/docute-evanyou", 7 | "author": { 8 | "name": "EGOIST", 9 | "email": "0x142857@gmail.com", 10 | "url": "github.com/egoist" 11 | }, 12 | "engines": { 13 | "node": ">=4" 14 | }, 15 | "scripts": { 16 | "test": "eslint src/index.js && npm run build", 17 | "build": "bili --format umd --module-name evanyou --name evanyou --compress", 18 | "watch": "bili --format umd -w --out-dir docs/plugin --module-name evanyou" 19 | }, 20 | "files": [ 21 | "dist" 22 | ], 23 | "main": "dist/evanyou.js", 24 | "keywords": [ 25 | "docute", 26 | "evanyou" 27 | ], 28 | "devDependencies": { 29 | "bili": "^0.10.0", 30 | "eslint": "latest", 31 | "eslint-config-rem": "latest" 32 | }, 33 | "jest": { 34 | "testEnvironment": "node" 35 | }, 36 | "eslintConfig": { 37 | "extends": "rem/esnext-browser" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import evanyou from './evanyou' 2 | 3 | export default () => { 4 | return ({router}) => { 5 | let listener 6 | router.afterEach(to => { 7 | const isLanding = to.meta && (to.meta.name === 'landing') 8 | if (isLanding) { 9 | const canvas = document.createElement('canvas') 10 | canvas.id = 'evanyou-canvas' 11 | canvas.style.position = 'absolute' 12 | canvas.style.top = 0 13 | canvas.style.left = 0 14 | canvas.style.zIndex = 0 15 | canvas.style.width = '100%' 16 | canvas.style.width = '100%' 17 | canvas.style.pointerEvents = 'none' 18 | document.body.appendChild(canvas) 19 | listener = evanyou() 20 | document.addEventListener('click', listener) 21 | } else { 22 | const canvas = document.getElementById('evanyou-canvas') 23 | if (canvas) { 24 | canvas.parentNode.removeChild(canvas) 25 | } 26 | if (listener) { 27 | document.removeEventListener('click', listener) 28 | listener = undefined 29 | } 30 | } 31 | }) 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /src/evanyou.js: -------------------------------------------------------------------------------- 1 | export default function () { 2 | var c = document.getElementById('evanyou-canvas'), 3 | x = c.getContext('2d'), 4 | pr = window.devicePixelRatio || 1, 5 | w = window.innerWidth, 6 | h = window.innerHeight, 7 | f = 90, 8 | q, 9 | m = Math, 10 | r = 0, 11 | u = m.PI*2, 12 | v = m.cos, 13 | z = m.random 14 | c.width = w*pr 15 | c.height = h*pr 16 | x.scale(pr, pr) 17 | x.globalAlpha = 0.6 18 | function i(){ 19 | x.clearRect(0,0,w,h) 20 | q=[{x:0,y:h*.7+f},{x:0,y:h*.7-f}] 21 | while(q[1].xh||t<0) ? y(p) : t 40 | } 41 | i() 42 | return i 43 | } 44 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) EGOIST <0x142857@gmail.com> (github.com/egoist) 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 13 | all 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 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # docute-evanyou 2 | 3 | [![NPM version](https://img.shields.io/npm/v/docute-evanyou.svg?style=flat-square)](https://npmjs.com/package/docute-evanyou) [![NPM downloads](https://img.shields.io/npm/dm/docute-evanyou.svg?style=flat-square)](https://npmjs.com/package/docute-evanyou) [![Build Status](https://img.shields.io/circleci/project/egoist/docute-evanyou/master.svg?style=flat-square)](https://circleci.com/gh/egoist/docute-evanyou) [![donate](https://img.shields.io/badge/$-donate-ff69b4.svg?maxAge=2592000&style=flat-square)](https://github.com/egoist/donate) 4 | 5 | Add the exact same effect in evanyou.me to your docute landing page. 6 | 7 | ## Usage 8 | 9 | Add `docute-evanyou` to `index.html` in your docute docs: 10 | 11 | ```js 12 | 13 | ``` 14 | 15 | And enable it in `config.js`: 16 | 17 | ```js 18 | self.$config = { 19 | plugins: [ 20 | evanyou() 21 | ] 22 | } 23 | ``` 24 | 25 | ## Contributing 26 | 27 | 1. Fork it! 28 | 2. Create your feature branch: `git checkout -b my-new-feature` 29 | 3. Commit your changes: `git commit -am 'Add some feature'` 30 | 4. Push to the branch: `git push origin my-new-feature` 31 | 5. Submit a pull request :D 32 | 33 | ## Author 34 | 35 | **docute-evanyou** © [EGOIST](https://github.com/egoist), Released under the [MIT](https://egoist.mit-license.org/) License.
36 | Authored and maintained by EGOIST with help from contributors ([list](https://github.com/egoist/docute-evanyou/contributors)). 37 | 38 | > [egoistian.com](https://egoistian.com) · GitHub [@egoist](https://github.com/egoist) · Twitter [@_egoistlily](https://twitter.com/_egoistlily) 39 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | acorn-jsx@^3.0.0, acorn-jsx@^3.0.1: 4 | version "3.0.1" 5 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 6 | dependencies: 7 | acorn "^3.0.4" 8 | 9 | acorn-object-spread@^1.0.0: 10 | version "1.0.0" 11 | resolved "https://registry.yarnpkg.com/acorn-object-spread/-/acorn-object-spread-1.0.0.tgz#48ead0f4a8eb16995a17a0db9ffc6acaada4ba68" 12 | dependencies: 13 | acorn "^3.1.0" 14 | 15 | acorn@^3.0.4, acorn@^3.1.0, acorn@^3.3.0: 16 | version "3.3.0" 17 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 18 | 19 | acorn@^4.0.1: 20 | version "4.0.4" 21 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.4.tgz#17a8d6a7a6c4ef538b814ec9abac2779293bf30a" 22 | 23 | ajv-keywords@^1.0.0: 24 | version "1.4.1" 25 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.4.1.tgz#f080e635e230baae26537ce727f260ae62b43802" 26 | 27 | ajv@^4.7.0: 28 | version "4.10.3" 29 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.10.3.tgz#3e4fea9675b157de7888b80dd0ed735b83f28e11" 30 | dependencies: 31 | co "^4.6.0" 32 | json-stable-stringify "^1.0.1" 33 | 34 | align-text@^0.1.1, align-text@^0.1.3: 35 | version "0.1.4" 36 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 37 | dependencies: 38 | kind-of "^3.0.2" 39 | longest "^1.0.1" 40 | repeat-string "^1.5.2" 41 | 42 | ansi-align@^1.1.0: 43 | version "1.1.0" 44 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-1.1.0.tgz#2f0c1658829739add5ebb15e6b0c6e3423f016ba" 45 | dependencies: 46 | string-width "^1.0.1" 47 | 48 | ansi-escapes@^1.1.0: 49 | version "1.4.0" 50 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 51 | 52 | ansi-regex@^2.0.0: 53 | version "2.0.0" 54 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.0.0.tgz#c5061b6e0ef8a81775e50f5d66151bf6bf371107" 55 | 56 | ansi-styles@^2.2.1: 57 | version "2.2.1" 58 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 59 | 60 | argparse@^1.0.7: 61 | version "1.0.9" 62 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 63 | dependencies: 64 | sprintf-js "~1.0.2" 65 | 66 | array-find-index@^1.0.1: 67 | version "1.0.2" 68 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 69 | 70 | array-union@^1.0.1: 71 | version "1.0.2" 72 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 73 | dependencies: 74 | array-uniq "^1.0.1" 75 | 76 | array-uniq@^1.0.1: 77 | version "1.0.3" 78 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 79 | 80 | arrify@^1.0.0: 81 | version "1.0.1" 82 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 83 | 84 | async-to-gen@^1.2.0: 85 | version "1.3.0" 86 | resolved "https://registry.yarnpkg.com/async-to-gen/-/async-to-gen-1.3.0.tgz#ec1ab301ca5881de64e8ad654cd96bfd5fcc4366" 87 | dependencies: 88 | babylon "^6.14.0" 89 | magic-string "^0.19.0" 90 | 91 | async@~0.2.6: 92 | version "0.2.10" 93 | resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1" 94 | 95 | babel-code-frame@^6.16.0: 96 | version "6.20.0" 97 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.20.0.tgz#b968f839090f9a8bc6d41938fb96cb84f7387b26" 98 | dependencies: 99 | chalk "^1.1.0" 100 | esutils "^2.0.2" 101 | js-tokens "^2.0.0" 102 | 103 | babylon@^6.14.0, babylon@^6.8.4: 104 | version "6.14.1" 105 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.14.1.tgz#956275fab72753ad9b3435d7afe58f8bf0a29815" 106 | 107 | balanced-match@^0.4.1: 108 | version "0.4.2" 109 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 110 | 111 | bili: 112 | version "0.10.0" 113 | resolved "https://registry.yarnpkg.com/bili/-/bili-0.10.0.tgz#36dfae241c4c1828ad06abc0ffcf5e72b8541560" 114 | dependencies: 115 | camelcase "^4.0.0" 116 | chalk "^1.1.3" 117 | fancy-log "^1.2.0" 118 | lodash.merge "^4.6.0" 119 | meow "^3.7.0" 120 | req-cwd "^1.0.1" 121 | rollup "^0.37.0" 122 | rollup-plugin-alias "^1.2.0" 123 | rollup-plugin-async "^1.2.0" 124 | rollup-plugin-buble "^0.15.0" 125 | rollup-plugin-commonjs "^6.0.0" 126 | rollup-plugin-flow "^1.1.1" 127 | rollup-plugin-node-resolve "^2.0.0" 128 | rollup-plugin-replace "^1.1.1" 129 | rollup-plugin-uglify "^1.0.1" 130 | rollup-watch "^2.5.0" 131 | switchy "^0.1.0" 132 | update-notifier "^1.0.2" 133 | 134 | boxen@^0.6.0: 135 | version "0.6.0" 136 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-0.6.0.tgz#8364d4248ac34ff0ef1b2f2bf49a6c60ce0d81b6" 137 | dependencies: 138 | ansi-align "^1.1.0" 139 | camelcase "^2.1.0" 140 | chalk "^1.1.1" 141 | cli-boxes "^1.0.0" 142 | filled-array "^1.0.0" 143 | object-assign "^4.0.1" 144 | repeating "^2.0.0" 145 | string-width "^1.0.1" 146 | widest-line "^1.0.0" 147 | 148 | brace-expansion@^1.0.0: 149 | version "1.1.6" 150 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 151 | dependencies: 152 | balanced-match "^0.4.1" 153 | concat-map "0.0.1" 154 | 155 | browser-resolve@^1.11.0: 156 | version "1.11.2" 157 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 158 | dependencies: 159 | resolve "1.1.7" 160 | 161 | buble@^0.15.0: 162 | version "0.15.1" 163 | resolved "https://registry.yarnpkg.com/buble/-/buble-0.15.1.tgz#89fa32b8956d772c3cce2a27684245e64d8e930d" 164 | dependencies: 165 | acorn "^3.3.0" 166 | acorn-jsx "^3.0.1" 167 | acorn-object-spread "^1.0.0" 168 | chalk "^1.1.3" 169 | magic-string "^0.14.0" 170 | minimist "^1.2.0" 171 | os-homedir "^1.0.1" 172 | 173 | buffer-shims@^1.0.0: 174 | version "1.0.0" 175 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 176 | 177 | builtin-modules@^1.0.0, builtin-modules@^1.1.0: 178 | version "1.1.1" 179 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 180 | 181 | caller-path@^0.1.0: 182 | version "0.1.0" 183 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 184 | dependencies: 185 | callsites "^0.2.0" 186 | 187 | callsites@^0.2.0: 188 | version "0.2.0" 189 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 190 | 191 | camelcase-keys@^2.0.0: 192 | version "2.1.0" 193 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 194 | dependencies: 195 | camelcase "^2.0.0" 196 | map-obj "^1.0.0" 197 | 198 | camelcase@^1.0.2: 199 | version "1.2.1" 200 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 201 | 202 | camelcase@^2.0.0, camelcase@^2.1.0: 203 | version "2.1.1" 204 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 205 | 206 | camelcase@^4.0.0: 207 | version "4.0.0" 208 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.0.0.tgz#8b0f90d44be5e281b903b9887349b92595ef07f2" 209 | 210 | capture-stack-trace@^1.0.0: 211 | version "1.0.0" 212 | resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d" 213 | 214 | center-align@^0.1.1: 215 | version "0.1.3" 216 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 217 | dependencies: 218 | align-text "^0.1.3" 219 | lazy-cache "^1.0.3" 220 | 221 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 222 | version "1.1.3" 223 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 224 | dependencies: 225 | ansi-styles "^2.2.1" 226 | escape-string-regexp "^1.0.2" 227 | has-ansi "^2.0.0" 228 | strip-ansi "^3.0.0" 229 | supports-color "^2.0.0" 230 | 231 | circular-json@^0.3.1: 232 | version "0.3.1" 233 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 234 | 235 | cli-boxes@^1.0.0: 236 | version "1.0.0" 237 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" 238 | 239 | cli-cursor@^1.0.1: 240 | version "1.0.2" 241 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 242 | dependencies: 243 | restore-cursor "^1.0.1" 244 | 245 | cli-width@^2.0.0: 246 | version "2.1.0" 247 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 248 | 249 | cliui@^2.1.0: 250 | version "2.1.0" 251 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 252 | dependencies: 253 | center-align "^0.1.1" 254 | right-align "^0.1.1" 255 | wordwrap "0.0.2" 256 | 257 | co@^4.6.0: 258 | version "4.6.0" 259 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 260 | 261 | code-point-at@^1.0.0: 262 | version "1.1.0" 263 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 264 | 265 | concat-map@0.0.1: 266 | version "0.0.1" 267 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 268 | 269 | concat-stream@^1.4.6: 270 | version "1.6.0" 271 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 272 | dependencies: 273 | inherits "^2.0.3" 274 | readable-stream "^2.2.2" 275 | typedarray "^0.0.6" 276 | 277 | configstore@^2.0.0: 278 | version "2.1.0" 279 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-2.1.0.tgz#737a3a7036e9886102aa6099e47bb33ab1aba1a1" 280 | dependencies: 281 | dot-prop "^3.0.0" 282 | graceful-fs "^4.1.2" 283 | mkdirp "^0.5.0" 284 | object-assign "^4.0.1" 285 | os-tmpdir "^1.0.0" 286 | osenv "^0.1.0" 287 | uuid "^2.0.1" 288 | write-file-atomic "^1.1.2" 289 | xdg-basedir "^2.0.0" 290 | 291 | core-util-is@~1.0.0: 292 | version "1.0.2" 293 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 294 | 295 | create-error-class@^3.0.1: 296 | version "3.0.2" 297 | resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" 298 | dependencies: 299 | capture-stack-trace "^1.0.0" 300 | 301 | currently-unhandled@^0.4.1: 302 | version "0.4.1" 303 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 304 | dependencies: 305 | array-find-index "^1.0.1" 306 | 307 | d@^0.1.1, d@~0.1.1: 308 | version "0.1.1" 309 | resolved "https://registry.yarnpkg.com/d/-/d-0.1.1.tgz#da184c535d18d8ee7ba2aa229b914009fae11309" 310 | dependencies: 311 | es5-ext "~0.10.2" 312 | 313 | debug@^2.1.1: 314 | version "2.5.2" 315 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.5.2.tgz#50c295a53dbf1657146e0c1b21307275e90d49cb" 316 | dependencies: 317 | ms "0.7.2" 318 | 319 | decamelize@^1.0.0, decamelize@^1.1.2: 320 | version "1.2.0" 321 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 322 | 323 | deep-extend@~0.4.0: 324 | version "0.4.1" 325 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 326 | 327 | deep-is@~0.1.3: 328 | version "0.1.3" 329 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 330 | 331 | del@^2.0.2: 332 | version "2.2.2" 333 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 334 | dependencies: 335 | globby "^5.0.0" 336 | is-path-cwd "^1.0.0" 337 | is-path-in-cwd "^1.0.0" 338 | object-assign "^4.0.1" 339 | pify "^2.0.0" 340 | pinkie-promise "^2.0.0" 341 | rimraf "^2.2.8" 342 | 343 | doctrine@^1.2.2: 344 | version "1.5.0" 345 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 346 | dependencies: 347 | esutils "^2.0.2" 348 | isarray "^1.0.0" 349 | 350 | dot-prop@^3.0.0: 351 | version "3.0.0" 352 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-3.0.0.tgz#1b708af094a49c9a0e7dbcad790aba539dac1177" 353 | dependencies: 354 | is-obj "^1.0.0" 355 | 356 | duplexer2@^0.1.4: 357 | version "0.1.4" 358 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" 359 | dependencies: 360 | readable-stream "^2.0.2" 361 | 362 | error-ex@^1.2.0: 363 | version "1.3.0" 364 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.0.tgz#e67b43f3e82c96ea3a584ffee0b9fc3325d802d9" 365 | dependencies: 366 | is-arrayish "^0.2.1" 367 | 368 | 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: 369 | version "0.10.12" 370 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.12.tgz#aa84641d4db76b62abba5e45fd805ecbab140047" 371 | dependencies: 372 | es6-iterator "2" 373 | es6-symbol "~3.1" 374 | 375 | es6-iterator@2: 376 | version "2.0.0" 377 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.0.tgz#bd968567d61635e33c0b80727613c9cb4b096bac" 378 | dependencies: 379 | d "^0.1.1" 380 | es5-ext "^0.10.7" 381 | es6-symbol "3" 382 | 383 | es6-map@^0.1.3: 384 | version "0.1.4" 385 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.4.tgz#a34b147be224773a4d7da8072794cefa3632b897" 386 | dependencies: 387 | d "~0.1.1" 388 | es5-ext "~0.10.11" 389 | es6-iterator "2" 390 | es6-set "~0.1.3" 391 | es6-symbol "~3.1.0" 392 | event-emitter "~0.3.4" 393 | 394 | es6-set@~0.1.3: 395 | version "0.1.4" 396 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.4.tgz#9516b6761c2964b92ff479456233a247dc707ce8" 397 | dependencies: 398 | d "~0.1.1" 399 | es5-ext "~0.10.11" 400 | es6-iterator "2" 401 | es6-symbol "3" 402 | event-emitter "~0.3.4" 403 | 404 | es6-symbol@~3.1, es6-symbol@~3.1.0, es6-symbol@3: 405 | version "3.1.0" 406 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.0.tgz#94481c655e7a7cad82eba832d97d5433496d7ffa" 407 | dependencies: 408 | d "~0.1.1" 409 | es5-ext "~0.10.11" 410 | 411 | es6-weak-map@^2.0.1: 412 | version "2.0.1" 413 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.1.tgz#0d2bbd8827eb5fb4ba8f97fbfea50d43db21ea81" 414 | dependencies: 415 | d "^0.1.1" 416 | es5-ext "^0.10.8" 417 | es6-iterator "2" 418 | es6-symbol "3" 419 | 420 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 421 | version "1.0.5" 422 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 423 | 424 | escope@^3.6.0: 425 | version "3.6.0" 426 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 427 | dependencies: 428 | es6-map "^0.1.3" 429 | es6-weak-map "^2.0.1" 430 | esrecurse "^4.1.0" 431 | estraverse "^4.1.1" 432 | 433 | eslint-config-rem@latest: 434 | version "2.0.2" 435 | resolved "https://registry.yarnpkg.com/eslint-config-rem/-/eslint-config-rem-2.0.2.tgz#35b061d14c763be65180f606fb641c8c3660d5cb" 436 | 437 | eslint@latest: 438 | version "3.12.2" 439 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.12.2.tgz#6be5a9aa29658252abd7f91e9132bab1f26f3c34" 440 | dependencies: 441 | babel-code-frame "^6.16.0" 442 | chalk "^1.1.3" 443 | concat-stream "^1.4.6" 444 | debug "^2.1.1" 445 | doctrine "^1.2.2" 446 | escope "^3.6.0" 447 | espree "^3.3.1" 448 | estraverse "^4.2.0" 449 | esutils "^2.0.2" 450 | file-entry-cache "^2.0.0" 451 | glob "^7.0.3" 452 | globals "^9.14.0" 453 | ignore "^3.2.0" 454 | imurmurhash "^0.1.4" 455 | inquirer "^0.12.0" 456 | is-my-json-valid "^2.10.0" 457 | is-resolvable "^1.0.0" 458 | js-yaml "^3.5.1" 459 | json-stable-stringify "^1.0.0" 460 | levn "^0.3.0" 461 | lodash "^4.0.0" 462 | mkdirp "^0.5.0" 463 | natural-compare "^1.4.0" 464 | optionator "^0.8.2" 465 | path-is-inside "^1.0.1" 466 | pluralize "^1.2.1" 467 | progress "^1.1.8" 468 | require-uncached "^1.0.2" 469 | shelljs "^0.7.5" 470 | strip-bom "^3.0.0" 471 | strip-json-comments "~1.0.1" 472 | table "^3.7.8" 473 | text-table "~0.2.0" 474 | user-home "^2.0.0" 475 | 476 | espree@^3.3.1: 477 | version "3.3.2" 478 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.3.2.tgz#dbf3fadeb4ecb4d4778303e50103b3d36c88b89c" 479 | dependencies: 480 | acorn "^4.0.1" 481 | acorn-jsx "^3.0.0" 482 | 483 | esprima@^2.6.0: 484 | version "2.7.3" 485 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 486 | 487 | esrecurse@^4.1.0: 488 | version "4.1.0" 489 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" 490 | dependencies: 491 | estraverse "~4.1.0" 492 | object-assign "^4.0.1" 493 | 494 | estraverse@^4.1.1, estraverse@^4.2.0: 495 | version "4.2.0" 496 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 497 | 498 | estraverse@~4.1.0: 499 | version "4.1.1" 500 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" 501 | 502 | estree-walker@^0.2.1: 503 | version "0.2.1" 504 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.2.1.tgz#bdafe8095383d8414d5dc2ecf4c9173b6db9412e" 505 | 506 | estree-walker@^0.3.0: 507 | version "0.3.0" 508 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.3.0.tgz#f67ca8f57b9ed66d886af816c099c779b315d4db" 509 | 510 | esutils@^2.0.2: 511 | version "2.0.2" 512 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 513 | 514 | event-emitter@~0.3.4: 515 | version "0.3.4" 516 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.4.tgz#8d63ddfb4cfe1fae3b32ca265c4c720222080bb5" 517 | dependencies: 518 | d "~0.1.1" 519 | es5-ext "~0.10.7" 520 | 521 | exit-hook@^1.0.0: 522 | version "1.1.1" 523 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 524 | 525 | fancy-log@^1.2.0: 526 | version "1.3.0" 527 | resolved "https://registry.yarnpkg.com/fancy-log/-/fancy-log-1.3.0.tgz#45be17d02bb9917d60ccffd4995c999e6c8c9948" 528 | dependencies: 529 | chalk "^1.1.1" 530 | time-stamp "^1.0.0" 531 | 532 | fast-levenshtein@~2.0.4: 533 | version "2.0.5" 534 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.5.tgz#bd33145744519ab1c36c3ee9f31f08e9079b67f2" 535 | 536 | figures@^1.3.5: 537 | version "1.7.0" 538 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 539 | dependencies: 540 | escape-string-regexp "^1.0.5" 541 | object-assign "^4.1.0" 542 | 543 | file-entry-cache@^2.0.0: 544 | version "2.0.0" 545 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 546 | dependencies: 547 | flat-cache "^1.2.1" 548 | object-assign "^4.0.1" 549 | 550 | filled-array@^1.0.0: 551 | version "1.1.0" 552 | resolved "https://registry.yarnpkg.com/filled-array/-/filled-array-1.1.0.tgz#c3c4f6c663b923459a9aa29912d2d031f1507f84" 553 | 554 | find-up@^1.0.0: 555 | version "1.1.2" 556 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 557 | dependencies: 558 | path-exists "^2.0.0" 559 | pinkie-promise "^2.0.0" 560 | 561 | flat-cache@^1.2.1: 562 | version "1.2.2" 563 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 564 | dependencies: 565 | circular-json "^0.3.1" 566 | del "^2.0.2" 567 | graceful-fs "^4.1.2" 568 | write "^0.2.1" 569 | 570 | flow-remove-types@^1.1.0: 571 | version "1.1.2" 572 | resolved "https://registry.yarnpkg.com/flow-remove-types/-/flow-remove-types-1.1.2.tgz#4e31272b2ce111278866fcd135dc697760dc6951" 573 | dependencies: 574 | babylon "^6.8.4" 575 | vlq "^0.2.1" 576 | 577 | fs.realpath@^1.0.0: 578 | version "1.0.0" 579 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 580 | 581 | generate-function@^2.0.0: 582 | version "2.0.0" 583 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 584 | 585 | generate-object-property@^1.1.0: 586 | version "1.2.0" 587 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 588 | dependencies: 589 | is-property "^1.0.0" 590 | 591 | get-stdin@^4.0.1: 592 | version "4.0.1" 593 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 594 | 595 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5: 596 | version "7.1.1" 597 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 598 | dependencies: 599 | fs.realpath "^1.0.0" 600 | inflight "^1.0.4" 601 | inherits "2" 602 | minimatch "^3.0.2" 603 | once "^1.3.0" 604 | path-is-absolute "^1.0.0" 605 | 606 | globals@^9.14.0: 607 | version "9.14.0" 608 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.14.0.tgz#8859936af0038741263053b39d0e76ca241e4034" 609 | 610 | globby@^5.0.0: 611 | version "5.0.0" 612 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 613 | dependencies: 614 | array-union "^1.0.1" 615 | arrify "^1.0.0" 616 | glob "^7.0.3" 617 | object-assign "^4.0.1" 618 | pify "^2.0.0" 619 | pinkie-promise "^2.0.0" 620 | 621 | got@^5.0.0: 622 | version "5.7.1" 623 | resolved "https://registry.yarnpkg.com/got/-/got-5.7.1.tgz#5f81635a61e4a6589f180569ea4e381680a51f35" 624 | dependencies: 625 | create-error-class "^3.0.1" 626 | duplexer2 "^0.1.4" 627 | is-redirect "^1.0.0" 628 | is-retry-allowed "^1.0.0" 629 | is-stream "^1.0.0" 630 | lowercase-keys "^1.0.0" 631 | node-status-codes "^1.0.0" 632 | object-assign "^4.0.1" 633 | parse-json "^2.1.0" 634 | pinkie-promise "^2.0.0" 635 | read-all-stream "^3.0.0" 636 | readable-stream "^2.0.5" 637 | timed-out "^3.0.0" 638 | unzip-response "^1.0.2" 639 | url-parse-lax "^1.0.0" 640 | 641 | graceful-fs@^4.1.2: 642 | version "4.1.11" 643 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 644 | 645 | has-ansi@^2.0.0: 646 | version "2.0.0" 647 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 648 | dependencies: 649 | ansi-regex "^2.0.0" 650 | 651 | hosted-git-info@^2.1.4: 652 | version "2.1.5" 653 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.1.5.tgz#0ba81d90da2e25ab34a332e6ec77936e1598118b" 654 | 655 | ignore@^3.2.0: 656 | version "3.2.0" 657 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.2.0.tgz#8d88f03c3002a0ac52114db25d2c673b0bf1e435" 658 | 659 | imurmurhash@^0.1.4: 660 | version "0.1.4" 661 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 662 | 663 | indent-string@^2.1.0: 664 | version "2.1.0" 665 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 666 | dependencies: 667 | repeating "^2.0.0" 668 | 669 | inflight@^1.0.4: 670 | version "1.0.6" 671 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 672 | dependencies: 673 | once "^1.3.0" 674 | wrappy "1" 675 | 676 | inherits@^2.0.3, inherits@~2.0.1, inherits@2: 677 | version "2.0.3" 678 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 679 | 680 | ini@~1.3.0: 681 | version "1.3.4" 682 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 683 | 684 | inquirer@^0.12.0: 685 | version "0.12.0" 686 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 687 | dependencies: 688 | ansi-escapes "^1.1.0" 689 | ansi-regex "^2.0.0" 690 | chalk "^1.0.0" 691 | cli-cursor "^1.0.1" 692 | cli-width "^2.0.0" 693 | figures "^1.3.5" 694 | lodash "^4.3.0" 695 | readline2 "^1.0.1" 696 | run-async "^0.1.0" 697 | rx-lite "^3.1.2" 698 | string-width "^1.0.1" 699 | strip-ansi "^3.0.0" 700 | through "^2.3.6" 701 | 702 | interpret@^1.0.0: 703 | version "1.0.1" 704 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.1.tgz#d579fb7f693b858004947af39fa0db49f795602c" 705 | 706 | is-arrayish@^0.2.1: 707 | version "0.2.1" 708 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 709 | 710 | is-buffer@^1.0.2: 711 | version "1.1.4" 712 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b" 713 | 714 | is-builtin-module@^1.0.0: 715 | version "1.0.0" 716 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 717 | dependencies: 718 | builtin-modules "^1.0.0" 719 | 720 | is-finite@^1.0.0: 721 | version "1.0.2" 722 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 723 | dependencies: 724 | number-is-nan "^1.0.0" 725 | 726 | is-fullwidth-code-point@^1.0.0: 727 | version "1.0.0" 728 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 729 | dependencies: 730 | number-is-nan "^1.0.0" 731 | 732 | is-fullwidth-code-point@^2.0.0: 733 | version "2.0.0" 734 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 735 | 736 | is-my-json-valid@^2.10.0: 737 | version "2.15.0" 738 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b" 739 | dependencies: 740 | generate-function "^2.0.0" 741 | generate-object-property "^1.1.0" 742 | jsonpointer "^4.0.0" 743 | xtend "^4.0.0" 744 | 745 | is-npm@^1.0.0: 746 | version "1.0.0" 747 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 748 | 749 | is-obj@^1.0.0: 750 | version "1.0.1" 751 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 752 | 753 | is-path-cwd@^1.0.0: 754 | version "1.0.0" 755 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 756 | 757 | is-path-in-cwd@^1.0.0: 758 | version "1.0.0" 759 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 760 | dependencies: 761 | is-path-inside "^1.0.0" 762 | 763 | is-path-inside@^1.0.0: 764 | version "1.0.0" 765 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 766 | dependencies: 767 | path-is-inside "^1.0.1" 768 | 769 | is-property@^1.0.0: 770 | version "1.0.2" 771 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 772 | 773 | is-redirect@^1.0.0: 774 | version "1.0.0" 775 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 776 | 777 | is-resolvable@^1.0.0: 778 | version "1.0.0" 779 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 780 | dependencies: 781 | tryit "^1.0.1" 782 | 783 | is-retry-allowed@^1.0.0: 784 | version "1.1.0" 785 | resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" 786 | 787 | is-stream@^1.0.0: 788 | version "1.1.0" 789 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 790 | 791 | is-utf8@^0.2.0: 792 | version "0.2.1" 793 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 794 | 795 | isarray@^1.0.0, isarray@~1.0.0: 796 | version "1.0.0" 797 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 798 | 799 | js-tokens@^2.0.0: 800 | version "2.0.0" 801 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-2.0.0.tgz#79903f5563ee778cc1162e6dcf1a0027c97f9cb5" 802 | 803 | js-yaml@^3.5.1: 804 | version "3.7.0" 805 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.7.0.tgz#5c967ddd837a9bfdca5f2de84253abe8a1c03b80" 806 | dependencies: 807 | argparse "^1.0.7" 808 | esprima "^2.6.0" 809 | 810 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 811 | version "1.0.1" 812 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 813 | dependencies: 814 | jsonify "~0.0.0" 815 | 816 | jsonify@~0.0.0: 817 | version "0.0.0" 818 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 819 | 820 | jsonpointer@^4.0.0: 821 | version "4.0.1" 822 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 823 | 824 | kind-of@^3.0.2: 825 | version "3.1.0" 826 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47" 827 | dependencies: 828 | is-buffer "^1.0.2" 829 | 830 | latest-version@^2.0.0: 831 | version "2.0.0" 832 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-2.0.0.tgz#56f8d6139620847b8017f8f1f4d78e211324168b" 833 | dependencies: 834 | package-json "^2.0.0" 835 | 836 | lazy-cache@^1.0.3: 837 | version "1.0.4" 838 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 839 | 840 | lazy-req@^1.1.0: 841 | version "1.1.0" 842 | resolved "https://registry.yarnpkg.com/lazy-req/-/lazy-req-1.1.0.tgz#bdaebead30f8d824039ce0ce149d4daa07ba1fac" 843 | 844 | levn@^0.3.0, levn@~0.3.0: 845 | version "0.3.0" 846 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 847 | dependencies: 848 | prelude-ls "~1.1.2" 849 | type-check "~0.3.2" 850 | 851 | load-json-file@^1.0.0: 852 | version "1.1.0" 853 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 854 | dependencies: 855 | graceful-fs "^4.1.2" 856 | parse-json "^2.2.0" 857 | pify "^2.0.0" 858 | pinkie-promise "^2.0.0" 859 | strip-bom "^2.0.0" 860 | 861 | lodash.merge@^4.6.0: 862 | version "4.6.0" 863 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.0.tgz#69884ba144ac33fe699737a6086deffadd0f89c5" 864 | 865 | lodash@^4.0.0, lodash@^4.3.0: 866 | version "4.17.3" 867 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.3.tgz#557ed7d2a9438cac5fd5a43043ca60cb455e01f7" 868 | 869 | longest@^1.0.1: 870 | version "1.0.1" 871 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 872 | 873 | loud-rejection@^1.0.0: 874 | version "1.6.0" 875 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 876 | dependencies: 877 | currently-unhandled "^0.4.1" 878 | signal-exit "^3.0.0" 879 | 880 | lowercase-keys@^1.0.0: 881 | version "1.0.0" 882 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" 883 | 884 | magic-string@^0.14.0: 885 | version "0.14.0" 886 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.14.0.tgz#57224aef1701caeed273b17a39a956e72b172462" 887 | dependencies: 888 | vlq "^0.2.1" 889 | 890 | magic-string@^0.15.2: 891 | version "0.15.2" 892 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.15.2.tgz#0681d7388741bbc3addaa65060992624c6c09e9c" 893 | dependencies: 894 | vlq "^0.2.1" 895 | 896 | magic-string@^0.19.0: 897 | version "0.19.0" 898 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.19.0.tgz#198948217254e3e0b93080e01146b7c73b2a06b2" 899 | dependencies: 900 | vlq "^0.2.1" 901 | 902 | map-obj@^1.0.0, map-obj@^1.0.1: 903 | version "1.0.1" 904 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 905 | 906 | meow@^3.7.0: 907 | version "3.7.0" 908 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 909 | dependencies: 910 | camelcase-keys "^2.0.0" 911 | decamelize "^1.1.2" 912 | loud-rejection "^1.0.0" 913 | map-obj "^1.0.1" 914 | minimist "^1.1.3" 915 | normalize-package-data "^2.3.4" 916 | object-assign "^4.0.1" 917 | read-pkg-up "^1.0.1" 918 | redent "^1.0.0" 919 | trim-newlines "^1.0.0" 920 | 921 | minimatch@^3.0.2: 922 | version "3.0.3" 923 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 924 | dependencies: 925 | brace-expansion "^1.0.0" 926 | 927 | minimist@^1.1.3, minimist@^1.2.0: 928 | version "1.2.0" 929 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 930 | 931 | minimist@0.0.8: 932 | version "0.0.8" 933 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 934 | 935 | mkdirp@^0.5.0, mkdirp@^0.5.1: 936 | version "0.5.1" 937 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 938 | dependencies: 939 | minimist "0.0.8" 940 | 941 | ms@0.7.2: 942 | version "0.7.2" 943 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 944 | 945 | mute-stream@0.0.5: 946 | version "0.0.5" 947 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 948 | 949 | natural-compare@^1.4.0: 950 | version "1.4.0" 951 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 952 | 953 | node-status-codes@^1.0.0: 954 | version "1.0.0" 955 | resolved "https://registry.yarnpkg.com/node-status-codes/-/node-status-codes-1.0.0.tgz#5ae5541d024645d32a58fcddc9ceecea7ae3ac2f" 956 | 957 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: 958 | version "2.3.5" 959 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.5.tgz#8d924f142960e1777e7ffe170543631cc7cb02df" 960 | dependencies: 961 | hosted-git-info "^2.1.4" 962 | is-builtin-module "^1.0.0" 963 | semver "2 || 3 || 4 || 5" 964 | validate-npm-package-license "^3.0.1" 965 | 966 | number-is-nan@^1.0.0: 967 | version "1.0.1" 968 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 969 | 970 | object-assign@^4.0.1, object-assign@^4.1.0: 971 | version "4.1.0" 972 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.0.tgz#7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0" 973 | 974 | once@^1.3.0: 975 | version "1.4.0" 976 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 977 | dependencies: 978 | wrappy "1" 979 | 980 | onetime@^1.0.0: 981 | version "1.1.0" 982 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 983 | 984 | optionator@^0.8.2: 985 | version "0.8.2" 986 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 987 | dependencies: 988 | deep-is "~0.1.3" 989 | fast-levenshtein "~2.0.4" 990 | levn "~0.3.0" 991 | prelude-ls "~1.1.2" 992 | type-check "~0.3.2" 993 | wordwrap "~1.0.0" 994 | 995 | os-homedir@^1.0.0, os-homedir@^1.0.1: 996 | version "1.0.2" 997 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 998 | 999 | os-tmpdir@^1.0.0: 1000 | version "1.0.2" 1001 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1002 | 1003 | osenv@^0.1.0: 1004 | version "0.1.4" 1005 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 1006 | dependencies: 1007 | os-homedir "^1.0.0" 1008 | os-tmpdir "^1.0.0" 1009 | 1010 | package-json@^2.0.0: 1011 | version "2.4.0" 1012 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-2.4.0.tgz#0d15bd67d1cbbddbb2ca222ff2edb86bcb31a8bb" 1013 | dependencies: 1014 | got "^5.0.0" 1015 | registry-auth-token "^3.0.1" 1016 | registry-url "^3.0.3" 1017 | semver "^5.1.0" 1018 | 1019 | parse-json@^2.1.0, parse-json@^2.2.0: 1020 | version "2.2.0" 1021 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1022 | dependencies: 1023 | error-ex "^1.2.0" 1024 | 1025 | path-exists@^2.0.0: 1026 | version "2.1.0" 1027 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1028 | dependencies: 1029 | pinkie-promise "^2.0.0" 1030 | 1031 | path-is-absolute@^1.0.0: 1032 | version "1.0.1" 1033 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1034 | 1035 | path-is-inside@^1.0.1: 1036 | version "1.0.2" 1037 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 1038 | 1039 | path-type@^1.0.0: 1040 | version "1.1.0" 1041 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 1042 | dependencies: 1043 | graceful-fs "^4.1.2" 1044 | pify "^2.0.0" 1045 | pinkie-promise "^2.0.0" 1046 | 1047 | pify@^2.0.0: 1048 | version "2.3.0" 1049 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1050 | 1051 | pinkie-promise@^2.0.0: 1052 | version "2.0.1" 1053 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1054 | dependencies: 1055 | pinkie "^2.0.0" 1056 | 1057 | pinkie@^2.0.0: 1058 | version "2.0.4" 1059 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1060 | 1061 | pluralize@^1.2.1: 1062 | version "1.2.1" 1063 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" 1064 | 1065 | prelude-ls@~1.1.2: 1066 | version "1.1.2" 1067 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 1068 | 1069 | prepend-http@^1.0.1: 1070 | version "1.0.4" 1071 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 1072 | 1073 | process-nextick-args@~1.0.6: 1074 | version "1.0.7" 1075 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1076 | 1077 | progress@^1.1.8: 1078 | version "1.1.8" 1079 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 1080 | 1081 | rc@^1.0.1, rc@^1.1.6: 1082 | version "1.1.6" 1083 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.1.6.tgz#43651b76b6ae53b5c802f1151fa3fc3b059969c9" 1084 | dependencies: 1085 | deep-extend "~0.4.0" 1086 | ini "~1.3.0" 1087 | minimist "^1.2.0" 1088 | strip-json-comments "~1.0.4" 1089 | 1090 | read-all-stream@^3.0.0: 1091 | version "3.1.0" 1092 | resolved "https://registry.yarnpkg.com/read-all-stream/-/read-all-stream-3.1.0.tgz#35c3e177f2078ef789ee4bfafa4373074eaef4fa" 1093 | dependencies: 1094 | pinkie-promise "^2.0.0" 1095 | readable-stream "^2.0.0" 1096 | 1097 | read-pkg-up@^1.0.1: 1098 | version "1.0.1" 1099 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 1100 | dependencies: 1101 | find-up "^1.0.0" 1102 | read-pkg "^1.0.0" 1103 | 1104 | read-pkg@^1.0.0: 1105 | version "1.1.0" 1106 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 1107 | dependencies: 1108 | load-json-file "^1.0.0" 1109 | normalize-package-data "^2.3.2" 1110 | path-type "^1.0.0" 1111 | 1112 | readable-stream@^2.0.0, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.2.2: 1113 | version "2.2.2" 1114 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.2.tgz#a9e6fec3c7dda85f8bb1b3ba7028604556fc825e" 1115 | dependencies: 1116 | buffer-shims "^1.0.0" 1117 | core-util-is "~1.0.0" 1118 | inherits "~2.0.1" 1119 | isarray "~1.0.0" 1120 | process-nextick-args "~1.0.6" 1121 | string_decoder "~0.10.x" 1122 | util-deprecate "~1.0.1" 1123 | 1124 | readline2@^1.0.1: 1125 | version "1.0.1" 1126 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 1127 | dependencies: 1128 | code-point-at "^1.0.0" 1129 | is-fullwidth-code-point "^1.0.0" 1130 | mute-stream "0.0.5" 1131 | 1132 | rechoir@^0.6.2: 1133 | version "0.6.2" 1134 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 1135 | dependencies: 1136 | resolve "^1.1.6" 1137 | 1138 | redent@^1.0.0: 1139 | version "1.0.0" 1140 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 1141 | dependencies: 1142 | indent-string "^2.1.0" 1143 | strip-indent "^1.0.1" 1144 | 1145 | registry-auth-token@^3.0.1: 1146 | version "3.1.0" 1147 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.1.0.tgz#997c08256e0c7999837b90e944db39d8a790276b" 1148 | dependencies: 1149 | rc "^1.1.6" 1150 | 1151 | registry-url@^3.0.3: 1152 | version "3.1.0" 1153 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 1154 | dependencies: 1155 | rc "^1.0.1" 1156 | 1157 | repeat-string@^1.5.2: 1158 | version "1.6.1" 1159 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1160 | 1161 | repeating@^2.0.0: 1162 | version "2.0.1" 1163 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1164 | dependencies: 1165 | is-finite "^1.0.0" 1166 | 1167 | req-cwd@^1.0.1: 1168 | version "1.0.1" 1169 | resolved "https://registry.yarnpkg.com/req-cwd/-/req-cwd-1.0.1.tgz#0d73aeae9266e697a78f7976019677e76acf0fff" 1170 | dependencies: 1171 | req-from "^1.0.1" 1172 | 1173 | req-from@^1.0.1: 1174 | version "1.0.1" 1175 | resolved "https://registry.yarnpkg.com/req-from/-/req-from-1.0.1.tgz#bf81da5147947d32d13b947dc12a58ad4587350e" 1176 | dependencies: 1177 | resolve-from "^2.0.0" 1178 | 1179 | require-uncached@^1.0.2: 1180 | version "1.0.3" 1181 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 1182 | dependencies: 1183 | caller-path "^0.1.0" 1184 | resolve-from "^1.0.0" 1185 | 1186 | resolve-from@^1.0.0: 1187 | version "1.0.1" 1188 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 1189 | 1190 | resolve-from@^2.0.0: 1191 | version "2.0.0" 1192 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57" 1193 | 1194 | resolve@^1.1.6, resolve@^1.1.7: 1195 | version "1.2.0" 1196 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.2.0.tgz#9589c3f2f6149d1417a40becc1663db6ec6bc26c" 1197 | 1198 | resolve@1.1.7: 1199 | version "1.1.7" 1200 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 1201 | 1202 | restore-cursor@^1.0.1: 1203 | version "1.0.1" 1204 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 1205 | dependencies: 1206 | exit-hook "^1.0.0" 1207 | onetime "^1.0.0" 1208 | 1209 | right-align@^0.1.1: 1210 | version "0.1.3" 1211 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 1212 | dependencies: 1213 | align-text "^0.1.1" 1214 | 1215 | rimraf@^2.2.8: 1216 | version "2.5.4" 1217 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" 1218 | dependencies: 1219 | glob "^7.0.5" 1220 | 1221 | rollup-plugin-alias@^1.2.0: 1222 | version "1.2.0" 1223 | resolved "https://registry.yarnpkg.com/rollup-plugin-alias/-/rollup-plugin-alias-1.2.0.tgz#13897948eb43cb4a88d8ba996c2baeacf1b1d6e8" 1224 | 1225 | rollup-plugin-async@^1.2.0: 1226 | version "1.2.0" 1227 | resolved "https://registry.yarnpkg.com/rollup-plugin-async/-/rollup-plugin-async-1.2.0.tgz#f95fdd29f8b6f2332b5a89a9d64ee8087b12b249" 1228 | dependencies: 1229 | async-to-gen "^1.2.0" 1230 | rollup-pluginutils "^1.5.1" 1231 | 1232 | rollup-plugin-buble@^0.15.0: 1233 | version "0.15.0" 1234 | resolved "https://registry.yarnpkg.com/rollup-plugin-buble/-/rollup-plugin-buble-0.15.0.tgz#83c3e89c7fd2266c7918f41ba3980313519c7fd0" 1235 | dependencies: 1236 | buble "^0.15.0" 1237 | rollup-pluginutils "^1.5.0" 1238 | 1239 | rollup-plugin-commonjs@^6.0.0: 1240 | version "6.0.1" 1241 | resolved "https://registry.yarnpkg.com/rollup-plugin-commonjs/-/rollup-plugin-commonjs-6.0.1.tgz#d6587badda75b6f7e6bc351e616da7802e6082b8" 1242 | dependencies: 1243 | acorn "^4.0.1" 1244 | estree-walker "^0.3.0" 1245 | magic-string "^0.19.0" 1246 | resolve "^1.1.7" 1247 | rollup-pluginutils "^1.5.1" 1248 | 1249 | rollup-plugin-flow@^1.1.1: 1250 | version "1.1.1" 1251 | resolved "https://registry.yarnpkg.com/rollup-plugin-flow/-/rollup-plugin-flow-1.1.1.tgz#6ce568f1dd559666b77ab76b4bae251407528db6" 1252 | dependencies: 1253 | flow-remove-types "^1.1.0" 1254 | rollup-pluginutils "^1.5.1" 1255 | 1256 | rollup-plugin-node-resolve@^2.0.0: 1257 | version "2.0.0" 1258 | resolved "https://registry.yarnpkg.com/rollup-plugin-node-resolve/-/rollup-plugin-node-resolve-2.0.0.tgz#07e0ae94ac002a3ea36e8f33ca121d9f836b1309" 1259 | dependencies: 1260 | browser-resolve "^1.11.0" 1261 | builtin-modules "^1.1.0" 1262 | resolve "^1.1.6" 1263 | 1264 | rollup-plugin-replace@^1.1.1: 1265 | version "1.1.1" 1266 | resolved "https://registry.yarnpkg.com/rollup-plugin-replace/-/rollup-plugin-replace-1.1.1.tgz#396315ded050a6ce43b9518a886a3f60efb1ea33" 1267 | dependencies: 1268 | magic-string "^0.15.2" 1269 | minimatch "^3.0.2" 1270 | rollup-pluginutils "^1.5.0" 1271 | 1272 | rollup-plugin-uglify@^1.0.1: 1273 | version "1.0.1" 1274 | resolved "https://registry.yarnpkg.com/rollup-plugin-uglify/-/rollup-plugin-uglify-1.0.1.tgz#11d0b0c8bcd2d07e6908f74fd16b0152390b922a" 1275 | dependencies: 1276 | uglify-js "^2.6.1" 1277 | 1278 | rollup-pluginutils@^1.5.0, rollup-pluginutils@^1.5.1: 1279 | version "1.5.2" 1280 | resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-1.5.2.tgz#1e156e778f94b7255bfa1b3d0178be8f5c552408" 1281 | dependencies: 1282 | estree-walker "^0.2.1" 1283 | minimatch "^3.0.2" 1284 | 1285 | rollup-watch@^2.5.0: 1286 | version "2.5.0" 1287 | resolved "https://registry.yarnpkg.com/rollup-watch/-/rollup-watch-2.5.0.tgz#852d660ddecc51696890aa8c22e95ed4558cc5f7" 1288 | dependencies: 1289 | semver "^5.1.0" 1290 | 1291 | rollup@^0.37.0: 1292 | version "0.37.2" 1293 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-0.37.2.tgz#cc159d20a2f3615ccc2248a4385aacbb3d6d6042" 1294 | dependencies: 1295 | source-map-support "^0.4.0" 1296 | 1297 | run-async@^0.1.0: 1298 | version "0.1.0" 1299 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 1300 | dependencies: 1301 | once "^1.3.0" 1302 | 1303 | rx-lite@^3.1.2: 1304 | version "3.1.2" 1305 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 1306 | 1307 | semver-diff@^2.0.0: 1308 | version "2.1.0" 1309 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 1310 | dependencies: 1311 | semver "^5.0.3" 1312 | 1313 | semver@^5.0.3, semver@^5.1.0, "semver@2 || 3 || 4 || 5": 1314 | version "5.3.0" 1315 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 1316 | 1317 | shelljs@^0.7.5: 1318 | version "0.7.5" 1319 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.5.tgz#2eef7a50a21e1ccf37da00df767ec69e30ad0675" 1320 | dependencies: 1321 | glob "^7.0.0" 1322 | interpret "^1.0.0" 1323 | rechoir "^0.6.2" 1324 | 1325 | signal-exit@^3.0.0: 1326 | version "3.0.2" 1327 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 1328 | 1329 | slice-ansi@0.0.4: 1330 | version "0.0.4" 1331 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 1332 | 1333 | slide@^1.1.5: 1334 | version "1.1.6" 1335 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 1336 | 1337 | source-map-support@^0.4.0: 1338 | version "0.4.8" 1339 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.8.tgz#4871918d8a3af07289182e974e32844327b2e98b" 1340 | dependencies: 1341 | source-map "^0.5.3" 1342 | 1343 | source-map@^0.5.3, source-map@~0.5.1: 1344 | version "0.5.6" 1345 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 1346 | 1347 | spdx-correct@~1.0.0: 1348 | version "1.0.2" 1349 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 1350 | dependencies: 1351 | spdx-license-ids "^1.0.2" 1352 | 1353 | spdx-expression-parse@~1.0.0: 1354 | version "1.0.4" 1355 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 1356 | 1357 | spdx-license-ids@^1.0.2: 1358 | version "1.2.2" 1359 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 1360 | 1361 | sprintf-js@~1.0.2: 1362 | version "1.0.3" 1363 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 1364 | 1365 | string_decoder@~0.10.x: 1366 | version "0.10.31" 1367 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 1368 | 1369 | string-width@^1.0.1: 1370 | version "1.0.2" 1371 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1372 | dependencies: 1373 | code-point-at "^1.0.0" 1374 | is-fullwidth-code-point "^1.0.0" 1375 | strip-ansi "^3.0.0" 1376 | 1377 | string-width@^2.0.0: 1378 | version "2.0.0" 1379 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 1380 | dependencies: 1381 | is-fullwidth-code-point "^2.0.0" 1382 | strip-ansi "^3.0.0" 1383 | 1384 | strip-ansi@^3.0.0: 1385 | version "3.0.1" 1386 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1387 | dependencies: 1388 | ansi-regex "^2.0.0" 1389 | 1390 | strip-bom@^2.0.0: 1391 | version "2.0.0" 1392 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 1393 | dependencies: 1394 | is-utf8 "^0.2.0" 1395 | 1396 | strip-bom@^3.0.0: 1397 | version "3.0.0" 1398 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 1399 | 1400 | strip-indent@^1.0.1: 1401 | version "1.0.1" 1402 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 1403 | dependencies: 1404 | get-stdin "^4.0.1" 1405 | 1406 | strip-json-comments@~1.0.1, strip-json-comments@~1.0.4: 1407 | version "1.0.4" 1408 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91" 1409 | 1410 | supports-color@^2.0.0: 1411 | version "2.0.0" 1412 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 1413 | 1414 | switchy@^0.1.0: 1415 | version "0.1.0" 1416 | resolved "https://registry.yarnpkg.com/switchy/-/switchy-0.1.0.tgz#12dd810cf67281130ed3039cb8657ba682246e19" 1417 | 1418 | table@^3.7.8: 1419 | version "3.8.3" 1420 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" 1421 | dependencies: 1422 | ajv "^4.7.0" 1423 | ajv-keywords "^1.0.0" 1424 | chalk "^1.1.1" 1425 | lodash "^4.0.0" 1426 | slice-ansi "0.0.4" 1427 | string-width "^2.0.0" 1428 | 1429 | text-table@~0.2.0: 1430 | version "0.2.0" 1431 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 1432 | 1433 | through@^2.3.6: 1434 | version "2.3.8" 1435 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 1436 | 1437 | time-stamp@^1.0.0: 1438 | version "1.0.1" 1439 | resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-1.0.1.tgz#9f4bd23559c9365966f3302dbba2b07c6b99b151" 1440 | 1441 | timed-out@^3.0.0: 1442 | version "3.1.0" 1443 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-3.1.0.tgz#43b98b14bb712c9161c28f4dc1f3068d67a04ec2" 1444 | 1445 | trim-newlines@^1.0.0: 1446 | version "1.0.0" 1447 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 1448 | 1449 | tryit@^1.0.1: 1450 | version "1.0.3" 1451 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 1452 | 1453 | type-check@~0.3.2: 1454 | version "0.3.2" 1455 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 1456 | dependencies: 1457 | prelude-ls "~1.1.2" 1458 | 1459 | typedarray@^0.0.6: 1460 | version "0.0.6" 1461 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 1462 | 1463 | uglify-js@^2.6.1: 1464 | version "2.7.5" 1465 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.7.5.tgz#4612c0c7baaee2ba7c487de4904ae122079f2ca8" 1466 | dependencies: 1467 | async "~0.2.6" 1468 | source-map "~0.5.1" 1469 | uglify-to-browserify "~1.0.0" 1470 | yargs "~3.10.0" 1471 | 1472 | uglify-to-browserify@~1.0.0: 1473 | version "1.0.2" 1474 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 1475 | 1476 | unzip-response@^1.0.2: 1477 | version "1.0.2" 1478 | resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-1.0.2.tgz#b984f0877fc0a89c2c773cc1ef7b5b232b5b06fe" 1479 | 1480 | update-notifier@^1.0.2: 1481 | version "1.0.3" 1482 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-1.0.3.tgz#8f92c515482bd6831b7c93013e70f87552c7cf5a" 1483 | dependencies: 1484 | boxen "^0.6.0" 1485 | chalk "^1.0.0" 1486 | configstore "^2.0.0" 1487 | is-npm "^1.0.0" 1488 | latest-version "^2.0.0" 1489 | lazy-req "^1.1.0" 1490 | semver-diff "^2.0.0" 1491 | xdg-basedir "^2.0.0" 1492 | 1493 | url-parse-lax@^1.0.0: 1494 | version "1.0.0" 1495 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" 1496 | dependencies: 1497 | prepend-http "^1.0.1" 1498 | 1499 | user-home@^2.0.0: 1500 | version "2.0.0" 1501 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 1502 | dependencies: 1503 | os-homedir "^1.0.0" 1504 | 1505 | util-deprecate@~1.0.1: 1506 | version "1.0.2" 1507 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1508 | 1509 | uuid@^2.0.1: 1510 | version "2.0.3" 1511 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" 1512 | 1513 | validate-npm-package-license@^3.0.1: 1514 | version "3.0.1" 1515 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 1516 | dependencies: 1517 | spdx-correct "~1.0.0" 1518 | spdx-expression-parse "~1.0.0" 1519 | 1520 | vlq@^0.2.1: 1521 | version "0.2.1" 1522 | resolved "https://registry.yarnpkg.com/vlq/-/vlq-0.2.1.tgz#14439d711891e682535467f8587c5630e4222a6c" 1523 | 1524 | widest-line@^1.0.0: 1525 | version "1.0.0" 1526 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-1.0.0.tgz#0c09c85c2a94683d0d7eaf8ee097d564bf0e105c" 1527 | dependencies: 1528 | string-width "^1.0.1" 1529 | 1530 | window-size@0.1.0: 1531 | version "0.1.0" 1532 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 1533 | 1534 | wordwrap@~1.0.0: 1535 | version "1.0.0" 1536 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 1537 | 1538 | wordwrap@0.0.2: 1539 | version "0.0.2" 1540 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 1541 | 1542 | wrappy@1: 1543 | version "1.0.2" 1544 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1545 | 1546 | write-file-atomic@^1.1.2: 1547 | version "1.2.0" 1548 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.2.0.tgz#14c66d4e4cb3ca0565c28cf3b7a6f3e4d5938fab" 1549 | dependencies: 1550 | graceful-fs "^4.1.2" 1551 | imurmurhash "^0.1.4" 1552 | slide "^1.1.5" 1553 | 1554 | write@^0.2.1: 1555 | version "0.2.1" 1556 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 1557 | dependencies: 1558 | mkdirp "^0.5.1" 1559 | 1560 | xdg-basedir@^2.0.0: 1561 | version "2.0.0" 1562 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-2.0.0.tgz#edbc903cc385fc04523d966a335504b5504d1bd2" 1563 | dependencies: 1564 | os-homedir "^1.0.0" 1565 | 1566 | xtend@^4.0.0: 1567 | version "4.0.1" 1568 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 1569 | 1570 | yargs@~3.10.0: 1571 | version "3.10.0" 1572 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 1573 | dependencies: 1574 | camelcase "^1.0.2" 1575 | cliui "^2.1.0" 1576 | decamelize "^1.0.0" 1577 | window-size "0.1.0" 1578 | 1579 | --------------------------------------------------------------------------------