├── .gitignore ├── test ├── README.md ├── webpack.config.js ├── index.html ├── package.json └── index.js ├── .eslintrc.json ├── package.json ├── index.js ├── README.md ├── dist ├── index.js.map └── index.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | node_modules 3 | build/** 4 | -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- 1 | Minimal example for [this issue](https://github.com/stutrek/scrollmonitor-react/issues/2). 2 | 3 | `npm i && npm start` 4 | 5 | `npm start` will fail. Change `main: index.js` in `node_modules/scrollmonitor-react/package.json` 6 | to point to `dist/index.js`. 7 | 8 | Build will succeed but still be broken. 9 | -------------------------------------------------------------------------------- /test/webpack.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | entry: __dirname + '/index.js', 3 | output: { 4 | path: __dirname, 5 | filename: 'bundle.js' 6 | }, 7 | resolve: { 8 | extensions: ['', '.js'] 9 | }, 10 | devtool: 'sourcemap', 11 | module: { 12 | loaders: [ 13 | { 14 | test: /\.js$/, 15 | exclude: /node_modules/, 16 | loader: 'babel', 17 | query: { 18 | presets: ['react', 'latest'] 19 | } 20 | } 21 | ] 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 37 | 38 | 39 |
40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /test/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bare-bones-react-setup", 3 | "description": "a minimal react boilerplate", 4 | "version": "0.0.1", 5 | "author": { 6 | "name": "Zac Anger", 7 | "email": "zac@zacanger.com", 8 | "url": "http://zacanger.com" 9 | }, 10 | "license": "WTFPL", 11 | "main": "index.js", 12 | "scripts": { 13 | "start": "webpack-dev-server" 14 | }, 15 | "homepage": "https://github.com/zacanger/react-bits#readme", 16 | "repository": { 17 | "type": "git", 18 | "url": "https://github.com/zacanger/react-bits.git" 19 | }, 20 | "bugs": "https://github.com/zacanger/react-bits/issues", 21 | "keywords": [ 22 | "boilerplate", 23 | "react" 24 | ], 25 | "dependencies": { 26 | "react": "^15.4.1", 27 | "react-dom": "^15.4.1", 28 | "scrollmonitor-react": "../", 29 | "webpack-dev-server": "^1.16.2" 30 | }, 31 | "devDependencies": { 32 | "babel-core": "^6.20.0", 33 | "babel-loader": "^6.2.9", 34 | "babel-preset-latest": "^6.16.0", 35 | "babel-preset-react": "^6.16.0", 36 | "webpack": "^1.14.0" 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "parser": "babel-eslint", 3 | "extends": "eslint:recommended", 4 | "env": { 5 | "browser": true, 6 | "node": true, 7 | "amd": true, 8 | "commonjs": true, 9 | "es6": true 10 | }, 11 | "globals": { 12 | "PROD": false, 13 | "DEV": false 14 | }, 15 | "parserOptions": { 16 | "ecmaFeatures": { 17 | "modules": true, 18 | "jsx": true 19 | }, 20 | "ecmaVersion": 6, 21 | "sourceType": "module", 22 | "jsx": true 23 | }, 24 | "plugins": [ 25 | "react" 26 | ], 27 | "rules": { 28 | "eqeqeq": 2, 29 | "quotes": [1, "single"], 30 | "no-console": 1, 31 | "dot-location": [1, "property"], 32 | "no-caller": 2, 33 | "no-fallthrough": 2, 34 | "no-floating-decimal": 1, 35 | "no-loop-func": 0, 36 | "no-new-func": 2, 37 | "no-sequences": 1, 38 | "no-throw-literal": 2, 39 | "no-label-var": 2, 40 | "no-shadow-restricted-names": 2, 41 | "no-shadow": 2, 42 | "no-use-before-define": 2, 43 | "react/jsx-uses-vars": 2, 44 | "camelcase": 1, 45 | "no-lonely-if": 1, 46 | "no-nested-ternary": 2, 47 | "no-unneeded-ternary": 1, 48 | "no-trailing-spaces": 1, 49 | "semi": 2 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { render } from 'react-dom'; 3 | import { ScrollContainer, Watch } from 'scrollmonitor-react'; 4 | 5 | class Box extends React.Component { 6 | render () { 7 | var style = {} 8 | if (this.props.isAboveViewport) { 9 | style.backgroundColor = '#ffc'; 10 | } else if (this.props.isBelowViewport) { 11 | style.backgroundColor = '#ccf'; 12 | } 13 | 14 | return ({this.props.children}); 15 | } 16 | } 17 | 18 | class ContainerComponent extends React.Component { 19 | render () { 20 | console.log('in here', this); 21 | var boxes = (new Array(500)).join().split(',').map((a, i) => ({i})); 22 | return (
{boxes}
); 23 | } 24 | } 25 | 26 | var WatchedBox = Watch(Box); 27 | var Container = ScrollContainer(ContainerComponent); 28 | 29 | 30 | var boxes = (new Array(500)).join().split(',').map((a, i) => ({i})); 31 | console.log(boxes); 32 | const App = () => (
33 |

scrollmonitor-react test

34 |
{boxes}
35 | 36 |
); 37 | 38 | render(, document.getElementById('root')); 39 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "scrollmonitor-react", 3 | "version": "2.4.1", 4 | "description": "React HOC for the scrollMonitor", 5 | "main": "dist/index.js", 6 | "files": "dist/index.js", 7 | "scripts": { 8 | "build": "babel index.js -d dist --source-maps" 9 | }, 10 | "repository": { 11 | "type": "git", 12 | "url": "git+https://stutrek@github.com/stutrek/scrollmonitor-react.git" 13 | }, 14 | "keywords": [ 15 | "scroll", 16 | "events", 17 | "scrollmonitor", 18 | "react" 19 | ], 20 | "author": "Stu Kabakoff ", 21 | "license": "MIT", 22 | "bugs": { 23 | "url": "https://github.com/stutrek/scrollmonitor-react/issues" 24 | }, 25 | "homepage": "https://github.com/stutrek/scrollmonitor-react#readme", 26 | "dependencies": { 27 | "hoist-non-react-statics": "^3.0.1", 28 | "prop-types": "^15.5.10", 29 | "scrollmonitor": "^1.1.1" 30 | }, 31 | "devDependencies": { 32 | "babel-cli": "^6.18.0", 33 | "babel-core": "^6.2.1", 34 | "babel-preset-es2015": "^6.3.13", 35 | "babel-preset-react": "^6.3.13", 36 | "babel-preset-stage-0": "^6.16.0" 37 | }, 38 | "peerDependencies": { 39 | "react": "^15.3.2 || ^16.0.0", 40 | "react-dom": "^15.3.2 || ^16.0.0" 41 | }, 42 | "babel": { 43 | "presets": [ 44 | "es2015", 45 | "react", 46 | "stage-0" 47 | ] 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import PropTypes from 'prop-types' 4 | import hoistStatics from 'hoist-non-react-statics'; 5 | 6 | import scrollMonitor from 'scrollmonitor'; 7 | 8 | export const ScrollContainer = (Component) => { 9 | class ScrollMonitorContainer extends React.Component { 10 | constructor () { 11 | super(); 12 | 13 | this.state = { 14 | container: null 15 | }; 16 | } 17 | 18 | componentDidMount () { 19 | var el = ReactDOM.findDOMNode(this); 20 | var container = scrollMonitor.createContainer(el, this.props.offsets); 21 | this.setState({ 22 | scrollContainer: container 23 | }); 24 | } 25 | 26 | render () { 27 | return ( 31 | {this.props.children} 32 | ); 33 | } 34 | } 35 | return hoistStatics(ScrollMonitorContainer, Component); 36 | }; 37 | 38 | export const Watch = (Component) => { 39 | return class WatchedComponent extends React.Component { 40 | static propTypes = { 41 | autoStart: PropTypes.bool, 42 | initialRender: PropTypes.shape({ 43 | isInViewport: PropTypes.bool, 44 | isAboveViewport: PropTypes.bool, 45 | isBelowViewport: PropTypes.bool, 46 | isFullyInViewport: PropTypes.bool 47 | }) 48 | }; 49 | 50 | static defaultProps = { 51 | autoStart: true, 52 | initialRender: { 53 | isInViewport: false, 54 | isAboveViewport: false, 55 | isBelowViewport: false, 56 | isFullyInViewport: false 57 | } 58 | }; 59 | 60 | constructor (props) { 61 | super(props); 62 | this.state = { 63 | isInViewport: this.props.initialRender.isInViewport, 64 | isAboveViewport: this.props.initialRender.isAboveViewport, 65 | isBelowViewport: this.props.initialRender.isBelowViewport, 66 | isFullyInViewport: this.props.initialRender.isFullyInViewport 67 | }; 68 | } 69 | 70 | createWatcher (props) { 71 | var el = ReactDOM.findDOMNode(this); 72 | this.watcher = (props.scrollContainer || scrollMonitor).create(el, props.offsets); 73 | 74 | const updateState = () => { 75 | this.setState({ 76 | isInViewport: this.watcher.isInViewport, 77 | isAboveViewport: this.watcher.isAboveViewport, 78 | isBelowViewport: this.watcher.isBelowViewport, 79 | isFullyInViewport: this.watcher.isFullyInViewport 80 | }); 81 | }; 82 | 83 | this.watcher.on('stateChange', updateState); 84 | 85 | this.listeners = {}; 86 | 87 | scrollMonitor.eventTypes.forEach(type => { 88 | if (props[type]) { 89 | this.listeners[type] = () => this.props[type](this.watcher, this.props); 90 | this.watcher.on(type, this.listeners[type]); 91 | } 92 | }); 93 | 94 | updateState(); 95 | } 96 | 97 | componentDidMount () { 98 | if (this.props.autoStart) { 99 | this.startWatcher(); 100 | } 101 | 102 | if (this.props.innerRef) { 103 | this.props.innerRef(this.watcher.watchItem, this.watcher, this.props); 104 | } 105 | } 106 | 107 | componentWillReceiveProps (nextProps) { 108 | if (this.props.scrollContainer !== nextProps.scrollContainer) { 109 | this.stopWatcher(); 110 | this.startWatcher(nextProps); 111 | } 112 | 113 | if (this.props.offsets !== nextProps.offsets) { 114 | Object.assign(this.watcher.offsets, nextProps.offsets); 115 | this.watcher.update(); 116 | this.watcher.triggerCallbacks(); 117 | } 118 | 119 | scrollMonitor.eventTypes.forEach(type => { 120 | if (nextProps[type] && !this.props[type]) { 121 | this.listeners[type] = () => this.props[type](this.watcher); 122 | this.watcher.on(type, this.listeners[type]); 123 | } else if (!nextProps[type] && this.props[type]) { 124 | this.watcher.off(type, this.listeners[type]); 125 | } 126 | }); 127 | } 128 | 129 | componentWillUnmount () { 130 | this.stopWatcher(); 131 | } 132 | 133 | lockWatcher = () => { 134 | if (this.watcher) { 135 | this.watcher.lock(); 136 | } 137 | }; 138 | 139 | unlockWatcher = () => { 140 | if (this.watcher) { 141 | this.watcher.unlock(); 142 | } 143 | }; 144 | 145 | startWatcher = (props = this.props) => { 146 | if (!this.watcher) { 147 | this.createWatcher(props); 148 | } 149 | }; 150 | 151 | stopWatcher = () => { 152 | if (this.watcher) { 153 | this.watcher.destroy(); 154 | this.watcher = null; 155 | } 156 | }; 157 | 158 | render () { 159 | return ( 170 | {this.props.children} 171 | ); 172 | } 173 | } 174 | return hoistStatics(WatchedComponent, Component); 175 | }; 176 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ScrollMonitor-React 2 | 3 | This is a React component that provides an API to the [scrollMonitor](https://github.com/stutrek/scrollMonitor). It lets you create both watchers and scroll containers. 4 | 5 | There is now a [React hooks](https://github.com/stutrek/scrollmonitor-hooks) version. 6 | 7 | It adds all the boolean properties from a watcher to `this.props` and takes all the method properties as properties. 8 | 9 | Scrollmonitor-react is two higher order components. They're functions that you pass an original component and receive a new component that adds functionality to the original. 10 | 11 | ## Basic Usage 12 | 13 | ### Knowing when you're in the viewport 14 | ```javascript 15 | import React from 'react'; 16 | import { Watch } from 'scrollmonitor-react'; 17 | 18 | export default Watch(class MyComponent extends React.Component { 19 | 20 | render () { 21 | var text; 22 | if (this.props.isInViewport) { 23 | text = 'I AM in the viewport!'; 24 | } else { 25 | text = 'You will never see this because it gets replaced when it enters the viewport.' 26 | } 27 | 28 | return ( 29 | {text} 30 | {this.props.children} 31 | ); 32 | } 33 | }); 34 | ``` 35 | ### Doing something when a watched child enters or exits the viewport 36 | 37 | Provide methods with the scrollMonitor event names as props to your component. 38 | 39 | ```javascript 40 | import React from 'react'; 41 | 42 | import MyWatchedComponent from './the/example/above'; 43 | 44 | export default MyParentComponent extends React.Component { 45 | 46 | receiveStateChange (watcher) { 47 | console.log('state changed!', watcher) 48 | } 49 | 50 | render () { 51 | return () 52 | } 53 | } 54 | ``` 55 | 56 | ### Avoid starting the watcher automatically 57 | 58 | By default the watcher is started on every enhanced component, but there can be situations where you want to start the watcher later so you can set the prop `autoStart` to `false` to avoid starting the watcher automatically. 59 | 60 | ## API 61 | 62 | ### `this.props` provided to your component 63 | 64 | * `this.props.isInViewport` - true if any part of the element is visible, false if not. 65 | * `this.props.isFullyInViewport` - true if the entire element is visible [1]. 66 | * `this.props.isAboveViewport` - true if any part of the element is above the viewport. 67 | * `this.props.isBelowViewport` - true if any part of the element is below the viewport. 68 | * `this.props.lockWatcher()` - locks the watcher letting you move the element but watch the same place. See the scrollMonitor's documentation for more info. 69 | * `this.props.unlockWatcher()` - unlocks the watcher. 70 | * `this.props.startWatcher()` - starts the watcher if it's not running 71 | * `this.props.stopWatcher()` - stops the watcher if it's running 72 | 73 | _1. If the element is larger than the viewport `isFullyInViewport` is true when the element spans the entire viewport._ 74 | 75 | ### Properties you provide to the component 76 | 77 | ```javascript 78 | this.foo = el} // allows you to gain access to the DOM element, the watcher, and the child's props 81 | stateChange={(watcher, childProps) => {}} // Called when any part of the state changes. 82 | visibilityChange={(watcher, childProps) => {}} // when the element partially enters or fully exits the viewport. 83 | enterViewport={(watcher, childProps) => {}} // when the element enters the viewport. 84 | fullyEnterViewport={(watcher, childProps) => {}} // when the element is completely in the viewport [1]. 85 | exitViewport={(watcher, childProps) => {}} // when the element completely leaves the viewport. 86 | partiallyExitViewport={(watcher, childProps) => {}} // when the element goes from being fully in the viewport to only partially [2] 87 | > 88 |

Child components are fine too.

89 |
90 | ``` 91 | 92 | All callbacks receive two arguments: the watcher and the props of the child. 93 | 94 | _1. If the element is larger than the viewport `fullyEnterViewport` will be triggered when the element spans the entire viewport._ 95 | _2. If the element is larger than the viewport `partiallyExitViewport` will be triggered when the element no longer spans the entire viewport._ 96 | 97 | ## Scroll Containers 98 | 99 | The `ScrollContainer` HOC lets you create scrollMonitor Scroll Containers. It provides a scroll container on `this.props` that it must pass to its children. 100 | 101 | ```javascript 102 | import React from 'react'; 103 | import { render } from 'react-dom'; 104 | import { ScrollContainer } from 'scrollmonitor-react'; 105 | 106 | import MyWatchedContainer from 'the/example/above'; 107 | 108 | // Your container gets this.props.scrollContainer, which it must pass to the child components. 109 | var Container = ScrollContainer(ContainerComponent extends React.Component { 110 | render () { 111 | i = 1; 112 | return (
113 | {i++} 114 | {...times a million} 115 |
); 116 | } 117 | } 118 | ``` 119 | 120 | 121 | -------------------------------------------------------------------------------- /dist/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":["../index.js"],"names":["ScrollContainer","Component","ScrollMonitorContainer","state","container","el","findDOMNode","createContainer","props","offsets","setState","scrollContainer","children","Watch","isInViewport","initialRender","isAboveViewport","isBelowViewport","isFullyInViewport","watcher","create","updateState","on","listeners","eventTypes","forEach","type","autoStart","startWatcher","innerRef","watchItem","nextProps","stopWatcher","Object","assign","update","triggerCallbacks","off","lockWatcher","unlockWatcher","propTypes","bool","shape","defaultProps","lock","unlock","createWatcher","destroy","WatchedComponent"],"mappings":";;;;;;;;;;;AAAA;;;;AACA;;;;AACA;;;;AACA;;;;AAEA;;;;;;;;;;;;AAEO,IAAMA,4CAAkB,SAAlBA,eAAkB,CAACC,SAAD,EAAe;AAAA,KACvCC,sBADuC;AAAA;;AAE5C,oCAAe;AAAA;;AAAA;;AAGd,SAAKC,KAAL,GAAa;AACZC,eAAW;AADC,IAAb;AAHc;AAMd;;AAR2C;AAAA;AAAA,uCAUvB;AACpB,QAAIC,KAAK,mBAASC,WAAT,CAAqB,IAArB,CAAT;AACA,QAAIF,YAAY,wBAAcG,eAAd,CAA8BF,EAA9B,EAAkC,KAAKG,KAAL,CAAWC,OAA7C,CAAhB;AACA,SAAKC,QAAL,CAAc;AACbC,sBAAiBP;AADJ,KAAd;AAGA;AAhB2C;AAAA;AAAA,4BAkBlC;AACT,WAAQ;AAAC,cAAD;AAAA;AACP,uBAAiB,KAAKD,KAAL,CAAWQ;AADrB,QAEH,KAAKH,KAFF;AAIN,UAAKA,KAAL,CAAWI;AAJL,KAAR;AAMA;AAzB2C;;AAAA;AAAA,GACR,gBAAMX,SADE;;AA2B7C,QAAO,oCAAaC,sBAAb,EAAqCD,SAArC,CAAP;AACA,CA5BM;;AA8BA,IAAMY,wBAAQ,SAARA,KAAQ,CAACZ,SAAD,EAAe;AAAA;;AACnC;AAAA;;AAqBC,4BAAaO,KAAb,EAAoB;AAAA;;AAAA,oIACbA,KADa;;AAAA;;AAEnB,UAAKL,KAAL,GAAa;AACZW,kBAAc,OAAKN,KAAL,CAAWO,aAAX,CAAyBD,YAD3B;AAEZE,qBAAiB,OAAKR,KAAL,CAAWO,aAAX,CAAyBC,eAF9B;AAGZC,qBAAiB,OAAKT,KAAL,CAAWO,aAAX,CAAyBE,eAH9B;AAIZC,uBAAmB,OAAKV,KAAL,CAAWO,aAAX,CAAyBG;AAJhC,IAAb;AAFmB;AAQnB;;AA7BF;AAAA;AAAA,iCA+BgBV,KA/BhB,EA+BuB;AAAA;;AACrB,QAAIH,KAAK,mBAASC,WAAT,CAAqB,IAArB,CAAT;AACA,SAAKa,OAAL,GAAe,CAACX,MAAMG,eAAN,2BAAD,EAAyCS,MAAzC,CAAgDf,EAAhD,EAAoDG,MAAMC,OAA1D,CAAf;;AAEA,QAAMY,cAAc,SAAdA,WAAc,GAAM;AACzB,YAAKX,QAAL,CAAc;AACbI,oBAAc,OAAKK,OAAL,CAAaL,YADd;AAEbE,uBAAiB,OAAKG,OAAL,CAAaH,eAFjB;AAGbC,uBAAiB,OAAKE,OAAL,CAAaF,eAHjB;AAIbC,yBAAmB,OAAKC,OAAL,CAAaD;AAJnB,MAAd;AAMA,KAPD;;AASA,SAAKC,OAAL,CAAaG,EAAb,CAAgB,aAAhB,EAA+BD,WAA/B;;AAEA,SAAKE,SAAL,GAAiB,EAAjB;;AAEA,4BAAcC,UAAd,CAAyBC,OAAzB,CAAiC,gBAAQ;AACxC,SAAIjB,MAAMkB,IAAN,CAAJ,EAAiB;AAChB,aAAKH,SAAL,CAAeG,IAAf,IAAuB;AAAA,cAAM,OAAKlB,KAAL,CAAWkB,IAAX,EAAiB,OAAKP,OAAtB,EAA+B,OAAKX,KAApC,CAAN;AAAA,OAAvB;AACA,aAAKW,OAAL,CAAaG,EAAb,CAAgBI,IAAhB,EAAsB,OAAKH,SAAL,CAAeG,IAAf,CAAtB;AACA;AACD,KALD;;AAOAL;AACA;AAxDF;AAAA;AAAA,uCA0DsB;AACpB,QAAI,KAAKb,KAAL,CAAWmB,SAAf,EAA0B;AACzB,UAAKC,YAAL;AACA;;AAED,QAAI,KAAKpB,KAAL,CAAWqB,QAAf,EAAyB;AACxB,UAAKrB,KAAL,CAAWqB,QAAX,CAAoB,KAAKV,OAAL,CAAaW,SAAjC,EAA4C,KAAKX,OAAjD,EAA0D,KAAKX,KAA/D;AACA;AACD;AAlEF;AAAA;AAAA,6CAoE4BuB,SApE5B,EAoEuC;AAAA;;AACrC,QAAI,KAAKvB,KAAL,CAAWG,eAAX,KAA+BoB,UAAUpB,eAA7C,EAA8D;AAC7D,UAAKqB,WAAL;AACA,UAAKJ,YAAL,CAAkBG,SAAlB;AACA;;AAED,QAAI,KAAKvB,KAAL,CAAWC,OAAX,KAAuBsB,UAAUtB,OAArC,EAA8C;AAC7CwB,YAAOC,MAAP,CAAc,KAAKf,OAAL,CAAaV,OAA3B,EAAoCsB,UAAUtB,OAA9C;AACA,UAAKU,OAAL,CAAagB,MAAb;AACA,UAAKhB,OAAL,CAAaiB,gBAAb;AACA;;AAED,4BAAcZ,UAAd,CAAyBC,OAAzB,CAAiC,gBAAQ;AACxC,SAAIM,UAAUL,IAAV,KAAmB,CAAC,OAAKlB,KAAL,CAAWkB,IAAX,CAAxB,EAA0C;AACzC,aAAKH,SAAL,CAAeG,IAAf,IAAuB;AAAA,cAAM,OAAKlB,KAAL,CAAWkB,IAAX,EAAiB,OAAKP,OAAtB,CAAN;AAAA,OAAvB;AACA,aAAKA,OAAL,CAAaG,EAAb,CAAgBI,IAAhB,EAAsB,OAAKH,SAAL,CAAeG,IAAf,CAAtB;AACA,MAHD,MAGO,IAAI,CAACK,UAAUL,IAAV,CAAD,IAAoB,OAAKlB,KAAL,CAAWkB,IAAX,CAAxB,EAA0C;AAChD,aAAKP,OAAL,CAAakB,GAAb,CAAiBX,IAAjB,EAAuB,OAAKH,SAAL,CAAeG,IAAf,CAAvB;AACA;AACD,KAPD;AAQA;AAxFF;AAAA;AAAA,0CA0FyB;AACvB,SAAKM,WAAL;AACA;AA5FF;AAAA;AAAA,4BAuHW;AACT,WAAQ;AAAC,cAAD;AAAA;AACP,oBAAc,KAAK7B,KAAL,CAAWW,YADlB;AAEP,uBAAiB,KAAKX,KAAL,CAAWa,eAFrB;AAGP,uBAAiB,KAAKb,KAAL,CAAWc,eAHrB;AAIP,yBAAmB,KAAKd,KAAL,CAAWe,iBAJvB;AAKP,mBAAa,KAAKoB,WALX;AAMP,qBAAe,KAAKC,aANb;AAOP,oBAAc,KAAKX,YAPZ;AAQP,mBAAa,KAAKI;AARX,QASH,KAAKxB,KATF;AAWN,UAAKA,KAAL,CAAWI;AAXL,KAAR;AAaA;AArIF;;AAAA;AAAA,GAAsC,gBAAMX,SAA5C,UACQuC,SADR,GACoB;AAClBb,aAAW,oBAAUc,IADH;AAElB1B,iBAAe,oBAAU2B,KAAV,CAAgB;AAC9B5B,iBAAc,oBAAU2B,IADM;AAE9BzB,oBAAiB,oBAAUyB,IAFG;AAG9BxB,oBAAiB,oBAAUwB,IAHG;AAI9BvB,sBAAmB,oBAAUuB;AAJC,GAAhB;AAFG,EADpB,SAWQE,YAXR,GAWuB;AACrBhB,aAAW,IADU;AAErBZ,iBAAe;AACdD,iBAAc,KADA;AAEdE,oBAAiB,KAFH;AAGdC,oBAAiB,KAHH;AAIdC,sBAAmB;AAJL;AAFM,EAXvB;AAAA;;AAAA,OA8FCoB,WA9FD,GA8Fe,YAAM;AACnB,OAAI,OAAKnB,OAAT,EAAkB;AACjB,WAAKA,OAAL,CAAayB,IAAb;AACA;AACD,GAlGF;;AAAA,OAoGCL,aApGD,GAoGiB,YAAM;AACrB,OAAI,OAAKpB,OAAT,EAAkB;AACjB,WAAKA,OAAL,CAAa0B,MAAb;AACA;AACD,GAxGF;;AAAA,OA0GCjB,YA1GD,GA0GgB,YAAwB;AAAA,OAAvBpB,KAAuB,uEAAf,OAAKA,KAAU;;AACtC,OAAI,CAAC,OAAKW,OAAV,EAAmB;AAClB,WAAK2B,aAAL,CAAmBtC,KAAnB;AACA;AACD,GA9GF;;AAAA,OAgHCwB,WAhHD,GAgHe,YAAM;AACnB,OAAI,OAAKb,OAAT,EAAkB;AACjB,WAAKA,OAAL,CAAa4B,OAAb;AACA,WAAK5B,OAAL,GAAe,IAAf;AACA;AACD,GArHF;AAAA;AAuIA,QAAO,oCAAa6B,gBAAb,EAA+B/C,SAA/B,CAAP;AACA,CAzIM","file":"index.js","sourcesContent":["import React from 'react';\nimport ReactDOM from 'react-dom';\nimport PropTypes from 'prop-types'\nimport hoistStatics from 'hoist-non-react-statics';\n\nimport scrollMonitor from 'scrollmonitor';\n\nexport const ScrollContainer = (Component) => {\n\tclass ScrollMonitorContainer extends React.Component {\n\t\tconstructor () {\n\t\t\tsuper();\n\n\t\t\tthis.state = {\n\t\t\t\tcontainer: null\n\t\t\t};\n\t\t}\n\n\t\tcomponentDidMount () {\n\t\t\tvar el = ReactDOM.findDOMNode(this);\n\t\t\tvar container = scrollMonitor.createContainer(el, this.props.offsets);\n\t\t\tthis.setState({\n\t\t\t\tscrollContainer: container\n\t\t\t});\n\t\t}\n\n\t\trender () {\n\t\t\treturn (\n\t\t\t\t{this.props.children}\n\t\t\t);\n\t\t}\n\t}\n\treturn hoistStatics(ScrollMonitorContainer, Component);\n};\n\nexport const Watch = (Component) => {\n\treturn class WatchedComponent extends React.Component {\n\t\tstatic propTypes = {\n\t\t\tautoStart: PropTypes.bool,\n\t\t\tinitialRender: PropTypes.shape({\n\t\t\t\tisInViewport: PropTypes.bool,\n\t\t\t\tisAboveViewport: PropTypes.bool,\n\t\t\t\tisBelowViewport: PropTypes.bool,\n\t\t\t\tisFullyInViewport: PropTypes.bool\n\t\t\t})\n\t\t};\n\n\t\tstatic defaultProps = {\n\t\t\tautoStart: true,\n\t\t\tinitialRender: {\n\t\t\t\tisInViewport: false,\n\t\t\t\tisAboveViewport: false,\n\t\t\t\tisBelowViewport: false,\n\t\t\t\tisFullyInViewport: false\n\t\t\t}\n\t\t};\n\n\t\tconstructor (props) {\n\t\t\tsuper(props);\n\t\t\tthis.state = {\n\t\t\t\tisInViewport: this.props.initialRender.isInViewport,\n\t\t\t\tisAboveViewport: this.props.initialRender.isAboveViewport,\n\t\t\t\tisBelowViewport: this.props.initialRender.isBelowViewport,\n\t\t\t\tisFullyInViewport: this.props.initialRender.isFullyInViewport\n\t\t\t};\n\t\t}\n\n\t\tcreateWatcher (props) {\n\t\t\tvar el = ReactDOM.findDOMNode(this);\n\t\t\tthis.watcher = (props.scrollContainer || scrollMonitor).create(el, props.offsets);\n\n\t\t\tconst updateState = () => {\n\t\t\t\tthis.setState({\n\t\t\t\t\tisInViewport: this.watcher.isInViewport,\n\t\t\t\t\tisAboveViewport: this.watcher.isAboveViewport,\n\t\t\t\t\tisBelowViewport: this.watcher.isBelowViewport,\n\t\t\t\t\tisFullyInViewport: this.watcher.isFullyInViewport\n\t\t\t\t});\n\t\t\t};\n\n\t\t\tthis.watcher.on('stateChange', updateState);\n\n\t\t\tthis.listeners = {};\n\n\t\t\tscrollMonitor.eventTypes.forEach(type => {\n\t\t\t\tif (props[type]) {\n\t\t\t\t\tthis.listeners[type] = () => this.props[type](this.watcher, this.props);\n\t\t\t\t\tthis.watcher.on(type, this.listeners[type]);\n\t\t\t\t}\n\t\t\t});\n\n\t\t\tupdateState();\n\t\t}\n\n\t\tcomponentDidMount () {\n\t\t\tif (this.props.autoStart) {\n\t\t\t\tthis.startWatcher();\n\t\t\t}\n\n\t\t\tif (this.props.innerRef) {\n\t\t\t\tthis.props.innerRef(this.watcher.watchItem, this.watcher, this.props);\n\t\t\t}\n\t\t}\n\n\t\tcomponentWillReceiveProps (nextProps) {\n\t\t\tif (this.props.scrollContainer !== nextProps.scrollContainer) {\n\t\t\t\tthis.stopWatcher();\n\t\t\t\tthis.startWatcher(nextProps);\n\t\t\t}\n\n\t\t\tif (this.props.offsets !== nextProps.offsets) {\n\t\t\t\tObject.assign(this.watcher.offsets, nextProps.offsets);\n\t\t\t\tthis.watcher.update();\n\t\t\t\tthis.watcher.triggerCallbacks();\n\t\t\t}\n\n\t\t\tscrollMonitor.eventTypes.forEach(type => {\n\t\t\t\tif (nextProps[type] && !this.props[type]) {\n\t\t\t\t\tthis.listeners[type] = () => this.props[type](this.watcher);\n\t\t\t\t\tthis.watcher.on(type, this.listeners[type]);\n\t\t\t\t} else if (!nextProps[type] && this.props[type]) {\n\t\t\t\t\tthis.watcher.off(type, this.listeners[type]);\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\n\t\tcomponentWillUnmount () {\n\t\t\tthis.stopWatcher();\n\t\t}\n\n\t\tlockWatcher = () => {\n\t\t\tif (this.watcher) {\n\t\t\t\tthis.watcher.lock();\n\t\t\t}\n\t\t};\n\n\t\tunlockWatcher = () => {\n\t\t\tif (this.watcher) {\n\t\t\t\tthis.watcher.unlock();\n\t\t\t}\n\t\t};\n\n\t\tstartWatcher = (props = this.props) => {\n\t\t\tif (!this.watcher) {\n\t\t\t\tthis.createWatcher(props);\n\t\t\t}\n\t\t};\n\n\t\tstopWatcher = () => {\n\t\t\tif (this.watcher) {\n\t\t\t\tthis.watcher.destroy();\n\t\t\t\tthis.watcher = null;\n\t\t\t}\n\t\t};\n\n\t\trender () {\n\t\t\treturn (\n\t\t\t\t{this.props.children}\n\t\t\t);\n\t\t}\n\t}\n\treturn hoistStatics(WatchedComponent, Component);\n};\n"]} -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, "__esModule", { 4 | value: true 5 | }); 6 | exports.Watch = exports.ScrollContainer = undefined; 7 | 8 | var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; 9 | 10 | var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); 11 | 12 | var _react = require('react'); 13 | 14 | var _react2 = _interopRequireDefault(_react); 15 | 16 | var _reactDom = require('react-dom'); 17 | 18 | var _reactDom2 = _interopRequireDefault(_reactDom); 19 | 20 | var _propTypes = require('prop-types'); 21 | 22 | var _propTypes2 = _interopRequireDefault(_propTypes); 23 | 24 | var _hoistNonReactStatics = require('hoist-non-react-statics'); 25 | 26 | var _hoistNonReactStatics2 = _interopRequireDefault(_hoistNonReactStatics); 27 | 28 | var _scrollmonitor = require('scrollmonitor'); 29 | 30 | var _scrollmonitor2 = _interopRequireDefault(_scrollmonitor); 31 | 32 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } 33 | 34 | function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } 35 | 36 | function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } 37 | 38 | function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } 39 | 40 | var ScrollContainer = exports.ScrollContainer = function ScrollContainer(Component) { 41 | var ScrollMonitorContainer = function (_React$Component) { 42 | _inherits(ScrollMonitorContainer, _React$Component); 43 | 44 | function ScrollMonitorContainer() { 45 | _classCallCheck(this, ScrollMonitorContainer); 46 | 47 | var _this = _possibleConstructorReturn(this, (ScrollMonitorContainer.__proto__ || Object.getPrototypeOf(ScrollMonitorContainer)).call(this)); 48 | 49 | _this.state = { 50 | container: null 51 | }; 52 | return _this; 53 | } 54 | 55 | _createClass(ScrollMonitorContainer, [{ 56 | key: 'componentDidMount', 57 | value: function componentDidMount() { 58 | var el = _reactDom2.default.findDOMNode(this); 59 | var container = _scrollmonitor2.default.createContainer(el, this.props.offsets); 60 | this.setState({ 61 | scrollContainer: container 62 | }); 63 | } 64 | }, { 65 | key: 'render', 66 | value: function render() { 67 | return _react2.default.createElement( 68 | Component, 69 | _extends({ 70 | scrollContainer: this.state.scrollContainer 71 | }, this.props), 72 | this.props.children 73 | ); 74 | } 75 | }]); 76 | 77 | return ScrollMonitorContainer; 78 | }(_react2.default.Component); 79 | 80 | return (0, _hoistNonReactStatics2.default)(ScrollMonitorContainer, Component); 81 | }; 82 | 83 | var Watch = exports.Watch = function Watch(Component) { 84 | var _class, _temp, _initialiseProps; 85 | 86 | return _temp = _class = function (_React$Component2) { 87 | _inherits(WatchedComponent, _React$Component2); 88 | 89 | function WatchedComponent(props) { 90 | _classCallCheck(this, WatchedComponent); 91 | 92 | var _this2 = _possibleConstructorReturn(this, (WatchedComponent.__proto__ || Object.getPrototypeOf(WatchedComponent)).call(this, props)); 93 | 94 | _initialiseProps.call(_this2); 95 | 96 | _this2.state = { 97 | isInViewport: _this2.props.initialRender.isInViewport, 98 | isAboveViewport: _this2.props.initialRender.isAboveViewport, 99 | isBelowViewport: _this2.props.initialRender.isBelowViewport, 100 | isFullyInViewport: _this2.props.initialRender.isFullyInViewport 101 | }; 102 | return _this2; 103 | } 104 | 105 | _createClass(WatchedComponent, [{ 106 | key: 'createWatcher', 107 | value: function createWatcher(props) { 108 | var _this3 = this; 109 | 110 | var el = _reactDom2.default.findDOMNode(this); 111 | this.watcher = (props.scrollContainer || _scrollmonitor2.default).create(el, props.offsets); 112 | 113 | var updateState = function updateState() { 114 | _this3.setState({ 115 | isInViewport: _this3.watcher.isInViewport, 116 | isAboveViewport: _this3.watcher.isAboveViewport, 117 | isBelowViewport: _this3.watcher.isBelowViewport, 118 | isFullyInViewport: _this3.watcher.isFullyInViewport 119 | }); 120 | }; 121 | 122 | this.watcher.on('stateChange', updateState); 123 | 124 | this.listeners = {}; 125 | 126 | _scrollmonitor2.default.eventTypes.forEach(function (type) { 127 | if (props[type]) { 128 | _this3.listeners[type] = function () { 129 | return _this3.props[type](_this3.watcher, _this3.props); 130 | }; 131 | _this3.watcher.on(type, _this3.listeners[type]); 132 | } 133 | }); 134 | 135 | updateState(); 136 | } 137 | }, { 138 | key: 'componentDidMount', 139 | value: function componentDidMount() { 140 | if (this.props.autoStart) { 141 | this.startWatcher(); 142 | } 143 | 144 | if (this.props.innerRef) { 145 | this.props.innerRef(this.watcher.watchItem, this.watcher, this.props); 146 | } 147 | } 148 | }, { 149 | key: 'componentWillReceiveProps', 150 | value: function componentWillReceiveProps(nextProps) { 151 | var _this4 = this; 152 | 153 | if (this.props.scrollContainer !== nextProps.scrollContainer) { 154 | this.stopWatcher(); 155 | this.startWatcher(nextProps); 156 | } 157 | 158 | if (this.props.offsets !== nextProps.offsets) { 159 | Object.assign(this.watcher.offsets, nextProps.offsets); 160 | this.watcher.update(); 161 | this.watcher.triggerCallbacks(); 162 | } 163 | 164 | _scrollmonitor2.default.eventTypes.forEach(function (type) { 165 | if (nextProps[type] && !_this4.props[type]) { 166 | _this4.listeners[type] = function () { 167 | return _this4.props[type](_this4.watcher); 168 | }; 169 | _this4.watcher.on(type, _this4.listeners[type]); 170 | } else if (!nextProps[type] && _this4.props[type]) { 171 | _this4.watcher.off(type, _this4.listeners[type]); 172 | } 173 | }); 174 | } 175 | }, { 176 | key: 'componentWillUnmount', 177 | value: function componentWillUnmount() { 178 | this.stopWatcher(); 179 | } 180 | }, { 181 | key: 'render', 182 | value: function render() { 183 | return _react2.default.createElement( 184 | Component, 185 | _extends({ 186 | isInViewport: this.state.isInViewport, 187 | isAboveViewport: this.state.isAboveViewport, 188 | isBelowViewport: this.state.isBelowViewport, 189 | isFullyInViewport: this.state.isFullyInViewport, 190 | lockWatcher: this.lockWatcher, 191 | unlockWatcher: this.unlockWatcher, 192 | startWatcher: this.startWatcher, 193 | stopWatcher: this.stopWatcher 194 | }, this.props), 195 | this.props.children 196 | ); 197 | } 198 | }]); 199 | 200 | return WatchedComponent; 201 | }(_react2.default.Component), _class.propTypes = { 202 | autoStart: _propTypes2.default.bool, 203 | initialRender: _propTypes2.default.shape({ 204 | isInViewport: _propTypes2.default.bool, 205 | isAboveViewport: _propTypes2.default.bool, 206 | isBelowViewport: _propTypes2.default.bool, 207 | isFullyInViewport: _propTypes2.default.bool 208 | }) 209 | }, _class.defaultProps = { 210 | autoStart: true, 211 | initialRender: { 212 | isInViewport: false, 213 | isAboveViewport: false, 214 | isBelowViewport: false, 215 | isFullyInViewport: false 216 | } 217 | }, _initialiseProps = function _initialiseProps() { 218 | var _this5 = this; 219 | 220 | this.lockWatcher = function () { 221 | if (_this5.watcher) { 222 | _this5.watcher.lock(); 223 | } 224 | }; 225 | 226 | this.unlockWatcher = function () { 227 | if (_this5.watcher) { 228 | _this5.watcher.unlock(); 229 | } 230 | }; 231 | 232 | this.startWatcher = function () { 233 | var props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : _this5.props; 234 | 235 | if (!_this5.watcher) { 236 | _this5.createWatcher(props); 237 | } 238 | }; 239 | 240 | this.stopWatcher = function () { 241 | if (_this5.watcher) { 242 | _this5.watcher.destroy(); 243 | _this5.watcher = null; 244 | } 245 | }; 246 | }, _temp; 247 | return (0, _hoistNonReactStatics2.default)(WatchedComponent, Component); 248 | }; 249 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abbrev@1: 6 | version "1.1.0" 7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 8 | 9 | ajv@^4.9.1: 10 | version "4.11.8" 11 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 12 | dependencies: 13 | co "^4.6.0" 14 | json-stable-stringify "^1.0.1" 15 | 16 | ansi-regex@^2.0.0: 17 | version "2.1.1" 18 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 19 | 20 | ansi-styles@^2.2.1: 21 | version "2.2.1" 22 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 23 | 24 | anymatch@^1.3.0: 25 | version "1.3.2" 26 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 27 | dependencies: 28 | micromatch "^2.1.5" 29 | normalize-path "^2.0.0" 30 | 31 | aproba@^1.0.3: 32 | version "1.1.2" 33 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.2.tgz#45c6629094de4e96f693ef7eab74ae079c240fc1" 34 | 35 | are-we-there-yet@~1.1.2: 36 | version "1.1.4" 37 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 38 | dependencies: 39 | delegates "^1.0.0" 40 | readable-stream "^2.0.6" 41 | 42 | arr-diff@^2.0.0: 43 | version "2.0.0" 44 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 45 | dependencies: 46 | arr-flatten "^1.0.1" 47 | 48 | arr-flatten@^1.0.1: 49 | version "1.1.0" 50 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 51 | 52 | array-unique@^0.2.1: 53 | version "0.2.1" 54 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 55 | 56 | asap@~2.0.3: 57 | version "2.0.6" 58 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" 59 | 60 | asn1@~0.2.3: 61 | version "0.2.3" 62 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 63 | 64 | assert-plus@1.0.0, assert-plus@^1.0.0: 65 | version "1.0.0" 66 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 67 | 68 | assert-plus@^0.2.0: 69 | version "0.2.0" 70 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 71 | 72 | async-each@^1.0.0: 73 | version "1.0.1" 74 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 75 | 76 | asynckit@^0.4.0: 77 | version "0.4.0" 78 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 79 | 80 | aws-sign2@~0.6.0: 81 | version "0.6.0" 82 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 83 | 84 | aws4@^1.2.1: 85 | version "1.6.0" 86 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 87 | 88 | babel-cli@^6.18.0: 89 | version "6.26.0" 90 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.26.0.tgz#502ab54874d7db88ad00b887a06383ce03d002f1" 91 | dependencies: 92 | babel-core "^6.26.0" 93 | babel-polyfill "^6.26.0" 94 | babel-register "^6.26.0" 95 | babel-runtime "^6.26.0" 96 | commander "^2.11.0" 97 | convert-source-map "^1.5.0" 98 | fs-readdir-recursive "^1.0.0" 99 | glob "^7.1.2" 100 | lodash "^4.17.4" 101 | output-file-sync "^1.1.2" 102 | path-is-absolute "^1.0.1" 103 | slash "^1.0.0" 104 | source-map "^0.5.6" 105 | v8flags "^2.1.1" 106 | optionalDependencies: 107 | chokidar "^1.6.1" 108 | 109 | babel-code-frame@^6.26.0: 110 | version "6.26.0" 111 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 112 | dependencies: 113 | chalk "^1.1.3" 114 | esutils "^2.0.2" 115 | js-tokens "^3.0.2" 116 | 117 | babel-core@^6.2.1, babel-core@^6.26.0: 118 | version "6.26.0" 119 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 120 | dependencies: 121 | babel-code-frame "^6.26.0" 122 | babel-generator "^6.26.0" 123 | babel-helpers "^6.24.1" 124 | babel-messages "^6.23.0" 125 | babel-register "^6.26.0" 126 | babel-runtime "^6.26.0" 127 | babel-template "^6.26.0" 128 | babel-traverse "^6.26.0" 129 | babel-types "^6.26.0" 130 | babylon "^6.18.0" 131 | convert-source-map "^1.5.0" 132 | debug "^2.6.8" 133 | json5 "^0.5.1" 134 | lodash "^4.17.4" 135 | minimatch "^3.0.4" 136 | path-is-absolute "^1.0.1" 137 | private "^0.1.7" 138 | slash "^1.0.0" 139 | source-map "^0.5.6" 140 | 141 | babel-generator@^6.26.0: 142 | version "6.26.0" 143 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" 144 | dependencies: 145 | babel-messages "^6.23.0" 146 | babel-runtime "^6.26.0" 147 | babel-types "^6.26.0" 148 | detect-indent "^4.0.0" 149 | jsesc "^1.3.0" 150 | lodash "^4.17.4" 151 | source-map "^0.5.6" 152 | trim-right "^1.0.1" 153 | 154 | babel-helper-bindify-decorators@^6.24.1: 155 | version "6.24.1" 156 | resolved "https://registry.yarnpkg.com/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.24.1.tgz#14c19e5f142d7b47f19a52431e52b1ccbc40a330" 157 | dependencies: 158 | babel-runtime "^6.22.0" 159 | babel-traverse "^6.24.1" 160 | babel-types "^6.24.1" 161 | 162 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 163 | version "6.24.1" 164 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 165 | dependencies: 166 | babel-helper-explode-assignable-expression "^6.24.1" 167 | babel-runtime "^6.22.0" 168 | babel-types "^6.24.1" 169 | 170 | babel-helper-builder-react-jsx@^6.24.1: 171 | version "6.26.0" 172 | resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz#39ff8313b75c8b65dceff1f31d383e0ff2a408a0" 173 | dependencies: 174 | babel-runtime "^6.26.0" 175 | babel-types "^6.26.0" 176 | esutils "^2.0.2" 177 | 178 | babel-helper-call-delegate@^6.24.1: 179 | version "6.24.1" 180 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 181 | dependencies: 182 | babel-helper-hoist-variables "^6.24.1" 183 | babel-runtime "^6.22.0" 184 | babel-traverse "^6.24.1" 185 | babel-types "^6.24.1" 186 | 187 | babel-helper-define-map@^6.24.1: 188 | version "6.26.0" 189 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 190 | dependencies: 191 | babel-helper-function-name "^6.24.1" 192 | babel-runtime "^6.26.0" 193 | babel-types "^6.26.0" 194 | lodash "^4.17.4" 195 | 196 | babel-helper-explode-assignable-expression@^6.24.1: 197 | version "6.24.1" 198 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 199 | dependencies: 200 | babel-runtime "^6.22.0" 201 | babel-traverse "^6.24.1" 202 | babel-types "^6.24.1" 203 | 204 | babel-helper-explode-class@^6.24.1: 205 | version "6.24.1" 206 | resolved "https://registry.yarnpkg.com/babel-helper-explode-class/-/babel-helper-explode-class-6.24.1.tgz#7dc2a3910dee007056e1e31d640ced3d54eaa9eb" 207 | dependencies: 208 | babel-helper-bindify-decorators "^6.24.1" 209 | babel-runtime "^6.22.0" 210 | babel-traverse "^6.24.1" 211 | babel-types "^6.24.1" 212 | 213 | babel-helper-function-name@^6.24.1: 214 | version "6.24.1" 215 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 216 | dependencies: 217 | babel-helper-get-function-arity "^6.24.1" 218 | babel-runtime "^6.22.0" 219 | babel-template "^6.24.1" 220 | babel-traverse "^6.24.1" 221 | babel-types "^6.24.1" 222 | 223 | babel-helper-get-function-arity@^6.24.1: 224 | version "6.24.1" 225 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 226 | dependencies: 227 | babel-runtime "^6.22.0" 228 | babel-types "^6.24.1" 229 | 230 | babel-helper-hoist-variables@^6.24.1: 231 | version "6.24.1" 232 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 233 | dependencies: 234 | babel-runtime "^6.22.0" 235 | babel-types "^6.24.1" 236 | 237 | babel-helper-optimise-call-expression@^6.24.1: 238 | version "6.24.1" 239 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 240 | dependencies: 241 | babel-runtime "^6.22.0" 242 | babel-types "^6.24.1" 243 | 244 | babel-helper-regex@^6.24.1: 245 | version "6.26.0" 246 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 247 | dependencies: 248 | babel-runtime "^6.26.0" 249 | babel-types "^6.26.0" 250 | lodash "^4.17.4" 251 | 252 | babel-helper-remap-async-to-generator@^6.24.1: 253 | version "6.24.1" 254 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 255 | dependencies: 256 | babel-helper-function-name "^6.24.1" 257 | babel-runtime "^6.22.0" 258 | babel-template "^6.24.1" 259 | babel-traverse "^6.24.1" 260 | babel-types "^6.24.1" 261 | 262 | babel-helper-replace-supers@^6.24.1: 263 | version "6.24.1" 264 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 265 | dependencies: 266 | babel-helper-optimise-call-expression "^6.24.1" 267 | babel-messages "^6.23.0" 268 | babel-runtime "^6.22.0" 269 | babel-template "^6.24.1" 270 | babel-traverse "^6.24.1" 271 | babel-types "^6.24.1" 272 | 273 | babel-helpers@^6.24.1: 274 | version "6.24.1" 275 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 276 | dependencies: 277 | babel-runtime "^6.22.0" 278 | babel-template "^6.24.1" 279 | 280 | babel-messages@^6.23.0: 281 | version "6.23.0" 282 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 283 | dependencies: 284 | babel-runtime "^6.22.0" 285 | 286 | babel-plugin-check-es2015-constants@^6.22.0: 287 | version "6.22.0" 288 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 289 | dependencies: 290 | babel-runtime "^6.22.0" 291 | 292 | babel-plugin-syntax-async-functions@^6.8.0: 293 | version "6.13.0" 294 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 295 | 296 | babel-plugin-syntax-async-generators@^6.5.0: 297 | version "6.13.0" 298 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a" 299 | 300 | babel-plugin-syntax-class-constructor-call@^6.18.0: 301 | version "6.18.0" 302 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-constructor-call/-/babel-plugin-syntax-class-constructor-call-6.18.0.tgz#9cb9d39fe43c8600bec8146456ddcbd4e1a76416" 303 | 304 | babel-plugin-syntax-class-properties@^6.8.0: 305 | version "6.13.0" 306 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" 307 | 308 | babel-plugin-syntax-decorators@^6.13.0: 309 | version "6.13.0" 310 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b" 311 | 312 | babel-plugin-syntax-do-expressions@^6.8.0: 313 | version "6.13.0" 314 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-do-expressions/-/babel-plugin-syntax-do-expressions-6.13.0.tgz#5747756139aa26d390d09410b03744ba07e4796d" 315 | 316 | babel-plugin-syntax-dynamic-import@^6.18.0: 317 | version "6.18.0" 318 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da" 319 | 320 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 321 | version "6.13.0" 322 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 323 | 324 | babel-plugin-syntax-export-extensions@^6.8.0: 325 | version "6.13.0" 326 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-export-extensions/-/babel-plugin-syntax-export-extensions-6.13.0.tgz#70a1484f0f9089a4e84ad44bac353c95b9b12721" 327 | 328 | babel-plugin-syntax-flow@^6.18.0: 329 | version "6.18.0" 330 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" 331 | 332 | babel-plugin-syntax-function-bind@^6.8.0: 333 | version "6.13.0" 334 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-function-bind/-/babel-plugin-syntax-function-bind-6.13.0.tgz#48c495f177bdf31a981e732f55adc0bdd2601f46" 335 | 336 | babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0: 337 | version "6.18.0" 338 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" 339 | 340 | babel-plugin-syntax-object-rest-spread@^6.8.0: 341 | version "6.13.0" 342 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 343 | 344 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 345 | version "6.22.0" 346 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 347 | 348 | babel-plugin-transform-async-generator-functions@^6.24.1: 349 | version "6.24.1" 350 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.24.1.tgz#f058900145fd3e9907a6ddf28da59f215258a5db" 351 | dependencies: 352 | babel-helper-remap-async-to-generator "^6.24.1" 353 | babel-plugin-syntax-async-generators "^6.5.0" 354 | babel-runtime "^6.22.0" 355 | 356 | babel-plugin-transform-async-to-generator@^6.24.1: 357 | version "6.24.1" 358 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 359 | dependencies: 360 | babel-helper-remap-async-to-generator "^6.24.1" 361 | babel-plugin-syntax-async-functions "^6.8.0" 362 | babel-runtime "^6.22.0" 363 | 364 | babel-plugin-transform-class-constructor-call@^6.24.1: 365 | version "6.24.1" 366 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-constructor-call/-/babel-plugin-transform-class-constructor-call-6.24.1.tgz#80dc285505ac067dcb8d6c65e2f6f11ab7765ef9" 367 | dependencies: 368 | babel-plugin-syntax-class-constructor-call "^6.18.0" 369 | babel-runtime "^6.22.0" 370 | babel-template "^6.24.1" 371 | 372 | babel-plugin-transform-class-properties@^6.24.1: 373 | version "6.24.1" 374 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac" 375 | dependencies: 376 | babel-helper-function-name "^6.24.1" 377 | babel-plugin-syntax-class-properties "^6.8.0" 378 | babel-runtime "^6.22.0" 379 | babel-template "^6.24.1" 380 | 381 | babel-plugin-transform-decorators@^6.24.1: 382 | version "6.24.1" 383 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.24.1.tgz#788013d8f8c6b5222bdf7b344390dfd77569e24d" 384 | dependencies: 385 | babel-helper-explode-class "^6.24.1" 386 | babel-plugin-syntax-decorators "^6.13.0" 387 | babel-runtime "^6.22.0" 388 | babel-template "^6.24.1" 389 | babel-types "^6.24.1" 390 | 391 | babel-plugin-transform-do-expressions@^6.22.0: 392 | version "6.22.0" 393 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-do-expressions/-/babel-plugin-transform-do-expressions-6.22.0.tgz#28ccaf92812d949c2cd1281f690c8fdc468ae9bb" 394 | dependencies: 395 | babel-plugin-syntax-do-expressions "^6.8.0" 396 | babel-runtime "^6.22.0" 397 | 398 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 399 | version "6.22.0" 400 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 401 | dependencies: 402 | babel-runtime "^6.22.0" 403 | 404 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 405 | version "6.22.0" 406 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 407 | dependencies: 408 | babel-runtime "^6.22.0" 409 | 410 | babel-plugin-transform-es2015-block-scoping@^6.24.1: 411 | version "6.26.0" 412 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 413 | dependencies: 414 | babel-runtime "^6.26.0" 415 | babel-template "^6.26.0" 416 | babel-traverse "^6.26.0" 417 | babel-types "^6.26.0" 418 | lodash "^4.17.4" 419 | 420 | babel-plugin-transform-es2015-classes@^6.24.1: 421 | version "6.24.1" 422 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 423 | dependencies: 424 | babel-helper-define-map "^6.24.1" 425 | babel-helper-function-name "^6.24.1" 426 | babel-helper-optimise-call-expression "^6.24.1" 427 | babel-helper-replace-supers "^6.24.1" 428 | babel-messages "^6.23.0" 429 | babel-runtime "^6.22.0" 430 | babel-template "^6.24.1" 431 | babel-traverse "^6.24.1" 432 | babel-types "^6.24.1" 433 | 434 | babel-plugin-transform-es2015-computed-properties@^6.24.1: 435 | version "6.24.1" 436 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 437 | dependencies: 438 | babel-runtime "^6.22.0" 439 | babel-template "^6.24.1" 440 | 441 | babel-plugin-transform-es2015-destructuring@^6.22.0: 442 | version "6.23.0" 443 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 444 | dependencies: 445 | babel-runtime "^6.22.0" 446 | 447 | babel-plugin-transform-es2015-duplicate-keys@^6.24.1: 448 | version "6.24.1" 449 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 450 | dependencies: 451 | babel-runtime "^6.22.0" 452 | babel-types "^6.24.1" 453 | 454 | babel-plugin-transform-es2015-for-of@^6.22.0: 455 | version "6.23.0" 456 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 457 | dependencies: 458 | babel-runtime "^6.22.0" 459 | 460 | babel-plugin-transform-es2015-function-name@^6.24.1: 461 | version "6.24.1" 462 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 463 | dependencies: 464 | babel-helper-function-name "^6.24.1" 465 | babel-runtime "^6.22.0" 466 | babel-types "^6.24.1" 467 | 468 | babel-plugin-transform-es2015-literals@^6.22.0: 469 | version "6.22.0" 470 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 471 | dependencies: 472 | babel-runtime "^6.22.0" 473 | 474 | babel-plugin-transform-es2015-modules-amd@^6.24.1: 475 | version "6.24.1" 476 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 477 | dependencies: 478 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 479 | babel-runtime "^6.22.0" 480 | babel-template "^6.24.1" 481 | 482 | babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 483 | version "6.26.0" 484 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" 485 | dependencies: 486 | babel-plugin-transform-strict-mode "^6.24.1" 487 | babel-runtime "^6.26.0" 488 | babel-template "^6.26.0" 489 | babel-types "^6.26.0" 490 | 491 | babel-plugin-transform-es2015-modules-systemjs@^6.24.1: 492 | version "6.24.1" 493 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 494 | dependencies: 495 | babel-helper-hoist-variables "^6.24.1" 496 | babel-runtime "^6.22.0" 497 | babel-template "^6.24.1" 498 | 499 | babel-plugin-transform-es2015-modules-umd@^6.24.1: 500 | version "6.24.1" 501 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 502 | dependencies: 503 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 504 | babel-runtime "^6.22.0" 505 | babel-template "^6.24.1" 506 | 507 | babel-plugin-transform-es2015-object-super@^6.24.1: 508 | version "6.24.1" 509 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 510 | dependencies: 511 | babel-helper-replace-supers "^6.24.1" 512 | babel-runtime "^6.22.0" 513 | 514 | babel-plugin-transform-es2015-parameters@^6.24.1: 515 | version "6.24.1" 516 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 517 | dependencies: 518 | babel-helper-call-delegate "^6.24.1" 519 | babel-helper-get-function-arity "^6.24.1" 520 | babel-runtime "^6.22.0" 521 | babel-template "^6.24.1" 522 | babel-traverse "^6.24.1" 523 | babel-types "^6.24.1" 524 | 525 | babel-plugin-transform-es2015-shorthand-properties@^6.24.1: 526 | version "6.24.1" 527 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 528 | dependencies: 529 | babel-runtime "^6.22.0" 530 | babel-types "^6.24.1" 531 | 532 | babel-plugin-transform-es2015-spread@^6.22.0: 533 | version "6.22.0" 534 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 535 | dependencies: 536 | babel-runtime "^6.22.0" 537 | 538 | babel-plugin-transform-es2015-sticky-regex@^6.24.1: 539 | version "6.24.1" 540 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 541 | dependencies: 542 | babel-helper-regex "^6.24.1" 543 | babel-runtime "^6.22.0" 544 | babel-types "^6.24.1" 545 | 546 | babel-plugin-transform-es2015-template-literals@^6.22.0: 547 | version "6.22.0" 548 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 549 | dependencies: 550 | babel-runtime "^6.22.0" 551 | 552 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0: 553 | version "6.23.0" 554 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 555 | dependencies: 556 | babel-runtime "^6.22.0" 557 | 558 | babel-plugin-transform-es2015-unicode-regex@^6.24.1: 559 | version "6.24.1" 560 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 561 | dependencies: 562 | babel-helper-regex "^6.24.1" 563 | babel-runtime "^6.22.0" 564 | regexpu-core "^2.0.0" 565 | 566 | babel-plugin-transform-exponentiation-operator@^6.24.1: 567 | version "6.24.1" 568 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 569 | dependencies: 570 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 571 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 572 | babel-runtime "^6.22.0" 573 | 574 | babel-plugin-transform-export-extensions@^6.22.0: 575 | version "6.22.0" 576 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-export-extensions/-/babel-plugin-transform-export-extensions-6.22.0.tgz#53738b47e75e8218589eea946cbbd39109bbe653" 577 | dependencies: 578 | babel-plugin-syntax-export-extensions "^6.8.0" 579 | babel-runtime "^6.22.0" 580 | 581 | babel-plugin-transform-flow-strip-types@^6.22.0: 582 | version "6.22.0" 583 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" 584 | dependencies: 585 | babel-plugin-syntax-flow "^6.18.0" 586 | babel-runtime "^6.22.0" 587 | 588 | babel-plugin-transform-function-bind@^6.22.0: 589 | version "6.22.0" 590 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-function-bind/-/babel-plugin-transform-function-bind-6.22.0.tgz#c6fb8e96ac296a310b8cf8ea401462407ddf6a97" 591 | dependencies: 592 | babel-plugin-syntax-function-bind "^6.8.0" 593 | babel-runtime "^6.22.0" 594 | 595 | babel-plugin-transform-object-rest-spread@^6.22.0: 596 | version "6.26.0" 597 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06" 598 | dependencies: 599 | babel-plugin-syntax-object-rest-spread "^6.8.0" 600 | babel-runtime "^6.26.0" 601 | 602 | babel-plugin-transform-react-display-name@^6.23.0: 603 | version "6.25.0" 604 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz#67e2bf1f1e9c93ab08db96792e05392bf2cc28d1" 605 | dependencies: 606 | babel-runtime "^6.22.0" 607 | 608 | babel-plugin-transform-react-jsx-self@^6.22.0: 609 | version "6.22.0" 610 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e" 611 | dependencies: 612 | babel-plugin-syntax-jsx "^6.8.0" 613 | babel-runtime "^6.22.0" 614 | 615 | babel-plugin-transform-react-jsx-source@^6.22.0: 616 | version "6.22.0" 617 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6" 618 | dependencies: 619 | babel-plugin-syntax-jsx "^6.8.0" 620 | babel-runtime "^6.22.0" 621 | 622 | babel-plugin-transform-react-jsx@^6.24.1: 623 | version "6.24.1" 624 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3" 625 | dependencies: 626 | babel-helper-builder-react-jsx "^6.24.1" 627 | babel-plugin-syntax-jsx "^6.8.0" 628 | babel-runtime "^6.22.0" 629 | 630 | babel-plugin-transform-regenerator@^6.24.1: 631 | version "6.26.0" 632 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 633 | dependencies: 634 | regenerator-transform "^0.10.0" 635 | 636 | babel-plugin-transform-strict-mode@^6.24.1: 637 | version "6.24.1" 638 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 639 | dependencies: 640 | babel-runtime "^6.22.0" 641 | babel-types "^6.24.1" 642 | 643 | babel-polyfill@^6.26.0: 644 | version "6.26.0" 645 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" 646 | dependencies: 647 | babel-runtime "^6.26.0" 648 | core-js "^2.5.0" 649 | regenerator-runtime "^0.10.5" 650 | 651 | babel-preset-es2015@^6.3.13: 652 | version "6.24.1" 653 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939" 654 | dependencies: 655 | babel-plugin-check-es2015-constants "^6.22.0" 656 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 657 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 658 | babel-plugin-transform-es2015-block-scoping "^6.24.1" 659 | babel-plugin-transform-es2015-classes "^6.24.1" 660 | babel-plugin-transform-es2015-computed-properties "^6.24.1" 661 | babel-plugin-transform-es2015-destructuring "^6.22.0" 662 | babel-plugin-transform-es2015-duplicate-keys "^6.24.1" 663 | babel-plugin-transform-es2015-for-of "^6.22.0" 664 | babel-plugin-transform-es2015-function-name "^6.24.1" 665 | babel-plugin-transform-es2015-literals "^6.22.0" 666 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 667 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 668 | babel-plugin-transform-es2015-modules-systemjs "^6.24.1" 669 | babel-plugin-transform-es2015-modules-umd "^6.24.1" 670 | babel-plugin-transform-es2015-object-super "^6.24.1" 671 | babel-plugin-transform-es2015-parameters "^6.24.1" 672 | babel-plugin-transform-es2015-shorthand-properties "^6.24.1" 673 | babel-plugin-transform-es2015-spread "^6.22.0" 674 | babel-plugin-transform-es2015-sticky-regex "^6.24.1" 675 | babel-plugin-transform-es2015-template-literals "^6.22.0" 676 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 677 | babel-plugin-transform-es2015-unicode-regex "^6.24.1" 678 | babel-plugin-transform-regenerator "^6.24.1" 679 | 680 | babel-preset-flow@^6.23.0: 681 | version "6.23.0" 682 | resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d" 683 | dependencies: 684 | babel-plugin-transform-flow-strip-types "^6.22.0" 685 | 686 | babel-preset-react@^6.3.13: 687 | version "6.24.1" 688 | resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.24.1.tgz#ba69dfaea45fc3ec639b6a4ecea6e17702c91380" 689 | dependencies: 690 | babel-plugin-syntax-jsx "^6.3.13" 691 | babel-plugin-transform-react-display-name "^6.23.0" 692 | babel-plugin-transform-react-jsx "^6.24.1" 693 | babel-plugin-transform-react-jsx-self "^6.22.0" 694 | babel-plugin-transform-react-jsx-source "^6.22.0" 695 | babel-preset-flow "^6.23.0" 696 | 697 | babel-preset-stage-0@^6.16.0: 698 | version "6.24.1" 699 | resolved "https://registry.yarnpkg.com/babel-preset-stage-0/-/babel-preset-stage-0-6.24.1.tgz#5642d15042f91384d7e5af8bc88b1db95b039e6a" 700 | dependencies: 701 | babel-plugin-transform-do-expressions "^6.22.0" 702 | babel-plugin-transform-function-bind "^6.22.0" 703 | babel-preset-stage-1 "^6.24.1" 704 | 705 | babel-preset-stage-1@^6.24.1: 706 | version "6.24.1" 707 | resolved "https://registry.yarnpkg.com/babel-preset-stage-1/-/babel-preset-stage-1-6.24.1.tgz#7692cd7dcd6849907e6ae4a0a85589cfb9e2bfb0" 708 | dependencies: 709 | babel-plugin-transform-class-constructor-call "^6.24.1" 710 | babel-plugin-transform-export-extensions "^6.22.0" 711 | babel-preset-stage-2 "^6.24.1" 712 | 713 | babel-preset-stage-2@^6.24.1: 714 | version "6.24.1" 715 | resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-6.24.1.tgz#d9e2960fb3d71187f0e64eec62bc07767219bdc1" 716 | dependencies: 717 | babel-plugin-syntax-dynamic-import "^6.18.0" 718 | babel-plugin-transform-class-properties "^6.24.1" 719 | babel-plugin-transform-decorators "^6.24.1" 720 | babel-preset-stage-3 "^6.24.1" 721 | 722 | babel-preset-stage-3@^6.24.1: 723 | version "6.24.1" 724 | resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-6.24.1.tgz#836ada0a9e7a7fa37cb138fb9326f87934a48395" 725 | dependencies: 726 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 727 | babel-plugin-transform-async-generator-functions "^6.24.1" 728 | babel-plugin-transform-async-to-generator "^6.24.1" 729 | babel-plugin-transform-exponentiation-operator "^6.24.1" 730 | babel-plugin-transform-object-rest-spread "^6.22.0" 731 | 732 | babel-register@^6.26.0: 733 | version "6.26.0" 734 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 735 | dependencies: 736 | babel-core "^6.26.0" 737 | babel-runtime "^6.26.0" 738 | core-js "^2.5.0" 739 | home-or-tmp "^2.0.0" 740 | lodash "^4.17.4" 741 | mkdirp "^0.5.1" 742 | source-map-support "^0.4.15" 743 | 744 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 745 | version "6.26.0" 746 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 747 | dependencies: 748 | core-js "^2.4.0" 749 | regenerator-runtime "^0.11.0" 750 | 751 | babel-template@^6.24.1, babel-template@^6.26.0: 752 | version "6.26.0" 753 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 754 | dependencies: 755 | babel-runtime "^6.26.0" 756 | babel-traverse "^6.26.0" 757 | babel-types "^6.26.0" 758 | babylon "^6.18.0" 759 | lodash "^4.17.4" 760 | 761 | babel-traverse@^6.24.1, babel-traverse@^6.26.0: 762 | version "6.26.0" 763 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 764 | dependencies: 765 | babel-code-frame "^6.26.0" 766 | babel-messages "^6.23.0" 767 | babel-runtime "^6.26.0" 768 | babel-types "^6.26.0" 769 | babylon "^6.18.0" 770 | debug "^2.6.8" 771 | globals "^9.18.0" 772 | invariant "^2.2.2" 773 | lodash "^4.17.4" 774 | 775 | babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: 776 | version "6.26.0" 777 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 778 | dependencies: 779 | babel-runtime "^6.26.0" 780 | esutils "^2.0.2" 781 | lodash "^4.17.4" 782 | to-fast-properties "^1.0.3" 783 | 784 | babylon@^6.18.0: 785 | version "6.18.0" 786 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 787 | 788 | balanced-match@^1.0.0: 789 | version "1.0.0" 790 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 791 | 792 | bcrypt-pbkdf@^1.0.0: 793 | version "1.0.1" 794 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 795 | dependencies: 796 | tweetnacl "^0.14.3" 797 | 798 | binary-extensions@^1.0.0: 799 | version "1.10.0" 800 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.10.0.tgz#9aeb9a6c5e88638aad171e167f5900abe24835d0" 801 | 802 | block-stream@*: 803 | version "0.0.9" 804 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 805 | dependencies: 806 | inherits "~2.0.0" 807 | 808 | boom@2.x.x: 809 | version "2.10.1" 810 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 811 | dependencies: 812 | hoek "2.x.x" 813 | 814 | brace-expansion@^1.1.7: 815 | version "1.1.8" 816 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 817 | dependencies: 818 | balanced-match "^1.0.0" 819 | concat-map "0.0.1" 820 | 821 | braces@^1.8.2: 822 | version "1.8.5" 823 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 824 | dependencies: 825 | expand-range "^1.8.1" 826 | preserve "^0.2.0" 827 | repeat-element "^1.1.2" 828 | 829 | caseless@~0.12.0: 830 | version "0.12.0" 831 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 832 | 833 | chalk@^1.1.3: 834 | version "1.1.3" 835 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 836 | dependencies: 837 | ansi-styles "^2.2.1" 838 | escape-string-regexp "^1.0.2" 839 | has-ansi "^2.0.0" 840 | strip-ansi "^3.0.0" 841 | supports-color "^2.0.0" 842 | 843 | chokidar@^1.6.1: 844 | version "1.7.0" 845 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 846 | dependencies: 847 | anymatch "^1.3.0" 848 | async-each "^1.0.0" 849 | glob-parent "^2.0.0" 850 | inherits "^2.0.1" 851 | is-binary-path "^1.0.0" 852 | is-glob "^2.0.0" 853 | path-is-absolute "^1.0.0" 854 | readdirp "^2.0.0" 855 | optionalDependencies: 856 | fsevents "^1.0.0" 857 | 858 | co@^4.6.0: 859 | version "4.6.0" 860 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 861 | 862 | code-point-at@^1.0.0: 863 | version "1.1.0" 864 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 865 | 866 | combined-stream@^1.0.5, combined-stream@~1.0.5: 867 | version "1.0.5" 868 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 869 | dependencies: 870 | delayed-stream "~1.0.0" 871 | 872 | commander@^2.11.0: 873 | version "2.11.0" 874 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563" 875 | 876 | concat-map@0.0.1: 877 | version "0.0.1" 878 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 879 | 880 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 881 | version "1.1.0" 882 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 883 | 884 | convert-source-map@^1.5.0: 885 | version "1.5.0" 886 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 887 | 888 | core-js@^1.0.0: 889 | version "1.2.7" 890 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 891 | 892 | core-js@^2.4.0, core-js@^2.5.0: 893 | version "2.5.0" 894 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.0.tgz#569c050918be6486b3837552028ae0466b717086" 895 | 896 | core-util-is@1.0.2, core-util-is@~1.0.0: 897 | version "1.0.2" 898 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 899 | 900 | cryptiles@2.x.x: 901 | version "2.0.5" 902 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 903 | dependencies: 904 | boom "2.x.x" 905 | 906 | dashdash@^1.12.0: 907 | version "1.14.1" 908 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 909 | dependencies: 910 | assert-plus "^1.0.0" 911 | 912 | debug@^2.2.0, debug@^2.6.8: 913 | version "2.6.8" 914 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 915 | dependencies: 916 | ms "2.0.0" 917 | 918 | deep-extend@~0.4.0: 919 | version "0.4.2" 920 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 921 | 922 | delayed-stream@~1.0.0: 923 | version "1.0.0" 924 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 925 | 926 | delegates@^1.0.0: 927 | version "1.0.0" 928 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 929 | 930 | detect-indent@^4.0.0: 931 | version "4.0.0" 932 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 933 | dependencies: 934 | repeating "^2.0.0" 935 | 936 | ecc-jsbn@~0.1.1: 937 | version "0.1.1" 938 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 939 | dependencies: 940 | jsbn "~0.1.0" 941 | 942 | encoding@^0.1.11: 943 | version "0.1.12" 944 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 945 | dependencies: 946 | iconv-lite "~0.4.13" 947 | 948 | escape-string-regexp@^1.0.2: 949 | version "1.0.5" 950 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 951 | 952 | esutils@^2.0.2: 953 | version "2.0.2" 954 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 955 | 956 | expand-brackets@^0.1.4: 957 | version "0.1.5" 958 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 959 | dependencies: 960 | is-posix-bracket "^0.1.0" 961 | 962 | expand-range@^1.8.1: 963 | version "1.8.2" 964 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 965 | dependencies: 966 | fill-range "^2.1.0" 967 | 968 | extend@~3.0.0: 969 | version "3.0.1" 970 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 971 | 972 | extglob@^0.3.1: 973 | version "0.3.2" 974 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 975 | dependencies: 976 | is-extglob "^1.0.0" 977 | 978 | extsprintf@1.3.0, extsprintf@^1.2.0: 979 | version "1.3.0" 980 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 981 | 982 | fbjs@^0.8.9: 983 | version "0.8.14" 984 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.14.tgz#d1dbe2be254c35a91e09f31f9cd50a40b2a0ed1c" 985 | dependencies: 986 | core-js "^1.0.0" 987 | isomorphic-fetch "^2.1.1" 988 | loose-envify "^1.0.0" 989 | object-assign "^4.1.0" 990 | promise "^7.1.1" 991 | setimmediate "^1.0.5" 992 | ua-parser-js "^0.7.9" 993 | 994 | filename-regex@^2.0.0: 995 | version "2.0.1" 996 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 997 | 998 | fill-range@^2.1.0: 999 | version "2.2.3" 1000 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1001 | dependencies: 1002 | is-number "^2.1.0" 1003 | isobject "^2.0.0" 1004 | randomatic "^1.1.3" 1005 | repeat-element "^1.1.2" 1006 | repeat-string "^1.5.2" 1007 | 1008 | for-in@^1.0.1: 1009 | version "1.0.2" 1010 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1011 | 1012 | for-own@^0.1.4: 1013 | version "0.1.5" 1014 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1015 | dependencies: 1016 | for-in "^1.0.1" 1017 | 1018 | forever-agent@~0.6.1: 1019 | version "0.6.1" 1020 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1021 | 1022 | form-data@~2.1.1: 1023 | version "2.1.4" 1024 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1025 | dependencies: 1026 | asynckit "^0.4.0" 1027 | combined-stream "^1.0.5" 1028 | mime-types "^2.1.12" 1029 | 1030 | fs-readdir-recursive@^1.0.0: 1031 | version "1.0.0" 1032 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 1033 | 1034 | fs.realpath@^1.0.0: 1035 | version "1.0.0" 1036 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1037 | 1038 | fsevents@^1.0.0: 1039 | version "1.1.2" 1040 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4" 1041 | dependencies: 1042 | nan "^2.3.0" 1043 | node-pre-gyp "^0.6.36" 1044 | 1045 | fstream-ignore@^1.0.5: 1046 | version "1.0.5" 1047 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1048 | dependencies: 1049 | fstream "^1.0.0" 1050 | inherits "2" 1051 | minimatch "^3.0.0" 1052 | 1053 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1054 | version "1.0.11" 1055 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1056 | dependencies: 1057 | graceful-fs "^4.1.2" 1058 | inherits "~2.0.0" 1059 | mkdirp ">=0.5 0" 1060 | rimraf "2" 1061 | 1062 | gauge@~2.7.3: 1063 | version "2.7.4" 1064 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1065 | dependencies: 1066 | aproba "^1.0.3" 1067 | console-control-strings "^1.0.0" 1068 | has-unicode "^2.0.0" 1069 | object-assign "^4.1.0" 1070 | signal-exit "^3.0.0" 1071 | string-width "^1.0.1" 1072 | strip-ansi "^3.0.1" 1073 | wide-align "^1.1.0" 1074 | 1075 | getpass@^0.1.1: 1076 | version "0.1.7" 1077 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1078 | dependencies: 1079 | assert-plus "^1.0.0" 1080 | 1081 | glob-base@^0.3.0: 1082 | version "0.3.0" 1083 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1084 | dependencies: 1085 | glob-parent "^2.0.0" 1086 | is-glob "^2.0.0" 1087 | 1088 | glob-parent@^2.0.0: 1089 | version "2.0.0" 1090 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1091 | dependencies: 1092 | is-glob "^2.0.0" 1093 | 1094 | glob@^7.0.5, glob@^7.1.2: 1095 | version "7.1.2" 1096 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1097 | dependencies: 1098 | fs.realpath "^1.0.0" 1099 | inflight "^1.0.4" 1100 | inherits "2" 1101 | minimatch "^3.0.4" 1102 | once "^1.3.0" 1103 | path-is-absolute "^1.0.0" 1104 | 1105 | globals@^9.18.0: 1106 | version "9.18.0" 1107 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1108 | 1109 | graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1110 | version "4.1.11" 1111 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1112 | 1113 | har-schema@^1.0.5: 1114 | version "1.0.5" 1115 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1116 | 1117 | har-validator@~4.2.1: 1118 | version "4.2.1" 1119 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1120 | dependencies: 1121 | ajv "^4.9.1" 1122 | har-schema "^1.0.5" 1123 | 1124 | has-ansi@^2.0.0: 1125 | version "2.0.0" 1126 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1127 | dependencies: 1128 | ansi-regex "^2.0.0" 1129 | 1130 | has-unicode@^2.0.0: 1131 | version "2.0.1" 1132 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1133 | 1134 | hawk@~3.1.3: 1135 | version "3.1.3" 1136 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1137 | dependencies: 1138 | boom "2.x.x" 1139 | cryptiles "2.x.x" 1140 | hoek "2.x.x" 1141 | sntp "1.x.x" 1142 | 1143 | hoek@2.x.x: 1144 | version "2.16.3" 1145 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1146 | 1147 | hoist-non-react-statics@^3.0.1: 1148 | version "3.0.1" 1149 | resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.0.1.tgz#fba3e7df0210eb9447757ca1a7cb607162f0a364" 1150 | dependencies: 1151 | react-is "^16.3.2" 1152 | 1153 | home-or-tmp@^2.0.0: 1154 | version "2.0.0" 1155 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1156 | dependencies: 1157 | os-homedir "^1.0.0" 1158 | os-tmpdir "^1.0.1" 1159 | 1160 | http-signature@~1.1.0: 1161 | version "1.1.1" 1162 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1163 | dependencies: 1164 | assert-plus "^0.2.0" 1165 | jsprim "^1.2.2" 1166 | sshpk "^1.7.0" 1167 | 1168 | iconv-lite@~0.4.13: 1169 | version "0.4.18" 1170 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.18.tgz#23d8656b16aae6742ac29732ea8f0336a4789cf2" 1171 | 1172 | inflight@^1.0.4: 1173 | version "1.0.6" 1174 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1175 | dependencies: 1176 | once "^1.3.0" 1177 | wrappy "1" 1178 | 1179 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.3: 1180 | version "2.0.3" 1181 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1182 | 1183 | ini@~1.3.0: 1184 | version "1.3.4" 1185 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1186 | 1187 | invariant@^2.2.2: 1188 | version "2.2.2" 1189 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1190 | dependencies: 1191 | loose-envify "^1.0.0" 1192 | 1193 | is-binary-path@^1.0.0: 1194 | version "1.0.1" 1195 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1196 | dependencies: 1197 | binary-extensions "^1.0.0" 1198 | 1199 | is-buffer@^1.1.5: 1200 | version "1.1.5" 1201 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1202 | 1203 | is-dotfile@^1.0.0: 1204 | version "1.0.3" 1205 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1206 | 1207 | is-equal-shallow@^0.1.3: 1208 | version "0.1.3" 1209 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1210 | dependencies: 1211 | is-primitive "^2.0.0" 1212 | 1213 | is-extendable@^0.1.1: 1214 | version "0.1.1" 1215 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1216 | 1217 | is-extglob@^1.0.0: 1218 | version "1.0.0" 1219 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1220 | 1221 | is-finite@^1.0.0: 1222 | version "1.0.2" 1223 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1224 | dependencies: 1225 | number-is-nan "^1.0.0" 1226 | 1227 | is-fullwidth-code-point@^1.0.0: 1228 | version "1.0.0" 1229 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1230 | dependencies: 1231 | number-is-nan "^1.0.0" 1232 | 1233 | is-glob@^2.0.0, is-glob@^2.0.1: 1234 | version "2.0.1" 1235 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1236 | dependencies: 1237 | is-extglob "^1.0.0" 1238 | 1239 | is-number@^2.1.0: 1240 | version "2.1.0" 1241 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1242 | dependencies: 1243 | kind-of "^3.0.2" 1244 | 1245 | is-number@^3.0.0: 1246 | version "3.0.0" 1247 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1248 | dependencies: 1249 | kind-of "^3.0.2" 1250 | 1251 | is-posix-bracket@^0.1.0: 1252 | version "0.1.1" 1253 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1254 | 1255 | is-primitive@^2.0.0: 1256 | version "2.0.0" 1257 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1258 | 1259 | is-stream@^1.0.1: 1260 | version "1.1.0" 1261 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1262 | 1263 | is-typedarray@~1.0.0: 1264 | version "1.0.0" 1265 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1266 | 1267 | isarray@1.0.0, isarray@~1.0.0: 1268 | version "1.0.0" 1269 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1270 | 1271 | isobject@^2.0.0: 1272 | version "2.1.0" 1273 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1274 | dependencies: 1275 | isarray "1.0.0" 1276 | 1277 | isomorphic-fetch@^2.1.1: 1278 | version "2.2.1" 1279 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" 1280 | dependencies: 1281 | node-fetch "^1.0.1" 1282 | whatwg-fetch ">=0.10.0" 1283 | 1284 | isstream@~0.1.2: 1285 | version "0.1.2" 1286 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1287 | 1288 | js-tokens@^3.0.0, js-tokens@^3.0.2: 1289 | version "3.0.2" 1290 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1291 | 1292 | jsbn@~0.1.0: 1293 | version "0.1.1" 1294 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1295 | 1296 | jsesc@^1.3.0: 1297 | version "1.3.0" 1298 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1299 | 1300 | jsesc@~0.5.0: 1301 | version "0.5.0" 1302 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1303 | 1304 | json-schema@0.2.3: 1305 | version "0.2.3" 1306 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1307 | 1308 | json-stable-stringify@^1.0.1: 1309 | version "1.0.1" 1310 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1311 | dependencies: 1312 | jsonify "~0.0.0" 1313 | 1314 | json-stringify-safe@~5.0.1: 1315 | version "5.0.1" 1316 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1317 | 1318 | json5@^0.5.1: 1319 | version "0.5.1" 1320 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1321 | 1322 | jsonify@~0.0.0: 1323 | version "0.0.0" 1324 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1325 | 1326 | jsprim@^1.2.2: 1327 | version "1.4.1" 1328 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1329 | dependencies: 1330 | assert-plus "1.0.0" 1331 | extsprintf "1.3.0" 1332 | json-schema "0.2.3" 1333 | verror "1.10.0" 1334 | 1335 | kind-of@^3.0.2: 1336 | version "3.2.2" 1337 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1338 | dependencies: 1339 | is-buffer "^1.1.5" 1340 | 1341 | kind-of@^4.0.0: 1342 | version "4.0.0" 1343 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1344 | dependencies: 1345 | is-buffer "^1.1.5" 1346 | 1347 | lodash@^4.17.4: 1348 | version "4.17.4" 1349 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1350 | 1351 | loose-envify@^1.0.0, loose-envify@^1.3.1: 1352 | version "1.3.1" 1353 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1354 | dependencies: 1355 | js-tokens "^3.0.0" 1356 | 1357 | micromatch@^2.1.5: 1358 | version "2.3.11" 1359 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1360 | dependencies: 1361 | arr-diff "^2.0.0" 1362 | array-unique "^0.2.1" 1363 | braces "^1.8.2" 1364 | expand-brackets "^0.1.4" 1365 | extglob "^0.3.1" 1366 | filename-regex "^2.0.0" 1367 | is-extglob "^1.0.0" 1368 | is-glob "^2.0.1" 1369 | kind-of "^3.0.2" 1370 | normalize-path "^2.0.1" 1371 | object.omit "^2.0.0" 1372 | parse-glob "^3.0.4" 1373 | regex-cache "^0.4.2" 1374 | 1375 | mime-db@~1.29.0: 1376 | version "1.29.0" 1377 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.29.0.tgz#48d26d235589651704ac5916ca06001914266878" 1378 | 1379 | mime-types@^2.1.12, mime-types@~2.1.7: 1380 | version "2.1.16" 1381 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.16.tgz#2b858a52e5ecd516db897ac2be87487830698e23" 1382 | dependencies: 1383 | mime-db "~1.29.0" 1384 | 1385 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 1386 | version "3.0.4" 1387 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1388 | dependencies: 1389 | brace-expansion "^1.1.7" 1390 | 1391 | minimist@0.0.8: 1392 | version "0.0.8" 1393 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1394 | 1395 | minimist@^1.2.0: 1396 | version "1.2.0" 1397 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1398 | 1399 | "mkdirp@>=0.5 0", mkdirp@^0.5.1: 1400 | version "0.5.1" 1401 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1402 | dependencies: 1403 | minimist "0.0.8" 1404 | 1405 | ms@2.0.0: 1406 | version "2.0.0" 1407 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1408 | 1409 | nan@^2.3.0: 1410 | version "2.6.2" 1411 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45" 1412 | 1413 | node-fetch@^1.0.1: 1414 | version "1.7.2" 1415 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.2.tgz#c54e9aac57e432875233525f3c891c4159ffefd7" 1416 | dependencies: 1417 | encoding "^0.1.11" 1418 | is-stream "^1.0.1" 1419 | 1420 | node-pre-gyp@^0.6.36: 1421 | version "0.6.36" 1422 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz#db604112cb74e0d477554e9b505b17abddfab786" 1423 | dependencies: 1424 | mkdirp "^0.5.1" 1425 | nopt "^4.0.1" 1426 | npmlog "^4.0.2" 1427 | rc "^1.1.7" 1428 | request "^2.81.0" 1429 | rimraf "^2.6.1" 1430 | semver "^5.3.0" 1431 | tar "^2.2.1" 1432 | tar-pack "^3.4.0" 1433 | 1434 | nopt@^4.0.1: 1435 | version "4.0.1" 1436 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1437 | dependencies: 1438 | abbrev "1" 1439 | osenv "^0.1.4" 1440 | 1441 | normalize-path@^2.0.0, normalize-path@^2.0.1: 1442 | version "2.1.1" 1443 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1444 | dependencies: 1445 | remove-trailing-separator "^1.0.1" 1446 | 1447 | npmlog@^4.0.2: 1448 | version "4.1.2" 1449 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 1450 | dependencies: 1451 | are-we-there-yet "~1.1.2" 1452 | console-control-strings "~1.1.0" 1453 | gauge "~2.7.3" 1454 | set-blocking "~2.0.0" 1455 | 1456 | number-is-nan@^1.0.0: 1457 | version "1.0.1" 1458 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1459 | 1460 | oauth-sign@~0.8.1: 1461 | version "0.8.2" 1462 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1463 | 1464 | object-assign@^4.1.0: 1465 | version "4.1.1" 1466 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1467 | 1468 | object.omit@^2.0.0: 1469 | version "2.0.1" 1470 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1471 | dependencies: 1472 | for-own "^0.1.4" 1473 | is-extendable "^0.1.1" 1474 | 1475 | once@^1.3.0, once@^1.3.3: 1476 | version "1.4.0" 1477 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1478 | dependencies: 1479 | wrappy "1" 1480 | 1481 | os-homedir@^1.0.0: 1482 | version "1.0.2" 1483 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1484 | 1485 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 1486 | version "1.0.2" 1487 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1488 | 1489 | osenv@^0.1.4: 1490 | version "0.1.4" 1491 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 1492 | dependencies: 1493 | os-homedir "^1.0.0" 1494 | os-tmpdir "^1.0.0" 1495 | 1496 | output-file-sync@^1.1.2: 1497 | version "1.1.2" 1498 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 1499 | dependencies: 1500 | graceful-fs "^4.1.4" 1501 | mkdirp "^0.5.1" 1502 | object-assign "^4.1.0" 1503 | 1504 | parse-glob@^3.0.4: 1505 | version "3.0.4" 1506 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1507 | dependencies: 1508 | glob-base "^0.3.0" 1509 | is-dotfile "^1.0.0" 1510 | is-extglob "^1.0.0" 1511 | is-glob "^2.0.0" 1512 | 1513 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 1514 | version "1.0.1" 1515 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1516 | 1517 | performance-now@^0.2.0: 1518 | version "0.2.0" 1519 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 1520 | 1521 | preserve@^0.2.0: 1522 | version "0.2.0" 1523 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1524 | 1525 | private@^0.1.6, private@^0.1.7: 1526 | version "0.1.7" 1527 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 1528 | 1529 | process-nextick-args@~1.0.6: 1530 | version "1.0.7" 1531 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1532 | 1533 | promise@^7.1.1: 1534 | version "7.3.1" 1535 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" 1536 | dependencies: 1537 | asap "~2.0.3" 1538 | 1539 | prop-types@^15.5.10: 1540 | version "15.5.10" 1541 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.5.10.tgz#2797dfc3126182e3a95e3dfbb2e893ddd7456154" 1542 | dependencies: 1543 | fbjs "^0.8.9" 1544 | loose-envify "^1.3.1" 1545 | 1546 | punycode@^1.4.1: 1547 | version "1.4.1" 1548 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1549 | 1550 | qs@~6.4.0: 1551 | version "6.4.0" 1552 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 1553 | 1554 | randomatic@^1.1.3: 1555 | version "1.1.7" 1556 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 1557 | dependencies: 1558 | is-number "^3.0.0" 1559 | kind-of "^4.0.0" 1560 | 1561 | rc@^1.1.7: 1562 | version "1.2.1" 1563 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 1564 | dependencies: 1565 | deep-extend "~0.4.0" 1566 | ini "~1.3.0" 1567 | minimist "^1.2.0" 1568 | strip-json-comments "~2.0.1" 1569 | 1570 | react-is@^16.3.2: 1571 | version "16.4.2" 1572 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.4.2.tgz#84891b56c2b6d9efdee577cc83501dfc5ecead88" 1573 | 1574 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4: 1575 | version "2.3.3" 1576 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 1577 | dependencies: 1578 | core-util-is "~1.0.0" 1579 | inherits "~2.0.3" 1580 | isarray "~1.0.0" 1581 | process-nextick-args "~1.0.6" 1582 | safe-buffer "~5.1.1" 1583 | string_decoder "~1.0.3" 1584 | util-deprecate "~1.0.1" 1585 | 1586 | readdirp@^2.0.0: 1587 | version "2.1.0" 1588 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 1589 | dependencies: 1590 | graceful-fs "^4.1.2" 1591 | minimatch "^3.0.2" 1592 | readable-stream "^2.0.2" 1593 | set-immediate-shim "^1.0.1" 1594 | 1595 | regenerate@^1.2.1: 1596 | version "1.3.2" 1597 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 1598 | 1599 | regenerator-runtime@^0.10.5: 1600 | version "0.10.5" 1601 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 1602 | 1603 | regenerator-runtime@^0.11.0: 1604 | version "0.11.0" 1605 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1" 1606 | 1607 | regenerator-transform@^0.10.0: 1608 | version "0.10.1" 1609 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 1610 | dependencies: 1611 | babel-runtime "^6.18.0" 1612 | babel-types "^6.19.0" 1613 | private "^0.1.6" 1614 | 1615 | regex-cache@^0.4.2: 1616 | version "0.4.3" 1617 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 1618 | dependencies: 1619 | is-equal-shallow "^0.1.3" 1620 | is-primitive "^2.0.0" 1621 | 1622 | regexpu-core@^2.0.0: 1623 | version "2.0.0" 1624 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 1625 | dependencies: 1626 | regenerate "^1.2.1" 1627 | regjsgen "^0.2.0" 1628 | regjsparser "^0.1.4" 1629 | 1630 | regjsgen@^0.2.0: 1631 | version "0.2.0" 1632 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 1633 | 1634 | regjsparser@^0.1.4: 1635 | version "0.1.5" 1636 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 1637 | dependencies: 1638 | jsesc "~0.5.0" 1639 | 1640 | remove-trailing-separator@^1.0.1: 1641 | version "1.1.0" 1642 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 1643 | 1644 | repeat-element@^1.1.2: 1645 | version "1.1.2" 1646 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1647 | 1648 | repeat-string@^1.5.2: 1649 | version "1.6.1" 1650 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1651 | 1652 | repeating@^2.0.0: 1653 | version "2.0.1" 1654 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1655 | dependencies: 1656 | is-finite "^1.0.0" 1657 | 1658 | request@^2.81.0: 1659 | version "2.81.0" 1660 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 1661 | dependencies: 1662 | aws-sign2 "~0.6.0" 1663 | aws4 "^1.2.1" 1664 | caseless "~0.12.0" 1665 | combined-stream "~1.0.5" 1666 | extend "~3.0.0" 1667 | forever-agent "~0.6.1" 1668 | form-data "~2.1.1" 1669 | har-validator "~4.2.1" 1670 | hawk "~3.1.3" 1671 | http-signature "~1.1.0" 1672 | is-typedarray "~1.0.0" 1673 | isstream "~0.1.2" 1674 | json-stringify-safe "~5.0.1" 1675 | mime-types "~2.1.7" 1676 | oauth-sign "~0.8.1" 1677 | performance-now "^0.2.0" 1678 | qs "~6.4.0" 1679 | safe-buffer "^5.0.1" 1680 | stringstream "~0.0.4" 1681 | tough-cookie "~2.3.0" 1682 | tunnel-agent "^0.6.0" 1683 | uuid "^3.0.0" 1684 | 1685 | rimraf@2, rimraf@^2.5.1, rimraf@^2.6.1: 1686 | version "2.6.1" 1687 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 1688 | dependencies: 1689 | glob "^7.0.5" 1690 | 1691 | safe-buffer@^5.0.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 1692 | version "5.1.1" 1693 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 1694 | 1695 | scrollmonitor@^1.1.1: 1696 | version "1.2.3" 1697 | resolved "https://registry.yarnpkg.com/scrollmonitor/-/scrollmonitor-1.2.3.tgz#87bf912ca28da64796f529e8129fa4a9b106fb74" 1698 | 1699 | semver@^5.3.0: 1700 | version "5.4.1" 1701 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 1702 | 1703 | set-blocking@~2.0.0: 1704 | version "2.0.0" 1705 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1706 | 1707 | set-immediate-shim@^1.0.1: 1708 | version "1.0.1" 1709 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 1710 | 1711 | setimmediate@^1.0.5: 1712 | version "1.0.5" 1713 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 1714 | 1715 | signal-exit@^3.0.0: 1716 | version "3.0.2" 1717 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 1718 | 1719 | slash@^1.0.0: 1720 | version "1.0.0" 1721 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 1722 | 1723 | sntp@1.x.x: 1724 | version "1.0.9" 1725 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 1726 | dependencies: 1727 | hoek "2.x.x" 1728 | 1729 | source-map-support@^0.4.15: 1730 | version "0.4.16" 1731 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.16.tgz#16fecf98212467d017d586a2af68d628b9421cd8" 1732 | dependencies: 1733 | source-map "^0.5.6" 1734 | 1735 | source-map@^0.5.6: 1736 | version "0.5.7" 1737 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 1738 | 1739 | sshpk@^1.7.0: 1740 | version "1.13.1" 1741 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 1742 | dependencies: 1743 | asn1 "~0.2.3" 1744 | assert-plus "^1.0.0" 1745 | dashdash "^1.12.0" 1746 | getpass "^0.1.1" 1747 | optionalDependencies: 1748 | bcrypt-pbkdf "^1.0.0" 1749 | ecc-jsbn "~0.1.1" 1750 | jsbn "~0.1.0" 1751 | tweetnacl "~0.14.0" 1752 | 1753 | string-width@^1.0.1, string-width@^1.0.2: 1754 | version "1.0.2" 1755 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1756 | dependencies: 1757 | code-point-at "^1.0.0" 1758 | is-fullwidth-code-point "^1.0.0" 1759 | strip-ansi "^3.0.0" 1760 | 1761 | string_decoder@~1.0.3: 1762 | version "1.0.3" 1763 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 1764 | dependencies: 1765 | safe-buffer "~5.1.0" 1766 | 1767 | stringstream@~0.0.4: 1768 | version "0.0.5" 1769 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 1770 | 1771 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 1772 | version "3.0.1" 1773 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1774 | dependencies: 1775 | ansi-regex "^2.0.0" 1776 | 1777 | strip-json-comments@~2.0.1: 1778 | version "2.0.1" 1779 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 1780 | 1781 | supports-color@^2.0.0: 1782 | version "2.0.0" 1783 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 1784 | 1785 | tar-pack@^3.4.0: 1786 | version "3.4.0" 1787 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 1788 | dependencies: 1789 | debug "^2.2.0" 1790 | fstream "^1.0.10" 1791 | fstream-ignore "^1.0.5" 1792 | once "^1.3.3" 1793 | readable-stream "^2.1.4" 1794 | rimraf "^2.5.1" 1795 | tar "^2.2.1" 1796 | uid-number "^0.0.6" 1797 | 1798 | tar@^2.2.1: 1799 | version "2.2.1" 1800 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 1801 | dependencies: 1802 | block-stream "*" 1803 | fstream "^1.0.2" 1804 | inherits "2" 1805 | 1806 | to-fast-properties@^1.0.3: 1807 | version "1.0.3" 1808 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 1809 | 1810 | tough-cookie@~2.3.0: 1811 | version "2.3.2" 1812 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 1813 | dependencies: 1814 | punycode "^1.4.1" 1815 | 1816 | trim-right@^1.0.1: 1817 | version "1.0.1" 1818 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 1819 | 1820 | tunnel-agent@^0.6.0: 1821 | version "0.6.0" 1822 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 1823 | dependencies: 1824 | safe-buffer "^5.0.1" 1825 | 1826 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 1827 | version "0.14.5" 1828 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 1829 | 1830 | ua-parser-js@^0.7.9: 1831 | version "0.7.14" 1832 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.14.tgz#110d53fa4c3f326c121292bbeac904d2e03387ca" 1833 | 1834 | uid-number@^0.0.6: 1835 | version "0.0.6" 1836 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 1837 | 1838 | user-home@^1.1.1: 1839 | version "1.1.1" 1840 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 1841 | 1842 | util-deprecate@~1.0.1: 1843 | version "1.0.2" 1844 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1845 | 1846 | uuid@^3.0.0: 1847 | version "3.1.0" 1848 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 1849 | 1850 | v8flags@^2.1.1: 1851 | version "2.1.1" 1852 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 1853 | dependencies: 1854 | user-home "^1.1.1" 1855 | 1856 | verror@1.10.0: 1857 | version "1.10.0" 1858 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 1859 | dependencies: 1860 | assert-plus "^1.0.0" 1861 | core-util-is "1.0.2" 1862 | extsprintf "^1.2.0" 1863 | 1864 | whatwg-fetch@>=0.10.0: 1865 | version "2.0.3" 1866 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz#9c84ec2dcf68187ff00bc64e1274b442176e1c84" 1867 | 1868 | wide-align@^1.1.0: 1869 | version "1.1.2" 1870 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 1871 | dependencies: 1872 | string-width "^1.0.2" 1873 | 1874 | wrappy@1: 1875 | version "1.0.2" 1876 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1877 | --------------------------------------------------------------------------------