├── .npmignore ├── .babelrc ├── test ├── .eslintrc ├── setup.js └── create.spec.js ├── src ├── index.js ├── shape.js ├── reducer.js ├── connect.js └── create.js ├── .gitignore ├── tools └── preset.js ├── LICENSE ├── package.json ├── docs └── API.md ├── README.md └── yarn.lock /.npmignore: -------------------------------------------------------------------------------- 1 | *.notes* 2 | -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["./tools/preset"] 3 | } 4 | -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "mocha": true 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /test/setup.js: -------------------------------------------------------------------------------- 1 | import { JSDOM } from 'jsdom' 2 | 3 | const { window } = new JSDOM('') 4 | global.window = window 5 | global.document = window.document 6 | global.navigator = window.navigator 7 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | export { 2 | connect, 3 | connect as connectNamespace 4 | } from './connect' 5 | 6 | export { 7 | create, 8 | create as createNamespace 9 | } from './create' 10 | 11 | export reducer from './reducer' 12 | export namespaceReducer from './reducer' 13 | 14 | export shape from './shape' 15 | export namespaceShape from './shape' 16 | -------------------------------------------------------------------------------- /src/shape.js: -------------------------------------------------------------------------------- 1 | import PropTypes from 'prop-types'; 2 | 3 | export const shape = { 4 | assign: PropTypes.func.isRequired, 5 | assigns: PropTypes.func.isRequired, 6 | create: PropTypes.func.isRequired, 7 | cursor: PropTypes.func.isRequired, 8 | defaults: PropTypes.func.isRequired, 9 | dispatch: PropTypes.func.isRequired, 10 | reset: PropTypes.func.isRequired, 11 | resets: PropTypes.func.isRequired, 12 | select: PropTypes.func.isRequired, 13 | selects: PropTypes.func.isRequired, 14 | touched: PropTypes.func.isRequired, 15 | version: PropTypes.func.isRequired, 16 | } 17 | 18 | export default shape 19 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | 5 | # Runtime data 6 | pids 7 | *.pid 8 | *.seed 9 | 10 | # Directory for instrumented libs generated by jscoverage/JSCover 11 | lib-cov 12 | 13 | # Coverage directory used by tools like istanbul 14 | coverage 15 | 16 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 17 | .grunt 18 | 19 | # node-waf configuration 20 | .lock-wscript 21 | 22 | # Compiled binary addons (http://nodejs.org/api/addons.html) 23 | build/Release 24 | 25 | # Dependency directory 26 | # https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git 27 | node_modules 28 | 29 | es 30 | lib 31 | dist 32 | -------------------------------------------------------------------------------- /tools/preset.js: -------------------------------------------------------------------------------- 1 | const env = process.env.BABEL_ENV || process.env.NODE_ENV; 2 | const modules = process.env.BABEL_MODULES || env === 'test' ? 'commonjs' : false; 3 | 4 | const plugins = [ 5 | require.resolve('babel-plugin-lodash'), 6 | require.resolve('babel-plugin-transform-class-properties'), 7 | require.resolve('babel-plugin-transform-export-extensions'), 8 | [require.resolve('babel-plugin-transform-object-rest-spread'), { useBuiltIns: true }] 9 | ]; 10 | 11 | module.exports = { 12 | presets: [ 13 | [ 14 | require.resolve('babel-preset-env'), 15 | { targets: { ie: 9, uglify: true }, useBuiltIns: false, modules: modules } 16 | ] 17 | ], 18 | plugins: plugins 19 | }; 20 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Evan Schneider 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "redux-namespace", 3 | "version": "1.0.3", 4 | "description": "Namespace your component state in your Redux store", 5 | "main": "./lib/index.js", 6 | "module": "./es/index.js", 7 | "jsnext:main": "./es/index.js", 8 | "scripts": { 9 | "build": "npm run clean && npm run build:es && npm run build:lib", 10 | "build:es": "babel src --out-dir es", 11 | "build:lib": "BABEL_MODULES=true babel src --out-dir lib", 12 | "clean": "rimraf dist && rimraf lib", 13 | "prepublish": "npm test && npm run build", 14 | "postversion": "npm test && git push && git push --tags", 15 | "test": "BABEL_MODULES=true mocha --compilers js:babel-register --recursive --require ./test/setup.js", 16 | "test:watch": "npm test -- --watch" 17 | }, 18 | "files": [ 19 | "dist", 20 | "lib", 21 | "src", 22 | "test" 23 | ], 24 | "repository": { 25 | "type": "git", 26 | "url": "git+https://github.com/evanrs/redux-namespace.git" 27 | }, 28 | "keywords": [ 29 | "redux", 30 | "data", 31 | "binding", 32 | "namespace", 33 | "forms" 34 | ], 35 | "author": "Evan Schneider", 36 | "license": "MIT", 37 | "bugs": { 38 | "url": "https://github.com/evanrs/redux-namespace/issues" 39 | }, 40 | "homepage": "https://github.com/evanrs/redux-namespace#readme", 41 | "peerDependencies": { 42 | "lodash": "^4.6.0", 43 | "react": "^15.1.0", 44 | "react-redux": "^4.4.0", 45 | "redux": "^3.3.1" 46 | }, 47 | "dependencies": { 48 | "hoist-non-react-statics": "^2.2.2", 49 | "invariant": "^2.2.0", 50 | "preact-shallow-compare": "^1.0.1", 51 | "prop-types": "^15.5.10" 52 | }, 53 | "devDependencies": { 54 | "babel-cli": "^6.6.0", 55 | "babel-plugin-lodash": "^3.2.11", 56 | "babel-plugin-transform-class-properties": "^6.24.1", 57 | "babel-plugin-transform-export-extensions": "^6.22.0", 58 | "babel-plugin-transform-object-rest-spread": "^6.23.0", 59 | "babel-preset-env": "^1.6.0", 60 | "babel-register": "^6.7.2", 61 | "expect": "^1.16.0", 62 | "jsdom": "^11.1.0", 63 | "lodash": "^4.6.0", 64 | "mocha": "^3.5.0", 65 | "react": "^15.6.1", 66 | "react-redux": "^5.0.6", 67 | "redux": "^3.3.1", 68 | "rimraf": "^2.5.2" 69 | } 70 | } 71 | -------------------------------------------------------------------------------- /docs/API.md: -------------------------------------------------------------------------------- 1 | # API 2 | Redux namespace provides tools to read and write to any path in your redux store. Use at your own risk, but enjoy yourself too 🙂 3 | 4 | # Namespace 5 | 6 | ## `create()` 7 | Creates a namespace at the given path—a cursor into your redux store for setting and getting values. But really, it's easier to just use the `connect` decorator. 8 | ```js 9 | create(path: String, store: ReduxStore): namespace 10 | ``` 11 | 12 | ## `select()` 13 | Selects from the namespace at the given path or returns the `defaultValue` 14 | ```js 15 | ns.select(path: String, defaultValue: any): any 16 | ``` 17 | 18 | ## `selects()` 19 | Returns `select` bound to the namespace and given path 20 | ```js 21 | ns.selects(path: String): ns::select(path) 22 | ``` 23 | 24 | ## `assign()` 25 | Assign is a curried method accepting several static or resolved value types. 26 | 27 | ##### Sets a value 28 | ```js 29 | ns.assign(pathMap: String|Object, value: any): value 30 | ``` 31 | 32 | ##### Will set a value, returns curried method 33 | ```js 34 | ns.assign(pathMap: String|Object): ns::assign(path, ...args) 35 | ``` 36 | 37 | ##### Will set the value returned by this function. 38 | Returns a method curried to assign the target with value returned by the given method and arguments. 39 | ```js 40 | ns.assign(pathMap: String|Object, resolve: Function): (...args) => resolve(...args) 41 | ``` 42 | 43 | ## `assigns()` 44 | Returns a bound `ns::assign` for the given path or pathMap 45 | ```js 46 | ns.assign(pathMap: String|Object, resolve?: String|Function): ns::assign(pathMap, resolve?) 47 | ``` 48 | 49 | ## `cursor()` 50 | Returns a namespace instance for the given path, a cursor. 51 | ```js 52 | ns.cursor(key: String): ReduxNamepsace 53 | ``` 54 | 55 | ## `defaults()` 56 | Sets default values for the namespace. 57 | ```js 58 | ns.defaults(value: Object): 59 | ``` 60 | 61 | Sets default at a path. 62 | ```js 63 | ns.defaults(path: String, value: any): 64 | ``` 65 | 66 | ## `reset()` 67 | Resets namespace version, sets defaults, untouches, and returns previous value. 68 | ```js 69 | ns.reset(path?: String): any 70 | ``` 71 | 72 | ## `resets()` 73 | Returns `reset` bound to the namespace and given path 74 | ```js 75 | ns.resets(path: String): ns::reset(path) 76 | ``` 77 | 78 | ## `touched()` 79 | Returns true for modified values, false otherwise. 80 | ```js 81 | ns.touched(path?: String): Boolean 82 | ``` 83 | 84 | ## `version()` 85 | Returns the current version of the namespace 86 | ```js 87 | ns.version(path?: String): Number 88 | ``` 89 | 90 | 91 | ## `dispatch()` 92 | Standard redux dispatch 93 | 94 | --- 95 | -------------------------------------------------------------------------------- /src/reducer.js: -------------------------------------------------------------------------------- 1 | import clone from 'lodash/clone'; 2 | import concat from 'lodash/concat'; 3 | import get from 'lodash/get'; 4 | import includes from 'lodash/includes'; 5 | import isNil from 'lodash/isNil'; 6 | import isObject from 'lodash/isObject'; 7 | import mergeWith from 'lodash/mergeWith'; 8 | import set from 'lodash/set'; 9 | import toPath from 'lodash/toPath'; 10 | import unset from 'lodash/unset'; 11 | import mapValues from 'lodash/mapValues'; 12 | 13 | 14 | export const BIND = 'BIND_NAMESPACE_NEXT'; 15 | export const DEFAULTS = 'DEFAULTS_NAMESPACE_NEXT'; 16 | export const RESET = 'RESET_NAMESPACE_NEXT'; 17 | 18 | const actionTypes = { BIND, RESET, DEFAULTS }; 19 | 20 | 21 | export function namespaceReducer (state={}, action={}) { 22 | 23 | if (includes(actionTypes, action.type)) { 24 | let { payload: { namespace, key, value } } = action 25 | 26 | if (isNil(key) && isObject(value)) { 27 | mapValues(value, (value, key) => { 28 | state = namespaceReducer(state, { 29 | ...action, payload: { namespace, key, value } 30 | }) 31 | }) 32 | 33 | return state; 34 | } 35 | 36 | namespace = toPath(namespace); 37 | key = toPath(key); 38 | 39 | let changedPath = concat(namespace, key); 40 | 41 | let versions = { ...state['@@versions'] }; 42 | let version = versions[changedPath] || 0; 43 | 44 | let toucheds = { ...state['@@toucheds'] }; 45 | let touched = toucheds[changedPath] || 0; 46 | 47 | let fragment = clonePath( 48 | set({}, namespace, get(state, namespace)), 49 | changedPath 50 | ); 51 | let current = get(fragment, changedPath); 52 | 53 | if (action.type === BIND && value !== current) { 54 | current = value; 55 | touched = touched + 1; 56 | version = version + 1; 57 | } 58 | 59 | if (action.type === DEFAULTS && ! touched) { 60 | current = value; 61 | touched = 0; 62 | version = version + 1; 63 | } 64 | 65 | if (action.type === RESET) { 66 | current = void 0; 67 | touched = 0; 68 | version = 0; 69 | } 70 | 71 | set(fragment, changedPath, current); 72 | 73 | state = mergeWith(clone(state), fragment, (a, b, p, c) => { 74 | if (isNil(b)) { 75 | unset(c, p); 76 | } 77 | }) 78 | 79 | if (touched !== toucheds[changedPath]) { 80 | state['@@toucheds'] = setVersionAlongPath(toucheds, changedPath, touched ? 1 : 0); 81 | state['@@toucheds'][changedPath] = touched; 82 | } 83 | 84 | if (version !== versions[changedPath]) { 85 | state['@@versions'] = setVersionAlongPath(versions, changedPath); 86 | state['@@versions'][changedPath] = version; 87 | } 88 | } 89 | 90 | return state; 91 | } 92 | 93 | 94 | function setVersionAlongPath (versions, path, increment=1) { 95 | versions = { ...versions }; 96 | 97 | let pathRegex = new RegExp('^' + path + '\..+'); 98 | 99 | Object.keys(versions). 100 | filter((key) => pathRegex.test(key)). 101 | map((key) => 102 | unset(versions, key)) 103 | 104 | path.reduce((paths, path) => { 105 | paths = paths.concat(path); 106 | versions[paths] = (versions[paths] || 0) + increment; 107 | 108 | return paths; 109 | }, []) 110 | 111 | return versions; 112 | } 113 | 114 | 115 | function clonePath (target, path) { 116 | path.forEach((key, idx, col) => { 117 | key = col.slice(0, idx); 118 | set(target, key, clone(get(target, key))) 119 | }) 120 | 121 | return target; 122 | } 123 | 124 | export default namespaceReducer 125 | -------------------------------------------------------------------------------- /test/create.spec.js: -------------------------------------------------------------------------------- 1 | import expect from 'expect'; 2 | import { createStore, combineReducers } from 'redux'; 3 | 4 | import { create } from '../src/create'; 5 | import { namespaceReducer } from '../src/reducer'; 6 | 7 | function createTest () { 8 | const store = createStore(combineReducers({ 9 | namespace: namespaceReducer 10 | })) 11 | 12 | return { 13 | store, ns: create('test', store) 14 | } 15 | } 16 | 17 | describe('create', () => { 18 | it('should assign values', () => { 19 | const { ns, store } = createTest() 20 | 21 | ns.assign('foo', 'bar') 22 | 23 | expect(store.getState().namespace.test.foo).toEqual('bar') 24 | }) 25 | 26 | it('should select values', () => { 27 | const { ns } = createTest() 28 | 29 | ns.assign('foo.bar', { baz: 'bop'}) 30 | 31 | expect(ns.select('foo.bar.baz')).toEqual('bop') 32 | }) 33 | 34 | it('should create cursors', () => { 35 | const { ns, store } = createTest() 36 | const cursor = ns.cursor('cursed') 37 | 38 | cursor.assign('foo.bar', { baz: 'bop'}) 39 | cursor.assign('some.array[0]', { and: [{ nested: 'value' }]}) 40 | cursor.assign('some.array[1]', { or: 'not' }) 41 | cursor.assign('some.array', []) 42 | 43 | expect(ns.select('cursed.foo.bar.baz')).toEqual('bop') 44 | expect(cursor.select('foo.bar.baz')).toEqual('bop') 45 | 46 | ns.assign('cursed.bar', 'baz') 47 | expect(cursor.select('bar')).toEqual('baz') 48 | }) 49 | 50 | it('should version along path', () => { 51 | const { ns } = createTest() 52 | 53 | expect(ns.version()).toEqual(0) 54 | 55 | ns.assign('foo', {}) 56 | expect(ns.version()).toEqual(1) 57 | expect(ns.version('foo')).toEqual(1) 58 | expect(ns.cursor('foo').version()).toEqual(1) 59 | 60 | ns.assign('foo.bar', true) 61 | expect(ns.version()).toEqual(2) 62 | expect(ns.version('foo')).toEqual(2) 63 | expect(ns.version('foo.bar')).toEqual(1) 64 | expect(ns.cursor('foo').version()).toEqual(2) 65 | expect(ns.cursor('foo').version('bar')).toEqual(1) 66 | 67 | ns.assign('foo', {}) 68 | expect(ns.version()).toEqual(3) 69 | expect(ns.version('foo')).toEqual(3) 70 | expect(ns.version('foo.bar')).toEqual(0) 71 | 72 | ns.assign('foo', { bar: true }); 73 | expect(ns.version('foo')).toEqual(4) 74 | expect(ns.version('foo.bar')).toEqual(0) 75 | }) 76 | 77 | it('should be touched along path', () => { 78 | const { ns } = createTest() 79 | 80 | expect(ns.touched()).toEqual(0) 81 | 82 | ns.assign('foo.bar', true) 83 | expect(ns.touched()).toEqual(1) 84 | expect(ns.touched('foo')).toEqual(1) 85 | expect(ns.touched('foo.bar')).toEqual(1) 86 | 87 | ns.assign('foo', {}) 88 | expect(ns.touched('foo')).toEqual(2) 89 | expect(ns.touched('foo.bar')).toEqual(0) 90 | }) 91 | 92 | it('should reset', () => { 93 | const { ns, store } = createTest(); 94 | 95 | ns.assign('foo', {}); 96 | ns.assign('foo.bar', {}); 97 | ns.reset('foo'); 98 | expect(ns.version('foo')).toEqual(0); 99 | 100 | ns.assign('foo', {}); 101 | expect(ns.version('foo')).toEqual(1); 102 | expect(ns.touched('foo')).toEqual(1); 103 | }) 104 | 105 | it('should set defaults', () => { 106 | const { ns, store } = createTest(); 107 | 108 | ns.defaults('foo', {}); 109 | expect(ns.touched('foo')).toEqual(0); 110 | expect(ns.version('foo')).toEqual(1); 111 | 112 | ns.defaults('foo.bar', {}); 113 | expect(ns.touched('foo')).toEqual(0); 114 | expect(ns.version('foo')).toEqual(2); 115 | expect(ns.touched('foo.bar')).toEqual(0); 116 | expect(ns.version('foo.bar')).toEqual(1); 117 | }) 118 | 119 | it('should map over an object', () => { 120 | const { ns, store } = createTest(); 121 | 122 | ns.assign({ 'bop': 1, 'baz': 2 }); 123 | expect(ns.version('bop')).toEqual(1) 124 | expect(ns.touched('baz')).toEqual(1) 125 | }) 126 | }) 127 | -------------------------------------------------------------------------------- /src/connect.js: -------------------------------------------------------------------------------- 1 | import { Component, createElement } from 'react' 2 | import PropTypes from 'prop-types'; 3 | import hoistStatics from 'hoist-non-react-statics' 4 | import invariant from 'invariant' 5 | import toPath from 'lodash/toPath'; 6 | import isFunction from 'lodash/isFunction'; 7 | import isString from 'lodash/isString'; 8 | import memoize from 'lodash/memoize'; 9 | import constant from 'lodash/constant' 10 | import result from 'lodash/result' 11 | import filter from 'lodash/filter' 12 | import shallowCompare from 'preact-shallow-compare' 13 | 14 | import { create } from './create' 15 | 16 | 17 | const storeShape = PropTypes.shape({ 18 | subscribe: PropTypes.func.isRequired, 19 | dispatch: PropTypes.func.isRequired, 20 | getState: PropTypes.func.isRequired 21 | }); 22 | 23 | const nameShape = PropTypes.shape({ 24 | version: PropTypes.func.isRequired, 25 | toPath: PropTypes.func.isRequired 26 | }) 27 | 28 | const connectNamespace = memoize(create, (path) => `${path}`); 29 | 30 | export function connect(namespace, key) { 31 | invariant(isString(namespace) || isFunction(namespace), 32 | `Expected "namespace" to be of type string or function` 33 | ); 34 | 35 | if (! isFunction(namespace)) { 36 | namespace = constant(namespace) 37 | } 38 | 39 | return function wrapWithComponent (WrappedComponent) { 40 | class Connect extends Component { 41 | constructor(props, context) { 42 | super(...arguments); 43 | 44 | this.store = props.store || context.store 45 | 46 | invariant(this.store, 47 | `Could not find "store" in either the context or ` + 48 | `props of "${this.constructor.displayName}". ` 49 | ) 50 | 51 | this.namespace = this.getNamespace(props) 52 | this.state = { 53 | version: this.namespace.version() 54 | } 55 | } 56 | 57 | componentDidMount() { 58 | if (! this.unsubscribe) { 59 | this.unsubscribe = 60 | this.store.subscribe(this.handleChange.bind(this)); 61 | this.handleChange(); 62 | } 63 | } 64 | 65 | componentWillReceiveProps(props) { 66 | this.namespace = this.getNamespace(props); 67 | } 68 | 69 | shouldComponentUpdate(nextProps, nextState) { 70 | return shallowCompare(this, nextProps, nextState); 71 | } 72 | 73 | componentWillUpdate(nextProps, nextState) { 74 | if (nextState.version !== this.state.version) { 75 | this.namespace = this.getNamespace(nextProps) 76 | } 77 | } 78 | 79 | componentWillUnmount() { 80 | if (this.unsubscribe) { 81 | // comma operator, because why not? 82 | this.unsubscribe = this.unsubscribe(), null; 83 | } 84 | } 85 | 86 | getNamespace(props = this.props) { 87 | let segments = filter([ 88 | ...result(props, 'namespace.toPath', []), 89 | namespace(props), 90 | isFunction(key) && `/${key(props)}` 91 | ]) 92 | 93 | return connectNamespace(toPath(segments), this.store); 94 | } 95 | 96 | handleChange() { 97 | if (! this.unsubscribe) { 98 | return 99 | } 100 | 101 | const prev = this.state.version 102 | const next = this.namespace.version(); 103 | 104 | 105 | if (prev !== next) { 106 | this.setState(() => ({ version: this.namespace.version() })) 107 | } 108 | } 109 | 110 | render() { 111 | return createElement(WrappedComponent, { 112 | ...this.props, 113 | [namespace(this.props)]: this.namespace, 114 | // oof, what a hack, but this gives us pure component updates 115 | [`__${namespace(this.props)}__version`]: this.state.version 116 | }) 117 | } 118 | } 119 | 120 | Connect.displayName = `Namespace@${namespace}` 121 | Connect.contextTypes = { 122 | store: storeShape 123 | } 124 | Connect.propTypes = { 125 | store: storeShape, 126 | namespace: nameShape 127 | } 128 | 129 | return hoistStatics(Connect, WrappedComponent) 130 | } 131 | } 132 | -------------------------------------------------------------------------------- /src/create.js: -------------------------------------------------------------------------------- 1 | import flow from 'lodash/flow'; 2 | import isFunction from 'lodash/isFunction'; 3 | import isObject from 'lodash/isObject'; 4 | import isString from 'lodash/isString'; 5 | import mapValues from 'lodash/mapValues'; 6 | import property from 'lodash/property'; 7 | import result from 'lodash/result'; 8 | import toPath from 'lodash/toPath'; 9 | import get from 'lodash/get'; 10 | import memoize from 'lodash/memoize'; 11 | 12 | import { BIND, DEFAULTS, RESET } from './reducer'; 13 | 14 | 15 | export function assign (namespace, key, value) { 16 | if (! key && ! isObject(value)) 17 | return (key, value) => 18 | assign(namespace, key, value); 19 | 20 | let action = (value) => ({ 21 | type: BIND, payload: { namespace, key, value } }) 22 | 23 | if ([...arguments].length < assign.length) 24 | return action; 25 | 26 | return action(value); 27 | } 28 | 29 | export function defaults (namespace, key, value) { 30 | return { 31 | type: DEFAULTS, 32 | payload: { namespace, key, value } 33 | } 34 | } 35 | 36 | export function reset (namespace, key) { 37 | return { 38 | type: RESET, 39 | payload: { namespace, key } 40 | } 41 | } 42 | 43 | export function create (namespace, store) { 44 | const { dispatch, getState } = store; 45 | 46 | const toNSPath = (path) => 47 | [...toPath(namespace), ...toPath(path)] 48 | 49 | const toMetaPath = (meta, path) => 50 | ['namespace', meta, toNSPath(path)] 51 | 52 | const getNamespace = 53 | flow(getState, property(['namespace', ...toNSPath()])); 54 | 55 | function selector (key, __) { 56 | return arguments.length > 0 ? 57 | result(getNamespace(), key, __) : getNamespace() || {} 58 | } 59 | 60 | function dispatcher (target, value) { 61 | return ( 62 | // curry or assign many 63 | arguments.length === 1 ? 64 | // curry assign with target 65 | isString(target) ? 66 | dispatcher.bind(this, target) 67 | // TODO interpret array as property.path 68 | // map target ({key: value}) => assign 69 | : mapValues(target, (value, key) => dispatcher(key, value)) 70 | // deferred selector 71 | : isFunction(value) ? 72 | (...args) => dispatcher(target, value(...args)) 73 | // memoize 74 | : selector(target) !== value ? 75 | ( dispatch(assign(namespace, target, value)) 76 | , value ) 77 | : value 78 | ) 79 | } 80 | 81 | const ns = { 82 | assign: dispatcher, 83 | assigns (key, selector) { 84 | return dispatcher(key, (value, ...args) => 85 | isString(selector) ? result(value, selector) 86 | : isFunction(selector) ? selector(value, ...args) 87 | : value 88 | ) 89 | }, 90 | cursor: memoize( 91 | (path) => create(toNSPath(path), store), 92 | (path) => toNSPath(path).join() 93 | ), 94 | dispatch, 95 | defaults (key, value) { 96 | if (isObject(key)) { 97 | dispatch(defaults(namespace, void 0, key)); 98 | return key; 99 | 100 | // TODO handle in reducer to avoid multiple dispatch 101 | // return mapValues(key, (value, key) => ns.defaults(key, value)) 102 | } 103 | 104 | dispatch(defaults(namespace, key, value)); 105 | 106 | return value; 107 | }, 108 | select: selector, 109 | selects () { 110 | return selector.bind(null, ...arguments); 111 | }, 112 | touched (path) { 113 | path = toMetaPath('@@toucheds', path); 114 | 115 | return get(store.getState(), path, 0); 116 | }, 117 | reset (key) { 118 | let value; 119 | 120 | if (! key) { 121 | value = selector(); 122 | 123 | dispatch(reset(namespace)) 124 | } 125 | else { 126 | value = selector(key); 127 | 128 | dispatch(reset(namespace, key)) 129 | } 130 | 131 | return value; 132 | }, 133 | resets (key) { 134 | return ns.reset.bind(ns, key); 135 | }, 136 | version (path) { 137 | path = toMetaPath('@@versions', path); 138 | return get(store.getState(), path, 0); 139 | }, 140 | toPath: toNSPath 141 | } 142 | 143 | return ns; 144 | } 145 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Redux Namespace 2 | ============= 3 | 4 | Dead simple tool moving component local state into a Redux namespace. 5 | 6 | ```shell 7 | npm install --save redux-namespace 8 | ``` 9 | 10 | ## Motivation 11 | Got transient state without a home? Do your components lose it when they unmount? Are you swimming in a pool of reducers that do one thing? Then Redux Namespace is for you, because all those problems are tedious and boring, and you have better things to do! 12 | 13 | [`redux-namespace`](https://www.npmjs.com/package/redux-namespace) it's a key value store, with depth. 14 | 15 | ## Usage 16 | 17 | ```js 18 | yarn add redux-namespace 19 | ``` 20 | 21 | #### Attach the Reducer 22 | ```js 23 | import { createStore, combineReducers } from 'redux'; 24 | import { reducer } from 'redux-namespace'; 25 | 26 | const store = createStore(combineReducers({namespace: reducer})); 27 | ``` 28 | 29 | 30 | #### Connect your components 31 | This is probably too easy. Just name your namespace, then `select` and `assign` how you like. 32 | ```js 33 | connect('pizza')(({ pizza }) => 34 | ) 37 | ``` 38 | Let's look at that again. 39 | ```js 40 | import * as namepsace from 'redux-namespace'; 41 | 42 | const Form = namespace.connect('form', 'signin')((props) => { 43 | let { form } = props; 44 | return ( 45 | 46 | 48 | 49 | 51 | 52 | dispatch(someAction(form.select()))}> 53 | Submit 54 | 55 | 56 | ) 57 | }) 58 | 59 | ``` 60 | But _you_ know what's up, `assign` is returning a function. A funtion that sets the path you give it to the value it gets. 61 | 62 | But it's not always that easy, sometimes we have to be picky. 63 | ```js 64 | 65 | ``` 66 | And sometimes we have to be even pickier than that. 67 | ```js 68 | value)}/> 69 | ``` 70 | 71 | How about lists? We can pick a value from props, or pass it a string. So `connect('list', 'item')` will become a prop called `list`, but its values will be assigned to `list.item`. 72 | ```js 73 | import { connect, shape } from 'redux-namespace' 74 | 75 | @connect('list', (props) => props.id || 'new') 76 | class ProductForm extends Component { 77 | static propTypes = { 78 | productsList: shape 79 | } 80 | 81 | render () { 82 | let { list: ns } = this.props; 83 | return ( 84 |
ns.dispatch(someAction(ns.select()))}/> 85 | 88 | 91 |
92 | ) 93 | } 94 | } 95 | ``` 96 | 97 | But you don't have to manage it in one place. You can create a cursor—a pointer to one part of your namespace. It has all the same functions, but applied to its own descendant path. 98 | ```js 99 | 100 | const productList = [ 101 |  { id: 1, name: '🦄', price: '🌈' }, 102 |  { id: 2, name: '🐿', price: '🥜' }, 103 |  { id: 3, name: '🐮', price: '🌾' }, 104 | ] 105 | 106 | @connect('productsList') 107 | const ProductManager = (props) => 108 |
109 | {productList.map((product) => { 110 | // This will alway return the same cursor 111 | const cursor = props.productList.cursor(product.id); 112 | 113 | // We don't need to set it everytime, but it's safe to 114 | cursor.defaults(product); 115 | 116 | return 117 | } 118 | )} 119 |
120 | ``` 121 | 122 | You can also `reset` your namespace, see if it was `touched` and track its `version`. See [the full API here](https://github.com/evanrs/redux-namespace/blob/master/docs/API.md). 123 | 124 | It's not the Redux reducer we need, but it's the one I wrote, so have fun with it. ✌️ 125 | 126 | ## Psst. 127 | Know how to make it the reducer we need? 128 | 129 | Get in touch, let's make it work! 130 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@types/node@^6.0.46": 6 | version "6.0.85" 7 | resolved "https://registry.yarnpkg.com/@types/node/-/node-6.0.85.tgz#ec02bfe54a61044f2be44f13b389c6a0e8ee05ae" 8 | 9 | abab@^1.0.3: 10 | version "1.0.3" 11 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.3.tgz#b81de5f7274ec4e756d797cd834f303642724e5d" 12 | 13 | abbrev@1: 14 | version "1.1.0" 15 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 16 | 17 | acorn-globals@^3.1.0: 18 | version "3.1.0" 19 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" 20 | dependencies: 21 | acorn "^4.0.4" 22 | 23 | acorn@^4.0.4: 24 | version "4.0.13" 25 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 26 | 27 | ajv@^4.9.1: 28 | version "4.11.8" 29 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 30 | dependencies: 31 | co "^4.6.0" 32 | json-stable-stringify "^1.0.1" 33 | 34 | amdefine@>=0.0.4: 35 | version "1.0.1" 36 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 37 | 38 | ansi-regex@^2.0.0: 39 | version "2.1.1" 40 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 41 | 42 | ansi-styles@^2.2.1: 43 | version "2.2.1" 44 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 45 | 46 | anymatch@^1.3.0: 47 | version "1.3.2" 48 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 49 | dependencies: 50 | micromatch "^2.1.5" 51 | normalize-path "^2.0.0" 52 | 53 | aproba@^1.0.3: 54 | version "1.1.2" 55 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.2.tgz#45c6629094de4e96f693ef7eab74ae079c240fc1" 56 | 57 | are-we-there-yet@~1.1.2: 58 | version "1.1.4" 59 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 60 | dependencies: 61 | delegates "^1.0.0" 62 | readable-stream "^2.0.6" 63 | 64 | arr-diff@^2.0.0: 65 | version "2.0.0" 66 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 67 | dependencies: 68 | arr-flatten "^1.0.1" 69 | 70 | arr-flatten@^1.0.1: 71 | version "1.1.0" 72 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 73 | 74 | array-equal@^1.0.0: 75 | version "1.0.0" 76 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 77 | 78 | array-unique@^0.2.1: 79 | version "0.2.1" 80 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 81 | 82 | asap@~2.0.3: 83 | version "2.0.6" 84 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" 85 | 86 | asn1@~0.2.3: 87 | version "0.2.3" 88 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 89 | 90 | assert-plus@1.0.0, assert-plus@^1.0.0: 91 | version "1.0.0" 92 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 93 | 94 | assert-plus@^0.2.0: 95 | version "0.2.0" 96 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 97 | 98 | async-each@^1.0.0: 99 | version "1.0.1" 100 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 101 | 102 | asynckit@^0.4.0: 103 | version "0.4.0" 104 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 105 | 106 | aws-sign2@~0.6.0: 107 | version "0.6.0" 108 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 109 | 110 | aws4@^1.2.1: 111 | version "1.6.0" 112 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 113 | 114 | babel-cli@^6.6.0: 115 | version "6.24.1" 116 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.24.1.tgz#207cd705bba61489b2ea41b5312341cf6aca2283" 117 | dependencies: 118 | babel-core "^6.24.1" 119 | babel-polyfill "^6.23.0" 120 | babel-register "^6.24.1" 121 | babel-runtime "^6.22.0" 122 | commander "^2.8.1" 123 | convert-source-map "^1.1.0" 124 | fs-readdir-recursive "^1.0.0" 125 | glob "^7.0.0" 126 | lodash "^4.2.0" 127 | output-file-sync "^1.1.0" 128 | path-is-absolute "^1.0.0" 129 | slash "^1.0.0" 130 | source-map "^0.5.0" 131 | v8flags "^2.0.10" 132 | optionalDependencies: 133 | chokidar "^1.6.1" 134 | 135 | babel-code-frame@^6.22.0: 136 | version "6.22.0" 137 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 138 | dependencies: 139 | chalk "^1.1.0" 140 | esutils "^2.0.2" 141 | js-tokens "^3.0.0" 142 | 143 | babel-core@^6.24.1: 144 | version "6.25.0" 145 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.25.0.tgz#7dd42b0463c742e9d5296deb3ec67a9322dad729" 146 | dependencies: 147 | babel-code-frame "^6.22.0" 148 | babel-generator "^6.25.0" 149 | babel-helpers "^6.24.1" 150 | babel-messages "^6.23.0" 151 | babel-register "^6.24.1" 152 | babel-runtime "^6.22.0" 153 | babel-template "^6.25.0" 154 | babel-traverse "^6.25.0" 155 | babel-types "^6.25.0" 156 | babylon "^6.17.2" 157 | convert-source-map "^1.1.0" 158 | debug "^2.1.1" 159 | json5 "^0.5.0" 160 | lodash "^4.2.0" 161 | minimatch "^3.0.2" 162 | path-is-absolute "^1.0.0" 163 | private "^0.1.6" 164 | slash "^1.0.0" 165 | source-map "^0.5.0" 166 | 167 | babel-generator@^6.25.0: 168 | version "6.25.0" 169 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.25.0.tgz#33a1af70d5f2890aeb465a4a7793c1df6a9ea9fc" 170 | dependencies: 171 | babel-messages "^6.23.0" 172 | babel-runtime "^6.22.0" 173 | babel-types "^6.25.0" 174 | detect-indent "^4.0.0" 175 | jsesc "^1.3.0" 176 | lodash "^4.2.0" 177 | source-map "^0.5.0" 178 | trim-right "^1.0.1" 179 | 180 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 181 | version "6.24.1" 182 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 183 | dependencies: 184 | babel-helper-explode-assignable-expression "^6.24.1" 185 | babel-runtime "^6.22.0" 186 | babel-types "^6.24.1" 187 | 188 | babel-helper-builder-react-jsx@^6.24.1: 189 | version "6.24.1" 190 | resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.24.1.tgz#0ad7917e33c8d751e646daca4e77cc19377d2cbc" 191 | dependencies: 192 | babel-runtime "^6.22.0" 193 | babel-types "^6.24.1" 194 | esutils "^2.0.0" 195 | 196 | babel-helper-call-delegate@^6.24.1: 197 | version "6.24.1" 198 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 199 | dependencies: 200 | babel-helper-hoist-variables "^6.24.1" 201 | babel-runtime "^6.22.0" 202 | babel-traverse "^6.24.1" 203 | babel-types "^6.24.1" 204 | 205 | babel-helper-define-map@^6.24.1: 206 | version "6.24.1" 207 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.24.1.tgz#7a9747f258d8947d32d515f6aa1c7bd02204a080" 208 | dependencies: 209 | babel-helper-function-name "^6.24.1" 210 | babel-runtime "^6.22.0" 211 | babel-types "^6.24.1" 212 | lodash "^4.2.0" 213 | 214 | babel-helper-explode-assignable-expression@^6.24.1: 215 | version "6.24.1" 216 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 217 | dependencies: 218 | babel-runtime "^6.22.0" 219 | babel-traverse "^6.24.1" 220 | babel-types "^6.24.1" 221 | 222 | babel-helper-function-name@^6.24.1: 223 | version "6.24.1" 224 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 225 | dependencies: 226 | babel-helper-get-function-arity "^6.24.1" 227 | babel-runtime "^6.22.0" 228 | babel-template "^6.24.1" 229 | babel-traverse "^6.24.1" 230 | babel-types "^6.24.1" 231 | 232 | babel-helper-get-function-arity@^6.24.1: 233 | version "6.24.1" 234 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 235 | dependencies: 236 | babel-runtime "^6.22.0" 237 | babel-types "^6.24.1" 238 | 239 | babel-helper-hoist-variables@^6.24.1: 240 | version "6.24.1" 241 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 242 | dependencies: 243 | babel-runtime "^6.22.0" 244 | babel-types "^6.24.1" 245 | 246 | babel-helper-optimise-call-expression@^6.24.1: 247 | version "6.24.1" 248 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 249 | dependencies: 250 | babel-runtime "^6.22.0" 251 | babel-types "^6.24.1" 252 | 253 | babel-helper-regex@^6.24.1: 254 | version "6.24.1" 255 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz#d36e22fab1008d79d88648e32116868128456ce8" 256 | dependencies: 257 | babel-runtime "^6.22.0" 258 | babel-types "^6.24.1" 259 | lodash "^4.2.0" 260 | 261 | babel-helper-remap-async-to-generator@^6.24.1: 262 | version "6.24.1" 263 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 264 | dependencies: 265 | babel-helper-function-name "^6.24.1" 266 | babel-runtime "^6.22.0" 267 | babel-template "^6.24.1" 268 | babel-traverse "^6.24.1" 269 | babel-types "^6.24.1" 270 | 271 | babel-helper-replace-supers@^6.24.1: 272 | version "6.24.1" 273 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 274 | dependencies: 275 | babel-helper-optimise-call-expression "^6.24.1" 276 | babel-messages "^6.23.0" 277 | babel-runtime "^6.22.0" 278 | babel-template "^6.24.1" 279 | babel-traverse "^6.24.1" 280 | babel-types "^6.24.1" 281 | 282 | babel-helpers@^6.24.1: 283 | version "6.24.1" 284 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 285 | dependencies: 286 | babel-runtime "^6.22.0" 287 | babel-template "^6.24.1" 288 | 289 | babel-messages@^6.23.0: 290 | version "6.23.0" 291 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 292 | dependencies: 293 | babel-runtime "^6.22.0" 294 | 295 | babel-plugin-check-es2015-constants@^6.22.0: 296 | version "6.22.0" 297 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 298 | dependencies: 299 | babel-runtime "^6.22.0" 300 | 301 | babel-plugin-dynamic-import-node@^1.0.2: 302 | version "1.0.2" 303 | resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-1.0.2.tgz#adb5bc8f48a89311540395ae9f0cc3ed4b10bb2e" 304 | dependencies: 305 | babel-plugin-syntax-dynamic-import "^6.18.0" 306 | babel-template "^6.24.1" 307 | babel-types "^6.24.1" 308 | 309 | babel-plugin-lodash@^3.2.11: 310 | version "3.2.11" 311 | resolved "https://registry.yarnpkg.com/babel-plugin-lodash/-/babel-plugin-lodash-3.2.11.tgz#21c8fdec9fe1835efaa737873e3902bdd66d5701" 312 | dependencies: 313 | glob "^7.1.1" 314 | lodash "^4.17.2" 315 | 316 | babel-plugin-syntax-async-functions@^6.8.0: 317 | version "6.13.0" 318 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 319 | 320 | babel-plugin-syntax-class-properties@^6.8.0: 321 | version "6.13.0" 322 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" 323 | 324 | babel-plugin-syntax-dynamic-import@^6.18.0: 325 | version "6.18.0" 326 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da" 327 | 328 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 329 | version "6.13.0" 330 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 331 | 332 | babel-plugin-syntax-export-extensions@^6.8.0: 333 | version "6.13.0" 334 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-export-extensions/-/babel-plugin-syntax-export-extensions-6.13.0.tgz#70a1484f0f9089a4e84ad44bac353c95b9b12721" 335 | 336 | babel-plugin-syntax-jsx@^6.8.0: 337 | version "6.18.0" 338 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" 339 | 340 | babel-plugin-syntax-object-rest-spread@^6.8.0: 341 | version "6.13.0" 342 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 343 | 344 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 345 | version "6.22.0" 346 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 347 | 348 | babel-plugin-transform-async-to-generator@^6.22.0: 349 | version "6.24.1" 350 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 351 | dependencies: 352 | babel-helper-remap-async-to-generator "^6.24.1" 353 | babel-plugin-syntax-async-functions "^6.8.0" 354 | babel-runtime "^6.22.0" 355 | 356 | babel-plugin-transform-class-properties@^6.24.1: 357 | version "6.24.1" 358 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac" 359 | dependencies: 360 | babel-helper-function-name "^6.24.1" 361 | babel-plugin-syntax-class-properties "^6.8.0" 362 | babel-runtime "^6.22.0" 363 | babel-template "^6.24.1" 364 | 365 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 366 | version "6.22.0" 367 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 368 | dependencies: 369 | babel-runtime "^6.22.0" 370 | 371 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 372 | version "6.22.0" 373 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 374 | dependencies: 375 | babel-runtime "^6.22.0" 376 | 377 | babel-plugin-transform-es2015-block-scoping@^6.23.0: 378 | version "6.24.1" 379 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.24.1.tgz#76c295dc3a4741b1665adfd3167215dcff32a576" 380 | dependencies: 381 | babel-runtime "^6.22.0" 382 | babel-template "^6.24.1" 383 | babel-traverse "^6.24.1" 384 | babel-types "^6.24.1" 385 | lodash "^4.2.0" 386 | 387 | babel-plugin-transform-es2015-classes@^6.23.0: 388 | version "6.24.1" 389 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 390 | dependencies: 391 | babel-helper-define-map "^6.24.1" 392 | babel-helper-function-name "^6.24.1" 393 | babel-helper-optimise-call-expression "^6.24.1" 394 | babel-helper-replace-supers "^6.24.1" 395 | babel-messages "^6.23.0" 396 | babel-runtime "^6.22.0" 397 | babel-template "^6.24.1" 398 | babel-traverse "^6.24.1" 399 | babel-types "^6.24.1" 400 | 401 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 402 | version "6.24.1" 403 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 404 | dependencies: 405 | babel-runtime "^6.22.0" 406 | babel-template "^6.24.1" 407 | 408 | babel-plugin-transform-es2015-destructuring@^6.23.0: 409 | version "6.23.0" 410 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 411 | dependencies: 412 | babel-runtime "^6.22.0" 413 | 414 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 415 | version "6.24.1" 416 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 417 | dependencies: 418 | babel-runtime "^6.22.0" 419 | babel-types "^6.24.1" 420 | 421 | babel-plugin-transform-es2015-for-of@^6.23.0: 422 | version "6.23.0" 423 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 424 | dependencies: 425 | babel-runtime "^6.22.0" 426 | 427 | babel-plugin-transform-es2015-function-name@^6.22.0: 428 | version "6.24.1" 429 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 430 | dependencies: 431 | babel-helper-function-name "^6.24.1" 432 | babel-runtime "^6.22.0" 433 | babel-types "^6.24.1" 434 | 435 | babel-plugin-transform-es2015-literals@^6.22.0: 436 | version "6.22.0" 437 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 438 | dependencies: 439 | babel-runtime "^6.22.0" 440 | 441 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: 442 | version "6.24.1" 443 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 444 | dependencies: 445 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 446 | babel-runtime "^6.22.0" 447 | babel-template "^6.24.1" 448 | 449 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 450 | version "6.24.1" 451 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz#d3e310b40ef664a36622200097c6d440298f2bfe" 452 | dependencies: 453 | babel-plugin-transform-strict-mode "^6.24.1" 454 | babel-runtime "^6.22.0" 455 | babel-template "^6.24.1" 456 | babel-types "^6.24.1" 457 | 458 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0: 459 | version "6.24.1" 460 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 461 | dependencies: 462 | babel-helper-hoist-variables "^6.24.1" 463 | babel-runtime "^6.22.0" 464 | babel-template "^6.24.1" 465 | 466 | babel-plugin-transform-es2015-modules-umd@^6.23.0: 467 | version "6.24.1" 468 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 469 | dependencies: 470 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 471 | babel-runtime "^6.22.0" 472 | babel-template "^6.24.1" 473 | 474 | babel-plugin-transform-es2015-object-super@^6.22.0: 475 | version "6.24.1" 476 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 477 | dependencies: 478 | babel-helper-replace-supers "^6.24.1" 479 | babel-runtime "^6.22.0" 480 | 481 | babel-plugin-transform-es2015-parameters@^6.23.0: 482 | version "6.24.1" 483 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 484 | dependencies: 485 | babel-helper-call-delegate "^6.24.1" 486 | babel-helper-get-function-arity "^6.24.1" 487 | babel-runtime "^6.22.0" 488 | babel-template "^6.24.1" 489 | babel-traverse "^6.24.1" 490 | babel-types "^6.24.1" 491 | 492 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 493 | version "6.24.1" 494 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 495 | dependencies: 496 | babel-runtime "^6.22.0" 497 | babel-types "^6.24.1" 498 | 499 | babel-plugin-transform-es2015-spread@^6.22.0: 500 | version "6.22.0" 501 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 502 | dependencies: 503 | babel-runtime "^6.22.0" 504 | 505 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 506 | version "6.24.1" 507 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 508 | dependencies: 509 | babel-helper-regex "^6.24.1" 510 | babel-runtime "^6.22.0" 511 | babel-types "^6.24.1" 512 | 513 | babel-plugin-transform-es2015-template-literals@^6.22.0: 514 | version "6.22.0" 515 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 516 | dependencies: 517 | babel-runtime "^6.22.0" 518 | 519 | babel-plugin-transform-es2015-typeof-symbol@^6.23.0: 520 | version "6.23.0" 521 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 522 | dependencies: 523 | babel-runtime "^6.22.0" 524 | 525 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 526 | version "6.24.1" 527 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 528 | dependencies: 529 | babel-helper-regex "^6.24.1" 530 | babel-runtime "^6.22.0" 531 | regexpu-core "^2.0.0" 532 | 533 | babel-plugin-transform-exponentiation-operator@^6.22.0: 534 | version "6.24.1" 535 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 536 | dependencies: 537 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 538 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 539 | babel-runtime "^6.22.0" 540 | 541 | babel-plugin-transform-export-extensions@^6.22.0: 542 | version "6.22.0" 543 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-export-extensions/-/babel-plugin-transform-export-extensions-6.22.0.tgz#53738b47e75e8218589eea946cbbd39109bbe653" 544 | dependencies: 545 | babel-plugin-syntax-export-extensions "^6.8.0" 546 | babel-runtime "^6.22.0" 547 | 548 | babel-plugin-transform-object-rest-spread@^6.23.0: 549 | version "6.23.0" 550 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.23.0.tgz#875d6bc9be761c58a2ae3feee5dc4895d8c7f921" 551 | dependencies: 552 | babel-plugin-syntax-object-rest-spread "^6.8.0" 553 | babel-runtime "^6.22.0" 554 | 555 | babel-plugin-transform-react-jsx-self@^6.22.0: 556 | version "6.22.0" 557 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e" 558 | dependencies: 559 | babel-plugin-syntax-jsx "^6.8.0" 560 | babel-runtime "^6.22.0" 561 | 562 | babel-plugin-transform-react-jsx-source@^6.22.0: 563 | version "6.22.0" 564 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6" 565 | dependencies: 566 | babel-plugin-syntax-jsx "^6.8.0" 567 | babel-runtime "^6.22.0" 568 | 569 | babel-plugin-transform-react-jsx@^6.24.1: 570 | version "6.24.1" 571 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3" 572 | dependencies: 573 | babel-helper-builder-react-jsx "^6.24.1" 574 | babel-plugin-syntax-jsx "^6.8.0" 575 | babel-runtime "^6.22.0" 576 | 577 | babel-plugin-transform-regenerator@^6.22.0: 578 | version "6.24.1" 579 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.24.1.tgz#b8da305ad43c3c99b4848e4fe4037b770d23c418" 580 | dependencies: 581 | regenerator-transform "0.9.11" 582 | 583 | babel-plugin-transform-runtime@^6.23.0: 584 | version "6.23.0" 585 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-runtime/-/babel-plugin-transform-runtime-6.23.0.tgz#88490d446502ea9b8e7efb0fe09ec4d99479b1ee" 586 | dependencies: 587 | babel-runtime "^6.22.0" 588 | 589 | babel-plugin-transform-strict-mode@^6.24.1: 590 | version "6.24.1" 591 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 592 | dependencies: 593 | babel-runtime "^6.22.0" 594 | babel-types "^6.24.1" 595 | 596 | babel-polyfill@^6.23.0: 597 | version "6.23.0" 598 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.23.0.tgz#8364ca62df8eafb830499f699177466c3b03499d" 599 | dependencies: 600 | babel-runtime "^6.22.0" 601 | core-js "^2.4.0" 602 | regenerator-runtime "^0.10.0" 603 | 604 | babel-preset-env@^1.6.0: 605 | version "1.6.0" 606 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.6.0.tgz#2de1c782a780a0a5d605d199c957596da43c44e4" 607 | dependencies: 608 | babel-plugin-check-es2015-constants "^6.22.0" 609 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 610 | babel-plugin-transform-async-to-generator "^6.22.0" 611 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 612 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 613 | babel-plugin-transform-es2015-block-scoping "^6.23.0" 614 | babel-plugin-transform-es2015-classes "^6.23.0" 615 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 616 | babel-plugin-transform-es2015-destructuring "^6.23.0" 617 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 618 | babel-plugin-transform-es2015-for-of "^6.23.0" 619 | babel-plugin-transform-es2015-function-name "^6.22.0" 620 | babel-plugin-transform-es2015-literals "^6.22.0" 621 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 622 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0" 623 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0" 624 | babel-plugin-transform-es2015-modules-umd "^6.23.0" 625 | babel-plugin-transform-es2015-object-super "^6.22.0" 626 | babel-plugin-transform-es2015-parameters "^6.23.0" 627 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 628 | babel-plugin-transform-es2015-spread "^6.22.0" 629 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 630 | babel-plugin-transform-es2015-template-literals "^6.22.0" 631 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0" 632 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 633 | babel-plugin-transform-exponentiation-operator "^6.22.0" 634 | babel-plugin-transform-regenerator "^6.22.0" 635 | browserslist "^2.1.2" 636 | invariant "^2.2.2" 637 | semver "^5.3.0" 638 | 639 | babel-register@^6.24.1, babel-register@^6.7.2: 640 | version "6.24.1" 641 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 642 | dependencies: 643 | babel-core "^6.24.1" 644 | babel-runtime "^6.22.0" 645 | core-js "^2.4.0" 646 | home-or-tmp "^2.0.0" 647 | lodash "^4.2.0" 648 | mkdirp "^0.5.1" 649 | source-map-support "^0.4.2" 650 | 651 | babel-runtime@^6.18.0, babel-runtime@^6.22.0: 652 | version "6.25.0" 653 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.25.0.tgz#33b98eaa5d482bb01a8d1aa6b437ad2b01aec41c" 654 | dependencies: 655 | core-js "^2.4.0" 656 | regenerator-runtime "^0.10.0" 657 | 658 | babel-template@^6.24.1, babel-template@^6.25.0: 659 | version "6.25.0" 660 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.25.0.tgz#665241166b7c2aa4c619d71e192969552b10c071" 661 | dependencies: 662 | babel-runtime "^6.22.0" 663 | babel-traverse "^6.25.0" 664 | babel-types "^6.25.0" 665 | babylon "^6.17.2" 666 | lodash "^4.2.0" 667 | 668 | babel-traverse@^6.24.1, babel-traverse@^6.25.0: 669 | version "6.25.0" 670 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.25.0.tgz#2257497e2fcd19b89edc13c4c91381f9512496f1" 671 | dependencies: 672 | babel-code-frame "^6.22.0" 673 | babel-messages "^6.23.0" 674 | babel-runtime "^6.22.0" 675 | babel-types "^6.25.0" 676 | babylon "^6.17.2" 677 | debug "^2.2.0" 678 | globals "^9.0.0" 679 | invariant "^2.2.0" 680 | lodash "^4.2.0" 681 | 682 | babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.25.0: 683 | version "6.25.0" 684 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.25.0.tgz#70afb248d5660e5d18f811d91c8303b54134a18e" 685 | dependencies: 686 | babel-runtime "^6.22.0" 687 | esutils "^2.0.2" 688 | lodash "^4.2.0" 689 | to-fast-properties "^1.0.1" 690 | 691 | babylon@^6.17.2: 692 | version "6.17.4" 693 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.4.tgz#3e8b7402b88d22c3423e137a1577883b15ff869a" 694 | 695 | balanced-match@^1.0.0: 696 | version "1.0.0" 697 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 698 | 699 | bcrypt-pbkdf@^1.0.0: 700 | version "1.0.1" 701 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 702 | dependencies: 703 | tweetnacl "^0.14.3" 704 | 705 | binary-extensions@^1.0.0: 706 | version "1.9.0" 707 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.9.0.tgz#66506c16ce6f4d6928a5b3cd6a33ca41e941e37b" 708 | 709 | block-stream@*: 710 | version "0.0.9" 711 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 712 | dependencies: 713 | inherits "~2.0.0" 714 | 715 | boom@2.x.x: 716 | version "2.10.1" 717 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 718 | dependencies: 719 | hoek "2.x.x" 720 | 721 | brace-expansion@^1.1.7: 722 | version "1.1.8" 723 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 724 | dependencies: 725 | balanced-match "^1.0.0" 726 | concat-map "0.0.1" 727 | 728 | braces@^1.8.2: 729 | version "1.8.5" 730 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 731 | dependencies: 732 | expand-range "^1.8.1" 733 | preserve "^0.2.0" 734 | repeat-element "^1.1.2" 735 | 736 | browser-stdout@1.3.0: 737 | version "1.3.0" 738 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f" 739 | 740 | browserslist@^2.1.2: 741 | version "2.3.2" 742 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.3.2.tgz#343ff101cce799d5eaf0b742e17d0d21efc2d379" 743 | dependencies: 744 | caniuse-lite "^1.0.30000715" 745 | electron-to-chromium "^1.3.18" 746 | 747 | caniuse-lite@^1.0.30000715: 748 | version "1.0.30000715" 749 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000715.tgz#c327f5e6d907ebcec62cde598c3bf0dd793fb9a0" 750 | 751 | caseless@~0.12.0: 752 | version "0.12.0" 753 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 754 | 755 | chalk@^1.1.0: 756 | version "1.1.3" 757 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 758 | dependencies: 759 | ansi-styles "^2.2.1" 760 | escape-string-regexp "^1.0.2" 761 | has-ansi "^2.0.0" 762 | strip-ansi "^3.0.0" 763 | supports-color "^2.0.0" 764 | 765 | chokidar@^1.6.1: 766 | version "1.7.0" 767 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 768 | dependencies: 769 | anymatch "^1.3.0" 770 | async-each "^1.0.0" 771 | glob-parent "^2.0.0" 772 | inherits "^2.0.1" 773 | is-binary-path "^1.0.0" 774 | is-glob "^2.0.0" 775 | path-is-absolute "^1.0.0" 776 | readdirp "^2.0.0" 777 | optionalDependencies: 778 | fsevents "^1.0.0" 779 | 780 | co@^4.6.0: 781 | version "4.6.0" 782 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 783 | 784 | code-point-at@^1.0.0: 785 | version "1.1.0" 786 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 787 | 788 | combined-stream@^1.0.5, combined-stream@~1.0.5: 789 | version "1.0.5" 790 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 791 | dependencies: 792 | delayed-stream "~1.0.0" 793 | 794 | commander@2.9.0: 795 | version "2.9.0" 796 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 797 | dependencies: 798 | graceful-readlink ">= 1.0.0" 799 | 800 | commander@^2.8.1: 801 | version "2.11.0" 802 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563" 803 | 804 | concat-map@0.0.1: 805 | version "0.0.1" 806 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 807 | 808 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 809 | version "1.1.0" 810 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 811 | 812 | content-type-parser@^1.0.1: 813 | version "1.0.1" 814 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 815 | 816 | convert-source-map@^1.1.0: 817 | version "1.5.0" 818 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 819 | 820 | core-js@^1.0.0: 821 | version "1.2.7" 822 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 823 | 824 | core-js@^2.4.0: 825 | version "2.5.0" 826 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.0.tgz#569c050918be6486b3837552028ae0466b717086" 827 | 828 | core-util-is@1.0.2, core-util-is@~1.0.0: 829 | version "1.0.2" 830 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 831 | 832 | create-react-class@^15.6.0: 833 | version "15.6.0" 834 | resolved "https://registry.yarnpkg.com/create-react-class/-/create-react-class-15.6.0.tgz#ab448497c26566e1e29413e883207d57cfe7bed4" 835 | dependencies: 836 | fbjs "^0.8.9" 837 | loose-envify "^1.3.1" 838 | object-assign "^4.1.1" 839 | 840 | cryptiles@2.x.x: 841 | version "2.0.5" 842 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 843 | dependencies: 844 | boom "2.x.x" 845 | 846 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 847 | version "0.3.2" 848 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 849 | 850 | "cssstyle@>= 0.2.37 < 0.3.0": 851 | version "0.2.37" 852 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 853 | dependencies: 854 | cssom "0.3.x" 855 | 856 | dashdash@^1.12.0: 857 | version "1.14.1" 858 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 859 | dependencies: 860 | assert-plus "^1.0.0" 861 | 862 | debug@2.6.8, debug@^2.1.1, debug@^2.2.0: 863 | version "2.6.8" 864 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 865 | dependencies: 866 | ms "2.0.0" 867 | 868 | deep-extend@~0.4.0: 869 | version "0.4.2" 870 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 871 | 872 | deep-is@~0.1.3: 873 | version "0.1.3" 874 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 875 | 876 | define-properties@^1.1.2, define-properties@~1.1.2: 877 | version "1.1.2" 878 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 879 | dependencies: 880 | foreach "^2.0.5" 881 | object-keys "^1.0.8" 882 | 883 | delayed-stream@~1.0.0: 884 | version "1.0.0" 885 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 886 | 887 | delegates@^1.0.0: 888 | version "1.0.0" 889 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 890 | 891 | detect-indent@^4.0.0: 892 | version "4.0.0" 893 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 894 | dependencies: 895 | repeating "^2.0.0" 896 | 897 | diff@3.2.0: 898 | version "3.2.0" 899 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 900 | 901 | ecc-jsbn@~0.1.1: 902 | version "0.1.1" 903 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 904 | dependencies: 905 | jsbn "~0.1.0" 906 | 907 | electron-to-chromium@^1.3.18: 908 | version "1.3.18" 909 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.18.tgz#3dcc99da3e6b665f6abbc71c28ad51a2cd731a9c" 910 | 911 | encoding@^0.1.11: 912 | version "0.1.12" 913 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 914 | dependencies: 915 | iconv-lite "~0.4.13" 916 | 917 | es-abstract@^1.6.1: 918 | version "1.8.0" 919 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.8.0.tgz#3b00385e85729932beffa9163bbea1234e932914" 920 | dependencies: 921 | es-to-primitive "^1.1.1" 922 | function-bind "^1.1.0" 923 | has "^1.0.1" 924 | is-callable "^1.1.3" 925 | is-regex "^1.0.4" 926 | 927 | es-to-primitive@^1.1.1: 928 | version "1.1.1" 929 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 930 | dependencies: 931 | is-callable "^1.1.1" 932 | is-date-object "^1.0.1" 933 | is-symbol "^1.0.1" 934 | 935 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2: 936 | version "1.0.5" 937 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 938 | 939 | escodegen@^1.6.1: 940 | version "1.8.1" 941 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 942 | dependencies: 943 | esprima "^2.7.1" 944 | estraverse "^1.9.1" 945 | esutils "^2.0.2" 946 | optionator "^0.8.1" 947 | optionalDependencies: 948 | source-map "~0.2.0" 949 | 950 | esprima@^2.7.1: 951 | version "2.7.3" 952 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 953 | 954 | estraverse@^1.9.1: 955 | version "1.9.3" 956 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 957 | 958 | esutils@^2.0.0, esutils@^2.0.2: 959 | version "2.0.2" 960 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 961 | 962 | expand-brackets@^0.1.4: 963 | version "0.1.5" 964 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 965 | dependencies: 966 | is-posix-bracket "^0.1.0" 967 | 968 | expand-range@^1.8.1: 969 | version "1.8.2" 970 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 971 | dependencies: 972 | fill-range "^2.1.0" 973 | 974 | expect@^1.16.0: 975 | version "1.20.2" 976 | resolved "https://registry.yarnpkg.com/expect/-/expect-1.20.2.tgz#d458fe4c56004036bae3232416a3f6361f04f965" 977 | dependencies: 978 | define-properties "~1.1.2" 979 | has "^1.0.1" 980 | is-equal "^1.5.1" 981 | is-regex "^1.0.3" 982 | object-inspect "^1.1.0" 983 | object-keys "^1.0.9" 984 | tmatch "^2.0.1" 985 | 986 | extend@~3.0.0: 987 | version "3.0.1" 988 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 989 | 990 | extglob@^0.3.1: 991 | version "0.3.2" 992 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 993 | dependencies: 994 | is-extglob "^1.0.0" 995 | 996 | extsprintf@1.3.0, extsprintf@^1.2.0: 997 | version "1.3.0" 998 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 999 | 1000 | fast-levenshtein@~2.0.4: 1001 | version "2.0.6" 1002 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1003 | 1004 | fbjs@^0.8.9: 1005 | version "0.8.14" 1006 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.14.tgz#d1dbe2be254c35a91e09f31f9cd50a40b2a0ed1c" 1007 | dependencies: 1008 | core-js "^1.0.0" 1009 | isomorphic-fetch "^2.1.1" 1010 | loose-envify "^1.0.0" 1011 | object-assign "^4.1.0" 1012 | promise "^7.1.1" 1013 | setimmediate "^1.0.5" 1014 | ua-parser-js "^0.7.9" 1015 | 1016 | filename-regex@^2.0.0: 1017 | version "2.0.1" 1018 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1019 | 1020 | fill-range@^2.1.0: 1021 | version "2.2.3" 1022 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1023 | dependencies: 1024 | is-number "^2.1.0" 1025 | isobject "^2.0.0" 1026 | randomatic "^1.1.3" 1027 | repeat-element "^1.1.2" 1028 | repeat-string "^1.5.2" 1029 | 1030 | for-in@^1.0.1: 1031 | version "1.0.2" 1032 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1033 | 1034 | for-own@^0.1.4: 1035 | version "0.1.5" 1036 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1037 | dependencies: 1038 | for-in "^1.0.1" 1039 | 1040 | foreach@^2.0.5: 1041 | version "2.0.5" 1042 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1043 | 1044 | forever-agent@~0.6.1: 1045 | version "0.6.1" 1046 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1047 | 1048 | form-data@~2.1.1: 1049 | version "2.1.4" 1050 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1051 | dependencies: 1052 | asynckit "^0.4.0" 1053 | combined-stream "^1.0.5" 1054 | mime-types "^2.1.12" 1055 | 1056 | fs-readdir-recursive@^1.0.0: 1057 | version "1.0.0" 1058 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 1059 | 1060 | fs.realpath@^1.0.0: 1061 | version "1.0.0" 1062 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1063 | 1064 | fsevents@^1.0.0: 1065 | version "1.1.2" 1066 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4" 1067 | dependencies: 1068 | nan "^2.3.0" 1069 | node-pre-gyp "^0.6.36" 1070 | 1071 | fstream-ignore@^1.0.5: 1072 | version "1.0.5" 1073 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1074 | dependencies: 1075 | fstream "^1.0.0" 1076 | inherits "2" 1077 | minimatch "^3.0.0" 1078 | 1079 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1080 | version "1.0.11" 1081 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1082 | dependencies: 1083 | graceful-fs "^4.1.2" 1084 | inherits "~2.0.0" 1085 | mkdirp ">=0.5 0" 1086 | rimraf "2" 1087 | 1088 | function-bind@^1.0.2, function-bind@^1.1.0: 1089 | version "1.1.0" 1090 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 1091 | 1092 | gauge@~2.7.3: 1093 | version "2.7.4" 1094 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1095 | dependencies: 1096 | aproba "^1.0.3" 1097 | console-control-strings "^1.0.0" 1098 | has-unicode "^2.0.0" 1099 | object-assign "^4.1.0" 1100 | signal-exit "^3.0.0" 1101 | string-width "^1.0.1" 1102 | strip-ansi "^3.0.1" 1103 | wide-align "^1.1.0" 1104 | 1105 | getpass@^0.1.1: 1106 | version "0.1.7" 1107 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1108 | dependencies: 1109 | assert-plus "^1.0.0" 1110 | 1111 | glob-base@^0.3.0: 1112 | version "0.3.0" 1113 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1114 | dependencies: 1115 | glob-parent "^2.0.0" 1116 | is-glob "^2.0.0" 1117 | 1118 | glob-parent@^2.0.0: 1119 | version "2.0.0" 1120 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1121 | dependencies: 1122 | is-glob "^2.0.0" 1123 | 1124 | glob@7.1.1: 1125 | version "7.1.1" 1126 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1127 | dependencies: 1128 | fs.realpath "^1.0.0" 1129 | inflight "^1.0.4" 1130 | inherits "2" 1131 | minimatch "^3.0.2" 1132 | once "^1.3.0" 1133 | path-is-absolute "^1.0.0" 1134 | 1135 | glob@^7.0.0, glob@^7.0.5, glob@^7.1.1: 1136 | version "7.1.2" 1137 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1138 | dependencies: 1139 | fs.realpath "^1.0.0" 1140 | inflight "^1.0.4" 1141 | inherits "2" 1142 | minimatch "^3.0.4" 1143 | once "^1.3.0" 1144 | path-is-absolute "^1.0.0" 1145 | 1146 | globals@^9.0.0: 1147 | version "9.18.0" 1148 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1149 | 1150 | graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1151 | version "4.1.11" 1152 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1153 | 1154 | "graceful-readlink@>= 1.0.0": 1155 | version "1.0.1" 1156 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1157 | 1158 | growl@1.9.2: 1159 | version "1.9.2" 1160 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f" 1161 | 1162 | har-schema@^1.0.5: 1163 | version "1.0.5" 1164 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1165 | 1166 | har-validator@~4.2.1: 1167 | version "4.2.1" 1168 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1169 | dependencies: 1170 | ajv "^4.9.1" 1171 | har-schema "^1.0.5" 1172 | 1173 | has-ansi@^2.0.0: 1174 | version "2.0.0" 1175 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1176 | dependencies: 1177 | ansi-regex "^2.0.0" 1178 | 1179 | has-flag@^1.0.0: 1180 | version "1.0.0" 1181 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1182 | 1183 | has-unicode@^2.0.0: 1184 | version "2.0.1" 1185 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1186 | 1187 | has@^1.0.1: 1188 | version "1.0.1" 1189 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1190 | dependencies: 1191 | function-bind "^1.0.2" 1192 | 1193 | hawk@~3.1.3: 1194 | version "3.1.3" 1195 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1196 | dependencies: 1197 | boom "2.x.x" 1198 | cryptiles "2.x.x" 1199 | hoek "2.x.x" 1200 | sntp "1.x.x" 1201 | 1202 | hoek@2.x.x: 1203 | version "2.16.3" 1204 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1205 | 1206 | hoist-non-react-statics@^2.2.1, hoist-non-react-statics@^2.2.2: 1207 | version "2.2.2" 1208 | resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-2.2.2.tgz#c0eca5a7d5a28c5ada3107eb763b01da6bfa81fb" 1209 | 1210 | home-or-tmp@^2.0.0: 1211 | version "2.0.0" 1212 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1213 | dependencies: 1214 | os-homedir "^1.0.0" 1215 | os-tmpdir "^1.0.1" 1216 | 1217 | html-encoding-sniffer@^1.0.1: 1218 | version "1.0.1" 1219 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 1220 | dependencies: 1221 | whatwg-encoding "^1.0.1" 1222 | 1223 | http-signature@~1.1.0: 1224 | version "1.1.1" 1225 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1226 | dependencies: 1227 | assert-plus "^0.2.0" 1228 | jsprim "^1.2.2" 1229 | sshpk "^1.7.0" 1230 | 1231 | iconv-lite@0.4.13: 1232 | version "0.4.13" 1233 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 1234 | 1235 | iconv-lite@~0.4.13: 1236 | version "0.4.18" 1237 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.18.tgz#23d8656b16aae6742ac29732ea8f0336a4789cf2" 1238 | 1239 | inflight@^1.0.4: 1240 | version "1.0.6" 1241 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1242 | dependencies: 1243 | once "^1.3.0" 1244 | wrappy "1" 1245 | 1246 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.3: 1247 | version "2.0.3" 1248 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1249 | 1250 | ini@~1.3.0: 1251 | version "1.3.4" 1252 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1253 | 1254 | invariant@^2.0.0, invariant@^2.2.0, invariant@^2.2.2: 1255 | version "2.2.2" 1256 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1257 | dependencies: 1258 | loose-envify "^1.0.0" 1259 | 1260 | is-arrow-function@^2.0.3: 1261 | version "2.0.3" 1262 | resolved "https://registry.yarnpkg.com/is-arrow-function/-/is-arrow-function-2.0.3.tgz#29be2c2d8d9450852b8bbafb635ba7b8d8e87ec2" 1263 | dependencies: 1264 | is-callable "^1.0.4" 1265 | 1266 | is-binary-path@^1.0.0: 1267 | version "1.0.1" 1268 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1269 | dependencies: 1270 | binary-extensions "^1.0.0" 1271 | 1272 | is-boolean-object@^1.0.0: 1273 | version "1.0.0" 1274 | resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.0.0.tgz#98f8b28030684219a95f375cfbd88ce3405dff93" 1275 | 1276 | is-buffer@^1.1.5: 1277 | version "1.1.5" 1278 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1279 | 1280 | is-callable@^1.0.4, is-callable@^1.1.1, is-callable@^1.1.3: 1281 | version "1.1.3" 1282 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 1283 | 1284 | is-date-object@^1.0.1: 1285 | version "1.0.1" 1286 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 1287 | 1288 | is-dotfile@^1.0.0: 1289 | version "1.0.3" 1290 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1291 | 1292 | is-equal-shallow@^0.1.3: 1293 | version "0.1.3" 1294 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1295 | dependencies: 1296 | is-primitive "^2.0.0" 1297 | 1298 | is-equal@^1.5.1: 1299 | version "1.5.5" 1300 | resolved "https://registry.yarnpkg.com/is-equal/-/is-equal-1.5.5.tgz#5e85f1957e052883247feb386965a3bba15fbb3d" 1301 | dependencies: 1302 | has "^1.0.1" 1303 | is-arrow-function "^2.0.3" 1304 | is-boolean-object "^1.0.0" 1305 | is-callable "^1.1.3" 1306 | is-date-object "^1.0.1" 1307 | is-generator-function "^1.0.6" 1308 | is-number-object "^1.0.3" 1309 | is-regex "^1.0.3" 1310 | is-string "^1.0.4" 1311 | is-symbol "^1.0.1" 1312 | object.entries "^1.0.4" 1313 | 1314 | is-extendable@^0.1.1: 1315 | version "0.1.1" 1316 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1317 | 1318 | is-extglob@^1.0.0: 1319 | version "1.0.0" 1320 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1321 | 1322 | is-finite@^1.0.0: 1323 | version "1.0.2" 1324 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1325 | dependencies: 1326 | number-is-nan "^1.0.0" 1327 | 1328 | is-fullwidth-code-point@^1.0.0: 1329 | version "1.0.0" 1330 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1331 | dependencies: 1332 | number-is-nan "^1.0.0" 1333 | 1334 | is-generator-function@^1.0.6: 1335 | version "1.0.6" 1336 | resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.6.tgz#9e71653cd15fff341c79c4151460a131d31e9fc4" 1337 | 1338 | is-glob@^2.0.0, is-glob@^2.0.1: 1339 | version "2.0.1" 1340 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1341 | dependencies: 1342 | is-extglob "^1.0.0" 1343 | 1344 | is-number-object@^1.0.3: 1345 | version "1.0.3" 1346 | resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.3.tgz#f265ab89a9f445034ef6aff15a8f00b00f551799" 1347 | 1348 | is-number@^2.1.0: 1349 | version "2.1.0" 1350 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1351 | dependencies: 1352 | kind-of "^3.0.2" 1353 | 1354 | is-number@^3.0.0: 1355 | version "3.0.0" 1356 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1357 | dependencies: 1358 | kind-of "^3.0.2" 1359 | 1360 | is-posix-bracket@^0.1.0: 1361 | version "0.1.1" 1362 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1363 | 1364 | is-primitive@^2.0.0: 1365 | version "2.0.0" 1366 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1367 | 1368 | is-regex@^1.0.3, is-regex@^1.0.4: 1369 | version "1.0.4" 1370 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 1371 | dependencies: 1372 | has "^1.0.1" 1373 | 1374 | is-stream@^1.0.1: 1375 | version "1.1.0" 1376 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1377 | 1378 | is-string@^1.0.4: 1379 | version "1.0.4" 1380 | resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.4.tgz#cc3a9b69857d621e963725a24caeec873b826e64" 1381 | 1382 | is-symbol@^1.0.1: 1383 | version "1.0.1" 1384 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 1385 | 1386 | is-typedarray@~1.0.0: 1387 | version "1.0.0" 1388 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1389 | 1390 | isarray@1.0.0, isarray@~1.0.0: 1391 | version "1.0.0" 1392 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1393 | 1394 | isobject@^2.0.0: 1395 | version "2.1.0" 1396 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1397 | dependencies: 1398 | isarray "1.0.0" 1399 | 1400 | isomorphic-fetch@^2.1.1: 1401 | version "2.2.1" 1402 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" 1403 | dependencies: 1404 | node-fetch "^1.0.1" 1405 | whatwg-fetch ">=0.10.0" 1406 | 1407 | isstream@~0.1.2: 1408 | version "0.1.2" 1409 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1410 | 1411 | js-tokens@^3.0.0: 1412 | version "3.0.2" 1413 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1414 | 1415 | jsbn@~0.1.0: 1416 | version "0.1.1" 1417 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1418 | 1419 | jsdom@^11.1.0: 1420 | version "11.1.0" 1421 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-11.1.0.tgz#6c48d7a48ffc5c300283c312904d15da8360509b" 1422 | dependencies: 1423 | abab "^1.0.3" 1424 | acorn "^4.0.4" 1425 | acorn-globals "^3.1.0" 1426 | array-equal "^1.0.0" 1427 | content-type-parser "^1.0.1" 1428 | cssom ">= 0.3.2 < 0.4.0" 1429 | cssstyle ">= 0.2.37 < 0.3.0" 1430 | escodegen "^1.6.1" 1431 | html-encoding-sniffer "^1.0.1" 1432 | nwmatcher "^1.4.1" 1433 | parse5 "^3.0.2" 1434 | pn "^1.0.0" 1435 | request "^2.79.0" 1436 | request-promise-native "^1.0.3" 1437 | sax "^1.2.1" 1438 | symbol-tree "^3.2.1" 1439 | tough-cookie "^2.3.2" 1440 | webidl-conversions "^4.0.0" 1441 | whatwg-encoding "^1.0.1" 1442 | whatwg-url "^6.1.0" 1443 | xml-name-validator "^2.0.1" 1444 | 1445 | jsesc@^1.3.0: 1446 | version "1.3.0" 1447 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1448 | 1449 | jsesc@~0.5.0: 1450 | version "0.5.0" 1451 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1452 | 1453 | json-schema@0.2.3: 1454 | version "0.2.3" 1455 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1456 | 1457 | json-stable-stringify@^1.0.1: 1458 | version "1.0.1" 1459 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1460 | dependencies: 1461 | jsonify "~0.0.0" 1462 | 1463 | json-stringify-safe@~5.0.1: 1464 | version "5.0.1" 1465 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1466 | 1467 | json3@3.3.2: 1468 | version "3.3.2" 1469 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" 1470 | 1471 | json5@^0.5.0: 1472 | version "0.5.1" 1473 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1474 | 1475 | jsonify@~0.0.0: 1476 | version "0.0.0" 1477 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1478 | 1479 | jsprim@^1.2.2: 1480 | version "1.4.1" 1481 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1482 | dependencies: 1483 | assert-plus "1.0.0" 1484 | extsprintf "1.3.0" 1485 | json-schema "0.2.3" 1486 | verror "1.10.0" 1487 | 1488 | kind-of@^3.0.2: 1489 | version "3.2.2" 1490 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1491 | dependencies: 1492 | is-buffer "^1.1.5" 1493 | 1494 | kind-of@^4.0.0: 1495 | version "4.0.0" 1496 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1497 | dependencies: 1498 | is-buffer "^1.1.5" 1499 | 1500 | levn@~0.3.0: 1501 | version "0.3.0" 1502 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1503 | dependencies: 1504 | prelude-ls "~1.1.2" 1505 | type-check "~0.3.2" 1506 | 1507 | lodash-es@^4.2.0, lodash-es@^4.2.1: 1508 | version "4.17.4" 1509 | resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.4.tgz#dcc1d7552e150a0640073ba9cb31d70f032950e7" 1510 | 1511 | lodash._baseassign@^3.0.0: 1512 | version "3.2.0" 1513 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 1514 | dependencies: 1515 | lodash._basecopy "^3.0.0" 1516 | lodash.keys "^3.0.0" 1517 | 1518 | lodash._basecopy@^3.0.0: 1519 | version "3.0.1" 1520 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 1521 | 1522 | lodash._basecreate@^3.0.0: 1523 | version "3.0.3" 1524 | resolved "https://registry.yarnpkg.com/lodash._basecreate/-/lodash._basecreate-3.0.3.tgz#1bc661614daa7fc311b7d03bf16806a0213cf821" 1525 | 1526 | lodash._getnative@^3.0.0: 1527 | version "3.9.1" 1528 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 1529 | 1530 | lodash._isiterateecall@^3.0.0: 1531 | version "3.0.9" 1532 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 1533 | 1534 | lodash.create@3.1.1: 1535 | version "3.1.1" 1536 | resolved "https://registry.yarnpkg.com/lodash.create/-/lodash.create-3.1.1.tgz#d7f2849f0dbda7e04682bb8cd72ab022461debe7" 1537 | dependencies: 1538 | lodash._baseassign "^3.0.0" 1539 | lodash._basecreate "^3.0.0" 1540 | lodash._isiterateecall "^3.0.0" 1541 | 1542 | lodash.isarguments@^3.0.0: 1543 | version "3.1.0" 1544 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 1545 | 1546 | lodash.isarray@^3.0.0: 1547 | version "3.0.4" 1548 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 1549 | 1550 | lodash.keys@^3.0.0: 1551 | version "3.1.2" 1552 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 1553 | dependencies: 1554 | lodash._getnative "^3.0.0" 1555 | lodash.isarguments "^3.0.0" 1556 | lodash.isarray "^3.0.0" 1557 | 1558 | lodash.sortby@^4.7.0: 1559 | version "4.7.0" 1560 | resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" 1561 | 1562 | lodash@^4.13.1, lodash@^4.17.2, lodash@^4.2.0, lodash@^4.2.1, lodash@^4.6.0: 1563 | version "4.17.4" 1564 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1565 | 1566 | loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.3.1: 1567 | version "1.3.1" 1568 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1569 | dependencies: 1570 | js-tokens "^3.0.0" 1571 | 1572 | micromatch@^2.1.5: 1573 | version "2.3.11" 1574 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1575 | dependencies: 1576 | arr-diff "^2.0.0" 1577 | array-unique "^0.2.1" 1578 | braces "^1.8.2" 1579 | expand-brackets "^0.1.4" 1580 | extglob "^0.3.1" 1581 | filename-regex "^2.0.0" 1582 | is-extglob "^1.0.0" 1583 | is-glob "^2.0.1" 1584 | kind-of "^3.0.2" 1585 | normalize-path "^2.0.1" 1586 | object.omit "^2.0.0" 1587 | parse-glob "^3.0.4" 1588 | regex-cache "^0.4.2" 1589 | 1590 | mime-db@~1.29.0: 1591 | version "1.29.0" 1592 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.29.0.tgz#48d26d235589651704ac5916ca06001914266878" 1593 | 1594 | mime-types@^2.1.12, mime-types@~2.1.7: 1595 | version "2.1.16" 1596 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.16.tgz#2b858a52e5ecd516db897ac2be87487830698e23" 1597 | dependencies: 1598 | mime-db "~1.29.0" 1599 | 1600 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 1601 | version "3.0.4" 1602 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1603 | dependencies: 1604 | brace-expansion "^1.1.7" 1605 | 1606 | minimist@0.0.8: 1607 | version "0.0.8" 1608 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1609 | 1610 | minimist@^1.2.0: 1611 | version "1.2.0" 1612 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1613 | 1614 | mkdirp@0.5.1, "mkdirp@>=0.5 0", mkdirp@^0.5.1: 1615 | version "0.5.1" 1616 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1617 | dependencies: 1618 | minimist "0.0.8" 1619 | 1620 | mocha@^3.5.0: 1621 | version "3.5.0" 1622 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-3.5.0.tgz#1328567d2717f997030f8006234bce9b8cd72465" 1623 | dependencies: 1624 | browser-stdout "1.3.0" 1625 | commander "2.9.0" 1626 | debug "2.6.8" 1627 | diff "3.2.0" 1628 | escape-string-regexp "1.0.5" 1629 | glob "7.1.1" 1630 | growl "1.9.2" 1631 | json3 "3.3.2" 1632 | lodash.create "3.1.1" 1633 | mkdirp "0.5.1" 1634 | supports-color "3.1.2" 1635 | 1636 | ms@2.0.0: 1637 | version "2.0.0" 1638 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1639 | 1640 | nan@^2.3.0: 1641 | version "2.6.2" 1642 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45" 1643 | 1644 | node-fetch@^1.0.1: 1645 | version "1.7.2" 1646 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.2.tgz#c54e9aac57e432875233525f3c891c4159ffefd7" 1647 | dependencies: 1648 | encoding "^0.1.11" 1649 | is-stream "^1.0.1" 1650 | 1651 | node-pre-gyp@^0.6.36: 1652 | version "0.6.36" 1653 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz#db604112cb74e0d477554e9b505b17abddfab786" 1654 | dependencies: 1655 | mkdirp "^0.5.1" 1656 | nopt "^4.0.1" 1657 | npmlog "^4.0.2" 1658 | rc "^1.1.7" 1659 | request "^2.81.0" 1660 | rimraf "^2.6.1" 1661 | semver "^5.3.0" 1662 | tar "^2.2.1" 1663 | tar-pack "^3.4.0" 1664 | 1665 | nopt@^4.0.1: 1666 | version "4.0.1" 1667 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1668 | dependencies: 1669 | abbrev "1" 1670 | osenv "^0.1.4" 1671 | 1672 | normalize-path@^2.0.0, normalize-path@^2.0.1: 1673 | version "2.1.1" 1674 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1675 | dependencies: 1676 | remove-trailing-separator "^1.0.1" 1677 | 1678 | npmlog@^4.0.2: 1679 | version "4.1.2" 1680 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 1681 | dependencies: 1682 | are-we-there-yet "~1.1.2" 1683 | console-control-strings "~1.1.0" 1684 | gauge "~2.7.3" 1685 | set-blocking "~2.0.0" 1686 | 1687 | number-is-nan@^1.0.0: 1688 | version "1.0.1" 1689 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1690 | 1691 | nwmatcher@^1.4.1: 1692 | version "1.4.1" 1693 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.1.tgz#7ae9b07b0ea804db7e25f05cb5fe4097d4e4949f" 1694 | 1695 | oauth-sign@~0.8.1: 1696 | version "0.8.2" 1697 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1698 | 1699 | object-assign@^4.1.0, object-assign@^4.1.1: 1700 | version "4.1.1" 1701 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1702 | 1703 | object-inspect@^1.1.0: 1704 | version "1.3.0" 1705 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.3.0.tgz#5b1eb8e6742e2ee83342a637034d844928ba2f6d" 1706 | 1707 | object-keys@^1.0.8, object-keys@^1.0.9: 1708 | version "1.0.11" 1709 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 1710 | 1711 | object.entries@^1.0.4: 1712 | version "1.0.4" 1713 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.0.4.tgz#1bf9a4dd2288f5b33f3a993d257661f05d161a5f" 1714 | dependencies: 1715 | define-properties "^1.1.2" 1716 | es-abstract "^1.6.1" 1717 | function-bind "^1.1.0" 1718 | has "^1.0.1" 1719 | 1720 | object.omit@^2.0.0: 1721 | version "2.0.1" 1722 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1723 | dependencies: 1724 | for-own "^0.1.4" 1725 | is-extendable "^0.1.1" 1726 | 1727 | once@^1.3.0, once@^1.3.3: 1728 | version "1.4.0" 1729 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1730 | dependencies: 1731 | wrappy "1" 1732 | 1733 | optionator@^0.8.1: 1734 | version "0.8.2" 1735 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 1736 | dependencies: 1737 | deep-is "~0.1.3" 1738 | fast-levenshtein "~2.0.4" 1739 | levn "~0.3.0" 1740 | prelude-ls "~1.1.2" 1741 | type-check "~0.3.2" 1742 | wordwrap "~1.0.0" 1743 | 1744 | os-homedir@^1.0.0: 1745 | version "1.0.2" 1746 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1747 | 1748 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 1749 | version "1.0.2" 1750 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1751 | 1752 | osenv@^0.1.4: 1753 | version "0.1.4" 1754 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 1755 | dependencies: 1756 | os-homedir "^1.0.0" 1757 | os-tmpdir "^1.0.0" 1758 | 1759 | output-file-sync@^1.1.0: 1760 | version "1.1.2" 1761 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 1762 | dependencies: 1763 | graceful-fs "^4.1.4" 1764 | mkdirp "^0.5.1" 1765 | object-assign "^4.1.0" 1766 | 1767 | parse-glob@^3.0.4: 1768 | version "3.0.4" 1769 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1770 | dependencies: 1771 | glob-base "^0.3.0" 1772 | is-dotfile "^1.0.0" 1773 | is-extglob "^1.0.0" 1774 | is-glob "^2.0.0" 1775 | 1776 | parse5@^3.0.2: 1777 | version "3.0.2" 1778 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-3.0.2.tgz#05eff57f0ef4577fb144a79f8b9a967a6cc44510" 1779 | dependencies: 1780 | "@types/node" "^6.0.46" 1781 | 1782 | path-is-absolute@^1.0.0: 1783 | version "1.0.1" 1784 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1785 | 1786 | performance-now@^0.2.0: 1787 | version "0.2.0" 1788 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 1789 | 1790 | pn@^1.0.0: 1791 | version "1.0.0" 1792 | resolved "https://registry.yarnpkg.com/pn/-/pn-1.0.0.tgz#1cf5a30b0d806cd18f88fc41a6b5d4ad615b3ba9" 1793 | 1794 | preact-shallow-compare@^1.0.1: 1795 | version "1.2.0" 1796 | resolved "https://registry.yarnpkg.com/preact-shallow-compare/-/preact-shallow-compare-1.2.0.tgz#e4df4e23d2bf2b351a014ca3dfcd71d19c00e663" 1797 | 1798 | prelude-ls@~1.1.2: 1799 | version "1.1.2" 1800 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 1801 | 1802 | preserve@^0.2.0: 1803 | version "0.2.0" 1804 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1805 | 1806 | private@^0.1.6: 1807 | version "0.1.7" 1808 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 1809 | 1810 | process-nextick-args@~1.0.6: 1811 | version "1.0.7" 1812 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1813 | 1814 | promise@^7.1.1: 1815 | version "7.3.1" 1816 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" 1817 | dependencies: 1818 | asap "~2.0.3" 1819 | 1820 | prop-types@^15.5.10: 1821 | version "15.5.10" 1822 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.5.10.tgz#2797dfc3126182e3a95e3dfbb2e893ddd7456154" 1823 | dependencies: 1824 | fbjs "^0.8.9" 1825 | loose-envify "^1.3.1" 1826 | 1827 | punycode@^1.4.1: 1828 | version "1.4.1" 1829 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1830 | 1831 | qs@~6.4.0: 1832 | version "6.4.0" 1833 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 1834 | 1835 | randomatic@^1.1.3: 1836 | version "1.1.7" 1837 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 1838 | dependencies: 1839 | is-number "^3.0.0" 1840 | kind-of "^4.0.0" 1841 | 1842 | rc@^1.1.7: 1843 | version "1.2.1" 1844 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 1845 | dependencies: 1846 | deep-extend "~0.4.0" 1847 | ini "~1.3.0" 1848 | minimist "^1.2.0" 1849 | strip-json-comments "~2.0.1" 1850 | 1851 | react-redux@^5.0.6: 1852 | version "5.0.6" 1853 | resolved "https://registry.yarnpkg.com/react-redux/-/react-redux-5.0.6.tgz#23ed3a4f986359d68b5212eaaa681e60d6574946" 1854 | dependencies: 1855 | hoist-non-react-statics "^2.2.1" 1856 | invariant "^2.0.0" 1857 | lodash "^4.2.0" 1858 | lodash-es "^4.2.0" 1859 | loose-envify "^1.1.0" 1860 | prop-types "^15.5.10" 1861 | 1862 | react@^15.6.1: 1863 | version "15.6.1" 1864 | resolved "https://registry.yarnpkg.com/react/-/react-15.6.1.tgz#baa8434ec6780bde997cdc380b79cd33b96393df" 1865 | dependencies: 1866 | create-react-class "^15.6.0" 1867 | fbjs "^0.8.9" 1868 | loose-envify "^1.1.0" 1869 | object-assign "^4.1.0" 1870 | prop-types "^15.5.10" 1871 | 1872 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4: 1873 | version "2.3.3" 1874 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 1875 | dependencies: 1876 | core-util-is "~1.0.0" 1877 | inherits "~2.0.3" 1878 | isarray "~1.0.0" 1879 | process-nextick-args "~1.0.6" 1880 | safe-buffer "~5.1.1" 1881 | string_decoder "~1.0.3" 1882 | util-deprecate "~1.0.1" 1883 | 1884 | readdirp@^2.0.0: 1885 | version "2.1.0" 1886 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 1887 | dependencies: 1888 | graceful-fs "^4.1.2" 1889 | minimatch "^3.0.2" 1890 | readable-stream "^2.0.2" 1891 | set-immediate-shim "^1.0.1" 1892 | 1893 | redux@^3.3.1: 1894 | version "3.7.2" 1895 | resolved "https://registry.yarnpkg.com/redux/-/redux-3.7.2.tgz#06b73123215901d25d065be342eb026bc1c8537b" 1896 | dependencies: 1897 | lodash "^4.2.1" 1898 | lodash-es "^4.2.1" 1899 | loose-envify "^1.1.0" 1900 | symbol-observable "^1.0.3" 1901 | 1902 | regenerate@^1.2.1: 1903 | version "1.3.2" 1904 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 1905 | 1906 | regenerator-runtime@^0.10.0: 1907 | version "0.10.5" 1908 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 1909 | 1910 | regenerator-transform@0.9.11: 1911 | version "0.9.11" 1912 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.11.tgz#3a7d067520cb7b7176769eb5ff868691befe1283" 1913 | dependencies: 1914 | babel-runtime "^6.18.0" 1915 | babel-types "^6.19.0" 1916 | private "^0.1.6" 1917 | 1918 | regex-cache@^0.4.2: 1919 | version "0.4.3" 1920 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 1921 | dependencies: 1922 | is-equal-shallow "^0.1.3" 1923 | is-primitive "^2.0.0" 1924 | 1925 | regexpu-core@^2.0.0: 1926 | version "2.0.0" 1927 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 1928 | dependencies: 1929 | regenerate "^1.2.1" 1930 | regjsgen "^0.2.0" 1931 | regjsparser "^0.1.4" 1932 | 1933 | regjsgen@^0.2.0: 1934 | version "0.2.0" 1935 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 1936 | 1937 | regjsparser@^0.1.4: 1938 | version "0.1.5" 1939 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 1940 | dependencies: 1941 | jsesc "~0.5.0" 1942 | 1943 | remove-trailing-separator@^1.0.1: 1944 | version "1.0.2" 1945 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.2.tgz#69b062d978727ad14dc6b56ba4ab772fd8d70511" 1946 | 1947 | repeat-element@^1.1.2: 1948 | version "1.1.2" 1949 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1950 | 1951 | repeat-string@^1.5.2: 1952 | version "1.6.1" 1953 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1954 | 1955 | repeating@^2.0.0: 1956 | version "2.0.1" 1957 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1958 | dependencies: 1959 | is-finite "^1.0.0" 1960 | 1961 | request-promise-core@1.1.1: 1962 | version "1.1.1" 1963 | resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.1.tgz#3eee00b2c5aa83239cfb04c5700da36f81cd08b6" 1964 | dependencies: 1965 | lodash "^4.13.1" 1966 | 1967 | request-promise-native@^1.0.3: 1968 | version "1.0.4" 1969 | resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.4.tgz#86988ec8eee408e45579fce83bfd05b3adf9a155" 1970 | dependencies: 1971 | request-promise-core "1.1.1" 1972 | stealthy-require "^1.1.0" 1973 | tough-cookie ">=2.3.0" 1974 | 1975 | request@^2.79.0, request@^2.81.0: 1976 | version "2.81.0" 1977 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 1978 | dependencies: 1979 | aws-sign2 "~0.6.0" 1980 | aws4 "^1.2.1" 1981 | caseless "~0.12.0" 1982 | combined-stream "~1.0.5" 1983 | extend "~3.0.0" 1984 | forever-agent "~0.6.1" 1985 | form-data "~2.1.1" 1986 | har-validator "~4.2.1" 1987 | hawk "~3.1.3" 1988 | http-signature "~1.1.0" 1989 | is-typedarray "~1.0.0" 1990 | isstream "~0.1.2" 1991 | json-stringify-safe "~5.0.1" 1992 | mime-types "~2.1.7" 1993 | oauth-sign "~0.8.1" 1994 | performance-now "^0.2.0" 1995 | qs "~6.4.0" 1996 | safe-buffer "^5.0.1" 1997 | stringstream "~0.0.4" 1998 | tough-cookie "~2.3.0" 1999 | tunnel-agent "^0.6.0" 2000 | uuid "^3.0.0" 2001 | 2002 | rimraf@2, rimraf@^2.5.1, rimraf@^2.5.2, rimraf@^2.6.1: 2003 | version "2.6.1" 2004 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 2005 | dependencies: 2006 | glob "^7.0.5" 2007 | 2008 | safe-buffer@^5.0.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2009 | version "5.1.1" 2010 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2011 | 2012 | sax@^1.2.1: 2013 | version "1.2.4" 2014 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 2015 | 2016 | semver@^5.3.0: 2017 | version "5.4.1" 2018 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 2019 | 2020 | set-blocking@~2.0.0: 2021 | version "2.0.0" 2022 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2023 | 2024 | set-immediate-shim@^1.0.1: 2025 | version "1.0.1" 2026 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2027 | 2028 | setimmediate@^1.0.5: 2029 | version "1.0.5" 2030 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 2031 | 2032 | signal-exit@^3.0.0: 2033 | version "3.0.2" 2034 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2035 | 2036 | slash@^1.0.0: 2037 | version "1.0.0" 2038 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2039 | 2040 | sntp@1.x.x: 2041 | version "1.0.9" 2042 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2043 | dependencies: 2044 | hoek "2.x.x" 2045 | 2046 | source-map-support@^0.4.2: 2047 | version "0.4.15" 2048 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1" 2049 | dependencies: 2050 | source-map "^0.5.6" 2051 | 2052 | source-map@^0.5.0, source-map@^0.5.6: 2053 | version "0.5.6" 2054 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 2055 | 2056 | source-map@~0.2.0: 2057 | version "0.2.0" 2058 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 2059 | dependencies: 2060 | amdefine ">=0.0.4" 2061 | 2062 | sshpk@^1.7.0: 2063 | version "1.13.1" 2064 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 2065 | dependencies: 2066 | asn1 "~0.2.3" 2067 | assert-plus "^1.0.0" 2068 | dashdash "^1.12.0" 2069 | getpass "^0.1.1" 2070 | optionalDependencies: 2071 | bcrypt-pbkdf "^1.0.0" 2072 | ecc-jsbn "~0.1.1" 2073 | jsbn "~0.1.0" 2074 | tweetnacl "~0.14.0" 2075 | 2076 | stealthy-require@^1.1.0: 2077 | version "1.1.1" 2078 | resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" 2079 | 2080 | string-width@^1.0.1, string-width@^1.0.2: 2081 | version "1.0.2" 2082 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2083 | dependencies: 2084 | code-point-at "^1.0.0" 2085 | is-fullwidth-code-point "^1.0.0" 2086 | strip-ansi "^3.0.0" 2087 | 2088 | string_decoder@~1.0.3: 2089 | version "1.0.3" 2090 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 2091 | dependencies: 2092 | safe-buffer "~5.1.0" 2093 | 2094 | stringstream@~0.0.4: 2095 | version "0.0.5" 2096 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2097 | 2098 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2099 | version "3.0.1" 2100 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2101 | dependencies: 2102 | ansi-regex "^2.0.0" 2103 | 2104 | strip-json-comments@~2.0.1: 2105 | version "2.0.1" 2106 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2107 | 2108 | supports-color@3.1.2: 2109 | version "3.1.2" 2110 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5" 2111 | dependencies: 2112 | has-flag "^1.0.0" 2113 | 2114 | supports-color@^2.0.0: 2115 | version "2.0.0" 2116 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2117 | 2118 | symbol-observable@^1.0.3: 2119 | version "1.0.4" 2120 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d" 2121 | 2122 | symbol-tree@^3.2.1: 2123 | version "3.2.2" 2124 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 2125 | 2126 | tar-pack@^3.4.0: 2127 | version "3.4.0" 2128 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 2129 | dependencies: 2130 | debug "^2.2.0" 2131 | fstream "^1.0.10" 2132 | fstream-ignore "^1.0.5" 2133 | once "^1.3.3" 2134 | readable-stream "^2.1.4" 2135 | rimraf "^2.5.1" 2136 | tar "^2.2.1" 2137 | uid-number "^0.0.6" 2138 | 2139 | tar@^2.2.1: 2140 | version "2.2.1" 2141 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 2142 | dependencies: 2143 | block-stream "*" 2144 | fstream "^1.0.2" 2145 | inherits "2" 2146 | 2147 | tmatch@^2.0.1: 2148 | version "2.0.1" 2149 | resolved "https://registry.yarnpkg.com/tmatch/-/tmatch-2.0.1.tgz#0c56246f33f30da1b8d3d72895abaf16660f38cf" 2150 | 2151 | to-fast-properties@^1.0.1: 2152 | version "1.0.3" 2153 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 2154 | 2155 | tough-cookie@>=2.3.0, tough-cookie@^2.3.2, tough-cookie@~2.3.0: 2156 | version "2.3.2" 2157 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 2158 | dependencies: 2159 | punycode "^1.4.1" 2160 | 2161 | tr46@~0.0.3: 2162 | version "0.0.3" 2163 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 2164 | 2165 | trim-right@^1.0.1: 2166 | version "1.0.1" 2167 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2168 | 2169 | tunnel-agent@^0.6.0: 2170 | version "0.6.0" 2171 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2172 | dependencies: 2173 | safe-buffer "^5.0.1" 2174 | 2175 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2176 | version "0.14.5" 2177 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2178 | 2179 | type-check@~0.3.2: 2180 | version "0.3.2" 2181 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 2182 | dependencies: 2183 | prelude-ls "~1.1.2" 2184 | 2185 | ua-parser-js@^0.7.9: 2186 | version "0.7.14" 2187 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.14.tgz#110d53fa4c3f326c121292bbeac904d2e03387ca" 2188 | 2189 | uid-number@^0.0.6: 2190 | version "0.0.6" 2191 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 2192 | 2193 | user-home@^1.1.1: 2194 | version "1.1.1" 2195 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 2196 | 2197 | util-deprecate@~1.0.1: 2198 | version "1.0.2" 2199 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2200 | 2201 | uuid@^3.0.0: 2202 | version "3.1.0" 2203 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 2204 | 2205 | v8flags@^2.0.10: 2206 | version "2.1.1" 2207 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 2208 | dependencies: 2209 | user-home "^1.1.1" 2210 | 2211 | verror@1.10.0: 2212 | version "1.10.0" 2213 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 2214 | dependencies: 2215 | assert-plus "^1.0.0" 2216 | core-util-is "1.0.2" 2217 | extsprintf "^1.2.0" 2218 | 2219 | webidl-conversions@^4.0.0, webidl-conversions@^4.0.1: 2220 | version "4.0.1" 2221 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.1.tgz#8015a17ab83e7e1b311638486ace81da6ce206a0" 2222 | 2223 | whatwg-encoding@^1.0.1: 2224 | version "1.0.1" 2225 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 2226 | dependencies: 2227 | iconv-lite "0.4.13" 2228 | 2229 | whatwg-fetch@>=0.10.0: 2230 | version "2.0.3" 2231 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz#9c84ec2dcf68187ff00bc64e1274b442176e1c84" 2232 | 2233 | whatwg-url@^6.1.0: 2234 | version "6.1.0" 2235 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-6.1.0.tgz#5fc8279b93d75483b9ced8b26239854847a18578" 2236 | dependencies: 2237 | lodash.sortby "^4.7.0" 2238 | tr46 "~0.0.3" 2239 | webidl-conversions "^4.0.1" 2240 | 2241 | wide-align@^1.1.0: 2242 | version "1.1.2" 2243 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 2244 | dependencies: 2245 | string-width "^1.0.2" 2246 | 2247 | wordwrap@~1.0.0: 2248 | version "1.0.0" 2249 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 2250 | 2251 | wrappy@1: 2252 | version "1.0.2" 2253 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2254 | 2255 | xml-name-validator@^2.0.1: 2256 | version "2.0.1" 2257 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 2258 | --------------------------------------------------------------------------------