├── .babelrc ├── .eslintrc ├── .gitignore ├── .travis.yml ├── LICENSE ├── MAINTAINERS ├── README.md ├── banner.js ├── package.json ├── src ├── react-automatic-width.jsx └── utils │ └── debounce.js ├── test ├── react-automatic-width.test.js └── utils │ └── debounce.test.js ├── webpack.config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "production": { 4 | "presets": [ 5 | ["es2015", { "modules": false }], 6 | "react", 7 | "stage-2" 8 | ] 9 | }, 10 | "test": { 11 | "presets": [ 12 | ["es2015", { "modules": "commonjs" }], 13 | "react", 14 | "stage-2" 15 | ] 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "parser": "babel-eslint", 3 | "ecmaFeatures": { 4 | "arrowFunctions": true, 5 | "blockBindings": true, 6 | "classes": true, 7 | "destructuring": true, 8 | "modules": true, 9 | "templateStrings": true, 10 | "spread": true, 11 | "jsx": true 12 | }, 13 | "globals": { 14 | "React": true 15 | }, 16 | "rules": { 17 | "eol-last": 0, 18 | "no-underscore-dangle": 0, 19 | "camelcase": 0, 20 | // react rules 21 | "react/display-name": 1, 22 | "react/jsx-boolean-value": 1, 23 | "react/jsx-no-undef": 1, 24 | "react/jsx-uses-react": 1, 25 | "react/jsx-uses-vars": 1, 26 | "react/no-did-mount-set-state": 1, 27 | "react/no-did-update-set-state": 1, 28 | "react/no-unknown-property": 1, 29 | "react/react-in-jsx-scope": 1, 30 | "react/self-closing-comp": 1 31 | }, 32 | "plugins": [ 33 | "react" 34 | ] 35 | } 36 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | 5 | # Runtime data 6 | pids 7 | *.pid 8 | *.seed 9 | 10 | # Directory for instrumented libs generated by jscoverage/JSCover 11 | lib-cov 12 | 13 | # Coverage directory used by tools like istanbul 14 | coverage 15 | 16 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 17 | .grunt 18 | 19 | # node-waf configuration 20 | .lock-wscript 21 | 22 | # Compiled binary addons (http://nodejs.org/api/addons.html) 23 | build/Release 24 | 25 | # Dependency directory 26 | # https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git 27 | node_modules 28 | 29 | #Dist files 30 | dist -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | # LTS versions as of feb 2017 4 | - "6.10" 5 | # current versions as of feb 2017 6 | - "7.6" 7 | notifications: 8 | email: false 9 | before_script: 10 | - yarn install --ignore-engines 11 | script: 12 | - npm test 13 | - npm run build 14 | after_script: 15 | - npm run test-coverage 16 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright {yyyy} {name of copyright owner} 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | 203 | -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- 1 | Rubens Pinheiro Gonçalves Cavalcante -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # react-automatic-width 2 | 3 | [![Build Status](https://travis-ci.org/zalando/react-automatic-width.svg?branch=master)](https://travis-ci.org/zalando/react-automatic-width) [![Coverage Status](https://coveralls.io/repos/github/zalando/react-automatic-width/badge.svg?branch=master)](https://coveralls.io/github/zalando/react-automatic-width?branch=master) 4 | 5 | So, you found those cool components like [fixed-data-table](https://facebook.github.io/fixed-data-table/) and [react-d3-components](https://github.com/codesuki/react-d3-components) that do whatever you want, with just one problem: They only work on fixed width! You care about responsiveness and different display sizes. You want variable width! **HULK SMASH!** 6 | 7 | One solution: Just wrap it in `AutoWidth`, so that this: 8 | 9 | ~~~ jsx 10 | import D3 from 'react-d3-components'; 11 | 12 | // ;_; 14 | ~~~ 15 | 16 | Can work like this: 17 | 18 | ~~~ jsx 19 | import D3 from 'react-d3-components'; 20 | import AutoWidth from '@zalando/react-automatic-width'; 21 | 22 | 23 | {/* ^_^ */} 24 | 25 | ~~~ 26 | 27 | react-automatic-width is a React component that automatically sets `width` property on child components. It works out-of-the-box and accepts any property you throw at it. This way, you can use classes and media queries for the autowidth container. 28 | 29 | It does its job by attaching a listener to the `resize` event of `window`. In it, react-automatic-width reads the current width of its DOM node and sets this as the `width` property on its children. Since it creates an event listener *every* time it's used, you might want to reconsider when you have a lot of components that need to be wrapped separately. [`react-dimensions`](https://github.com/digidem/react-dimensions) might then be useful to you as it offers the option to use [`element-resize-event`](https://github.com/KyleAMathews/element-resize-event/) underneath (using `requestAnimationFrame`). 30 | 31 | It's currently not under active development because the codebase is tiny and works. If appropriate, it will be updated to accomodate future React versions. 32 | 33 | ## Installation & Usage 34 | 35 | Install react-automatic-width with: 36 | 37 | npm i -S @zalando/react-automatic-width 38 | 39 | Then load it however you want (example: ES6): 40 | 41 | import AutoWidth from '@zalando/react-automatic-width' 42 | 43 | Finally, omit the `width` property on your component and wrap it in `AutoWidth`: 44 | 45 | ~~~ jsx 46 | 47 | 48 | 49 | ~~~ 50 | 51 | Optionally, you can set up the debouncing rate in milliseconds (default is 100) 52 | ~~~ jsx 53 | 54 | 55 | 56 | ~~~ 57 | 58 | ## Issues/Contributing 59 | 60 | This project welcomes contributions from the community. Here are some issues and areas where we could use some help: 61 | 62 | * Uses `clientWidth` because that worked in Chrome forty-something. Might be funky in your browser. PRs welcome. 63 | * Not clear what should happen if the window is resized while the container is not displayed. Currently zero-widths just get ignored. Drop a line via the Issues tracker if you have some ideas. 64 | 65 | ## License 66 | 67 | Apache 2.0 68 | -------------------------------------------------------------------------------- /banner.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | banner: `Copyright 2015 Zalando SE 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License") 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License.`, 15 | entryOnly: true 16 | }; 17 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@zalando/react-automatic-width", 3 | "version": "0.0.6", 4 | "description": "Automatically sets width property on child components", 5 | "main": "dist/react-automatic-width.js", 6 | "scripts": { 7 | "test": "BABEL_ENV=test mocha --compilers js:babel-register test/{**,.}/*.test.js", 8 | "lint": "eslint src/react-automatic-width.jsx", 9 | "build": "BABEL_ENV=production webpack", 10 | "test-coverage": "BABEL_ENV=test babel-node ./node_modules/.bin/babel-istanbul cover _mocha -- --compilers js:babel-register test/{**,.}/*.test.js && cat ./coverage/lcov.info | coveralls", 11 | "prepublish": "npm test && npm run-script build" 12 | }, 13 | "repository": { 14 | "type": "git", 15 | "url": "git+https://github.com/zalando/react-automatic-width.git" 16 | }, 17 | "peerDependencies": { 18 | "react": "^0.14.0 || ^15.0.0" 19 | }, 20 | "keywords": [ 21 | "react", 22 | "responsive", 23 | "width", 24 | "automatic", 25 | "flexible" 26 | ], 27 | "author": "Nikolaus Piccolotto ", 28 | "license": "Apache-2.0", 29 | "bugs": { 30 | "url": "https://github.com/zalando/react-automatic-width/issues" 31 | }, 32 | "homepage": "https://github.com/zalando/react-automatic-width#readme", 33 | "devDependencies": { 34 | "babel-cli": "^6.4.5", 35 | "babel-core": "^6.4.5", 36 | "babel-eslint": "^4.1.6", 37 | "babel-istanbul": "^0.6.0", 38 | "babel-loader": "^6.2.1", 39 | "babel-preset-es2015": "^6.3.13", 40 | "babel-preset-react": "^6.3.13", 41 | "babel-preset-stage-2": "^6.3.13", 42 | "babel-register": "^6.4.3", 43 | "chai": "^3.4.1", 44 | "chai-spies": "^0.7.1", 45 | "coveralls": "^2.11.6", 46 | "domino": "^1.0.21", 47 | "eslint": "^1.7.3", 48 | "eslint-formatter-pretty": "^1.1.0", 49 | "eslint-loader": "^1.1.0", 50 | "eslint-plugin-react": "^3.6.3", 51 | "istanbul": "^0.4.2", 52 | "mocha": "^2.3.4", 53 | "react": "^0.14.6", 54 | "react-dom": "^0.14.6", 55 | "sinon": "^1.17.7", 56 | "webpack": "^2.2.1" 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /src/react-automatic-width.jsx: -------------------------------------------------------------------------------- 1 | import React, { PropTypes } from "react"; 2 | import debounce from "./utils/debounce"; 3 | 4 | export default class AutomaticWidth extends React.Component { 5 | static displayName = "AutomaticWidth"; 6 | 7 | static propTypes = { 8 | debounceWait: PropTypes.number 9 | }; 10 | 11 | constructor() { 12 | super(); 13 | this.state = { 14 | listener: null, 15 | width: 0 16 | }; 17 | } 18 | 19 | _resizeHandler() { 20 | let dom = this.refs.autowidthWrapper, { clientWidth } = dom; 21 | if (clientWidth !== this.state.width && clientWidth > 0) { 22 | this.setState({ 23 | width: clientWidth 24 | }); 25 | } 26 | } 27 | 28 | componentDidMount() { 29 | const { debounceWait } = this.props; 30 | const DEBOUNCE_WAIT = 100; 31 | 32 | const boundListener = debounce( 33 | this._resizeHandler.bind(this), 34 | debounceWait || DEBOUNCE_WAIT, 35 | true 36 | ); 37 | boundListener(); 38 | window.addEventListener("resize", boundListener); 39 | this.setState({ 40 | listener: boundListener 41 | }); 42 | } 43 | 44 | componentWillUnmount() { 45 | window.removeEventListener("resize", this.state.listener); 46 | } 47 | 48 | render() { 49 | const { width } = this.state; 50 | return ( 51 |
52 | {React.Children.map(this.props.children, c => 53 | React.cloneElement(c, { width }))} 54 |
55 | ); 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /src/utils/debounce.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Returns a function that will not be triggered after right after a call, waiting ${wait} seconds 3 | * to be able to invoke it again. If ${immediate}, it will call again in the leading edge, instead of trailing. 4 | * It's a adapted version of {@link http://underscorejs.org/#debounce} 5 | * @param {Function} func 6 | * @param {number} wait 7 | * @param {boolean} [immediate=false] 8 | * @returns {Function} denounced 9 | */ 10 | export default function debounce(func, wait, immediate = false) { 11 | let timeout, timestamp, context, args, result; 12 | 13 | const later = () => { 14 | const last = Date.now() - timestamp; 15 | 16 | if (last < wait && last >= 0) { 17 | timeout = setTimeout(later, wait - last); 18 | } else { 19 | timeout = null; 20 | if (!immediate) { 21 | result = func.apply(context, args); 22 | if (!timeout) { 23 | context = args = null; 24 | } 25 | } 26 | } 27 | }; 28 | 29 | return function(..._args) { 30 | const callNow = immediate && !timeout; 31 | 32 | context = this; 33 | args = _args; 34 | timestamp = Date.now(); 35 | 36 | if (!timeout) { 37 | timeout = setTimeout(later, wait); 38 | } 39 | 40 | if (callNow) { 41 | result = func.apply(context, args); 42 | context = args = null; 43 | } 44 | 45 | return result; 46 | }; 47 | } 48 | -------------------------------------------------------------------------------- /test/react-automatic-width.test.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import ReactString from "react-dom/server"; 3 | import AutoWidth from "../src/react-automatic-width.jsx"; 4 | import domino from "domino"; 5 | import { expect } from "chai"; 6 | 7 | global.window = domino.createWindow("

Hullo

"); 8 | 9 | describe("react-automatic-width", () => { 10 | it("should set width property", () => { 11 | let dom = ReactString.renderToString(

Hello

); 12 | expect(/width="\d+"/gi.test(dom)).to.be.true; 13 | }); 14 | }); 15 | -------------------------------------------------------------------------------- /test/utils/debounce.test.js: -------------------------------------------------------------------------------- 1 | import chai, { expect } from "chai"; 2 | import sinon from "sinon"; 3 | import spies from "chai-spies"; 4 | 5 | import debounce from "../../src/utils/debounce"; 6 | 7 | describe("utils/debounce", () => { 8 | chai.use(spies); 9 | let clock, spy; 10 | 11 | beforeEach(() => { 12 | clock = sinon.useFakeTimers(); 13 | spy = chai.spy(function() {}); 14 | }); 15 | 16 | afterEach(() => { 17 | clock.restore(); 18 | }); 19 | 20 | it("Should block any calls before wait time is not finished", () => { 21 | const debounced = debounce(spy, 100, true); 22 | debounced(); // First call 23 | 24 | clock.tick(50); 25 | debounced(); //should not call 26 | 27 | clock.tick(100); 28 | debounced(); //should call again 29 | 30 | expect(spy).to.have.been.called.twice; 31 | }); 32 | 33 | it("Should delay the call if not immediate", () => { 34 | const debounced = debounce(spy, 100); 35 | debounced(); // Should not call yet 36 | 37 | clock.tick(101); 38 | debounced(); //Call 39 | 40 | expect(spy).to.have.been.called.once; 41 | }); 42 | }); 43 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- 1 | var webpack = require("webpack"); 2 | 3 | module.exports = { 4 | devtool: "eval", 5 | entry: ["./src/react-automatic-width.jsx"], 6 | output: { 7 | path: __dirname + "/dist/", 8 | filename: "react-automatic-width.js", 9 | library: "react-automatic-width", 10 | libraryTarget: "umd" 11 | }, 12 | plugins: [ 13 | new webpack.BannerPlugin(require("./banner")), 14 | new webpack.DefinePlugin({ 15 | "process.env": { 16 | NODE_ENV: JSON.stringify("production") 17 | } 18 | }), 19 | new webpack.LoaderOptionsPlugin({ 20 | minimize: true, 21 | options: { 22 | eslint: { 23 | formatter: require("eslint-formatter-pretty") 24 | } 25 | } 26 | }) 27 | ], 28 | resolve: { 29 | extensions: [".js", ".jsx"] 30 | }, 31 | externals: { 32 | react: "react" 33 | }, 34 | module: { 35 | rules: [ 36 | { 37 | test: /\.jsx?$/, 38 | enforce: "pre", 39 | loader: "eslint-loader" 40 | }, 41 | { 42 | test: /\.jsx?$/, 43 | exclude: /node_modules/, 44 | loader: "babel-loader" 45 | } 46 | ] 47 | } 48 | }; 49 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abbrev@1, abbrev@1.0.x: 6 | version "1.0.9" 7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135" 8 | 9 | acorn-dynamic-import@^2.0.0: 10 | version "2.0.1" 11 | resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-2.0.1.tgz#23f671eb6e650dab277fef477c321b1178a8cca2" 12 | dependencies: 13 | acorn "^4.0.3" 14 | 15 | acorn-to-esprima@^1.0.5: 16 | version "1.0.7" 17 | resolved "https://registry.yarnpkg.com/acorn-to-esprima/-/acorn-to-esprima-1.0.7.tgz#9436259760098f9ead9b9da2242fab2f4850281b" 18 | 19 | acorn@^3.1.0: 20 | version "3.3.0" 21 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 22 | 23 | acorn@^4.0.3, acorn@^4.0.4: 24 | version "4.0.11" 25 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.11.tgz#edcda3bd937e7556410d42ed5860f67399c794c0" 26 | 27 | ajv-keywords@^1.1.1: 28 | version "1.5.1" 29 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 30 | 31 | ajv@^4.7.0: 32 | version "4.11.3" 33 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.3.tgz#ce30bdb90d1254f762c75af915fb3a63e7183d22" 34 | dependencies: 35 | co "^4.6.0" 36 | json-stable-stringify "^1.0.1" 37 | 38 | align-text@^0.1.1, align-text@^0.1.3: 39 | version "0.1.4" 40 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 41 | dependencies: 42 | kind-of "^3.0.2" 43 | longest "^1.0.1" 44 | repeat-string "^1.5.2" 45 | 46 | alter@~0.2.0: 47 | version "0.2.0" 48 | resolved "https://registry.yarnpkg.com/alter/-/alter-0.2.0.tgz#c7588808617572034aae62480af26b1d4d1cb3cd" 49 | dependencies: 50 | stable "~0.1.3" 51 | 52 | amdefine@>=0.0.4: 53 | version "1.0.1" 54 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 55 | 56 | ansi-escapes@^1.1.0, ansi-escapes@^1.4.0: 57 | version "1.4.0" 58 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 59 | 60 | ansi-regex@^2.0.0: 61 | version "2.1.1" 62 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 63 | 64 | ansi-styles@^2.2.1: 65 | version "2.2.1" 66 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 67 | 68 | anymatch@^1.3.0: 69 | version "1.3.0" 70 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 71 | dependencies: 72 | arrify "^1.0.0" 73 | micromatch "^2.1.5" 74 | 75 | aproba@^1.0.3: 76 | version "1.1.1" 77 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.1.tgz#95d3600f07710aa0e9298c726ad5ecf2eacbabab" 78 | 79 | are-we-there-yet@~1.1.2: 80 | version "1.1.2" 81 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" 82 | dependencies: 83 | delegates "^1.0.0" 84 | readable-stream "^2.0.0 || ^1.1.13" 85 | 86 | argparse@^1.0.2, argparse@^1.0.7: 87 | version "1.0.9" 88 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 89 | dependencies: 90 | sprintf-js "~1.0.2" 91 | 92 | arr-diff@^2.0.0: 93 | version "2.0.0" 94 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 95 | dependencies: 96 | arr-flatten "^1.0.1" 97 | 98 | arr-flatten@^1.0.1: 99 | version "1.0.1" 100 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 101 | 102 | array-union@^1.0.1: 103 | version "1.0.2" 104 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 105 | dependencies: 106 | array-uniq "^1.0.1" 107 | 108 | array-uniq@^1.0.1: 109 | version "1.0.3" 110 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 111 | 112 | array-unique@^0.2.1: 113 | version "0.2.1" 114 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 115 | 116 | arrify@^1.0.0: 117 | version "1.0.1" 118 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 119 | 120 | asap@~2.0.3: 121 | version "2.0.5" 122 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.5.tgz#522765b50c3510490e52d7dcfe085ef9ba96958f" 123 | 124 | asn1.js@^4.0.0: 125 | version "4.9.1" 126 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.1.tgz#48ba240b45a9280e94748990ba597d216617fd40" 127 | dependencies: 128 | bn.js "^4.0.0" 129 | inherits "^2.0.1" 130 | minimalistic-assert "^1.0.0" 131 | 132 | asn1@~0.2.3: 133 | version "0.2.3" 134 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 135 | 136 | assert-plus@^0.2.0: 137 | version "0.2.0" 138 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 139 | 140 | assert-plus@^1.0.0: 141 | version "1.0.0" 142 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 143 | 144 | assert@^1.1.1: 145 | version "1.4.1" 146 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" 147 | dependencies: 148 | util "0.10.3" 149 | 150 | assertion-error@^1.0.1: 151 | version "1.0.2" 152 | resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.0.2.tgz#13ca515d86206da0bac66e834dd397d87581094c" 153 | 154 | ast-traverse@~0.1.1: 155 | version "0.1.1" 156 | resolved "https://registry.yarnpkg.com/ast-traverse/-/ast-traverse-0.1.1.tgz#69cf2b8386f19dcda1bb1e05d68fe359d8897de6" 157 | 158 | ast-types@0.8.12: 159 | version "0.8.12" 160 | resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.8.12.tgz#a0d90e4351bb887716c83fd637ebf818af4adfcc" 161 | 162 | ast-types@0.9.5: 163 | version "0.9.5" 164 | resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.9.5.tgz#1a660a09945dbceb1f9c9cbb715002617424e04a" 165 | 166 | async-each@^1.0.0: 167 | version "1.0.1" 168 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 169 | 170 | async@1.x, async@^1.4.0: 171 | version "1.5.2" 172 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 173 | 174 | async@^2.1.2: 175 | version "2.1.5" 176 | resolved "https://registry.yarnpkg.com/async/-/async-2.1.5.tgz#e587c68580994ac67fc56ff86d3ac56bdbe810bc" 177 | dependencies: 178 | lodash "^4.14.0" 179 | 180 | async@~0.2.6: 181 | version "0.2.10" 182 | resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1" 183 | 184 | asynckit@^0.4.0: 185 | version "0.4.0" 186 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 187 | 188 | aws-sign2@~0.6.0: 189 | version "0.6.0" 190 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 191 | 192 | aws4@^1.2.1: 193 | version "1.6.0" 194 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 195 | 196 | babel-cli@^6.4.5: 197 | version "6.23.0" 198 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.23.0.tgz#52ff946a2b0f64645c35e7bd5eea267aa0948c0f" 199 | dependencies: 200 | babel-core "^6.23.0" 201 | babel-polyfill "^6.23.0" 202 | babel-register "^6.23.0" 203 | babel-runtime "^6.22.0" 204 | commander "^2.8.1" 205 | convert-source-map "^1.1.0" 206 | fs-readdir-recursive "^1.0.0" 207 | glob "^7.0.0" 208 | lodash "^4.2.0" 209 | output-file-sync "^1.1.0" 210 | path-is-absolute "^1.0.0" 211 | slash "^1.0.0" 212 | source-map "^0.5.0" 213 | v8flags "^2.0.10" 214 | optionalDependencies: 215 | chokidar "^1.6.1" 216 | 217 | babel-code-frame@^6.22.0: 218 | version "6.22.0" 219 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 220 | dependencies: 221 | chalk "^1.1.0" 222 | esutils "^2.0.2" 223 | js-tokens "^3.0.0" 224 | 225 | babel-core@6.x.x, babel-core@^6.23.0, babel-core@^6.4.5: 226 | version "6.23.1" 227 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.23.1.tgz#c143cb621bb2f621710c220c5d579d15b8a442df" 228 | dependencies: 229 | babel-code-frame "^6.22.0" 230 | babel-generator "^6.23.0" 231 | babel-helpers "^6.23.0" 232 | babel-messages "^6.23.0" 233 | babel-register "^6.23.0" 234 | babel-runtime "^6.22.0" 235 | babel-template "^6.23.0" 236 | babel-traverse "^6.23.1" 237 | babel-types "^6.23.0" 238 | babylon "^6.11.0" 239 | convert-source-map "^1.1.0" 240 | debug "^2.1.1" 241 | json5 "^0.5.0" 242 | lodash "^4.2.0" 243 | minimatch "^3.0.2" 244 | path-is-absolute "^1.0.0" 245 | private "^0.1.6" 246 | slash "^1.0.0" 247 | source-map "^0.5.0" 248 | 249 | babel-core@^5.8.33: 250 | version "5.8.38" 251 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-5.8.38.tgz#1fcaee79d7e61b750b00b8e54f6dfc9d0af86558" 252 | dependencies: 253 | babel-plugin-constant-folding "^1.0.1" 254 | babel-plugin-dead-code-elimination "^1.0.2" 255 | babel-plugin-eval "^1.0.1" 256 | babel-plugin-inline-environment-variables "^1.0.1" 257 | babel-plugin-jscript "^1.0.4" 258 | babel-plugin-member-expression-literals "^1.0.1" 259 | babel-plugin-property-literals "^1.0.1" 260 | babel-plugin-proto-to-assign "^1.0.3" 261 | babel-plugin-react-constant-elements "^1.0.3" 262 | babel-plugin-react-display-name "^1.0.3" 263 | babel-plugin-remove-console "^1.0.1" 264 | babel-plugin-remove-debugger "^1.0.1" 265 | babel-plugin-runtime "^1.0.7" 266 | babel-plugin-undeclared-variables-check "^1.0.2" 267 | babel-plugin-undefined-to-void "^1.1.6" 268 | babylon "^5.8.38" 269 | bluebird "^2.9.33" 270 | chalk "^1.0.0" 271 | convert-source-map "^1.1.0" 272 | core-js "^1.0.0" 273 | debug "^2.1.1" 274 | detect-indent "^3.0.0" 275 | esutils "^2.0.0" 276 | fs-readdir-recursive "^0.1.0" 277 | globals "^6.4.0" 278 | home-or-tmp "^1.0.0" 279 | is-integer "^1.0.4" 280 | js-tokens "1.0.1" 281 | json5 "^0.4.0" 282 | lodash "^3.10.0" 283 | minimatch "^2.0.3" 284 | output-file-sync "^1.1.0" 285 | path-exists "^1.0.0" 286 | path-is-absolute "^1.0.0" 287 | private "^0.1.6" 288 | regenerator "0.8.40" 289 | regexpu "^1.3.0" 290 | repeating "^1.1.2" 291 | resolve "^1.1.6" 292 | shebang-regex "^1.0.0" 293 | slash "^1.0.0" 294 | source-map "^0.5.0" 295 | source-map-support "^0.2.10" 296 | to-fast-properties "^1.0.0" 297 | trim-right "^1.0.0" 298 | try-resolve "^1.0.0" 299 | 300 | babel-eslint@^4.1.6: 301 | version "4.1.8" 302 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-4.1.8.tgz#4f79e7a4f5879ecf03f48cb16f552a355fcc31b2" 303 | dependencies: 304 | acorn-to-esprima "^1.0.5" 305 | babel-core "^5.8.33" 306 | lodash.assign "^3.2.0" 307 | lodash.pick "^3.1.0" 308 | 309 | babel-generator@^6.23.0: 310 | version "6.23.0" 311 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.23.0.tgz#6b8edab956ef3116f79d8c84c5a3c05f32a74bc5" 312 | dependencies: 313 | babel-messages "^6.23.0" 314 | babel-runtime "^6.22.0" 315 | babel-types "^6.23.0" 316 | detect-indent "^4.0.0" 317 | jsesc "^1.3.0" 318 | lodash "^4.2.0" 319 | source-map "^0.5.0" 320 | trim-right "^1.0.1" 321 | 322 | babel-helper-bindify-decorators@^6.22.0: 323 | version "6.22.0" 324 | resolved "https://registry.yarnpkg.com/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.22.0.tgz#d7f5bc261275941ac62acfc4e20dacfb8a3fe952" 325 | dependencies: 326 | babel-runtime "^6.22.0" 327 | babel-traverse "^6.22.0" 328 | babel-types "^6.22.0" 329 | 330 | babel-helper-builder-binary-assignment-operator-visitor@^6.22.0: 331 | version "6.22.0" 332 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.22.0.tgz#29df56be144d81bdeac08262bfa41d2c5e91cdcd" 333 | dependencies: 334 | babel-helper-explode-assignable-expression "^6.22.0" 335 | babel-runtime "^6.22.0" 336 | babel-types "^6.22.0" 337 | 338 | babel-helper-builder-react-jsx@^6.23.0: 339 | version "6.23.0" 340 | resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.23.0.tgz#d53fc8c996e0bc56d0de0fc4cc55a7138395ea4b" 341 | dependencies: 342 | babel-runtime "^6.22.0" 343 | babel-types "^6.23.0" 344 | esutils "^2.0.0" 345 | lodash "^4.2.0" 346 | 347 | babel-helper-call-delegate@^6.22.0: 348 | version "6.22.0" 349 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.22.0.tgz#119921b56120f17e9dae3f74b4f5cc7bcc1b37ef" 350 | dependencies: 351 | babel-helper-hoist-variables "^6.22.0" 352 | babel-runtime "^6.22.0" 353 | babel-traverse "^6.22.0" 354 | babel-types "^6.22.0" 355 | 356 | babel-helper-define-map@^6.23.0: 357 | version "6.23.0" 358 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.23.0.tgz#1444f960c9691d69a2ced6a205315f8fd00804e7" 359 | dependencies: 360 | babel-helper-function-name "^6.23.0" 361 | babel-runtime "^6.22.0" 362 | babel-types "^6.23.0" 363 | lodash "^4.2.0" 364 | 365 | babel-helper-explode-assignable-expression@^6.22.0: 366 | version "6.22.0" 367 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.22.0.tgz#c97bf76eed3e0bae4048121f2b9dae1a4e7d0478" 368 | dependencies: 369 | babel-runtime "^6.22.0" 370 | babel-traverse "^6.22.0" 371 | babel-types "^6.22.0" 372 | 373 | babel-helper-explode-class@^6.22.0: 374 | version "6.22.0" 375 | resolved "https://registry.yarnpkg.com/babel-helper-explode-class/-/babel-helper-explode-class-6.22.0.tgz#646304924aa6388a516843ba7f1855ef8dfeb69b" 376 | dependencies: 377 | babel-helper-bindify-decorators "^6.22.0" 378 | babel-runtime "^6.22.0" 379 | babel-traverse "^6.22.0" 380 | babel-types "^6.22.0" 381 | 382 | babel-helper-function-name@^6.22.0, babel-helper-function-name@^6.23.0: 383 | version "6.23.0" 384 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.23.0.tgz#25742d67175c8903dbe4b6cb9d9e1fcb8dcf23a6" 385 | dependencies: 386 | babel-helper-get-function-arity "^6.22.0" 387 | babel-runtime "^6.22.0" 388 | babel-template "^6.23.0" 389 | babel-traverse "^6.23.0" 390 | babel-types "^6.23.0" 391 | 392 | babel-helper-get-function-arity@^6.22.0: 393 | version "6.22.0" 394 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.22.0.tgz#0beb464ad69dc7347410ac6ade9f03a50634f5ce" 395 | dependencies: 396 | babel-runtime "^6.22.0" 397 | babel-types "^6.22.0" 398 | 399 | babel-helper-hoist-variables@^6.22.0: 400 | version "6.22.0" 401 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.22.0.tgz#3eacbf731d80705845dd2e9718f600cfb9b4ba72" 402 | dependencies: 403 | babel-runtime "^6.22.0" 404 | babel-types "^6.22.0" 405 | 406 | babel-helper-optimise-call-expression@^6.23.0: 407 | version "6.23.0" 408 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.23.0.tgz#f3ee7eed355b4282138b33d02b78369e470622f5" 409 | dependencies: 410 | babel-runtime "^6.22.0" 411 | babel-types "^6.23.0" 412 | 413 | babel-helper-regex@^6.22.0: 414 | version "6.22.0" 415 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.22.0.tgz#79f532be1647b1f0ee3474b5f5c3da58001d247d" 416 | dependencies: 417 | babel-runtime "^6.22.0" 418 | babel-types "^6.22.0" 419 | lodash "^4.2.0" 420 | 421 | babel-helper-remap-async-to-generator@^6.22.0: 422 | version "6.22.0" 423 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.22.0.tgz#2186ae73278ed03b8b15ced089609da981053383" 424 | dependencies: 425 | babel-helper-function-name "^6.22.0" 426 | babel-runtime "^6.22.0" 427 | babel-template "^6.22.0" 428 | babel-traverse "^6.22.0" 429 | babel-types "^6.22.0" 430 | 431 | babel-helper-replace-supers@^6.22.0, babel-helper-replace-supers@^6.23.0: 432 | version "6.23.0" 433 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.23.0.tgz#eeaf8ad9b58ec4337ca94223bacdca1f8d9b4bfd" 434 | dependencies: 435 | babel-helper-optimise-call-expression "^6.23.0" 436 | babel-messages "^6.23.0" 437 | babel-runtime "^6.22.0" 438 | babel-template "^6.23.0" 439 | babel-traverse "^6.23.0" 440 | babel-types "^6.23.0" 441 | 442 | babel-helpers@^6.23.0: 443 | version "6.23.0" 444 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.23.0.tgz#4f8f2e092d0b6a8808a4bde79c27f1e2ecf0d992" 445 | dependencies: 446 | babel-runtime "^6.22.0" 447 | babel-template "^6.23.0" 448 | 449 | babel-istanbul@^0.6.0: 450 | version "0.6.1" 451 | resolved "https://registry.yarnpkg.com/babel-istanbul/-/babel-istanbul-0.6.1.tgz#2b76b7613ea22e27425504973f828f8be83d985e" 452 | dependencies: 453 | abbrev "1.0.x" 454 | async "1.x" 455 | babel-core "6.x.x" 456 | escodegen "1.7.x" 457 | esprima "2.5.x" 458 | fileset "0.2.x" 459 | handlebars "4.0.x" 460 | js-yaml "3.x" 461 | mkdirp "0.5.x" 462 | nopt "3.x" 463 | object-assign "^4.0.1" 464 | once "1.x" 465 | resolve "1.1.x" 466 | source-map "0.4.x" 467 | supports-color "3.1.x" 468 | which "1.2.x" 469 | wordwrap "1.0.x" 470 | 471 | babel-loader@^6.2.1: 472 | version "6.3.2" 473 | resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-6.3.2.tgz#18de4566385578c1b4f8ffe6cbc668f5e2a5ef03" 474 | dependencies: 475 | find-cache-dir "^0.1.1" 476 | loader-utils "^0.2.16" 477 | mkdirp "^0.5.1" 478 | object-assign "^4.0.1" 479 | 480 | babel-messages@^6.23.0: 481 | version "6.23.0" 482 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 483 | dependencies: 484 | babel-runtime "^6.22.0" 485 | 486 | babel-plugin-check-es2015-constants@^6.22.0: 487 | version "6.22.0" 488 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 489 | dependencies: 490 | babel-runtime "^6.22.0" 491 | 492 | babel-plugin-constant-folding@^1.0.1: 493 | version "1.0.1" 494 | resolved "https://registry.yarnpkg.com/babel-plugin-constant-folding/-/babel-plugin-constant-folding-1.0.1.tgz#8361d364c98e449c3692bdba51eff0844290aa8e" 495 | 496 | babel-plugin-dead-code-elimination@^1.0.2: 497 | version "1.0.2" 498 | resolved "https://registry.yarnpkg.com/babel-plugin-dead-code-elimination/-/babel-plugin-dead-code-elimination-1.0.2.tgz#5f7c451274dcd7cccdbfbb3e0b85dd28121f0f65" 499 | 500 | babel-plugin-eval@^1.0.1: 501 | version "1.0.1" 502 | resolved "https://registry.yarnpkg.com/babel-plugin-eval/-/babel-plugin-eval-1.0.1.tgz#a2faed25ce6be69ade4bfec263f70169195950da" 503 | 504 | babel-plugin-inline-environment-variables@^1.0.1: 505 | version "1.0.1" 506 | resolved "https://registry.yarnpkg.com/babel-plugin-inline-environment-variables/-/babel-plugin-inline-environment-variables-1.0.1.tgz#1f58ce91207ad6a826a8bf645fafe68ff5fe3ffe" 507 | 508 | babel-plugin-jscript@^1.0.4: 509 | version "1.0.4" 510 | resolved "https://registry.yarnpkg.com/babel-plugin-jscript/-/babel-plugin-jscript-1.0.4.tgz#8f342c38276e87a47d5fa0a8bd3d5eb6ccad8fcc" 511 | 512 | babel-plugin-member-expression-literals@^1.0.1: 513 | version "1.0.1" 514 | resolved "https://registry.yarnpkg.com/babel-plugin-member-expression-literals/-/babel-plugin-member-expression-literals-1.0.1.tgz#cc5edb0faa8dc927170e74d6d1c02440021624d3" 515 | 516 | babel-plugin-property-literals@^1.0.1: 517 | version "1.0.1" 518 | resolved "https://registry.yarnpkg.com/babel-plugin-property-literals/-/babel-plugin-property-literals-1.0.1.tgz#0252301900192980b1c118efea48ce93aab83336" 519 | 520 | babel-plugin-proto-to-assign@^1.0.3: 521 | version "1.0.4" 522 | resolved "https://registry.yarnpkg.com/babel-plugin-proto-to-assign/-/babel-plugin-proto-to-assign-1.0.4.tgz#c49e7afd02f577bc4da05ea2df002250cf7cd123" 523 | dependencies: 524 | lodash "^3.9.3" 525 | 526 | babel-plugin-react-constant-elements@^1.0.3: 527 | version "1.0.3" 528 | resolved "https://registry.yarnpkg.com/babel-plugin-react-constant-elements/-/babel-plugin-react-constant-elements-1.0.3.tgz#946736e8378429cbc349dcff62f51c143b34e35a" 529 | 530 | babel-plugin-react-display-name@^1.0.3: 531 | version "1.0.3" 532 | resolved "https://registry.yarnpkg.com/babel-plugin-react-display-name/-/babel-plugin-react-display-name-1.0.3.tgz#754fe38926e8424a4e7b15ab6ea6139dee0514fc" 533 | 534 | babel-plugin-remove-console@^1.0.1: 535 | version "1.0.1" 536 | resolved "https://registry.yarnpkg.com/babel-plugin-remove-console/-/babel-plugin-remove-console-1.0.1.tgz#d8f24556c3a05005d42aaaafd27787f53ff013a7" 537 | 538 | babel-plugin-remove-debugger@^1.0.1: 539 | version "1.0.1" 540 | resolved "https://registry.yarnpkg.com/babel-plugin-remove-debugger/-/babel-plugin-remove-debugger-1.0.1.tgz#fd2ea3cd61a428ad1f3b9c89882ff4293e8c14c7" 541 | 542 | babel-plugin-runtime@^1.0.7: 543 | version "1.0.7" 544 | resolved "https://registry.yarnpkg.com/babel-plugin-runtime/-/babel-plugin-runtime-1.0.7.tgz#bf7c7d966dd56ecd5c17fa1cb253c9acb7e54aaf" 545 | 546 | babel-plugin-syntax-async-functions@^6.8.0: 547 | version "6.13.0" 548 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 549 | 550 | babel-plugin-syntax-async-generators@^6.5.0: 551 | version "6.13.0" 552 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a" 553 | 554 | babel-plugin-syntax-class-properties@^6.8.0: 555 | version "6.13.0" 556 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" 557 | 558 | babel-plugin-syntax-decorators@^6.13.0: 559 | version "6.13.0" 560 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b" 561 | 562 | babel-plugin-syntax-dynamic-import@^6.18.0: 563 | version "6.18.0" 564 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da" 565 | 566 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 567 | version "6.13.0" 568 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 569 | 570 | babel-plugin-syntax-flow@^6.18.0: 571 | version "6.18.0" 572 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" 573 | 574 | babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0: 575 | version "6.18.0" 576 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" 577 | 578 | babel-plugin-syntax-object-rest-spread@^6.8.0: 579 | version "6.13.0" 580 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 581 | 582 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 583 | version "6.22.0" 584 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 585 | 586 | babel-plugin-transform-async-generator-functions@^6.22.0: 587 | version "6.22.0" 588 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.22.0.tgz#a720a98153a7596f204099cd5409f4b3c05bab46" 589 | dependencies: 590 | babel-helper-remap-async-to-generator "^6.22.0" 591 | babel-plugin-syntax-async-generators "^6.5.0" 592 | babel-runtime "^6.22.0" 593 | 594 | babel-plugin-transform-async-to-generator@^6.22.0: 595 | version "6.22.0" 596 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.22.0.tgz#194b6938ec195ad36efc4c33a971acf00d8cd35e" 597 | dependencies: 598 | babel-helper-remap-async-to-generator "^6.22.0" 599 | babel-plugin-syntax-async-functions "^6.8.0" 600 | babel-runtime "^6.22.0" 601 | 602 | babel-plugin-transform-class-properties@^6.22.0: 603 | version "6.23.0" 604 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.23.0.tgz#187b747ee404399013563c993db038f34754ac3b" 605 | dependencies: 606 | babel-helper-function-name "^6.23.0" 607 | babel-plugin-syntax-class-properties "^6.8.0" 608 | babel-runtime "^6.22.0" 609 | babel-template "^6.23.0" 610 | 611 | babel-plugin-transform-decorators@^6.22.0: 612 | version "6.22.0" 613 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.22.0.tgz#c03635b27a23b23b7224f49232c237a73988d27c" 614 | dependencies: 615 | babel-helper-explode-class "^6.22.0" 616 | babel-plugin-syntax-decorators "^6.13.0" 617 | babel-runtime "^6.22.0" 618 | babel-template "^6.22.0" 619 | babel-types "^6.22.0" 620 | 621 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 622 | version "6.22.0" 623 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 624 | dependencies: 625 | babel-runtime "^6.22.0" 626 | 627 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 628 | version "6.22.0" 629 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 630 | dependencies: 631 | babel-runtime "^6.22.0" 632 | 633 | babel-plugin-transform-es2015-block-scoping@^6.22.0: 634 | version "6.23.0" 635 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.23.0.tgz#e48895cf0b375be148cd7c8879b422707a053b51" 636 | dependencies: 637 | babel-runtime "^6.22.0" 638 | babel-template "^6.23.0" 639 | babel-traverse "^6.23.0" 640 | babel-types "^6.23.0" 641 | lodash "^4.2.0" 642 | 643 | babel-plugin-transform-es2015-classes@^6.22.0: 644 | version "6.23.0" 645 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.23.0.tgz#49b53f326202a2fd1b3bbaa5e2edd8a4f78643c1" 646 | dependencies: 647 | babel-helper-define-map "^6.23.0" 648 | babel-helper-function-name "^6.23.0" 649 | babel-helper-optimise-call-expression "^6.23.0" 650 | babel-helper-replace-supers "^6.23.0" 651 | babel-messages "^6.23.0" 652 | babel-runtime "^6.22.0" 653 | babel-template "^6.23.0" 654 | babel-traverse "^6.23.0" 655 | babel-types "^6.23.0" 656 | 657 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 658 | version "6.22.0" 659 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.22.0.tgz#7c383e9629bba4820c11b0425bdd6290f7f057e7" 660 | dependencies: 661 | babel-runtime "^6.22.0" 662 | babel-template "^6.22.0" 663 | 664 | babel-plugin-transform-es2015-destructuring@^6.22.0: 665 | version "6.23.0" 666 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 667 | dependencies: 668 | babel-runtime "^6.22.0" 669 | 670 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 671 | version "6.22.0" 672 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.22.0.tgz#672397031c21610d72dd2bbb0ba9fb6277e1c36b" 673 | dependencies: 674 | babel-runtime "^6.22.0" 675 | babel-types "^6.22.0" 676 | 677 | babel-plugin-transform-es2015-for-of@^6.22.0: 678 | version "6.23.0" 679 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 680 | dependencies: 681 | babel-runtime "^6.22.0" 682 | 683 | babel-plugin-transform-es2015-function-name@^6.22.0: 684 | version "6.22.0" 685 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.22.0.tgz#f5fcc8b09093f9a23c76ac3d9e392c3ec4b77104" 686 | dependencies: 687 | babel-helper-function-name "^6.22.0" 688 | babel-runtime "^6.22.0" 689 | babel-types "^6.22.0" 690 | 691 | babel-plugin-transform-es2015-literals@^6.22.0: 692 | version "6.22.0" 693 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 694 | dependencies: 695 | babel-runtime "^6.22.0" 696 | 697 | babel-plugin-transform-es2015-modules-amd@^6.22.0: 698 | version "6.22.0" 699 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.22.0.tgz#bf69cd34889a41c33d90dfb740e0091ccff52f21" 700 | dependencies: 701 | babel-plugin-transform-es2015-modules-commonjs "^6.22.0" 702 | babel-runtime "^6.22.0" 703 | babel-template "^6.22.0" 704 | 705 | babel-plugin-transform-es2015-modules-commonjs@^6.22.0: 706 | version "6.23.0" 707 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.23.0.tgz#cba7aa6379fb7ec99250e6d46de2973aaffa7b92" 708 | dependencies: 709 | babel-plugin-transform-strict-mode "^6.22.0" 710 | babel-runtime "^6.22.0" 711 | babel-template "^6.23.0" 712 | babel-types "^6.23.0" 713 | 714 | babel-plugin-transform-es2015-modules-systemjs@^6.22.0: 715 | version "6.23.0" 716 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.23.0.tgz#ae3469227ffac39b0310d90fec73bfdc4f6317b0" 717 | dependencies: 718 | babel-helper-hoist-variables "^6.22.0" 719 | babel-runtime "^6.22.0" 720 | babel-template "^6.23.0" 721 | 722 | babel-plugin-transform-es2015-modules-umd@^6.22.0: 723 | version "6.23.0" 724 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.23.0.tgz#8d284ae2e19ed8fe21d2b1b26d6e7e0fcd94f0f1" 725 | dependencies: 726 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 727 | babel-runtime "^6.22.0" 728 | babel-template "^6.23.0" 729 | 730 | babel-plugin-transform-es2015-object-super@^6.22.0: 731 | version "6.22.0" 732 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.22.0.tgz#daa60e114a042ea769dd53fe528fc82311eb98fc" 733 | dependencies: 734 | babel-helper-replace-supers "^6.22.0" 735 | babel-runtime "^6.22.0" 736 | 737 | babel-plugin-transform-es2015-parameters@^6.22.0: 738 | version "6.23.0" 739 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.23.0.tgz#3a2aabb70c8af945d5ce386f1a4250625a83ae3b" 740 | dependencies: 741 | babel-helper-call-delegate "^6.22.0" 742 | babel-helper-get-function-arity "^6.22.0" 743 | babel-runtime "^6.22.0" 744 | babel-template "^6.23.0" 745 | babel-traverse "^6.23.0" 746 | babel-types "^6.23.0" 747 | 748 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 749 | version "6.22.0" 750 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.22.0.tgz#8ba776e0affaa60bff21e921403b8a652a2ff723" 751 | dependencies: 752 | babel-runtime "^6.22.0" 753 | babel-types "^6.22.0" 754 | 755 | babel-plugin-transform-es2015-spread@^6.22.0: 756 | version "6.22.0" 757 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 758 | dependencies: 759 | babel-runtime "^6.22.0" 760 | 761 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 762 | version "6.22.0" 763 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.22.0.tgz#ab316829e866ee3f4b9eb96939757d19a5bc4593" 764 | dependencies: 765 | babel-helper-regex "^6.22.0" 766 | babel-runtime "^6.22.0" 767 | babel-types "^6.22.0" 768 | 769 | babel-plugin-transform-es2015-template-literals@^6.22.0: 770 | version "6.22.0" 771 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 772 | dependencies: 773 | babel-runtime "^6.22.0" 774 | 775 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0: 776 | version "6.23.0" 777 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 778 | dependencies: 779 | babel-runtime "^6.22.0" 780 | 781 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 782 | version "6.22.0" 783 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.22.0.tgz#8d9cc27e7ee1decfe65454fb986452a04a613d20" 784 | dependencies: 785 | babel-helper-regex "^6.22.0" 786 | babel-runtime "^6.22.0" 787 | regexpu-core "^2.0.0" 788 | 789 | babel-plugin-transform-exponentiation-operator@^6.22.0: 790 | version "6.22.0" 791 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.22.0.tgz#d57c8335281918e54ef053118ce6eb108468084d" 792 | dependencies: 793 | babel-helper-builder-binary-assignment-operator-visitor "^6.22.0" 794 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 795 | babel-runtime "^6.22.0" 796 | 797 | babel-plugin-transform-flow-strip-types@^6.22.0: 798 | version "6.22.0" 799 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" 800 | dependencies: 801 | babel-plugin-syntax-flow "^6.18.0" 802 | babel-runtime "^6.22.0" 803 | 804 | babel-plugin-transform-object-rest-spread@^6.22.0: 805 | version "6.23.0" 806 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.23.0.tgz#875d6bc9be761c58a2ae3feee5dc4895d8c7f921" 807 | dependencies: 808 | babel-plugin-syntax-object-rest-spread "^6.8.0" 809 | babel-runtime "^6.22.0" 810 | 811 | babel-plugin-transform-react-display-name@^6.23.0: 812 | version "6.23.0" 813 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.23.0.tgz#4398910c358441dc4cef18787264d0412ed36b37" 814 | dependencies: 815 | babel-runtime "^6.22.0" 816 | 817 | babel-plugin-transform-react-jsx-self@^6.22.0: 818 | version "6.22.0" 819 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e" 820 | dependencies: 821 | babel-plugin-syntax-jsx "^6.8.0" 822 | babel-runtime "^6.22.0" 823 | 824 | babel-plugin-transform-react-jsx-source@^6.22.0: 825 | version "6.22.0" 826 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6" 827 | dependencies: 828 | babel-plugin-syntax-jsx "^6.8.0" 829 | babel-runtime "^6.22.0" 830 | 831 | babel-plugin-transform-react-jsx@^6.23.0: 832 | version "6.23.0" 833 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.23.0.tgz#23e892f7f2e759678eb5e4446a8f8e94e81b3470" 834 | dependencies: 835 | babel-helper-builder-react-jsx "^6.23.0" 836 | babel-plugin-syntax-jsx "^6.8.0" 837 | babel-runtime "^6.22.0" 838 | 839 | babel-plugin-transform-regenerator@^6.22.0: 840 | version "6.22.0" 841 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.22.0.tgz#65740593a319c44522157538d690b84094617ea6" 842 | dependencies: 843 | regenerator-transform "0.9.8" 844 | 845 | babel-plugin-transform-strict-mode@^6.22.0: 846 | version "6.22.0" 847 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.22.0.tgz#e008df01340fdc87e959da65991b7e05970c8c7c" 848 | dependencies: 849 | babel-runtime "^6.22.0" 850 | babel-types "^6.22.0" 851 | 852 | babel-plugin-undeclared-variables-check@^1.0.2: 853 | version "1.0.2" 854 | resolved "https://registry.yarnpkg.com/babel-plugin-undeclared-variables-check/-/babel-plugin-undeclared-variables-check-1.0.2.tgz#5cf1aa539d813ff64e99641290af620965f65dee" 855 | dependencies: 856 | leven "^1.0.2" 857 | 858 | babel-plugin-undefined-to-void@^1.1.6: 859 | version "1.1.6" 860 | resolved "https://registry.yarnpkg.com/babel-plugin-undefined-to-void/-/babel-plugin-undefined-to-void-1.1.6.tgz#7f578ef8b78dfae6003385d8417a61eda06e2f81" 861 | 862 | babel-polyfill@^6.23.0: 863 | version "6.23.0" 864 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.23.0.tgz#8364ca62df8eafb830499f699177466c3b03499d" 865 | dependencies: 866 | babel-runtime "^6.22.0" 867 | core-js "^2.4.0" 868 | regenerator-runtime "^0.10.0" 869 | 870 | babel-preset-es2015@^6.3.13: 871 | version "6.22.0" 872 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.22.0.tgz#af5a98ecb35eb8af764ad8a5a05eb36dc4386835" 873 | dependencies: 874 | babel-plugin-check-es2015-constants "^6.22.0" 875 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 876 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 877 | babel-plugin-transform-es2015-block-scoping "^6.22.0" 878 | babel-plugin-transform-es2015-classes "^6.22.0" 879 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 880 | babel-plugin-transform-es2015-destructuring "^6.22.0" 881 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 882 | babel-plugin-transform-es2015-for-of "^6.22.0" 883 | babel-plugin-transform-es2015-function-name "^6.22.0" 884 | babel-plugin-transform-es2015-literals "^6.22.0" 885 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 886 | babel-plugin-transform-es2015-modules-commonjs "^6.22.0" 887 | babel-plugin-transform-es2015-modules-systemjs "^6.22.0" 888 | babel-plugin-transform-es2015-modules-umd "^6.22.0" 889 | babel-plugin-transform-es2015-object-super "^6.22.0" 890 | babel-plugin-transform-es2015-parameters "^6.22.0" 891 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 892 | babel-plugin-transform-es2015-spread "^6.22.0" 893 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 894 | babel-plugin-transform-es2015-template-literals "^6.22.0" 895 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 896 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 897 | babel-plugin-transform-regenerator "^6.22.0" 898 | 899 | babel-preset-flow@^6.23.0: 900 | version "6.23.0" 901 | resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d" 902 | dependencies: 903 | babel-plugin-transform-flow-strip-types "^6.22.0" 904 | 905 | babel-preset-react@^6.3.13: 906 | version "6.23.0" 907 | resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.23.0.tgz#eb7cee4de98a3f94502c28565332da9819455195" 908 | dependencies: 909 | babel-plugin-syntax-jsx "^6.3.13" 910 | babel-plugin-transform-react-display-name "^6.23.0" 911 | babel-plugin-transform-react-jsx "^6.23.0" 912 | babel-plugin-transform-react-jsx-self "^6.22.0" 913 | babel-plugin-transform-react-jsx-source "^6.22.0" 914 | babel-preset-flow "^6.23.0" 915 | 916 | babel-preset-stage-2@^6.3.13: 917 | version "6.22.0" 918 | resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-6.22.0.tgz#ccd565f19c245cade394b21216df704a73b27c07" 919 | dependencies: 920 | babel-plugin-syntax-dynamic-import "^6.18.0" 921 | babel-plugin-transform-class-properties "^6.22.0" 922 | babel-plugin-transform-decorators "^6.22.0" 923 | babel-preset-stage-3 "^6.22.0" 924 | 925 | babel-preset-stage-3@^6.22.0: 926 | version "6.22.0" 927 | resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-6.22.0.tgz#a4e92bbace7456fafdf651d7a7657ee0bbca9c2e" 928 | dependencies: 929 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 930 | babel-plugin-transform-async-generator-functions "^6.22.0" 931 | babel-plugin-transform-async-to-generator "^6.22.0" 932 | babel-plugin-transform-exponentiation-operator "^6.22.0" 933 | babel-plugin-transform-object-rest-spread "^6.22.0" 934 | 935 | babel-register@^6.23.0, babel-register@^6.4.3: 936 | version "6.23.0" 937 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.23.0.tgz#c9aa3d4cca94b51da34826c4a0f9e08145d74ff3" 938 | dependencies: 939 | babel-core "^6.23.0" 940 | babel-runtime "^6.22.0" 941 | core-js "^2.4.0" 942 | home-or-tmp "^2.0.0" 943 | lodash "^4.2.0" 944 | mkdirp "^0.5.1" 945 | source-map-support "^0.4.2" 946 | 947 | babel-runtime@^6.18.0, babel-runtime@^6.22.0: 948 | version "6.23.0" 949 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 950 | dependencies: 951 | core-js "^2.4.0" 952 | regenerator-runtime "^0.10.0" 953 | 954 | babel-template@^6.22.0, babel-template@^6.23.0: 955 | version "6.23.0" 956 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.23.0.tgz#04d4f270adbb3aa704a8143ae26faa529238e638" 957 | dependencies: 958 | babel-runtime "^6.22.0" 959 | babel-traverse "^6.23.0" 960 | babel-types "^6.23.0" 961 | babylon "^6.11.0" 962 | lodash "^4.2.0" 963 | 964 | babel-traverse@^6.22.0, babel-traverse@^6.23.0, babel-traverse@^6.23.1: 965 | version "6.23.1" 966 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.23.1.tgz#d3cb59010ecd06a97d81310065f966b699e14f48" 967 | dependencies: 968 | babel-code-frame "^6.22.0" 969 | babel-messages "^6.23.0" 970 | babel-runtime "^6.22.0" 971 | babel-types "^6.23.0" 972 | babylon "^6.15.0" 973 | debug "^2.2.0" 974 | globals "^9.0.0" 975 | invariant "^2.2.0" 976 | lodash "^4.2.0" 977 | 978 | babel-types@^6.19.0, babel-types@^6.22.0, babel-types@^6.23.0: 979 | version "6.23.0" 980 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.23.0.tgz#bb17179d7538bad38cd0c9e115d340f77e7e9acf" 981 | dependencies: 982 | babel-runtime "^6.22.0" 983 | esutils "^2.0.2" 984 | lodash "^4.2.0" 985 | to-fast-properties "^1.0.1" 986 | 987 | babylon@^5.8.38: 988 | version "5.8.38" 989 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-5.8.38.tgz#ec9b120b11bf6ccd4173a18bf217e60b79859ffd" 990 | 991 | babylon@^6.11.0, babylon@^6.15.0: 992 | version "6.16.1" 993 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.16.1.tgz#30c5a22f481978a9e7f8cdfdf496b11d94b404d3" 994 | 995 | balanced-match@^0.4.1: 996 | version "0.4.2" 997 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 998 | 999 | base62@^1.1.0: 1000 | version "1.1.2" 1001 | resolved "https://registry.yarnpkg.com/base62/-/base62-1.1.2.tgz#22ced6a49913565bc0b8d9a11563a465c084124c" 1002 | 1003 | base64-js@^1.0.2: 1004 | version "1.2.0" 1005 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.0.tgz#a39992d723584811982be5e290bb6a53d86700f1" 1006 | 1007 | bcrypt-pbkdf@^1.0.0: 1008 | version "1.0.1" 1009 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 1010 | dependencies: 1011 | tweetnacl "^0.14.3" 1012 | 1013 | big.js@^3.1.3: 1014 | version "3.1.3" 1015 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.1.3.tgz#4cada2193652eb3ca9ec8e55c9015669c9806978" 1016 | 1017 | binary-extensions@^1.0.0: 1018 | version "1.8.0" 1019 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 1020 | 1021 | block-stream@*: 1022 | version "0.0.9" 1023 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 1024 | dependencies: 1025 | inherits "~2.0.0" 1026 | 1027 | bluebird@^2.9.33: 1028 | version "2.11.0" 1029 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-2.11.0.tgz#534b9033c022c9579c56ba3b3e5a5caafbb650e1" 1030 | 1031 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: 1032 | version "4.11.6" 1033 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.6.tgz#53344adb14617a13f6e8dd2ce28905d1c0ba3215" 1034 | 1035 | boom@2.x.x: 1036 | version "2.10.1" 1037 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 1038 | dependencies: 1039 | hoek "2.x.x" 1040 | 1041 | brace-expansion@^1.0.0: 1042 | version "1.1.6" 1043 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 1044 | dependencies: 1045 | balanced-match "^0.4.1" 1046 | concat-map "0.0.1" 1047 | 1048 | braces@^1.8.2: 1049 | version "1.8.5" 1050 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 1051 | dependencies: 1052 | expand-range "^1.8.1" 1053 | preserve "^0.2.0" 1054 | repeat-element "^1.1.2" 1055 | 1056 | breakable@~1.0.0: 1057 | version "1.0.0" 1058 | resolved "https://registry.yarnpkg.com/breakable/-/breakable-1.0.0.tgz#784a797915a38ead27bad456b5572cb4bbaa78c1" 1059 | 1060 | brorand@^1.0.1: 1061 | version "1.1.0" 1062 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 1063 | 1064 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: 1065 | version "1.0.6" 1066 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.0.6.tgz#5e7725dbdef1fd5930d4ebab48567ce451c48a0a" 1067 | dependencies: 1068 | buffer-xor "^1.0.2" 1069 | cipher-base "^1.0.0" 1070 | create-hash "^1.1.0" 1071 | evp_bytestokey "^1.0.0" 1072 | inherits "^2.0.1" 1073 | 1074 | browserify-cipher@^1.0.0: 1075 | version "1.0.0" 1076 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" 1077 | dependencies: 1078 | browserify-aes "^1.0.4" 1079 | browserify-des "^1.0.0" 1080 | evp_bytestokey "^1.0.0" 1081 | 1082 | browserify-des@^1.0.0: 1083 | version "1.0.0" 1084 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" 1085 | dependencies: 1086 | cipher-base "^1.0.1" 1087 | des.js "^1.0.0" 1088 | inherits "^2.0.1" 1089 | 1090 | browserify-rsa@^4.0.0: 1091 | version "4.0.1" 1092 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" 1093 | dependencies: 1094 | bn.js "^4.1.0" 1095 | randombytes "^2.0.1" 1096 | 1097 | browserify-sign@^4.0.0: 1098 | version "4.0.0" 1099 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.0.tgz#10773910c3c206d5420a46aad8694f820b85968f" 1100 | dependencies: 1101 | bn.js "^4.1.1" 1102 | browserify-rsa "^4.0.0" 1103 | create-hash "^1.1.0" 1104 | create-hmac "^1.1.2" 1105 | elliptic "^6.0.0" 1106 | inherits "^2.0.1" 1107 | parse-asn1 "^5.0.0" 1108 | 1109 | browserify-zlib@^0.1.4: 1110 | version "0.1.4" 1111 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d" 1112 | dependencies: 1113 | pako "~0.2.0" 1114 | 1115 | buffer-shims@^1.0.0: 1116 | version "1.0.0" 1117 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 1118 | 1119 | buffer-xor@^1.0.2: 1120 | version "1.0.3" 1121 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 1122 | 1123 | buffer@^4.3.0: 1124 | version "4.9.1" 1125 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" 1126 | dependencies: 1127 | base64-js "^1.0.2" 1128 | ieee754 "^1.1.4" 1129 | isarray "^1.0.0" 1130 | 1131 | builtin-modules@^1.0.0: 1132 | version "1.1.1" 1133 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 1134 | 1135 | builtin-status-codes@^3.0.0: 1136 | version "3.0.0" 1137 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" 1138 | 1139 | camelcase@^1.0.2, camelcase@^1.2.1: 1140 | version "1.2.1" 1141 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 1142 | 1143 | camelcase@^3.0.0: 1144 | version "3.0.0" 1145 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 1146 | 1147 | caseless@~0.11.0: 1148 | version "0.11.0" 1149 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 1150 | 1151 | center-align@^0.1.1: 1152 | version "0.1.3" 1153 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 1154 | dependencies: 1155 | align-text "^0.1.3" 1156 | lazy-cache "^1.0.3" 1157 | 1158 | chai-spies@^0.7.1: 1159 | version "0.7.1" 1160 | resolved "https://registry.yarnpkg.com/chai-spies/-/chai-spies-0.7.1.tgz#343d99f51244212e8b17e64b93996ff7b2c2a9b1" 1161 | 1162 | chai@^3.4.1: 1163 | version "3.5.0" 1164 | resolved "https://registry.yarnpkg.com/chai/-/chai-3.5.0.tgz#4d02637b067fe958bdbfdd3a40ec56fef7373247" 1165 | dependencies: 1166 | assertion-error "^1.0.1" 1167 | deep-eql "^0.1.3" 1168 | type-detect "^1.0.0" 1169 | 1170 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 1171 | version "1.1.3" 1172 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 1173 | dependencies: 1174 | ansi-styles "^2.2.1" 1175 | escape-string-regexp "^1.0.2" 1176 | has-ansi "^2.0.0" 1177 | strip-ansi "^3.0.0" 1178 | supports-color "^2.0.0" 1179 | 1180 | chokidar@^1.4.3, chokidar@^1.6.1: 1181 | version "1.6.1" 1182 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" 1183 | dependencies: 1184 | anymatch "^1.3.0" 1185 | async-each "^1.0.0" 1186 | glob-parent "^2.0.0" 1187 | inherits "^2.0.1" 1188 | is-binary-path "^1.0.0" 1189 | is-glob "^2.0.0" 1190 | path-is-absolute "^1.0.0" 1191 | readdirp "^2.0.0" 1192 | optionalDependencies: 1193 | fsevents "^1.0.0" 1194 | 1195 | cipher-base@^1.0.0, cipher-base@^1.0.1: 1196 | version "1.0.3" 1197 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.3.tgz#eeabf194419ce900da3018c207d212f2a6df0a07" 1198 | dependencies: 1199 | inherits "^2.0.1" 1200 | 1201 | circular-json@^0.3.1: 1202 | version "0.3.1" 1203 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 1204 | 1205 | cli-cursor@^1.0.1: 1206 | version "1.0.2" 1207 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 1208 | dependencies: 1209 | restore-cursor "^1.0.1" 1210 | 1211 | cli-width@^1.0.1: 1212 | version "1.1.1" 1213 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-1.1.1.tgz#a4d293ef67ebb7b88d4a4d42c0ccf00c4d1e366d" 1214 | 1215 | cliui@^2.1.0: 1216 | version "2.1.0" 1217 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 1218 | dependencies: 1219 | center-align "^0.1.1" 1220 | right-align "^0.1.1" 1221 | wordwrap "0.0.2" 1222 | 1223 | cliui@^3.2.0: 1224 | version "3.2.0" 1225 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 1226 | dependencies: 1227 | string-width "^1.0.1" 1228 | strip-ansi "^3.0.1" 1229 | wrap-ansi "^2.0.0" 1230 | 1231 | co@^4.6.0: 1232 | version "4.6.0" 1233 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 1234 | 1235 | code-point-at@^1.0.0: 1236 | version "1.1.0" 1237 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 1238 | 1239 | combined-stream@^1.0.5, combined-stream@~1.0.5: 1240 | version "1.0.5" 1241 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 1242 | dependencies: 1243 | delayed-stream "~1.0.0" 1244 | 1245 | commander@0.6.1: 1246 | version "0.6.1" 1247 | resolved "https://registry.yarnpkg.com/commander/-/commander-0.6.1.tgz#fa68a14f6a945d54dbbe50d8cdb3320e9e3b1a06" 1248 | 1249 | commander@2.3.0: 1250 | version "2.3.0" 1251 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.3.0.tgz#fd430e889832ec353b9acd1de217c11cb3eef873" 1252 | 1253 | commander@^2.5.0, commander@^2.8.1, commander@^2.9.0: 1254 | version "2.9.0" 1255 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 1256 | dependencies: 1257 | graceful-readlink ">= 1.0.0" 1258 | 1259 | commondir@^1.0.1: 1260 | version "1.0.1" 1261 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 1262 | 1263 | commoner@^0.10.1, commoner@~0.10.3: 1264 | version "0.10.8" 1265 | resolved "https://registry.yarnpkg.com/commoner/-/commoner-0.10.8.tgz#34fc3672cd24393e8bb47e70caa0293811f4f2c5" 1266 | dependencies: 1267 | commander "^2.5.0" 1268 | detective "^4.3.1" 1269 | glob "^5.0.15" 1270 | graceful-fs "^4.1.2" 1271 | iconv-lite "^0.4.5" 1272 | mkdirp "^0.5.0" 1273 | private "^0.1.6" 1274 | q "^1.1.2" 1275 | recast "^0.11.17" 1276 | 1277 | concat-map@0.0.1: 1278 | version "0.0.1" 1279 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1280 | 1281 | concat-stream@^1.4.6: 1282 | version "1.6.0" 1283 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 1284 | dependencies: 1285 | inherits "^2.0.3" 1286 | readable-stream "^2.2.2" 1287 | typedarray "^0.0.6" 1288 | 1289 | console-browserify@^1.1.0: 1290 | version "1.1.0" 1291 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" 1292 | dependencies: 1293 | date-now "^0.1.4" 1294 | 1295 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1296 | version "1.1.0" 1297 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1298 | 1299 | constants-browserify@^1.0.0: 1300 | version "1.0.0" 1301 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" 1302 | 1303 | convert-source-map@^1.1.0: 1304 | version "1.4.0" 1305 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.4.0.tgz#e3dad195bf61bfe13a7a3c73e9876ec14a0268f3" 1306 | 1307 | core-js@^1.0.0: 1308 | version "1.2.7" 1309 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 1310 | 1311 | core-js@^2.4.0: 1312 | version "2.4.1" 1313 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 1314 | 1315 | core-util-is@~1.0.0: 1316 | version "1.0.2" 1317 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1318 | 1319 | coveralls@^2.11.6: 1320 | version "2.11.16" 1321 | resolved "https://registry.yarnpkg.com/coveralls/-/coveralls-2.11.16.tgz#da9061265142ddee954f68379122be97be8ab4b1" 1322 | dependencies: 1323 | js-yaml "3.6.1" 1324 | lcov-parse "0.0.10" 1325 | log-driver "1.2.5" 1326 | minimist "1.2.0" 1327 | request "2.79.0" 1328 | 1329 | create-ecdh@^4.0.0: 1330 | version "4.0.0" 1331 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" 1332 | dependencies: 1333 | bn.js "^4.1.0" 1334 | elliptic "^6.0.0" 1335 | 1336 | create-hash@^1.1.0, create-hash@^1.1.1: 1337 | version "1.1.2" 1338 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.2.tgz#51210062d7bb7479f6c65bb41a92208b1d61abad" 1339 | dependencies: 1340 | cipher-base "^1.0.1" 1341 | inherits "^2.0.1" 1342 | ripemd160 "^1.0.0" 1343 | sha.js "^2.3.6" 1344 | 1345 | create-hmac@^1.1.0, create-hmac@^1.1.2: 1346 | version "1.1.4" 1347 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.4.tgz#d3fb4ba253eb8b3f56e39ea2fbcb8af747bd3170" 1348 | dependencies: 1349 | create-hash "^1.1.0" 1350 | inherits "^2.0.1" 1351 | 1352 | cryptiles@2.x.x: 1353 | version "2.0.5" 1354 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1355 | dependencies: 1356 | boom "2.x.x" 1357 | 1358 | crypto-browserify@^3.11.0: 1359 | version "3.11.0" 1360 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.11.0.tgz#3652a0906ab9b2a7e0c3ce66a408e957a2485522" 1361 | dependencies: 1362 | browserify-cipher "^1.0.0" 1363 | browserify-sign "^4.0.0" 1364 | create-ecdh "^4.0.0" 1365 | create-hash "^1.1.0" 1366 | create-hmac "^1.1.0" 1367 | diffie-hellman "^5.0.0" 1368 | inherits "^2.0.1" 1369 | pbkdf2 "^3.0.3" 1370 | public-encrypt "^4.0.0" 1371 | randombytes "^2.0.0" 1372 | 1373 | d@^0.1.1, d@~0.1.1: 1374 | version "0.1.1" 1375 | resolved "https://registry.yarnpkg.com/d/-/d-0.1.1.tgz#da184c535d18d8ee7ba2aa229b914009fae11309" 1376 | dependencies: 1377 | es5-ext "~0.10.2" 1378 | 1379 | dashdash@^1.12.0: 1380 | version "1.14.1" 1381 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1382 | dependencies: 1383 | assert-plus "^1.0.0" 1384 | 1385 | date-now@^0.1.4: 1386 | version "0.1.4" 1387 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 1388 | 1389 | debug@2.2.0, debug@~2.2.0: 1390 | version "2.2.0" 1391 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 1392 | dependencies: 1393 | ms "0.7.1" 1394 | 1395 | debug@^2.1.1, debug@^2.2.0: 1396 | version "2.6.1" 1397 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.1.tgz#79855090ba2c4e3115cc7d8769491d58f0491351" 1398 | dependencies: 1399 | ms "0.7.2" 1400 | 1401 | decamelize@^1.0.0, decamelize@^1.1.1: 1402 | version "1.2.0" 1403 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1404 | 1405 | deep-eql@^0.1.3: 1406 | version "0.1.3" 1407 | resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-0.1.3.tgz#ef558acab8de25206cd713906d74e56930eb69f2" 1408 | dependencies: 1409 | type-detect "0.1.1" 1410 | 1411 | deep-extend@~0.4.0: 1412 | version "0.4.1" 1413 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 1414 | 1415 | deep-is@~0.1.2, deep-is@~0.1.3: 1416 | version "0.1.3" 1417 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1418 | 1419 | defined@^1.0.0: 1420 | version "1.0.0" 1421 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 1422 | 1423 | defs@~1.1.0: 1424 | version "1.1.1" 1425 | resolved "https://registry.yarnpkg.com/defs/-/defs-1.1.1.tgz#b22609f2c7a11ba7a3db116805c139b1caffa9d2" 1426 | dependencies: 1427 | alter "~0.2.0" 1428 | ast-traverse "~0.1.1" 1429 | breakable "~1.0.0" 1430 | esprima-fb "~15001.1001.0-dev-harmony-fb" 1431 | simple-fmt "~0.1.0" 1432 | simple-is "~0.2.0" 1433 | stringmap "~0.2.2" 1434 | stringset "~0.2.1" 1435 | tryor "~0.1.2" 1436 | yargs "~3.27.0" 1437 | 1438 | del@^2.0.2: 1439 | version "2.2.2" 1440 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 1441 | dependencies: 1442 | globby "^5.0.0" 1443 | is-path-cwd "^1.0.0" 1444 | is-path-in-cwd "^1.0.0" 1445 | object-assign "^4.0.1" 1446 | pify "^2.0.0" 1447 | pinkie-promise "^2.0.0" 1448 | rimraf "^2.2.8" 1449 | 1450 | delayed-stream@~1.0.0: 1451 | version "1.0.0" 1452 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1453 | 1454 | delegates@^1.0.0: 1455 | version "1.0.0" 1456 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1457 | 1458 | des.js@^1.0.0: 1459 | version "1.0.0" 1460 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" 1461 | dependencies: 1462 | inherits "^2.0.1" 1463 | minimalistic-assert "^1.0.0" 1464 | 1465 | detect-indent@^3.0.0: 1466 | version "3.0.1" 1467 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-3.0.1.tgz#9dc5e5ddbceef8325764b9451b02bc6d54084f75" 1468 | dependencies: 1469 | get-stdin "^4.0.1" 1470 | minimist "^1.1.0" 1471 | repeating "^1.1.0" 1472 | 1473 | detect-indent@^4.0.0: 1474 | version "4.0.0" 1475 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1476 | dependencies: 1477 | repeating "^2.0.0" 1478 | 1479 | detective@^4.3.1: 1480 | version "4.3.2" 1481 | resolved "https://registry.yarnpkg.com/detective/-/detective-4.3.2.tgz#77697e2e7947ac3fe7c8e26a6d6f115235afa91c" 1482 | dependencies: 1483 | acorn "^3.1.0" 1484 | defined "^1.0.0" 1485 | 1486 | diff@1.4.0: 1487 | version "1.4.0" 1488 | resolved "https://registry.yarnpkg.com/diff/-/diff-1.4.0.tgz#7f28d2eb9ee7b15a97efd89ce63dcfdaa3ccbabf" 1489 | 1490 | diffie-hellman@^5.0.0: 1491 | version "5.0.2" 1492 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" 1493 | dependencies: 1494 | bn.js "^4.1.0" 1495 | miller-rabin "^4.0.0" 1496 | randombytes "^2.0.0" 1497 | 1498 | doctrine@^0.7.1: 1499 | version "0.7.2" 1500 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-0.7.2.tgz#7cb860359ba3be90e040b26b729ce4bfa654c523" 1501 | dependencies: 1502 | esutils "^1.1.6" 1503 | isarray "0.0.1" 1504 | 1505 | domain-browser@^1.1.1: 1506 | version "1.1.7" 1507 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" 1508 | 1509 | domino@^1.0.21: 1510 | version "1.0.28" 1511 | resolved "https://registry.yarnpkg.com/domino/-/domino-1.0.28.tgz#9ce3f6a9221a2c3288984b14ea191cd27b392f87" 1512 | 1513 | ecc-jsbn@~0.1.1: 1514 | version "0.1.1" 1515 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1516 | dependencies: 1517 | jsbn "~0.1.0" 1518 | 1519 | elliptic@^6.0.0: 1520 | version "6.4.0" 1521 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df" 1522 | dependencies: 1523 | bn.js "^4.4.0" 1524 | brorand "^1.0.1" 1525 | hash.js "^1.0.0" 1526 | hmac-drbg "^1.0.0" 1527 | inherits "^2.0.1" 1528 | minimalistic-assert "^1.0.0" 1529 | minimalistic-crypto-utils "^1.0.0" 1530 | 1531 | emojis-list@^2.0.0: 1532 | version "2.1.0" 1533 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" 1534 | 1535 | enhanced-resolve@^3.0.0: 1536 | version "3.1.0" 1537 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.1.0.tgz#9f4b626f577245edcf4b2ad83d86e17f4f421dec" 1538 | dependencies: 1539 | graceful-fs "^4.1.2" 1540 | memory-fs "^0.4.0" 1541 | object-assign "^4.0.1" 1542 | tapable "^0.2.5" 1543 | 1544 | envify@^3.0.0: 1545 | version "3.4.1" 1546 | resolved "https://registry.yarnpkg.com/envify/-/envify-3.4.1.tgz#d7122329e8df1688ba771b12501917c9ce5cbce8" 1547 | dependencies: 1548 | jstransform "^11.0.3" 1549 | through "~2.3.4" 1550 | 1551 | errno@^0.1.3: 1552 | version "0.1.4" 1553 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 1554 | dependencies: 1555 | prr "~0.0.0" 1556 | 1557 | error-ex@^1.2.0: 1558 | version "1.3.0" 1559 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.0.tgz#e67b43f3e82c96ea3a584ffee0b9fc3325d802d9" 1560 | dependencies: 1561 | is-arrayish "^0.2.1" 1562 | 1563 | 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: 1564 | version "0.10.12" 1565 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.12.tgz#aa84641d4db76b62abba5e45fd805ecbab140047" 1566 | dependencies: 1567 | es6-iterator "2" 1568 | es6-symbol "~3.1" 1569 | 1570 | es6-iterator@2: 1571 | version "2.0.0" 1572 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.0.tgz#bd968567d61635e33c0b80727613c9cb4b096bac" 1573 | dependencies: 1574 | d "^0.1.1" 1575 | es5-ext "^0.10.7" 1576 | es6-symbol "3" 1577 | 1578 | es6-map@^0.1.3: 1579 | version "0.1.4" 1580 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.4.tgz#a34b147be224773a4d7da8072794cefa3632b897" 1581 | dependencies: 1582 | d "~0.1.1" 1583 | es5-ext "~0.10.11" 1584 | es6-iterator "2" 1585 | es6-set "~0.1.3" 1586 | es6-symbol "~3.1.0" 1587 | event-emitter "~0.3.4" 1588 | 1589 | es6-set@~0.1.3: 1590 | version "0.1.4" 1591 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.4.tgz#9516b6761c2964b92ff479456233a247dc707ce8" 1592 | dependencies: 1593 | d "~0.1.1" 1594 | es5-ext "~0.10.11" 1595 | es6-iterator "2" 1596 | es6-symbol "3" 1597 | event-emitter "~0.3.4" 1598 | 1599 | es6-symbol@3, es6-symbol@~3.1, es6-symbol@~3.1.0: 1600 | version "3.1.0" 1601 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.0.tgz#94481c655e7a7cad82eba832d97d5433496d7ffa" 1602 | dependencies: 1603 | d "~0.1.1" 1604 | es5-ext "~0.10.11" 1605 | 1606 | es6-weak-map@^2.0.1: 1607 | version "2.0.1" 1608 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.1.tgz#0d2bbd8827eb5fb4ba8f97fbfea50d43db21ea81" 1609 | dependencies: 1610 | d "^0.1.1" 1611 | es5-ext "^0.10.8" 1612 | es6-iterator "2" 1613 | es6-symbol "3" 1614 | 1615 | escape-string-regexp@1.0.2: 1616 | version "1.0.2" 1617 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.2.tgz#4dbc2fe674e71949caf3fb2695ce7f2dc1d9a8d1" 1618 | 1619 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1620 | version "1.0.5" 1621 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1622 | 1623 | escodegen@1.7.x: 1624 | version "1.7.1" 1625 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.7.1.tgz#30ecfcf66ca98dc67cd2fd162abeb6eafa8ce6fc" 1626 | dependencies: 1627 | esprima "^1.2.2" 1628 | estraverse "^1.9.1" 1629 | esutils "^2.0.2" 1630 | optionator "^0.5.0" 1631 | optionalDependencies: 1632 | source-map "~0.2.0" 1633 | 1634 | escodegen@1.8.x: 1635 | version "1.8.1" 1636 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 1637 | dependencies: 1638 | esprima "^2.7.1" 1639 | estraverse "^1.9.1" 1640 | esutils "^2.0.2" 1641 | optionator "^0.8.1" 1642 | optionalDependencies: 1643 | source-map "~0.2.0" 1644 | 1645 | escope@^3.3.0: 1646 | version "3.6.0" 1647 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 1648 | dependencies: 1649 | es6-map "^0.1.3" 1650 | es6-weak-map "^2.0.1" 1651 | esrecurse "^4.1.0" 1652 | estraverse "^4.1.1" 1653 | 1654 | eslint-formatter-pretty@^1.1.0: 1655 | version "1.1.0" 1656 | resolved "https://registry.yarnpkg.com/eslint-formatter-pretty/-/eslint-formatter-pretty-1.1.0.tgz#ab4d06da02fed8c13ae9f0dc540a433ef7ed6f5e" 1657 | dependencies: 1658 | ansi-escapes "^1.4.0" 1659 | chalk "^1.1.3" 1660 | log-symbols "^1.0.2" 1661 | plur "^2.1.2" 1662 | string-width "^2.0.0" 1663 | 1664 | eslint-loader@^1.1.0: 1665 | version "1.6.3" 1666 | resolved "https://registry.yarnpkg.com/eslint-loader/-/eslint-loader-1.6.3.tgz#52fdcb32e9e8355108f8380dad4efe51a28986f9" 1667 | dependencies: 1668 | find-cache-dir "^0.1.1" 1669 | loader-utils "^1.0.2" 1670 | object-assign "^4.0.1" 1671 | object-hash "^1.1.4" 1672 | 1673 | eslint-plugin-react@^3.6.3: 1674 | version "3.16.1" 1675 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-3.16.1.tgz#262d96b77d7c4a42af809a73c0e527a58612293c" 1676 | 1677 | eslint@^1.7.3: 1678 | version "1.10.3" 1679 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-1.10.3.tgz#fb19a91b13c158082bbca294b17d979bc8353a0a" 1680 | dependencies: 1681 | chalk "^1.0.0" 1682 | concat-stream "^1.4.6" 1683 | debug "^2.1.1" 1684 | doctrine "^0.7.1" 1685 | escape-string-regexp "^1.0.2" 1686 | escope "^3.3.0" 1687 | espree "^2.2.4" 1688 | estraverse "^4.1.1" 1689 | estraverse-fb "^1.3.1" 1690 | esutils "^2.0.2" 1691 | file-entry-cache "^1.1.1" 1692 | glob "^5.0.14" 1693 | globals "^8.11.0" 1694 | handlebars "^4.0.0" 1695 | inquirer "^0.11.0" 1696 | is-my-json-valid "^2.10.0" 1697 | is-resolvable "^1.0.0" 1698 | js-yaml "3.4.5" 1699 | json-stable-stringify "^1.0.0" 1700 | lodash.clonedeep "^3.0.1" 1701 | lodash.merge "^3.3.2" 1702 | lodash.omit "^3.1.0" 1703 | minimatch "^3.0.0" 1704 | mkdirp "^0.5.0" 1705 | object-assign "^4.0.1" 1706 | optionator "^0.6.0" 1707 | path-is-absolute "^1.0.0" 1708 | path-is-inside "^1.0.1" 1709 | shelljs "^0.5.3" 1710 | strip-json-comments "~1.0.1" 1711 | text-table "~0.2.0" 1712 | user-home "^2.0.0" 1713 | xml-escape "~1.0.0" 1714 | 1715 | espree@^2.2.4: 1716 | version "2.2.5" 1717 | resolved "https://registry.yarnpkg.com/espree/-/espree-2.2.5.tgz#df691b9310889402aeb29cc066708c56690b854b" 1718 | 1719 | esprima-fb@^15001.1.0-dev-harmony-fb: 1720 | version "15001.1.0-dev-harmony-fb" 1721 | resolved "https://registry.yarnpkg.com/esprima-fb/-/esprima-fb-15001.1.0-dev-harmony-fb.tgz#30a947303c6b8d5e955bee2b99b1d233206a6901" 1722 | 1723 | esprima-fb@~15001.1001.0-dev-harmony-fb: 1724 | version "15001.1001.0-dev-harmony-fb" 1725 | resolved "https://registry.yarnpkg.com/esprima-fb/-/esprima-fb-15001.1001.0-dev-harmony-fb.tgz#43beb57ec26e8cf237d3dd8b33e42533577f2659" 1726 | 1727 | esprima@2.5.x: 1728 | version "2.5.0" 1729 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.5.0.tgz#f387a46fd344c1b1a39baf8c20bfb43b6d0058cc" 1730 | 1731 | esprima@2.7.x, esprima@^2.6.0, esprima@^2.7.1: 1732 | version "2.7.3" 1733 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 1734 | 1735 | esprima@^1.2.2: 1736 | version "1.2.5" 1737 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-1.2.5.tgz#0993502feaf668138325756f30f9a51feeec11e9" 1738 | 1739 | esprima@^3.1.1, esprima@~3.1.0: 1740 | version "3.1.3" 1741 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1742 | 1743 | esrecurse@^4.1.0: 1744 | version "4.1.0" 1745 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" 1746 | dependencies: 1747 | estraverse "~4.1.0" 1748 | object-assign "^4.0.1" 1749 | 1750 | estraverse-fb@^1.3.1: 1751 | version "1.3.1" 1752 | resolved "https://registry.yarnpkg.com/estraverse-fb/-/estraverse-fb-1.3.1.tgz#160e75a80e605b08ce894bcce2fe3e429abf92bf" 1753 | 1754 | estraverse@^1.9.1: 1755 | version "1.9.3" 1756 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 1757 | 1758 | estraverse@^4.1.1: 1759 | version "4.2.0" 1760 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1761 | 1762 | estraverse@~4.1.0: 1763 | version "4.1.1" 1764 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" 1765 | 1766 | esutils@^1.1.6: 1767 | version "1.1.6" 1768 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-1.1.6.tgz#c01ccaa9ae4b897c6d0c3e210ae52f3c7a844375" 1769 | 1770 | esutils@^2.0.0, esutils@^2.0.2: 1771 | version "2.0.2" 1772 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1773 | 1774 | event-emitter@~0.3.4: 1775 | version "0.3.4" 1776 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.4.tgz#8d63ddfb4cfe1fae3b32ca265c4c720222080bb5" 1777 | dependencies: 1778 | d "~0.1.1" 1779 | es5-ext "~0.10.7" 1780 | 1781 | events@^1.0.0: 1782 | version "1.1.1" 1783 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 1784 | 1785 | evp_bytestokey@^1.0.0: 1786 | version "1.0.0" 1787 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.0.tgz#497b66ad9fef65cd7c08a6180824ba1476b66e53" 1788 | dependencies: 1789 | create-hash "^1.1.1" 1790 | 1791 | exit-hook@^1.0.0: 1792 | version "1.1.1" 1793 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1794 | 1795 | expand-brackets@^0.1.4: 1796 | version "0.1.5" 1797 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1798 | dependencies: 1799 | is-posix-bracket "^0.1.0" 1800 | 1801 | expand-range@^1.8.1: 1802 | version "1.8.2" 1803 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1804 | dependencies: 1805 | fill-range "^2.1.0" 1806 | 1807 | extend@~3.0.0: 1808 | version "3.0.0" 1809 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 1810 | 1811 | extglob@^0.3.1: 1812 | version "0.3.2" 1813 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1814 | dependencies: 1815 | is-extglob "^1.0.0" 1816 | 1817 | extsprintf@1.0.2: 1818 | version "1.0.2" 1819 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1820 | 1821 | fast-levenshtein@~1.0.0, fast-levenshtein@~1.0.6: 1822 | version "1.0.7" 1823 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-1.0.7.tgz#0178dcdee023b92905193af0959e8a7639cfdcb9" 1824 | 1825 | fast-levenshtein@~2.0.4: 1826 | version "2.0.6" 1827 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1828 | 1829 | fbjs@^0.6.1: 1830 | version "0.6.1" 1831 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.6.1.tgz#9636b7705f5ba9684d44b72f78321254afc860f7" 1832 | dependencies: 1833 | core-js "^1.0.0" 1834 | loose-envify "^1.0.0" 1835 | promise "^7.0.3" 1836 | ua-parser-js "^0.7.9" 1837 | whatwg-fetch "^0.9.0" 1838 | 1839 | figures@^1.3.5: 1840 | version "1.7.0" 1841 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1842 | dependencies: 1843 | escape-string-regexp "^1.0.5" 1844 | object-assign "^4.1.0" 1845 | 1846 | file-entry-cache@^1.1.1: 1847 | version "1.3.1" 1848 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-1.3.1.tgz#44c61ea607ae4be9c1402f41f44270cbfe334ff8" 1849 | dependencies: 1850 | flat-cache "^1.2.1" 1851 | object-assign "^4.0.1" 1852 | 1853 | filename-regex@^2.0.0: 1854 | version "2.0.0" 1855 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 1856 | 1857 | fileset@0.2.x: 1858 | version "0.2.1" 1859 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-0.2.1.tgz#588ef8973c6623b2a76df465105696b96aac8067" 1860 | dependencies: 1861 | glob "5.x" 1862 | minimatch "2.x" 1863 | 1864 | fill-range@^2.1.0: 1865 | version "2.2.3" 1866 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1867 | dependencies: 1868 | is-number "^2.1.0" 1869 | isobject "^2.0.0" 1870 | randomatic "^1.1.3" 1871 | repeat-element "^1.1.2" 1872 | repeat-string "^1.5.2" 1873 | 1874 | find-cache-dir@^0.1.1: 1875 | version "0.1.1" 1876 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" 1877 | dependencies: 1878 | commondir "^1.0.1" 1879 | mkdirp "^0.5.1" 1880 | pkg-dir "^1.0.0" 1881 | 1882 | find-up@^1.0.0: 1883 | version "1.1.2" 1884 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1885 | dependencies: 1886 | path-exists "^2.0.0" 1887 | pinkie-promise "^2.0.0" 1888 | 1889 | flat-cache@^1.2.1: 1890 | version "1.2.2" 1891 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 1892 | dependencies: 1893 | circular-json "^0.3.1" 1894 | del "^2.0.2" 1895 | graceful-fs "^4.1.2" 1896 | write "^0.2.1" 1897 | 1898 | for-in@^0.1.5: 1899 | version "0.1.6" 1900 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.6.tgz#c9f96e89bfad18a545af5ec3ed352a1d9e5b4dc8" 1901 | 1902 | for-own@^0.1.4: 1903 | version "0.1.4" 1904 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.4.tgz#0149b41a39088c7515f51ebe1c1386d45f935072" 1905 | dependencies: 1906 | for-in "^0.1.5" 1907 | 1908 | forever-agent@~0.6.1: 1909 | version "0.6.1" 1910 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1911 | 1912 | form-data@~2.1.1: 1913 | version "2.1.2" 1914 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4" 1915 | dependencies: 1916 | asynckit "^0.4.0" 1917 | combined-stream "^1.0.5" 1918 | mime-types "^2.1.12" 1919 | 1920 | formatio@1.1.1: 1921 | version "1.1.1" 1922 | resolved "https://registry.yarnpkg.com/formatio/-/formatio-1.1.1.tgz#5ed3ccd636551097383465d996199100e86161e9" 1923 | dependencies: 1924 | samsam "~1.1" 1925 | 1926 | fs-readdir-recursive@^0.1.0: 1927 | version "0.1.2" 1928 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-0.1.2.tgz#315b4fb8c1ca5b8c47defef319d073dad3568059" 1929 | 1930 | fs-readdir-recursive@^1.0.0: 1931 | version "1.0.0" 1932 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 1933 | 1934 | fs.realpath@^1.0.0: 1935 | version "1.0.0" 1936 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1937 | 1938 | fsevents@^1.0.0: 1939 | version "1.1.1" 1940 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.1.tgz#f19fd28f43eeaf761680e519a203c4d0b3d31aff" 1941 | dependencies: 1942 | nan "^2.3.0" 1943 | node-pre-gyp "^0.6.29" 1944 | 1945 | fstream-ignore@~1.0.5: 1946 | version "1.0.5" 1947 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1948 | dependencies: 1949 | fstream "^1.0.0" 1950 | inherits "2" 1951 | minimatch "^3.0.0" 1952 | 1953 | fstream@^1.0.0, fstream@^1.0.2, fstream@~1.0.10: 1954 | version "1.0.10" 1955 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.10.tgz#604e8a92fe26ffd9f6fae30399d4984e1ab22822" 1956 | dependencies: 1957 | graceful-fs "^4.1.2" 1958 | inherits "~2.0.0" 1959 | mkdirp ">=0.5 0" 1960 | rimraf "2" 1961 | 1962 | gauge@~2.7.1: 1963 | version "2.7.3" 1964 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.3.tgz#1c23855f962f17b3ad3d0dc7443f304542edfe09" 1965 | dependencies: 1966 | aproba "^1.0.3" 1967 | console-control-strings "^1.0.0" 1968 | has-unicode "^2.0.0" 1969 | object-assign "^4.1.0" 1970 | signal-exit "^3.0.0" 1971 | string-width "^1.0.1" 1972 | strip-ansi "^3.0.1" 1973 | wide-align "^1.1.0" 1974 | 1975 | generate-function@^2.0.0: 1976 | version "2.0.0" 1977 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1978 | 1979 | generate-object-property@^1.1.0: 1980 | version "1.2.0" 1981 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1982 | dependencies: 1983 | is-property "^1.0.0" 1984 | 1985 | get-caller-file@^1.0.1: 1986 | version "1.0.2" 1987 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1988 | 1989 | get-stdin@^4.0.1: 1990 | version "4.0.1" 1991 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 1992 | 1993 | getpass@^0.1.1: 1994 | version "0.1.6" 1995 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 1996 | dependencies: 1997 | assert-plus "^1.0.0" 1998 | 1999 | glob-base@^0.3.0: 2000 | version "0.3.0" 2001 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 2002 | dependencies: 2003 | glob-parent "^2.0.0" 2004 | is-glob "^2.0.0" 2005 | 2006 | glob-parent@^2.0.0: 2007 | version "2.0.0" 2008 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 2009 | dependencies: 2010 | is-glob "^2.0.0" 2011 | 2012 | glob@3.2.11: 2013 | version "3.2.11" 2014 | resolved "https://registry.yarnpkg.com/glob/-/glob-3.2.11.tgz#4a973f635b9190f715d10987d5c00fd2815ebe3d" 2015 | dependencies: 2016 | inherits "2" 2017 | minimatch "0.3" 2018 | 2019 | glob@5.x, glob@^5.0.14, glob@^5.0.15: 2020 | version "5.0.15" 2021 | resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" 2022 | dependencies: 2023 | inflight "^1.0.4" 2024 | inherits "2" 2025 | minimatch "2 || 3" 2026 | once "^1.3.0" 2027 | path-is-absolute "^1.0.0" 2028 | 2029 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5: 2030 | version "7.1.1" 2031 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 2032 | dependencies: 2033 | fs.realpath "^1.0.0" 2034 | inflight "^1.0.4" 2035 | inherits "2" 2036 | minimatch "^3.0.2" 2037 | once "^1.3.0" 2038 | path-is-absolute "^1.0.0" 2039 | 2040 | globals@^6.4.0: 2041 | version "6.4.1" 2042 | resolved "https://registry.yarnpkg.com/globals/-/globals-6.4.1.tgz#8498032b3b6d1cc81eebc5f79690d8fe29fabf4f" 2043 | 2044 | globals@^8.11.0: 2045 | version "8.18.0" 2046 | resolved "https://registry.yarnpkg.com/globals/-/globals-8.18.0.tgz#93d4a62bdcac38cfafafc47d6b034768cb0ffcb4" 2047 | 2048 | globals@^9.0.0: 2049 | version "9.16.0" 2050 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.16.0.tgz#63e903658171ec2d9f51b1d31de5e2b8dc01fb80" 2051 | 2052 | globby@^5.0.0: 2053 | version "5.0.0" 2054 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 2055 | dependencies: 2056 | array-union "^1.0.1" 2057 | arrify "^1.0.0" 2058 | glob "^7.0.3" 2059 | object-assign "^4.0.1" 2060 | pify "^2.0.0" 2061 | pinkie-promise "^2.0.0" 2062 | 2063 | graceful-fs@^4.1.2, graceful-fs@^4.1.4: 2064 | version "4.1.11" 2065 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 2066 | 2067 | "graceful-readlink@>= 1.0.0": 2068 | version "1.0.1" 2069 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 2070 | 2071 | growl@1.9.2: 2072 | version "1.9.2" 2073 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f" 2074 | 2075 | handlebars@4.0.x, handlebars@^4.0.0, handlebars@^4.0.1: 2076 | version "4.0.6" 2077 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.6.tgz#2ce4484850537f9c97a8026d5399b935c4ed4ed7" 2078 | dependencies: 2079 | async "^1.4.0" 2080 | optimist "^0.6.1" 2081 | source-map "^0.4.4" 2082 | optionalDependencies: 2083 | uglify-js "^2.6" 2084 | 2085 | har-validator@~2.0.6: 2086 | version "2.0.6" 2087 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 2088 | dependencies: 2089 | chalk "^1.1.1" 2090 | commander "^2.9.0" 2091 | is-my-json-valid "^2.12.4" 2092 | pinkie-promise "^2.0.0" 2093 | 2094 | has-ansi@^2.0.0: 2095 | version "2.0.0" 2096 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 2097 | dependencies: 2098 | ansi-regex "^2.0.0" 2099 | 2100 | has-flag@^1.0.0: 2101 | version "1.0.0" 2102 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 2103 | 2104 | has-unicode@^2.0.0: 2105 | version "2.0.1" 2106 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 2107 | 2108 | hash.js@^1.0.0, hash.js@^1.0.3: 2109 | version "1.0.3" 2110 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.0.3.tgz#1332ff00156c0a0ffdd8236013d07b77a0451573" 2111 | dependencies: 2112 | inherits "^2.0.1" 2113 | 2114 | hawk@~3.1.3: 2115 | version "3.1.3" 2116 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 2117 | dependencies: 2118 | boom "2.x.x" 2119 | cryptiles "2.x.x" 2120 | hoek "2.x.x" 2121 | sntp "1.x.x" 2122 | 2123 | hmac-drbg@^1.0.0: 2124 | version "1.0.0" 2125 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.0.tgz#3db471f45aae4a994a0688322171f51b8b91bee5" 2126 | dependencies: 2127 | hash.js "^1.0.3" 2128 | minimalistic-assert "^1.0.0" 2129 | minimalistic-crypto-utils "^1.0.1" 2130 | 2131 | hoek@2.x.x: 2132 | version "2.16.3" 2133 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 2134 | 2135 | home-or-tmp@^1.0.0: 2136 | version "1.0.0" 2137 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-1.0.0.tgz#4b9f1e40800c3e50c6c27f781676afcce71f3985" 2138 | dependencies: 2139 | os-tmpdir "^1.0.1" 2140 | user-home "^1.1.1" 2141 | 2142 | home-or-tmp@^2.0.0: 2143 | version "2.0.0" 2144 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 2145 | dependencies: 2146 | os-homedir "^1.0.0" 2147 | os-tmpdir "^1.0.1" 2148 | 2149 | hosted-git-info@^2.1.4: 2150 | version "2.2.0" 2151 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.2.0.tgz#7a0d097863d886c0fabbdcd37bf1758d8becf8a5" 2152 | 2153 | http-signature@~1.1.0: 2154 | version "1.1.1" 2155 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 2156 | dependencies: 2157 | assert-plus "^0.2.0" 2158 | jsprim "^1.2.2" 2159 | sshpk "^1.7.0" 2160 | 2161 | https-browserify@0.0.1: 2162 | version "0.0.1" 2163 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82" 2164 | 2165 | iconv-lite@^0.4.5: 2166 | version "0.4.15" 2167 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.15.tgz#fe265a218ac6a57cfe854927e9d04c19825eddeb" 2168 | 2169 | ieee754@^1.1.4: 2170 | version "1.1.8" 2171 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 2172 | 2173 | indexof@0.0.1: 2174 | version "0.0.1" 2175 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 2176 | 2177 | inflight@^1.0.4: 2178 | version "1.0.6" 2179 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 2180 | dependencies: 2181 | once "^1.3.0" 2182 | wrappy "1" 2183 | 2184 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1: 2185 | version "2.0.3" 2186 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 2187 | 2188 | inherits@2.0.1: 2189 | version "2.0.1" 2190 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 2191 | 2192 | ini@~1.3.0: 2193 | version "1.3.4" 2194 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 2195 | 2196 | inquirer@^0.11.0: 2197 | version "0.11.4" 2198 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.11.4.tgz#81e3374e8361beaff2d97016206d359d0b32fa4d" 2199 | dependencies: 2200 | ansi-escapes "^1.1.0" 2201 | ansi-regex "^2.0.0" 2202 | chalk "^1.0.0" 2203 | cli-cursor "^1.0.1" 2204 | cli-width "^1.0.1" 2205 | figures "^1.3.5" 2206 | lodash "^3.3.1" 2207 | readline2 "^1.0.1" 2208 | run-async "^0.1.0" 2209 | rx-lite "^3.1.2" 2210 | string-width "^1.0.1" 2211 | strip-ansi "^3.0.0" 2212 | through "^2.3.6" 2213 | 2214 | interpret@^1.0.0: 2215 | version "1.0.1" 2216 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.1.tgz#d579fb7f693b858004947af39fa0db49f795602c" 2217 | 2218 | invariant@^2.2.0: 2219 | version "2.2.2" 2220 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 2221 | dependencies: 2222 | loose-envify "^1.0.0" 2223 | 2224 | invert-kv@^1.0.0: 2225 | version "1.0.0" 2226 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 2227 | 2228 | irregular-plurals@^1.0.0: 2229 | version "1.2.0" 2230 | resolved "https://registry.yarnpkg.com/irregular-plurals/-/irregular-plurals-1.2.0.tgz#38f299834ba8c00c30be9c554e137269752ff3ac" 2231 | 2232 | is-arrayish@^0.2.1: 2233 | version "0.2.1" 2234 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 2235 | 2236 | is-binary-path@^1.0.0: 2237 | version "1.0.1" 2238 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 2239 | dependencies: 2240 | binary-extensions "^1.0.0" 2241 | 2242 | is-buffer@^1.0.2: 2243 | version "1.1.4" 2244 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b" 2245 | 2246 | is-builtin-module@^1.0.0: 2247 | version "1.0.0" 2248 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 2249 | dependencies: 2250 | builtin-modules "^1.0.0" 2251 | 2252 | is-dotfile@^1.0.0: 2253 | version "1.0.2" 2254 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 2255 | 2256 | is-equal-shallow@^0.1.3: 2257 | version "0.1.3" 2258 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 2259 | dependencies: 2260 | is-primitive "^2.0.0" 2261 | 2262 | is-extendable@^0.1.1: 2263 | version "0.1.1" 2264 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 2265 | 2266 | is-extglob@^1.0.0: 2267 | version "1.0.0" 2268 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 2269 | 2270 | is-finite@^1.0.0: 2271 | version "1.0.2" 2272 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 2273 | dependencies: 2274 | number-is-nan "^1.0.0" 2275 | 2276 | is-fullwidth-code-point@^1.0.0: 2277 | version "1.0.0" 2278 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 2279 | dependencies: 2280 | number-is-nan "^1.0.0" 2281 | 2282 | is-fullwidth-code-point@^2.0.0: 2283 | version "2.0.0" 2284 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 2285 | 2286 | is-glob@^2.0.0, is-glob@^2.0.1: 2287 | version "2.0.1" 2288 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 2289 | dependencies: 2290 | is-extglob "^1.0.0" 2291 | 2292 | is-integer@^1.0.4: 2293 | version "1.0.6" 2294 | resolved "https://registry.yarnpkg.com/is-integer/-/is-integer-1.0.6.tgz#5273819fada880d123e1ac00a938e7172dd8d95e" 2295 | dependencies: 2296 | is-finite "^1.0.0" 2297 | 2298 | is-my-json-valid@^2.10.0, is-my-json-valid@^2.12.4: 2299 | version "2.15.0" 2300 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b" 2301 | dependencies: 2302 | generate-function "^2.0.0" 2303 | generate-object-property "^1.1.0" 2304 | jsonpointer "^4.0.0" 2305 | xtend "^4.0.0" 2306 | 2307 | is-number@^2.0.2, is-number@^2.1.0: 2308 | version "2.1.0" 2309 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 2310 | dependencies: 2311 | kind-of "^3.0.2" 2312 | 2313 | is-path-cwd@^1.0.0: 2314 | version "1.0.0" 2315 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 2316 | 2317 | is-path-in-cwd@^1.0.0: 2318 | version "1.0.0" 2319 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 2320 | dependencies: 2321 | is-path-inside "^1.0.0" 2322 | 2323 | is-path-inside@^1.0.0: 2324 | version "1.0.0" 2325 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 2326 | dependencies: 2327 | path-is-inside "^1.0.1" 2328 | 2329 | is-posix-bracket@^0.1.0: 2330 | version "0.1.1" 2331 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 2332 | 2333 | is-primitive@^2.0.0: 2334 | version "2.0.0" 2335 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 2336 | 2337 | is-property@^1.0.0: 2338 | version "1.0.2" 2339 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 2340 | 2341 | is-resolvable@^1.0.0: 2342 | version "1.0.0" 2343 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 2344 | dependencies: 2345 | tryit "^1.0.1" 2346 | 2347 | is-typedarray@~1.0.0: 2348 | version "1.0.0" 2349 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2350 | 2351 | is-utf8@^0.2.0: 2352 | version "0.2.1" 2353 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 2354 | 2355 | isarray@0.0.1: 2356 | version "0.0.1" 2357 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 2358 | 2359 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 2360 | version "1.0.0" 2361 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2362 | 2363 | isexe@^1.1.1: 2364 | version "1.1.2" 2365 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-1.1.2.tgz#36f3e22e60750920f5e7241a476a8c6a42275ad0" 2366 | 2367 | isobject@^2.0.0: 2368 | version "2.1.0" 2369 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2370 | dependencies: 2371 | isarray "1.0.0" 2372 | 2373 | isstream@~0.1.2: 2374 | version "0.1.2" 2375 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2376 | 2377 | istanbul@^0.4.2: 2378 | version "0.4.5" 2379 | resolved "https://registry.yarnpkg.com/istanbul/-/istanbul-0.4.5.tgz#65c7d73d4c4da84d4f3ac310b918fb0b8033733b" 2380 | dependencies: 2381 | abbrev "1.0.x" 2382 | async "1.x" 2383 | escodegen "1.8.x" 2384 | esprima "2.7.x" 2385 | glob "^5.0.15" 2386 | handlebars "^4.0.1" 2387 | js-yaml "3.x" 2388 | mkdirp "0.5.x" 2389 | nopt "3.x" 2390 | once "1.x" 2391 | resolve "1.1.x" 2392 | supports-color "^3.1.0" 2393 | which "^1.1.1" 2394 | wordwrap "^1.0.0" 2395 | 2396 | jade@0.26.3: 2397 | version "0.26.3" 2398 | resolved "https://registry.yarnpkg.com/jade/-/jade-0.26.3.tgz#8f10d7977d8d79f2f6ff862a81b0513ccb25686c" 2399 | dependencies: 2400 | commander "0.6.1" 2401 | mkdirp "0.3.0" 2402 | 2403 | jodid25519@^1.0.0: 2404 | version "1.0.2" 2405 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 2406 | dependencies: 2407 | jsbn "~0.1.0" 2408 | 2409 | js-tokens@1.0.1: 2410 | version "1.0.1" 2411 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-1.0.1.tgz#cc435a5c8b94ad15acb7983140fc80182c89aeae" 2412 | 2413 | js-tokens@^3.0.0: 2414 | version "3.0.1" 2415 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 2416 | 2417 | js-yaml@3.4.5: 2418 | version "3.4.5" 2419 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.4.5.tgz#c3403797df12b91866574f2de23646fe8cafb44d" 2420 | dependencies: 2421 | argparse "^1.0.2" 2422 | esprima "^2.6.0" 2423 | 2424 | js-yaml@3.6.1: 2425 | version "3.6.1" 2426 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.6.1.tgz#6e5fe67d8b205ce4d22fad05b7781e8dadcc4b30" 2427 | dependencies: 2428 | argparse "^1.0.7" 2429 | esprima "^2.6.0" 2430 | 2431 | js-yaml@3.x: 2432 | version "3.8.1" 2433 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.1.tgz#782ba50200be7b9e5a8537001b7804db3ad02628" 2434 | dependencies: 2435 | argparse "^1.0.7" 2436 | esprima "^3.1.1" 2437 | 2438 | jsbn@~0.1.0: 2439 | version "0.1.1" 2440 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2441 | 2442 | jsesc@^1.3.0: 2443 | version "1.3.0" 2444 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2445 | 2446 | jsesc@~0.5.0: 2447 | version "0.5.0" 2448 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2449 | 2450 | json-loader@^0.5.4: 2451 | version "0.5.4" 2452 | resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.4.tgz#8baa1365a632f58a3c46d20175fc6002c96e37de" 2453 | 2454 | json-schema@0.2.3: 2455 | version "0.2.3" 2456 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2457 | 2458 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 2459 | version "1.0.1" 2460 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2461 | dependencies: 2462 | jsonify "~0.0.0" 2463 | 2464 | json-stringify-safe@~5.0.1: 2465 | version "5.0.1" 2466 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2467 | 2468 | json5@^0.4.0: 2469 | version "0.4.0" 2470 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.4.0.tgz#054352e4c4c80c86c0923877d449de176a732c8d" 2471 | 2472 | json5@^0.5.0: 2473 | version "0.5.1" 2474 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2475 | 2476 | jsonify@~0.0.0: 2477 | version "0.0.0" 2478 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2479 | 2480 | jsonpointer@^4.0.0: 2481 | version "4.0.1" 2482 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 2483 | 2484 | jsprim@^1.2.2: 2485 | version "1.3.1" 2486 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.3.1.tgz#2a7256f70412a29ee3670aaca625994c4dcff252" 2487 | dependencies: 2488 | extsprintf "1.0.2" 2489 | json-schema "0.2.3" 2490 | verror "1.3.6" 2491 | 2492 | jstransform@^11.0.3: 2493 | version "11.0.3" 2494 | resolved "https://registry.yarnpkg.com/jstransform/-/jstransform-11.0.3.tgz#09a78993e0ae4d4ef4487f6155a91f6190cb4223" 2495 | dependencies: 2496 | base62 "^1.1.0" 2497 | commoner "^0.10.1" 2498 | esprima-fb "^15001.1.0-dev-harmony-fb" 2499 | object-assign "^2.0.0" 2500 | source-map "^0.4.2" 2501 | 2502 | kind-of@^3.0.2: 2503 | version "3.1.0" 2504 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47" 2505 | dependencies: 2506 | is-buffer "^1.0.2" 2507 | 2508 | lazy-cache@^1.0.3: 2509 | version "1.0.4" 2510 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2511 | 2512 | lcid@^1.0.0: 2513 | version "1.0.0" 2514 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2515 | dependencies: 2516 | invert-kv "^1.0.0" 2517 | 2518 | lcov-parse@0.0.10: 2519 | version "0.0.10" 2520 | resolved "https://registry.yarnpkg.com/lcov-parse/-/lcov-parse-0.0.10.tgz#1b0b8ff9ac9c7889250582b70b71315d9da6d9a3" 2521 | 2522 | leven@^1.0.2: 2523 | version "1.0.2" 2524 | resolved "https://registry.yarnpkg.com/leven/-/leven-1.0.2.tgz#9144b6eebca5f1d0680169f1a6770dcea60b75c3" 2525 | 2526 | levn@~0.2.5: 2527 | version "0.2.5" 2528 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.2.5.tgz#ba8d339d0ca4a610e3a3f145b9caf48807155054" 2529 | dependencies: 2530 | prelude-ls "~1.1.0" 2531 | type-check "~0.3.1" 2532 | 2533 | levn@~0.3.0: 2534 | version "0.3.0" 2535 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2536 | dependencies: 2537 | prelude-ls "~1.1.2" 2538 | type-check "~0.3.2" 2539 | 2540 | load-json-file@^1.0.0: 2541 | version "1.1.0" 2542 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2543 | dependencies: 2544 | graceful-fs "^4.1.2" 2545 | parse-json "^2.2.0" 2546 | pify "^2.0.0" 2547 | pinkie-promise "^2.0.0" 2548 | strip-bom "^2.0.0" 2549 | 2550 | loader-runner@^2.3.0: 2551 | version "2.3.0" 2552 | resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.3.0.tgz#f482aea82d543e07921700d5a46ef26fdac6b8a2" 2553 | 2554 | loader-utils@^0.2.16: 2555 | version "0.2.17" 2556 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.17.tgz#f86e6374d43205a6e6c60e9196f17c0299bfb348" 2557 | dependencies: 2558 | big.js "^3.1.3" 2559 | emojis-list "^2.0.0" 2560 | json5 "^0.5.0" 2561 | object-assign "^4.0.1" 2562 | 2563 | loader-utils@^1.0.2: 2564 | version "1.0.2" 2565 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.0.2.tgz#a9f923c865a974623391a8602d031137fad74830" 2566 | dependencies: 2567 | big.js "^3.1.3" 2568 | emojis-list "^2.0.0" 2569 | json5 "^0.5.0" 2570 | 2571 | lodash._arraycopy@^3.0.0: 2572 | version "3.0.0" 2573 | resolved "https://registry.yarnpkg.com/lodash._arraycopy/-/lodash._arraycopy-3.0.0.tgz#76e7b7c1f1fb92547374878a562ed06a3e50f6e1" 2574 | 2575 | lodash._arrayeach@^3.0.0: 2576 | version "3.0.0" 2577 | resolved "https://registry.yarnpkg.com/lodash._arrayeach/-/lodash._arrayeach-3.0.0.tgz#bab156b2a90d3f1bbd5c653403349e5e5933ef9e" 2578 | 2579 | lodash._arraymap@^3.0.0: 2580 | version "3.0.0" 2581 | resolved "https://registry.yarnpkg.com/lodash._arraymap/-/lodash._arraymap-3.0.0.tgz#1a8fd0f4c0df4b61dea076d717cdc97f0a3c3e66" 2582 | 2583 | lodash._baseassign@^3.0.0: 2584 | version "3.2.0" 2585 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 2586 | dependencies: 2587 | lodash._basecopy "^3.0.0" 2588 | lodash.keys "^3.0.0" 2589 | 2590 | lodash._baseclone@^3.0.0: 2591 | version "3.3.0" 2592 | resolved "https://registry.yarnpkg.com/lodash._baseclone/-/lodash._baseclone-3.3.0.tgz#303519bf6393fe7e42f34d8b630ef7794e3542b7" 2593 | dependencies: 2594 | lodash._arraycopy "^3.0.0" 2595 | lodash._arrayeach "^3.0.0" 2596 | lodash._baseassign "^3.0.0" 2597 | lodash._basefor "^3.0.0" 2598 | lodash.isarray "^3.0.0" 2599 | lodash.keys "^3.0.0" 2600 | 2601 | lodash._basecopy@^3.0.0: 2602 | version "3.0.1" 2603 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 2604 | 2605 | lodash._basedifference@^3.0.0: 2606 | version "3.0.3" 2607 | resolved "https://registry.yarnpkg.com/lodash._basedifference/-/lodash._basedifference-3.0.3.tgz#f2c204296c2a78e02b389081b6edcac933cf629c" 2608 | dependencies: 2609 | lodash._baseindexof "^3.0.0" 2610 | lodash._cacheindexof "^3.0.0" 2611 | lodash._createcache "^3.0.0" 2612 | 2613 | lodash._baseflatten@^3.0.0: 2614 | version "3.1.4" 2615 | resolved "https://registry.yarnpkg.com/lodash._baseflatten/-/lodash._baseflatten-3.1.4.tgz#0770ff80131af6e34f3b511796a7ba5214e65ff7" 2616 | dependencies: 2617 | lodash.isarguments "^3.0.0" 2618 | lodash.isarray "^3.0.0" 2619 | 2620 | lodash._basefor@^3.0.0: 2621 | version "3.0.3" 2622 | resolved "https://registry.yarnpkg.com/lodash._basefor/-/lodash._basefor-3.0.3.tgz#7550b4e9218ef09fad24343b612021c79b4c20c2" 2623 | 2624 | lodash._baseindexof@^3.0.0: 2625 | version "3.1.0" 2626 | resolved "https://registry.yarnpkg.com/lodash._baseindexof/-/lodash._baseindexof-3.1.0.tgz#fe52b53a1c6761e42618d654e4a25789ed61822c" 2627 | 2628 | lodash._bindcallback@^3.0.0: 2629 | version "3.0.1" 2630 | resolved "https://registry.yarnpkg.com/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz#e531c27644cf8b57a99e17ed95b35c748789392e" 2631 | 2632 | lodash._cacheindexof@^3.0.0: 2633 | version "3.0.2" 2634 | resolved "https://registry.yarnpkg.com/lodash._cacheindexof/-/lodash._cacheindexof-3.0.2.tgz#3dc69ac82498d2ee5e3ce56091bafd2adc7bde92" 2635 | 2636 | lodash._createassigner@^3.0.0: 2637 | version "3.1.1" 2638 | resolved "https://registry.yarnpkg.com/lodash._createassigner/-/lodash._createassigner-3.1.1.tgz#838a5bae2fdaca63ac22dee8e19fa4e6d6970b11" 2639 | dependencies: 2640 | lodash._bindcallback "^3.0.0" 2641 | lodash._isiterateecall "^3.0.0" 2642 | lodash.restparam "^3.0.0" 2643 | 2644 | lodash._createcache@^3.0.0: 2645 | version "3.1.2" 2646 | resolved "https://registry.yarnpkg.com/lodash._createcache/-/lodash._createcache-3.1.2.tgz#56d6a064017625e79ebca6b8018e17440bdcf093" 2647 | dependencies: 2648 | lodash._getnative "^3.0.0" 2649 | 2650 | lodash._getnative@^3.0.0: 2651 | version "3.9.1" 2652 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 2653 | 2654 | lodash._isiterateecall@^3.0.0: 2655 | version "3.0.9" 2656 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 2657 | 2658 | lodash._pickbyarray@^3.0.0: 2659 | version "3.0.2" 2660 | resolved "https://registry.yarnpkg.com/lodash._pickbyarray/-/lodash._pickbyarray-3.0.2.tgz#1f898d9607eb560b0e167384b77c7c6d108aa4c5" 2661 | 2662 | lodash._pickbycallback@^3.0.0: 2663 | version "3.0.0" 2664 | resolved "https://registry.yarnpkg.com/lodash._pickbycallback/-/lodash._pickbycallback-3.0.0.tgz#ff61b9a017a7b3af7d30e6c53de28afa19b8750a" 2665 | dependencies: 2666 | lodash._basefor "^3.0.0" 2667 | lodash.keysin "^3.0.0" 2668 | 2669 | lodash.assign@^3.2.0: 2670 | version "3.2.0" 2671 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-3.2.0.tgz#3ce9f0234b4b2223e296b8fa0ac1fee8ebca64fa" 2672 | dependencies: 2673 | lodash._baseassign "^3.0.0" 2674 | lodash._createassigner "^3.0.0" 2675 | lodash.keys "^3.0.0" 2676 | 2677 | lodash.clonedeep@^3.0.1: 2678 | version "3.0.2" 2679 | resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-3.0.2.tgz#a0a1e40d82a5ea89ff5b147b8444ed63d92827db" 2680 | dependencies: 2681 | lodash._baseclone "^3.0.0" 2682 | lodash._bindcallback "^3.0.0" 2683 | 2684 | lodash.isarguments@^3.0.0: 2685 | version "3.1.0" 2686 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 2687 | 2688 | lodash.isarray@^3.0.0: 2689 | version "3.0.4" 2690 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 2691 | 2692 | lodash.isplainobject@^3.0.0: 2693 | version "3.2.0" 2694 | resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-3.2.0.tgz#9a8238ae16b200432960cd7346512d0123fbf4c5" 2695 | dependencies: 2696 | lodash._basefor "^3.0.0" 2697 | lodash.isarguments "^3.0.0" 2698 | lodash.keysin "^3.0.0" 2699 | 2700 | lodash.istypedarray@^3.0.0: 2701 | version "3.0.6" 2702 | resolved "https://registry.yarnpkg.com/lodash.istypedarray/-/lodash.istypedarray-3.0.6.tgz#c9a477498607501d8e8494d283b87c39281cef62" 2703 | 2704 | lodash.keys@^3.0.0: 2705 | version "3.1.2" 2706 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 2707 | dependencies: 2708 | lodash._getnative "^3.0.0" 2709 | lodash.isarguments "^3.0.0" 2710 | lodash.isarray "^3.0.0" 2711 | 2712 | lodash.keysin@^3.0.0: 2713 | version "3.0.8" 2714 | resolved "https://registry.yarnpkg.com/lodash.keysin/-/lodash.keysin-3.0.8.tgz#22c4493ebbedb1427962a54b445b2c8a767fb47f" 2715 | dependencies: 2716 | lodash.isarguments "^3.0.0" 2717 | lodash.isarray "^3.0.0" 2718 | 2719 | lodash.merge@^3.3.2: 2720 | version "3.3.2" 2721 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-3.3.2.tgz#0d90d93ed637b1878437bb3e21601260d7afe994" 2722 | dependencies: 2723 | lodash._arraycopy "^3.0.0" 2724 | lodash._arrayeach "^3.0.0" 2725 | lodash._createassigner "^3.0.0" 2726 | lodash._getnative "^3.0.0" 2727 | lodash.isarguments "^3.0.0" 2728 | lodash.isarray "^3.0.0" 2729 | lodash.isplainobject "^3.0.0" 2730 | lodash.istypedarray "^3.0.0" 2731 | lodash.keys "^3.0.0" 2732 | lodash.keysin "^3.0.0" 2733 | lodash.toplainobject "^3.0.0" 2734 | 2735 | lodash.omit@^3.1.0: 2736 | version "3.1.0" 2737 | resolved "https://registry.yarnpkg.com/lodash.omit/-/lodash.omit-3.1.0.tgz#897fe382e6413d9ac97c61f78ed1e057a00af9f3" 2738 | dependencies: 2739 | lodash._arraymap "^3.0.0" 2740 | lodash._basedifference "^3.0.0" 2741 | lodash._baseflatten "^3.0.0" 2742 | lodash._bindcallback "^3.0.0" 2743 | lodash._pickbyarray "^3.0.0" 2744 | lodash._pickbycallback "^3.0.0" 2745 | lodash.keysin "^3.0.0" 2746 | lodash.restparam "^3.0.0" 2747 | 2748 | lodash.pick@^3.1.0: 2749 | version "3.1.0" 2750 | resolved "https://registry.yarnpkg.com/lodash.pick/-/lodash.pick-3.1.0.tgz#f252a855b2046b61bcd3904b26f76bd2efc65550" 2751 | dependencies: 2752 | lodash._baseflatten "^3.0.0" 2753 | lodash._bindcallback "^3.0.0" 2754 | lodash._pickbyarray "^3.0.0" 2755 | lodash._pickbycallback "^3.0.0" 2756 | lodash.restparam "^3.0.0" 2757 | 2758 | lodash.restparam@^3.0.0: 2759 | version "3.6.1" 2760 | resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" 2761 | 2762 | lodash.toplainobject@^3.0.0: 2763 | version "3.0.0" 2764 | resolved "https://registry.yarnpkg.com/lodash.toplainobject/-/lodash.toplainobject-3.0.0.tgz#28790ad942d293d78aa663a07ecf7f52ca04198d" 2765 | dependencies: 2766 | lodash._basecopy "^3.0.0" 2767 | lodash.keysin "^3.0.0" 2768 | 2769 | lodash@^3.10.0, lodash@^3.3.1, lodash@^3.9.3: 2770 | version "3.10.1" 2771 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6" 2772 | 2773 | lodash@^4.14.0, lodash@^4.2.0: 2774 | version "4.17.4" 2775 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2776 | 2777 | log-driver@1.2.5: 2778 | version "1.2.5" 2779 | resolved "https://registry.yarnpkg.com/log-driver/-/log-driver-1.2.5.tgz#7ae4ec257302fd790d557cb10c97100d857b0056" 2780 | 2781 | log-symbols@^1.0.2: 2782 | version "1.0.2" 2783 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" 2784 | dependencies: 2785 | chalk "^1.0.0" 2786 | 2787 | lolex@1.3.2: 2788 | version "1.3.2" 2789 | resolved "https://registry.yarnpkg.com/lolex/-/lolex-1.3.2.tgz#7c3da62ffcb30f0f5a80a2566ca24e45d8a01f31" 2790 | 2791 | longest@^1.0.1: 2792 | version "1.0.1" 2793 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2794 | 2795 | loose-envify@^1.0.0: 2796 | version "1.3.1" 2797 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2798 | dependencies: 2799 | js-tokens "^3.0.0" 2800 | 2801 | lru-cache@2: 2802 | version "2.7.3" 2803 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-2.7.3.tgz#6d4524e8b955f95d4f5b58851ce21dd72fb4e952" 2804 | 2805 | memory-fs@^0.4.0, memory-fs@~0.4.1: 2806 | version "0.4.1" 2807 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" 2808 | dependencies: 2809 | errno "^0.1.3" 2810 | readable-stream "^2.0.1" 2811 | 2812 | micromatch@^2.1.5: 2813 | version "2.3.11" 2814 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2815 | dependencies: 2816 | arr-diff "^2.0.0" 2817 | array-unique "^0.2.1" 2818 | braces "^1.8.2" 2819 | expand-brackets "^0.1.4" 2820 | extglob "^0.3.1" 2821 | filename-regex "^2.0.0" 2822 | is-extglob "^1.0.0" 2823 | is-glob "^2.0.1" 2824 | kind-of "^3.0.2" 2825 | normalize-path "^2.0.1" 2826 | object.omit "^2.0.0" 2827 | parse-glob "^3.0.4" 2828 | regex-cache "^0.4.2" 2829 | 2830 | miller-rabin@^4.0.0: 2831 | version "4.0.0" 2832 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.0.tgz#4a62fb1d42933c05583982f4c716f6fb9e6c6d3d" 2833 | dependencies: 2834 | bn.js "^4.0.0" 2835 | brorand "^1.0.1" 2836 | 2837 | mime-db@~1.26.0: 2838 | version "1.26.0" 2839 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.26.0.tgz#eaffcd0e4fc6935cf8134da246e2e6c35305adff" 2840 | 2841 | mime-types@^2.1.12, mime-types@~2.1.7: 2842 | version "2.1.14" 2843 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.14.tgz#f7ef7d97583fcaf3b7d282b6f8b5679dab1e94ee" 2844 | dependencies: 2845 | mime-db "~1.26.0" 2846 | 2847 | minimalistic-assert@^1.0.0: 2848 | version "1.0.0" 2849 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" 2850 | 2851 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: 2852 | version "1.0.1" 2853 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 2854 | 2855 | minimatch@0.3: 2856 | version "0.3.0" 2857 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-0.3.0.tgz#275d8edaac4f1bb3326472089e7949c8394699dd" 2858 | dependencies: 2859 | lru-cache "2" 2860 | sigmund "~1.0.0" 2861 | 2862 | "minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2: 2863 | version "3.0.3" 2864 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 2865 | dependencies: 2866 | brace-expansion "^1.0.0" 2867 | 2868 | minimatch@2.x, minimatch@^2.0.3: 2869 | version "2.0.10" 2870 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-2.0.10.tgz#8d087c39c6b38c001b97fca7ce6d0e1e80afbac7" 2871 | dependencies: 2872 | brace-expansion "^1.0.0" 2873 | 2874 | minimist@0.0.8, minimist@~0.0.1: 2875 | version "0.0.8" 2876 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2877 | 2878 | minimist@1.2.0, minimist@^1.1.0, minimist@^1.2.0: 2879 | version "1.2.0" 2880 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2881 | 2882 | mkdirp@0.3.0: 2883 | version "0.3.0" 2884 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.3.0.tgz#1bbf5ab1ba827af23575143490426455f481fe1e" 2885 | 2886 | mkdirp@0.5.1, mkdirp@0.5.x, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0, mkdirp@~0.5.1: 2887 | version "0.5.1" 2888 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2889 | dependencies: 2890 | minimist "0.0.8" 2891 | 2892 | mocha@^2.3.4: 2893 | version "2.5.3" 2894 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-2.5.3.tgz#161be5bdeb496771eb9b35745050b622b5aefc58" 2895 | dependencies: 2896 | commander "2.3.0" 2897 | debug "2.2.0" 2898 | diff "1.4.0" 2899 | escape-string-regexp "1.0.2" 2900 | glob "3.2.11" 2901 | growl "1.9.2" 2902 | jade "0.26.3" 2903 | mkdirp "0.5.1" 2904 | supports-color "1.2.0" 2905 | to-iso-string "0.0.2" 2906 | 2907 | ms@0.7.1: 2908 | version "0.7.1" 2909 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 2910 | 2911 | ms@0.7.2: 2912 | version "0.7.2" 2913 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 2914 | 2915 | mute-stream@0.0.5: 2916 | version "0.0.5" 2917 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 2918 | 2919 | nan@^2.3.0: 2920 | version "2.5.1" 2921 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.5.1.tgz#d5b01691253326a97a2bbee9e61c55d8d60351e2" 2922 | 2923 | node-libs-browser@^2.0.0: 2924 | version "2.0.0" 2925 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.0.0.tgz#a3a59ec97024985b46e958379646f96c4b616646" 2926 | dependencies: 2927 | assert "^1.1.1" 2928 | browserify-zlib "^0.1.4" 2929 | buffer "^4.3.0" 2930 | console-browserify "^1.1.0" 2931 | constants-browserify "^1.0.0" 2932 | crypto-browserify "^3.11.0" 2933 | domain-browser "^1.1.1" 2934 | events "^1.0.0" 2935 | https-browserify "0.0.1" 2936 | os-browserify "^0.2.0" 2937 | path-browserify "0.0.0" 2938 | process "^0.11.0" 2939 | punycode "^1.2.4" 2940 | querystring-es3 "^0.2.0" 2941 | readable-stream "^2.0.5" 2942 | stream-browserify "^2.0.1" 2943 | stream-http "^2.3.1" 2944 | string_decoder "^0.10.25" 2945 | timers-browserify "^2.0.2" 2946 | tty-browserify "0.0.0" 2947 | url "^0.11.0" 2948 | util "^0.10.3" 2949 | vm-browserify "0.0.4" 2950 | 2951 | node-pre-gyp@^0.6.29: 2952 | version "0.6.33" 2953 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.33.tgz#640ac55198f6a925972e0c16c4ac26a034d5ecc9" 2954 | dependencies: 2955 | mkdirp "~0.5.1" 2956 | nopt "~3.0.6" 2957 | npmlog "^4.0.1" 2958 | rc "~1.1.6" 2959 | request "^2.79.0" 2960 | rimraf "~2.5.4" 2961 | semver "~5.3.0" 2962 | tar "~2.2.1" 2963 | tar-pack "~3.3.0" 2964 | 2965 | nopt@3.x, nopt@~3.0.6: 2966 | version "3.0.6" 2967 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 2968 | dependencies: 2969 | abbrev "1" 2970 | 2971 | normalize-package-data@^2.3.2: 2972 | version "2.3.5" 2973 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.5.tgz#8d924f142960e1777e7ffe170543631cc7cb02df" 2974 | dependencies: 2975 | hosted-git-info "^2.1.4" 2976 | is-builtin-module "^1.0.0" 2977 | semver "2 || 3 || 4 || 5" 2978 | validate-npm-package-license "^3.0.1" 2979 | 2980 | normalize-path@^2.0.1: 2981 | version "2.0.1" 2982 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a" 2983 | 2984 | npmlog@^4.0.1: 2985 | version "4.0.2" 2986 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.2.tgz#d03950e0e78ce1527ba26d2a7592e9348ac3e75f" 2987 | dependencies: 2988 | are-we-there-yet "~1.1.2" 2989 | console-control-strings "~1.1.0" 2990 | gauge "~2.7.1" 2991 | set-blocking "~2.0.0" 2992 | 2993 | number-is-nan@^1.0.0: 2994 | version "1.0.1" 2995 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2996 | 2997 | oauth-sign@~0.8.1: 2998 | version "0.8.2" 2999 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 3000 | 3001 | object-assign@^2.0.0: 3002 | version "2.1.1" 3003 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-2.1.1.tgz#43c36e5d569ff8e4816c4efa8be02d26967c18aa" 3004 | 3005 | object-assign@^4.0.1, object-assign@^4.1.0: 3006 | version "4.1.1" 3007 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 3008 | 3009 | object-hash@^1.1.4: 3010 | version "1.1.5" 3011 | resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-1.1.5.tgz#bdd844e030d0861b692ca175c6cab6868ec233d7" 3012 | 3013 | object.omit@^2.0.0: 3014 | version "2.0.1" 3015 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 3016 | dependencies: 3017 | for-own "^0.1.4" 3018 | is-extendable "^0.1.1" 3019 | 3020 | once@1.x, once@^1.3.0: 3021 | version "1.4.0" 3022 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 3023 | dependencies: 3024 | wrappy "1" 3025 | 3026 | once@~1.3.3: 3027 | version "1.3.3" 3028 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 3029 | dependencies: 3030 | wrappy "1" 3031 | 3032 | onetime@^1.0.0: 3033 | version "1.1.0" 3034 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 3035 | 3036 | optimist@^0.6.1: 3037 | version "0.6.1" 3038 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 3039 | dependencies: 3040 | minimist "~0.0.1" 3041 | wordwrap "~0.0.2" 3042 | 3043 | optionator@^0.5.0: 3044 | version "0.5.0" 3045 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.5.0.tgz#b75a8995a2d417df25b6e4e3862f50aa88651368" 3046 | dependencies: 3047 | deep-is "~0.1.2" 3048 | fast-levenshtein "~1.0.0" 3049 | levn "~0.2.5" 3050 | prelude-ls "~1.1.1" 3051 | type-check "~0.3.1" 3052 | wordwrap "~0.0.2" 3053 | 3054 | optionator@^0.6.0: 3055 | version "0.6.0" 3056 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.6.0.tgz#b63ecbbf0e315fad4bc9827b45dc7ba45284fcb6" 3057 | dependencies: 3058 | deep-is "~0.1.3" 3059 | fast-levenshtein "~1.0.6" 3060 | levn "~0.2.5" 3061 | prelude-ls "~1.1.1" 3062 | type-check "~0.3.1" 3063 | wordwrap "~0.0.2" 3064 | 3065 | optionator@^0.8.1: 3066 | version "0.8.2" 3067 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 3068 | dependencies: 3069 | deep-is "~0.1.3" 3070 | fast-levenshtein "~2.0.4" 3071 | levn "~0.3.0" 3072 | prelude-ls "~1.1.2" 3073 | type-check "~0.3.2" 3074 | wordwrap "~1.0.0" 3075 | 3076 | os-browserify@^0.2.0: 3077 | version "0.2.1" 3078 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.2.1.tgz#63fc4ccee5d2d7763d26bbf8601078e6c2e0044f" 3079 | 3080 | os-homedir@^1.0.0: 3081 | version "1.0.2" 3082 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 3083 | 3084 | os-locale@^1.4.0: 3085 | version "1.4.0" 3086 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 3087 | dependencies: 3088 | lcid "^1.0.0" 3089 | 3090 | os-tmpdir@^1.0.1: 3091 | version "1.0.2" 3092 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 3093 | 3094 | output-file-sync@^1.1.0: 3095 | version "1.1.2" 3096 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 3097 | dependencies: 3098 | graceful-fs "^4.1.4" 3099 | mkdirp "^0.5.1" 3100 | object-assign "^4.1.0" 3101 | 3102 | pako@~0.2.0: 3103 | version "0.2.9" 3104 | resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" 3105 | 3106 | parse-asn1@^5.0.0: 3107 | version "5.0.0" 3108 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.0.0.tgz#35060f6d5015d37628c770f4e091a0b5a278bc23" 3109 | dependencies: 3110 | asn1.js "^4.0.0" 3111 | browserify-aes "^1.0.0" 3112 | create-hash "^1.1.0" 3113 | evp_bytestokey "^1.0.0" 3114 | pbkdf2 "^3.0.3" 3115 | 3116 | parse-glob@^3.0.4: 3117 | version "3.0.4" 3118 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 3119 | dependencies: 3120 | glob-base "^0.3.0" 3121 | is-dotfile "^1.0.0" 3122 | is-extglob "^1.0.0" 3123 | is-glob "^2.0.0" 3124 | 3125 | parse-json@^2.2.0: 3126 | version "2.2.0" 3127 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 3128 | dependencies: 3129 | error-ex "^1.2.0" 3130 | 3131 | path-browserify@0.0.0: 3132 | version "0.0.0" 3133 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" 3134 | 3135 | path-exists@^1.0.0: 3136 | version "1.0.0" 3137 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-1.0.0.tgz#d5a8998eb71ef37a74c34eb0d9eba6e878eea081" 3138 | 3139 | path-exists@^2.0.0: 3140 | version "2.1.0" 3141 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 3142 | dependencies: 3143 | pinkie-promise "^2.0.0" 3144 | 3145 | path-is-absolute@^1.0.0: 3146 | version "1.0.1" 3147 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 3148 | 3149 | path-is-inside@^1.0.1: 3150 | version "1.0.2" 3151 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 3152 | 3153 | path-type@^1.0.0: 3154 | version "1.1.0" 3155 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 3156 | dependencies: 3157 | graceful-fs "^4.1.2" 3158 | pify "^2.0.0" 3159 | pinkie-promise "^2.0.0" 3160 | 3161 | pbkdf2@^3.0.3: 3162 | version "3.0.9" 3163 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.9.tgz#f2c4b25a600058b3c3773c086c37dbbee1ffe693" 3164 | dependencies: 3165 | create-hmac "^1.1.2" 3166 | 3167 | pify@^2.0.0: 3168 | version "2.3.0" 3169 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 3170 | 3171 | pinkie-promise@^2.0.0: 3172 | version "2.0.1" 3173 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 3174 | dependencies: 3175 | pinkie "^2.0.0" 3176 | 3177 | pinkie@^2.0.0: 3178 | version "2.0.4" 3179 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 3180 | 3181 | pkg-dir@^1.0.0: 3182 | version "1.0.0" 3183 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 3184 | dependencies: 3185 | find-up "^1.0.0" 3186 | 3187 | plur@^2.1.2: 3188 | version "2.1.2" 3189 | resolved "https://registry.yarnpkg.com/plur/-/plur-2.1.2.tgz#7482452c1a0f508e3e344eaec312c91c29dc655a" 3190 | dependencies: 3191 | irregular-plurals "^1.0.0" 3192 | 3193 | prelude-ls@~1.1.0, prelude-ls@~1.1.1, prelude-ls@~1.1.2: 3194 | version "1.1.2" 3195 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 3196 | 3197 | preserve@^0.2.0: 3198 | version "0.2.0" 3199 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 3200 | 3201 | private@^0.1.6, private@~0.1.5: 3202 | version "0.1.7" 3203 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 3204 | 3205 | process-nextick-args@~1.0.6: 3206 | version "1.0.7" 3207 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 3208 | 3209 | process@^0.11.0: 3210 | version "0.11.9" 3211 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.9.tgz#7bd5ad21aa6253e7da8682264f1e11d11c0318c1" 3212 | 3213 | promise@^7.0.3: 3214 | version "7.1.1" 3215 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.1.1.tgz#489654c692616b8aa55b0724fa809bb7db49c5bf" 3216 | dependencies: 3217 | asap "~2.0.3" 3218 | 3219 | prr@~0.0.0: 3220 | version "0.0.0" 3221 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 3222 | 3223 | public-encrypt@^4.0.0: 3224 | version "4.0.0" 3225 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" 3226 | dependencies: 3227 | bn.js "^4.1.0" 3228 | browserify-rsa "^4.0.0" 3229 | create-hash "^1.1.0" 3230 | parse-asn1 "^5.0.0" 3231 | randombytes "^2.0.1" 3232 | 3233 | punycode@1.3.2: 3234 | version "1.3.2" 3235 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 3236 | 3237 | punycode@^1.2.4, punycode@^1.4.1: 3238 | version "1.4.1" 3239 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 3240 | 3241 | q@^1.1.2: 3242 | version "1.4.1" 3243 | resolved "https://registry.yarnpkg.com/q/-/q-1.4.1.tgz#55705bcd93c5f3673530c2c2cbc0c2b3addc286e" 3244 | 3245 | qs@~6.3.0: 3246 | version "6.3.1" 3247 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.1.tgz#918c0b3bcd36679772baf135b1acb4c1651ed79d" 3248 | 3249 | querystring-es3@^0.2.0: 3250 | version "0.2.1" 3251 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 3252 | 3253 | querystring@0.2.0: 3254 | version "0.2.0" 3255 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 3256 | 3257 | randomatic@^1.1.3: 3258 | version "1.1.6" 3259 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 3260 | dependencies: 3261 | is-number "^2.0.2" 3262 | kind-of "^3.0.2" 3263 | 3264 | randombytes@^2.0.0, randombytes@^2.0.1: 3265 | version "2.0.3" 3266 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.3.tgz#674c99760901c3c4112771a31e521dc349cc09ec" 3267 | 3268 | rc@~1.1.6: 3269 | version "1.1.7" 3270 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.1.7.tgz#c5ea564bb07aff9fd3a5b32e906c1d3a65940fea" 3271 | dependencies: 3272 | deep-extend "~0.4.0" 3273 | ini "~1.3.0" 3274 | minimist "^1.2.0" 3275 | strip-json-comments "~2.0.1" 3276 | 3277 | react-dom@^0.14.6: 3278 | version "0.14.8" 3279 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-0.14.8.tgz#0f1c547514263f771bd31814a739e5306575069e" 3280 | 3281 | react@^0.14.6: 3282 | version "0.14.8" 3283 | resolved "https://registry.yarnpkg.com/react/-/react-0.14.8.tgz#078dfa454d4745bcc54a9726311c2bf272c23684" 3284 | dependencies: 3285 | envify "^3.0.0" 3286 | fbjs "^0.6.1" 3287 | 3288 | read-pkg-up@^1.0.1: 3289 | version "1.0.1" 3290 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 3291 | dependencies: 3292 | find-up "^1.0.0" 3293 | read-pkg "^1.0.0" 3294 | 3295 | read-pkg@^1.0.0: 3296 | version "1.1.0" 3297 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 3298 | dependencies: 3299 | load-json-file "^1.0.0" 3300 | normalize-package-data "^2.3.2" 3301 | path-type "^1.0.0" 3302 | 3303 | "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.1.0, readable-stream@^2.2.2: 3304 | version "2.2.3" 3305 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.3.tgz#9cf49463985df016c8ae8813097a9293a9b33729" 3306 | dependencies: 3307 | buffer-shims "^1.0.0" 3308 | core-util-is "~1.0.0" 3309 | inherits "~2.0.1" 3310 | isarray "~1.0.0" 3311 | process-nextick-args "~1.0.6" 3312 | string_decoder "~0.10.x" 3313 | util-deprecate "~1.0.1" 3314 | 3315 | readable-stream@~2.1.4: 3316 | version "2.1.5" 3317 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0" 3318 | dependencies: 3319 | buffer-shims "^1.0.0" 3320 | core-util-is "~1.0.0" 3321 | inherits "~2.0.1" 3322 | isarray "~1.0.0" 3323 | process-nextick-args "~1.0.6" 3324 | string_decoder "~0.10.x" 3325 | util-deprecate "~1.0.1" 3326 | 3327 | readdirp@^2.0.0: 3328 | version "2.1.0" 3329 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 3330 | dependencies: 3331 | graceful-fs "^4.1.2" 3332 | minimatch "^3.0.2" 3333 | readable-stream "^2.0.2" 3334 | set-immediate-shim "^1.0.1" 3335 | 3336 | readline2@^1.0.1: 3337 | version "1.0.1" 3338 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 3339 | dependencies: 3340 | code-point-at "^1.0.0" 3341 | is-fullwidth-code-point "^1.0.0" 3342 | mute-stream "0.0.5" 3343 | 3344 | recast@0.10.33, recast@^0.10.10: 3345 | version "0.10.33" 3346 | resolved "https://registry.yarnpkg.com/recast/-/recast-0.10.33.tgz#942808f7aa016f1fa7142c461d7e5704aaa8d697" 3347 | dependencies: 3348 | ast-types "0.8.12" 3349 | esprima-fb "~15001.1001.0-dev-harmony-fb" 3350 | private "~0.1.5" 3351 | source-map "~0.5.0" 3352 | 3353 | recast@^0.11.17: 3354 | version "0.11.22" 3355 | resolved "https://registry.yarnpkg.com/recast/-/recast-0.11.22.tgz#dedeb18fb001a2bbc6ac34475fda53dfe3d47dfa" 3356 | dependencies: 3357 | ast-types "0.9.5" 3358 | esprima "~3.1.0" 3359 | private "~0.1.5" 3360 | source-map "~0.5.0" 3361 | 3362 | regenerate@^1.2.1: 3363 | version "1.3.2" 3364 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 3365 | 3366 | regenerator-runtime@^0.10.0: 3367 | version "0.10.3" 3368 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.3.tgz#8c4367a904b51ea62a908ac310bf99ff90a82a3e" 3369 | 3370 | regenerator-transform@0.9.8: 3371 | version "0.9.8" 3372 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.8.tgz#0f88bb2bc03932ddb7b6b7312e68078f01026d6c" 3373 | dependencies: 3374 | babel-runtime "^6.18.0" 3375 | babel-types "^6.19.0" 3376 | private "^0.1.6" 3377 | 3378 | regenerator@0.8.40: 3379 | version "0.8.40" 3380 | resolved "https://registry.yarnpkg.com/regenerator/-/regenerator-0.8.40.tgz#a0e457c58ebdbae575c9f8cd75127e93756435d8" 3381 | dependencies: 3382 | commoner "~0.10.3" 3383 | defs "~1.1.0" 3384 | esprima-fb "~15001.1001.0-dev-harmony-fb" 3385 | private "~0.1.5" 3386 | recast "0.10.33" 3387 | through "~2.3.8" 3388 | 3389 | regex-cache@^0.4.2: 3390 | version "0.4.3" 3391 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 3392 | dependencies: 3393 | is-equal-shallow "^0.1.3" 3394 | is-primitive "^2.0.0" 3395 | 3396 | regexpu-core@^2.0.0: 3397 | version "2.0.0" 3398 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 3399 | dependencies: 3400 | regenerate "^1.2.1" 3401 | regjsgen "^0.2.0" 3402 | regjsparser "^0.1.4" 3403 | 3404 | regexpu@^1.3.0: 3405 | version "1.3.0" 3406 | resolved "https://registry.yarnpkg.com/regexpu/-/regexpu-1.3.0.tgz#e534dc991a9e5846050c98de6d7dd4a55c9ea16d" 3407 | dependencies: 3408 | esprima "^2.6.0" 3409 | recast "^0.10.10" 3410 | regenerate "^1.2.1" 3411 | regjsgen "^0.2.0" 3412 | regjsparser "^0.1.4" 3413 | 3414 | regjsgen@^0.2.0: 3415 | version "0.2.0" 3416 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 3417 | 3418 | regjsparser@^0.1.4: 3419 | version "0.1.5" 3420 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 3421 | dependencies: 3422 | jsesc "~0.5.0" 3423 | 3424 | repeat-element@^1.1.2: 3425 | version "1.1.2" 3426 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 3427 | 3428 | repeat-string@^1.5.2: 3429 | version "1.6.1" 3430 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3431 | 3432 | repeating@^1.1.0, repeating@^1.1.2: 3433 | version "1.1.3" 3434 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-1.1.3.tgz#3d4114218877537494f97f77f9785fab810fa4ac" 3435 | dependencies: 3436 | is-finite "^1.0.0" 3437 | 3438 | repeating@^2.0.0: 3439 | version "2.0.1" 3440 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 3441 | dependencies: 3442 | is-finite "^1.0.0" 3443 | 3444 | request@2.79.0, request@^2.79.0: 3445 | version "2.79.0" 3446 | resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" 3447 | dependencies: 3448 | aws-sign2 "~0.6.0" 3449 | aws4 "^1.2.1" 3450 | caseless "~0.11.0" 3451 | combined-stream "~1.0.5" 3452 | extend "~3.0.0" 3453 | forever-agent "~0.6.1" 3454 | form-data "~2.1.1" 3455 | har-validator "~2.0.6" 3456 | hawk "~3.1.3" 3457 | http-signature "~1.1.0" 3458 | is-typedarray "~1.0.0" 3459 | isstream "~0.1.2" 3460 | json-stringify-safe "~5.0.1" 3461 | mime-types "~2.1.7" 3462 | oauth-sign "~0.8.1" 3463 | qs "~6.3.0" 3464 | stringstream "~0.0.4" 3465 | tough-cookie "~2.3.0" 3466 | tunnel-agent "~0.4.1" 3467 | uuid "^3.0.0" 3468 | 3469 | require-directory@^2.1.1: 3470 | version "2.1.1" 3471 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3472 | 3473 | require-main-filename@^1.0.1: 3474 | version "1.0.1" 3475 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3476 | 3477 | resolve@1.1.x, resolve@^1.1.6: 3478 | version "1.1.7" 3479 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 3480 | 3481 | restore-cursor@^1.0.1: 3482 | version "1.0.1" 3483 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 3484 | dependencies: 3485 | exit-hook "^1.0.0" 3486 | onetime "^1.0.0" 3487 | 3488 | right-align@^0.1.1: 3489 | version "0.1.3" 3490 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3491 | dependencies: 3492 | align-text "^0.1.1" 3493 | 3494 | rimraf@2, rimraf@^2.2.8, rimraf@~2.5.1, rimraf@~2.5.4: 3495 | version "2.5.4" 3496 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" 3497 | dependencies: 3498 | glob "^7.0.5" 3499 | 3500 | ripemd160@^1.0.0: 3501 | version "1.0.1" 3502 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-1.0.1.tgz#93a4bbd4942bc574b69a8fa57c71de10ecca7d6e" 3503 | 3504 | run-async@^0.1.0: 3505 | version "0.1.0" 3506 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 3507 | dependencies: 3508 | once "^1.3.0" 3509 | 3510 | rx-lite@^3.1.2: 3511 | version "3.1.2" 3512 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 3513 | 3514 | samsam@1.1.2, samsam@~1.1: 3515 | version "1.1.2" 3516 | resolved "https://registry.yarnpkg.com/samsam/-/samsam-1.1.2.tgz#bec11fdc83a9fda063401210e40176c3024d1567" 3517 | 3518 | "semver@2 || 3 || 4 || 5", semver@~5.3.0: 3519 | version "5.3.0" 3520 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 3521 | 3522 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3523 | version "2.0.0" 3524 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3525 | 3526 | set-immediate-shim@^1.0.1: 3527 | version "1.0.1" 3528 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3529 | 3530 | setimmediate@^1.0.4: 3531 | version "1.0.5" 3532 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 3533 | 3534 | sha.js@^2.3.6: 3535 | version "2.4.8" 3536 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.8.tgz#37068c2c476b6baf402d14a49c67f597921f634f" 3537 | dependencies: 3538 | inherits "^2.0.1" 3539 | 3540 | shebang-regex@^1.0.0: 3541 | version "1.0.0" 3542 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3543 | 3544 | shelljs@^0.5.3: 3545 | version "0.5.3" 3546 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.5.3.tgz#c54982b996c76ef0c1e6b59fbdc5825f5b713113" 3547 | 3548 | sigmund@~1.0.0: 3549 | version "1.0.1" 3550 | resolved "https://registry.yarnpkg.com/sigmund/-/sigmund-1.0.1.tgz#3ff21f198cad2175f9f3b781853fd94d0d19b590" 3551 | 3552 | signal-exit@^3.0.0: 3553 | version "3.0.2" 3554 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3555 | 3556 | simple-fmt@~0.1.0: 3557 | version "0.1.0" 3558 | resolved "https://registry.yarnpkg.com/simple-fmt/-/simple-fmt-0.1.0.tgz#191bf566a59e6530482cb25ab53b4a8dc85c3a6b" 3559 | 3560 | simple-is@~0.2.0: 3561 | version "0.2.0" 3562 | resolved "https://registry.yarnpkg.com/simple-is/-/simple-is-0.2.0.tgz#2abb75aade39deb5cc815ce10e6191164850baf0" 3563 | 3564 | sinon@^1.17.7: 3565 | version "1.17.7" 3566 | resolved "https://registry.yarnpkg.com/sinon/-/sinon-1.17.7.tgz#4542a4f49ba0c45c05eb2e9dd9d203e2b8efe0bf" 3567 | dependencies: 3568 | formatio "1.1.1" 3569 | lolex "1.3.2" 3570 | samsam "1.1.2" 3571 | util ">=0.10.3 <1" 3572 | 3573 | slash@^1.0.0: 3574 | version "1.0.0" 3575 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3576 | 3577 | sntp@1.x.x: 3578 | version "1.0.9" 3579 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3580 | dependencies: 3581 | hoek "2.x.x" 3582 | 3583 | source-list-map@~0.1.7: 3584 | version "0.1.8" 3585 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-0.1.8.tgz#c550b2ab5427f6b3f21f5afead88c4f5587b2106" 3586 | 3587 | source-map-support@^0.2.10: 3588 | version "0.2.10" 3589 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.2.10.tgz#ea5a3900a1c1cb25096a0ae8cc5c2b4b10ded3dc" 3590 | dependencies: 3591 | source-map "0.1.32" 3592 | 3593 | source-map-support@^0.4.2: 3594 | version "0.4.11" 3595 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.11.tgz#647f939978b38535909530885303daf23279f322" 3596 | dependencies: 3597 | source-map "^0.5.3" 3598 | 3599 | source-map@0.1.32: 3600 | version "0.1.32" 3601 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.1.32.tgz#c8b6c167797ba4740a8ea33252162ff08591b266" 3602 | dependencies: 3603 | amdefine ">=0.0.4" 3604 | 3605 | source-map@0.4.x, source-map@^0.4.2, source-map@^0.4.4: 3606 | version "0.4.4" 3607 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 3608 | dependencies: 3609 | amdefine ">=0.0.4" 3610 | 3611 | source-map@^0.5.0, source-map@^0.5.3, source-map@~0.5.0, source-map@~0.5.1, source-map@~0.5.3: 3612 | version "0.5.6" 3613 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 3614 | 3615 | source-map@~0.2.0: 3616 | version "0.2.0" 3617 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 3618 | dependencies: 3619 | amdefine ">=0.0.4" 3620 | 3621 | spdx-correct@~1.0.0: 3622 | version "1.0.2" 3623 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3624 | dependencies: 3625 | spdx-license-ids "^1.0.2" 3626 | 3627 | spdx-expression-parse@~1.0.0: 3628 | version "1.0.4" 3629 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3630 | 3631 | spdx-license-ids@^1.0.2: 3632 | version "1.2.2" 3633 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3634 | 3635 | sprintf-js@~1.0.2: 3636 | version "1.0.3" 3637 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3638 | 3639 | sshpk@^1.7.0: 3640 | version "1.10.2" 3641 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.10.2.tgz#d5a804ce22695515638e798dbe23273de070a5fa" 3642 | dependencies: 3643 | asn1 "~0.2.3" 3644 | assert-plus "^1.0.0" 3645 | dashdash "^1.12.0" 3646 | getpass "^0.1.1" 3647 | optionalDependencies: 3648 | bcrypt-pbkdf "^1.0.0" 3649 | ecc-jsbn "~0.1.1" 3650 | jodid25519 "^1.0.0" 3651 | jsbn "~0.1.0" 3652 | tweetnacl "~0.14.0" 3653 | 3654 | stable@~0.1.3: 3655 | version "0.1.5" 3656 | resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.5.tgz#08232f60c732e9890784b5bed0734f8b32a887b9" 3657 | 3658 | stream-browserify@^2.0.1: 3659 | version "2.0.1" 3660 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" 3661 | dependencies: 3662 | inherits "~2.0.1" 3663 | readable-stream "^2.0.2" 3664 | 3665 | stream-http@^2.3.1: 3666 | version "2.6.3" 3667 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.6.3.tgz#4c3ddbf9635968ea2cfd4e48d43de5def2625ac3" 3668 | dependencies: 3669 | builtin-status-codes "^3.0.0" 3670 | inherits "^2.0.1" 3671 | readable-stream "^2.1.0" 3672 | to-arraybuffer "^1.0.0" 3673 | xtend "^4.0.0" 3674 | 3675 | string-width@^1.0.1, string-width@^1.0.2: 3676 | version "1.0.2" 3677 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3678 | dependencies: 3679 | code-point-at "^1.0.0" 3680 | is-fullwidth-code-point "^1.0.0" 3681 | strip-ansi "^3.0.0" 3682 | 3683 | string-width@^2.0.0: 3684 | version "2.0.0" 3685 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 3686 | dependencies: 3687 | is-fullwidth-code-point "^2.0.0" 3688 | strip-ansi "^3.0.0" 3689 | 3690 | string_decoder@^0.10.25, string_decoder@~0.10.x: 3691 | version "0.10.31" 3692 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 3693 | 3694 | stringmap@~0.2.2: 3695 | version "0.2.2" 3696 | resolved "https://registry.yarnpkg.com/stringmap/-/stringmap-0.2.2.tgz#556c137b258f942b8776f5b2ef582aa069d7d1b1" 3697 | 3698 | stringset@~0.2.1: 3699 | version "0.2.1" 3700 | resolved "https://registry.yarnpkg.com/stringset/-/stringset-0.2.1.tgz#ef259c4e349344377fcd1c913dd2e848c9c042b5" 3701 | 3702 | stringstream@~0.0.4: 3703 | version "0.0.5" 3704 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3705 | 3706 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3707 | version "3.0.1" 3708 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3709 | dependencies: 3710 | ansi-regex "^2.0.0" 3711 | 3712 | strip-bom@^2.0.0: 3713 | version "2.0.0" 3714 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3715 | dependencies: 3716 | is-utf8 "^0.2.0" 3717 | 3718 | strip-json-comments@~1.0.1: 3719 | version "1.0.4" 3720 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91" 3721 | 3722 | strip-json-comments@~2.0.1: 3723 | version "2.0.1" 3724 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3725 | 3726 | supports-color@1.2.0: 3727 | version "1.2.0" 3728 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-1.2.0.tgz#ff1ed1e61169d06b3cf2d588e188b18d8847e17e" 3729 | 3730 | supports-color@3.1.x, supports-color@^3.1.0: 3731 | version "3.1.2" 3732 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5" 3733 | dependencies: 3734 | has-flag "^1.0.0" 3735 | 3736 | supports-color@^2.0.0: 3737 | version "2.0.0" 3738 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3739 | 3740 | tapable@^0.2.5, tapable@~0.2.5: 3741 | version "0.2.6" 3742 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.6.tgz#206be8e188860b514425375e6f1ae89bfb01fd8d" 3743 | 3744 | tar-pack@~3.3.0: 3745 | version "3.3.0" 3746 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.3.0.tgz#30931816418f55afc4d21775afdd6720cee45dae" 3747 | dependencies: 3748 | debug "~2.2.0" 3749 | fstream "~1.0.10" 3750 | fstream-ignore "~1.0.5" 3751 | once "~1.3.3" 3752 | readable-stream "~2.1.4" 3753 | rimraf "~2.5.1" 3754 | tar "~2.2.1" 3755 | uid-number "~0.0.6" 3756 | 3757 | tar@~2.2.1: 3758 | version "2.2.1" 3759 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3760 | dependencies: 3761 | block-stream "*" 3762 | fstream "^1.0.2" 3763 | inherits "2" 3764 | 3765 | text-table@~0.2.0: 3766 | version "0.2.0" 3767 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3768 | 3769 | through@^2.3.6, through@~2.3.4, through@~2.3.8: 3770 | version "2.3.8" 3771 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3772 | 3773 | timers-browserify@^2.0.2: 3774 | version "2.0.2" 3775 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.2.tgz#ab4883cf597dcd50af211349a00fbca56ac86b86" 3776 | dependencies: 3777 | setimmediate "^1.0.4" 3778 | 3779 | to-arraybuffer@^1.0.0: 3780 | version "1.0.1" 3781 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" 3782 | 3783 | to-fast-properties@^1.0.0, to-fast-properties@^1.0.1: 3784 | version "1.0.2" 3785 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 3786 | 3787 | to-iso-string@0.0.2: 3788 | version "0.0.2" 3789 | resolved "https://registry.yarnpkg.com/to-iso-string/-/to-iso-string-0.0.2.tgz#4dc19e664dfccbe25bd8db508b00c6da158255d1" 3790 | 3791 | tough-cookie@~2.3.0: 3792 | version "2.3.2" 3793 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 3794 | dependencies: 3795 | punycode "^1.4.1" 3796 | 3797 | trim-right@^1.0.0, trim-right@^1.0.1: 3798 | version "1.0.1" 3799 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3800 | 3801 | try-resolve@^1.0.0: 3802 | version "1.0.1" 3803 | resolved "https://registry.yarnpkg.com/try-resolve/-/try-resolve-1.0.1.tgz#cfde6fabd72d63e5797cfaab873abbe8e700e912" 3804 | 3805 | tryit@^1.0.1: 3806 | version "1.0.3" 3807 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 3808 | 3809 | tryor@~0.1.2: 3810 | version "0.1.2" 3811 | resolved "https://registry.yarnpkg.com/tryor/-/tryor-0.1.2.tgz#8145e4ca7caff40acde3ccf946e8b8bb75b4172b" 3812 | 3813 | tty-browserify@0.0.0: 3814 | version "0.0.0" 3815 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 3816 | 3817 | tunnel-agent@~0.4.1: 3818 | version "0.4.3" 3819 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 3820 | 3821 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3822 | version "0.14.5" 3823 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3824 | 3825 | type-check@~0.3.1, type-check@~0.3.2: 3826 | version "0.3.2" 3827 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3828 | dependencies: 3829 | prelude-ls "~1.1.2" 3830 | 3831 | type-detect@0.1.1: 3832 | version "0.1.1" 3833 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-0.1.1.tgz#0ba5ec2a885640e470ea4e8505971900dac58822" 3834 | 3835 | type-detect@^1.0.0: 3836 | version "1.0.0" 3837 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-1.0.0.tgz#762217cc06db258ec48908a1298e8b95121e8ea2" 3838 | 3839 | typedarray@^0.0.6: 3840 | version "0.0.6" 3841 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3842 | 3843 | ua-parser-js@^0.7.9: 3844 | version "0.7.12" 3845 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.12.tgz#04c81a99bdd5dc52263ea29d24c6bf8d4818a4bb" 3846 | 3847 | uglify-js@^2.6, uglify-js@^2.7.5: 3848 | version "2.7.5" 3849 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.7.5.tgz#4612c0c7baaee2ba7c487de4904ae122079f2ca8" 3850 | dependencies: 3851 | async "~0.2.6" 3852 | source-map "~0.5.1" 3853 | uglify-to-browserify "~1.0.0" 3854 | yargs "~3.10.0" 3855 | 3856 | uglify-to-browserify@~1.0.0: 3857 | version "1.0.2" 3858 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3859 | 3860 | uid-number@~0.0.6: 3861 | version "0.0.6" 3862 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3863 | 3864 | url@^0.11.0: 3865 | version "0.11.0" 3866 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 3867 | dependencies: 3868 | punycode "1.3.2" 3869 | querystring "0.2.0" 3870 | 3871 | user-home@^1.1.1: 3872 | version "1.1.1" 3873 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 3874 | 3875 | user-home@^2.0.0: 3876 | version "2.0.0" 3877 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 3878 | dependencies: 3879 | os-homedir "^1.0.0" 3880 | 3881 | util-deprecate@~1.0.1: 3882 | version "1.0.2" 3883 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3884 | 3885 | util@0.10.3, "util@>=0.10.3 <1", util@^0.10.3: 3886 | version "0.10.3" 3887 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 3888 | dependencies: 3889 | inherits "2.0.1" 3890 | 3891 | uuid@^3.0.0: 3892 | version "3.0.1" 3893 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 3894 | 3895 | v8flags@^2.0.10: 3896 | version "2.0.11" 3897 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.0.11.tgz#bca8f30f0d6d60612cc2c00641e6962d42ae6881" 3898 | dependencies: 3899 | user-home "^1.1.1" 3900 | 3901 | validate-npm-package-license@^3.0.1: 3902 | version "3.0.1" 3903 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3904 | dependencies: 3905 | spdx-correct "~1.0.0" 3906 | spdx-expression-parse "~1.0.0" 3907 | 3908 | verror@1.3.6: 3909 | version "1.3.6" 3910 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 3911 | dependencies: 3912 | extsprintf "1.0.2" 3913 | 3914 | vm-browserify@0.0.4: 3915 | version "0.0.4" 3916 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" 3917 | dependencies: 3918 | indexof "0.0.1" 3919 | 3920 | watchpack@^1.2.0: 3921 | version "1.3.1" 3922 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.3.1.tgz#7d8693907b28ce6013e7f3610aa2a1acf07dad87" 3923 | dependencies: 3924 | async "^2.1.2" 3925 | chokidar "^1.4.3" 3926 | graceful-fs "^4.1.2" 3927 | 3928 | webpack-sources@^0.1.4: 3929 | version "0.1.4" 3930 | resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-0.1.4.tgz#ccc2c817e08e5fa393239412690bb481821393cd" 3931 | dependencies: 3932 | source-list-map "~0.1.7" 3933 | source-map "~0.5.3" 3934 | 3935 | webpack@^2.2.1: 3936 | version "2.2.1" 3937 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-2.2.1.tgz#7bb1d72ae2087dd1a4af526afec15eed17dda475" 3938 | dependencies: 3939 | acorn "^4.0.4" 3940 | acorn-dynamic-import "^2.0.0" 3941 | ajv "^4.7.0" 3942 | ajv-keywords "^1.1.1" 3943 | async "^2.1.2" 3944 | enhanced-resolve "^3.0.0" 3945 | interpret "^1.0.0" 3946 | json-loader "^0.5.4" 3947 | loader-runner "^2.3.0" 3948 | loader-utils "^0.2.16" 3949 | memory-fs "~0.4.1" 3950 | mkdirp "~0.5.0" 3951 | node-libs-browser "^2.0.0" 3952 | source-map "^0.5.3" 3953 | supports-color "^3.1.0" 3954 | tapable "~0.2.5" 3955 | uglify-js "^2.7.5" 3956 | watchpack "^1.2.0" 3957 | webpack-sources "^0.1.4" 3958 | yargs "^6.0.0" 3959 | 3960 | whatwg-fetch@^0.9.0: 3961 | version "0.9.0" 3962 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-0.9.0.tgz#0e3684c6cb9995b43efc9df03e4c365d95fd9cc0" 3963 | 3964 | which-module@^1.0.0: 3965 | version "1.0.0" 3966 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 3967 | 3968 | which@1.2.x, which@^1.1.1: 3969 | version "1.2.12" 3970 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.12.tgz#de67b5e450269f194909ef23ece4ebe416fa1192" 3971 | dependencies: 3972 | isexe "^1.1.1" 3973 | 3974 | wide-align@^1.1.0: 3975 | version "1.1.0" 3976 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 3977 | dependencies: 3978 | string-width "^1.0.1" 3979 | 3980 | window-size@0.1.0: 3981 | version "0.1.0" 3982 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3983 | 3984 | window-size@^0.1.2: 3985 | version "0.1.4" 3986 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.4.tgz#f8e1aa1ee5a53ec5bf151ffa09742a6ad7697876" 3987 | 3988 | wordwrap@0.0.2: 3989 | version "0.0.2" 3990 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3991 | 3992 | wordwrap@1.0.x, wordwrap@^1.0.0, wordwrap@~1.0.0: 3993 | version "1.0.0" 3994 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3995 | 3996 | wordwrap@~0.0.2: 3997 | version "0.0.3" 3998 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3999 | 4000 | wrap-ansi@^2.0.0: 4001 | version "2.1.0" 4002 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 4003 | dependencies: 4004 | string-width "^1.0.1" 4005 | strip-ansi "^3.0.1" 4006 | 4007 | wrappy@1: 4008 | version "1.0.2" 4009 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 4010 | 4011 | write@^0.2.1: 4012 | version "0.2.1" 4013 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 4014 | dependencies: 4015 | mkdirp "^0.5.1" 4016 | 4017 | xml-escape@~1.0.0: 4018 | version "1.0.0" 4019 | resolved "https://registry.yarnpkg.com/xml-escape/-/xml-escape-1.0.0.tgz#00963d697b2adf0c185c4e04e73174ba9b288eb2" 4020 | 4021 | xtend@^4.0.0: 4022 | version "4.0.1" 4023 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 4024 | 4025 | y18n@^3.2.0, y18n@^3.2.1: 4026 | version "3.2.1" 4027 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 4028 | 4029 | yargs-parser@^4.2.0: 4030 | version "4.2.1" 4031 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" 4032 | dependencies: 4033 | camelcase "^3.0.0" 4034 | 4035 | yargs@^6.0.0: 4036 | version "6.6.0" 4037 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" 4038 | dependencies: 4039 | camelcase "^3.0.0" 4040 | cliui "^3.2.0" 4041 | decamelize "^1.1.1" 4042 | get-caller-file "^1.0.1" 4043 | os-locale "^1.4.0" 4044 | read-pkg-up "^1.0.1" 4045 | require-directory "^2.1.1" 4046 | require-main-filename "^1.0.1" 4047 | set-blocking "^2.0.0" 4048 | string-width "^1.0.2" 4049 | which-module "^1.0.0" 4050 | y18n "^3.2.1" 4051 | yargs-parser "^4.2.0" 4052 | 4053 | yargs@~3.10.0: 4054 | version "3.10.0" 4055 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 4056 | dependencies: 4057 | camelcase "^1.0.2" 4058 | cliui "^2.1.0" 4059 | decamelize "^1.0.0" 4060 | window-size "0.1.0" 4061 | 4062 | yargs@~3.27.0: 4063 | version "3.27.0" 4064 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.27.0.tgz#21205469316e939131d59f2da0c6d7f98221ea40" 4065 | dependencies: 4066 | camelcase "^1.2.1" 4067 | cliui "^2.1.0" 4068 | decamelize "^1.0.0" 4069 | os-locale "^1.4.0" 4070 | window-size "^0.1.2" 4071 | y18n "^3.2.0" 4072 | --------------------------------------------------------------------------------