├── .gitignore ├── LICENSE ├── README.md ├── index.coffee ├── index.js ├── index.min.js ├── package.json ├── webpack.config.coffee └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | 6 | # Runtime data 7 | pids 8 | *.pid 9 | *.seed 10 | 11 | # Directory for instrumented libs generated by jscoverage/JSCover 12 | lib-cov 13 | 14 | # Coverage directory used by tools like istanbul 15 | coverage 16 | 17 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 18 | .grunt 19 | 20 | # node-waf configuration 21 | .lock-wscript 22 | 23 | # Compiled binary addons (http://nodejs.org/api/addons.html) 24 | build/Release 25 | 26 | # Dependency directory 27 | node_modules 28 | 29 | # Optional npm cache directory 30 | .npm 31 | 32 | # Optional REPL history 33 | .node_repl_history 34 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 BKWLD 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | > I'm recommending you use https://github.com/willmcpo/body-scroll-lock rather than this package now. 2 | 3 | # Body scroll toggle 4 | 5 | Disables scroll-ability of the `body`, like you'd want when a fixed position modal is open, by logging the current scroll position and then making the body position fixed using that scroll offset of the body top. Thus, the user shouldn't see the body shift position. Many approaches just `overflow:hidden` on the body, but this does not disable scrolling in iOS. 6 | 7 | 8 | ```js 9 | const bodyScroll = require('body-scroll-toggle') 10 | bodyScroll.disable() 11 | bodyScroll.enable() 12 | ``` 13 | 14 | A disadvantage of this approach is that the iOS bottom nav bar will get re-displayed when the scroll is disabled. 15 | 16 | ## Alternatives 17 | 18 | There are JS `event.preventDefault()` based approaches like: 19 | 20 | - https://github.com/gilbarbara/disable-scroll 21 | - https://github.com/ultrapasty/jquery-disablescroll 22 | 23 | These work but will prevent scrolling of internal elements that have an `overflow:scroll`, which is often the case in mobile navs. 24 | 25 | ## Contributing 26 | 27 | Run `npm version && npm publish` to push new builds up. 28 | -------------------------------------------------------------------------------- /index.coffee: -------------------------------------------------------------------------------- 1 | 2 | # Scroll container reference in different browsers 3 | # http://stackoverflow.com/a/39657473/59160 4 | scrollContainer = document.scrollingElement || document.documentElement 5 | 6 | # The last scrollTop 7 | scrollTop = null 8 | originalStyles = null 9 | 10 | # Public API 11 | module.exports = 12 | 13 | # Toggle scrolling 14 | toggle: -> if scrollTop then disable() else enable() 15 | 16 | # Disable scrolling 17 | # http://stackoverflow.com/a/3968772/59160 18 | disable: -> 19 | scrollTop = scrollContainer.scrollTop 20 | originalStyles = document.body.style.cssText 21 | document.body.style.cssText = ';'+" 22 | overflow: hidden; 23 | position: fixed; 24 | height: 100%; 25 | width: 100%; 26 | top: #{-scrollTop}px; " 27 | 28 | # Re-enable scrolling 29 | enable: -> 30 | document.body.style.cssText = originalStyles 31 | scrollContainer.scrollTop = scrollTop 32 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | (function webpackUniversalModuleDefinition(root, factory) { 2 | if(typeof exports === 'object' && typeof module === 'object') 3 | module.exports = factory(); 4 | else if(typeof define === 'function' && define.amd) 5 | define("bodyScrollToggle", [], factory); 6 | else if(typeof exports === 'object') 7 | exports["bodyScrollToggle"] = factory(); 8 | else 9 | root["bodyScrollToggle"] = factory(); 10 | })(this, function() { 11 | return /******/ (function(modules) { // webpackBootstrap 12 | /******/ // The module cache 13 | /******/ var installedModules = {}; 14 | 15 | /******/ // The require function 16 | /******/ function __webpack_require__(moduleId) { 17 | 18 | /******/ // Check if module is in cache 19 | /******/ if(installedModules[moduleId]) 20 | /******/ return installedModules[moduleId].exports; 21 | 22 | /******/ // Create a new module (and put it into the cache) 23 | /******/ var module = installedModules[moduleId] = { 24 | /******/ exports: {}, 25 | /******/ id: moduleId, 26 | /******/ loaded: false 27 | /******/ }; 28 | 29 | /******/ // Execute the module function 30 | /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); 31 | 32 | /******/ // Flag the module as loaded 33 | /******/ module.loaded = true; 34 | 35 | /******/ // Return the exports of the module 36 | /******/ return module.exports; 37 | /******/ } 38 | 39 | 40 | /******/ // expose the modules object (__webpack_modules__) 41 | /******/ __webpack_require__.m = modules; 42 | 43 | /******/ // expose the module cache 44 | /******/ __webpack_require__.c = installedModules; 45 | 46 | /******/ // __webpack_public_path__ 47 | /******/ __webpack_require__.p = ""; 48 | 49 | /******/ // Load entry module and return exports 50 | /******/ return __webpack_require__(0); 51 | /******/ }) 52 | /************************************************************************/ 53 | /******/ ([ 54 | /* 0 */ 55 | /***/ (function(module, exports) { 56 | 57 | var originalStyles, scrollContainer, scrollTop; 58 | 59 | scrollContainer = document.scrollingElement || document.documentElement; 60 | 61 | scrollTop = null; 62 | 63 | originalStyles = null; 64 | 65 | module.exports = { 66 | toggle: function() { 67 | if (scrollTop) { 68 | return disable(); 69 | } else { 70 | return enable(); 71 | } 72 | }, 73 | disable: function() { 74 | scrollTop = scrollContainer.scrollTop; 75 | originalStyles = document.body.style.cssText; 76 | return document.body.style.cssText = ';' + ("overflow: hidden; position: fixed; height: 100%; width: 100%; top: " + (-scrollTop) + "px; "); 77 | }, 78 | enable: function() { 79 | document.body.style.cssText = originalStyles; 80 | return scrollContainer.scrollTop = scrollTop; 81 | } 82 | }; 83 | 84 | 85 | /***/ }) 86 | /******/ ]) 87 | }); 88 | ; -------------------------------------------------------------------------------- /index.min.js: -------------------------------------------------------------------------------- 1 | !function(e,o){"object"==typeof exports&&"object"==typeof module?module.exports=o():"function"==typeof define&&define.amd?define("bodyScrollToggle",[],o):"object"==typeof exports?exports.bodyScrollToggle=o():e.bodyScrollToggle=o()}(this,function(){return function(e){function o(n){if(t[n])return t[n].exports;var l=t[n]={exports:{},id:n,loaded:!1};return e[n].call(l.exports,l,l.exports,o),l.loaded=!0,l.exports}var t={};return o.m=e,o.c=t,o.p="",o(0)}([function(e,o){var t,n,l;n=document.scrollingElement||document.documentElement,l=null,t=null,e.exports={toggle:function(){return l?disable():enable()},disable:function(){return l=n.scrollTop,t=document.body.style.cssText,document.body.style.cssText=";"+("overflow: hidden; position: fixed; height: 100%; width: 100%; top: "+-l+"px; ")},enable:function(){return document.body.style.cssText=t,n.scrollTop=l}}}])}); -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "body-scroll-toggle", 3 | "version": "0.2.0", 4 | "description": "Enables / disables scroll on the body", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1", 8 | "build": "node_modules/.bin/webpack && node_modules/.bin/webpack -p", 9 | "version": "npm run build && git add -A", 10 | "postversion": "git push --follow-tags" 11 | }, 12 | "repository": { 13 | "type": "git", 14 | "url": "git+https://github.com/BKWLD/body-scroll-toggle.git" 15 | }, 16 | "author": "info@bukwild.com", 17 | "license": "MIT", 18 | "bugs": { 19 | "url": "https://github.com/BKWLD/body-scroll-toggle/issues" 20 | }, 21 | "homepage": "https://github.com/BKWLD/body-scroll-toggle#readme", 22 | "devDependencies": { 23 | "coffee-loader": "^0.7.2", 24 | "coffee-script": "^1.10.0", 25 | "webpack": "^1.13.1" 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /webpack.config.coffee: -------------------------------------------------------------------------------- 1 | module.exports = 2 | 3 | entry: 4 | index: './index.coffee' 5 | 6 | module: loaders: [ 7 | { test: /\.coffee$/, loader: 'coffee-loader' } 8 | ] 9 | 10 | output: 11 | filename: if '-p' in process.argv then '[name].min.js' else '[name].js' 12 | libraryTarget: 'umd' 13 | umdNamedDefine: true 14 | library: 'bodyScrollToggle' 15 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abbrev@1: 6 | version "1.1.0" 7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 8 | 9 | acorn@^3.0.0: 10 | version "3.3.0" 11 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 12 | 13 | ajv@^4.9.1: 14 | version "4.11.8" 15 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 16 | dependencies: 17 | co "^4.6.0" 18 | json-stable-stringify "^1.0.1" 19 | 20 | align-text@^0.1.1, align-text@^0.1.3: 21 | version "0.1.4" 22 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 23 | dependencies: 24 | kind-of "^3.0.2" 25 | longest "^1.0.1" 26 | repeat-string "^1.5.2" 27 | 28 | amdefine@>=0.0.4: 29 | version "1.0.1" 30 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 31 | 32 | ansi-regex@^2.0.0: 33 | version "2.1.1" 34 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 35 | 36 | anymatch@^1.3.0: 37 | version "1.3.2" 38 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 39 | dependencies: 40 | micromatch "^2.1.5" 41 | normalize-path "^2.0.0" 42 | 43 | aproba@^1.0.3: 44 | version "1.1.2" 45 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.2.tgz#45c6629094de4e96f693ef7eab74ae079c240fc1" 46 | 47 | are-we-there-yet@~1.1.2: 48 | version "1.1.4" 49 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 50 | dependencies: 51 | delegates "^1.0.0" 52 | readable-stream "^2.0.6" 53 | 54 | arr-diff@^2.0.0: 55 | version "2.0.0" 56 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 57 | dependencies: 58 | arr-flatten "^1.0.1" 59 | 60 | arr-flatten@^1.0.1: 61 | version "1.1.0" 62 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 63 | 64 | array-unique@^0.2.1: 65 | version "0.2.1" 66 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 67 | 68 | asn1@~0.2.3: 69 | version "0.2.3" 70 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 71 | 72 | assert-plus@1.0.0, assert-plus@^1.0.0: 73 | version "1.0.0" 74 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 75 | 76 | assert-plus@^0.2.0: 77 | version "0.2.0" 78 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 79 | 80 | assert@^1.1.1: 81 | version "1.4.1" 82 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" 83 | dependencies: 84 | util "0.10.3" 85 | 86 | async-each@^1.0.0: 87 | version "1.0.1" 88 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 89 | 90 | async@^0.9.0: 91 | version "0.9.2" 92 | resolved "https://registry.yarnpkg.com/async/-/async-0.9.2.tgz#aea74d5e61c1f899613bf64bda66d4c78f2fd17d" 93 | 94 | async@^1.3.0: 95 | version "1.5.2" 96 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 97 | 98 | async@~0.2.6: 99 | version "0.2.10" 100 | resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1" 101 | 102 | asynckit@^0.4.0: 103 | version "0.4.0" 104 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 105 | 106 | aws-sign2@~0.6.0: 107 | version "0.6.0" 108 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 109 | 110 | aws4@^1.2.1: 111 | version "1.6.0" 112 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 113 | 114 | balanced-match@^1.0.0: 115 | version "1.0.0" 116 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 117 | 118 | base64-js@^1.0.2: 119 | version "1.2.1" 120 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.1.tgz#a91947da1f4a516ea38e5b4ec0ec3773675e0886" 121 | 122 | bcrypt-pbkdf@^1.0.0: 123 | version "1.0.1" 124 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 125 | dependencies: 126 | tweetnacl "^0.14.3" 127 | 128 | big.js@^3.1.3: 129 | version "3.1.3" 130 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.1.3.tgz#4cada2193652eb3ca9ec8e55c9015669c9806978" 131 | 132 | binary-extensions@^1.0.0: 133 | version "1.10.0" 134 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.10.0.tgz#9aeb9a6c5e88638aad171e167f5900abe24835d0" 135 | 136 | block-stream@*: 137 | version "0.0.9" 138 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 139 | dependencies: 140 | inherits "~2.0.0" 141 | 142 | boom@2.x.x: 143 | version "2.10.1" 144 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 145 | dependencies: 146 | hoek "2.x.x" 147 | 148 | brace-expansion@^1.1.7: 149 | version "1.1.8" 150 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 151 | dependencies: 152 | balanced-match "^1.0.0" 153 | concat-map "0.0.1" 154 | 155 | braces@^1.8.2: 156 | version "1.8.5" 157 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 158 | dependencies: 159 | expand-range "^1.8.1" 160 | preserve "^0.2.0" 161 | repeat-element "^1.1.2" 162 | 163 | browserify-aes@0.4.0: 164 | version "0.4.0" 165 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-0.4.0.tgz#067149b668df31c4b58533e02d01e806d8608e2c" 166 | dependencies: 167 | inherits "^2.0.1" 168 | 169 | browserify-zlib@^0.1.4: 170 | version "0.1.4" 171 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d" 172 | dependencies: 173 | pako "~0.2.0" 174 | 175 | buffer@^4.9.0: 176 | version "4.9.1" 177 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" 178 | dependencies: 179 | base64-js "^1.0.2" 180 | ieee754 "^1.1.4" 181 | isarray "^1.0.0" 182 | 183 | builtin-status-codes@^3.0.0: 184 | version "3.0.0" 185 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" 186 | 187 | camelcase@^1.0.2: 188 | version "1.2.1" 189 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 190 | 191 | caseless@~0.12.0: 192 | version "0.12.0" 193 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 194 | 195 | center-align@^0.1.1: 196 | version "0.1.3" 197 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 198 | dependencies: 199 | align-text "^0.1.3" 200 | lazy-cache "^1.0.3" 201 | 202 | chokidar@^1.0.0: 203 | version "1.7.0" 204 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 205 | dependencies: 206 | anymatch "^1.3.0" 207 | async-each "^1.0.0" 208 | glob-parent "^2.0.0" 209 | inherits "^2.0.1" 210 | is-binary-path "^1.0.0" 211 | is-glob "^2.0.0" 212 | path-is-absolute "^1.0.0" 213 | readdirp "^2.0.0" 214 | optionalDependencies: 215 | fsevents "^1.0.0" 216 | 217 | cliui@^2.1.0: 218 | version "2.1.0" 219 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 220 | dependencies: 221 | center-align "^0.1.1" 222 | right-align "^0.1.1" 223 | wordwrap "0.0.2" 224 | 225 | clone@^1.0.2: 226 | version "1.0.2" 227 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149" 228 | 229 | co@^4.6.0: 230 | version "4.6.0" 231 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 232 | 233 | code-point-at@^1.0.0: 234 | version "1.1.0" 235 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 236 | 237 | coffee-loader@^0.7.2: 238 | version "0.7.3" 239 | resolved "https://registry.yarnpkg.com/coffee-loader/-/coffee-loader-0.7.3.tgz#fadbc6efd6fc7ecc88c5b3046a2c292066bcb54a" 240 | dependencies: 241 | loader-utils "^1.0.2" 242 | 243 | coffee-script@^1.10.0: 244 | version "1.12.7" 245 | resolved "https://registry.yarnpkg.com/coffee-script/-/coffee-script-1.12.7.tgz#c05dae0cb79591d05b3070a8433a98c9a89ccc53" 246 | 247 | combined-stream@^1.0.5, combined-stream@~1.0.5: 248 | version "1.0.5" 249 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 250 | dependencies: 251 | delayed-stream "~1.0.0" 252 | 253 | concat-map@0.0.1: 254 | version "0.0.1" 255 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 256 | 257 | console-browserify@^1.1.0: 258 | version "1.1.0" 259 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" 260 | dependencies: 261 | date-now "^0.1.4" 262 | 263 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 264 | version "1.1.0" 265 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 266 | 267 | constants-browserify@^1.0.0: 268 | version "1.0.0" 269 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" 270 | 271 | core-util-is@1.0.2, core-util-is@~1.0.0: 272 | version "1.0.2" 273 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 274 | 275 | cryptiles@2.x.x: 276 | version "2.0.5" 277 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 278 | dependencies: 279 | boom "2.x.x" 280 | 281 | crypto-browserify@3.3.0: 282 | version "3.3.0" 283 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.3.0.tgz#b9fc75bb4a0ed61dcf1cd5dae96eb30c9c3e506c" 284 | dependencies: 285 | browserify-aes "0.4.0" 286 | pbkdf2-compat "2.0.1" 287 | ripemd160 "0.2.0" 288 | sha.js "2.2.6" 289 | 290 | dashdash@^1.12.0: 291 | version "1.14.1" 292 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 293 | dependencies: 294 | assert-plus "^1.0.0" 295 | 296 | date-now@^0.1.4: 297 | version "0.1.4" 298 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 299 | 300 | debug@^2.2.0: 301 | version "2.6.8" 302 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 303 | dependencies: 304 | ms "2.0.0" 305 | 306 | decamelize@^1.0.0: 307 | version "1.2.0" 308 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 309 | 310 | deep-extend@~0.4.0: 311 | version "0.4.2" 312 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 313 | 314 | delayed-stream@~1.0.0: 315 | version "1.0.0" 316 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 317 | 318 | delegates@^1.0.0: 319 | version "1.0.0" 320 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 321 | 322 | domain-browser@^1.1.1: 323 | version "1.1.7" 324 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" 325 | 326 | ecc-jsbn@~0.1.1: 327 | version "0.1.1" 328 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 329 | dependencies: 330 | jsbn "~0.1.0" 331 | 332 | emojis-list@^2.0.0: 333 | version "2.1.0" 334 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" 335 | 336 | enhanced-resolve@~0.9.0: 337 | version "0.9.1" 338 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-0.9.1.tgz#4d6e689b3725f86090927ccc86cd9f1635b89e2e" 339 | dependencies: 340 | graceful-fs "^4.1.2" 341 | memory-fs "^0.2.0" 342 | tapable "^0.1.8" 343 | 344 | errno@^0.1.3: 345 | version "0.1.4" 346 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 347 | dependencies: 348 | prr "~0.0.0" 349 | 350 | events@^1.0.0: 351 | version "1.1.1" 352 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 353 | 354 | expand-brackets@^0.1.4: 355 | version "0.1.5" 356 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 357 | dependencies: 358 | is-posix-bracket "^0.1.0" 359 | 360 | expand-range@^1.8.1: 361 | version "1.8.2" 362 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 363 | dependencies: 364 | fill-range "^2.1.0" 365 | 366 | extend@~3.0.0: 367 | version "3.0.1" 368 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 369 | 370 | extglob@^0.3.1: 371 | version "0.3.2" 372 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 373 | dependencies: 374 | is-extglob "^1.0.0" 375 | 376 | extsprintf@1.3.0, extsprintf@^1.2.0: 377 | version "1.3.0" 378 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 379 | 380 | filename-regex@^2.0.0: 381 | version "2.0.1" 382 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 383 | 384 | fill-range@^2.1.0: 385 | version "2.2.3" 386 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 387 | dependencies: 388 | is-number "^2.1.0" 389 | isobject "^2.0.0" 390 | randomatic "^1.1.3" 391 | repeat-element "^1.1.2" 392 | repeat-string "^1.5.2" 393 | 394 | for-in@^1.0.1: 395 | version "1.0.2" 396 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 397 | 398 | for-own@^0.1.4: 399 | version "0.1.5" 400 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 401 | dependencies: 402 | for-in "^1.0.1" 403 | 404 | forever-agent@~0.6.1: 405 | version "0.6.1" 406 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 407 | 408 | form-data@~2.1.1: 409 | version "2.1.4" 410 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 411 | dependencies: 412 | asynckit "^0.4.0" 413 | combined-stream "^1.0.5" 414 | mime-types "^2.1.12" 415 | 416 | fs.realpath@^1.0.0: 417 | version "1.0.0" 418 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 419 | 420 | fsevents@^1.0.0: 421 | version "1.1.2" 422 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4" 423 | dependencies: 424 | nan "^2.3.0" 425 | node-pre-gyp "^0.6.36" 426 | 427 | fstream-ignore@^1.0.5: 428 | version "1.0.5" 429 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 430 | dependencies: 431 | fstream "^1.0.0" 432 | inherits "2" 433 | minimatch "^3.0.0" 434 | 435 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 436 | version "1.0.11" 437 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 438 | dependencies: 439 | graceful-fs "^4.1.2" 440 | inherits "~2.0.0" 441 | mkdirp ">=0.5 0" 442 | rimraf "2" 443 | 444 | gauge@~2.7.3: 445 | version "2.7.4" 446 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 447 | dependencies: 448 | aproba "^1.0.3" 449 | console-control-strings "^1.0.0" 450 | has-unicode "^2.0.0" 451 | object-assign "^4.1.0" 452 | signal-exit "^3.0.0" 453 | string-width "^1.0.1" 454 | strip-ansi "^3.0.1" 455 | wide-align "^1.1.0" 456 | 457 | getpass@^0.1.1: 458 | version "0.1.7" 459 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 460 | dependencies: 461 | assert-plus "^1.0.0" 462 | 463 | glob-base@^0.3.0: 464 | version "0.3.0" 465 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 466 | dependencies: 467 | glob-parent "^2.0.0" 468 | is-glob "^2.0.0" 469 | 470 | glob-parent@^2.0.0: 471 | version "2.0.0" 472 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 473 | dependencies: 474 | is-glob "^2.0.0" 475 | 476 | glob@^7.0.5: 477 | version "7.1.2" 478 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 479 | dependencies: 480 | fs.realpath "^1.0.0" 481 | inflight "^1.0.4" 482 | inherits "2" 483 | minimatch "^3.0.4" 484 | once "^1.3.0" 485 | path-is-absolute "^1.0.0" 486 | 487 | graceful-fs@^4.1.2: 488 | version "4.1.11" 489 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 490 | 491 | har-schema@^1.0.5: 492 | version "1.0.5" 493 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 494 | 495 | har-validator@~4.2.1: 496 | version "4.2.1" 497 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 498 | dependencies: 499 | ajv "^4.9.1" 500 | har-schema "^1.0.5" 501 | 502 | has-flag@^1.0.0: 503 | version "1.0.0" 504 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 505 | 506 | has-unicode@^2.0.0: 507 | version "2.0.1" 508 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 509 | 510 | hawk@~3.1.3: 511 | version "3.1.3" 512 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 513 | dependencies: 514 | boom "2.x.x" 515 | cryptiles "2.x.x" 516 | hoek "2.x.x" 517 | sntp "1.x.x" 518 | 519 | hoek@2.x.x: 520 | version "2.16.3" 521 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 522 | 523 | http-signature@~1.1.0: 524 | version "1.1.1" 525 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 526 | dependencies: 527 | assert-plus "^0.2.0" 528 | jsprim "^1.2.2" 529 | sshpk "^1.7.0" 530 | 531 | https-browserify@0.0.1: 532 | version "0.0.1" 533 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82" 534 | 535 | ieee754@^1.1.4: 536 | version "1.1.8" 537 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 538 | 539 | indexof@0.0.1: 540 | version "0.0.1" 541 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 542 | 543 | inflight@^1.0.4: 544 | version "1.0.6" 545 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 546 | dependencies: 547 | once "^1.3.0" 548 | wrappy "1" 549 | 550 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: 551 | version "2.0.3" 552 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 553 | 554 | inherits@2.0.1: 555 | version "2.0.1" 556 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 557 | 558 | ini@~1.3.0: 559 | version "1.3.4" 560 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 561 | 562 | interpret@^0.6.4: 563 | version "0.6.6" 564 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-0.6.6.tgz#fecd7a18e7ce5ca6abfb953e1f86213a49f1625b" 565 | 566 | is-binary-path@^1.0.0: 567 | version "1.0.1" 568 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 569 | dependencies: 570 | binary-extensions "^1.0.0" 571 | 572 | is-buffer@^1.1.5: 573 | version "1.1.5" 574 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 575 | 576 | is-dotfile@^1.0.0: 577 | version "1.0.3" 578 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 579 | 580 | is-equal-shallow@^0.1.3: 581 | version "0.1.3" 582 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 583 | dependencies: 584 | is-primitive "^2.0.0" 585 | 586 | is-extendable@^0.1.1: 587 | version "0.1.1" 588 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 589 | 590 | is-extglob@^1.0.0: 591 | version "1.0.0" 592 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 593 | 594 | is-fullwidth-code-point@^1.0.0: 595 | version "1.0.0" 596 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 597 | dependencies: 598 | number-is-nan "^1.0.0" 599 | 600 | is-glob@^2.0.0, is-glob@^2.0.1: 601 | version "2.0.1" 602 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 603 | dependencies: 604 | is-extglob "^1.0.0" 605 | 606 | is-number@^2.1.0: 607 | version "2.1.0" 608 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 609 | dependencies: 610 | kind-of "^3.0.2" 611 | 612 | is-number@^3.0.0: 613 | version "3.0.0" 614 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 615 | dependencies: 616 | kind-of "^3.0.2" 617 | 618 | is-posix-bracket@^0.1.0: 619 | version "0.1.1" 620 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 621 | 622 | is-primitive@^2.0.0: 623 | version "2.0.0" 624 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 625 | 626 | is-typedarray@~1.0.0: 627 | version "1.0.0" 628 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 629 | 630 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 631 | version "1.0.0" 632 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 633 | 634 | isobject@^2.0.0: 635 | version "2.1.0" 636 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 637 | dependencies: 638 | isarray "1.0.0" 639 | 640 | isstream@~0.1.2: 641 | version "0.1.2" 642 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 643 | 644 | jsbn@~0.1.0: 645 | version "0.1.1" 646 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 647 | 648 | json-schema@0.2.3: 649 | version "0.2.3" 650 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 651 | 652 | json-stable-stringify@^1.0.1: 653 | version "1.0.1" 654 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 655 | dependencies: 656 | jsonify "~0.0.0" 657 | 658 | json-stringify-safe@~5.0.1: 659 | version "5.0.1" 660 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 661 | 662 | json5@^0.5.0: 663 | version "0.5.1" 664 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 665 | 666 | jsonify@~0.0.0: 667 | version "0.0.0" 668 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 669 | 670 | jsprim@^1.2.2: 671 | version "1.4.1" 672 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 673 | dependencies: 674 | assert-plus "1.0.0" 675 | extsprintf "1.3.0" 676 | json-schema "0.2.3" 677 | verror "1.10.0" 678 | 679 | kind-of@^3.0.2: 680 | version "3.2.2" 681 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 682 | dependencies: 683 | is-buffer "^1.1.5" 684 | 685 | kind-of@^4.0.0: 686 | version "4.0.0" 687 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 688 | dependencies: 689 | is-buffer "^1.1.5" 690 | 691 | lazy-cache@^1.0.3: 692 | version "1.0.4" 693 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 694 | 695 | loader-utils@^0.2.11: 696 | version "0.2.17" 697 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.17.tgz#f86e6374d43205a6e6c60e9196f17c0299bfb348" 698 | dependencies: 699 | big.js "^3.1.3" 700 | emojis-list "^2.0.0" 701 | json5 "^0.5.0" 702 | object-assign "^4.0.1" 703 | 704 | loader-utils@^1.0.2: 705 | version "1.1.0" 706 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd" 707 | dependencies: 708 | big.js "^3.1.3" 709 | emojis-list "^2.0.0" 710 | json5 "^0.5.0" 711 | 712 | longest@^1.0.1: 713 | version "1.0.1" 714 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 715 | 716 | memory-fs@^0.2.0: 717 | version "0.2.0" 718 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.2.0.tgz#f2bb25368bc121e391c2520de92969caee0a0290" 719 | 720 | memory-fs@~0.3.0: 721 | version "0.3.0" 722 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.3.0.tgz#7bcc6b629e3a43e871d7e29aca6ae8a7f15cbb20" 723 | dependencies: 724 | errno "^0.1.3" 725 | readable-stream "^2.0.1" 726 | 727 | micromatch@^2.1.5: 728 | version "2.3.11" 729 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 730 | dependencies: 731 | arr-diff "^2.0.0" 732 | array-unique "^0.2.1" 733 | braces "^1.8.2" 734 | expand-brackets "^0.1.4" 735 | extglob "^0.3.1" 736 | filename-regex "^2.0.0" 737 | is-extglob "^1.0.0" 738 | is-glob "^2.0.1" 739 | kind-of "^3.0.2" 740 | normalize-path "^2.0.1" 741 | object.omit "^2.0.0" 742 | parse-glob "^3.0.4" 743 | regex-cache "^0.4.2" 744 | 745 | mime-db@~1.30.0: 746 | version "1.30.0" 747 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 748 | 749 | mime-types@^2.1.12, mime-types@~2.1.7: 750 | version "2.1.17" 751 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 752 | dependencies: 753 | mime-db "~1.30.0" 754 | 755 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 756 | version "3.0.4" 757 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 758 | dependencies: 759 | brace-expansion "^1.1.7" 760 | 761 | minimist@0.0.8: 762 | version "0.0.8" 763 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 764 | 765 | minimist@^1.2.0: 766 | version "1.2.0" 767 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 768 | 769 | minimist@~0.0.1: 770 | version "0.0.10" 771 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 772 | 773 | "mkdirp@>=0.5 0", mkdirp@^0.5.1, mkdirp@~0.5.0: 774 | version "0.5.1" 775 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 776 | dependencies: 777 | minimist "0.0.8" 778 | 779 | ms@2.0.0: 780 | version "2.0.0" 781 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 782 | 783 | nan@^2.3.0: 784 | version "2.7.0" 785 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.7.0.tgz#d95bf721ec877e08db276ed3fc6eb78f9083ad46" 786 | 787 | node-libs-browser@^0.7.0: 788 | version "0.7.0" 789 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-0.7.0.tgz#3e272c0819e308935e26674408d7af0e1491b83b" 790 | dependencies: 791 | assert "^1.1.1" 792 | browserify-zlib "^0.1.4" 793 | buffer "^4.9.0" 794 | console-browserify "^1.1.0" 795 | constants-browserify "^1.0.0" 796 | crypto-browserify "3.3.0" 797 | domain-browser "^1.1.1" 798 | events "^1.0.0" 799 | https-browserify "0.0.1" 800 | os-browserify "^0.2.0" 801 | path-browserify "0.0.0" 802 | process "^0.11.0" 803 | punycode "^1.2.4" 804 | querystring-es3 "^0.2.0" 805 | readable-stream "^2.0.5" 806 | stream-browserify "^2.0.1" 807 | stream-http "^2.3.1" 808 | string_decoder "^0.10.25" 809 | timers-browserify "^2.0.2" 810 | tty-browserify "0.0.0" 811 | url "^0.11.0" 812 | util "^0.10.3" 813 | vm-browserify "0.0.4" 814 | 815 | node-pre-gyp@^0.6.36: 816 | version "0.6.36" 817 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz#db604112cb74e0d477554e9b505b17abddfab786" 818 | dependencies: 819 | mkdirp "^0.5.1" 820 | nopt "^4.0.1" 821 | npmlog "^4.0.2" 822 | rc "^1.1.7" 823 | request "^2.81.0" 824 | rimraf "^2.6.1" 825 | semver "^5.3.0" 826 | tar "^2.2.1" 827 | tar-pack "^3.4.0" 828 | 829 | nopt@^4.0.1: 830 | version "4.0.1" 831 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 832 | dependencies: 833 | abbrev "1" 834 | osenv "^0.1.4" 835 | 836 | normalize-path@^2.0.0, normalize-path@^2.0.1: 837 | version "2.1.1" 838 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 839 | dependencies: 840 | remove-trailing-separator "^1.0.1" 841 | 842 | npmlog@^4.0.2: 843 | version "4.1.2" 844 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 845 | dependencies: 846 | are-we-there-yet "~1.1.2" 847 | console-control-strings "~1.1.0" 848 | gauge "~2.7.3" 849 | set-blocking "~2.0.0" 850 | 851 | number-is-nan@^1.0.0: 852 | version "1.0.1" 853 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 854 | 855 | oauth-sign@~0.8.1: 856 | version "0.8.2" 857 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 858 | 859 | object-assign@^4.0.1, object-assign@^4.1.0: 860 | version "4.1.1" 861 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 862 | 863 | object.omit@^2.0.0: 864 | version "2.0.1" 865 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 866 | dependencies: 867 | for-own "^0.1.4" 868 | is-extendable "^0.1.1" 869 | 870 | once@^1.3.0, once@^1.3.3: 871 | version "1.4.0" 872 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 873 | dependencies: 874 | wrappy "1" 875 | 876 | optimist@~0.6.0: 877 | version "0.6.1" 878 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 879 | dependencies: 880 | minimist "~0.0.1" 881 | wordwrap "~0.0.2" 882 | 883 | os-browserify@^0.2.0: 884 | version "0.2.1" 885 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.2.1.tgz#63fc4ccee5d2d7763d26bbf8601078e6c2e0044f" 886 | 887 | os-homedir@^1.0.0: 888 | version "1.0.2" 889 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 890 | 891 | os-tmpdir@^1.0.0: 892 | version "1.0.2" 893 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 894 | 895 | osenv@^0.1.4: 896 | version "0.1.4" 897 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 898 | dependencies: 899 | os-homedir "^1.0.0" 900 | os-tmpdir "^1.0.0" 901 | 902 | pako@~0.2.0: 903 | version "0.2.9" 904 | resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" 905 | 906 | parse-glob@^3.0.4: 907 | version "3.0.4" 908 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 909 | dependencies: 910 | glob-base "^0.3.0" 911 | is-dotfile "^1.0.0" 912 | is-extglob "^1.0.0" 913 | is-glob "^2.0.0" 914 | 915 | path-browserify@0.0.0: 916 | version "0.0.0" 917 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" 918 | 919 | path-is-absolute@^1.0.0: 920 | version "1.0.1" 921 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 922 | 923 | pbkdf2-compat@2.0.1: 924 | version "2.0.1" 925 | resolved "https://registry.yarnpkg.com/pbkdf2-compat/-/pbkdf2-compat-2.0.1.tgz#b6e0c8fa99494d94e0511575802a59a5c142f288" 926 | 927 | performance-now@^0.2.0: 928 | version "0.2.0" 929 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 930 | 931 | preserve@^0.2.0: 932 | version "0.2.0" 933 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 934 | 935 | process-nextick-args@~1.0.6: 936 | version "1.0.7" 937 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 938 | 939 | process@^0.11.0: 940 | version "0.11.10" 941 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" 942 | 943 | prr@~0.0.0: 944 | version "0.0.0" 945 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 946 | 947 | punycode@1.3.2: 948 | version "1.3.2" 949 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 950 | 951 | punycode@^1.2.4, punycode@^1.4.1: 952 | version "1.4.1" 953 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 954 | 955 | qs@~6.4.0: 956 | version "6.4.0" 957 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 958 | 959 | querystring-es3@^0.2.0: 960 | version "0.2.1" 961 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 962 | 963 | querystring@0.2.0: 964 | version "0.2.0" 965 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 966 | 967 | randomatic@^1.1.3: 968 | version "1.1.7" 969 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 970 | dependencies: 971 | is-number "^3.0.0" 972 | kind-of "^4.0.0" 973 | 974 | rc@^1.1.7: 975 | version "1.2.1" 976 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 977 | dependencies: 978 | deep-extend "~0.4.0" 979 | ini "~1.3.0" 980 | minimist "^1.2.0" 981 | strip-json-comments "~2.0.1" 982 | 983 | readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.6: 984 | version "2.3.3" 985 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 986 | dependencies: 987 | core-util-is "~1.0.0" 988 | inherits "~2.0.3" 989 | isarray "~1.0.0" 990 | process-nextick-args "~1.0.6" 991 | safe-buffer "~5.1.1" 992 | string_decoder "~1.0.3" 993 | util-deprecate "~1.0.1" 994 | 995 | readdirp@^2.0.0: 996 | version "2.1.0" 997 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 998 | dependencies: 999 | graceful-fs "^4.1.2" 1000 | minimatch "^3.0.2" 1001 | readable-stream "^2.0.2" 1002 | set-immediate-shim "^1.0.1" 1003 | 1004 | regex-cache@^0.4.2: 1005 | version "0.4.4" 1006 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 1007 | dependencies: 1008 | is-equal-shallow "^0.1.3" 1009 | 1010 | remove-trailing-separator@^1.0.1: 1011 | version "1.1.0" 1012 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 1013 | 1014 | repeat-element@^1.1.2: 1015 | version "1.1.2" 1016 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1017 | 1018 | repeat-string@^1.5.2: 1019 | version "1.6.1" 1020 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1021 | 1022 | request@^2.81.0: 1023 | version "2.81.0" 1024 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 1025 | dependencies: 1026 | aws-sign2 "~0.6.0" 1027 | aws4 "^1.2.1" 1028 | caseless "~0.12.0" 1029 | combined-stream "~1.0.5" 1030 | extend "~3.0.0" 1031 | forever-agent "~0.6.1" 1032 | form-data "~2.1.1" 1033 | har-validator "~4.2.1" 1034 | hawk "~3.1.3" 1035 | http-signature "~1.1.0" 1036 | is-typedarray "~1.0.0" 1037 | isstream "~0.1.2" 1038 | json-stringify-safe "~5.0.1" 1039 | mime-types "~2.1.7" 1040 | oauth-sign "~0.8.1" 1041 | performance-now "^0.2.0" 1042 | qs "~6.4.0" 1043 | safe-buffer "^5.0.1" 1044 | stringstream "~0.0.4" 1045 | tough-cookie "~2.3.0" 1046 | tunnel-agent "^0.6.0" 1047 | uuid "^3.0.0" 1048 | 1049 | right-align@^0.1.1: 1050 | version "0.1.3" 1051 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 1052 | dependencies: 1053 | align-text "^0.1.1" 1054 | 1055 | rimraf@2, rimraf@^2.5.1, rimraf@^2.6.1: 1056 | version "2.6.1" 1057 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 1058 | dependencies: 1059 | glob "^7.0.5" 1060 | 1061 | ripemd160@0.2.0: 1062 | version "0.2.0" 1063 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-0.2.0.tgz#2bf198bde167cacfa51c0a928e84b68bbe171fce" 1064 | 1065 | safe-buffer@^5.0.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 1066 | version "5.1.1" 1067 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 1068 | 1069 | semver@^5.3.0: 1070 | version "5.4.1" 1071 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 1072 | 1073 | set-blocking@~2.0.0: 1074 | version "2.0.0" 1075 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1076 | 1077 | set-immediate-shim@^1.0.1: 1078 | version "1.0.1" 1079 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 1080 | 1081 | setimmediate@^1.0.4: 1082 | version "1.0.5" 1083 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 1084 | 1085 | sha.js@2.2.6: 1086 | version "2.2.6" 1087 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.2.6.tgz#17ddeddc5f722fb66501658895461977867315ba" 1088 | 1089 | signal-exit@^3.0.0: 1090 | version "3.0.2" 1091 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 1092 | 1093 | sntp@1.x.x: 1094 | version "1.0.9" 1095 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 1096 | dependencies: 1097 | hoek "2.x.x" 1098 | 1099 | source-list-map@~0.1.7: 1100 | version "0.1.8" 1101 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-0.1.8.tgz#c550b2ab5427f6b3f21f5afead88c4f5587b2106" 1102 | 1103 | source-map@~0.4.1: 1104 | version "0.4.4" 1105 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 1106 | dependencies: 1107 | amdefine ">=0.0.4" 1108 | 1109 | source-map@~0.5.1: 1110 | version "0.5.7" 1111 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 1112 | 1113 | sshpk@^1.7.0: 1114 | version "1.13.1" 1115 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 1116 | dependencies: 1117 | asn1 "~0.2.3" 1118 | assert-plus "^1.0.0" 1119 | dashdash "^1.12.0" 1120 | getpass "^0.1.1" 1121 | optionalDependencies: 1122 | bcrypt-pbkdf "^1.0.0" 1123 | ecc-jsbn "~0.1.1" 1124 | jsbn "~0.1.0" 1125 | tweetnacl "~0.14.0" 1126 | 1127 | stream-browserify@^2.0.1: 1128 | version "2.0.1" 1129 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" 1130 | dependencies: 1131 | inherits "~2.0.1" 1132 | readable-stream "^2.0.2" 1133 | 1134 | stream-http@^2.3.1: 1135 | version "2.7.2" 1136 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.7.2.tgz#40a050ec8dc3b53b33d9909415c02c0bf1abfbad" 1137 | dependencies: 1138 | builtin-status-codes "^3.0.0" 1139 | inherits "^2.0.1" 1140 | readable-stream "^2.2.6" 1141 | to-arraybuffer "^1.0.0" 1142 | xtend "^4.0.0" 1143 | 1144 | string-width@^1.0.1, string-width@^1.0.2: 1145 | version "1.0.2" 1146 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1147 | dependencies: 1148 | code-point-at "^1.0.0" 1149 | is-fullwidth-code-point "^1.0.0" 1150 | strip-ansi "^3.0.0" 1151 | 1152 | string_decoder@^0.10.25: 1153 | version "0.10.31" 1154 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 1155 | 1156 | string_decoder@~1.0.3: 1157 | version "1.0.3" 1158 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 1159 | dependencies: 1160 | safe-buffer "~5.1.0" 1161 | 1162 | stringstream@~0.0.4: 1163 | version "0.0.5" 1164 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 1165 | 1166 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 1167 | version "3.0.1" 1168 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1169 | dependencies: 1170 | ansi-regex "^2.0.0" 1171 | 1172 | strip-json-comments@~2.0.1: 1173 | version "2.0.1" 1174 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 1175 | 1176 | supports-color@^3.1.0: 1177 | version "3.2.3" 1178 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 1179 | dependencies: 1180 | has-flag "^1.0.0" 1181 | 1182 | tapable@^0.1.8, tapable@~0.1.8: 1183 | version "0.1.10" 1184 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.1.10.tgz#29c35707c2b70e50d07482b5d202e8ed446dafd4" 1185 | 1186 | tar-pack@^3.4.0: 1187 | version "3.4.0" 1188 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 1189 | dependencies: 1190 | debug "^2.2.0" 1191 | fstream "^1.0.10" 1192 | fstream-ignore "^1.0.5" 1193 | once "^1.3.3" 1194 | readable-stream "^2.1.4" 1195 | rimraf "^2.5.1" 1196 | tar "^2.2.1" 1197 | uid-number "^0.0.6" 1198 | 1199 | tar@^2.2.1: 1200 | version "2.2.1" 1201 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 1202 | dependencies: 1203 | block-stream "*" 1204 | fstream "^1.0.2" 1205 | inherits "2" 1206 | 1207 | timers-browserify@^2.0.2: 1208 | version "2.0.4" 1209 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.4.tgz#96ca53f4b794a5e7c0e1bd7cc88a372298fa01e6" 1210 | dependencies: 1211 | setimmediate "^1.0.4" 1212 | 1213 | to-arraybuffer@^1.0.0: 1214 | version "1.0.1" 1215 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" 1216 | 1217 | tough-cookie@~2.3.0: 1218 | version "2.3.2" 1219 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 1220 | dependencies: 1221 | punycode "^1.4.1" 1222 | 1223 | tty-browserify@0.0.0: 1224 | version "0.0.0" 1225 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 1226 | 1227 | tunnel-agent@^0.6.0: 1228 | version "0.6.0" 1229 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 1230 | dependencies: 1231 | safe-buffer "^5.0.1" 1232 | 1233 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 1234 | version "0.14.5" 1235 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 1236 | 1237 | uglify-js@~2.7.3: 1238 | version "2.7.5" 1239 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.7.5.tgz#4612c0c7baaee2ba7c487de4904ae122079f2ca8" 1240 | dependencies: 1241 | async "~0.2.6" 1242 | source-map "~0.5.1" 1243 | uglify-to-browserify "~1.0.0" 1244 | yargs "~3.10.0" 1245 | 1246 | uglify-to-browserify@~1.0.0: 1247 | version "1.0.2" 1248 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 1249 | 1250 | uid-number@^0.0.6: 1251 | version "0.0.6" 1252 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 1253 | 1254 | url@^0.11.0: 1255 | version "0.11.0" 1256 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 1257 | dependencies: 1258 | punycode "1.3.2" 1259 | querystring "0.2.0" 1260 | 1261 | util-deprecate@~1.0.1: 1262 | version "1.0.2" 1263 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1264 | 1265 | util@0.10.3, util@^0.10.3: 1266 | version "0.10.3" 1267 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 1268 | dependencies: 1269 | inherits "2.0.1" 1270 | 1271 | uuid@^3.0.0: 1272 | version "3.1.0" 1273 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 1274 | 1275 | verror@1.10.0: 1276 | version "1.10.0" 1277 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 1278 | dependencies: 1279 | assert-plus "^1.0.0" 1280 | core-util-is "1.0.2" 1281 | extsprintf "^1.2.0" 1282 | 1283 | vm-browserify@0.0.4: 1284 | version "0.0.4" 1285 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" 1286 | dependencies: 1287 | indexof "0.0.1" 1288 | 1289 | watchpack@^0.2.1: 1290 | version "0.2.9" 1291 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-0.2.9.tgz#62eaa4ab5e5ba35fdfc018275626e3c0f5e3fb0b" 1292 | dependencies: 1293 | async "^0.9.0" 1294 | chokidar "^1.0.0" 1295 | graceful-fs "^4.1.2" 1296 | 1297 | webpack-core@~0.6.9: 1298 | version "0.6.9" 1299 | resolved "https://registry.yarnpkg.com/webpack-core/-/webpack-core-0.6.9.tgz#fc571588c8558da77be9efb6debdc5a3b172bdc2" 1300 | dependencies: 1301 | source-list-map "~0.1.7" 1302 | source-map "~0.4.1" 1303 | 1304 | webpack@^1.13.1: 1305 | version "1.15.0" 1306 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-1.15.0.tgz#4ff31f53db03339e55164a9d468ee0324968fe98" 1307 | dependencies: 1308 | acorn "^3.0.0" 1309 | async "^1.3.0" 1310 | clone "^1.0.2" 1311 | enhanced-resolve "~0.9.0" 1312 | interpret "^0.6.4" 1313 | loader-utils "^0.2.11" 1314 | memory-fs "~0.3.0" 1315 | mkdirp "~0.5.0" 1316 | node-libs-browser "^0.7.0" 1317 | optimist "~0.6.0" 1318 | supports-color "^3.1.0" 1319 | tapable "~0.1.8" 1320 | uglify-js "~2.7.3" 1321 | watchpack "^0.2.1" 1322 | webpack-core "~0.6.9" 1323 | 1324 | wide-align@^1.1.0: 1325 | version "1.1.2" 1326 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 1327 | dependencies: 1328 | string-width "^1.0.2" 1329 | 1330 | window-size@0.1.0: 1331 | version "0.1.0" 1332 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 1333 | 1334 | wordwrap@0.0.2: 1335 | version "0.0.2" 1336 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 1337 | 1338 | wordwrap@~0.0.2: 1339 | version "0.0.3" 1340 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 1341 | 1342 | wrappy@1: 1343 | version "1.0.2" 1344 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1345 | 1346 | xtend@^4.0.0: 1347 | version "4.0.1" 1348 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 1349 | 1350 | yargs@~3.10.0: 1351 | version "3.10.0" 1352 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 1353 | dependencies: 1354 | camelcase "^1.0.2" 1355 | cliui "^2.1.0" 1356 | decamelize "^1.0.0" 1357 | window-size "0.1.0" 1358 | --------------------------------------------------------------------------------