├── .gitignore
├── .travis.yml
├── offramp_logo.jpeg
├── lib
├── redux
│ ├── History.js
│ ├── actions.js
│ ├── index.js
│ ├── reducers.js
│ ├── Link.jsx
│ ├── Route.jsx
│ └── Router.jsx
├── basic
│ ├── index.js
│ ├── Link.jsx
│ ├── Route.jsx
│ └── Router.jsx
├── mobx
│ ├── index.js
│ ├── Link.jsx
│ ├── RouterStore.jsx
│ ├── Route.jsx
│ └── Router.jsx
└── utils.js
├── example
├── basic
│ ├── client
│ │ ├── components
│ │ │ ├── NotFound.jsx
│ │ │ ├── About.jsx
│ │ │ ├── Default.jsx
│ │ │ ├── User.jsx
│ │ │ ├── Users.jsx
│ │ │ ├── Main.jsx
│ │ │ ├── Nav.jsx
│ │ │ ├── App.jsx
│ │ │ └── Home.jsx
│ │ ├── stores
│ │ │ └── app.js
│ │ └── index.jsx
│ ├── dist
│ │ └── index.html
│ └── server
│ │ └── app.js
├── mobx
│ ├── client
│ │ ├── components
│ │ │ ├── NotFound.jsx
│ │ │ ├── About.jsx
│ │ │ ├── Main.jsx
│ │ │ ├── Nav.jsx
│ │ │ ├── App.jsx
│ │ │ ├── Home.jsx
│ │ │ └── HooksList.jsx
│ │ ├── stores
│ │ │ └── app.js
│ │ └── index.jsx
│ ├── dist
│ │ └── index.html
│ └── server
│ │ └── app.js
└── redux
│ ├── client
│ ├── components
│ │ ├── NotFound.jsx
│ │ ├── About.jsx
│ │ ├── Users.jsx
│ │ ├── User.jsx
│ │ ├── Home.jsx
│ │ ├── Main.jsx
│ │ ├── Hooks.jsx
│ │ ├── Nav.jsx
│ │ └── App.jsx
│ ├── stores
│ │ └── app.js
│ └── index.jsx
│ ├── dist
│ └── index.html
│ └── server
│ └── app.js
├── .babelrc
├── test
└── index.js
├── webpack.config.js
├── .eslintrc
├── package.json
├── README.md
└── yarn.lock
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | npm-debug.log
3 | .DS_STORE
4 | .VSCODE
5 | bundle.js
6 |
--------------------------------------------------------------------------------
/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "6"
4 | script:
5 | - yarn lint
6 |
--------------------------------------------------------------------------------
/offramp_logo.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elefanty/offramp/HEAD/offramp_logo.jpeg
--------------------------------------------------------------------------------
/lib/redux/History.js:
--------------------------------------------------------------------------------
1 | import createBrowserHistory from 'history/createBrowserHistory';
2 |
3 | export default createBrowserHistory();
--------------------------------------------------------------------------------
/lib/redux/actions.js:
--------------------------------------------------------------------------------
1 | const changePathname = (pathname) => ({
2 | type: 'PATHNAME_CHANGE',
3 | pathname
4 | });
5 |
6 | export default changePathname;
--------------------------------------------------------------------------------
/example/basic/client/components/NotFound.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 |
3 | function NotFound() {
4 | return
Not Found
;
5 | }
6 |
7 | export default NotFound;
8 |
--------------------------------------------------------------------------------
/example/mobx/client/components/NotFound.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 |
3 | function NotFound() {
4 | return Not Found
;
5 | }
6 |
7 | export default NotFound;
8 |
--------------------------------------------------------------------------------
/example/redux/client/components/NotFound.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 |
3 | function NotFound() {
4 | return Not Found
;
5 | }
6 |
7 | export default NotFound;
8 |
--------------------------------------------------------------------------------
/lib/basic/index.js:
--------------------------------------------------------------------------------
1 | import { Router } from './Router.jsx';
2 | import Route from './Route.jsx';
3 | import Link from './Link.jsx';
4 |
5 | export {
6 | Router,
7 | Route,
8 | Link
9 | };
--------------------------------------------------------------------------------
/example/basic/client/components/About.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 |
3 | function About() {
4 | return (
5 |
6 |
About
7 |
8 | );
9 | }
10 |
11 | export default About;
12 |
--------------------------------------------------------------------------------
/example/mobx/client/components/About.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 |
3 | function About() {
4 | return (
5 |
6 |
About
7 |
8 | );
9 | }
10 |
11 | export default About;
12 |
--------------------------------------------------------------------------------
/example/redux/client/components/About.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 |
3 | function About() {
4 | return (
5 |
6 |
About
7 |
8 | );
9 | }
10 |
11 | export default About;
12 |
--------------------------------------------------------------------------------
/example/basic/client/components/Default.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 |
3 | function Default(props) {
4 | return (
5 |
6 |
Default
7 |
8 | );
9 | }
10 |
11 | export default Default;
--------------------------------------------------------------------------------
/example/basic/client/components/User.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 |
3 | function User(props) {
4 | return (
5 |
6 |
User: {props.params.id}
7 |
8 | );
9 | }
10 |
11 | export default User;
--------------------------------------------------------------------------------
/example/basic/client/components/Users.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 |
3 | function Users(props) {
4 | return (
5 |
6 |
Users
7 | {props.children}
8 |
9 | );
10 | }
11 |
12 | export default Users;
--------------------------------------------------------------------------------
/example/redux/client/components/Users.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 |
3 | function Users(props) {
4 | return (
5 |
6 |
Users
7 | {props.children}
8 |
9 | );
10 | }
11 |
12 | export default Users;
--------------------------------------------------------------------------------
/lib/mobx/index.js:
--------------------------------------------------------------------------------
1 | import Router from './Router.jsx';
2 | import Route from './Route.jsx';
3 | import Link from './Link.jsx';
4 | import RouterStore from './RouterStore.jsx';
5 |
6 | export {
7 | Router,
8 | Route,
9 | Link,
10 | RouterStore
11 | };
12 |
--------------------------------------------------------------------------------
/lib/redux/index.js:
--------------------------------------------------------------------------------
1 | import Router from './Router.jsx';
2 | import Route from './Route.jsx';
3 | import Link from './Link.jsx';
4 | import routerReducer from './reducers';
5 |
6 | export {
7 | Router,
8 | Route,
9 | Link,
10 | routerReducer
11 | };
12 |
--------------------------------------------------------------------------------
/.babelrc:
--------------------------------------------------------------------------------
1 | {
2 | "presets": [
3 | ["es2015", { "modules": false }],
4 | "react",
5 | "stage-2"
6 | ],
7 | "plugins": [
8 | "react-hot-loader/babel",
9 | "transform-decorators-legacy",
10 | "transform-class-properties"
11 | ]
12 | }
13 |
--------------------------------------------------------------------------------
/example/redux/client/components/User.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 |
3 | function User(props) {
4 | return (
5 |
6 |
User {props.params.id} {props.queries.name} {props.queries.age}
7 |
8 | );
9 | }
10 |
11 | export default User;
--------------------------------------------------------------------------------
/example/basic/dist/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Basic React Router Example
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/example/mobx/dist/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | MobX React Router Example
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/example/redux/dist/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Redux React Router Example
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/example/redux/client/components/Home.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 |
3 | function Home(props) {
4 | return (
5 |
6 |
Home
7 |
8 | );
9 | }
10 |
11 | Home.propTypes = {
12 | children: React.PropTypes.any
13 | };
14 |
15 | export default Home;
16 |
--------------------------------------------------------------------------------
/example/basic/client/components/Main.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 |
3 | import Nav from './Nav.jsx';
4 |
5 | function Main(props) {
6 | return (
7 |
8 |
9 | {props.children}
10 |
11 | );
12 | }
13 |
14 | Main.propTypes = {
15 | children: React.PropTypes.any
16 | };
17 |
18 | export default Main;
19 |
--------------------------------------------------------------------------------
/example/mobx/client/components/Main.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 |
3 | import Nav from './Nav.jsx';
4 |
5 | function Main(props) {
6 | return (
7 |
8 |
9 | {props.children}
10 |
11 | );
12 | }
13 |
14 | Main.propTypes = {
15 | children: React.PropTypes.any
16 | };
17 |
18 | export default Main;
19 |
--------------------------------------------------------------------------------
/example/redux/client/components/Main.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 |
3 | import Nav from './Nav.jsx';
4 |
5 | function Main(props) {
6 | return (
7 |
8 |
9 | {props.children}
10 |
11 | );
12 | }
13 |
14 | Main.propTypes = {
15 | children: React.PropTypes.any
16 | };
17 |
18 | export default Main;
19 |
--------------------------------------------------------------------------------
/example/mobx/client/components/Nav.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import { Link } from '../../../../lib/mobx';
3 |
4 | function Nav() {
5 | return (
6 |
11 | );
12 | }
13 |
14 | export default Nav;
15 |
--------------------------------------------------------------------------------
/example/redux/client/components/Hooks.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 |
3 | function Hooks(props) {
4 | console.log(props);
5 | return (
6 |
7 |
Hooks
8 |
9 | {props.data.map((hook, i) => (
10 | - {hook.name}
11 | ))}
12 |
13 | {props.children}
14 |
15 | );
16 | }
17 |
18 | export default Hooks;
19 |
--------------------------------------------------------------------------------
/lib/redux/reducers.js:
--------------------------------------------------------------------------------
1 | const initialState = {
2 | pathname: window.location.pathname
3 | }
4 |
5 | const router = (state = initialState, action) => {
6 | switch (action.type) {
7 | case 'PATHNAME_CHANGE':
8 | if(state.pathname === action.pathname) return state;
9 | return { pathname: action.pathname };
10 | default:
11 | return state;
12 | };
13 | };
14 |
15 | export default router;
--------------------------------------------------------------------------------
/example/basic/client/components/Nav.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import { Link } from '../../../../lib/basic';
3 |
4 | function Nav() {
5 | return (
6 |
12 | );
13 | }
14 |
15 | export default Nav;
16 |
--------------------------------------------------------------------------------
/example/mobx/client/stores/app.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import { observable, action, autorun, computed } from 'mobx';
3 |
4 | class AppStore {
5 | @observable todos = [];
6 |
7 | @action addTodo = (todo) => {
8 | this.todos.push({
9 | task: todo,
10 | completed: false
11 | });
12 | }
13 |
14 | @action toggleTodo = (index) => {
15 | this.todos[index].completed = !this.todos[index].completed;
16 | }
17 |
18 | }
19 |
20 | export default AppStore;
--------------------------------------------------------------------------------
/example/basic/client/stores/app.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import { observable, action, autorun, computed } from 'mobx';
3 |
4 | class AppStore {
5 | @observable todos = [];
6 |
7 | @action addTodo = (todo) => {
8 | this.todos.push({
9 | task: todo,
10 | completed: false
11 | });
12 | }
13 |
14 | @action toggleTodo = (index) => {
15 | this.todos[index].completed = !this.todos[index].completed;
16 | }
17 |
18 | }
19 |
20 | export default AppStore;
--------------------------------------------------------------------------------
/example/redux/client/components/Nav.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import { Link } from '../../../../lib/redux';
3 |
4 | function Nav() {
5 | return (
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 | );
14 | }
15 |
16 | export default Nav;
17 |
--------------------------------------------------------------------------------
/example/redux/client/stores/app.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import { observable, action, autorun, computed } from 'mobx';
3 |
4 | class AppStore {
5 | @observable todos = [];
6 |
7 | @action addTodo = (todo) => {
8 | this.todos.push({
9 | task: todo,
10 | completed: false
11 | });
12 | }
13 |
14 | @action toggleTodo = (index) => {
15 | this.todos[index].completed = !this.todos[index].completed;
16 | }
17 |
18 | }
19 |
20 | export default AppStore;
--------------------------------------------------------------------------------
/example/basic/client/index.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import ReactDOM from 'react-dom';
3 | import { AppContainer } from 'react-hot-loader';
4 |
5 | import App from './components/App.jsx';
6 |
7 | const render = (Component) => {
8 | ReactDOM.render(
9 |
10 |
11 | ,
12 | document.getElementById('root')
13 | );
14 | };
15 |
16 | render(App);
17 |
18 | if (module.hot) {
19 | module.hot.accept('./components/App.jsx', () => {
20 | render(App);
21 | });
22 | }
23 |
--------------------------------------------------------------------------------
/lib/redux/Link.jsx:
--------------------------------------------------------------------------------
1 | import React, { PropTypes } from 'react'
2 | import { connect } from 'react-redux';
3 | import changePathname from './actions';
4 | import history from './History';
5 |
6 | const Link = ({ dispatch, to, tag, className }) => {
7 | return (
8 | {
10 | e.preventDefault();
11 | dispatch(changePathname(to));
12 | history.push(to);
13 | }}
14 | >
15 | {tag}
16 |
17 | )
18 | }
19 |
20 | Link.propTypes = {
21 | children: React.PropTypes.string
22 | };
23 |
24 | export default connect()(Link)
25 |
--------------------------------------------------------------------------------
/lib/basic/Link.jsx:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 | import { history } from './Router.jsx';
3 |
4 | class Link extends Component {
5 | updatePath(e) {
6 | e.preventDefault();
7 | history.push(e.target.getAttribute('href'));
8 | }
9 |
10 | render() {
11 | const linkText = this.props.tag;
12 |
13 | return (
14 |
18 | {linkText}
19 |
20 | );
21 | }
22 | }
23 |
24 | Link.propTypes = {
25 | to: React.PropTypes.string,
26 | tag: React.PropTypes.string,
27 | children: React.PropTypes.string,
28 | };
29 |
30 | export default Link;
31 |
--------------------------------------------------------------------------------
/lib/basic/Route.jsx:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 |
3 | class Route extends Component {
4 | componentDidMount() {
5 | if (this.props.hooks && this.props.hooks.onEnter) {
6 | this.props.hooks.onEnter();
7 | }
8 | }
9 |
10 | componentWillUnmount() {
11 | if (this.props.hooks && this.props.hooks.beforeExit) {
12 | this.props.hooks.beforeExit();
13 | }
14 | }
15 |
16 | render() {
17 | return (
18 |
23 | );
24 | }
25 | }
26 |
27 | Route.propTypes = {
28 | children: React.PropTypes.any,
29 | hooks: React.PropTypes.any
30 | };
31 |
32 | export default Route;
--------------------------------------------------------------------------------
/lib/mobx/Link.jsx:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 | import { inject } from 'mobx-react';
3 |
4 | @inject('store')
5 | class Link extends Component {
6 | clickHandler = (e) => {
7 | e.preventDefault();
8 | this.props.store.router.push(e.target.getAttribute('href'));
9 | }
10 |
11 | render() {
12 | const linkText = this.props.tag;
13 |
14 | return (
15 |
19 | {linkText}
20 |
21 | );
22 | }
23 | }
24 |
25 | Link.propTypes = {
26 | to: React.PropTypes.string,
27 | className: React.PropTypes.string,
28 | tag: React.PropTypes.string,
29 | store: React.PropTypes.object
30 | };
31 |
32 | export default Link;
33 |
--------------------------------------------------------------------------------
/test/index.js:
--------------------------------------------------------------------------------
1 | var chai = require('chai');
2 | var assert = chai.assert;
3 |
4 | var utils = require('../lib/utils');
5 |
6 | describe('returnArray', function() {
7 | it('passing in an object should return an array', function() {
8 | var obj = {};
9 | assert.isArray(utils.returnArray(obj));
10 | });
11 | it('passing in an array should return an array', function() {
12 | var arr = [];
13 | assert.isArray(utils.returnArray(arr));
14 | });
15 | });
16 |
17 | describe('parsedRouteMobX', function() {
18 | it('should return a modifiedURL that is equal to currentPath', function() {
19 | var routePath = '/index/:id';
20 | var currPath = '/index/5';
21 | var parsedRouteMobX = utils.parsedRouteMobX(routePath, currPath, { params: '' });
22 | assert.equal(parsedRouteMobX, '/index/5');
23 | });
24 | });
--------------------------------------------------------------------------------
/example/basic/client/components/App.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import { Router, Route } from '../../../../lib/basic';
3 |
4 | import Main from './Main.jsx';
5 | import Home from './Home.jsx';
6 | import About from './About.jsx';
7 | import Default from './Default.jsx';
8 | import Users from './Users.jsx';
9 | import User from './User.jsx';
10 | import NotFound from './NotFound.jsx';
11 |
12 | function App() {
13 | return (
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 | );
25 | }
26 |
27 | export default App;
28 |
--------------------------------------------------------------------------------
/example/mobx/client/index.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import ReactDOM from 'react-dom';
3 | import { Provider } from 'mobx-react';
4 | import { RouterStore } from '../../../lib/mobx';
5 | import { AppContainer } from 'react-hot-loader';
6 |
7 | import AppStore from './stores/app';
8 | import App from './components/App.jsx';
9 |
10 | const appStore = new AppStore();
11 | const routerStore = new RouterStore();
12 |
13 | const stores = {
14 | appStore,
15 | router: routerStore
16 | };
17 |
18 | const render = (Component) => {
19 | ReactDOM.render(
20 |
21 |
22 |
23 |
24 | ,
25 | document.getElementById('root')
26 | );
27 | };
28 |
29 | render(App);
30 |
31 | if (module.hot) {
32 | module.hot.accept('./components/App.jsx', () => {
33 | render(App);
34 | });
35 | }
36 |
--------------------------------------------------------------------------------
/webpack.config.js:
--------------------------------------------------------------------------------
1 | const webpack = require('webpack');
2 | const path = require('path');
3 |
4 | const store = process.env.STORE_TYPE;
5 |
6 | module.exports = {
7 | entry: {
8 | main: [
9 | 'react-hot-loader/patch',
10 | 'webpack-hot-middleware/client?noInfo=false',
11 | path.join(__dirname, `example/${store}/client/index.jsx`)
12 | ]
13 | },
14 |
15 | output: {
16 | path: path.join(__dirname, `example/${store}/dist`),
17 | publicPath: '/assets/',
18 | filename: 'bundle.js'
19 | },
20 |
21 | devtool: 'inline-source-map',
22 |
23 | module: {
24 | rules: [
25 | {
26 | test: /\.jsx?$/,
27 | exclude: /node_modules/,
28 | use: ['babel-loader']
29 | }
30 | ]
31 | },
32 |
33 | plugins: [
34 | new webpack.HotModuleReplacementPlugin(),
35 | new webpack.NoEmitOnErrorsPlugin(),
36 | ]
37 |
38 | };
39 |
--------------------------------------------------------------------------------
/example/redux/client/index.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import ReactDOM from 'react-dom';
3 | import { Provider } from 'react-redux';
4 | import { AppContainer } from 'react-hot-loader';
5 | import { createStore, combineReducers } from 'redux';
6 |
7 | // import AppStore from './stores/app';
8 | import App from './components/App.jsx';
9 | import { reducers } from '../../../lib/redux';
10 |
11 | // const appStore = new AppStore();
12 | const stores = createStore(combineReducers({
13 | router: reducers
14 | }));
15 |
16 | const render = (Component) => {
17 | ReactDOM.render(
18 |
19 |
20 |
21 |
22 | ,
23 | document.getElementById('root')
24 | );
25 | };
26 |
27 | render(App);
28 |
29 | if (module.hot) {
30 | module.hot.accept('./components/App.jsx', () => {
31 | render(App);
32 | });
33 | }
34 |
--------------------------------------------------------------------------------
/example/mobx/client/components/App.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import { Router, Route } from '../../../../lib/mobx';
3 |
4 | import Main from './Main.jsx';
5 | import Home from './Home.jsx';
6 | import About from './About.jsx';
7 | import HooksList from './HooksList.jsx';
8 | import NotFound from './NotFound.jsx';
9 |
10 | const hooks = {
11 | asyncBeforeEnter: () => {
12 | return fetch(`/api/hooks`)
13 | .then(res => res.json())
14 | },
15 | onEnter: () => {
16 | console.log('on enter')
17 | }
18 | };
19 |
20 | function App() {
21 | return (
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 | );
31 | }
32 |
33 | export default App;
34 |
--------------------------------------------------------------------------------
/.eslintrc:
--------------------------------------------------------------------------------
1 | {
2 | "extends": [
3 | "eslint:recommended", "plugin:react/recommended", "airbnb"
4 | ],
5 | "parser": "babel-eslint",
6 | "parserOptions": {
7 | "ecmaVersion": 7,
8 | "ecmaFeatures": {
9 | "experimentalObjectRestSpread": true
10 | },
11 | "sourceType": "module"
12 | },
13 | "env": {
14 | "browser": true,
15 | "node": true
16 | },
17 | "plugins": [
18 | "react"
19 | ],
20 | "ecmaFeatures": {
21 | "jsx": true,
22 | "modules": true
23 | },
24 | "rules": {
25 | "comma-dangle": 0,
26 | "semi": 2,
27 | "import/extensions": 0,
28 | "no-restricted-syntax": 1,
29 | "no-loop-func": 1,
30 | "consistent-return": 1,
31 | "no-nested-ternary": 1,
32 | "react/require-default-props": 0,
33 | "react/forbid-prop-types": 0,
34 | "no-param-reassign": 0,
35 | "react/prefer-stateless-function": 0,
36 | "react/no-children-prop": 0,
37 | "react/jsx-closing-bracket-location": 0,
38 | "no-plusplus": 0,
39 | "no-unused-vars": 1
40 | }
41 | }
42 |
--------------------------------------------------------------------------------
/example/basic/client/components/Home.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import { inject, observer } from 'mobx-react';
3 |
4 | function Home(props) {
5 | const { appStore } = props.store;
6 |
7 | return (
8 |
9 |
Home
10 |
11 |
Add Todo
12 |
20 |
21 |
29 |
30 | );
31 | }
32 |
33 | Home.propTypes = {
34 | children: React.PropTypes.any
35 | };
36 |
37 | export default inject('store')(observer(Home));
38 |
--------------------------------------------------------------------------------
/example/mobx/client/components/Home.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import { inject, observer } from 'mobx-react';
3 |
4 | function Home(props) {
5 | const { appStore } = props.store;
6 |
7 | return (
8 |
9 |
Home
10 |
11 |
Add Todo
12 |
20 |
21 |
29 |
30 | );
31 | }
32 |
33 | Home.propTypes = {
34 | children: React.PropTypes.any
35 | };
36 |
37 | export default inject('store')(observer(Home));
38 |
--------------------------------------------------------------------------------
/example/redux/client/components/App.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import { Router, Route } from '../../../../lib/redux';
3 |
4 | import Main from './Main.jsx';
5 | import Home from './Home.jsx';
6 | import About from './About.jsx';
7 | import Users from './Users.jsx';
8 | import User from './User.jsx';
9 | import Hooks from './Hooks.jsx';
10 | import NotFound from './NotFound.jsx';
11 |
12 | const hooks = {
13 | asyncBeforeEnter: () => {
14 | return fetch(`/api/hooks`)
15 | .then(res => res.json())
16 | },
17 | onEnter: () => {
18 | console.log('on enter')
19 | }
20 | };
21 |
22 | function App() {
23 | return (
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 | );
36 | }
37 |
38 | export default App;
39 |
--------------------------------------------------------------------------------
/lib/utils.js:
--------------------------------------------------------------------------------
1 | const utils = {
2 | returnArray: objectOrArray => (Array.isArray(objectOrArray) ? objectOrArray : [objectOrArray]),
3 |
4 | parsedRouteMobX: (routePath, currPath, routerStore) => {
5 | if (!routePath) return;
6 | let newPath = routePath;
7 | if (routePath.includes(':')) {
8 | const paramsObj = {};
9 | const routePaths = routePath.match(/[:a-zA-Z0-9_]+/g);
10 | const urlPath = currPath.match(/[:a-zA-Z0-9_]+/g);
11 | let modifiedUrl = '';
12 | if (routePaths && urlPath && routePaths.length === urlPath.length) {
13 | for (let i = 0; i < urlPath.length; i += 1) {
14 | if (!(routePaths[i] === urlPath[i]) && routePaths[i].slice(0, 1) === ':') {
15 | paramsObj[routePaths[i].slice(1)] = urlPath[i];
16 | modifiedUrl = `${modifiedUrl}/${urlPath[i]}`;
17 | } else {
18 | modifiedUrl = `${modifiedUrl}/${routePaths[i]}`;
19 | }
20 | }
21 | }
22 | routerStore.params = paramsObj;
23 | newPath = modifiedUrl;
24 | }
25 |
26 | return newPath;
27 | }
28 | };
29 |
30 | module.exports = utils;
31 |
--------------------------------------------------------------------------------
/example/basic/server/app.js:
--------------------------------------------------------------------------------
1 | const express = require('express');
2 | const path = require('path');
3 |
4 | const app = express();
5 | const PORT = process.env.PORT || 3000;
6 |
7 | // Enable HMR in development
8 | if (process.env.NODE_ENV === 'development') {
9 | console.log('DEVELOPMENT ENVIRONMENT: Hot Reloading...');
10 |
11 | const webpack = require('webpack');
12 | const webpackDevConfig = require('../../../webpack.config');
13 |
14 | const compiler = webpack(webpackDevConfig);
15 |
16 | const webpackHotMiddleware = require('webpack-hot-middleware');
17 | const webpackDevMiddleware = require('webpack-dev-middleware');
18 |
19 | app.use(webpackDevMiddleware(compiler, {
20 | hot: true,
21 | publicPath: webpackDevConfig.output.publicPath,
22 | noInfo: true
23 | }));
24 |
25 | app.use(webpackHotMiddleware(compiler, {
26 | reload: true
27 | }));
28 | }
29 |
30 | // Serve static assets
31 | app.use(express.static(path.join(__dirname, '../dist/assets')));
32 |
33 | // Always send index.html
34 | app.get('*', (req, res) => {
35 | res.sendFile(path.join(__dirname, '../dist/index.html'));
36 | });
37 |
38 | app.listen(PORT, () => {
39 | console.log(`Server is listening on port ${PORT}...`);
40 | });
41 |
--------------------------------------------------------------------------------
/lib/mobx/RouterStore.jsx:
--------------------------------------------------------------------------------
1 | import { observable, action } from 'mobx';
2 | import createHistory from 'history/createBrowserHistory';
3 |
4 | const history = createHistory();
5 |
6 | class RouterStore {
7 | @observable pathname;
8 |
9 | constructor() {
10 | this.pathname = history.location.pathname;
11 | this.params = {};
12 | this.queries = this.getQueries(location.search);
13 |
14 | this.checkUrlChange = setInterval(this.checkUrl, 100);
15 | }
16 |
17 | @action push = (newPath) => {
18 | this.pathname = newPath;
19 | this.params = {};
20 | history.push(newPath);
21 | this.queries = this.getQueries(location.search);
22 | }
23 |
24 | @action goBack = () => {
25 | history.goBack();
26 | }
27 |
28 | @action goForward = () => {
29 | history.goForward();
30 | }
31 |
32 | // get current queries
33 | getQueries = (query) => {
34 | if (location.search) {
35 | return query.split(/&/gi)
36 | .reduce((queries, cv) => {
37 | cv = cv.replace(/%20/gi, ' ').split('=');
38 | const key = cv[0].replace(/^\?/, '');
39 | const value = cv[1];
40 | queries[key] = value;
41 | return queries;
42 | }, {});
43 | }
44 | }
45 |
46 | // navigation - backwards or forwards
47 | checkUrl = () => {
48 | const currPath = window.location.pathname;
49 |
50 | // if current path is different, update it
51 | if (currPath !== this.path) {
52 | this.pathname = currPath;
53 | }
54 | }
55 | }
56 |
57 | export default RouterStore;
58 |
--------------------------------------------------------------------------------
/lib/redux/Route.jsx:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 | import { connect } from 'react-redux';
3 | import { resolve } from 'react-resolver';
4 |
5 | class Route extends Component {
6 | componentDidMount() {
7 | if (this.props.hooks && this.props.hooks.onEnter) {
8 | this.props.hooks.onEnter();
9 | }
10 | }
11 |
12 | componentWillUnmount() {
13 | if (this.props.hooks && this.props.hooks.beforeExit) {
14 | this.props.hooks.beforeExit();
15 | }
16 | }
17 |
18 | render() {
19 | if (this.props.hooks && this.props.hooks.asyncBeforeEnter) {
20 | const resolver = (props) => (
21 | React.cloneElement(props.component, {
22 | data: props.data,
23 | children: props.children
24 | })
25 | );
26 |
27 | const ResolvedComponent = resolve('data', this.props.hooks.asyncBeforeEnter)(resolver);
28 |
29 | return (
30 | }
32 | children={this.props.children}
33 | />
34 | );
35 | }
36 |
37 | return (
38 |
43 | );
44 | }
45 | }
46 |
47 | Route.propTypes = {
48 | children: React.PropTypes.any,
49 | store: React.PropTypes.object,
50 | hooks: React.PropTypes.any
51 | };
52 |
53 | const mapStateToProps = (state, ownProps) => ({
54 | ...state,
55 | ...ownProps
56 | });
57 |
58 | export default connect(mapStateToProps)(Route);
59 |
--------------------------------------------------------------------------------
/example/mobx/client/components/HooksList.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 |
3 | function HooksList(props) {
4 | return (
5 |
6 |
HooksList
7 |
8 | {props.data.map((hook, i) => (
9 | - {hook.name}
10 | ))}
11 |
12 | {props.children}
13 |
14 | );
15 | }
16 |
17 | export default HooksList;
18 |
19 | // import React, { Component } from 'react';
20 | //
21 | // class HooksList extends Component {
22 | // constructor(props) {
23 | // super(props);
24 | // this.state = {
25 | // hooks: [],
26 | // mounted: true
27 | // };
28 | // }
29 | //
30 | // componentWillMount() {
31 | // fetch(`/api/hooks`)
32 | // .then(res => res.json())
33 | // .then((data) => {
34 | // if (this.state.mounted) {
35 | // this.setState({
36 | // hooks: data
37 | // });
38 | // }
39 | // })
40 | // .catch((err) => {
41 | // console.log(err);
42 | // });
43 | // }
44 | //
45 | // componentWillUnmount() {
46 | // this.state.mounted = false;
47 | // }
48 | //
49 | // render() {
50 | // return (
51 | //
52 | //
Hooks
53 | //
54 | // {this.state.hooks.length ? this.state.hooks.map((hook, i) => (
55 | // - {hook.name}
56 | // )) : Loading...
}
57 | //
58 | //
59 | // {this.props.children}
60 | //
61 | // );
62 | // }
63 | // }
64 | //
65 | // export default HooksList;
66 |
--------------------------------------------------------------------------------
/example/mobx/server/app.js:
--------------------------------------------------------------------------------
1 | const express = require('express');
2 | const path = require('path');
3 |
4 | const app = express();
5 | const PORT = process.env.PORT || 3000;
6 |
7 | // Enable HMR in development
8 | if (process.env.NODE_ENV === 'development') {
9 | console.log('DEVELOPMENT ENVIRONMENT: Hot Reloading...');
10 |
11 | const webpack = require('webpack');
12 | const webpackDevConfig = require('../../../webpack.config');
13 |
14 | const compiler = webpack(webpackDevConfig);
15 |
16 | const webpackHotMiddleware = require('webpack-hot-middleware');
17 | const webpackDevMiddleware = require('webpack-dev-middleware');
18 |
19 | app.use(webpackDevMiddleware(compiler, {
20 | hot: true,
21 | publicPath: webpackDevConfig.output.publicPath,
22 | noInfo: true
23 | }));
24 |
25 | app.use(webpackHotMiddleware(compiler, {
26 | reload: true
27 | }));
28 | }
29 |
30 | // Serve static assets
31 | app.use(express.static(path.join(__dirname, '../dist/assets')));
32 |
33 | // Test async hooks in router
34 | app.get('/api/hooks', (req, res) => {
35 | const hooks = [
36 | {
37 | name: 'beforeEnter'
38 | },
39 |
40 | {
41 | name: 'onEnter'
42 | },
43 |
44 | {
45 | name: 'beforeExit'
46 | },
47 |
48 | {
49 | name: 'onExit'
50 | }
51 | ];
52 |
53 | setTimeout(() => {
54 | res.json(hooks);
55 | }, 1000);
56 | });
57 |
58 | // Always send index.html
59 | app.get('*', (req, res) => {
60 | res.sendFile(path.join(__dirname, '../dist/index.html'));
61 | });
62 |
63 | app.listen(PORT, () => {
64 | console.log(`Server is listening on port ${PORT}...`);
65 | });
66 |
--------------------------------------------------------------------------------
/example/redux/server/app.js:
--------------------------------------------------------------------------------
1 | const express = require('express');
2 | const path = require('path');
3 |
4 | const app = express();
5 | const PORT = process.env.PORT || 3000;
6 |
7 | // Enable HMR in development
8 | if (process.env.NODE_ENV === 'development') {
9 | console.log('DEVELOPMENT ENVIRONMENT: Hot Reloading...');
10 |
11 | const webpack = require('webpack');
12 | const webpackDevConfig = require('../../../webpack.config');
13 |
14 | const compiler = webpack(webpackDevConfig);
15 |
16 | const webpackHotMiddleware = require('webpack-hot-middleware');
17 | const webpackDevMiddleware = require('webpack-dev-middleware');
18 |
19 | app.use(webpackDevMiddleware(compiler, {
20 | hot: true,
21 | publicPath: webpackDevConfig.output.publicPath,
22 | noInfo: true
23 | }));
24 |
25 | app.use(webpackHotMiddleware(compiler, {
26 | reload: true
27 | }));
28 | }
29 |
30 | // Serve static assets
31 | app.use(express.static(path.join(__dirname, '../dist/assets')));
32 |
33 | // Test async hooks in router
34 | app.get('/api/hooks', (req, res) => {
35 | const hooks = [
36 | {
37 | name: 'beforeEnter'
38 | },
39 |
40 | {
41 | name: 'onEnter'
42 | },
43 |
44 | {
45 | name: 'beforeExit'
46 | },
47 |
48 | {
49 | name: 'onExit'
50 | }
51 | ];
52 |
53 | setTimeout(() => {
54 | res.json(hooks);
55 | }, 1000);
56 | });
57 |
58 | // Always send index.html
59 | app.get('*', (req, res) => {
60 | res.sendFile(path.join(__dirname, '../dist/index.html'));
61 | });
62 |
63 | app.listen(PORT, () => {
64 | console.log(`Server is listening on port ${PORT}...`);
65 | });
66 |
--------------------------------------------------------------------------------
/lib/mobx/Route.jsx:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 | import { inject, observer } from 'mobx-react';
3 | import { resolve } from 'react-resolver';
4 |
5 | @inject('store') @observer
6 | class Route extends Component {
7 | componentDidMount() {
8 | if (this.props.hooks && this.props.hooks.onEnter) {
9 | this.props.hooks.onEnter();
10 | }
11 | }
12 |
13 | componentWillUnmount() {
14 | if (this.props.hooks && this.props.hooks.beforeExit) {
15 | this.props.hooks.beforeExit();
16 | }
17 | }
18 |
19 | render() {
20 | const { pathname, params, queries, push, goBack, goForward } = this.props.store.router;
21 |
22 | const router = {
23 | pathname,
24 | params,
25 | queries,
26 | push,
27 | goBack,
28 | goForward,
29 | };
30 |
31 | if (this.props.hooks && this.props.hooks.asyncBeforeEnter) {
32 | const resolver = (props) => (
33 | React.cloneElement(props.component, {
34 | data: props.data,
35 | children: props.children
36 | })
37 | );
38 |
39 | const ResolvedComponent = resolve('data', this.props.hooks.asyncBeforeEnter)(resolver);
40 |
41 | return (
42 |
46 | } />
47 | );
48 | }
49 |
50 | return (
51 |
56 | );
57 | }
58 | }
59 |
60 | Route.propTypes = {
61 | children: React.PropTypes.any,
62 | store: React.PropTypes.object,
63 | hooks: React.PropTypes.any
64 | };
65 |
66 | export default Route;
67 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "mobx-react-router",
3 | "version": "0.0.1",
4 | "main": "index.js",
5 | "scripts": {
6 | "lint": "eslint lib/*.js*",
7 | "start": "./node_modules/.bin/webpack && open example/index.html",
8 | "dev-mobx": "NODE_ENV=development STORE_TYPE=mobx node example/mobx/server/app",
9 | "dev-redux": "NODE_ENV=development STORE_TYPE=redux node example/redux/server/app",
10 | "dev-basic": "NODE_ENV=development STORE_TYPE=basic node example/basic/server/app",
11 | "test": "./node_modules/.bin/mocha"
12 | },
13 | "dependencies": {
14 | "history": "^4.6.0",
15 | "mobx": "^3.1.5",
16 | "mobx-react": "^4.1.3",
17 | "react": "^15.4.2",
18 | "react-dom": "^15.4.2",
19 | "react-redux": "^5.0.3",
20 | "react-resolver": "^3.1.0",
21 | "redux": "^3.6.0"
22 | },
23 | "devDependencies": {
24 | "babel-core": "^6.23.1",
25 | "babel-eslint": "^7.1.1",
26 | "babel-loader": "^6.4.0",
27 | "babel-plugin-transform-class-properties": "^6.23.0",
28 | "babel-plugin-transform-decorators-legacy": "^1.3.4",
29 | "babel-preset-es2015": "^6.22.0",
30 | "babel-preset-react": "^6.23.0",
31 | "babel-preset-stage-2": "^6.22.0",
32 | "chai": "^3.5.0",
33 | "eslint": "^3.17.1",
34 | "eslint-config-airbnb": "^14.1.0",
35 | "eslint-plugin-import": "^2.2.0",
36 | "eslint-plugin-jsx-a11y": "^4.0.0",
37 | "eslint-plugin-jsx-control-statements": "^2.1.1",
38 | "eslint-plugin-react": "^6.10.0",
39 | "express": "^4.15.2",
40 | "mocha": "^3.2.0",
41 | "path": "^0.12.7",
42 | "react-hot-loader": "next",
43 | "webpack": "^2.2.1",
44 | "webpack-dev-middleware": "^1.10.1",
45 | "webpack-hot-middleware": "^2.17.1"
46 | },
47 | "repository": "https://github.com/elefanty/mobx-react-router",
48 | "authors": [
49 | "Brandon Smith ",
50 | "Richard Ta ",
51 | "Joseph Vu "
52 | ],
53 | "license": "MIT"
54 | }
55 |
--------------------------------------------------------------------------------
/lib/mobx/Router.jsx:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 | import { inject, observer } from 'mobx-react';
3 |
4 | function parsedRoute(routePath, currPath, routerStore) {
5 | if (!routePath) return;
6 | let newPath = routePath;
7 | if (routePath.includes(':')) {
8 | const paramsObj = {};
9 | const routePaths = routePath.match(/[:a-zA-Z0-9_]+/g);
10 | const urlPath = currPath.match(/[:a-zA-Z0-9_]+/g);
11 | let modifiedUrl = '';
12 |
13 | if (routePaths && urlPath && routePaths.length === urlPath.length) {
14 | for (let i = 0; i < urlPath.length; i += 1) {
15 | if (!(routePaths[i] === urlPath[i]) && routePaths[i].slice(0, 1) === ':') {
16 | paramsObj[routePaths[i].slice(1)] = urlPath[i];
17 | modifiedUrl = `${modifiedUrl}/${urlPath[i]}`;
18 | } else {
19 | modifiedUrl = `${modifiedUrl}/${routePaths[i]}`;
20 | }
21 | }
22 | }
23 |
24 | routerStore.params = paramsObj;
25 | newPath = modifiedUrl;
26 | }
27 |
28 | return newPath;
29 | }
30 |
31 | function returnArray(objectOrArray) {
32 | return Array.isArray(objectOrArray) ? objectOrArray : [objectOrArray];
33 | }
34 |
35 | function getIndexRoutes(currRoute) {
36 | let indexRoute = [];
37 | if (currRoute.props.children) {
38 | indexRoute = returnArray(currRoute.props.children).filter(route => route.props.index);
39 | }
40 |
41 | return indexRoute;
42 | }
43 |
44 | function findComponent(pathToFind, routes, routerStore) {
45 | // check if valid input
46 | if (!pathToFind) throw new Error('Must enter valid path.');
47 | if (!Array.isArray(routes)) throw new Error('Input must be an array.');
48 |
49 | let parent = null;
50 | let children = null;
51 |
52 | for (let i = 0; i < routes.length; i++) {
53 | if (!routes[i]) break;
54 |
55 | if (parsedRoute(routes[i].props.path, pathToFind, routerStore) === pathToFind) {
56 | children = getIndexRoutes(routes[i]);
57 | parent = routes[i];
58 | break;
59 | }
60 |
61 | if (routes[i].props.children) {
62 | if (!Array.isArray(routes[i].props.children)) {
63 | children = findComponent(pathToFind, [routes[i].props.children], routerStore);
64 | } else {
65 | children = findComponent(pathToFind, routes[i].props.children, routerStore);
66 | }
67 | }
68 |
69 | if (children) {
70 | parent = routes[i];
71 | break;
72 | }
73 | }
74 |
75 | return parent ? React.cloneElement(parent, { children }) : null;
76 | }
77 |
78 | @inject('store') @observer
79 | class Router extends Component {
80 | render() {
81 | const { router } = this.props.store;
82 | const currPath = router.pathname;
83 |
84 | let componentToRender = findComponent(currPath, returnArray(this.props.children), router);
85 |
86 | if (!componentToRender) {
87 | const lastChild = this.props.children[this.props.children.length - 1];
88 | if (lastChild.props.path === '*') {
89 | componentToRender = lastChild;
90 | }
91 | }
92 |
93 | return (
94 |
95 | {componentToRender}
96 |
97 | );
98 | }
99 | }
100 |
101 | Router.propTypes = {
102 | store: React.PropTypes.object,
103 | children: React.PropTypes.any
104 | };
105 |
106 | export default Router;
107 |
--------------------------------------------------------------------------------
/lib/redux/Router.jsx:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 | import { connect } from 'react-redux';
3 | import changePathname from './actions';
4 |
5 | function parsedRoute(routePath, currPath) {
6 | if (!routePath) return;
7 | let newPath = { routePath, paramsObj: {} };
8 | if (routePath.includes(':')) {
9 | const paramsObj = {};
10 | const routePaths = routePath.match(/[:a-zA-Z0-9_]+/g);
11 | const urlPath = currPath.match(/[:a-zA-Z0-9_]+/g);
12 | let modifiedUrl = '';
13 |
14 | if (routePaths && urlPath && routePaths.length === urlPath.length) {
15 | for (let i = 0; i < urlPath.length; i += 1) {
16 | if (!(routePaths[i] === urlPath[i]) && routePaths[i].slice(0, 1) === ':') {
17 | paramsObj[routePaths[i].slice(1)] = urlPath[i];
18 | modifiedUrl = `${modifiedUrl}/${urlPath[i]}`;
19 | } else {
20 | modifiedUrl = `${modifiedUrl}/${routePaths[i]}`;
21 | }
22 | }
23 | }
24 |
25 | newPath.paramsObj = paramsObj;
26 | newPath.routePath = modifiedUrl;
27 | }
28 |
29 | return newPath;
30 | }
31 |
32 | function returnArray(objectOrArray) {
33 | return Array.isArray(objectOrArray) ? objectOrArray : [objectOrArray];
34 | }
35 |
36 | function getIndexRoutes(currRoute) {
37 | let indexRoute = [];
38 | if (currRoute.props.children) {
39 | indexRoute = returnArray(currRoute.props.children).filter(route => route.props.index);
40 | }
41 |
42 | return indexRoute;
43 | }
44 |
45 | function findComponent(pathToFind, routes) {
46 | if (!pathToFind) throw new Error('Must enter valid path.');
47 | if (!Array.isArray(routes)) throw new Error('Input must be an array.');
48 |
49 | let parent = null;
50 | let children = null;
51 |
52 | let modifiedUrl;
53 |
54 | for (let i = 0; i < routes.length; i++) {
55 | if (!routes[i]) break;
56 |
57 | modifiedUrl = parsedRoute(routes[i].props.path, pathToFind);
58 |
59 | if(modifiedUrl) {
60 | if(modifiedUrl.routePath === pathToFind) {
61 | children = getIndexRoutes(routes[i]);
62 | parent = routes[i];
63 | break;
64 | }
65 | }
66 |
67 | if (routes[i].props.children) {
68 | if (!Array.isArray(routes[i].props.children)) {
69 | children = findComponent(pathToFind, [routes[i].props.children]);
70 | } else {
71 | children = findComponent(pathToFind, routes[i].props.children);
72 | }
73 | }
74 |
75 | if (children) {
76 | parent = routes[i];
77 | break;
78 | }
79 | }
80 |
81 | let queries = {};
82 | if (location.search) {
83 | queries = location.search.split(/&/gi)
84 | .reduce((queries, cv) => {
85 | cv = cv.replace(/%20/gi, ' ').split('=');
86 | const key = cv[0].replace(/^\?/, '');
87 | const value = cv[1];
88 | queries[key] = value;
89 | return queries;
90 | }, {});
91 | }
92 |
93 | return parent ? React.cloneElement(parent, { children, params: modifiedUrl.paramsObj, queries }) : null;
94 |
95 | }
96 |
97 | let oneTimeOnly = true;
98 |
99 | const Router = ({ router, children, dispatch }) => {
100 | let currPath = router.pathname;
101 |
102 | if(oneTimeOnly) {
103 | oneTimeOnly = false;
104 | setInterval(function() {
105 | if(currPath !== window.location.pathname) {
106 | dispatch(changePathname(window.location.pathname));
107 | currPath = window.location.pathname;
108 | }
109 | }, 100);
110 | }
111 |
112 | let componentToRender = findComponent(currPath, returnArray(children));
113 |
114 | if (!componentToRender) {
115 | const lastChild = children[children.length - 1];
116 | if (lastChild.props.path === '*') {
117 | componentToRender = lastChild;
118 | }
119 | }
120 |
121 | return (
122 |
123 | {componentToRender}
124 |
125 | );
126 | }
127 |
128 | const mapStateToProps = (state, ownProps) => ({
129 | ...state,
130 | ...ownProps
131 | });
132 |
133 | Router.propTypes = {
134 | store: React.PropTypes.object,
135 | children: React.PropTypes.any
136 | };
137 |
138 | export default connect(mapStateToProps)(Router);
139 |
--------------------------------------------------------------------------------
/lib/basic/Router.jsx:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 | import createHistory from 'history/createBrowserHistory';
3 |
4 | export const history = createHistory();
5 |
6 | function parsedRoute(routePath, currPath) {
7 | if (!routePath) return;
8 | let newPath = { routePath, params: {} };
9 | if (routePath.includes(':')) {
10 | const paramsObj = {};
11 | const routePaths = routePath.match(/[:a-zA-Z0-9_]+/g);
12 | const urlPath = currPath.match(/[:a-zA-Z0-9_]+/g);
13 | let modifiedUrl = '';
14 |
15 | if (routePaths && urlPath && routePaths.length === urlPath.length) {
16 | for (let i = 0; i < urlPath.length; i += 1) {
17 | if (!(routePaths[i] === urlPath[i]) && routePaths[i].slice(0, 1) === ':') {
18 | paramsObj[routePaths[i].slice(1)] = urlPath[i];
19 | modifiedUrl = `${modifiedUrl}/${urlPath[i]}`;
20 | } else {
21 | modifiedUrl = `${modifiedUrl}/${routePaths[i]}`;
22 | }
23 | }
24 | }
25 |
26 | newPath.params = paramsObj;
27 | newPath.routePath = modifiedUrl;
28 | }
29 |
30 | return newPath;
31 | }
32 |
33 | function returnArray(objectOrArray) {
34 | return Array.isArray(objectOrArray) ? objectOrArray : [objectOrArray];
35 | }
36 |
37 | function getIndexRoutes(currRoute) {
38 | let indexRoute = [];
39 | if (currRoute.props.children) {
40 | indexRoute = returnArray(currRoute.props.children).filter(route => route.props.index);
41 | }
42 |
43 | return indexRoute;
44 | }
45 |
46 | function getQueries() {
47 | if (location.search) {
48 | return location.search.split(/&/gi)
49 | .reduce((queries, cv) => {
50 | cv = cv.replace(/%20/gi, ' ').split('=');
51 | const key = cv[0].replace(/^\?/, '');
52 | const value = cv[1];
53 | queries[key] = value;
54 | return queries;
55 | }, {});
56 | }
57 | }
58 |
59 | function findComponent(pathToFind, routes, updatePath) {
60 | // check if valid input
61 | if (!pathToFind) throw new Error('Must enter valid path.');
62 | if (!Array.isArray(routes)) throw new Error('Input must be an array.');
63 |
64 | let parent = null;
65 | let children = null;
66 | let params = {};
67 | let queries = {};
68 |
69 | for (let i = 0; i < routes.length; i++) {
70 | if (!routes[i]) break;
71 |
72 | let check = parsedRoute(routes[i].props.path, pathToFind);
73 | if (check && check.routePath === pathToFind) {
74 | children = getIndexRoutes(routes[i]);
75 | params = check.params;
76 | parent = routes[i];
77 | break;
78 | }
79 |
80 | if (routes[i].props.children) {
81 | if (!Array.isArray(routes[i].props.children)) {
82 | children = findComponent(pathToFind, [routes[i].props.children]);
83 | } else {
84 | children = findComponent(pathToFind, routes[i].props.children);
85 | }
86 | }
87 |
88 | if (children) {
89 | parent = routes[i];
90 | break;
91 | }
92 | }
93 | // check for queries before render
94 | queries = getQueries();
95 |
96 | return parent ? React.cloneElement(parent, { children, params, queries }) : null;
97 | }
98 |
99 | export class Router extends Component {
100 | constructor() {
101 | super();
102 |
103 | this.state = {
104 | path: history.location.pathname,
105 | }
106 |
107 | this.checkURLChange = setInterval(this.checkUrl, 100);
108 | }
109 |
110 | checkUrl = () => {
111 | const currPath = history.location.pathname;
112 |
113 | // if current path is different, update it
114 | if (currPath !== this.state.path) {
115 | this.setState({ path: currPath });
116 | }
117 | }
118 |
119 | render() {
120 | const currPath = this.state.path;
121 |
122 | let componentToRender = findComponent(currPath, returnArray(this.props.children));
123 |
124 | if (!componentToRender) {
125 | const lastChild = this.props.children[this.props.children.length - 1];
126 | if (lastChild.props.path === '*') {
127 | componentToRender = lastChild;
128 | }
129 | }
130 |
131 | return (
132 |
133 | {componentToRender}
134 |
135 | );
136 | }
137 | }
138 |
139 | Router.propTypes = {
140 | children: React.PropTypes.any
141 | };
142 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Offramp is a React library that provides simple routing for your single page applications.
6 |
7 | ### Features
8 |
9 | * Synchronized routing state with application state
10 | * Decoupled state from UI
11 | * Routes support hooks such as ```beforeEnter```, ```onEnter```, ```beforeExit```, and ```onExit```
12 | * Async-rendering & data-fetching before component render
13 |
14 | ## Quick Start
15 | To get started, ```yarn add offramp```.
16 | #### MobX
17 | ```javascript
18 | import React from 'react';
19 | import { render } from 'react-dom';
20 | import { RouterStore, Router, Route } from 'offramp/mobx';
21 | import { Provider } from 'mobx-react';
22 |
23 | // import your mobx stores and place them in stores object
24 | // create router property with a value of the routerStore
25 | const routerStore = new RouterStore();
26 |
27 | const stores = {
28 | // your stores here..
29 | router: routerStore
30 | };
31 | ```
32 | #### Redux
33 | ```javascript
34 | import React from 'react';
35 | import { render } from 'react-dom';
36 | import { routerReducer, Router, Route } from 'offramp/redux';
37 | import { Provider } from 'react-redux'
38 |
39 | // import your reducers and pass them in with the routerReducer
40 | const stores = createStore(combineReducers({
41 | // ...reducers
42 | router: routerReducer
43 | });
44 | ```
45 | #### React
46 | ```javascript
47 | import React from 'react';
48 | import { render } from 'react-dom';
49 | import { Router, Route } from 'offramp';
50 | ```
51 | Once all the correct dependencies are imported, just define your routes
52 | ```javascript
53 | // import all your components for your routes
54 | import Main from './components/Main';
55 | import Home from './components/Home';
56 | import About from './components/About';
57 | import UsersPage from './components/UsersPage';
58 | import NotFound from './components/NotFound';
59 |
60 | // if you're just using React, remove the Provider
61 | render(
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 | ,
72 | document.getElementById('root')
73 | );
74 | ```
75 |
76 | ## Getting Started
77 |
78 | ### Installation
79 | Using [npm](https://www.npmjs.com/):
80 |
81 | ```
82 | npm install offramp --save
83 | ```
84 | or [yarn](https://yarnpkg.com/en/):
85 | ```
86 | yarn add offramp
87 | ```
88 |
89 | ### Using Offramp
90 |
91 | To get started, create your ```index.js``` file and import what you need depending on which state management library you are using:
92 |
93 | ```javascript
94 | import React from 'react';
95 | import { render } from 'react-dom';
96 | import { routerStore, Router, Route } from 'offramp/mobx'; // mobx
97 | import { routerReducer, Router, Route } from 'offramp/redux'; // redux
98 | ```
99 |
100 | We use the Provider API to manage your stores throughout the app so we need to import it:
101 | ```javascript
102 | import { Provider } from 'mobx-react'; // mobx
103 | import { Provider } from 'react-redux'; // redux
104 | ```
105 | If you are using MobX, then you'll need to import your stores and put them in a single store object with the routerStore as follows. This allows Offramp to make your router state available throughout the application:
106 | ```javascript
107 | const stores = {
108 | // ...stores
109 | router: routerStore
110 | };
111 | ```
112 | If you are using Redux, we first need to import some utilities from the library:
113 | ```javascript
114 | import { createStore, combineReducers } from 'redux';
115 | ```
116 | Then create your store by combining your reducers and pass in the routerReducer:
117 | ```javascript
118 | const stores = createStore(combineReducers({
119 | // ...reducers
120 | router: routerReducer
121 | });
122 | ```
123 | ## Creating Routes
124 | Routing in Offramp is meant to offer a familiar API and allow you to get your client-side navigation started quickly. To create your routing structure, just define your top level `````` component that will wrap all your routes. Then, to structure your routes, just nest them within the `````` component, and provide each of your routes with the correct component to render.
125 | ```javascript
126 | // import your components
127 | import Contact from './components/Contact';
128 | import About from './components/About';
129 |
130 | render(
131 |
132 |
133 |
134 |
135 |
136 |
137 | ,
138 | document.getElementById('root')
139 | );
140 | ```
141 | If you need to support nested routes for your application, just place routes within their immediate parent route component. If any of these children routes need to be an ```index``` route, just provide an ```index``` property on the expected index route.
142 | ```javascript
143 | // import your components
144 | import Main from './components/Main';
145 | import Home from './components/Home';
146 | import About from './components/About';
147 | import UsersPage from './components/UsersPage';
148 | import NotFound from './components/NotFound';
149 |
150 | render(
151 |
152 |
153 |
154 |
155 |
156 |
157 |
158 |
159 |
160 | ,
161 | document.getElementById('root')
162 | );
163 | ```
164 | ### Router State
165 | Offramp is meant to provide an easy way to handle any expected data when rendering your component. Just declare in your route paths where you expect a parameter, and Offramp will make sure both the current URL parameters and query parameters are updated and available directly in your store.
166 | ```javascript
167 | ...
168 |
169 |
170 |
171 | ...
172 | ```
173 |
174 | ## Asynchronous Routes
175 | If you need to support async hooks on a particular URL path, you first need to create a hooks object in a separate file and import it or define your hooks directly in your ```index.js``` file.
176 | ```javascript
177 | // index.js
178 |
179 | ...
180 | const userHooks = {
181 | beforeEnter() { ... },
182 | onEnter() { ... },
183 | beforeExit() { ... },
184 | onExit() { ... }
185 | }
186 | ...
187 | ```
188 | Once your hooks are defined you can pass them down into your components as a prop on that route component.
189 | ```javascript
190 | ...
191 |
192 |
193 |
194 | ```
195 | Prior to rendering your component, Offramp will check for the existence of any hooks. If a ```beforeEnter``` hook exists, Crossing will execute that function and prevent rendering until that function resolves. This means you no longer need to fetch data in life-cycle methods such as with ```componentWillMount```.
196 | ## Built in Components
197 | Offramp provides a `````` component to navigate between your different views. When defining your links, pass a ```to``` property on the component which points to the correct URL path and also a ```tag``` property which contains the links display text.
198 | ```javascript
199 |
204 | ```
205 | ## Upcoming Features
206 | * Support declarative routing
207 | * Memoize routes to prevent excessive recursive calls
208 |
--------------------------------------------------------------------------------
/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 | accepts@~1.3.3:
10 | version "1.3.3"
11 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.3.tgz#c3ca7434938648c3e0d9c1e328dd68b622c284ca"
12 | dependencies:
13 | mime-types "~2.1.11"
14 | negotiator "0.6.1"
15 |
16 | acorn-dynamic-import@^2.0.0:
17 | version "2.0.2"
18 | resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz#c752bd210bef679501b6c6cb7fc84f8f47158cc4"
19 | dependencies:
20 | acorn "^4.0.3"
21 |
22 | acorn-jsx@^3.0.0:
23 | version "3.0.1"
24 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b"
25 | dependencies:
26 | acorn "^3.0.4"
27 |
28 | acorn@4.0.4, acorn@^4.0.3, acorn@^4.0.4:
29 | version "4.0.4"
30 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.4.tgz#17a8d6a7a6c4ef538b814ec9abac2779293bf30a"
31 |
32 | acorn@^3.0.4:
33 | version "3.3.0"
34 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a"
35 |
36 | ajv-keywords@^1.0.0, ajv-keywords@^1.1.1:
37 | version "1.5.1"
38 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c"
39 |
40 | ajv@^4.7.0, ajv@^4.9.1:
41 | version "4.11.4"
42 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.4.tgz#ebf3a55d4b132ea60ff5847ae85d2ef069960b45"
43 | dependencies:
44 | co "^4.6.0"
45 | json-stable-stringify "^1.0.1"
46 |
47 | align-text@^0.1.1, align-text@^0.1.3:
48 | version "0.1.4"
49 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117"
50 | dependencies:
51 | kind-of "^3.0.2"
52 | longest "^1.0.1"
53 | repeat-string "^1.5.2"
54 |
55 | amdefine@>=0.0.4:
56 | version "1.0.1"
57 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5"
58 |
59 | ansi-escapes@^1.1.0:
60 | version "1.4.0"
61 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e"
62 |
63 | ansi-html@0.0.7:
64 | version "0.0.7"
65 | resolved "https://registry.yarnpkg.com/ansi-html/-/ansi-html-0.0.7.tgz#813584021962a9e9e6fd039f940d12f56ca7859e"
66 |
67 | ansi-regex@^2.0.0:
68 | version "2.1.1"
69 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
70 |
71 | ansi-styles@^2.2.1:
72 | version "2.2.1"
73 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
74 |
75 | anymatch@^1.3.0:
76 | version "1.3.0"
77 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507"
78 | dependencies:
79 | arrify "^1.0.0"
80 | micromatch "^2.1.5"
81 |
82 | aproba@^1.0.3:
83 | version "1.1.1"
84 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.1.tgz#95d3600f07710aa0e9298c726ad5ecf2eacbabab"
85 |
86 | are-we-there-yet@~1.1.2:
87 | version "1.1.2"
88 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3"
89 | dependencies:
90 | delegates "^1.0.0"
91 | readable-stream "^2.0.0 || ^1.1.13"
92 |
93 | argparse@^1.0.7:
94 | version "1.0.9"
95 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86"
96 | dependencies:
97 | sprintf-js "~1.0.2"
98 |
99 | aria-query@^0.3.0:
100 | version "0.3.0"
101 | resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-0.3.0.tgz#cb8a9984e2862711c83c80ade5b8f5ca0de2b467"
102 | dependencies:
103 | ast-types-flow "0.0.7"
104 |
105 | arr-diff@^2.0.0:
106 | version "2.0.0"
107 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf"
108 | dependencies:
109 | arr-flatten "^1.0.1"
110 |
111 | arr-flatten@^1.0.1:
112 | version "1.0.1"
113 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b"
114 |
115 | array-flatten@1.1.1:
116 | version "1.1.1"
117 | resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2"
118 |
119 | array-union@^1.0.1:
120 | version "1.0.2"
121 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
122 | dependencies:
123 | array-uniq "^1.0.1"
124 |
125 | array-uniq@^1.0.1:
126 | version "1.0.3"
127 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
128 |
129 | array-unique@^0.2.1:
130 | version "0.2.1"
131 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53"
132 |
133 | array.prototype.find@^2.0.1:
134 | version "2.0.3"
135 | resolved "https://registry.yarnpkg.com/array.prototype.find/-/array.prototype.find-2.0.3.tgz#08c3ec33e32ec4bab362a2958e686ae92f59271d"
136 | dependencies:
137 | define-properties "^1.1.2"
138 | es-abstract "^1.7.0"
139 |
140 | arrify@^1.0.0:
141 | version "1.0.1"
142 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
143 |
144 | asap@~2.0.3:
145 | version "2.0.5"
146 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.5.tgz#522765b50c3510490e52d7dcfe085ef9ba96958f"
147 |
148 | asn1.js@^4.0.0:
149 | version "4.9.1"
150 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.1.tgz#48ba240b45a9280e94748990ba597d216617fd40"
151 | dependencies:
152 | bn.js "^4.0.0"
153 | inherits "^2.0.1"
154 | minimalistic-assert "^1.0.0"
155 |
156 | asn1@~0.2.3:
157 | version "0.2.3"
158 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
159 |
160 | assert-plus@^0.2.0:
161 | version "0.2.0"
162 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234"
163 |
164 | assert-plus@^1.0.0:
165 | version "1.0.0"
166 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
167 |
168 | assert@^1.1.1:
169 | version "1.4.1"
170 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91"
171 | dependencies:
172 | util "0.10.3"
173 |
174 | assertion-error@^1.0.1:
175 | version "1.0.2"
176 | resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.0.2.tgz#13ca515d86206da0bac66e834dd397d87581094c"
177 |
178 | ast-types-flow@0.0.7:
179 | version "0.0.7"
180 | resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad"
181 |
182 | async-each@^1.0.0:
183 | version "1.0.1"
184 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d"
185 |
186 | async@^2.1.2:
187 | version "2.1.5"
188 | resolved "https://registry.yarnpkg.com/async/-/async-2.1.5.tgz#e587c68580994ac67fc56ff86d3ac56bdbe810bc"
189 | dependencies:
190 | lodash "^4.14.0"
191 |
192 | asynckit@^0.4.0:
193 | version "0.4.0"
194 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
195 |
196 | aws-sign2@~0.6.0:
197 | version "0.6.0"
198 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f"
199 |
200 | aws4@^1.2.1:
201 | version "1.6.0"
202 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e"
203 |
204 | babel-code-frame@^6.16.0, babel-code-frame@^6.22.0:
205 | version "6.22.0"
206 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4"
207 | dependencies:
208 | chalk "^1.1.0"
209 | esutils "^2.0.2"
210 | js-tokens "^3.0.0"
211 |
212 | babel-core@^6.23.0, babel-core@^6.23.1:
213 | version "6.23.1"
214 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.23.1.tgz#c143cb621bb2f621710c220c5d579d15b8a442df"
215 | dependencies:
216 | babel-code-frame "^6.22.0"
217 | babel-generator "^6.23.0"
218 | babel-helpers "^6.23.0"
219 | babel-messages "^6.23.0"
220 | babel-register "^6.23.0"
221 | babel-runtime "^6.22.0"
222 | babel-template "^6.23.0"
223 | babel-traverse "^6.23.1"
224 | babel-types "^6.23.0"
225 | babylon "^6.11.0"
226 | convert-source-map "^1.1.0"
227 | debug "^2.1.1"
228 | json5 "^0.5.0"
229 | lodash "^4.2.0"
230 | minimatch "^3.0.2"
231 | path-is-absolute "^1.0.0"
232 | private "^0.1.6"
233 | slash "^1.0.0"
234 | source-map "^0.5.0"
235 |
236 | babel-eslint@^7.1.1:
237 | version "7.1.1"
238 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-7.1.1.tgz#8a6a884f085aa7060af69cfc77341c2f99370fb2"
239 | dependencies:
240 | babel-code-frame "^6.16.0"
241 | babel-traverse "^6.15.0"
242 | babel-types "^6.15.0"
243 | babylon "^6.13.0"
244 | lodash.pickby "^4.6.0"
245 |
246 | babel-generator@^6.23.0:
247 | version "6.23.0"
248 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.23.0.tgz#6b8edab956ef3116f79d8c84c5a3c05f32a74bc5"
249 | dependencies:
250 | babel-messages "^6.23.0"
251 | babel-runtime "^6.22.0"
252 | babel-types "^6.23.0"
253 | detect-indent "^4.0.0"
254 | jsesc "^1.3.0"
255 | lodash "^4.2.0"
256 | source-map "^0.5.0"
257 | trim-right "^1.0.1"
258 |
259 | babel-helper-bindify-decorators@^6.22.0:
260 | version "6.22.0"
261 | resolved "https://registry.yarnpkg.com/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.22.0.tgz#d7f5bc261275941ac62acfc4e20dacfb8a3fe952"
262 | dependencies:
263 | babel-runtime "^6.22.0"
264 | babel-traverse "^6.22.0"
265 | babel-types "^6.22.0"
266 |
267 | babel-helper-builder-binary-assignment-operator-visitor@^6.22.0:
268 | version "6.22.0"
269 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.22.0.tgz#29df56be144d81bdeac08262bfa41d2c5e91cdcd"
270 | dependencies:
271 | babel-helper-explode-assignable-expression "^6.22.0"
272 | babel-runtime "^6.22.0"
273 | babel-types "^6.22.0"
274 |
275 | babel-helper-builder-react-jsx@^6.23.0:
276 | version "6.23.0"
277 | resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.23.0.tgz#d53fc8c996e0bc56d0de0fc4cc55a7138395ea4b"
278 | dependencies:
279 | babel-runtime "^6.22.0"
280 | babel-types "^6.23.0"
281 | esutils "^2.0.0"
282 | lodash "^4.2.0"
283 |
284 | babel-helper-call-delegate@^6.22.0:
285 | version "6.22.0"
286 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.22.0.tgz#119921b56120f17e9dae3f74b4f5cc7bcc1b37ef"
287 | dependencies:
288 | babel-helper-hoist-variables "^6.22.0"
289 | babel-runtime "^6.22.0"
290 | babel-traverse "^6.22.0"
291 | babel-types "^6.22.0"
292 |
293 | babel-helper-define-map@^6.23.0:
294 | version "6.23.0"
295 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.23.0.tgz#1444f960c9691d69a2ced6a205315f8fd00804e7"
296 | dependencies:
297 | babel-helper-function-name "^6.23.0"
298 | babel-runtime "^6.22.0"
299 | babel-types "^6.23.0"
300 | lodash "^4.2.0"
301 |
302 | babel-helper-explode-assignable-expression@^6.22.0:
303 | version "6.22.0"
304 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.22.0.tgz#c97bf76eed3e0bae4048121f2b9dae1a4e7d0478"
305 | dependencies:
306 | babel-runtime "^6.22.0"
307 | babel-traverse "^6.22.0"
308 | babel-types "^6.22.0"
309 |
310 | babel-helper-explode-class@^6.22.0:
311 | version "6.22.0"
312 | resolved "https://registry.yarnpkg.com/babel-helper-explode-class/-/babel-helper-explode-class-6.22.0.tgz#646304924aa6388a516843ba7f1855ef8dfeb69b"
313 | dependencies:
314 | babel-helper-bindify-decorators "^6.22.0"
315 | babel-runtime "^6.22.0"
316 | babel-traverse "^6.22.0"
317 | babel-types "^6.22.0"
318 |
319 | babel-helper-function-name@^6.22.0, babel-helper-function-name@^6.23.0:
320 | version "6.23.0"
321 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.23.0.tgz#25742d67175c8903dbe4b6cb9d9e1fcb8dcf23a6"
322 | dependencies:
323 | babel-helper-get-function-arity "^6.22.0"
324 | babel-runtime "^6.22.0"
325 | babel-template "^6.23.0"
326 | babel-traverse "^6.23.0"
327 | babel-types "^6.23.0"
328 |
329 | babel-helper-get-function-arity@^6.22.0:
330 | version "6.22.0"
331 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.22.0.tgz#0beb464ad69dc7347410ac6ade9f03a50634f5ce"
332 | dependencies:
333 | babel-runtime "^6.22.0"
334 | babel-types "^6.22.0"
335 |
336 | babel-helper-hoist-variables@^6.22.0:
337 | version "6.22.0"
338 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.22.0.tgz#3eacbf731d80705845dd2e9718f600cfb9b4ba72"
339 | dependencies:
340 | babel-runtime "^6.22.0"
341 | babel-types "^6.22.0"
342 |
343 | babel-helper-optimise-call-expression@^6.23.0:
344 | version "6.23.0"
345 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.23.0.tgz#f3ee7eed355b4282138b33d02b78369e470622f5"
346 | dependencies:
347 | babel-runtime "^6.22.0"
348 | babel-types "^6.23.0"
349 |
350 | babel-helper-regex@^6.22.0:
351 | version "6.22.0"
352 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.22.0.tgz#79f532be1647b1f0ee3474b5f5c3da58001d247d"
353 | dependencies:
354 | babel-runtime "^6.22.0"
355 | babel-types "^6.22.0"
356 | lodash "^4.2.0"
357 |
358 | babel-helper-remap-async-to-generator@^6.22.0:
359 | version "6.22.0"
360 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.22.0.tgz#2186ae73278ed03b8b15ced089609da981053383"
361 | dependencies:
362 | babel-helper-function-name "^6.22.0"
363 | babel-runtime "^6.22.0"
364 | babel-template "^6.22.0"
365 | babel-traverse "^6.22.0"
366 | babel-types "^6.22.0"
367 |
368 | babel-helper-replace-supers@^6.22.0, babel-helper-replace-supers@^6.23.0:
369 | version "6.23.0"
370 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.23.0.tgz#eeaf8ad9b58ec4337ca94223bacdca1f8d9b4bfd"
371 | dependencies:
372 | babel-helper-optimise-call-expression "^6.23.0"
373 | babel-messages "^6.23.0"
374 | babel-runtime "^6.22.0"
375 | babel-template "^6.23.0"
376 | babel-traverse "^6.23.0"
377 | babel-types "^6.23.0"
378 |
379 | babel-helpers@^6.23.0:
380 | version "6.23.0"
381 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.23.0.tgz#4f8f2e092d0b6a8808a4bde79c27f1e2ecf0d992"
382 | dependencies:
383 | babel-runtime "^6.22.0"
384 | babel-template "^6.23.0"
385 |
386 | babel-loader@^6.4.0:
387 | version "6.4.0"
388 | resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-6.4.0.tgz#e98c239662a22533b9e7a49594ef216d7635ea28"
389 | dependencies:
390 | find-cache-dir "^0.1.1"
391 | loader-utils "^0.2.16"
392 | mkdirp "^0.5.1"
393 | object-assign "^4.0.1"
394 |
395 | babel-messages@^6.23.0:
396 | version "6.23.0"
397 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e"
398 | dependencies:
399 | babel-runtime "^6.22.0"
400 |
401 | babel-plugin-check-es2015-constants@^6.22.0:
402 | version "6.22.0"
403 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a"
404 | dependencies:
405 | babel-runtime "^6.22.0"
406 |
407 | babel-plugin-syntax-async-functions@^6.8.0:
408 | version "6.13.0"
409 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95"
410 |
411 | babel-plugin-syntax-async-generators@^6.5.0:
412 | version "6.13.0"
413 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a"
414 |
415 | babel-plugin-syntax-class-properties@^6.8.0:
416 | version "6.13.0"
417 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de"
418 |
419 | babel-plugin-syntax-decorators@^6.1.18, babel-plugin-syntax-decorators@^6.13.0:
420 | version "6.13.0"
421 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b"
422 |
423 | babel-plugin-syntax-dynamic-import@^6.18.0:
424 | version "6.18.0"
425 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da"
426 |
427 | babel-plugin-syntax-exponentiation-operator@^6.8.0:
428 | version "6.13.0"
429 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de"
430 |
431 | babel-plugin-syntax-flow@^6.18.0:
432 | version "6.18.0"
433 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d"
434 |
435 | babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0:
436 | version "6.18.0"
437 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946"
438 |
439 | babel-plugin-syntax-object-rest-spread@^6.8.0:
440 | version "6.13.0"
441 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5"
442 |
443 | babel-plugin-syntax-trailing-function-commas@^6.22.0:
444 | version "6.22.0"
445 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3"
446 |
447 | babel-plugin-transform-async-generator-functions@^6.22.0:
448 | version "6.22.0"
449 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.22.0.tgz#a720a98153a7596f204099cd5409f4b3c05bab46"
450 | dependencies:
451 | babel-helper-remap-async-to-generator "^6.22.0"
452 | babel-plugin-syntax-async-generators "^6.5.0"
453 | babel-runtime "^6.22.0"
454 |
455 | babel-plugin-transform-async-to-generator@^6.22.0:
456 | version "6.22.0"
457 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.22.0.tgz#194b6938ec195ad36efc4c33a971acf00d8cd35e"
458 | dependencies:
459 | babel-helper-remap-async-to-generator "^6.22.0"
460 | babel-plugin-syntax-async-functions "^6.8.0"
461 | babel-runtime "^6.22.0"
462 |
463 | babel-plugin-transform-class-properties@^6.22.0, babel-plugin-transform-class-properties@^6.23.0:
464 | version "6.23.0"
465 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.23.0.tgz#187b747ee404399013563c993db038f34754ac3b"
466 | dependencies:
467 | babel-helper-function-name "^6.23.0"
468 | babel-plugin-syntax-class-properties "^6.8.0"
469 | babel-runtime "^6.22.0"
470 | babel-template "^6.23.0"
471 |
472 | babel-plugin-transform-decorators-legacy@^1.3.4:
473 | version "1.3.4"
474 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators-legacy/-/babel-plugin-transform-decorators-legacy-1.3.4.tgz#741b58f6c5bce9e6027e0882d9c994f04f366925"
475 | dependencies:
476 | babel-plugin-syntax-decorators "^6.1.18"
477 | babel-runtime "^6.2.0"
478 | babel-template "^6.3.0"
479 |
480 | babel-plugin-transform-decorators@^6.22.0:
481 | version "6.22.0"
482 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.22.0.tgz#c03635b27a23b23b7224f49232c237a73988d27c"
483 | dependencies:
484 | babel-helper-explode-class "^6.22.0"
485 | babel-plugin-syntax-decorators "^6.13.0"
486 | babel-runtime "^6.22.0"
487 | babel-template "^6.22.0"
488 | babel-types "^6.22.0"
489 |
490 | babel-plugin-transform-es2015-arrow-functions@^6.22.0:
491 | version "6.22.0"
492 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221"
493 | dependencies:
494 | babel-runtime "^6.22.0"
495 |
496 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0:
497 | version "6.22.0"
498 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141"
499 | dependencies:
500 | babel-runtime "^6.22.0"
501 |
502 | babel-plugin-transform-es2015-block-scoping@^6.22.0:
503 | version "6.23.0"
504 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.23.0.tgz#e48895cf0b375be148cd7c8879b422707a053b51"
505 | dependencies:
506 | babel-runtime "^6.22.0"
507 | babel-template "^6.23.0"
508 | babel-traverse "^6.23.0"
509 | babel-types "^6.23.0"
510 | lodash "^4.2.0"
511 |
512 | babel-plugin-transform-es2015-classes@^6.22.0:
513 | version "6.23.0"
514 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.23.0.tgz#49b53f326202a2fd1b3bbaa5e2edd8a4f78643c1"
515 | dependencies:
516 | babel-helper-define-map "^6.23.0"
517 | babel-helper-function-name "^6.23.0"
518 | babel-helper-optimise-call-expression "^6.23.0"
519 | babel-helper-replace-supers "^6.23.0"
520 | babel-messages "^6.23.0"
521 | babel-runtime "^6.22.0"
522 | babel-template "^6.23.0"
523 | babel-traverse "^6.23.0"
524 | babel-types "^6.23.0"
525 |
526 | babel-plugin-transform-es2015-computed-properties@^6.22.0:
527 | version "6.22.0"
528 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.22.0.tgz#7c383e9629bba4820c11b0425bdd6290f7f057e7"
529 | dependencies:
530 | babel-runtime "^6.22.0"
531 | babel-template "^6.22.0"
532 |
533 | babel-plugin-transform-es2015-destructuring@^6.22.0:
534 | version "6.23.0"
535 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d"
536 | dependencies:
537 | babel-runtime "^6.22.0"
538 |
539 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0:
540 | version "6.22.0"
541 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.22.0.tgz#672397031c21610d72dd2bbb0ba9fb6277e1c36b"
542 | dependencies:
543 | babel-runtime "^6.22.0"
544 | babel-types "^6.22.0"
545 |
546 | babel-plugin-transform-es2015-for-of@^6.22.0:
547 | version "6.23.0"
548 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691"
549 | dependencies:
550 | babel-runtime "^6.22.0"
551 |
552 | babel-plugin-transform-es2015-function-name@^6.22.0:
553 | version "6.22.0"
554 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.22.0.tgz#f5fcc8b09093f9a23c76ac3d9e392c3ec4b77104"
555 | dependencies:
556 | babel-helper-function-name "^6.22.0"
557 | babel-runtime "^6.22.0"
558 | babel-types "^6.22.0"
559 |
560 | babel-plugin-transform-es2015-literals@^6.22.0:
561 | version "6.22.0"
562 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e"
563 | dependencies:
564 | babel-runtime "^6.22.0"
565 |
566 | babel-plugin-transform-es2015-modules-amd@^6.22.0:
567 | version "6.22.0"
568 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.22.0.tgz#bf69cd34889a41c33d90dfb740e0091ccff52f21"
569 | dependencies:
570 | babel-plugin-transform-es2015-modules-commonjs "^6.22.0"
571 | babel-runtime "^6.22.0"
572 | babel-template "^6.22.0"
573 |
574 | babel-plugin-transform-es2015-modules-commonjs@^6.22.0:
575 | version "6.23.0"
576 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.23.0.tgz#cba7aa6379fb7ec99250e6d46de2973aaffa7b92"
577 | dependencies:
578 | babel-plugin-transform-strict-mode "^6.22.0"
579 | babel-runtime "^6.22.0"
580 | babel-template "^6.23.0"
581 | babel-types "^6.23.0"
582 |
583 | babel-plugin-transform-es2015-modules-systemjs@^6.22.0:
584 | version "6.23.0"
585 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.23.0.tgz#ae3469227ffac39b0310d90fec73bfdc4f6317b0"
586 | dependencies:
587 | babel-helper-hoist-variables "^6.22.0"
588 | babel-runtime "^6.22.0"
589 | babel-template "^6.23.0"
590 |
591 | babel-plugin-transform-es2015-modules-umd@^6.22.0:
592 | version "6.23.0"
593 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.23.0.tgz#8d284ae2e19ed8fe21d2b1b26d6e7e0fcd94f0f1"
594 | dependencies:
595 | babel-plugin-transform-es2015-modules-amd "^6.22.0"
596 | babel-runtime "^6.22.0"
597 | babel-template "^6.23.0"
598 |
599 | babel-plugin-transform-es2015-object-super@^6.22.0:
600 | version "6.22.0"
601 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.22.0.tgz#daa60e114a042ea769dd53fe528fc82311eb98fc"
602 | dependencies:
603 | babel-helper-replace-supers "^6.22.0"
604 | babel-runtime "^6.22.0"
605 |
606 | babel-plugin-transform-es2015-parameters@^6.22.0:
607 | version "6.23.0"
608 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.23.0.tgz#3a2aabb70c8af945d5ce386f1a4250625a83ae3b"
609 | dependencies:
610 | babel-helper-call-delegate "^6.22.0"
611 | babel-helper-get-function-arity "^6.22.0"
612 | babel-runtime "^6.22.0"
613 | babel-template "^6.23.0"
614 | babel-traverse "^6.23.0"
615 | babel-types "^6.23.0"
616 |
617 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0:
618 | version "6.22.0"
619 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.22.0.tgz#8ba776e0affaa60bff21e921403b8a652a2ff723"
620 | dependencies:
621 | babel-runtime "^6.22.0"
622 | babel-types "^6.22.0"
623 |
624 | babel-plugin-transform-es2015-spread@^6.22.0:
625 | version "6.22.0"
626 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1"
627 | dependencies:
628 | babel-runtime "^6.22.0"
629 |
630 | babel-plugin-transform-es2015-sticky-regex@^6.22.0:
631 | version "6.22.0"
632 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.22.0.tgz#ab316829e866ee3f4b9eb96939757d19a5bc4593"
633 | dependencies:
634 | babel-helper-regex "^6.22.0"
635 | babel-runtime "^6.22.0"
636 | babel-types "^6.22.0"
637 |
638 | babel-plugin-transform-es2015-template-literals@^6.22.0:
639 | version "6.22.0"
640 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d"
641 | dependencies:
642 | babel-runtime "^6.22.0"
643 |
644 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0:
645 | version "6.23.0"
646 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372"
647 | dependencies:
648 | babel-runtime "^6.22.0"
649 |
650 | babel-plugin-transform-es2015-unicode-regex@^6.22.0:
651 | version "6.22.0"
652 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.22.0.tgz#8d9cc27e7ee1decfe65454fb986452a04a613d20"
653 | dependencies:
654 | babel-helper-regex "^6.22.0"
655 | babel-runtime "^6.22.0"
656 | regexpu-core "^2.0.0"
657 |
658 | babel-plugin-transform-exponentiation-operator@^6.22.0:
659 | version "6.22.0"
660 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.22.0.tgz#d57c8335281918e54ef053118ce6eb108468084d"
661 | dependencies:
662 | babel-helper-builder-binary-assignment-operator-visitor "^6.22.0"
663 | babel-plugin-syntax-exponentiation-operator "^6.8.0"
664 | babel-runtime "^6.22.0"
665 |
666 | babel-plugin-transform-flow-strip-types@^6.22.0:
667 | version "6.22.0"
668 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf"
669 | dependencies:
670 | babel-plugin-syntax-flow "^6.18.0"
671 | babel-runtime "^6.22.0"
672 |
673 | babel-plugin-transform-object-rest-spread@^6.22.0:
674 | version "6.23.0"
675 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.23.0.tgz#875d6bc9be761c58a2ae3feee5dc4895d8c7f921"
676 | dependencies:
677 | babel-plugin-syntax-object-rest-spread "^6.8.0"
678 | babel-runtime "^6.22.0"
679 |
680 | babel-plugin-transform-react-display-name@^6.23.0:
681 | version "6.23.0"
682 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.23.0.tgz#4398910c358441dc4cef18787264d0412ed36b37"
683 | dependencies:
684 | babel-runtime "^6.22.0"
685 |
686 | babel-plugin-transform-react-jsx-self@^6.22.0:
687 | version "6.22.0"
688 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e"
689 | dependencies:
690 | babel-plugin-syntax-jsx "^6.8.0"
691 | babel-runtime "^6.22.0"
692 |
693 | babel-plugin-transform-react-jsx-source@^6.22.0:
694 | version "6.22.0"
695 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6"
696 | dependencies:
697 | babel-plugin-syntax-jsx "^6.8.0"
698 | babel-runtime "^6.22.0"
699 |
700 | babel-plugin-transform-react-jsx@^6.23.0:
701 | version "6.23.0"
702 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.23.0.tgz#23e892f7f2e759678eb5e4446a8f8e94e81b3470"
703 | dependencies:
704 | babel-helper-builder-react-jsx "^6.23.0"
705 | babel-plugin-syntax-jsx "^6.8.0"
706 | babel-runtime "^6.22.0"
707 |
708 | babel-plugin-transform-regenerator@^6.22.0:
709 | version "6.22.0"
710 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.22.0.tgz#65740593a319c44522157538d690b84094617ea6"
711 | dependencies:
712 | regenerator-transform "0.9.8"
713 |
714 | babel-plugin-transform-strict-mode@^6.22.0:
715 | version "6.22.0"
716 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.22.0.tgz#e008df01340fdc87e959da65991b7e05970c8c7c"
717 | dependencies:
718 | babel-runtime "^6.22.0"
719 | babel-types "^6.22.0"
720 |
721 | babel-preset-es2015@^6.22.0:
722 | version "6.22.0"
723 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.22.0.tgz#af5a98ecb35eb8af764ad8a5a05eb36dc4386835"
724 | dependencies:
725 | babel-plugin-check-es2015-constants "^6.22.0"
726 | babel-plugin-transform-es2015-arrow-functions "^6.22.0"
727 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0"
728 | babel-plugin-transform-es2015-block-scoping "^6.22.0"
729 | babel-plugin-transform-es2015-classes "^6.22.0"
730 | babel-plugin-transform-es2015-computed-properties "^6.22.0"
731 | babel-plugin-transform-es2015-destructuring "^6.22.0"
732 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0"
733 | babel-plugin-transform-es2015-for-of "^6.22.0"
734 | babel-plugin-transform-es2015-function-name "^6.22.0"
735 | babel-plugin-transform-es2015-literals "^6.22.0"
736 | babel-plugin-transform-es2015-modules-amd "^6.22.0"
737 | babel-plugin-transform-es2015-modules-commonjs "^6.22.0"
738 | babel-plugin-transform-es2015-modules-systemjs "^6.22.0"
739 | babel-plugin-transform-es2015-modules-umd "^6.22.0"
740 | babel-plugin-transform-es2015-object-super "^6.22.0"
741 | babel-plugin-transform-es2015-parameters "^6.22.0"
742 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0"
743 | babel-plugin-transform-es2015-spread "^6.22.0"
744 | babel-plugin-transform-es2015-sticky-regex "^6.22.0"
745 | babel-plugin-transform-es2015-template-literals "^6.22.0"
746 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0"
747 | babel-plugin-transform-es2015-unicode-regex "^6.22.0"
748 | babel-plugin-transform-regenerator "^6.22.0"
749 |
750 | babel-preset-flow@^6.23.0:
751 | version "6.23.0"
752 | resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d"
753 | dependencies:
754 | babel-plugin-transform-flow-strip-types "^6.22.0"
755 |
756 | babel-preset-react@^6.23.0:
757 | version "6.23.0"
758 | resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.23.0.tgz#eb7cee4de98a3f94502c28565332da9819455195"
759 | dependencies:
760 | babel-plugin-syntax-jsx "^6.3.13"
761 | babel-plugin-transform-react-display-name "^6.23.0"
762 | babel-plugin-transform-react-jsx "^6.23.0"
763 | babel-plugin-transform-react-jsx-self "^6.22.0"
764 | babel-plugin-transform-react-jsx-source "^6.22.0"
765 | babel-preset-flow "^6.23.0"
766 |
767 | babel-preset-stage-2@^6.22.0:
768 | version "6.22.0"
769 | resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-6.22.0.tgz#ccd565f19c245cade394b21216df704a73b27c07"
770 | dependencies:
771 | babel-plugin-syntax-dynamic-import "^6.18.0"
772 | babel-plugin-transform-class-properties "^6.22.0"
773 | babel-plugin-transform-decorators "^6.22.0"
774 | babel-preset-stage-3 "^6.22.0"
775 |
776 | babel-preset-stage-3@^6.22.0:
777 | version "6.22.0"
778 | resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-6.22.0.tgz#a4e92bbace7456fafdf651d7a7657ee0bbca9c2e"
779 | dependencies:
780 | babel-plugin-syntax-trailing-function-commas "^6.22.0"
781 | babel-plugin-transform-async-generator-functions "^6.22.0"
782 | babel-plugin-transform-async-to-generator "^6.22.0"
783 | babel-plugin-transform-exponentiation-operator "^6.22.0"
784 | babel-plugin-transform-object-rest-spread "^6.22.0"
785 |
786 | babel-register@^6.23.0:
787 | version "6.23.0"
788 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.23.0.tgz#c9aa3d4cca94b51da34826c4a0f9e08145d74ff3"
789 | dependencies:
790 | babel-core "^6.23.0"
791 | babel-runtime "^6.22.0"
792 | core-js "^2.4.0"
793 | home-or-tmp "^2.0.0"
794 | lodash "^4.2.0"
795 | mkdirp "^0.5.1"
796 | source-map-support "^0.4.2"
797 |
798 | babel-runtime@^6.18.0, babel-runtime@^6.2.0, babel-runtime@^6.22.0:
799 | version "6.23.0"
800 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b"
801 | dependencies:
802 | core-js "^2.4.0"
803 | regenerator-runtime "^0.10.0"
804 |
805 | babel-template@^6.22.0, babel-template@^6.23.0, babel-template@^6.3.0, babel-template@^6.7.0:
806 | version "6.23.0"
807 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.23.0.tgz#04d4f270adbb3aa704a8143ae26faa529238e638"
808 | dependencies:
809 | babel-runtime "^6.22.0"
810 | babel-traverse "^6.23.0"
811 | babel-types "^6.23.0"
812 | babylon "^6.11.0"
813 | lodash "^4.2.0"
814 |
815 | babel-traverse@^6.15.0, babel-traverse@^6.22.0, babel-traverse@^6.23.0, babel-traverse@^6.23.1:
816 | version "6.23.1"
817 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.23.1.tgz#d3cb59010ecd06a97d81310065f966b699e14f48"
818 | dependencies:
819 | babel-code-frame "^6.22.0"
820 | babel-messages "^6.23.0"
821 | babel-runtime "^6.22.0"
822 | babel-types "^6.23.0"
823 | babylon "^6.15.0"
824 | debug "^2.2.0"
825 | globals "^9.0.0"
826 | invariant "^2.2.0"
827 | lodash "^4.2.0"
828 |
829 | babel-types@^6.15.0, babel-types@^6.19.0, babel-types@^6.22.0, babel-types@^6.23.0:
830 | version "6.23.0"
831 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.23.0.tgz#bb17179d7538bad38cd0c9e115d340f77e7e9acf"
832 | dependencies:
833 | babel-runtime "^6.22.0"
834 | esutils "^2.0.2"
835 | lodash "^4.2.0"
836 | to-fast-properties "^1.0.1"
837 |
838 | babylon@^6.11.0, babylon@^6.13.0, babylon@^6.15.0:
839 | version "6.16.1"
840 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.16.1.tgz#30c5a22f481978a9e7f8cdfdf496b11d94b404d3"
841 |
842 | balanced-match@^0.4.1:
843 | version "0.4.2"
844 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838"
845 |
846 | base64-js@^1.0.2:
847 | version "1.2.0"
848 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.0.tgz#a39992d723584811982be5e290bb6a53d86700f1"
849 |
850 | bcrypt-pbkdf@^1.0.0:
851 | version "1.0.1"
852 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d"
853 | dependencies:
854 | tweetnacl "^0.14.3"
855 |
856 | big.js@^3.1.3:
857 | version "3.1.3"
858 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.1.3.tgz#4cada2193652eb3ca9ec8e55c9015669c9806978"
859 |
860 | binary-extensions@^1.0.0:
861 | version "1.8.0"
862 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774"
863 |
864 | block-stream@*:
865 | version "0.0.9"
866 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a"
867 | dependencies:
868 | inherits "~2.0.0"
869 |
870 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0:
871 | version "4.11.6"
872 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.6.tgz#53344adb14617a13f6e8dd2ce28905d1c0ba3215"
873 |
874 | boom@2.x.x:
875 | version "2.10.1"
876 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f"
877 | dependencies:
878 | hoek "2.x.x"
879 |
880 | brace-expansion@^1.0.0:
881 | version "1.1.6"
882 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9"
883 | dependencies:
884 | balanced-match "^0.4.1"
885 | concat-map "0.0.1"
886 |
887 | braces@^1.8.2:
888 | version "1.8.5"
889 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7"
890 | dependencies:
891 | expand-range "^1.8.1"
892 | preserve "^0.2.0"
893 | repeat-element "^1.1.2"
894 |
895 | brorand@^1.0.1:
896 | version "1.1.0"
897 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f"
898 |
899 | browser-stdout@1.3.0:
900 | version "1.3.0"
901 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f"
902 |
903 | browserify-aes@^1.0.0, browserify-aes@^1.0.4:
904 | version "1.0.6"
905 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.0.6.tgz#5e7725dbdef1fd5930d4ebab48567ce451c48a0a"
906 | dependencies:
907 | buffer-xor "^1.0.2"
908 | cipher-base "^1.0.0"
909 | create-hash "^1.1.0"
910 | evp_bytestokey "^1.0.0"
911 | inherits "^2.0.1"
912 |
913 | browserify-cipher@^1.0.0:
914 | version "1.0.0"
915 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a"
916 | dependencies:
917 | browserify-aes "^1.0.4"
918 | browserify-des "^1.0.0"
919 | evp_bytestokey "^1.0.0"
920 |
921 | browserify-des@^1.0.0:
922 | version "1.0.0"
923 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd"
924 | dependencies:
925 | cipher-base "^1.0.1"
926 | des.js "^1.0.0"
927 | inherits "^2.0.1"
928 |
929 | browserify-rsa@^4.0.0:
930 | version "4.0.1"
931 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524"
932 | dependencies:
933 | bn.js "^4.1.0"
934 | randombytes "^2.0.1"
935 |
936 | browserify-sign@^4.0.0:
937 | version "4.0.0"
938 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.0.tgz#10773910c3c206d5420a46aad8694f820b85968f"
939 | dependencies:
940 | bn.js "^4.1.1"
941 | browserify-rsa "^4.0.0"
942 | create-hash "^1.1.0"
943 | create-hmac "^1.1.2"
944 | elliptic "^6.0.0"
945 | inherits "^2.0.1"
946 | parse-asn1 "^5.0.0"
947 |
948 | browserify-zlib@^0.1.4:
949 | version "0.1.4"
950 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d"
951 | dependencies:
952 | pako "~0.2.0"
953 |
954 | buffer-shims@^1.0.0:
955 | version "1.0.0"
956 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51"
957 |
958 | buffer-xor@^1.0.2:
959 | version "1.0.3"
960 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9"
961 |
962 | buffer@^4.3.0:
963 | version "4.9.1"
964 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298"
965 | dependencies:
966 | base64-js "^1.0.2"
967 | ieee754 "^1.1.4"
968 | isarray "^1.0.0"
969 |
970 | builtin-modules@^1.0.0, builtin-modules@^1.1.1:
971 | version "1.1.1"
972 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
973 |
974 | builtin-status-codes@^3.0.0:
975 | version "3.0.0"
976 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8"
977 |
978 | caller-path@^0.1.0:
979 | version "0.1.0"
980 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f"
981 | dependencies:
982 | callsites "^0.2.0"
983 |
984 | callsites@^0.2.0:
985 | version "0.2.0"
986 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca"
987 |
988 | camelcase@^1.0.2:
989 | version "1.2.1"
990 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39"
991 |
992 | camelcase@^3.0.0:
993 | version "3.0.0"
994 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a"
995 |
996 | caseless@~0.12.0:
997 | version "0.12.0"
998 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
999 |
1000 | center-align@^0.1.1:
1001 | version "0.1.3"
1002 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad"
1003 | dependencies:
1004 | align-text "^0.1.3"
1005 | lazy-cache "^1.0.3"
1006 |
1007 | chai@^3.5.0:
1008 | version "3.5.0"
1009 | resolved "https://registry.yarnpkg.com/chai/-/chai-3.5.0.tgz#4d02637b067fe958bdbfdd3a40ec56fef7373247"
1010 | dependencies:
1011 | assertion-error "^1.0.1"
1012 | deep-eql "^0.1.3"
1013 | type-detect "^1.0.0"
1014 |
1015 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3:
1016 | version "1.1.3"
1017 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
1018 | dependencies:
1019 | ansi-styles "^2.2.1"
1020 | escape-string-regexp "^1.0.2"
1021 | has-ansi "^2.0.0"
1022 | strip-ansi "^3.0.0"
1023 | supports-color "^2.0.0"
1024 |
1025 | chokidar@^1.4.3:
1026 | version "1.6.1"
1027 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2"
1028 | dependencies:
1029 | anymatch "^1.3.0"
1030 | async-each "^1.0.0"
1031 | glob-parent "^2.0.0"
1032 | inherits "^2.0.1"
1033 | is-binary-path "^1.0.0"
1034 | is-glob "^2.0.0"
1035 | path-is-absolute "^1.0.0"
1036 | readdirp "^2.0.0"
1037 | optionalDependencies:
1038 | fsevents "^1.0.0"
1039 |
1040 | cipher-base@^1.0.0, cipher-base@^1.0.1:
1041 | version "1.0.3"
1042 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.3.tgz#eeabf194419ce900da3018c207d212f2a6df0a07"
1043 | dependencies:
1044 | inherits "^2.0.1"
1045 |
1046 | circular-json@^0.3.1:
1047 | version "0.3.1"
1048 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d"
1049 |
1050 | cli-cursor@^1.0.1:
1051 | version "1.0.2"
1052 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987"
1053 | dependencies:
1054 | restore-cursor "^1.0.1"
1055 |
1056 | cli-width@^2.0.0:
1057 | version "2.1.0"
1058 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a"
1059 |
1060 | cliui@^2.1.0:
1061 | version "2.1.0"
1062 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1"
1063 | dependencies:
1064 | center-align "^0.1.1"
1065 | right-align "^0.1.1"
1066 | wordwrap "0.0.2"
1067 |
1068 | cliui@^3.2.0:
1069 | version "3.2.0"
1070 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d"
1071 | dependencies:
1072 | string-width "^1.0.1"
1073 | strip-ansi "^3.0.1"
1074 | wrap-ansi "^2.0.0"
1075 |
1076 | co@^4.6.0:
1077 | version "4.6.0"
1078 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
1079 |
1080 | code-point-at@^1.0.0:
1081 | version "1.1.0"
1082 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
1083 |
1084 | combined-stream@^1.0.5, combined-stream@~1.0.5:
1085 | version "1.0.5"
1086 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009"
1087 | dependencies:
1088 | delayed-stream "~1.0.0"
1089 |
1090 | commander@2.9.0:
1091 | version "2.9.0"
1092 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4"
1093 | dependencies:
1094 | graceful-readlink ">= 1.0.0"
1095 |
1096 | commondir@^1.0.1:
1097 | version "1.0.1"
1098 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
1099 |
1100 | concat-map@0.0.1:
1101 | version "0.0.1"
1102 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
1103 |
1104 | concat-stream@^1.4.6:
1105 | version "1.6.0"
1106 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7"
1107 | dependencies:
1108 | inherits "^2.0.3"
1109 | readable-stream "^2.2.2"
1110 | typedarray "^0.0.6"
1111 |
1112 | console-browserify@^1.1.0:
1113 | version "1.1.0"
1114 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10"
1115 | dependencies:
1116 | date-now "^0.1.4"
1117 |
1118 | console-control-strings@^1.0.0, console-control-strings@~1.1.0:
1119 | version "1.1.0"
1120 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
1121 |
1122 | constants-browserify@^1.0.0:
1123 | version "1.0.0"
1124 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75"
1125 |
1126 | contains-path@^0.1.0:
1127 | version "0.1.0"
1128 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a"
1129 |
1130 | content-disposition@0.5.2:
1131 | version "0.5.2"
1132 | resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4"
1133 |
1134 | content-type@~1.0.2:
1135 | version "1.0.2"
1136 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.2.tgz#b7d113aee7a8dd27bd21133c4dc2529df1721eed"
1137 |
1138 | convert-source-map@^1.1.0:
1139 | version "1.4.0"
1140 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.4.0.tgz#e3dad195bf61bfe13a7a3c73e9876ec14a0268f3"
1141 |
1142 | cookie-signature@1.0.6:
1143 | version "1.0.6"
1144 | resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c"
1145 |
1146 | cookie@0.3.1:
1147 | version "0.3.1"
1148 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb"
1149 |
1150 | core-js@^1.0.0:
1151 | version "1.2.7"
1152 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636"
1153 |
1154 | core-js@^2.4.0:
1155 | version "2.4.1"
1156 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e"
1157 |
1158 | core-util-is@~1.0.0:
1159 | version "1.0.2"
1160 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
1161 |
1162 | create-ecdh@^4.0.0:
1163 | version "4.0.0"
1164 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d"
1165 | dependencies:
1166 | bn.js "^4.1.0"
1167 | elliptic "^6.0.0"
1168 |
1169 | create-hash@^1.1.0, create-hash@^1.1.1:
1170 | version "1.1.2"
1171 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.2.tgz#51210062d7bb7479f6c65bb41a92208b1d61abad"
1172 | dependencies:
1173 | cipher-base "^1.0.1"
1174 | inherits "^2.0.1"
1175 | ripemd160 "^1.0.0"
1176 | sha.js "^2.3.6"
1177 |
1178 | create-hmac@^1.1.0, create-hmac@^1.1.2:
1179 | version "1.1.4"
1180 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.4.tgz#d3fb4ba253eb8b3f56e39ea2fbcb8af747bd3170"
1181 | dependencies:
1182 | create-hash "^1.1.0"
1183 | inherits "^2.0.1"
1184 |
1185 | cryptiles@2.x.x:
1186 | version "2.0.5"
1187 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8"
1188 | dependencies:
1189 | boom "2.x.x"
1190 |
1191 | crypto-browserify@^3.11.0:
1192 | version "3.11.0"
1193 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.11.0.tgz#3652a0906ab9b2a7e0c3ce66a408e957a2485522"
1194 | dependencies:
1195 | browserify-cipher "^1.0.0"
1196 | browserify-sign "^4.0.0"
1197 | create-ecdh "^4.0.0"
1198 | create-hash "^1.1.0"
1199 | create-hmac "^1.1.0"
1200 | diffie-hellman "^5.0.0"
1201 | inherits "^2.0.1"
1202 | pbkdf2 "^3.0.3"
1203 | public-encrypt "^4.0.0"
1204 | randombytes "^2.0.0"
1205 |
1206 | d@^0.1.1, d@~0.1.1:
1207 | version "0.1.1"
1208 | resolved "https://registry.yarnpkg.com/d/-/d-0.1.1.tgz#da184c535d18d8ee7ba2aa229b914009fae11309"
1209 | dependencies:
1210 | es5-ext "~0.10.2"
1211 |
1212 | damerau-levenshtein@^1.0.0:
1213 | version "1.0.3"
1214 | resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.3.tgz#ae4f4ce0b62acae10ff63a01bb08f652f5213af2"
1215 |
1216 | dashdash@^1.12.0:
1217 | version "1.14.1"
1218 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
1219 | dependencies:
1220 | assert-plus "^1.0.0"
1221 |
1222 | date-now@^0.1.4:
1223 | version "0.1.4"
1224 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b"
1225 |
1226 | debug@2.2.0, debug@~2.2.0:
1227 | version "2.2.0"
1228 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da"
1229 | dependencies:
1230 | ms "0.7.1"
1231 |
1232 | debug@2.6.1:
1233 | version "2.6.1"
1234 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.1.tgz#79855090ba2c4e3115cc7d8769491d58f0491351"
1235 | dependencies:
1236 | ms "0.7.2"
1237 |
1238 | debug@^2.1.1, debug@^2.2.0:
1239 | version "2.6.2"
1240 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.2.tgz#dfa96a861ee9b8c2f29349b3bcc41aa599a71e0f"
1241 | dependencies:
1242 | ms "0.7.2"
1243 |
1244 | decamelize@^1.0.0, decamelize@^1.1.1:
1245 | version "1.2.0"
1246 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
1247 |
1248 | deep-eql@^0.1.3:
1249 | version "0.1.3"
1250 | resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-0.1.3.tgz#ef558acab8de25206cd713906d74e56930eb69f2"
1251 | dependencies:
1252 | type-detect "0.1.1"
1253 |
1254 | deep-extend@~0.4.0:
1255 | version "0.4.1"
1256 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253"
1257 |
1258 | deep-is@~0.1.3:
1259 | version "0.1.3"
1260 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
1261 |
1262 | define-properties@^1.1.2:
1263 | version "1.1.2"
1264 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94"
1265 | dependencies:
1266 | foreach "^2.0.5"
1267 | object-keys "^1.0.8"
1268 |
1269 | del@^2.0.2:
1270 | version "2.2.2"
1271 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8"
1272 | dependencies:
1273 | globby "^5.0.0"
1274 | is-path-cwd "^1.0.0"
1275 | is-path-in-cwd "^1.0.0"
1276 | object-assign "^4.0.1"
1277 | pify "^2.0.0"
1278 | pinkie-promise "^2.0.0"
1279 | rimraf "^2.2.8"
1280 |
1281 | delayed-stream@~1.0.0:
1282 | version "1.0.0"
1283 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
1284 |
1285 | delegates@^1.0.0:
1286 | version "1.0.0"
1287 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
1288 |
1289 | depd@1.1.0, depd@~1.1.0:
1290 | version "1.1.0"
1291 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.0.tgz#e1bd82c6aab6ced965b97b88b17ed3e528ca18c3"
1292 |
1293 | des.js@^1.0.0:
1294 | version "1.0.0"
1295 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc"
1296 | dependencies:
1297 | inherits "^2.0.1"
1298 | minimalistic-assert "^1.0.0"
1299 |
1300 | destroy@~1.0.4:
1301 | version "1.0.4"
1302 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80"
1303 |
1304 | detect-indent@^4.0.0:
1305 | version "4.0.0"
1306 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208"
1307 | dependencies:
1308 | repeating "^2.0.0"
1309 |
1310 | diff@1.4.0:
1311 | version "1.4.0"
1312 | resolved "https://registry.yarnpkg.com/diff/-/diff-1.4.0.tgz#7f28d2eb9ee7b15a97efd89ce63dcfdaa3ccbabf"
1313 |
1314 | diffie-hellman@^5.0.0:
1315 | version "5.0.2"
1316 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e"
1317 | dependencies:
1318 | bn.js "^4.1.0"
1319 | miller-rabin "^4.0.0"
1320 | randombytes "^2.0.0"
1321 |
1322 | doctrine@1.5.0, doctrine@^1.2.2:
1323 | version "1.5.0"
1324 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa"
1325 | dependencies:
1326 | esutils "^2.0.2"
1327 | isarray "^1.0.0"
1328 |
1329 | dom-walk@^0.1.0:
1330 | version "0.1.1"
1331 | resolved "https://registry.yarnpkg.com/dom-walk/-/dom-walk-0.1.1.tgz#672226dc74c8f799ad35307df936aba11acd6018"
1332 |
1333 | domain-browser@^1.1.1:
1334 | version "1.1.7"
1335 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc"
1336 |
1337 | ecc-jsbn@~0.1.1:
1338 | version "0.1.1"
1339 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505"
1340 | dependencies:
1341 | jsbn "~0.1.0"
1342 |
1343 | ee-first@1.1.1:
1344 | version "1.1.1"
1345 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
1346 |
1347 | elliptic@^6.0.0:
1348 | version "6.4.0"
1349 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df"
1350 | dependencies:
1351 | bn.js "^4.4.0"
1352 | brorand "^1.0.1"
1353 | hash.js "^1.0.0"
1354 | hmac-drbg "^1.0.0"
1355 | inherits "^2.0.1"
1356 | minimalistic-assert "^1.0.0"
1357 | minimalistic-crypto-utils "^1.0.0"
1358 |
1359 | emoji-regex@^6.1.0:
1360 | version "6.1.3"
1361 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-6.1.3.tgz#ec79a3969b02d2ecf2b72254279bf99bc7a83932"
1362 |
1363 | emojis-list@^2.0.0:
1364 | version "2.1.0"
1365 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389"
1366 |
1367 | encodeurl@~1.0.1:
1368 | version "1.0.1"
1369 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20"
1370 |
1371 | encoding@^0.1.11:
1372 | version "0.1.12"
1373 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb"
1374 | dependencies:
1375 | iconv-lite "~0.4.13"
1376 |
1377 | enhanced-resolve@^3.0.0:
1378 | version "3.1.0"
1379 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.1.0.tgz#9f4b626f577245edcf4b2ad83d86e17f4f421dec"
1380 | dependencies:
1381 | graceful-fs "^4.1.2"
1382 | memory-fs "^0.4.0"
1383 | object-assign "^4.0.1"
1384 | tapable "^0.2.5"
1385 |
1386 | errno@^0.1.3:
1387 | version "0.1.4"
1388 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d"
1389 | dependencies:
1390 | prr "~0.0.0"
1391 |
1392 | error-ex@^1.2.0:
1393 | version "1.3.1"
1394 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc"
1395 | dependencies:
1396 | is-arrayish "^0.2.1"
1397 |
1398 | error-stack-parser@^1.3.6:
1399 | version "1.3.6"
1400 | resolved "https://registry.yarnpkg.com/error-stack-parser/-/error-stack-parser-1.3.6.tgz#e0e73b93e417138d1cd7c0b746b1a4a14854c292"
1401 | dependencies:
1402 | stackframe "^0.3.1"
1403 |
1404 | es-abstract@^1.7.0:
1405 | version "1.7.0"
1406 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.7.0.tgz#dfade774e01bfcd97f96180298c449c8623fb94c"
1407 | dependencies:
1408 | es-to-primitive "^1.1.1"
1409 | function-bind "^1.1.0"
1410 | is-callable "^1.1.3"
1411 | is-regex "^1.0.3"
1412 |
1413 | es-to-primitive@^1.1.1:
1414 | version "1.1.1"
1415 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d"
1416 | dependencies:
1417 | is-callable "^1.1.1"
1418 | is-date-object "^1.0.1"
1419 | is-symbol "^1.0.1"
1420 |
1421 | es5-ext@^0.10.7, es5-ext@^0.10.8, es5-ext@~0.10.11, es5-ext@~0.10.2, es5-ext@~0.10.7:
1422 | version "0.10.12"
1423 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.12.tgz#aa84641d4db76b62abba5e45fd805ecbab140047"
1424 | dependencies:
1425 | es6-iterator "2"
1426 | es6-symbol "~3.1"
1427 |
1428 | es6-iterator@2:
1429 | version "2.0.0"
1430 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.0.tgz#bd968567d61635e33c0b80727613c9cb4b096bac"
1431 | dependencies:
1432 | d "^0.1.1"
1433 | es5-ext "^0.10.7"
1434 | es6-symbol "3"
1435 |
1436 | es6-map@^0.1.3:
1437 | version "0.1.4"
1438 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.4.tgz#a34b147be224773a4d7da8072794cefa3632b897"
1439 | dependencies:
1440 | d "~0.1.1"
1441 | es5-ext "~0.10.11"
1442 | es6-iterator "2"
1443 | es6-set "~0.1.3"
1444 | es6-symbol "~3.1.0"
1445 | event-emitter "~0.3.4"
1446 |
1447 | es6-set@~0.1.3:
1448 | version "0.1.4"
1449 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.4.tgz#9516b6761c2964b92ff479456233a247dc707ce8"
1450 | dependencies:
1451 | d "~0.1.1"
1452 | es5-ext "~0.10.11"
1453 | es6-iterator "2"
1454 | es6-symbol "3"
1455 | event-emitter "~0.3.4"
1456 |
1457 | es6-symbol@3, es6-symbol@~3.1, es6-symbol@~3.1.0:
1458 | version "3.1.0"
1459 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.0.tgz#94481c655e7a7cad82eba832d97d5433496d7ffa"
1460 | dependencies:
1461 | d "~0.1.1"
1462 | es5-ext "~0.10.11"
1463 |
1464 | es6-weak-map@^2.0.1:
1465 | version "2.0.1"
1466 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.1.tgz#0d2bbd8827eb5fb4ba8f97fbfea50d43db21ea81"
1467 | dependencies:
1468 | d "^0.1.1"
1469 | es5-ext "^0.10.8"
1470 | es6-iterator "2"
1471 | es6-symbol "3"
1472 |
1473 | escape-html@~1.0.3:
1474 | version "1.0.3"
1475 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
1476 |
1477 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
1478 | version "1.0.5"
1479 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
1480 |
1481 | escope@^3.6.0:
1482 | version "3.6.0"
1483 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3"
1484 | dependencies:
1485 | es6-map "^0.1.3"
1486 | es6-weak-map "^2.0.1"
1487 | esrecurse "^4.1.0"
1488 | estraverse "^4.1.1"
1489 |
1490 | eslint-config-airbnb-base@^11.1.0:
1491 | version "11.1.1"
1492 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-11.1.1.tgz#61e9e89e4eb89f474f6913ac817be9fbb59063e0"
1493 |
1494 | eslint-config-airbnb@^14.1.0:
1495 | version "14.1.0"
1496 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb/-/eslint-config-airbnb-14.1.0.tgz#355d290040bbf8e00bf8b4b19f4b70cbe7c2317f"
1497 | dependencies:
1498 | eslint-config-airbnb-base "^11.1.0"
1499 |
1500 | eslint-import-resolver-node@^0.2.0:
1501 | version "0.2.3"
1502 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.2.3.tgz#5add8106e8c928db2cba232bcd9efa846e3da16c"
1503 | dependencies:
1504 | debug "^2.2.0"
1505 | object-assign "^4.0.1"
1506 | resolve "^1.1.6"
1507 |
1508 | eslint-module-utils@^2.0.0:
1509 | version "2.0.0"
1510 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.0.0.tgz#a6f8c21d901358759cdc35dbac1982ae1ee58bce"
1511 | dependencies:
1512 | debug "2.2.0"
1513 | pkg-dir "^1.0.0"
1514 |
1515 | eslint-plugin-import@^2.2.0:
1516 | version "2.2.0"
1517 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.2.0.tgz#72ba306fad305d67c4816348a4699a4229ac8b4e"
1518 | dependencies:
1519 | builtin-modules "^1.1.1"
1520 | contains-path "^0.1.0"
1521 | debug "^2.2.0"
1522 | doctrine "1.5.0"
1523 | eslint-import-resolver-node "^0.2.0"
1524 | eslint-module-utils "^2.0.0"
1525 | has "^1.0.1"
1526 | lodash.cond "^4.3.0"
1527 | minimatch "^3.0.3"
1528 | pkg-up "^1.0.0"
1529 |
1530 | eslint-plugin-jsx-a11y@^4.0.0:
1531 | version "4.0.0"
1532 | resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-4.0.0.tgz#779bb0fe7b08da564a422624911de10061e048ee"
1533 | dependencies:
1534 | aria-query "^0.3.0"
1535 | ast-types-flow "0.0.7"
1536 | damerau-levenshtein "^1.0.0"
1537 | emoji-regex "^6.1.0"
1538 | jsx-ast-utils "^1.0.0"
1539 | object-assign "^4.0.1"
1540 |
1541 | eslint-plugin-jsx-control-statements@^2.1.1:
1542 | version "2.1.1"
1543 | resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-control-statements/-/eslint-plugin-jsx-control-statements-2.1.1.tgz#8e53092749dcf0e6baf04266b303c5d168d58d4f"
1544 |
1545 | eslint-plugin-react@^6.10.0:
1546 | version "6.10.0"
1547 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-6.10.0.tgz#9c48b48d101554b5355413e7c64238abde6ef1ef"
1548 | dependencies:
1549 | array.prototype.find "^2.0.1"
1550 | doctrine "^1.2.2"
1551 | has "^1.0.1"
1552 | jsx-ast-utils "^1.3.4"
1553 | object.assign "^4.0.4"
1554 |
1555 | eslint@^3.17.1:
1556 | version "3.17.1"
1557 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.17.1.tgz#b80ae12d9c406d858406fccda627afce33ea10ea"
1558 | dependencies:
1559 | babel-code-frame "^6.16.0"
1560 | chalk "^1.1.3"
1561 | concat-stream "^1.4.6"
1562 | debug "^2.1.1"
1563 | doctrine "^1.2.2"
1564 | escope "^3.6.0"
1565 | espree "^3.4.0"
1566 | estraverse "^4.2.0"
1567 | esutils "^2.0.2"
1568 | file-entry-cache "^2.0.0"
1569 | glob "^7.0.3"
1570 | globals "^9.14.0"
1571 | ignore "^3.2.0"
1572 | imurmurhash "^0.1.4"
1573 | inquirer "^0.12.0"
1574 | is-my-json-valid "^2.10.0"
1575 | is-resolvable "^1.0.0"
1576 | js-yaml "^3.5.1"
1577 | json-stable-stringify "^1.0.0"
1578 | levn "^0.3.0"
1579 | lodash "^4.0.0"
1580 | mkdirp "^0.5.0"
1581 | natural-compare "^1.4.0"
1582 | optionator "^0.8.2"
1583 | path-is-inside "^1.0.1"
1584 | pluralize "^1.2.1"
1585 | progress "^1.1.8"
1586 | require-uncached "^1.0.2"
1587 | shelljs "^0.7.5"
1588 | strip-bom "^3.0.0"
1589 | strip-json-comments "~2.0.1"
1590 | table "^3.7.8"
1591 | text-table "~0.2.0"
1592 | user-home "^2.0.0"
1593 |
1594 | espree@^3.4.0:
1595 | version "3.4.0"
1596 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.0.tgz#41656fa5628e042878025ef467e78f125cb86e1d"
1597 | dependencies:
1598 | acorn "4.0.4"
1599 | acorn-jsx "^3.0.0"
1600 |
1601 | esprima@^3.1.1:
1602 | version "3.1.3"
1603 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633"
1604 |
1605 | esrecurse@^4.1.0:
1606 | version "4.1.0"
1607 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220"
1608 | dependencies:
1609 | estraverse "~4.1.0"
1610 | object-assign "^4.0.1"
1611 |
1612 | estraverse@^4.1.1, estraverse@^4.2.0:
1613 | version "4.2.0"
1614 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13"
1615 |
1616 | estraverse@~4.1.0:
1617 | version "4.1.1"
1618 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2"
1619 |
1620 | esutils@^2.0.0, esutils@^2.0.2:
1621 | version "2.0.2"
1622 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
1623 |
1624 | etag@~1.8.0:
1625 | version "1.8.0"
1626 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.0.tgz#6f631aef336d6c46362b51764044ce216be3c051"
1627 |
1628 | event-emitter@~0.3.4:
1629 | version "0.3.4"
1630 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.4.tgz#8d63ddfb4cfe1fae3b32ca265c4c720222080bb5"
1631 | dependencies:
1632 | d "~0.1.1"
1633 | es5-ext "~0.10.7"
1634 |
1635 | events@^1.0.0:
1636 | version "1.1.1"
1637 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924"
1638 |
1639 | evp_bytestokey@^1.0.0:
1640 | version "1.0.0"
1641 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.0.tgz#497b66ad9fef65cd7c08a6180824ba1476b66e53"
1642 | dependencies:
1643 | create-hash "^1.1.1"
1644 |
1645 | exit-hook@^1.0.0:
1646 | version "1.1.1"
1647 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8"
1648 |
1649 | expand-brackets@^0.1.4:
1650 | version "0.1.5"
1651 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b"
1652 | dependencies:
1653 | is-posix-bracket "^0.1.0"
1654 |
1655 | expand-range@^1.8.1:
1656 | version "1.8.2"
1657 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337"
1658 | dependencies:
1659 | fill-range "^2.1.0"
1660 |
1661 | express@^4.15.2:
1662 | version "4.15.2"
1663 | resolved "https://registry.yarnpkg.com/express/-/express-4.15.2.tgz#af107fc148504457f2dca9a6f2571d7129b97b35"
1664 | dependencies:
1665 | accepts "~1.3.3"
1666 | array-flatten "1.1.1"
1667 | content-disposition "0.5.2"
1668 | content-type "~1.0.2"
1669 | cookie "0.3.1"
1670 | cookie-signature "1.0.6"
1671 | debug "2.6.1"
1672 | depd "~1.1.0"
1673 | encodeurl "~1.0.1"
1674 | escape-html "~1.0.3"
1675 | etag "~1.8.0"
1676 | finalhandler "~1.0.0"
1677 | fresh "0.5.0"
1678 | merge-descriptors "1.0.1"
1679 | methods "~1.1.2"
1680 | on-finished "~2.3.0"
1681 | parseurl "~1.3.1"
1682 | path-to-regexp "0.1.7"
1683 | proxy-addr "~1.1.3"
1684 | qs "6.4.0"
1685 | range-parser "~1.2.0"
1686 | send "0.15.1"
1687 | serve-static "1.12.1"
1688 | setprototypeof "1.0.3"
1689 | statuses "~1.3.1"
1690 | type-is "~1.6.14"
1691 | utils-merge "1.0.0"
1692 | vary "~1.1.0"
1693 |
1694 | extend@~3.0.0:
1695 | version "3.0.0"
1696 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4"
1697 |
1698 | extglob@^0.3.1:
1699 | version "0.3.2"
1700 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1"
1701 | dependencies:
1702 | is-extglob "^1.0.0"
1703 |
1704 | extsprintf@1.0.2:
1705 | version "1.0.2"
1706 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550"
1707 |
1708 | fast-levenshtein@~2.0.4:
1709 | version "2.0.6"
1710 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
1711 |
1712 | fbjs@^0.8.1, fbjs@^0.8.4:
1713 | version "0.8.9"
1714 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.9.tgz#180247fbd347dcc9004517b904f865400a0c8f14"
1715 | dependencies:
1716 | core-js "^1.0.0"
1717 | isomorphic-fetch "^2.1.1"
1718 | loose-envify "^1.0.0"
1719 | object-assign "^4.1.0"
1720 | promise "^7.1.1"
1721 | setimmediate "^1.0.5"
1722 | ua-parser-js "^0.7.9"
1723 |
1724 | figures@^1.3.5:
1725 | version "1.7.0"
1726 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e"
1727 | dependencies:
1728 | escape-string-regexp "^1.0.5"
1729 | object-assign "^4.1.0"
1730 |
1731 | file-entry-cache@^2.0.0:
1732 | version "2.0.0"
1733 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361"
1734 | dependencies:
1735 | flat-cache "^1.2.1"
1736 | object-assign "^4.0.1"
1737 |
1738 | filename-regex@^2.0.0:
1739 | version "2.0.0"
1740 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775"
1741 |
1742 | fill-range@^2.1.0:
1743 | version "2.2.3"
1744 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723"
1745 | dependencies:
1746 | is-number "^2.1.0"
1747 | isobject "^2.0.0"
1748 | randomatic "^1.1.3"
1749 | repeat-element "^1.1.2"
1750 | repeat-string "^1.5.2"
1751 |
1752 | finalhandler@~1.0.0:
1753 | version "1.0.0"
1754 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.0.0.tgz#b5691c2c0912092f18ac23e9416bde5cd7dc6755"
1755 | dependencies:
1756 | debug "2.6.1"
1757 | encodeurl "~1.0.1"
1758 | escape-html "~1.0.3"
1759 | on-finished "~2.3.0"
1760 | parseurl "~1.3.1"
1761 | statuses "~1.3.1"
1762 | unpipe "~1.0.0"
1763 |
1764 | find-cache-dir@^0.1.1:
1765 | version "0.1.1"
1766 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9"
1767 | dependencies:
1768 | commondir "^1.0.1"
1769 | mkdirp "^0.5.1"
1770 | pkg-dir "^1.0.0"
1771 |
1772 | find-up@^1.0.0:
1773 | version "1.1.2"
1774 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"
1775 | dependencies:
1776 | path-exists "^2.0.0"
1777 | pinkie-promise "^2.0.0"
1778 |
1779 | flat-cache@^1.2.1:
1780 | version "1.2.2"
1781 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96"
1782 | dependencies:
1783 | circular-json "^0.3.1"
1784 | del "^2.0.2"
1785 | graceful-fs "^4.1.2"
1786 | write "^0.2.1"
1787 |
1788 | for-in@^1.0.1:
1789 | version "1.0.2"
1790 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
1791 |
1792 | for-own@^0.1.4:
1793 | version "0.1.5"
1794 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce"
1795 | dependencies:
1796 | for-in "^1.0.1"
1797 |
1798 | foreach@^2.0.5:
1799 | version "2.0.5"
1800 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99"
1801 |
1802 | forever-agent@~0.6.1:
1803 | version "0.6.1"
1804 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
1805 |
1806 | form-data@~2.1.1:
1807 | version "2.1.2"
1808 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4"
1809 | dependencies:
1810 | asynckit "^0.4.0"
1811 | combined-stream "^1.0.5"
1812 | mime-types "^2.1.12"
1813 |
1814 | forwarded@~0.1.0:
1815 | version "0.1.0"
1816 | resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.0.tgz#19ef9874c4ae1c297bcf078fde63a09b66a84363"
1817 |
1818 | fresh@0.5.0:
1819 | version "0.5.0"
1820 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.0.tgz#f474ca5e6a9246d6fd8e0953cfa9b9c805afa78e"
1821 |
1822 | fs.realpath@^1.0.0:
1823 | version "1.0.0"
1824 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
1825 |
1826 | fsevents@^1.0.0:
1827 | version "1.1.1"
1828 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.1.tgz#f19fd28f43eeaf761680e519a203c4d0b3d31aff"
1829 | dependencies:
1830 | nan "^2.3.0"
1831 | node-pre-gyp "^0.6.29"
1832 |
1833 | fstream-ignore@~1.0.5:
1834 | version "1.0.5"
1835 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105"
1836 | dependencies:
1837 | fstream "^1.0.0"
1838 | inherits "2"
1839 | minimatch "^3.0.0"
1840 |
1841 | fstream@^1.0.0, fstream@^1.0.2, fstream@~1.0.10:
1842 | version "1.0.11"
1843 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171"
1844 | dependencies:
1845 | graceful-fs "^4.1.2"
1846 | inherits "~2.0.0"
1847 | mkdirp ">=0.5 0"
1848 | rimraf "2"
1849 |
1850 | function-bind@^1.0.2, function-bind@^1.1.0:
1851 | version "1.1.0"
1852 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771"
1853 |
1854 | gauge@~2.7.1:
1855 | version "2.7.3"
1856 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.3.tgz#1c23855f962f17b3ad3d0dc7443f304542edfe09"
1857 | dependencies:
1858 | aproba "^1.0.3"
1859 | console-control-strings "^1.0.0"
1860 | has-unicode "^2.0.0"
1861 | object-assign "^4.1.0"
1862 | signal-exit "^3.0.0"
1863 | string-width "^1.0.1"
1864 | strip-ansi "^3.0.1"
1865 | wide-align "^1.1.0"
1866 |
1867 | generate-function@^2.0.0:
1868 | version "2.0.0"
1869 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74"
1870 |
1871 | generate-object-property@^1.1.0:
1872 | version "1.2.0"
1873 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0"
1874 | dependencies:
1875 | is-property "^1.0.0"
1876 |
1877 | get-caller-file@^1.0.1:
1878 | version "1.0.2"
1879 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5"
1880 |
1881 | getpass@^0.1.1:
1882 | version "0.1.6"
1883 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6"
1884 | dependencies:
1885 | assert-plus "^1.0.0"
1886 |
1887 | glob-base@^0.3.0:
1888 | version "0.3.0"
1889 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"
1890 | dependencies:
1891 | glob-parent "^2.0.0"
1892 | is-glob "^2.0.0"
1893 |
1894 | glob-parent@^2.0.0:
1895 | version "2.0.0"
1896 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28"
1897 | dependencies:
1898 | is-glob "^2.0.0"
1899 |
1900 | glob@7.0.5:
1901 | version "7.0.5"
1902 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.0.5.tgz#b4202a69099bbb4d292a7c1b95b6682b67ebdc95"
1903 | dependencies:
1904 | fs.realpath "^1.0.0"
1905 | inflight "^1.0.4"
1906 | inherits "2"
1907 | minimatch "^3.0.2"
1908 | once "^1.3.0"
1909 | path-is-absolute "^1.0.0"
1910 |
1911 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5:
1912 | version "7.1.1"
1913 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8"
1914 | dependencies:
1915 | fs.realpath "^1.0.0"
1916 | inflight "^1.0.4"
1917 | inherits "2"
1918 | minimatch "^3.0.2"
1919 | once "^1.3.0"
1920 | path-is-absolute "^1.0.0"
1921 |
1922 | global@^4.3.0:
1923 | version "4.3.1"
1924 | resolved "https://registry.yarnpkg.com/global/-/global-4.3.1.tgz#5f757908c7cbabce54f386ae440e11e26b7916df"
1925 | dependencies:
1926 | min-document "^2.19.0"
1927 | process "~0.5.1"
1928 |
1929 | globals@^9.0.0, globals@^9.14.0:
1930 | version "9.16.0"
1931 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.16.0.tgz#63e903658171ec2d9f51b1d31de5e2b8dc01fb80"
1932 |
1933 | globby@^5.0.0:
1934 | version "5.0.0"
1935 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d"
1936 | dependencies:
1937 | array-union "^1.0.1"
1938 | arrify "^1.0.0"
1939 | glob "^7.0.3"
1940 | object-assign "^4.0.1"
1941 | pify "^2.0.0"
1942 | pinkie-promise "^2.0.0"
1943 |
1944 | graceful-fs@^4.1.2:
1945 | version "4.1.11"
1946 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
1947 |
1948 | "graceful-readlink@>= 1.0.0":
1949 | version "1.0.1"
1950 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725"
1951 |
1952 | growl@1.9.2:
1953 | version "1.9.2"
1954 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f"
1955 |
1956 | har-schema@^1.0.5:
1957 | version "1.0.5"
1958 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e"
1959 |
1960 | har-validator@~4.2.1:
1961 | version "4.2.1"
1962 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a"
1963 | dependencies:
1964 | ajv "^4.9.1"
1965 | har-schema "^1.0.5"
1966 |
1967 | has-ansi@^2.0.0:
1968 | version "2.0.0"
1969 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
1970 | dependencies:
1971 | ansi-regex "^2.0.0"
1972 |
1973 | has-flag@^1.0.0:
1974 | version "1.0.0"
1975 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa"
1976 |
1977 | has-unicode@^2.0.0:
1978 | version "2.0.1"
1979 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
1980 |
1981 | has@^1.0.1:
1982 | version "1.0.1"
1983 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28"
1984 | dependencies:
1985 | function-bind "^1.0.2"
1986 |
1987 | hash.js@^1.0.0, hash.js@^1.0.3:
1988 | version "1.0.3"
1989 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.0.3.tgz#1332ff00156c0a0ffdd8236013d07b77a0451573"
1990 | dependencies:
1991 | inherits "^2.0.1"
1992 |
1993 | hawk@~3.1.3:
1994 | version "3.1.3"
1995 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4"
1996 | dependencies:
1997 | boom "2.x.x"
1998 | cryptiles "2.x.x"
1999 | hoek "2.x.x"
2000 | sntp "1.x.x"
2001 |
2002 | history@^4.6.0:
2003 | version "4.6.0"
2004 | resolved "https://registry.yarnpkg.com/history/-/history-4.6.0.tgz#2e09f7b173333040044c9fede373ad29bc2e2186"
2005 | dependencies:
2006 | invariant "^2.2.1"
2007 | loose-envify "^1.2.0"
2008 | resolve-pathname "^2.0.0"
2009 | value-equal "^0.2.0"
2010 | warning "^3.0.0"
2011 |
2012 | hmac-drbg@^1.0.0:
2013 | version "1.0.0"
2014 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.0.tgz#3db471f45aae4a994a0688322171f51b8b91bee5"
2015 | dependencies:
2016 | hash.js "^1.0.3"
2017 | minimalistic-assert "^1.0.0"
2018 | minimalistic-crypto-utils "^1.0.1"
2019 |
2020 | hoek@2.x.x:
2021 | version "2.16.3"
2022 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed"
2023 |
2024 | hoist-non-react-statics@^1.0.3, hoist-non-react-statics@^1.2.0:
2025 | version "1.2.0"
2026 | resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-1.2.0.tgz#aa448cf0986d55cc40773b17174b7dd066cb7cfb"
2027 |
2028 | home-or-tmp@^2.0.0:
2029 | version "2.0.0"
2030 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8"
2031 | dependencies:
2032 | os-homedir "^1.0.0"
2033 | os-tmpdir "^1.0.1"
2034 |
2035 | hosted-git-info@^2.1.4:
2036 | version "2.2.0"
2037 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.2.0.tgz#7a0d097863d886c0fabbdcd37bf1758d8becf8a5"
2038 |
2039 | html-entities@^1.2.0:
2040 | version "1.2.0"
2041 | resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-1.2.0.tgz#41948caf85ce82fed36e4e6a0ed371a6664379e2"
2042 |
2043 | http-errors@~1.6.1:
2044 | version "1.6.1"
2045 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.1.tgz#5f8b8ed98aca545656bf572997387f904a722257"
2046 | dependencies:
2047 | depd "1.1.0"
2048 | inherits "2.0.3"
2049 | setprototypeof "1.0.3"
2050 | statuses ">= 1.3.1 < 2"
2051 |
2052 | http-signature@~1.1.0:
2053 | version "1.1.1"
2054 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf"
2055 | dependencies:
2056 | assert-plus "^0.2.0"
2057 | jsprim "^1.2.2"
2058 | sshpk "^1.7.0"
2059 |
2060 | https-browserify@0.0.1:
2061 | version "0.0.1"
2062 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82"
2063 |
2064 | iconv-lite@~0.4.13:
2065 | version "0.4.15"
2066 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.15.tgz#fe265a218ac6a57cfe854927e9d04c19825eddeb"
2067 |
2068 | ieee754@^1.1.4:
2069 | version "1.1.8"
2070 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4"
2071 |
2072 | ignore@^3.2.0:
2073 | version "3.2.4"
2074 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.2.4.tgz#4055e03596729a8fabe45a43c100ad5ed815c4e8"
2075 |
2076 | imurmurhash@^0.1.4:
2077 | version "0.1.4"
2078 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
2079 |
2080 | indexof@0.0.1:
2081 | version "0.0.1"
2082 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d"
2083 |
2084 | inflight@^1.0.4:
2085 | version "1.0.6"
2086 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
2087 | dependencies:
2088 | once "^1.3.0"
2089 | wrappy "1"
2090 |
2091 | inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1:
2092 | version "2.0.3"
2093 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
2094 |
2095 | inherits@2.0.1:
2096 | version "2.0.1"
2097 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1"
2098 |
2099 | ini@~1.3.0:
2100 | version "1.3.4"
2101 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e"
2102 |
2103 | inquirer@^0.12.0:
2104 | version "0.12.0"
2105 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e"
2106 | dependencies:
2107 | ansi-escapes "^1.1.0"
2108 | ansi-regex "^2.0.0"
2109 | chalk "^1.0.0"
2110 | cli-cursor "^1.0.1"
2111 | cli-width "^2.0.0"
2112 | figures "^1.3.5"
2113 | lodash "^4.3.0"
2114 | readline2 "^1.0.1"
2115 | run-async "^0.1.0"
2116 | rx-lite "^3.1.2"
2117 | string-width "^1.0.1"
2118 | strip-ansi "^3.0.0"
2119 | through "^2.3.6"
2120 |
2121 | interpret@^1.0.0:
2122 | version "1.0.1"
2123 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.1.tgz#d579fb7f693b858004947af39fa0db49f795602c"
2124 |
2125 | invariant@^2.0.0, invariant@^2.2.0, invariant@^2.2.1:
2126 | version "2.2.2"
2127 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360"
2128 | dependencies:
2129 | loose-envify "^1.0.0"
2130 |
2131 | invert-kv@^1.0.0:
2132 | version "1.0.0"
2133 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"
2134 |
2135 | ipaddr.js@1.2.0:
2136 | version "1.2.0"
2137 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.2.0.tgz#8aba49c9192799585bdd643e0ccb50e8ae777ba4"
2138 |
2139 | is-arrayish@^0.2.1:
2140 | version "0.2.1"
2141 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
2142 |
2143 | is-binary-path@^1.0.0:
2144 | version "1.0.1"
2145 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
2146 | dependencies:
2147 | binary-extensions "^1.0.0"
2148 |
2149 | is-buffer@^1.0.2:
2150 | version "1.1.4"
2151 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b"
2152 |
2153 | is-builtin-module@^1.0.0:
2154 | version "1.0.0"
2155 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe"
2156 | dependencies:
2157 | builtin-modules "^1.0.0"
2158 |
2159 | is-callable@^1.1.1, is-callable@^1.1.3:
2160 | version "1.1.3"
2161 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2"
2162 |
2163 | is-date-object@^1.0.1:
2164 | version "1.0.1"
2165 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16"
2166 |
2167 | is-dotfile@^1.0.0:
2168 | version "1.0.2"
2169 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d"
2170 |
2171 | is-equal-shallow@^0.1.3:
2172 | version "0.1.3"
2173 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534"
2174 | dependencies:
2175 | is-primitive "^2.0.0"
2176 |
2177 | is-extendable@^0.1.1:
2178 | version "0.1.1"
2179 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
2180 |
2181 | is-extglob@^1.0.0:
2182 | version "1.0.0"
2183 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
2184 |
2185 | is-finite@^1.0.0:
2186 | version "1.0.2"
2187 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa"
2188 | dependencies:
2189 | number-is-nan "^1.0.0"
2190 |
2191 | is-fullwidth-code-point@^1.0.0:
2192 | version "1.0.0"
2193 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
2194 | dependencies:
2195 | number-is-nan "^1.0.0"
2196 |
2197 | is-fullwidth-code-point@^2.0.0:
2198 | version "2.0.0"
2199 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
2200 |
2201 | is-glob@^2.0.0, is-glob@^2.0.1:
2202 | version "2.0.1"
2203 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863"
2204 | dependencies:
2205 | is-extglob "^1.0.0"
2206 |
2207 | is-my-json-valid@^2.10.0:
2208 | version "2.16.0"
2209 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz#f079dd9bfdae65ee2038aae8acbc86ab109e3693"
2210 | dependencies:
2211 | generate-function "^2.0.0"
2212 | generate-object-property "^1.1.0"
2213 | jsonpointer "^4.0.0"
2214 | xtend "^4.0.0"
2215 |
2216 | is-number@^2.0.2, is-number@^2.1.0:
2217 | version "2.1.0"
2218 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f"
2219 | dependencies:
2220 | kind-of "^3.0.2"
2221 |
2222 | is-path-cwd@^1.0.0:
2223 | version "1.0.0"
2224 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d"
2225 |
2226 | is-path-in-cwd@^1.0.0:
2227 | version "1.0.0"
2228 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc"
2229 | dependencies:
2230 | is-path-inside "^1.0.0"
2231 |
2232 | is-path-inside@^1.0.0:
2233 | version "1.0.0"
2234 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f"
2235 | dependencies:
2236 | path-is-inside "^1.0.1"
2237 |
2238 | is-posix-bracket@^0.1.0:
2239 | version "0.1.1"
2240 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"
2241 |
2242 | is-primitive@^2.0.0:
2243 | version "2.0.0"
2244 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575"
2245 |
2246 | is-property@^1.0.0:
2247 | version "1.0.2"
2248 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84"
2249 |
2250 | is-regex@^1.0.3:
2251 | version "1.0.4"
2252 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491"
2253 | dependencies:
2254 | has "^1.0.1"
2255 |
2256 | is-resolvable@^1.0.0:
2257 | version "1.0.0"
2258 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62"
2259 | dependencies:
2260 | tryit "^1.0.1"
2261 |
2262 | is-stream@^1.0.1:
2263 | version "1.1.0"
2264 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
2265 |
2266 | is-symbol@^1.0.1:
2267 | version "1.0.1"
2268 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572"
2269 |
2270 | is-typedarray@~1.0.0:
2271 | version "1.0.0"
2272 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
2273 |
2274 | is-utf8@^0.2.0:
2275 | version "0.2.1"
2276 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72"
2277 |
2278 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0:
2279 | version "1.0.0"
2280 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
2281 |
2282 | isobject@^2.0.0:
2283 | version "2.1.0"
2284 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
2285 | dependencies:
2286 | isarray "1.0.0"
2287 |
2288 | isomorphic-fetch@^2.1.1:
2289 | version "2.2.1"
2290 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9"
2291 | dependencies:
2292 | node-fetch "^1.0.1"
2293 | whatwg-fetch ">=0.10.0"
2294 |
2295 | isstream@~0.1.2:
2296 | version "0.1.2"
2297 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
2298 |
2299 | jodid25519@^1.0.0:
2300 | version "1.0.2"
2301 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967"
2302 | dependencies:
2303 | jsbn "~0.1.0"
2304 |
2305 | js-tokens@^3.0.0:
2306 | version "3.0.1"
2307 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7"
2308 |
2309 | js-yaml@^3.5.1:
2310 | version "3.8.2"
2311 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.2.tgz#02d3e2c0f6beab20248d412c352203827d786721"
2312 | dependencies:
2313 | argparse "^1.0.7"
2314 | esprima "^3.1.1"
2315 |
2316 | jsbn@~0.1.0:
2317 | version "0.1.1"
2318 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
2319 |
2320 | jsesc@^1.3.0:
2321 | version "1.3.0"
2322 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b"
2323 |
2324 | jsesc@~0.5.0:
2325 | version "0.5.0"
2326 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
2327 |
2328 | json-loader@^0.5.4:
2329 | version "0.5.4"
2330 | resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.4.tgz#8baa1365a632f58a3c46d20175fc6002c96e37de"
2331 |
2332 | json-schema@0.2.3:
2333 | version "0.2.3"
2334 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
2335 |
2336 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1:
2337 | version "1.0.1"
2338 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af"
2339 | dependencies:
2340 | jsonify "~0.0.0"
2341 |
2342 | json-stringify-safe@~5.0.1:
2343 | version "5.0.1"
2344 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
2345 |
2346 | json3@3.3.2:
2347 | version "3.3.2"
2348 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1"
2349 |
2350 | json5@^0.5.0:
2351 | version "0.5.1"
2352 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
2353 |
2354 | jsonify@~0.0.0:
2355 | version "0.0.0"
2356 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
2357 |
2358 | jsonpointer@^4.0.0:
2359 | version "4.0.1"
2360 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9"
2361 |
2362 | jsprim@^1.2.2:
2363 | version "1.3.1"
2364 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.3.1.tgz#2a7256f70412a29ee3670aaca625994c4dcff252"
2365 | dependencies:
2366 | extsprintf "1.0.2"
2367 | json-schema "0.2.3"
2368 | verror "1.3.6"
2369 |
2370 | jsx-ast-utils@^1.0.0, jsx-ast-utils@^1.3.4:
2371 | version "1.4.0"
2372 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-1.4.0.tgz#5afe38868f56bc8cc7aeaef0100ba8c75bd12591"
2373 | dependencies:
2374 | object-assign "^4.1.0"
2375 |
2376 | kind-of@^3.0.2:
2377 | version "3.1.0"
2378 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47"
2379 | dependencies:
2380 | is-buffer "^1.0.2"
2381 |
2382 | lazy-cache@^1.0.3:
2383 | version "1.0.4"
2384 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"
2385 |
2386 | lcid@^1.0.0:
2387 | version "1.0.0"
2388 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835"
2389 | dependencies:
2390 | invert-kv "^1.0.0"
2391 |
2392 | levn@^0.3.0, levn@~0.3.0:
2393 | version "0.3.0"
2394 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
2395 | dependencies:
2396 | prelude-ls "~1.1.2"
2397 | type-check "~0.3.2"
2398 |
2399 | load-json-file@^1.0.0:
2400 | version "1.1.0"
2401 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0"
2402 | dependencies:
2403 | graceful-fs "^4.1.2"
2404 | parse-json "^2.2.0"
2405 | pify "^2.0.0"
2406 | pinkie-promise "^2.0.0"
2407 | strip-bom "^2.0.0"
2408 |
2409 | loader-runner@^2.3.0:
2410 | version "2.3.0"
2411 | resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.3.0.tgz#f482aea82d543e07921700d5a46ef26fdac6b8a2"
2412 |
2413 | loader-utils@^0.2.16:
2414 | version "0.2.17"
2415 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.17.tgz#f86e6374d43205a6e6c60e9196f17c0299bfb348"
2416 | dependencies:
2417 | big.js "^3.1.3"
2418 | emojis-list "^2.0.0"
2419 | json5 "^0.5.0"
2420 | object-assign "^4.0.1"
2421 |
2422 | lodash-es@^4.2.0, lodash-es@^4.2.1:
2423 | version "4.17.4"
2424 | resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.4.tgz#dcc1d7552e150a0640073ba9cb31d70f032950e7"
2425 |
2426 | lodash._baseassign@^3.0.0:
2427 | version "3.2.0"
2428 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e"
2429 | dependencies:
2430 | lodash._basecopy "^3.0.0"
2431 | lodash.keys "^3.0.0"
2432 |
2433 | lodash._basecopy@^3.0.0:
2434 | version "3.0.1"
2435 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36"
2436 |
2437 | lodash._basecreate@^3.0.0:
2438 | version "3.0.3"
2439 | resolved "https://registry.yarnpkg.com/lodash._basecreate/-/lodash._basecreate-3.0.3.tgz#1bc661614daa7fc311b7d03bf16806a0213cf821"
2440 |
2441 | lodash._getnative@^3.0.0:
2442 | version "3.9.1"
2443 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5"
2444 |
2445 | lodash._isiterateecall@^3.0.0:
2446 | version "3.0.9"
2447 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c"
2448 |
2449 | lodash.cond@^4.3.0:
2450 | version "4.5.2"
2451 | resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5"
2452 |
2453 | lodash.create@3.1.1:
2454 | version "3.1.1"
2455 | resolved "https://registry.yarnpkg.com/lodash.create/-/lodash.create-3.1.1.tgz#d7f2849f0dbda7e04682bb8cd72ab022461debe7"
2456 | dependencies:
2457 | lodash._baseassign "^3.0.0"
2458 | lodash._basecreate "^3.0.0"
2459 | lodash._isiterateecall "^3.0.0"
2460 |
2461 | lodash.isarguments@^3.0.0:
2462 | version "3.1.0"
2463 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a"
2464 |
2465 | lodash.isarray@^3.0.0:
2466 | version "3.0.4"
2467 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55"
2468 |
2469 | lodash.keys@^3.0.0:
2470 | version "3.1.2"
2471 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a"
2472 | dependencies:
2473 | lodash._getnative "^3.0.0"
2474 | lodash.isarguments "^3.0.0"
2475 | lodash.isarray "^3.0.0"
2476 |
2477 | lodash.pickby@^4.6.0:
2478 | version "4.6.0"
2479 | resolved "https://registry.yarnpkg.com/lodash.pickby/-/lodash.pickby-4.6.0.tgz#7dea21d8c18d7703a27c704c15d3b84a67e33aff"
2480 |
2481 | lodash@^4.0.0, lodash@^4.14.0, lodash@^4.2.0, lodash@^4.2.1, lodash@^4.3.0, lodash@^4.6.1:
2482 | version "4.17.4"
2483 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae"
2484 |
2485 | longest@^1.0.1:
2486 | version "1.0.1"
2487 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097"
2488 |
2489 | loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.2.0:
2490 | version "1.3.1"
2491 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848"
2492 | dependencies:
2493 | js-tokens "^3.0.0"
2494 |
2495 | media-typer@0.3.0:
2496 | version "0.3.0"
2497 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748"
2498 |
2499 | memory-fs@^0.4.0, memory-fs@~0.4.1:
2500 | version "0.4.1"
2501 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552"
2502 | dependencies:
2503 | errno "^0.1.3"
2504 | readable-stream "^2.0.1"
2505 |
2506 | merge-descriptors@1.0.1:
2507 | version "1.0.1"
2508 | resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61"
2509 |
2510 | methods@~1.1.2:
2511 | version "1.1.2"
2512 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee"
2513 |
2514 | micromatch@^2.1.5:
2515 | version "2.3.11"
2516 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565"
2517 | dependencies:
2518 | arr-diff "^2.0.0"
2519 | array-unique "^0.2.1"
2520 | braces "^1.8.2"
2521 | expand-brackets "^0.1.4"
2522 | extglob "^0.3.1"
2523 | filename-regex "^2.0.0"
2524 | is-extglob "^1.0.0"
2525 | is-glob "^2.0.1"
2526 | kind-of "^3.0.2"
2527 | normalize-path "^2.0.1"
2528 | object.omit "^2.0.0"
2529 | parse-glob "^3.0.4"
2530 | regex-cache "^0.4.2"
2531 |
2532 | miller-rabin@^4.0.0:
2533 | version "4.0.0"
2534 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.0.tgz#4a62fb1d42933c05583982f4c716f6fb9e6c6d3d"
2535 | dependencies:
2536 | bn.js "^4.0.0"
2537 | brorand "^1.0.1"
2538 |
2539 | mime-db@~1.26.0:
2540 | version "1.26.0"
2541 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.26.0.tgz#eaffcd0e4fc6935cf8134da246e2e6c35305adff"
2542 |
2543 | mime-types@^2.1.12, mime-types@~2.1.11, mime-types@~2.1.13, mime-types@~2.1.7:
2544 | version "2.1.14"
2545 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.14.tgz#f7ef7d97583fcaf3b7d282b6f8b5679dab1e94ee"
2546 | dependencies:
2547 | mime-db "~1.26.0"
2548 |
2549 | mime@1.3.4, mime@^1.3.4:
2550 | version "1.3.4"
2551 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53"
2552 |
2553 | min-document@^2.19.0:
2554 | version "2.19.0"
2555 | resolved "https://registry.yarnpkg.com/min-document/-/min-document-2.19.0.tgz#7bd282e3f5842ed295bb748cdd9f1ffa2c824685"
2556 | dependencies:
2557 | dom-walk "^0.1.0"
2558 |
2559 | minimalistic-assert@^1.0.0:
2560 | version "1.0.0"
2561 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3"
2562 |
2563 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1:
2564 | version "1.0.1"
2565 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"
2566 |
2567 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3:
2568 | version "3.0.3"
2569 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774"
2570 | dependencies:
2571 | brace-expansion "^1.0.0"
2572 |
2573 | minimist@0.0.8:
2574 | version "0.0.8"
2575 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
2576 |
2577 | minimist@^1.2.0:
2578 | version "1.2.0"
2579 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
2580 |
2581 | mkdirp@0.5.1, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0, mkdirp@~0.5.1:
2582 | version "0.5.1"
2583 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
2584 | dependencies:
2585 | minimist "0.0.8"
2586 |
2587 | mobx-react@^4.1.3:
2588 | version "4.1.3"
2589 | resolved "https://registry.yarnpkg.com/mobx-react/-/mobx-react-4.1.3.tgz#8074a0d06f1211177fd6f2cc4091b106e03d4b89"
2590 | dependencies:
2591 | hoist-non-react-statics "^1.2.0"
2592 |
2593 | mobx@^3.1.5:
2594 | version "3.1.5"
2595 | resolved "https://registry.yarnpkg.com/mobx/-/mobx-3.1.5.tgz#1135ad29d2b5b6160ddbcb702a36d3e7211748ec"
2596 |
2597 | mocha@^3.2.0:
2598 | version "3.2.0"
2599 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-3.2.0.tgz#7dc4f45e5088075171a68896814e6ae9eb7a85e3"
2600 | dependencies:
2601 | browser-stdout "1.3.0"
2602 | commander "2.9.0"
2603 | debug "2.2.0"
2604 | diff "1.4.0"
2605 | escape-string-regexp "1.0.5"
2606 | glob "7.0.5"
2607 | growl "1.9.2"
2608 | json3 "3.3.2"
2609 | lodash.create "3.1.1"
2610 | mkdirp "0.5.1"
2611 | supports-color "3.1.2"
2612 |
2613 | ms@0.7.1:
2614 | version "0.7.1"
2615 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098"
2616 |
2617 | ms@0.7.2:
2618 | version "0.7.2"
2619 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765"
2620 |
2621 | mute-stream@0.0.5:
2622 | version "0.0.5"
2623 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0"
2624 |
2625 | nan@^2.3.0:
2626 | version "2.5.1"
2627 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.5.1.tgz#d5b01691253326a97a2bbee9e61c55d8d60351e2"
2628 |
2629 | natural-compare@^1.4.0:
2630 | version "1.4.0"
2631 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
2632 |
2633 | negotiator@0.6.1:
2634 | version "0.6.1"
2635 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9"
2636 |
2637 | node-fetch@^1.0.1:
2638 | version "1.6.3"
2639 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.6.3.tgz#dc234edd6489982d58e8f0db4f695029abcd8c04"
2640 | dependencies:
2641 | encoding "^0.1.11"
2642 | is-stream "^1.0.1"
2643 |
2644 | node-libs-browser@^2.0.0:
2645 | version "2.0.0"
2646 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.0.0.tgz#a3a59ec97024985b46e958379646f96c4b616646"
2647 | dependencies:
2648 | assert "^1.1.1"
2649 | browserify-zlib "^0.1.4"
2650 | buffer "^4.3.0"
2651 | console-browserify "^1.1.0"
2652 | constants-browserify "^1.0.0"
2653 | crypto-browserify "^3.11.0"
2654 | domain-browser "^1.1.1"
2655 | events "^1.0.0"
2656 | https-browserify "0.0.1"
2657 | os-browserify "^0.2.0"
2658 | path-browserify "0.0.0"
2659 | process "^0.11.0"
2660 | punycode "^1.2.4"
2661 | querystring-es3 "^0.2.0"
2662 | readable-stream "^2.0.5"
2663 | stream-browserify "^2.0.1"
2664 | stream-http "^2.3.1"
2665 | string_decoder "^0.10.25"
2666 | timers-browserify "^2.0.2"
2667 | tty-browserify "0.0.0"
2668 | url "^0.11.0"
2669 | util "^0.10.3"
2670 | vm-browserify "0.0.4"
2671 |
2672 | node-pre-gyp@^0.6.29:
2673 | version "0.6.33"
2674 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.33.tgz#640ac55198f6a925972e0c16c4ac26a034d5ecc9"
2675 | dependencies:
2676 | mkdirp "~0.5.1"
2677 | nopt "~3.0.6"
2678 | npmlog "^4.0.1"
2679 | rc "~1.1.6"
2680 | request "^2.79.0"
2681 | rimraf "~2.5.4"
2682 | semver "~5.3.0"
2683 | tar "~2.2.1"
2684 | tar-pack "~3.3.0"
2685 |
2686 | nopt@~3.0.6:
2687 | version "3.0.6"
2688 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9"
2689 | dependencies:
2690 | abbrev "1"
2691 |
2692 | normalize-package-data@^2.3.2:
2693 | version "2.3.6"
2694 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.6.tgz#498fa420c96401f787402ba21e600def9f981fff"
2695 | dependencies:
2696 | hosted-git-info "^2.1.4"
2697 | is-builtin-module "^1.0.0"
2698 | semver "2 || 3 || 4 || 5"
2699 | validate-npm-package-license "^3.0.1"
2700 |
2701 | normalize-path@^2.0.1:
2702 | version "2.0.1"
2703 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a"
2704 |
2705 | npmlog@^4.0.1:
2706 | version "4.0.2"
2707 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.2.tgz#d03950e0e78ce1527ba26d2a7592e9348ac3e75f"
2708 | dependencies:
2709 | are-we-there-yet "~1.1.2"
2710 | console-control-strings "~1.1.0"
2711 | gauge "~2.7.1"
2712 | set-blocking "~2.0.0"
2713 |
2714 | number-is-nan@^1.0.0:
2715 | version "1.0.1"
2716 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
2717 |
2718 | oauth-sign@~0.8.1:
2719 | version "0.8.2"
2720 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"
2721 |
2722 | object-assign@^4.0.1, object-assign@^4.1.0:
2723 | version "4.1.1"
2724 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
2725 |
2726 | object-keys@^1.0.10, object-keys@^1.0.8:
2727 | version "1.0.11"
2728 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d"
2729 |
2730 | object.assign@^4.0.4:
2731 | version "4.0.4"
2732 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.0.4.tgz#b1c9cc044ef1b9fe63606fc141abbb32e14730cc"
2733 | dependencies:
2734 | define-properties "^1.1.2"
2735 | function-bind "^1.1.0"
2736 | object-keys "^1.0.10"
2737 |
2738 | object.omit@^2.0.0:
2739 | version "2.0.1"
2740 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"
2741 | dependencies:
2742 | for-own "^0.1.4"
2743 | is-extendable "^0.1.1"
2744 |
2745 | on-finished@~2.3.0:
2746 | version "2.3.0"
2747 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947"
2748 | dependencies:
2749 | ee-first "1.1.1"
2750 |
2751 | once@^1.3.0:
2752 | version "1.4.0"
2753 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
2754 | dependencies:
2755 | wrappy "1"
2756 |
2757 | once@~1.3.3:
2758 | version "1.3.3"
2759 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20"
2760 | dependencies:
2761 | wrappy "1"
2762 |
2763 | onetime@^1.0.0:
2764 | version "1.1.0"
2765 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789"
2766 |
2767 | optionator@^0.8.2:
2768 | version "0.8.2"
2769 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64"
2770 | dependencies:
2771 | deep-is "~0.1.3"
2772 | fast-levenshtein "~2.0.4"
2773 | levn "~0.3.0"
2774 | prelude-ls "~1.1.2"
2775 | type-check "~0.3.2"
2776 | wordwrap "~1.0.0"
2777 |
2778 | os-browserify@^0.2.0:
2779 | version "0.2.1"
2780 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.2.1.tgz#63fc4ccee5d2d7763d26bbf8601078e6c2e0044f"
2781 |
2782 | os-homedir@^1.0.0:
2783 | version "1.0.2"
2784 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
2785 |
2786 | os-locale@^1.4.0:
2787 | version "1.4.0"
2788 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9"
2789 | dependencies:
2790 | lcid "^1.0.0"
2791 |
2792 | os-tmpdir@^1.0.1:
2793 | version "1.0.2"
2794 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
2795 |
2796 | pako@~0.2.0:
2797 | version "0.2.9"
2798 | resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75"
2799 |
2800 | parse-asn1@^5.0.0:
2801 | version "5.0.0"
2802 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.0.0.tgz#35060f6d5015d37628c770f4e091a0b5a278bc23"
2803 | dependencies:
2804 | asn1.js "^4.0.0"
2805 | browserify-aes "^1.0.0"
2806 | create-hash "^1.1.0"
2807 | evp_bytestokey "^1.0.0"
2808 | pbkdf2 "^3.0.3"
2809 |
2810 | parse-glob@^3.0.4:
2811 | version "3.0.4"
2812 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c"
2813 | dependencies:
2814 | glob-base "^0.3.0"
2815 | is-dotfile "^1.0.0"
2816 | is-extglob "^1.0.0"
2817 | is-glob "^2.0.0"
2818 |
2819 | parse-json@^2.2.0:
2820 | version "2.2.0"
2821 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
2822 | dependencies:
2823 | error-ex "^1.2.0"
2824 |
2825 | parseurl@~1.3.1:
2826 | version "1.3.1"
2827 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.1.tgz#c8ab8c9223ba34888aa64a297b28853bec18da56"
2828 |
2829 | path-browserify@0.0.0:
2830 | version "0.0.0"
2831 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a"
2832 |
2833 | path-exists@^2.0.0:
2834 | version "2.1.0"
2835 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b"
2836 | dependencies:
2837 | pinkie-promise "^2.0.0"
2838 |
2839 | path-is-absolute@^1.0.0:
2840 | version "1.0.1"
2841 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
2842 |
2843 | path-is-inside@^1.0.1:
2844 | version "1.0.2"
2845 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53"
2846 |
2847 | path-parse@^1.0.5:
2848 | version "1.0.5"
2849 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1"
2850 |
2851 | path-to-regexp@0.1.7:
2852 | version "0.1.7"
2853 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c"
2854 |
2855 | path-type@^1.0.0:
2856 | version "1.1.0"
2857 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441"
2858 | dependencies:
2859 | graceful-fs "^4.1.2"
2860 | pify "^2.0.0"
2861 | pinkie-promise "^2.0.0"
2862 |
2863 | path@^0.12.7:
2864 | version "0.12.7"
2865 | resolved "https://registry.yarnpkg.com/path/-/path-0.12.7.tgz#d4dc2a506c4ce2197eb481ebfcd5b36c0140b10f"
2866 | dependencies:
2867 | process "^0.11.1"
2868 | util "^0.10.3"
2869 |
2870 | pbkdf2@^3.0.3:
2871 | version "3.0.9"
2872 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.9.tgz#f2c4b25a600058b3c3773c086c37dbbee1ffe693"
2873 | dependencies:
2874 | create-hmac "^1.1.2"
2875 |
2876 | performance-now@^0.2.0:
2877 | version "0.2.0"
2878 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5"
2879 |
2880 | pify@^2.0.0:
2881 | version "2.3.0"
2882 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
2883 |
2884 | pinkie-promise@^2.0.0:
2885 | version "2.0.1"
2886 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
2887 | dependencies:
2888 | pinkie "^2.0.0"
2889 |
2890 | pinkie@^2.0.0:
2891 | version "2.0.4"
2892 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
2893 |
2894 | pkg-dir@^1.0.0:
2895 | version "1.0.0"
2896 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4"
2897 | dependencies:
2898 | find-up "^1.0.0"
2899 |
2900 | pkg-up@^1.0.0:
2901 | version "1.0.0"
2902 | resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-1.0.0.tgz#3e08fb461525c4421624a33b9f7e6d0af5b05a26"
2903 | dependencies:
2904 | find-up "^1.0.0"
2905 |
2906 | pluralize@^1.2.1:
2907 | version "1.2.1"
2908 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45"
2909 |
2910 | prelude-ls@~1.1.2:
2911 | version "1.1.2"
2912 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
2913 |
2914 | preserve@^0.2.0:
2915 | version "0.2.0"
2916 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
2917 |
2918 | private@^0.1.6:
2919 | version "0.1.7"
2920 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1"
2921 |
2922 | process-nextick-args@~1.0.6:
2923 | version "1.0.7"
2924 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3"
2925 |
2926 | process@^0.11.0, process@^0.11.1:
2927 | version "0.11.9"
2928 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.9.tgz#7bd5ad21aa6253e7da8682264f1e11d11c0318c1"
2929 |
2930 | process@~0.5.1:
2931 | version "0.5.2"
2932 | resolved "https://registry.yarnpkg.com/process/-/process-0.5.2.tgz#1638d8a8e34c2f440a91db95ab9aeb677fc185cf"
2933 |
2934 | progress@^1.1.8:
2935 | version "1.1.8"
2936 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be"
2937 |
2938 | promise@^7.1.1:
2939 | version "7.1.1"
2940 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.1.1.tgz#489654c692616b8aa55b0724fa809bb7db49c5bf"
2941 | dependencies:
2942 | asap "~2.0.3"
2943 |
2944 | proxy-addr@~1.1.3:
2945 | version "1.1.3"
2946 | resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-1.1.3.tgz#dc97502f5722e888467b3fa2297a7b1ff47df074"
2947 | dependencies:
2948 | forwarded "~0.1.0"
2949 | ipaddr.js "1.2.0"
2950 |
2951 | prr@~0.0.0:
2952 | version "0.0.0"
2953 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a"
2954 |
2955 | public-encrypt@^4.0.0:
2956 | version "4.0.0"
2957 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6"
2958 | dependencies:
2959 | bn.js "^4.1.0"
2960 | browserify-rsa "^4.0.0"
2961 | create-hash "^1.1.0"
2962 | parse-asn1 "^5.0.0"
2963 | randombytes "^2.0.1"
2964 |
2965 | punycode@1.3.2:
2966 | version "1.3.2"
2967 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d"
2968 |
2969 | punycode@^1.2.4, punycode@^1.4.1:
2970 | version "1.4.1"
2971 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
2972 |
2973 | qs@6.4.0, qs@~6.4.0:
2974 | version "6.4.0"
2975 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233"
2976 |
2977 | querystring-es3@^0.2.0:
2978 | version "0.2.1"
2979 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73"
2980 |
2981 | querystring@0.2.0, querystring@^0.2.0:
2982 | version "0.2.0"
2983 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620"
2984 |
2985 | randomatic@^1.1.3:
2986 | version "1.1.6"
2987 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb"
2988 | dependencies:
2989 | is-number "^2.0.2"
2990 | kind-of "^3.0.2"
2991 |
2992 | randombytes@^2.0.0, randombytes@^2.0.1:
2993 | version "2.0.3"
2994 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.3.tgz#674c99760901c3c4112771a31e521dc349cc09ec"
2995 |
2996 | range-parser@^1.0.3, range-parser@~1.2.0:
2997 | version "1.2.0"
2998 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e"
2999 |
3000 | rc@~1.1.6:
3001 | version "1.1.7"
3002 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.1.7.tgz#c5ea564bb07aff9fd3a5b32e906c1d3a65940fea"
3003 | dependencies:
3004 | deep-extend "~0.4.0"
3005 | ini "~1.3.0"
3006 | minimist "^1.2.0"
3007 | strip-json-comments "~2.0.1"
3008 |
3009 | react-deep-force-update@^2.0.1:
3010 | version "2.0.1"
3011 | resolved "https://registry.yarnpkg.com/react-deep-force-update/-/react-deep-force-update-2.0.1.tgz#4f7f6c12c3e7de42f345992a3c518236fa1ecad3"
3012 |
3013 | react-dom@^15.4.2:
3014 | version "15.4.2"
3015 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-15.4.2.tgz#015363f05b0a1fd52ae9efdd3a0060d90695208f"
3016 | dependencies:
3017 | fbjs "^0.8.1"
3018 | loose-envify "^1.1.0"
3019 | object-assign "^4.1.0"
3020 |
3021 | react-hot-loader@next:
3022 | version "3.0.0-beta.6"
3023 | resolved "https://registry.yarnpkg.com/react-hot-loader/-/react-hot-loader-3.0.0-beta.6.tgz#463fac0bfc8b63a8385258af20c91636abce75f4"
3024 | dependencies:
3025 | babel-template "^6.7.0"
3026 | global "^4.3.0"
3027 | react-deep-force-update "^2.0.1"
3028 | react-proxy "^3.0.0-alpha.0"
3029 | redbox-react "^1.2.5"
3030 | source-map "^0.4.4"
3031 |
3032 | react-proxy@^3.0.0-alpha.0:
3033 | version "3.0.0-alpha.1"
3034 | resolved "https://registry.yarnpkg.com/react-proxy/-/react-proxy-3.0.0-alpha.1.tgz#4400426bcfa80caa6724c7755695315209fa4b07"
3035 | dependencies:
3036 | lodash "^4.6.1"
3037 |
3038 | react-redux@^5.0.3:
3039 | version "5.0.3"
3040 | resolved "https://registry.yarnpkg.com/react-redux/-/react-redux-5.0.3.tgz#86c3b68d56e74294a42e2a740ab66117ef6c019f"
3041 | dependencies:
3042 | hoist-non-react-statics "^1.0.3"
3043 | invariant "^2.0.0"
3044 | lodash "^4.2.0"
3045 | lodash-es "^4.2.0"
3046 | loose-envify "^1.1.0"
3047 |
3048 | react-resolver@^3.1.0:
3049 | version "3.1.0"
3050 | resolved "https://registry.yarnpkg.com/react-resolver/-/react-resolver-3.1.0.tgz#b999fb361c6d1ea49868faf0086615b2ac475bf8"
3051 |
3052 | react@^15.4.2:
3053 | version "15.4.2"
3054 | resolved "https://registry.yarnpkg.com/react/-/react-15.4.2.tgz#41f7991b26185392ba9bae96c8889e7e018397ef"
3055 | dependencies:
3056 | fbjs "^0.8.4"
3057 | loose-envify "^1.1.0"
3058 | object-assign "^4.1.0"
3059 |
3060 | read-pkg-up@^1.0.1:
3061 | version "1.0.1"
3062 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02"
3063 | dependencies:
3064 | find-up "^1.0.0"
3065 | read-pkg "^1.0.0"
3066 |
3067 | read-pkg@^1.0.0:
3068 | version "1.1.0"
3069 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28"
3070 | dependencies:
3071 | load-json-file "^1.0.0"
3072 | normalize-package-data "^2.3.2"
3073 | path-type "^1.0.0"
3074 |
3075 | "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.1.0, readable-stream@^2.2.2:
3076 | version "2.2.3"
3077 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.3.tgz#9cf49463985df016c8ae8813097a9293a9b33729"
3078 | dependencies:
3079 | buffer-shims "^1.0.0"
3080 | core-util-is "~1.0.0"
3081 | inherits "~2.0.1"
3082 | isarray "~1.0.0"
3083 | process-nextick-args "~1.0.6"
3084 | string_decoder "~0.10.x"
3085 | util-deprecate "~1.0.1"
3086 |
3087 | readable-stream@~2.1.4:
3088 | version "2.1.5"
3089 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0"
3090 | dependencies:
3091 | buffer-shims "^1.0.0"
3092 | core-util-is "~1.0.0"
3093 | inherits "~2.0.1"
3094 | isarray "~1.0.0"
3095 | process-nextick-args "~1.0.6"
3096 | string_decoder "~0.10.x"
3097 | util-deprecate "~1.0.1"
3098 |
3099 | readdirp@^2.0.0:
3100 | version "2.1.0"
3101 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78"
3102 | dependencies:
3103 | graceful-fs "^4.1.2"
3104 | minimatch "^3.0.2"
3105 | readable-stream "^2.0.2"
3106 | set-immediate-shim "^1.0.1"
3107 |
3108 | readline2@^1.0.1:
3109 | version "1.0.1"
3110 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35"
3111 | dependencies:
3112 | code-point-at "^1.0.0"
3113 | is-fullwidth-code-point "^1.0.0"
3114 | mute-stream "0.0.5"
3115 |
3116 | rechoir@^0.6.2:
3117 | version "0.6.2"
3118 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384"
3119 | dependencies:
3120 | resolve "^1.1.6"
3121 |
3122 | redbox-react@^1.2.5:
3123 | version "1.3.4"
3124 | resolved "https://registry.yarnpkg.com/redbox-react/-/redbox-react-1.3.4.tgz#3d882bb62cc7c8f6256279d12f05c6a5a96d24c6"
3125 | dependencies:
3126 | error-stack-parser "^1.3.6"
3127 | object-assign "^4.0.1"
3128 |
3129 | redux@^3.6.0:
3130 | version "3.6.0"
3131 | resolved "https://registry.yarnpkg.com/redux/-/redux-3.6.0.tgz#887c2b3d0b9bd86eca2be70571c27654c19e188d"
3132 | dependencies:
3133 | lodash "^4.2.1"
3134 | lodash-es "^4.2.1"
3135 | loose-envify "^1.1.0"
3136 | symbol-observable "^1.0.2"
3137 |
3138 | regenerate@^1.2.1:
3139 | version "1.3.2"
3140 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260"
3141 |
3142 | regenerator-runtime@^0.10.0:
3143 | version "0.10.3"
3144 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.3.tgz#8c4367a904b51ea62a908ac310bf99ff90a82a3e"
3145 |
3146 | regenerator-transform@0.9.8:
3147 | version "0.9.8"
3148 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.8.tgz#0f88bb2bc03932ddb7b6b7312e68078f01026d6c"
3149 | dependencies:
3150 | babel-runtime "^6.18.0"
3151 | babel-types "^6.19.0"
3152 | private "^0.1.6"
3153 |
3154 | regex-cache@^0.4.2:
3155 | version "0.4.3"
3156 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145"
3157 | dependencies:
3158 | is-equal-shallow "^0.1.3"
3159 | is-primitive "^2.0.0"
3160 |
3161 | regexpu-core@^2.0.0:
3162 | version "2.0.0"
3163 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240"
3164 | dependencies:
3165 | regenerate "^1.2.1"
3166 | regjsgen "^0.2.0"
3167 | regjsparser "^0.1.4"
3168 |
3169 | regjsgen@^0.2.0:
3170 | version "0.2.0"
3171 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7"
3172 |
3173 | regjsparser@^0.1.4:
3174 | version "0.1.5"
3175 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c"
3176 | dependencies:
3177 | jsesc "~0.5.0"
3178 |
3179 | repeat-element@^1.1.2:
3180 | version "1.1.2"
3181 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a"
3182 |
3183 | repeat-string@^1.5.2:
3184 | version "1.6.1"
3185 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
3186 |
3187 | repeating@^2.0.0:
3188 | version "2.0.1"
3189 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda"
3190 | dependencies:
3191 | is-finite "^1.0.0"
3192 |
3193 | request@^2.79.0:
3194 | version "2.81.0"
3195 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0"
3196 | dependencies:
3197 | aws-sign2 "~0.6.0"
3198 | aws4 "^1.2.1"
3199 | caseless "~0.12.0"
3200 | combined-stream "~1.0.5"
3201 | extend "~3.0.0"
3202 | forever-agent "~0.6.1"
3203 | form-data "~2.1.1"
3204 | har-validator "~4.2.1"
3205 | hawk "~3.1.3"
3206 | http-signature "~1.1.0"
3207 | is-typedarray "~1.0.0"
3208 | isstream "~0.1.2"
3209 | json-stringify-safe "~5.0.1"
3210 | mime-types "~2.1.7"
3211 | oauth-sign "~0.8.1"
3212 | performance-now "^0.2.0"
3213 | qs "~6.4.0"
3214 | safe-buffer "^5.0.1"
3215 | stringstream "~0.0.4"
3216 | tough-cookie "~2.3.0"
3217 | tunnel-agent "^0.6.0"
3218 | uuid "^3.0.0"
3219 |
3220 | require-directory@^2.1.1:
3221 | version "2.1.1"
3222 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
3223 |
3224 | require-main-filename@^1.0.1:
3225 | version "1.0.1"
3226 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1"
3227 |
3228 | require-uncached@^1.0.2:
3229 | version "1.0.3"
3230 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3"
3231 | dependencies:
3232 | caller-path "^0.1.0"
3233 | resolve-from "^1.0.0"
3234 |
3235 | resolve-from@^1.0.0:
3236 | version "1.0.1"
3237 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226"
3238 |
3239 | resolve-pathname@^2.0.0:
3240 | version "2.0.2"
3241 | resolved "https://registry.yarnpkg.com/resolve-pathname/-/resolve-pathname-2.0.2.tgz#e55c016eb2e9df1de98e85002282bfb38c630436"
3242 |
3243 | resolve@^1.1.6:
3244 | version "1.3.2"
3245 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.2.tgz#1f0442c9e0cbb8136e87b9305f932f46c7f28235"
3246 | dependencies:
3247 | path-parse "^1.0.5"
3248 |
3249 | restore-cursor@^1.0.1:
3250 | version "1.0.1"
3251 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541"
3252 | dependencies:
3253 | exit-hook "^1.0.0"
3254 | onetime "^1.0.0"
3255 |
3256 | right-align@^0.1.1:
3257 | version "0.1.3"
3258 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef"
3259 | dependencies:
3260 | align-text "^0.1.1"
3261 |
3262 | rimraf@2, rimraf@^2.2.8:
3263 | version "2.6.1"
3264 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d"
3265 | dependencies:
3266 | glob "^7.0.5"
3267 |
3268 | rimraf@~2.5.1, rimraf@~2.5.4:
3269 | version "2.5.4"
3270 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04"
3271 | dependencies:
3272 | glob "^7.0.5"
3273 |
3274 | ripemd160@^1.0.0:
3275 | version "1.0.1"
3276 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-1.0.1.tgz#93a4bbd4942bc574b69a8fa57c71de10ecca7d6e"
3277 |
3278 | run-async@^0.1.0:
3279 | version "0.1.0"
3280 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389"
3281 | dependencies:
3282 | once "^1.3.0"
3283 |
3284 | rx-lite@^3.1.2:
3285 | version "3.1.2"
3286 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102"
3287 |
3288 | safe-buffer@^5.0.1:
3289 | version "5.0.1"
3290 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7"
3291 |
3292 | "semver@2 || 3 || 4 || 5", semver@~5.3.0:
3293 | version "5.3.0"
3294 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"
3295 |
3296 | send@0.15.1:
3297 | version "0.15.1"
3298 | resolved "https://registry.yarnpkg.com/send/-/send-0.15.1.tgz#8a02354c26e6f5cca700065f5f0cdeba90ec7b5f"
3299 | dependencies:
3300 | debug "2.6.1"
3301 | depd "~1.1.0"
3302 | destroy "~1.0.4"
3303 | encodeurl "~1.0.1"
3304 | escape-html "~1.0.3"
3305 | etag "~1.8.0"
3306 | fresh "0.5.0"
3307 | http-errors "~1.6.1"
3308 | mime "1.3.4"
3309 | ms "0.7.2"
3310 | on-finished "~2.3.0"
3311 | range-parser "~1.2.0"
3312 | statuses "~1.3.1"
3313 |
3314 | serve-static@1.12.1:
3315 | version "1.12.1"
3316 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.12.1.tgz#7443a965e3ced647aceb5639fa06bf4d1bbe0039"
3317 | dependencies:
3318 | encodeurl "~1.0.1"
3319 | escape-html "~1.0.3"
3320 | parseurl "~1.3.1"
3321 | send "0.15.1"
3322 |
3323 | set-blocking@^2.0.0, set-blocking@~2.0.0:
3324 | version "2.0.0"
3325 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
3326 |
3327 | set-immediate-shim@^1.0.1:
3328 | version "1.0.1"
3329 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61"
3330 |
3331 | setimmediate@^1.0.4, setimmediate@^1.0.5:
3332 | version "1.0.5"
3333 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
3334 |
3335 | setprototypeof@1.0.3:
3336 | version "1.0.3"
3337 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.3.tgz#66567e37043eeb4f04d91bd658c0cbefb55b8e04"
3338 |
3339 | sha.js@^2.3.6:
3340 | version "2.4.8"
3341 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.8.tgz#37068c2c476b6baf402d14a49c67f597921f634f"
3342 | dependencies:
3343 | inherits "^2.0.1"
3344 |
3345 | shelljs@^0.7.5:
3346 | version "0.7.7"
3347 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.7.tgz#b2f5c77ef97148f4b4f6e22682e10bba8667cff1"
3348 | dependencies:
3349 | glob "^7.0.0"
3350 | interpret "^1.0.0"
3351 | rechoir "^0.6.2"
3352 |
3353 | signal-exit@^3.0.0:
3354 | version "3.0.2"
3355 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
3356 |
3357 | slash@^1.0.0:
3358 | version "1.0.0"
3359 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"
3360 |
3361 | slice-ansi@0.0.4:
3362 | version "0.0.4"
3363 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35"
3364 |
3365 | sntp@1.x.x:
3366 | version "1.0.9"
3367 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198"
3368 | dependencies:
3369 | hoek "2.x.x"
3370 |
3371 | source-list-map@~0.1.7:
3372 | version "0.1.8"
3373 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-0.1.8.tgz#c550b2ab5427f6b3f21f5afead88c4f5587b2106"
3374 |
3375 | source-map-support@^0.4.2:
3376 | version "0.4.11"
3377 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.11.tgz#647f939978b38535909530885303daf23279f322"
3378 | dependencies:
3379 | source-map "^0.5.3"
3380 |
3381 | source-map@^0.4.4:
3382 | version "0.4.4"
3383 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b"
3384 | dependencies:
3385 | amdefine ">=0.0.4"
3386 |
3387 | source-map@^0.5.0, source-map@^0.5.3, source-map@~0.5.1, source-map@~0.5.3:
3388 | version "0.5.6"
3389 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412"
3390 |
3391 | spdx-correct@~1.0.0:
3392 | version "1.0.2"
3393 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40"
3394 | dependencies:
3395 | spdx-license-ids "^1.0.2"
3396 |
3397 | spdx-expression-parse@~1.0.0:
3398 | version "1.0.4"
3399 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c"
3400 |
3401 | spdx-license-ids@^1.0.2:
3402 | version "1.2.2"
3403 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57"
3404 |
3405 | sprintf-js@~1.0.2:
3406 | version "1.0.3"
3407 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
3408 |
3409 | sshpk@^1.7.0:
3410 | version "1.11.0"
3411 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.11.0.tgz#2d8d5ebb4a6fab28ffba37fa62a90f4a3ea59d77"
3412 | dependencies:
3413 | asn1 "~0.2.3"
3414 | assert-plus "^1.0.0"
3415 | dashdash "^1.12.0"
3416 | getpass "^0.1.1"
3417 | optionalDependencies:
3418 | bcrypt-pbkdf "^1.0.0"
3419 | ecc-jsbn "~0.1.1"
3420 | jodid25519 "^1.0.0"
3421 | jsbn "~0.1.0"
3422 | tweetnacl "~0.14.0"
3423 |
3424 | stackframe@^0.3.1:
3425 | version "0.3.1"
3426 | resolved "https://registry.yarnpkg.com/stackframe/-/stackframe-0.3.1.tgz#33aa84f1177a5548c8935533cbfeb3420975f5a4"
3427 |
3428 | "statuses@>= 1.3.1 < 2", statuses@~1.3.1:
3429 | version "1.3.1"
3430 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e"
3431 |
3432 | stream-browserify@^2.0.1:
3433 | version "2.0.1"
3434 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db"
3435 | dependencies:
3436 | inherits "~2.0.1"
3437 | readable-stream "^2.0.2"
3438 |
3439 | stream-http@^2.3.1:
3440 | version "2.6.3"
3441 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.6.3.tgz#4c3ddbf9635968ea2cfd4e48d43de5def2625ac3"
3442 | dependencies:
3443 | builtin-status-codes "^3.0.0"
3444 | inherits "^2.0.1"
3445 | readable-stream "^2.1.0"
3446 | to-arraybuffer "^1.0.0"
3447 | xtend "^4.0.0"
3448 |
3449 | string-width@^1.0.1, string-width@^1.0.2:
3450 | version "1.0.2"
3451 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
3452 | dependencies:
3453 | code-point-at "^1.0.0"
3454 | is-fullwidth-code-point "^1.0.0"
3455 | strip-ansi "^3.0.0"
3456 |
3457 | string-width@^2.0.0:
3458 | version "2.0.0"
3459 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e"
3460 | dependencies:
3461 | is-fullwidth-code-point "^2.0.0"
3462 | strip-ansi "^3.0.0"
3463 |
3464 | string_decoder@^0.10.25, string_decoder@~0.10.x:
3465 | version "0.10.31"
3466 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94"
3467 |
3468 | stringstream@~0.0.4:
3469 | version "0.0.5"
3470 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878"
3471 |
3472 | strip-ansi@^3.0.0, strip-ansi@^3.0.1:
3473 | version "3.0.1"
3474 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
3475 | dependencies:
3476 | ansi-regex "^2.0.0"
3477 |
3478 | strip-bom@^2.0.0:
3479 | version "2.0.0"
3480 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e"
3481 | dependencies:
3482 | is-utf8 "^0.2.0"
3483 |
3484 | strip-bom@^3.0.0:
3485 | version "3.0.0"
3486 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
3487 |
3488 | strip-json-comments@~2.0.1:
3489 | version "2.0.1"
3490 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
3491 |
3492 | supports-color@3.1.2:
3493 | version "3.1.2"
3494 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5"
3495 | dependencies:
3496 | has-flag "^1.0.0"
3497 |
3498 | supports-color@^2.0.0:
3499 | version "2.0.0"
3500 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
3501 |
3502 | supports-color@^3.1.0:
3503 | version "3.2.3"
3504 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6"
3505 | dependencies:
3506 | has-flag "^1.0.0"
3507 |
3508 | symbol-observable@^1.0.2:
3509 | version "1.0.4"
3510 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d"
3511 |
3512 | table@^3.7.8:
3513 | version "3.8.3"
3514 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f"
3515 | dependencies:
3516 | ajv "^4.7.0"
3517 | ajv-keywords "^1.0.0"
3518 | chalk "^1.1.1"
3519 | lodash "^4.0.0"
3520 | slice-ansi "0.0.4"
3521 | string-width "^2.0.0"
3522 |
3523 | tapable@^0.2.5, tapable@~0.2.5:
3524 | version "0.2.6"
3525 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.6.tgz#206be8e188860b514425375e6f1ae89bfb01fd8d"
3526 |
3527 | tar-pack@~3.3.0:
3528 | version "3.3.0"
3529 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.3.0.tgz#30931816418f55afc4d21775afdd6720cee45dae"
3530 | dependencies:
3531 | debug "~2.2.0"
3532 | fstream "~1.0.10"
3533 | fstream-ignore "~1.0.5"
3534 | once "~1.3.3"
3535 | readable-stream "~2.1.4"
3536 | rimraf "~2.5.1"
3537 | tar "~2.2.1"
3538 | uid-number "~0.0.6"
3539 |
3540 | tar@~2.2.1:
3541 | version "2.2.1"
3542 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1"
3543 | dependencies:
3544 | block-stream "*"
3545 | fstream "^1.0.2"
3546 | inherits "2"
3547 |
3548 | text-table@~0.2.0:
3549 | version "0.2.0"
3550 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
3551 |
3552 | through@^2.3.6:
3553 | version "2.3.8"
3554 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
3555 |
3556 | timers-browserify@^2.0.2:
3557 | version "2.0.2"
3558 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.2.tgz#ab4883cf597dcd50af211349a00fbca56ac86b86"
3559 | dependencies:
3560 | setimmediate "^1.0.4"
3561 |
3562 | to-arraybuffer@^1.0.0:
3563 | version "1.0.1"
3564 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43"
3565 |
3566 | to-fast-properties@^1.0.1:
3567 | version "1.0.2"
3568 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320"
3569 |
3570 | tough-cookie@~2.3.0:
3571 | version "2.3.2"
3572 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a"
3573 | dependencies:
3574 | punycode "^1.4.1"
3575 |
3576 | trim-right@^1.0.1:
3577 | version "1.0.1"
3578 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003"
3579 |
3580 | tryit@^1.0.1:
3581 | version "1.0.3"
3582 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb"
3583 |
3584 | tty-browserify@0.0.0:
3585 | version "0.0.0"
3586 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6"
3587 |
3588 | tunnel-agent@^0.6.0:
3589 | version "0.6.0"
3590 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
3591 | dependencies:
3592 | safe-buffer "^5.0.1"
3593 |
3594 | tweetnacl@^0.14.3, tweetnacl@~0.14.0:
3595 | version "0.14.5"
3596 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
3597 |
3598 | type-check@~0.3.2:
3599 | version "0.3.2"
3600 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
3601 | dependencies:
3602 | prelude-ls "~1.1.2"
3603 |
3604 | type-detect@0.1.1:
3605 | version "0.1.1"
3606 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-0.1.1.tgz#0ba5ec2a885640e470ea4e8505971900dac58822"
3607 |
3608 | type-detect@^1.0.0:
3609 | version "1.0.0"
3610 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-1.0.0.tgz#762217cc06db258ec48908a1298e8b95121e8ea2"
3611 |
3612 | type-is@~1.6.14:
3613 | version "1.6.14"
3614 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.14.tgz#e219639c17ded1ca0789092dd54a03826b817cb2"
3615 | dependencies:
3616 | media-typer "0.3.0"
3617 | mime-types "~2.1.13"
3618 |
3619 | typedarray@^0.0.6:
3620 | version "0.0.6"
3621 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
3622 |
3623 | ua-parser-js@^0.7.9:
3624 | version "0.7.12"
3625 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.12.tgz#04c81a99bdd5dc52263ea29d24c6bf8d4818a4bb"
3626 |
3627 | uglify-js@^2.7.5:
3628 | version "2.8.11"
3629 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.11.tgz#11a51c43d810b47bc00aee4d512cb3947ddd1ac4"
3630 | dependencies:
3631 | source-map "~0.5.1"
3632 | uglify-to-browserify "~1.0.0"
3633 | yargs "~3.10.0"
3634 |
3635 | uglify-to-browserify@~1.0.0:
3636 | version "1.0.2"
3637 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7"
3638 |
3639 | uid-number@~0.0.6:
3640 | version "0.0.6"
3641 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81"
3642 |
3643 | unpipe@~1.0.0:
3644 | version "1.0.0"
3645 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
3646 |
3647 | url@^0.11.0:
3648 | version "0.11.0"
3649 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1"
3650 | dependencies:
3651 | punycode "1.3.2"
3652 | querystring "0.2.0"
3653 |
3654 | user-home@^2.0.0:
3655 | version "2.0.0"
3656 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f"
3657 | dependencies:
3658 | os-homedir "^1.0.0"
3659 |
3660 | util-deprecate@~1.0.1:
3661 | version "1.0.2"
3662 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
3663 |
3664 | util@0.10.3, util@^0.10.3:
3665 | version "0.10.3"
3666 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9"
3667 | dependencies:
3668 | inherits "2.0.1"
3669 |
3670 | utils-merge@1.0.0:
3671 | version "1.0.0"
3672 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.0.tgz#0294fb922bb9375153541c4f7096231f287c8af8"
3673 |
3674 | uuid@^3.0.0:
3675 | version "3.0.1"
3676 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1"
3677 |
3678 | validate-npm-package-license@^3.0.1:
3679 | version "3.0.1"
3680 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc"
3681 | dependencies:
3682 | spdx-correct "~1.0.0"
3683 | spdx-expression-parse "~1.0.0"
3684 |
3685 | value-equal@^0.2.0:
3686 | version "0.2.0"
3687 | resolved "https://registry.yarnpkg.com/value-equal/-/value-equal-0.2.0.tgz#4f41c60a3fc011139a2ec3d3340a8998ae8b69c0"
3688 |
3689 | vary@~1.1.0:
3690 | version "1.1.0"
3691 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.0.tgz#e1e5affbbd16ae768dd2674394b9ad3022653140"
3692 |
3693 | verror@1.3.6:
3694 | version "1.3.6"
3695 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c"
3696 | dependencies:
3697 | extsprintf "1.0.2"
3698 |
3699 | vm-browserify@0.0.4:
3700 | version "0.0.4"
3701 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73"
3702 | dependencies:
3703 | indexof "0.0.1"
3704 |
3705 | warning@^3.0.0:
3706 | version "3.0.0"
3707 | resolved "https://registry.yarnpkg.com/warning/-/warning-3.0.0.tgz#32e5377cb572de4ab04753bdf8821c01ed605b7c"
3708 | dependencies:
3709 | loose-envify "^1.0.0"
3710 |
3711 | watchpack@^1.2.0:
3712 | version "1.3.1"
3713 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.3.1.tgz#7d8693907b28ce6013e7f3610aa2a1acf07dad87"
3714 | dependencies:
3715 | async "^2.1.2"
3716 | chokidar "^1.4.3"
3717 | graceful-fs "^4.1.2"
3718 |
3719 | webpack-dev-middleware@^1.10.1:
3720 | version "1.10.1"
3721 | resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-1.10.1.tgz#c6b4cf428139cf1aefbe06a0c00fdb4f8da2f893"
3722 | dependencies:
3723 | memory-fs "~0.4.1"
3724 | mime "^1.3.4"
3725 | path-is-absolute "^1.0.0"
3726 | range-parser "^1.0.3"
3727 |
3728 | webpack-hot-middleware@^2.17.1:
3729 | version "2.17.1"
3730 | resolved "https://registry.yarnpkg.com/webpack-hot-middleware/-/webpack-hot-middleware-2.17.1.tgz#0c8fbf6f93ff29c095d684b07ab6d6c0f2f951d7"
3731 | dependencies:
3732 | ansi-html "0.0.7"
3733 | html-entities "^1.2.0"
3734 | querystring "^0.2.0"
3735 | strip-ansi "^3.0.0"
3736 |
3737 | webpack-sources@^0.1.4:
3738 | version "0.1.5"
3739 | resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-0.1.5.tgz#aa1f3abf0f0d74db7111c40e500b84f966640750"
3740 | dependencies:
3741 | source-list-map "~0.1.7"
3742 | source-map "~0.5.3"
3743 |
3744 | webpack@^2.2.1:
3745 | version "2.2.1"
3746 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-2.2.1.tgz#7bb1d72ae2087dd1a4af526afec15eed17dda475"
3747 | dependencies:
3748 | acorn "^4.0.4"
3749 | acorn-dynamic-import "^2.0.0"
3750 | ajv "^4.7.0"
3751 | ajv-keywords "^1.1.1"
3752 | async "^2.1.2"
3753 | enhanced-resolve "^3.0.0"
3754 | interpret "^1.0.0"
3755 | json-loader "^0.5.4"
3756 | loader-runner "^2.3.0"
3757 | loader-utils "^0.2.16"
3758 | memory-fs "~0.4.1"
3759 | mkdirp "~0.5.0"
3760 | node-libs-browser "^2.0.0"
3761 | source-map "^0.5.3"
3762 | supports-color "^3.1.0"
3763 | tapable "~0.2.5"
3764 | uglify-js "^2.7.5"
3765 | watchpack "^1.2.0"
3766 | webpack-sources "^0.1.4"
3767 | yargs "^6.0.0"
3768 |
3769 | whatwg-fetch@>=0.10.0:
3770 | version "2.0.3"
3771 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz#9c84ec2dcf68187ff00bc64e1274b442176e1c84"
3772 |
3773 | which-module@^1.0.0:
3774 | version "1.0.0"
3775 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f"
3776 |
3777 | wide-align@^1.1.0:
3778 | version "1.1.0"
3779 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad"
3780 | dependencies:
3781 | string-width "^1.0.1"
3782 |
3783 | window-size@0.1.0:
3784 | version "0.1.0"
3785 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d"
3786 |
3787 | wordwrap@0.0.2:
3788 | version "0.0.2"
3789 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f"
3790 |
3791 | wordwrap@~1.0.0:
3792 | version "1.0.0"
3793 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
3794 |
3795 | wrap-ansi@^2.0.0:
3796 | version "2.1.0"
3797 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85"
3798 | dependencies:
3799 | string-width "^1.0.1"
3800 | strip-ansi "^3.0.1"
3801 |
3802 | wrappy@1:
3803 | version "1.0.2"
3804 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
3805 |
3806 | write@^0.2.1:
3807 | version "0.2.1"
3808 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757"
3809 | dependencies:
3810 | mkdirp "^0.5.1"
3811 |
3812 | xtend@^4.0.0:
3813 | version "4.0.1"
3814 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af"
3815 |
3816 | y18n@^3.2.1:
3817 | version "3.2.1"
3818 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41"
3819 |
3820 | yargs-parser@^4.2.0:
3821 | version "4.2.1"
3822 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c"
3823 | dependencies:
3824 | camelcase "^3.0.0"
3825 |
3826 | yargs@^6.0.0:
3827 | version "6.6.0"
3828 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208"
3829 | dependencies:
3830 | camelcase "^3.0.0"
3831 | cliui "^3.2.0"
3832 | decamelize "^1.1.1"
3833 | get-caller-file "^1.0.1"
3834 | os-locale "^1.4.0"
3835 | read-pkg-up "^1.0.1"
3836 | require-directory "^2.1.1"
3837 | require-main-filename "^1.0.1"
3838 | set-blocking "^2.0.0"
3839 | string-width "^1.0.2"
3840 | which-module "^1.0.0"
3841 | y18n "^3.2.1"
3842 | yargs-parser "^4.2.0"
3843 |
3844 | yargs@~3.10.0:
3845 | version "3.10.0"
3846 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1"
3847 | dependencies:
3848 | camelcase "^1.0.2"
3849 | cliui "^2.1.0"
3850 | decamelize "^1.0.0"
3851 | window-size "0.1.0"
3852 |
--------------------------------------------------------------------------------