├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── packages ├── inori-core │ ├── .npmignore │ ├── README.md │ ├── package.json │ ├── src │ │ ├── createAction.js │ │ ├── createReducer.js │ │ ├── getEpicMiddleware.js │ │ ├── index.js │ │ └── store │ │ │ ├── store.js │ │ │ └── storeFactory.js │ └── yarn.lock ├── inori-native │ ├── .npmignore │ ├── README.md │ ├── package.json │ ├── src │ │ ├── getStoreConfigure.js │ │ ├── index.js │ │ └── utils.js │ └── yarn.lock └── inori │ ├── .npmignore │ ├── README.md │ ├── dist │ ├── getStoreConfigure.js │ ├── index.js │ └── utils.js │ ├── package.json │ ├── src │ ├── getStoreConfigure.js │ ├── index.js │ └── utils.js │ └── yarn.lock └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | # Created by .ignore support plugin (hsz.mobi) 2 | ### GitBook template 3 | # Node rules: 4 | ## Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 5 | .grunt 6 | 7 | ## Dependency directory 8 | ## Commenting this out is preferred by some people, see 9 | ## https://docs.npmjs.com/misc/faq#should-i-check-my-node_modules-folder-into-git 10 | node_modules 11 | 12 | # Book build output 13 | _book 14 | 15 | # eBook build output 16 | *.epub 17 | *.mobi 18 | *.pdf 19 | ### Node template 20 | # Logs 21 | logs 22 | *.log 23 | npm-debug.log* 24 | yarn-debug.log* 25 | yarn-error.log* 26 | 27 | # Runtime data 28 | pids 29 | *.pid 30 | *.seed 31 | *.pid.lock 32 | 33 | # Directory for instrumented libs generated by jscoverage/JSCover 34 | lib-cov 35 | 36 | # Coverage directory used by tools like istanbul 37 | coverage 38 | 39 | # nyc test coverage 40 | .nyc_output 41 | 42 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 43 | .grunt 44 | 45 | # Bower dependency directory (https://bower.io/) 46 | bower_components 47 | 48 | # node-waf configuration 49 | .lock-wscript 50 | 51 | # Compiled binary addons (https://nodejs.org/api/addons.html) 52 | build/Release 53 | 54 | # Dependency directories 55 | **/node_modules/ 56 | jspm_packages/ 57 | 58 | # Typescript v1 declaration files 59 | typings/ 60 | 61 | # Optional npm cache directory 62 | .npm 63 | 64 | # Optional eslint cache 65 | .eslintcache 66 | 67 | # Optional REPL history 68 | .node_repl_history 69 | 70 | # Output of 'npm pack' 71 | *.tgz 72 | 73 | # Yarn Integrity file 74 | .yarn-integrity 75 | 76 | # dotenv environment variables file 77 | .env 78 | 79 | # next.js build output 80 | .next 81 | ### macOS template 82 | # General 83 | .DS_Store 84 | .AppleDouble 85 | .LSOverride 86 | 87 | # Icon must end with two \r 88 | Icon 89 | 90 | # Thumbnails 91 | ._* 92 | 93 | # Files that might appear in the root of a volume 94 | .DocumentRevisions-V100 95 | .fseventsd 96 | .Spotlight-V100 97 | .TemporaryItems 98 | .Trashes 99 | .VolumeIcon.icns 100 | .com.apple.timemachine.donotpresent 101 | 102 | # Directories potentially created on remote AFP share 103 | .AppleDB 104 | .AppleDesktop 105 | Network Trash Folder 106 | Temporary Items 107 | .apdisk 108 | ### JetBrains template 109 | # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm 110 | # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 111 | 112 | # User-specific stuff: 113 | .idea/**/workspace.xml 114 | .idea/**/tasks.xml 115 | .idea/dictionaries 116 | 117 | # Sensitive or high-churn files: 118 | .idea/**/dataSources/ 119 | .idea/**/dataSources.ids 120 | .idea/**/dataSources.local.xml 121 | .idea/**/sqlDataSources.xml 122 | .idea/**/dynamic.xml 123 | .idea/**/uiDesigner.xml 124 | 125 | # Gradle: 126 | .idea/**/gradle.xml 127 | .idea/**/libraries 128 | 129 | # CMake 130 | cmake-build-debug/ 131 | cmake-build-release/ 132 | 133 | # Mongo Explorer plugin: 134 | .idea/**/mongoSettings.xml 135 | 136 | ## File-based project format: 137 | *.iws 138 | 139 | ## Plugin-specific files: 140 | 141 | # IntelliJ 142 | out/ 143 | 144 | # mpeltonen/sbt-idea plugin 145 | .idea_modules/ 146 | 147 | # JIRA plugin 148 | atlassian-ide-plugin.xml 149 | 150 | # Cursive Clojure plugin 151 | .idea/replstate.xml 152 | 153 | # Crashlytics plugin (for Android Studio and IntelliJ) 154 | com_crashlytics_export_strings.xml 155 | crashlytics.properties 156 | crashlytics-build.properties 157 | fabric.properties 158 | ### Windows template 159 | # Windows thumbnail cache files 160 | Thumbs.db 161 | ehthumbs.db 162 | ehthumbs_vista.db 163 | 164 | # Dump file 165 | *.stackdump 166 | 167 | # Folder config file 168 | [Dd]esktop.ini 169 | 170 | # Recycle Bin used on file shares 171 | $RECYCLE.BIN/ 172 | 173 | # Windows Installer files 174 | *.cab 175 | *.msi 176 | *.msm 177 | *.msp 178 | 179 | # Windows shortcuts 180 | *.lnk 181 | 182 | .idea/wow.iml 183 | .idea/deployment.xml 184 | .idea/jsLibraryMappings.xml 185 | .idea/jsLibraryMappings.xml 186 | .idea/misc.xml 187 | .idea/modules.xml 188 | .idea/vcs.xml 189 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # wow 2 | Inspired by Dva. 3 | basic package based on reudx, redux-observable. 4 | support react and react-native. 5 | 6 | #### compared to dva: 7 | ##### G: 8 | * 没有侵入性 9 | * 预留default reducer处理,支持高阶reducer 10 | * 对旧项目友好,改造成本极低 11 | * 能够使用rx 方法,对异步有强处理能力 12 | 13 | ##### NG: 14 | * 强依赖rxjs,比较笨重 15 | 16 | 17 | ### Install 18 | ```js 19 | npm install inori // for react web 20 | npm install inori-native // for react native 21 | ``` 22 | 23 | ### peer dependency 24 | ```js 25 | "react", 26 | "react-dom", 27 | "react-redux", 28 | "redux", 29 |    "redux-observable", 30 |    "rxjs", 31 | 32 | // option 33 | "redux-devtools-extension": for web debug 34 | "remote-redux-devtools": for react-native debug 35 | "remotedev-rn-debugger": for react-native debug 36 | ``` 37 | 38 | 39 | ### Usage 40 | 41 | write model: 42 | ```js 43 | const model = { 44 | namespace: 'coupon', 45 | state: { 46 | details: {}, 47 | records: [], 48 | }, 49 | epics:{ 50 | loadCopon: (action$, store) => { 51 | return action$.ofType('coupon/loadCoupon') 52 | .map((action) => { 53 | return {type: 1} 54 | }); 55 | }, 56 | }, 57 | reducers: { 58 | showLoading(state, action){ 59 | return {...state, loading: true}; 60 | }, 61 | // handle high order reducer 62 | default(state, action){ 63 | return state; 64 | } 65 | } 66 | }; 67 | 68 | 69 | export default model; 70 | ``` 71 | 72 | write page: 73 | ```js 74 | import React,{PureComponent} from 'react'; 75 | import {connect} from 'react-redux'; 76 | import inori from 'inori'; 77 | 78 | const {createAction} = inori; 79 | 80 | class Page extends PureComponent{ 81 | constructor(props){ 82 | super(props); 83 | } 84 | 85 | componentDidMount(){ 86 | this.props.loadCoupon(); 87 | } 88 | 89 | 90 | render(){ 91 | console.log(this.props); 92 | 93 | return ( 94 |
95 | this is page super 96 |
97 | ); 98 | } 99 | } 100 | 101 | 102 | export default connect((state) => { 103 | return {state}; 104 | }, { 105 | loadCoupon: createAction('coupon/loadCoupon') 106 | })(Page); 107 | ``` 108 | 109 | write entry file: 110 | ```js 111 | import inori from 'inori'; 112 | import model from './activity/demo/model'; 113 | import Page from "./activity/demo/Page"; 114 | 115 | inori.addModel(model); 116 | 117 | inori.start(Page, 'root'); 118 | 119 | ``` 120 | 121 | ### API 122 | 123 | ```js 124 | addModel(model) // add model for inori 125 | ``` 126 | ```js 127 | start(Root, 'domId') //start inori 128 | ``` 129 | ```js 130 | startNative(Root): App // start inori for react-native 131 | ``` 132 | 133 | ```js 134 | createAction(actionName) // simple action create for connect view 135 | ``` 136 | 137 | ```js 138 | addReducer(reducerKey, reducerHandle) // push origin reducer handle to inori control 139 | ``` 140 | 141 | ```js 142 | addEpic(epic or epic Array) //push origin epic to inori control 143 | ``` 144 | 145 | ```js 146 | addPlugin(pluginKey, plugin) // inject dependency to redux-observable 147 | ``` 148 | 149 | ```js 150 | addMiddleware(middlewares or middleware) // redux middleware 151 | ``` 152 | 153 | ### TODO 154 | * [x] support react native 155 | * [ ] replece reducer 156 | * [ ] reducer version conflict 157 | * [ ] epic replace 158 | * [ ] plugin system(doing) 159 | * [ ] subsription feature 160 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "inori", 3 | "version": "1.11.1", 4 | "repository": "https://github.com/YouHan26/wow.git", 5 | "author": "YouHan26 ", 6 | "license": "MIT", 7 | "scripts": { 8 | "publish@core": "cd packages && cd inori-core && yarn publish && cd .. && cd ..", 9 | "publish@native": "cd packages && cd inori && yarn add inori-core && yarn publish && cd .. && cd ..", 10 | "publish@web": "cd packages && cd inori-native && yarn add inori-core && yarn publish && cd .. && cd ..", 11 | "publish": "yarn publish@core && yarn publish@web && yarn publish@native" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /packages/inori-core/.npmignore: -------------------------------------------------------------------------------- 1 | # Created by .ignore support plugin (hsz.mobi) 2 | .*.swp 3 | ._* 4 | .DS_Store 5 | .git 6 | .idea 7 | .hg 8 | .npmrc 9 | .lock-wscript 10 | .svn 11 | .wafpickle-* 12 | .idea/ 13 | src/ 14 | config.gypi 15 | CVS 16 | npm-debug.log -------------------------------------------------------------------------------- /packages/inori-core/README.md: -------------------------------------------------------------------------------- 1 | # wow 2 | Inspired by Dva. 3 | basic package based on reudx, redux-observable. 4 | 5 | #### compared to dva: 6 | ##### G: 7 | * 没有侵入性 8 | * 预留default reducer处理,支持高阶reducer 9 | * 对旧项目友好,改造成本极低 10 | * 能够使用rx 方法,对异步有强处理能力 11 | 12 | ##### NG: 13 | * 强依赖rxjs,比较笨重 14 | 15 | 16 | ### Install 17 | ``` 18 | npm install inori 19 | ``` 20 | 21 | ### peer dependency 22 | ``` 23 | "react", 24 | "react-dom", 25 | "react-redux", 26 | "redux", 27 |    "redux-observable", 28 |    "rxjs", 29 | ``` 30 | 31 | ### Usage 32 | 33 | write model: 34 | ``` 35 | const model = { 36 | namespace: 'coupon', 37 | state: { 38 | details: {}, 39 | records: [], 40 | }, 41 | epics:{ 42 | loadCopon: (action$, store) => { 43 | return action$.ofType('coupon/loadCoupon') 44 | .map((action) => { 45 | return {type: 1} 46 | }); 47 | }, 48 | }, 49 | reducers: { 50 | showLoading(state, action){ 51 | return {...state, loading: true}; 52 | }, 53 | // handle high order reducer 54 | default(state, action){ 55 | return state; 56 | } 57 | } 58 | }; 59 | 60 | 61 | export default model; 62 | ``` 63 | 64 | write page: 65 | ``` 66 | import React,{PureComponent} from 'react'; 67 | import {connect} from 'react-redux'; 68 | import inori from 'inori'; 69 | 70 | const {createAction} = inori; 71 | 72 | class Page extends PureComponent{ 73 | constructor(props){ 74 | super(props); 75 | } 76 | 77 | componentDidMount(){ 78 | this.props.loadCoupon(); 79 | } 80 | 81 | 82 | render(){ 83 | console.log(this.props); 84 | 85 | return ( 86 |
87 | this is page super 88 |
89 | ); 90 | } 91 | } 92 | 93 | 94 | export default connect((state) => { 95 | return {state}; 96 | }, { 97 | loadCoupon: createAction('coupon/loadCoupon') 98 | })(Page); 99 | ``` 100 | 101 | write entry file: 102 | ``` 103 | import inori from 'inori'; 104 | import model from './activity/demo/model'; 105 | import Page from "./activity/demo/Page"; 106 | 107 | inori.addModel(model); 108 | 109 | inori.start(Page, 'root'); 110 | 111 | ``` 112 | 113 | ### API 114 | 115 | ``` 116 | addModel(model) : add model for inori 117 | ``` 118 | 119 | ``` 120 | start(Root, 'domId'): start inori 121 | ``` 122 | 123 | ``` 124 | createAction(actionName): simple action create for connect view 125 | ``` 126 | 127 | ``` 128 | addReducer(reducerKey, reducerHandle): push origin reducer handle to inori control 129 | ``` 130 | 131 | ``` 132 | addEpic(epic or epic Array): push origin epic to inori control 133 | ``` 134 | 135 | ``` 136 | addPlugin(pluginKey, plugin): inject dependency to redux-observable 137 | ``` 138 | 139 | ``` 140 | addMiddleware(middlewares or middleware): redux middleware 141 | ``` 142 | 143 | ### TODO 144 | * [ ] replece reducer 145 | * [ ] reducer version conflict 146 | * [ ] epic replace 147 | * [ ] plugin system(doing) 148 | -------------------------------------------------------------------------------- /packages/inori-core/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "inori-core", 3 | "version": "0.2.0", 4 | "main": "dist/index.js", 5 | "repository": "https://github.com/YouHan26/wow.git", 6 | "author": "YouHan26 ", 7 | "license": "MIT", 8 | "dependencies": { 9 | "mi-js-utils": "^2.1.0" 10 | }, 11 | "scripts": { 12 | "build": "babel src --presets es2015,react --out-dir dist", 13 | "prepublish": "npm run build" 14 | }, 15 | "peerDependencies": { 16 | "react": "^15.3.2", 17 | "react-redux": "^5.0.7", 18 | "redux": "^3.0.0", 19 | "redux-observable": "^0.18.0" 20 | }, 21 | "devDependencies": { 22 | "babel-cli": "^6.26.0", 23 | "babel-preset-es2015": "^6.24.1", 24 | "babel-preset-react": "^6.24.1", 25 | "redux-devtools-extension": "^2.13.2" 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /packages/inori-core/src/createAction.js: -------------------------------------------------------------------------------- 1 | export function createAction(type) { 2 | return (payload, extra, after) => { 3 | return { 4 | type, 5 | payload, 6 | after, 7 | extra 8 | }; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /packages/inori-core/src/createReducer.js: -------------------------------------------------------------------------------- 1 | 2 | function createReducer(initialState, handles) { 3 | return (state = initialState, action) => { 4 | if (handles.hasOwnProperty(action.type)) { 5 | return handles[action.type](state, action); 6 | } else if (handles.hasOwnProperty('default')) { 7 | return handles['default'](state, action); 8 | } else { 9 | return state; 10 | } 11 | }; 12 | } 13 | 14 | export default createReducer; -------------------------------------------------------------------------------- /packages/inori-core/src/getEpicMiddleware.js: -------------------------------------------------------------------------------- 1 | import {createEpicMiddleware} from "redux-observable"; 2 | 3 | /** 4 | * @param epics 5 | * @param plugins 6 | * @returns {EpicMiddleware} 7 | */ 8 | const getEpicMiddleware = (epics, plugins) => { 9 | return createEpicMiddleware(epics, { 10 | dependencies: plugins || {} 11 | }); 12 | }; 13 | 14 | export default getEpicMiddleware; -------------------------------------------------------------------------------- /packages/inori-core/src/index.js: -------------------------------------------------------------------------------- 1 | import {Provider} from "react-redux"; 2 | import React from 'react'; 3 | import {combineEpics} from 'redux-observable'; 4 | import UTILS from 'mi-js-utils'; 5 | import {combineReducers} from "redux"; 6 | import storeFactory from "./store/storeFactory"; 7 | import createReducer from "./createReducer"; 8 | import {createAction} from './createAction'; 9 | import getEpicMiddleware from "./getEpicMiddleware"; 10 | 11 | 12 | let _epics = []; 13 | let _reducersObj = {}; 14 | let _plugins = {}; 15 | let _middlewares = []; 16 | 17 | let _configureStore = UTILS.common.noop; 18 | 19 | function _addPlugins(key, plugin) { 20 | _plugins[key] = plugin; 21 | } 22 | 23 | function _addMiddleware(middlewares) { 24 | if (Array.isArray(middlewares)) { 25 | _middlewares = _middlewares.concat(middlewares); 26 | } else { 27 | _middlewares.push(middlewares); 28 | } 29 | } 30 | 31 | function _addEpic(epics) { 32 | if (epics) { 33 | _epics = _epics.concat(Object.values(epics)); 34 | } 35 | } 36 | 37 | function _addReducer(namespace, initState, handles) { 38 | _reducersObj[namespace] = createReducer(initState, handles); 39 | } 40 | 41 | function _addModel(model) { 42 | const {namespace, state, epics, reducers} = model; 43 | 44 | if (epics) { 45 | _addEpic(epics); 46 | } 47 | if (reducers) { 48 | _addReducer(namespace, state || {}, reducers); 49 | } 50 | } 51 | 52 | /** 53 | * create configure store method 54 | * @private 55 | */ 56 | function _createConfigureStore(...args){ 57 | _configureStore = storeFactory(...args); 58 | } 59 | 60 | /** 61 | * create store 62 | * @private 63 | */ 64 | function _createStore() { 65 | //start to create store 66 | const rootEpic = combineEpics(..._epics); 67 | const _trueReducers = combineReducers(_reducersObj); 68 | 69 | //TODO extra epic inject plugin 70 | const epicMiddleware = getEpicMiddleware(rootEpic, _plugins); 71 | 72 | _middlewares.push(epicMiddleware); 73 | 74 | return _configureStore(_trueReducers, _middlewares); 75 | } 76 | 77 | function _addOriginReducer(key, reducer) { 78 | _reducersObj[key] = reducer; 79 | } 80 | 81 | function _addOriginEpic(epics) { 82 | if (Array.isArray(epics)) { 83 | _epics = _epics.concat(epics); 84 | } else { 85 | _epics.push(epics); 86 | } 87 | } 88 | 89 | export default { 90 | addModel: _addModel, 91 | createAction, 92 | addReducer: _addOriginReducer, 93 | addEpic: _addOriginEpic, 94 | addPlugin: _addPlugins, 95 | addMiddleware: _addMiddleware, 96 | 97 | createConfigureStore: _createConfigureStore, 98 | createStore: _createStore, 99 | } 100 | 101 | -------------------------------------------------------------------------------- /packages/inori-core/src/store/store.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by YouHan on 2017/6/14. 3 | */ 4 | import {applyMiddleware, createStore} from "redux"; 5 | 6 | export default (compose, enhances) => { 7 | return (rootReducer, middleWares) => { 8 | return createStore( 9 | rootReducer, 10 | compose( 11 | applyMiddleware(...middleWares), 12 | ...enhances 13 | ) 14 | ); 15 | }; 16 | } 17 | -------------------------------------------------------------------------------- /packages/inori-core/src/store/storeFactory.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by YouHan on 2017/7/4. 3 | */ 4 | import createStore from './store' 5 | 6 | const storeFactory = (compose, ...enhances) => { 7 | return (rootReducer, epicMiddleware) => { 8 | return createStore(compose, enhances.filter((enhance) => { 9 | return !!enhance; 10 | }))(rootReducer, epicMiddleware); 11 | } 12 | }; 13 | 14 | export default storeFactory; 15 | 16 | -------------------------------------------------------------------------------- /packages/inori-core/yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abbrev@1: 6 | version "1.1.1" 7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 8 | 9 | ansi-regex@^2.0.0: 10 | version "2.1.1" 11 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 12 | 13 | ansi-styles@^2.2.1: 14 | version "2.2.1" 15 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 16 | 17 | anymatch@^1.3.0: 18 | version "1.3.2" 19 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 20 | dependencies: 21 | micromatch "^2.1.5" 22 | normalize-path "^2.0.0" 23 | 24 | aproba@^1.0.3: 25 | version "1.2.0" 26 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 27 | 28 | are-we-there-yet@~1.1.2: 29 | version "1.1.4" 30 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 31 | dependencies: 32 | delegates "^1.0.0" 33 | readable-stream "^2.0.6" 34 | 35 | arr-diff@^2.0.0: 36 | version "2.0.0" 37 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 38 | dependencies: 39 | arr-flatten "^1.0.1" 40 | 41 | arr-flatten@^1.0.1: 42 | version "1.1.0" 43 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 44 | 45 | array-unique@^0.2.1: 46 | version "0.2.1" 47 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 48 | 49 | async-each@^1.0.0: 50 | version "1.0.1" 51 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 52 | 53 | babel-cli@^6.26.0: 54 | version "6.26.0" 55 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.26.0.tgz#502ab54874d7db88ad00b887a06383ce03d002f1" 56 | dependencies: 57 | babel-core "^6.26.0" 58 | babel-polyfill "^6.26.0" 59 | babel-register "^6.26.0" 60 | babel-runtime "^6.26.0" 61 | commander "^2.11.0" 62 | convert-source-map "^1.5.0" 63 | fs-readdir-recursive "^1.0.0" 64 | glob "^7.1.2" 65 | lodash "^4.17.4" 66 | output-file-sync "^1.1.2" 67 | path-is-absolute "^1.0.1" 68 | slash "^1.0.0" 69 | source-map "^0.5.6" 70 | v8flags "^2.1.1" 71 | optionalDependencies: 72 | chokidar "^1.6.1" 73 | 74 | babel-code-frame@^6.26.0: 75 | version "6.26.0" 76 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 77 | dependencies: 78 | chalk "^1.1.3" 79 | esutils "^2.0.2" 80 | js-tokens "^3.0.2" 81 | 82 | babel-core@^6.26.0: 83 | version "6.26.3" 84 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.3.tgz#b2e2f09e342d0f0c88e2f02e067794125e75c207" 85 | dependencies: 86 | babel-code-frame "^6.26.0" 87 | babel-generator "^6.26.0" 88 | babel-helpers "^6.24.1" 89 | babel-messages "^6.23.0" 90 | babel-register "^6.26.0" 91 | babel-runtime "^6.26.0" 92 | babel-template "^6.26.0" 93 | babel-traverse "^6.26.0" 94 | babel-types "^6.26.0" 95 | babylon "^6.18.0" 96 | convert-source-map "^1.5.1" 97 | debug "^2.6.9" 98 | json5 "^0.5.1" 99 | lodash "^4.17.4" 100 | minimatch "^3.0.4" 101 | path-is-absolute "^1.0.1" 102 | private "^0.1.8" 103 | slash "^1.0.0" 104 | source-map "^0.5.7" 105 | 106 | babel-generator@^6.26.0: 107 | version "6.26.1" 108 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" 109 | dependencies: 110 | babel-messages "^6.23.0" 111 | babel-runtime "^6.26.0" 112 | babel-types "^6.26.0" 113 | detect-indent "^4.0.0" 114 | jsesc "^1.3.0" 115 | lodash "^4.17.4" 116 | source-map "^0.5.7" 117 | trim-right "^1.0.1" 118 | 119 | babel-helper-builder-react-jsx@^6.24.1: 120 | version "6.26.0" 121 | resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz#39ff8313b75c8b65dceff1f31d383e0ff2a408a0" 122 | dependencies: 123 | babel-runtime "^6.26.0" 124 | babel-types "^6.26.0" 125 | esutils "^2.0.2" 126 | 127 | babel-helper-call-delegate@^6.24.1: 128 | version "6.24.1" 129 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 130 | dependencies: 131 | babel-helper-hoist-variables "^6.24.1" 132 | babel-runtime "^6.22.0" 133 | babel-traverse "^6.24.1" 134 | babel-types "^6.24.1" 135 | 136 | babel-helper-define-map@^6.24.1: 137 | version "6.26.0" 138 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 139 | dependencies: 140 | babel-helper-function-name "^6.24.1" 141 | babel-runtime "^6.26.0" 142 | babel-types "^6.26.0" 143 | lodash "^4.17.4" 144 | 145 | babel-helper-function-name@^6.24.1: 146 | version "6.24.1" 147 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 148 | dependencies: 149 | babel-helper-get-function-arity "^6.24.1" 150 | babel-runtime "^6.22.0" 151 | babel-template "^6.24.1" 152 | babel-traverse "^6.24.1" 153 | babel-types "^6.24.1" 154 | 155 | babel-helper-get-function-arity@^6.24.1: 156 | version "6.24.1" 157 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 158 | dependencies: 159 | babel-runtime "^6.22.0" 160 | babel-types "^6.24.1" 161 | 162 | babel-helper-hoist-variables@^6.24.1: 163 | version "6.24.1" 164 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 165 | dependencies: 166 | babel-runtime "^6.22.0" 167 | babel-types "^6.24.1" 168 | 169 | babel-helper-optimise-call-expression@^6.24.1: 170 | version "6.24.1" 171 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 172 | dependencies: 173 | babel-runtime "^6.22.0" 174 | babel-types "^6.24.1" 175 | 176 | babel-helper-regex@^6.24.1: 177 | version "6.26.0" 178 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 179 | dependencies: 180 | babel-runtime "^6.26.0" 181 | babel-types "^6.26.0" 182 | lodash "^4.17.4" 183 | 184 | babel-helper-replace-supers@^6.24.1: 185 | version "6.24.1" 186 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 187 | dependencies: 188 | babel-helper-optimise-call-expression "^6.24.1" 189 | babel-messages "^6.23.0" 190 | babel-runtime "^6.22.0" 191 | babel-template "^6.24.1" 192 | babel-traverse "^6.24.1" 193 | babel-types "^6.24.1" 194 | 195 | babel-helpers@^6.24.1: 196 | version "6.24.1" 197 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 198 | dependencies: 199 | babel-runtime "^6.22.0" 200 | babel-template "^6.24.1" 201 | 202 | babel-messages@^6.23.0: 203 | version "6.23.0" 204 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 205 | dependencies: 206 | babel-runtime "^6.22.0" 207 | 208 | babel-plugin-check-es2015-constants@^6.22.0: 209 | version "6.22.0" 210 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 211 | dependencies: 212 | babel-runtime "^6.22.0" 213 | 214 | babel-plugin-syntax-flow@^6.18.0: 215 | version "6.18.0" 216 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" 217 | 218 | babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0: 219 | version "6.18.0" 220 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" 221 | 222 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 223 | version "6.22.0" 224 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 225 | dependencies: 226 | babel-runtime "^6.22.0" 227 | 228 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 229 | version "6.22.0" 230 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 231 | dependencies: 232 | babel-runtime "^6.22.0" 233 | 234 | babel-plugin-transform-es2015-block-scoping@^6.24.1: 235 | version "6.26.0" 236 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 237 | dependencies: 238 | babel-runtime "^6.26.0" 239 | babel-template "^6.26.0" 240 | babel-traverse "^6.26.0" 241 | babel-types "^6.26.0" 242 | lodash "^4.17.4" 243 | 244 | babel-plugin-transform-es2015-classes@^6.24.1: 245 | version "6.24.1" 246 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 247 | dependencies: 248 | babel-helper-define-map "^6.24.1" 249 | babel-helper-function-name "^6.24.1" 250 | babel-helper-optimise-call-expression "^6.24.1" 251 | babel-helper-replace-supers "^6.24.1" 252 | babel-messages "^6.23.0" 253 | babel-runtime "^6.22.0" 254 | babel-template "^6.24.1" 255 | babel-traverse "^6.24.1" 256 | babel-types "^6.24.1" 257 | 258 | babel-plugin-transform-es2015-computed-properties@^6.24.1: 259 | version "6.24.1" 260 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 261 | dependencies: 262 | babel-runtime "^6.22.0" 263 | babel-template "^6.24.1" 264 | 265 | babel-plugin-transform-es2015-destructuring@^6.22.0: 266 | version "6.23.0" 267 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 268 | dependencies: 269 | babel-runtime "^6.22.0" 270 | 271 | babel-plugin-transform-es2015-duplicate-keys@^6.24.1: 272 | version "6.24.1" 273 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 274 | dependencies: 275 | babel-runtime "^6.22.0" 276 | babel-types "^6.24.1" 277 | 278 | babel-plugin-transform-es2015-for-of@^6.22.0: 279 | version "6.23.0" 280 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 281 | dependencies: 282 | babel-runtime "^6.22.0" 283 | 284 | babel-plugin-transform-es2015-function-name@^6.24.1: 285 | version "6.24.1" 286 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 287 | dependencies: 288 | babel-helper-function-name "^6.24.1" 289 | babel-runtime "^6.22.0" 290 | babel-types "^6.24.1" 291 | 292 | babel-plugin-transform-es2015-literals@^6.22.0: 293 | version "6.22.0" 294 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 295 | dependencies: 296 | babel-runtime "^6.22.0" 297 | 298 | babel-plugin-transform-es2015-modules-amd@^6.24.1: 299 | version "6.24.1" 300 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 301 | dependencies: 302 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 303 | babel-runtime "^6.22.0" 304 | babel-template "^6.24.1" 305 | 306 | babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 307 | version "6.26.2" 308 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz#58a793863a9e7ca870bdc5a881117ffac27db6f3" 309 | dependencies: 310 | babel-plugin-transform-strict-mode "^6.24.1" 311 | babel-runtime "^6.26.0" 312 | babel-template "^6.26.0" 313 | babel-types "^6.26.0" 314 | 315 | babel-plugin-transform-es2015-modules-systemjs@^6.24.1: 316 | version "6.24.1" 317 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 318 | dependencies: 319 | babel-helper-hoist-variables "^6.24.1" 320 | babel-runtime "^6.22.0" 321 | babel-template "^6.24.1" 322 | 323 | babel-plugin-transform-es2015-modules-umd@^6.24.1: 324 | version "6.24.1" 325 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 326 | dependencies: 327 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 328 | babel-runtime "^6.22.0" 329 | babel-template "^6.24.1" 330 | 331 | babel-plugin-transform-es2015-object-super@^6.24.1: 332 | version "6.24.1" 333 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 334 | dependencies: 335 | babel-helper-replace-supers "^6.24.1" 336 | babel-runtime "^6.22.0" 337 | 338 | babel-plugin-transform-es2015-parameters@^6.24.1: 339 | version "6.24.1" 340 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 341 | dependencies: 342 | babel-helper-call-delegate "^6.24.1" 343 | babel-helper-get-function-arity "^6.24.1" 344 | babel-runtime "^6.22.0" 345 | babel-template "^6.24.1" 346 | babel-traverse "^6.24.1" 347 | babel-types "^6.24.1" 348 | 349 | babel-plugin-transform-es2015-shorthand-properties@^6.24.1: 350 | version "6.24.1" 351 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 352 | dependencies: 353 | babel-runtime "^6.22.0" 354 | babel-types "^6.24.1" 355 | 356 | babel-plugin-transform-es2015-spread@^6.22.0: 357 | version "6.22.0" 358 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 359 | dependencies: 360 | babel-runtime "^6.22.0" 361 | 362 | babel-plugin-transform-es2015-sticky-regex@^6.24.1: 363 | version "6.24.1" 364 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 365 | dependencies: 366 | babel-helper-regex "^6.24.1" 367 | babel-runtime "^6.22.0" 368 | babel-types "^6.24.1" 369 | 370 | babel-plugin-transform-es2015-template-literals@^6.22.0: 371 | version "6.22.0" 372 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 373 | dependencies: 374 | babel-runtime "^6.22.0" 375 | 376 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0: 377 | version "6.23.0" 378 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 379 | dependencies: 380 | babel-runtime "^6.22.0" 381 | 382 | babel-plugin-transform-es2015-unicode-regex@^6.24.1: 383 | version "6.24.1" 384 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 385 | dependencies: 386 | babel-helper-regex "^6.24.1" 387 | babel-runtime "^6.22.0" 388 | regexpu-core "^2.0.0" 389 | 390 | babel-plugin-transform-flow-strip-types@^6.22.0: 391 | version "6.22.0" 392 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" 393 | dependencies: 394 | babel-plugin-syntax-flow "^6.18.0" 395 | babel-runtime "^6.22.0" 396 | 397 | babel-plugin-transform-react-display-name@^6.23.0: 398 | version "6.25.0" 399 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz#67e2bf1f1e9c93ab08db96792e05392bf2cc28d1" 400 | dependencies: 401 | babel-runtime "^6.22.0" 402 | 403 | babel-plugin-transform-react-jsx-self@^6.22.0: 404 | version "6.22.0" 405 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e" 406 | dependencies: 407 | babel-plugin-syntax-jsx "^6.8.0" 408 | babel-runtime "^6.22.0" 409 | 410 | babel-plugin-transform-react-jsx-source@^6.22.0: 411 | version "6.22.0" 412 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6" 413 | dependencies: 414 | babel-plugin-syntax-jsx "^6.8.0" 415 | babel-runtime "^6.22.0" 416 | 417 | babel-plugin-transform-react-jsx@^6.24.1: 418 | version "6.24.1" 419 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3" 420 | dependencies: 421 | babel-helper-builder-react-jsx "^6.24.1" 422 | babel-plugin-syntax-jsx "^6.8.0" 423 | babel-runtime "^6.22.0" 424 | 425 | babel-plugin-transform-regenerator@^6.24.1: 426 | version "6.26.0" 427 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 428 | dependencies: 429 | regenerator-transform "^0.10.0" 430 | 431 | babel-plugin-transform-strict-mode@^6.24.1: 432 | version "6.24.1" 433 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 434 | dependencies: 435 | babel-runtime "^6.22.0" 436 | babel-types "^6.24.1" 437 | 438 | babel-polyfill@^6.26.0: 439 | version "6.26.0" 440 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" 441 | dependencies: 442 | babel-runtime "^6.26.0" 443 | core-js "^2.5.0" 444 | regenerator-runtime "^0.10.5" 445 | 446 | babel-preset-es2015@^6.24.1: 447 | version "6.24.1" 448 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939" 449 | dependencies: 450 | babel-plugin-check-es2015-constants "^6.22.0" 451 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 452 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 453 | babel-plugin-transform-es2015-block-scoping "^6.24.1" 454 | babel-plugin-transform-es2015-classes "^6.24.1" 455 | babel-plugin-transform-es2015-computed-properties "^6.24.1" 456 | babel-plugin-transform-es2015-destructuring "^6.22.0" 457 | babel-plugin-transform-es2015-duplicate-keys "^6.24.1" 458 | babel-plugin-transform-es2015-for-of "^6.22.0" 459 | babel-plugin-transform-es2015-function-name "^6.24.1" 460 | babel-plugin-transform-es2015-literals "^6.22.0" 461 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 462 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 463 | babel-plugin-transform-es2015-modules-systemjs "^6.24.1" 464 | babel-plugin-transform-es2015-modules-umd "^6.24.1" 465 | babel-plugin-transform-es2015-object-super "^6.24.1" 466 | babel-plugin-transform-es2015-parameters "^6.24.1" 467 | babel-plugin-transform-es2015-shorthand-properties "^6.24.1" 468 | babel-plugin-transform-es2015-spread "^6.22.0" 469 | babel-plugin-transform-es2015-sticky-regex "^6.24.1" 470 | babel-plugin-transform-es2015-template-literals "^6.22.0" 471 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 472 | babel-plugin-transform-es2015-unicode-regex "^6.24.1" 473 | babel-plugin-transform-regenerator "^6.24.1" 474 | 475 | babel-preset-flow@^6.23.0: 476 | version "6.23.0" 477 | resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d" 478 | dependencies: 479 | babel-plugin-transform-flow-strip-types "^6.22.0" 480 | 481 | babel-preset-react@^6.24.1: 482 | version "6.24.1" 483 | resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.24.1.tgz#ba69dfaea45fc3ec639b6a4ecea6e17702c91380" 484 | dependencies: 485 | babel-plugin-syntax-jsx "^6.3.13" 486 | babel-plugin-transform-react-display-name "^6.23.0" 487 | babel-plugin-transform-react-jsx "^6.24.1" 488 | babel-plugin-transform-react-jsx-self "^6.22.0" 489 | babel-plugin-transform-react-jsx-source "^6.22.0" 490 | babel-preset-flow "^6.23.0" 491 | 492 | babel-register@^6.26.0: 493 | version "6.26.0" 494 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 495 | dependencies: 496 | babel-core "^6.26.0" 497 | babel-runtime "^6.26.0" 498 | core-js "^2.5.0" 499 | home-or-tmp "^2.0.0" 500 | lodash "^4.17.4" 501 | mkdirp "^0.5.1" 502 | source-map-support "^0.4.15" 503 | 504 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 505 | version "6.26.0" 506 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 507 | dependencies: 508 | core-js "^2.4.0" 509 | regenerator-runtime "^0.11.0" 510 | 511 | babel-template@^6.24.1, babel-template@^6.26.0: 512 | version "6.26.0" 513 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 514 | dependencies: 515 | babel-runtime "^6.26.0" 516 | babel-traverse "^6.26.0" 517 | babel-types "^6.26.0" 518 | babylon "^6.18.0" 519 | lodash "^4.17.4" 520 | 521 | babel-traverse@^6.24.1, babel-traverse@^6.26.0: 522 | version "6.26.0" 523 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 524 | dependencies: 525 | babel-code-frame "^6.26.0" 526 | babel-messages "^6.23.0" 527 | babel-runtime "^6.26.0" 528 | babel-types "^6.26.0" 529 | babylon "^6.18.0" 530 | debug "^2.6.8" 531 | globals "^9.18.0" 532 | invariant "^2.2.2" 533 | lodash "^4.17.4" 534 | 535 | babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: 536 | version "6.26.0" 537 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 538 | dependencies: 539 | babel-runtime "^6.26.0" 540 | esutils "^2.0.2" 541 | lodash "^4.17.4" 542 | to-fast-properties "^1.0.3" 543 | 544 | babylon@^6.18.0: 545 | version "6.18.0" 546 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 547 | 548 | balanced-match@^1.0.0: 549 | version "1.0.0" 550 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 551 | 552 | binary-extensions@^1.0.0: 553 | version "1.11.0" 554 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 555 | 556 | brace-expansion@^1.1.7: 557 | version "1.1.11" 558 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 559 | dependencies: 560 | balanced-match "^1.0.0" 561 | concat-map "0.0.1" 562 | 563 | braces@^1.8.2: 564 | version "1.8.5" 565 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 566 | dependencies: 567 | expand-range "^1.8.1" 568 | preserve "^0.2.0" 569 | repeat-element "^1.1.2" 570 | 571 | chalk@^1.1.3: 572 | version "1.1.3" 573 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 574 | dependencies: 575 | ansi-styles "^2.2.1" 576 | escape-string-regexp "^1.0.2" 577 | has-ansi "^2.0.0" 578 | strip-ansi "^3.0.0" 579 | supports-color "^2.0.0" 580 | 581 | chokidar@^1.6.1: 582 | version "1.7.0" 583 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 584 | dependencies: 585 | anymatch "^1.3.0" 586 | async-each "^1.0.0" 587 | glob-parent "^2.0.0" 588 | inherits "^2.0.1" 589 | is-binary-path "^1.0.0" 590 | is-glob "^2.0.0" 591 | path-is-absolute "^1.0.0" 592 | readdirp "^2.0.0" 593 | optionalDependencies: 594 | fsevents "^1.0.0" 595 | 596 | chownr@^1.0.1: 597 | version "1.0.1" 598 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.0.1.tgz#e2a75042a9551908bebd25b8523d5f9769d79181" 599 | 600 | code-point-at@^1.0.0: 601 | version "1.1.0" 602 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 603 | 604 | commander@^2.11.0: 605 | version "2.15.1" 606 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.15.1.tgz#df46e867d0fc2aec66a34662b406a9ccafff5b0f" 607 | 608 | concat-map@0.0.1: 609 | version "0.0.1" 610 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 611 | 612 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 613 | version "1.1.0" 614 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 615 | 616 | convert-source-map@^1.5.0, convert-source-map@^1.5.1: 617 | version "1.5.1" 618 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 619 | 620 | core-js@^2.4.0, core-js@^2.5.0: 621 | version "2.5.6" 622 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.6.tgz#0fe6d45bf3cac3ac364a9d72de7576f4eb221b9d" 623 | 624 | core-util-is@~1.0.0: 625 | version "1.0.2" 626 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 627 | 628 | debug@^2.1.2, debug@^2.6.8, debug@^2.6.9: 629 | version "2.6.9" 630 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 631 | dependencies: 632 | ms "2.0.0" 633 | 634 | deep-extend@^0.5.1: 635 | version "0.5.1" 636 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.5.1.tgz#b894a9dd90d3023fbf1c55a394fb858eb2066f1f" 637 | 638 | delegates@^1.0.0: 639 | version "1.0.0" 640 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 641 | 642 | detect-indent@^4.0.0: 643 | version "4.0.0" 644 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 645 | dependencies: 646 | repeating "^2.0.0" 647 | 648 | detect-libc@^1.0.2: 649 | version "1.0.3" 650 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 651 | 652 | escape-string-regexp@^1.0.2: 653 | version "1.0.5" 654 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 655 | 656 | esutils@^2.0.2: 657 | version "2.0.2" 658 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 659 | 660 | expand-brackets@^0.1.4: 661 | version "0.1.5" 662 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 663 | dependencies: 664 | is-posix-bracket "^0.1.0" 665 | 666 | expand-range@^1.8.1: 667 | version "1.8.2" 668 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 669 | dependencies: 670 | fill-range "^2.1.0" 671 | 672 | extglob@^0.3.1: 673 | version "0.3.2" 674 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 675 | dependencies: 676 | is-extglob "^1.0.0" 677 | 678 | filename-regex@^2.0.0: 679 | version "2.0.1" 680 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 681 | 682 | fill-range@^2.1.0: 683 | version "2.2.4" 684 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565" 685 | dependencies: 686 | is-number "^2.1.0" 687 | isobject "^2.0.0" 688 | randomatic "^3.0.0" 689 | repeat-element "^1.1.2" 690 | repeat-string "^1.5.2" 691 | 692 | for-in@^1.0.1: 693 | version "1.0.2" 694 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 695 | 696 | for-own@^0.1.4: 697 | version "0.1.5" 698 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 699 | dependencies: 700 | for-in "^1.0.1" 701 | 702 | fs-minipass@^1.2.5: 703 | version "1.2.5" 704 | resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d" 705 | dependencies: 706 | minipass "^2.2.1" 707 | 708 | fs-readdir-recursive@^1.0.0: 709 | version "1.1.0" 710 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27" 711 | 712 | fs.realpath@^1.0.0: 713 | version "1.0.0" 714 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 715 | 716 | fsevents@^1.0.0: 717 | version "1.2.4" 718 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.4.tgz#f41dcb1af2582af3692da36fc55cbd8e1041c426" 719 | dependencies: 720 | nan "^2.9.2" 721 | node-pre-gyp "^0.10.0" 722 | 723 | gauge@~2.7.3: 724 | version "2.7.4" 725 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 726 | dependencies: 727 | aproba "^1.0.3" 728 | console-control-strings "^1.0.0" 729 | has-unicode "^2.0.0" 730 | object-assign "^4.1.0" 731 | signal-exit "^3.0.0" 732 | string-width "^1.0.1" 733 | strip-ansi "^3.0.1" 734 | wide-align "^1.1.0" 735 | 736 | glob-base@^0.3.0: 737 | version "0.3.0" 738 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 739 | dependencies: 740 | glob-parent "^2.0.0" 741 | is-glob "^2.0.0" 742 | 743 | glob-parent@^2.0.0: 744 | version "2.0.0" 745 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 746 | dependencies: 747 | is-glob "^2.0.0" 748 | 749 | glob@^7.0.5, glob@^7.1.2: 750 | version "7.1.2" 751 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 752 | dependencies: 753 | fs.realpath "^1.0.0" 754 | inflight "^1.0.4" 755 | inherits "2" 756 | minimatch "^3.0.4" 757 | once "^1.3.0" 758 | path-is-absolute "^1.0.0" 759 | 760 | globals@^9.18.0: 761 | version "9.18.0" 762 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 763 | 764 | graceful-fs@^4.1.2, graceful-fs@^4.1.4: 765 | version "4.1.11" 766 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 767 | 768 | has-ansi@^2.0.0: 769 | version "2.0.0" 770 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 771 | dependencies: 772 | ansi-regex "^2.0.0" 773 | 774 | has-unicode@^2.0.0: 775 | version "2.0.1" 776 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 777 | 778 | home-or-tmp@^2.0.0: 779 | version "2.0.0" 780 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 781 | dependencies: 782 | os-homedir "^1.0.0" 783 | os-tmpdir "^1.0.1" 784 | 785 | iconv-lite@^0.4.4: 786 | version "0.4.23" 787 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.23.tgz#297871f63be507adcfbfca715d0cd0eed84e9a63" 788 | dependencies: 789 | safer-buffer ">= 2.1.2 < 3" 790 | 791 | ignore-walk@^3.0.1: 792 | version "3.0.1" 793 | resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" 794 | dependencies: 795 | minimatch "^3.0.4" 796 | 797 | inflight@^1.0.4: 798 | version "1.0.6" 799 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 800 | dependencies: 801 | once "^1.3.0" 802 | wrappy "1" 803 | 804 | inherits@2, inherits@^2.0.1, inherits@~2.0.3: 805 | version "2.0.3" 806 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 807 | 808 | ini@~1.3.0: 809 | version "1.3.5" 810 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 811 | 812 | invariant@^2.2.2: 813 | version "2.2.4" 814 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" 815 | dependencies: 816 | loose-envify "^1.0.0" 817 | 818 | is-binary-path@^1.0.0: 819 | version "1.0.1" 820 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 821 | dependencies: 822 | binary-extensions "^1.0.0" 823 | 824 | is-buffer@^1.1.5: 825 | version "1.1.6" 826 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 827 | 828 | is-dotfile@^1.0.0: 829 | version "1.0.3" 830 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 831 | 832 | is-equal-shallow@^0.1.3: 833 | version "0.1.3" 834 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 835 | dependencies: 836 | is-primitive "^2.0.0" 837 | 838 | is-extendable@^0.1.1: 839 | version "0.1.1" 840 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 841 | 842 | is-extglob@^1.0.0: 843 | version "1.0.0" 844 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 845 | 846 | is-finite@^1.0.0: 847 | version "1.0.2" 848 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 849 | dependencies: 850 | number-is-nan "^1.0.0" 851 | 852 | is-fullwidth-code-point@^1.0.0: 853 | version "1.0.0" 854 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 855 | dependencies: 856 | number-is-nan "^1.0.0" 857 | 858 | is-glob@^2.0.0, is-glob@^2.0.1: 859 | version "2.0.1" 860 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 861 | dependencies: 862 | is-extglob "^1.0.0" 863 | 864 | is-number@^2.1.0: 865 | version "2.1.0" 866 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 867 | dependencies: 868 | kind-of "^3.0.2" 869 | 870 | is-number@^4.0.0: 871 | version "4.0.0" 872 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" 873 | 874 | is-posix-bracket@^0.1.0: 875 | version "0.1.1" 876 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 877 | 878 | is-primitive@^2.0.0: 879 | version "2.0.0" 880 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 881 | 882 | isarray@1.0.0, isarray@~1.0.0: 883 | version "1.0.0" 884 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 885 | 886 | isobject@^2.0.0: 887 | version "2.1.0" 888 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 889 | dependencies: 890 | isarray "1.0.0" 891 | 892 | js-tokens@^3.0.0, js-tokens@^3.0.2: 893 | version "3.0.2" 894 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 895 | 896 | jsesc@^1.3.0: 897 | version "1.3.0" 898 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 899 | 900 | jsesc@~0.5.0: 901 | version "0.5.0" 902 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 903 | 904 | json5@^0.5.1: 905 | version "0.5.1" 906 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 907 | 908 | kind-of@^3.0.2: 909 | version "3.2.2" 910 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 911 | dependencies: 912 | is-buffer "^1.1.5" 913 | 914 | kind-of@^6.0.0: 915 | version "6.0.2" 916 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 917 | 918 | lodash@^4.17.4: 919 | version "4.17.10" 920 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7" 921 | 922 | loose-envify@^1.0.0: 923 | version "1.3.1" 924 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 925 | dependencies: 926 | js-tokens "^3.0.0" 927 | 928 | math-random@^1.0.1: 929 | version "1.0.1" 930 | resolved "https://registry.yarnpkg.com/math-random/-/math-random-1.0.1.tgz#8b3aac588b8a66e4975e3cdea67f7bb329601fac" 931 | 932 | mi-js-utils@^2.1.0: 933 | version "2.1.0" 934 | resolved "https://registry.yarnpkg.com/mi-js-utils/-/mi-js-utils-2.1.0.tgz#2c9152d631cf98c70ec6c55a408988aa3ae5f4a4" 935 | 936 | micromatch@^2.1.5: 937 | version "2.3.11" 938 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 939 | dependencies: 940 | arr-diff "^2.0.0" 941 | array-unique "^0.2.1" 942 | braces "^1.8.2" 943 | expand-brackets "^0.1.4" 944 | extglob "^0.3.1" 945 | filename-regex "^2.0.0" 946 | is-extglob "^1.0.0" 947 | is-glob "^2.0.1" 948 | kind-of "^3.0.2" 949 | normalize-path "^2.0.1" 950 | object.omit "^2.0.0" 951 | parse-glob "^3.0.4" 952 | regex-cache "^0.4.2" 953 | 954 | minimatch@^3.0.2, minimatch@^3.0.4: 955 | version "3.0.4" 956 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 957 | dependencies: 958 | brace-expansion "^1.1.7" 959 | 960 | minimist@0.0.8: 961 | version "0.0.8" 962 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 963 | 964 | minimist@^1.2.0: 965 | version "1.2.0" 966 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 967 | 968 | minipass@^2.2.1, minipass@^2.2.4: 969 | version "2.3.0" 970 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.0.tgz#2e11b1c46df7fe7f1afbe9a490280add21ffe384" 971 | dependencies: 972 | safe-buffer "^5.1.1" 973 | yallist "^3.0.0" 974 | 975 | minizlib@^1.1.0: 976 | version "1.1.0" 977 | resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.1.0.tgz#11e13658ce46bc3a70a267aac58359d1e0c29ceb" 978 | dependencies: 979 | minipass "^2.2.1" 980 | 981 | mkdirp@^0.5.0, mkdirp@^0.5.1: 982 | version "0.5.1" 983 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 984 | dependencies: 985 | minimist "0.0.8" 986 | 987 | ms@2.0.0: 988 | version "2.0.0" 989 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 990 | 991 | nan@^2.9.2: 992 | version "2.10.0" 993 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.10.0.tgz#96d0cd610ebd58d4b4de9cc0c6828cda99c7548f" 994 | 995 | needle@^2.2.0: 996 | version "2.2.1" 997 | resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.1.tgz#b5e325bd3aae8c2678902fa296f729455d1d3a7d" 998 | dependencies: 999 | debug "^2.1.2" 1000 | iconv-lite "^0.4.4" 1001 | sax "^1.2.4" 1002 | 1003 | node-pre-gyp@^0.10.0: 1004 | version "0.10.0" 1005 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.10.0.tgz#6e4ef5bb5c5203c6552448828c852c40111aac46" 1006 | dependencies: 1007 | detect-libc "^1.0.2" 1008 | mkdirp "^0.5.1" 1009 | needle "^2.2.0" 1010 | nopt "^4.0.1" 1011 | npm-packlist "^1.1.6" 1012 | npmlog "^4.0.2" 1013 | rc "^1.1.7" 1014 | rimraf "^2.6.1" 1015 | semver "^5.3.0" 1016 | tar "^4" 1017 | 1018 | nopt@^4.0.1: 1019 | version "4.0.1" 1020 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1021 | dependencies: 1022 | abbrev "1" 1023 | osenv "^0.1.4" 1024 | 1025 | normalize-path@^2.0.0, normalize-path@^2.0.1: 1026 | version "2.1.1" 1027 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1028 | dependencies: 1029 | remove-trailing-separator "^1.0.1" 1030 | 1031 | npm-bundled@^1.0.1: 1032 | version "1.0.3" 1033 | resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.3.tgz#7e71703d973af3370a9591bafe3a63aca0be2308" 1034 | 1035 | npm-packlist@^1.1.6: 1036 | version "1.1.10" 1037 | resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.1.10.tgz#1039db9e985727e464df066f4cf0ab6ef85c398a" 1038 | dependencies: 1039 | ignore-walk "^3.0.1" 1040 | npm-bundled "^1.0.1" 1041 | 1042 | npmlog@^4.0.2: 1043 | version "4.1.2" 1044 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 1045 | dependencies: 1046 | are-we-there-yet "~1.1.2" 1047 | console-control-strings "~1.1.0" 1048 | gauge "~2.7.3" 1049 | set-blocking "~2.0.0" 1050 | 1051 | number-is-nan@^1.0.0: 1052 | version "1.0.1" 1053 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1054 | 1055 | object-assign@^4.1.0: 1056 | version "4.1.1" 1057 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1058 | 1059 | object.omit@^2.0.0: 1060 | version "2.0.1" 1061 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1062 | dependencies: 1063 | for-own "^0.1.4" 1064 | is-extendable "^0.1.1" 1065 | 1066 | once@^1.3.0: 1067 | version "1.4.0" 1068 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1069 | dependencies: 1070 | wrappy "1" 1071 | 1072 | os-homedir@^1.0.0: 1073 | version "1.0.2" 1074 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1075 | 1076 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 1077 | version "1.0.2" 1078 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1079 | 1080 | osenv@^0.1.4: 1081 | version "0.1.5" 1082 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 1083 | dependencies: 1084 | os-homedir "^1.0.0" 1085 | os-tmpdir "^1.0.0" 1086 | 1087 | output-file-sync@^1.1.2: 1088 | version "1.1.2" 1089 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 1090 | dependencies: 1091 | graceful-fs "^4.1.4" 1092 | mkdirp "^0.5.1" 1093 | object-assign "^4.1.0" 1094 | 1095 | parse-glob@^3.0.4: 1096 | version "3.0.4" 1097 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1098 | dependencies: 1099 | glob-base "^0.3.0" 1100 | is-dotfile "^1.0.0" 1101 | is-extglob "^1.0.0" 1102 | is-glob "^2.0.0" 1103 | 1104 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 1105 | version "1.0.1" 1106 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1107 | 1108 | preserve@^0.2.0: 1109 | version "0.2.0" 1110 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1111 | 1112 | private@^0.1.6, private@^0.1.8: 1113 | version "0.1.8" 1114 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 1115 | 1116 | process-nextick-args@~2.0.0: 1117 | version "2.0.0" 1118 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 1119 | 1120 | randomatic@^3.0.0: 1121 | version "3.0.0" 1122 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-3.0.0.tgz#d35490030eb4f7578de292ce6dfb04a91a128923" 1123 | dependencies: 1124 | is-number "^4.0.0" 1125 | kind-of "^6.0.0" 1126 | math-random "^1.0.1" 1127 | 1128 | rc@^1.1.7: 1129 | version "1.2.7" 1130 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.7.tgz#8a10ca30d588d00464360372b890d06dacd02297" 1131 | dependencies: 1132 | deep-extend "^0.5.1" 1133 | ini "~1.3.0" 1134 | minimist "^1.2.0" 1135 | strip-json-comments "~2.0.1" 1136 | 1137 | readable-stream@^2.0.2, readable-stream@^2.0.6: 1138 | version "2.3.6" 1139 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 1140 | dependencies: 1141 | core-util-is "~1.0.0" 1142 | inherits "~2.0.3" 1143 | isarray "~1.0.0" 1144 | process-nextick-args "~2.0.0" 1145 | safe-buffer "~5.1.1" 1146 | string_decoder "~1.1.1" 1147 | util-deprecate "~1.0.1" 1148 | 1149 | readdirp@^2.0.0: 1150 | version "2.1.0" 1151 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 1152 | dependencies: 1153 | graceful-fs "^4.1.2" 1154 | minimatch "^3.0.2" 1155 | readable-stream "^2.0.2" 1156 | set-immediate-shim "^1.0.1" 1157 | 1158 | redux-devtools-extension@^2.13.2: 1159 | version "2.13.2" 1160 | resolved "https://registry.yarnpkg.com/redux-devtools-extension/-/redux-devtools-extension-2.13.2.tgz#e0f9a8e8dfca7c17be92c7124958a3b94eb2911d" 1161 | 1162 | regenerate@^1.2.1: 1163 | version "1.4.0" 1164 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" 1165 | 1166 | regenerator-runtime@^0.10.5: 1167 | version "0.10.5" 1168 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 1169 | 1170 | regenerator-runtime@^0.11.0: 1171 | version "0.11.1" 1172 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 1173 | 1174 | regenerator-transform@^0.10.0: 1175 | version "0.10.1" 1176 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 1177 | dependencies: 1178 | babel-runtime "^6.18.0" 1179 | babel-types "^6.19.0" 1180 | private "^0.1.6" 1181 | 1182 | regex-cache@^0.4.2: 1183 | version "0.4.4" 1184 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 1185 | dependencies: 1186 | is-equal-shallow "^0.1.3" 1187 | 1188 | regexpu-core@^2.0.0: 1189 | version "2.0.0" 1190 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 1191 | dependencies: 1192 | regenerate "^1.2.1" 1193 | regjsgen "^0.2.0" 1194 | regjsparser "^0.1.4" 1195 | 1196 | regjsgen@^0.2.0: 1197 | version "0.2.0" 1198 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 1199 | 1200 | regjsparser@^0.1.4: 1201 | version "0.1.5" 1202 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 1203 | dependencies: 1204 | jsesc "~0.5.0" 1205 | 1206 | remove-trailing-separator@^1.0.1: 1207 | version "1.1.0" 1208 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 1209 | 1210 | repeat-element@^1.1.2: 1211 | version "1.1.2" 1212 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1213 | 1214 | repeat-string@^1.5.2: 1215 | version "1.6.1" 1216 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1217 | 1218 | repeating@^2.0.0: 1219 | version "2.0.1" 1220 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1221 | dependencies: 1222 | is-finite "^1.0.0" 1223 | 1224 | rimraf@^2.6.1: 1225 | version "2.6.2" 1226 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 1227 | dependencies: 1228 | glob "^7.0.5" 1229 | 1230 | safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 1231 | version "5.1.2" 1232 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 1233 | 1234 | "safer-buffer@>= 2.1.2 < 3": 1235 | version "2.1.2" 1236 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 1237 | 1238 | sax@^1.2.4: 1239 | version "1.2.4" 1240 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 1241 | 1242 | semver@^5.3.0: 1243 | version "5.5.0" 1244 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 1245 | 1246 | set-blocking@~2.0.0: 1247 | version "2.0.0" 1248 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1249 | 1250 | set-immediate-shim@^1.0.1: 1251 | version "1.0.1" 1252 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 1253 | 1254 | signal-exit@^3.0.0: 1255 | version "3.0.2" 1256 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 1257 | 1258 | slash@^1.0.0: 1259 | version "1.0.0" 1260 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 1261 | 1262 | source-map-support@^0.4.15: 1263 | version "0.4.18" 1264 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 1265 | dependencies: 1266 | source-map "^0.5.6" 1267 | 1268 | source-map@^0.5.6, source-map@^0.5.7: 1269 | version "0.5.7" 1270 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 1271 | 1272 | string-width@^1.0.1, string-width@^1.0.2: 1273 | version "1.0.2" 1274 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1275 | dependencies: 1276 | code-point-at "^1.0.0" 1277 | is-fullwidth-code-point "^1.0.0" 1278 | strip-ansi "^3.0.0" 1279 | 1280 | string_decoder@~1.1.1: 1281 | version "1.1.1" 1282 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 1283 | dependencies: 1284 | safe-buffer "~5.1.0" 1285 | 1286 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 1287 | version "3.0.1" 1288 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1289 | dependencies: 1290 | ansi-regex "^2.0.0" 1291 | 1292 | strip-json-comments@~2.0.1: 1293 | version "2.0.1" 1294 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 1295 | 1296 | supports-color@^2.0.0: 1297 | version "2.0.0" 1298 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 1299 | 1300 | tar@^4: 1301 | version "4.4.2" 1302 | resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.2.tgz#60685211ba46b38847b1ae7ee1a24d744a2cd462" 1303 | dependencies: 1304 | chownr "^1.0.1" 1305 | fs-minipass "^1.2.5" 1306 | minipass "^2.2.4" 1307 | minizlib "^1.1.0" 1308 | mkdirp "^0.5.0" 1309 | safe-buffer "^5.1.2" 1310 | yallist "^3.0.2" 1311 | 1312 | to-fast-properties@^1.0.3: 1313 | version "1.0.3" 1314 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 1315 | 1316 | trim-right@^1.0.1: 1317 | version "1.0.1" 1318 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 1319 | 1320 | user-home@^1.1.1: 1321 | version "1.1.1" 1322 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 1323 | 1324 | util-deprecate@~1.0.1: 1325 | version "1.0.2" 1326 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1327 | 1328 | v8flags@^2.1.1: 1329 | version "2.1.1" 1330 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 1331 | dependencies: 1332 | user-home "^1.1.1" 1333 | 1334 | wide-align@^1.1.0: 1335 | version "1.1.2" 1336 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 1337 | dependencies: 1338 | string-width "^1.0.2" 1339 | 1340 | wrappy@1: 1341 | version "1.0.2" 1342 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1343 | 1344 | yallist@^3.0.0, yallist@^3.0.2: 1345 | version "3.0.2" 1346 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.2.tgz#8452b4bb7e83c7c188d8041c1a837c773d6d8bb9" 1347 | -------------------------------------------------------------------------------- /packages/inori-native/.npmignore: -------------------------------------------------------------------------------- 1 | # Created by .ignore support plugin (hsz.mobi) 2 | .*.swp 3 | ._* 4 | .DS_Store 5 | .git 6 | .idea 7 | .hg 8 | .npmrc 9 | .lock-wscript 10 | .svn 11 | .wafpickle-* 12 | .idea/ 13 | src/ 14 | config.gypi 15 | CVS 16 | npm-debug.log -------------------------------------------------------------------------------- /packages/inori-native/README.md: -------------------------------------------------------------------------------- 1 | # wow 2 | Inspired by Dva. 3 | basic package based on reudx, redux-observable. 4 | 5 | #### compared to dva: 6 | ##### G: 7 | * 没有侵入性 8 | * 预留default reducer处理,支持高阶reducer 9 | * 对旧项目友好,改造成本极低 10 | * 能够使用rx 方法,对异步有强处理能力 11 | 12 | ##### NG: 13 | * 强依赖rxjs,比较笨重 14 | 15 | 16 | ### Install 17 | ``` 18 | npm install inori 19 | ``` 20 | 21 | ### peer dependency 22 | ``` 23 | "react", 24 | "react-dom", 25 | "react-redux", 26 | "redux", 27 |    "redux-observable", 28 |    "rxjs", 29 | ``` 30 | 31 | ### Usage 32 | 33 | write model: 34 | ``` 35 | const model = { 36 | namespace: 'coupon', 37 | state: { 38 | details: {}, 39 | records: [], 40 | }, 41 | epics:{ 42 | loadCopon: (action$, store) => { 43 | return action$.ofType('coupon/loadCoupon') 44 | .map((action) => { 45 | return {type: 1} 46 | }); 47 | }, 48 | }, 49 | reducers: { 50 | showLoading(state, action){ 51 | return {...state, loading: true}; 52 | }, 53 | // handle high order reducer 54 | default(state, action){ 55 | return state; 56 | } 57 | } 58 | }; 59 | 60 | 61 | export default model; 62 | ``` 63 | 64 | write page: 65 | ``` 66 | import React,{PureComponent} from 'react'; 67 | import {connect} from 'react-redux'; 68 | import inori from 'inori'; 69 | 70 | const {createAction} = inori; 71 | 72 | class Page extends PureComponent{ 73 | constructor(props){ 74 | super(props); 75 | } 76 | 77 | componentDidMount(){ 78 | this.props.loadCoupon(); 79 | } 80 | 81 | 82 | render(){ 83 | console.log(this.props); 84 | 85 | return ( 86 |
87 | this is page super 88 |
89 | ); 90 | } 91 | } 92 | 93 | 94 | export default connect((state) => { 95 | return {state}; 96 | }, { 97 | loadCoupon: createAction('coupon/loadCoupon') 98 | })(Page); 99 | ``` 100 | 101 | write entry file: 102 | ``` 103 | import inori from 'inori'; 104 | import model from './activity/demo/model'; 105 | import Page from "./activity/demo/Page"; 106 | 107 | inori.addModel(model); 108 | 109 | inori.start(Page, 'root'); 110 | 111 | ``` 112 | 113 | ### API 114 | 115 | ``` 116 | addModel(model) : add model for inori 117 | ``` 118 | 119 | ``` 120 | start(Root, 'domId'): start inori 121 | ``` 122 | 123 | ``` 124 | createAction(actionName): simple action create for connect view 125 | ``` 126 | 127 | ``` 128 | addReducer(reducerKey, reducerHandle): push origin reducer handle to inori control 129 | ``` 130 | 131 | ``` 132 | addEpic(epic or epic Array): push origin epic to inori control 133 | ``` 134 | 135 | ``` 136 | addPlugin(pluginKey, plugin): inject dependency to redux-observable 137 | ``` 138 | 139 | ``` 140 | addMiddleware(middlewares or middleware): redux middleware 141 | ``` 142 | 143 | ### TODO 144 | * [ ] replece reducer 145 | * [ ] reducer version conflict 146 | * [ ] epic replace 147 | * [ ] plugin system(doing) 148 | -------------------------------------------------------------------------------- /packages/inori-native/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "inori-native", 3 | "version": "0.3.5", 4 | "main": "dist/index.js", 5 | "repository": "https://github.com/YouHan26/wow.git", 6 | "author": "YouHan26 ", 7 | "license": "MIT", 8 | "dependencies": { 9 | "inori-core": "^0.2.0" 10 | }, 11 | "scripts": { 12 | "build": "babel src --presets es2015,react --out-dir dist", 13 | "prepublish": "npm run build" 14 | }, 15 | "peerDependencies": { 16 | "react": "^15.3.2", 17 | "react-redux": "^5.0.7", 18 | "redux": "^3.0.0", 19 | "redux-observable": "^0.18.0" 20 | }, 21 | "devDependencies": { 22 | "babel-cli": "^6.26.0", 23 | "babel-preset-es2015": "^6.24.1", 24 | "babel-preset-react": "^6.24.1", 25 | "remote-redux-devtools": "^0.5.12" 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /packages/inori-native/src/getStoreConfigure.js: -------------------------------------------------------------------------------- 1 | import {compose} from "redux"; 2 | import {Platform} from 'react-native'; 3 | import devTools from 'remote-redux-devtools'; 4 | import {isDev} from './utils'; 5 | 6 | const devtool = devTools({ 7 | name: Platform.OS, 8 | hostname: 'localhost', 9 | port: 5678 10 | }); 11 | 12 | const getStoreConfigure = () => { 13 | return { 14 | compose: compose, 15 | enhance: isDev() ? devtool : null 16 | } 17 | }; 18 | 19 | export default getStoreConfigure; -------------------------------------------------------------------------------- /packages/inori-native/src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import core from 'inori-core'; 3 | import {Provider} from 'react-redux'; 4 | import getStoreConfigure from "./getStoreConfigure"; 5 | 6 | let _store; 7 | 8 | function _getStore() { 9 | return _store; 10 | } 11 | 12 | function _start(Root) { 13 | const {compose, enhance} = getStoreConfigure(); 14 | core.createConfigureStore(compose, enhance); 15 | 16 | _store = core.createStore(); 17 | 18 | 19 | return () => { 20 | return ( 21 | 22 | 23 | 24 | ); 25 | }; 26 | } 27 | 28 | export default { 29 | addModel: core.addModel, 30 | createAction: core.createAction, 31 | addReducer: core.addReducer, 32 | addEpic: core.addEpic, 33 | addPlugin: core.addPlugin, 34 | addMiddleware: core.addMiddleware, 35 | 36 | start: _start, 37 | getStore: _getStore, 38 | } 39 | -------------------------------------------------------------------------------- /packages/inori-native/src/utils.js: -------------------------------------------------------------------------------- 1 | const isDev = () => { 2 | return __DEV__; 3 | }; 4 | 5 | 6 | export { 7 | isDev, 8 | }; -------------------------------------------------------------------------------- /packages/inori/.npmignore: -------------------------------------------------------------------------------- 1 | # Created by .ignore support plugin (hsz.mobi) 2 | .*.swp 3 | ._* 4 | .DS_Store 5 | .git 6 | .idea 7 | .hg 8 | .npmrc 9 | .lock-wscript 10 | .svn 11 | .wafpickle-* 12 | .idea/ 13 | src/ 14 | config.gypi 15 | CVS 16 | npm-debug.log -------------------------------------------------------------------------------- /packages/inori/README.md: -------------------------------------------------------------------------------- 1 | # wow 2 | Inspired by Dva. 3 | basic package based on reudx, redux-observable. 4 | 5 | #### compared to dva: 6 | ##### G: 7 | * 没有侵入性 8 | * 预留default reducer处理,支持高阶reducer 9 | * 对旧项目友好,改造成本极低 10 | * 能够使用rx 方法,对异步有强处理能力 11 | 12 | ##### NG: 13 | * 强依赖rxjs,比较笨重 14 | 15 | 16 | ### Install 17 | ``` 18 | npm install inori 19 | ``` 20 | 21 | ### peer dependency 22 | ``` 23 | "react", 24 | "react-dom", 25 | "react-redux", 26 | "redux", 27 |    "redux-observable", 28 |    "rxjs", 29 | ``` 30 | 31 | ### Usage 32 | 33 | write model: 34 | ``` 35 | const model = { 36 | namespace: 'coupon', 37 | state: { 38 | details: {}, 39 | records: [], 40 | }, 41 | epics:{ 42 | loadCopon: (action$, store) => { 43 | return action$.ofType('coupon/loadCoupon') 44 | .map((action) => { 45 | return {type: 1} 46 | }); 47 | }, 48 | }, 49 | reducers: { 50 | showLoading(state, action){ 51 | return {...state, loading: true}; 52 | }, 53 | // handle high order reducer 54 | default(state, action){ 55 | return state; 56 | } 57 | } 58 | }; 59 | 60 | 61 | export default model; 62 | ``` 63 | 64 | write page: 65 | ``` 66 | import React,{PureComponent} from 'react'; 67 | import {connect} from 'react-redux'; 68 | import inori from 'inori'; 69 | 70 | const {createAction} = inori; 71 | 72 | class Page extends PureComponent{ 73 | constructor(props){ 74 | super(props); 75 | } 76 | 77 | componentDidMount(){ 78 | this.props.loadCoupon(); 79 | } 80 | 81 | 82 | render(){ 83 | console.log(this.props); 84 | 85 | return ( 86 |
87 | this is page super 88 |
89 | ); 90 | } 91 | } 92 | 93 | 94 | export default connect((state) => { 95 | return {state}; 96 | }, { 97 | loadCoupon: createAction('coupon/loadCoupon') 98 | })(Page); 99 | ``` 100 | 101 | write entry file: 102 | ``` 103 | import inori from 'inori'; 104 | import model from './activity/demo/model'; 105 | import Page from "./activity/demo/Page"; 106 | 107 | inori.addModel(model); 108 | 109 | inori.start(Page, 'root'); 110 | 111 | ``` 112 | 113 | ### API 114 | 115 | ``` 116 | addModel(model) : add model for inori 117 | ``` 118 | 119 | ``` 120 | start(Root, 'domId'): start inori 121 | ``` 122 | 123 | ``` 124 | createAction(actionName): simple action create for connect view 125 | ``` 126 | 127 | ``` 128 | addReducer(reducerKey, reducerHandle): push origin reducer handle to inori control 129 | ``` 130 | 131 | ``` 132 | addEpic(epic or epic Array): push origin epic to inori control 133 | ``` 134 | 135 | ``` 136 | addPlugin(pluginKey, plugin): inject dependency to redux-observable 137 | ``` 138 | 139 | ``` 140 | addMiddleware(middlewares or middleware): redux middleware 141 | ``` 142 | 143 | ### TODO 144 | * [ ] replece reducer 145 | * [ ] reducer version conflict 146 | * [ ] epic replace 147 | * [ ] plugin system(doing) 148 | -------------------------------------------------------------------------------- /packages/inori/dist/getStoreConfigure.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | Object.defineProperty(exports, "__esModule", { 4 | value: true 5 | }); 6 | 7 | var _redux = require("redux"); 8 | 9 | var _reduxDevtoolsExtension = require("redux-devtools-extension"); 10 | 11 | var _utils = require("./utils"); 12 | 13 | var getStoreConfigure = function getStoreConfigure() { 14 | return { 15 | compose: (0, _utils.isDev)() ? _reduxDevtoolsExtension.composeWithDevTools : _redux.compose, 16 | enhance: null 17 | }; 18 | }; 19 | 20 | exports.default = getStoreConfigure; -------------------------------------------------------------------------------- /packages/inori/dist/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, "__esModule", { 4 | value: true 5 | }); 6 | 7 | var _react = require('react'); 8 | 9 | var _react2 = _interopRequireDefault(_react); 10 | 11 | var _reactDom = require('react-dom'); 12 | 13 | var _reactDom2 = _interopRequireDefault(_reactDom); 14 | 15 | var _reactRedux = require('react-redux'); 16 | 17 | var _inoriCore = require('inori-core'); 18 | 19 | var _inoriCore2 = _interopRequireDefault(_inoriCore); 20 | 21 | var _getStoreConfigure2 = require('./getStoreConfigure'); 22 | 23 | var _getStoreConfigure3 = _interopRequireDefault(_getStoreConfigure2); 24 | 25 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } 26 | 27 | var _store = void 0; 28 | 29 | function _getStore() { 30 | return _store; 31 | } 32 | 33 | function _start(Root, domId) { 34 | var _getStoreConfigure = (0, _getStoreConfigure3.default)(), 35 | compose = _getStoreConfigure.compose, 36 | enhance = _getStoreConfigure.enhance; 37 | 38 | _inoriCore2.default.createConfigureStore(compose, enhance); 39 | 40 | _store = _inoriCore2.default.createStore(); 41 | 42 | var App = function App() { 43 | return _react2.default.createElement( 44 | _reactRedux.Provider, 45 | { store: _store }, 46 | _react2.default.createElement(Root, null) 47 | ); 48 | }; 49 | _reactDom2.default.render(_react2.default.createElement(App, null), document.getElementById(domId)); 50 | } 51 | 52 | exports.default = { 53 | addModel: _inoriCore2.default.addModel, 54 | createAction: _inoriCore2.default.createAction, 55 | addReducer: _inoriCore2.default.addReducer, 56 | addEpic: _inoriCore2.default.addEpic, 57 | addPlugin: _inoriCore2.default.addPlugin, 58 | addMiddleware: _inoriCore2.default.addMiddleware, 59 | start: _start, 60 | getStore: _getStore 61 | }; -------------------------------------------------------------------------------- /packages/inori/dist/utils.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, "__esModule", { 4 | value: true 5 | }); 6 | var isDev = function isDev() { 7 | return process.env.REACT_APP_PROJECT_ENV === 'development'; 8 | }; 9 | 10 | exports.isDev = isDev; -------------------------------------------------------------------------------- /packages/inori/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "inori", 3 | "version": "1.10.8", 4 | "main": "dist/index.js", 5 | "repository": "https://github.com/YouHan26/wow.git", 6 | "author": "YouHan26 ", 7 | "license": "MIT", 8 | "dependencies": { 9 | "inori": "^1.10.4", 10 | "inori-core": "^0.1.9" 11 | }, 12 | "scripts": { 13 | "build": "babel src --presets es2015,react --out-dir dist", 14 | "prepublish": "npm run build" 15 | }, 16 | "peerDependencies": { 17 | "react": "^15.3.2", 18 | "react-dom": "^15.3.2", 19 | "react-redux": "^5.0.7", 20 | "redux": "^3.0.0", 21 | "redux-observable": "^0.18.0" 22 | }, 23 | "devDependencies": { 24 | "babel-cli": "^6.26.0", 25 | "babel-preset-es2015": "^6.24.1", 26 | "babel-preset-react": "^6.24.1", 27 | "redux-devtools-extension": "^2.13.5" 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /packages/inori/src/getStoreConfigure.js: -------------------------------------------------------------------------------- 1 | import {compose} from "redux"; 2 | import {composeWithDevTools} from "redux-devtools-extension"; 3 | import {isDev} from './utils'; 4 | 5 | 6 | const getStoreConfigure = () => { 7 | return { 8 | compose: isDev() ? composeWithDevTools : compose, 9 | enhance: null 10 | } 11 | }; 12 | 13 | 14 | export default getStoreConfigure; -------------------------------------------------------------------------------- /packages/inori/src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import {Provider} from 'react-redux'; 4 | import core from 'inori-core'; 5 | import getStoreConfigure from "./getStoreConfigure"; 6 | 7 | let _store; 8 | 9 | function _getStore() { 10 | return _store; 11 | } 12 | 13 | function _start(Root, domId) { 14 | const {compose, enhance} = getStoreConfigure(); 15 | core.createConfigureStore(compose, enhance); 16 | 17 | _store = core.createStore(); 18 | 19 | const App = () => { 20 | return ( 21 | 22 | 23 | 24 | ); 25 | }; 26 | ReactDOM.render(, document.getElementById(domId)); 27 | } 28 | 29 | 30 | export default { 31 | addModel: core.addModel, 32 | createAction: core.createAction, 33 | addReducer: core.addReducer, 34 | addEpic: core.addEpic, 35 | addPlugin: core.addPlugin, 36 | addMiddleware: core.addMiddleware, 37 | start: _start, 38 | getStore: _getStore, 39 | } 40 | -------------------------------------------------------------------------------- /packages/inori/src/utils.js: -------------------------------------------------------------------------------- 1 | const isDev = () => { 2 | return process.env.REACT_APP_PROJECT_ENV === 'development'; 3 | }; 4 | 5 | export { 6 | isDev 7 | }; -------------------------------------------------------------------------------- /packages/inori/yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abbrev@1: 6 | version "1.1.1" 7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 8 | 9 | ansi-regex@^2.0.0: 10 | version "2.1.1" 11 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 12 | 13 | ansi-styles@^2.2.1: 14 | version "2.2.1" 15 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 16 | 17 | anymatch@^1.3.0: 18 | version "1.3.2" 19 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 20 | dependencies: 21 | micromatch "^2.1.5" 22 | normalize-path "^2.0.0" 23 | 24 | aproba@^1.0.3: 25 | version "1.2.0" 26 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 27 | 28 | are-we-there-yet@~1.1.2: 29 | version "1.1.4" 30 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 31 | dependencies: 32 | delegates "^1.0.0" 33 | readable-stream "^2.0.6" 34 | 35 | arr-diff@^2.0.0: 36 | version "2.0.0" 37 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 38 | dependencies: 39 | arr-flatten "^1.0.1" 40 | 41 | arr-flatten@^1.0.1: 42 | version "1.1.0" 43 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 44 | 45 | array-unique@^0.2.1: 46 | version "0.2.1" 47 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 48 | 49 | async-each@^1.0.0: 50 | version "1.0.1" 51 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 52 | 53 | babel-cli@^6.26.0: 54 | version "6.26.0" 55 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.26.0.tgz#502ab54874d7db88ad00b887a06383ce03d002f1" 56 | dependencies: 57 | babel-core "^6.26.0" 58 | babel-polyfill "^6.26.0" 59 | babel-register "^6.26.0" 60 | babel-runtime "^6.26.0" 61 | commander "^2.11.0" 62 | convert-source-map "^1.5.0" 63 | fs-readdir-recursive "^1.0.0" 64 | glob "^7.1.2" 65 | lodash "^4.17.4" 66 | output-file-sync "^1.1.2" 67 | path-is-absolute "^1.0.1" 68 | slash "^1.0.0" 69 | source-map "^0.5.6" 70 | v8flags "^2.1.1" 71 | optionalDependencies: 72 | chokidar "^1.6.1" 73 | 74 | babel-code-frame@^6.26.0: 75 | version "6.26.0" 76 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 77 | dependencies: 78 | chalk "^1.1.3" 79 | esutils "^2.0.2" 80 | js-tokens "^3.0.2" 81 | 82 | babel-core@^6.26.0: 83 | version "6.26.3" 84 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.3.tgz#b2e2f09e342d0f0c88e2f02e067794125e75c207" 85 | dependencies: 86 | babel-code-frame "^6.26.0" 87 | babel-generator "^6.26.0" 88 | babel-helpers "^6.24.1" 89 | babel-messages "^6.23.0" 90 | babel-register "^6.26.0" 91 | babel-runtime "^6.26.0" 92 | babel-template "^6.26.0" 93 | babel-traverse "^6.26.0" 94 | babel-types "^6.26.0" 95 | babylon "^6.18.0" 96 | convert-source-map "^1.5.1" 97 | debug "^2.6.9" 98 | json5 "^0.5.1" 99 | lodash "^4.17.4" 100 | minimatch "^3.0.4" 101 | path-is-absolute "^1.0.1" 102 | private "^0.1.8" 103 | slash "^1.0.0" 104 | source-map "^0.5.7" 105 | 106 | babel-generator@^6.26.0: 107 | version "6.26.1" 108 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" 109 | dependencies: 110 | babel-messages "^6.23.0" 111 | babel-runtime "^6.26.0" 112 | babel-types "^6.26.0" 113 | detect-indent "^4.0.0" 114 | jsesc "^1.3.0" 115 | lodash "^4.17.4" 116 | source-map "^0.5.7" 117 | trim-right "^1.0.1" 118 | 119 | babel-helper-builder-react-jsx@^6.24.1: 120 | version "6.26.0" 121 | resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz#39ff8313b75c8b65dceff1f31d383e0ff2a408a0" 122 | dependencies: 123 | babel-runtime "^6.26.0" 124 | babel-types "^6.26.0" 125 | esutils "^2.0.2" 126 | 127 | babel-helper-call-delegate@^6.24.1: 128 | version "6.24.1" 129 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 130 | dependencies: 131 | babel-helper-hoist-variables "^6.24.1" 132 | babel-runtime "^6.22.0" 133 | babel-traverse "^6.24.1" 134 | babel-types "^6.24.1" 135 | 136 | babel-helper-define-map@^6.24.1: 137 | version "6.26.0" 138 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 139 | dependencies: 140 | babel-helper-function-name "^6.24.1" 141 | babel-runtime "^6.26.0" 142 | babel-types "^6.26.0" 143 | lodash "^4.17.4" 144 | 145 | babel-helper-function-name@^6.24.1: 146 | version "6.24.1" 147 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 148 | dependencies: 149 | babel-helper-get-function-arity "^6.24.1" 150 | babel-runtime "^6.22.0" 151 | babel-template "^6.24.1" 152 | babel-traverse "^6.24.1" 153 | babel-types "^6.24.1" 154 | 155 | babel-helper-get-function-arity@^6.24.1: 156 | version "6.24.1" 157 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 158 | dependencies: 159 | babel-runtime "^6.22.0" 160 | babel-types "^6.24.1" 161 | 162 | babel-helper-hoist-variables@^6.24.1: 163 | version "6.24.1" 164 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 165 | dependencies: 166 | babel-runtime "^6.22.0" 167 | babel-types "^6.24.1" 168 | 169 | babel-helper-optimise-call-expression@^6.24.1: 170 | version "6.24.1" 171 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 172 | dependencies: 173 | babel-runtime "^6.22.0" 174 | babel-types "^6.24.1" 175 | 176 | babel-helper-regex@^6.24.1: 177 | version "6.26.0" 178 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 179 | dependencies: 180 | babel-runtime "^6.26.0" 181 | babel-types "^6.26.0" 182 | lodash "^4.17.4" 183 | 184 | babel-helper-replace-supers@^6.24.1: 185 | version "6.24.1" 186 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 187 | dependencies: 188 | babel-helper-optimise-call-expression "^6.24.1" 189 | babel-messages "^6.23.0" 190 | babel-runtime "^6.22.0" 191 | babel-template "^6.24.1" 192 | babel-traverse "^6.24.1" 193 | babel-types "^6.24.1" 194 | 195 | babel-helpers@^6.24.1: 196 | version "6.24.1" 197 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 198 | dependencies: 199 | babel-runtime "^6.22.0" 200 | babel-template "^6.24.1" 201 | 202 | babel-messages@^6.23.0: 203 | version "6.23.0" 204 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 205 | dependencies: 206 | babel-runtime "^6.22.0" 207 | 208 | babel-plugin-check-es2015-constants@^6.22.0: 209 | version "6.22.0" 210 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 211 | dependencies: 212 | babel-runtime "^6.22.0" 213 | 214 | babel-plugin-syntax-flow@^6.18.0: 215 | version "6.18.0" 216 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" 217 | 218 | babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0: 219 | version "6.18.0" 220 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" 221 | 222 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 223 | version "6.22.0" 224 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 225 | dependencies: 226 | babel-runtime "^6.22.0" 227 | 228 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 229 | version "6.22.0" 230 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 231 | dependencies: 232 | babel-runtime "^6.22.0" 233 | 234 | babel-plugin-transform-es2015-block-scoping@^6.24.1: 235 | version "6.26.0" 236 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 237 | dependencies: 238 | babel-runtime "^6.26.0" 239 | babel-template "^6.26.0" 240 | babel-traverse "^6.26.0" 241 | babel-types "^6.26.0" 242 | lodash "^4.17.4" 243 | 244 | babel-plugin-transform-es2015-classes@^6.24.1: 245 | version "6.24.1" 246 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 247 | dependencies: 248 | babel-helper-define-map "^6.24.1" 249 | babel-helper-function-name "^6.24.1" 250 | babel-helper-optimise-call-expression "^6.24.1" 251 | babel-helper-replace-supers "^6.24.1" 252 | babel-messages "^6.23.0" 253 | babel-runtime "^6.22.0" 254 | babel-template "^6.24.1" 255 | babel-traverse "^6.24.1" 256 | babel-types "^6.24.1" 257 | 258 | babel-plugin-transform-es2015-computed-properties@^6.24.1: 259 | version "6.24.1" 260 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 261 | dependencies: 262 | babel-runtime "^6.22.0" 263 | babel-template "^6.24.1" 264 | 265 | babel-plugin-transform-es2015-destructuring@^6.22.0: 266 | version "6.23.0" 267 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 268 | dependencies: 269 | babel-runtime "^6.22.0" 270 | 271 | babel-plugin-transform-es2015-duplicate-keys@^6.24.1: 272 | version "6.24.1" 273 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 274 | dependencies: 275 | babel-runtime "^6.22.0" 276 | babel-types "^6.24.1" 277 | 278 | babel-plugin-transform-es2015-for-of@^6.22.0: 279 | version "6.23.0" 280 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 281 | dependencies: 282 | babel-runtime "^6.22.0" 283 | 284 | babel-plugin-transform-es2015-function-name@^6.24.1: 285 | version "6.24.1" 286 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 287 | dependencies: 288 | babel-helper-function-name "^6.24.1" 289 | babel-runtime "^6.22.0" 290 | babel-types "^6.24.1" 291 | 292 | babel-plugin-transform-es2015-literals@^6.22.0: 293 | version "6.22.0" 294 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 295 | dependencies: 296 | babel-runtime "^6.22.0" 297 | 298 | babel-plugin-transform-es2015-modules-amd@^6.24.1: 299 | version "6.24.1" 300 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 301 | dependencies: 302 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 303 | babel-runtime "^6.22.0" 304 | babel-template "^6.24.1" 305 | 306 | babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 307 | version "6.26.2" 308 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz#58a793863a9e7ca870bdc5a881117ffac27db6f3" 309 | dependencies: 310 | babel-plugin-transform-strict-mode "^6.24.1" 311 | babel-runtime "^6.26.0" 312 | babel-template "^6.26.0" 313 | babel-types "^6.26.0" 314 | 315 | babel-plugin-transform-es2015-modules-systemjs@^6.24.1: 316 | version "6.24.1" 317 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 318 | dependencies: 319 | babel-helper-hoist-variables "^6.24.1" 320 | babel-runtime "^6.22.0" 321 | babel-template "^6.24.1" 322 | 323 | babel-plugin-transform-es2015-modules-umd@^6.24.1: 324 | version "6.24.1" 325 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 326 | dependencies: 327 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 328 | babel-runtime "^6.22.0" 329 | babel-template "^6.24.1" 330 | 331 | babel-plugin-transform-es2015-object-super@^6.24.1: 332 | version "6.24.1" 333 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 334 | dependencies: 335 | babel-helper-replace-supers "^6.24.1" 336 | babel-runtime "^6.22.0" 337 | 338 | babel-plugin-transform-es2015-parameters@^6.24.1: 339 | version "6.24.1" 340 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 341 | dependencies: 342 | babel-helper-call-delegate "^6.24.1" 343 | babel-helper-get-function-arity "^6.24.1" 344 | babel-runtime "^6.22.0" 345 | babel-template "^6.24.1" 346 | babel-traverse "^6.24.1" 347 | babel-types "^6.24.1" 348 | 349 | babel-plugin-transform-es2015-shorthand-properties@^6.24.1: 350 | version "6.24.1" 351 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 352 | dependencies: 353 | babel-runtime "^6.22.0" 354 | babel-types "^6.24.1" 355 | 356 | babel-plugin-transform-es2015-spread@^6.22.0: 357 | version "6.22.0" 358 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 359 | dependencies: 360 | babel-runtime "^6.22.0" 361 | 362 | babel-plugin-transform-es2015-sticky-regex@^6.24.1: 363 | version "6.24.1" 364 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 365 | dependencies: 366 | babel-helper-regex "^6.24.1" 367 | babel-runtime "^6.22.0" 368 | babel-types "^6.24.1" 369 | 370 | babel-plugin-transform-es2015-template-literals@^6.22.0: 371 | version "6.22.0" 372 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 373 | dependencies: 374 | babel-runtime "^6.22.0" 375 | 376 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0: 377 | version "6.23.0" 378 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 379 | dependencies: 380 | babel-runtime "^6.22.0" 381 | 382 | babel-plugin-transform-es2015-unicode-regex@^6.24.1: 383 | version "6.24.1" 384 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 385 | dependencies: 386 | babel-helper-regex "^6.24.1" 387 | babel-runtime "^6.22.0" 388 | regexpu-core "^2.0.0" 389 | 390 | babel-plugin-transform-flow-strip-types@^6.22.0: 391 | version "6.22.0" 392 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" 393 | dependencies: 394 | babel-plugin-syntax-flow "^6.18.0" 395 | babel-runtime "^6.22.0" 396 | 397 | babel-plugin-transform-react-display-name@^6.23.0: 398 | version "6.25.0" 399 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz#67e2bf1f1e9c93ab08db96792e05392bf2cc28d1" 400 | dependencies: 401 | babel-runtime "^6.22.0" 402 | 403 | babel-plugin-transform-react-jsx-self@^6.22.0: 404 | version "6.22.0" 405 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e" 406 | dependencies: 407 | babel-plugin-syntax-jsx "^6.8.0" 408 | babel-runtime "^6.22.0" 409 | 410 | babel-plugin-transform-react-jsx-source@^6.22.0: 411 | version "6.22.0" 412 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6" 413 | dependencies: 414 | babel-plugin-syntax-jsx "^6.8.0" 415 | babel-runtime "^6.22.0" 416 | 417 | babel-plugin-transform-react-jsx@^6.24.1: 418 | version "6.24.1" 419 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3" 420 | dependencies: 421 | babel-helper-builder-react-jsx "^6.24.1" 422 | babel-plugin-syntax-jsx "^6.8.0" 423 | babel-runtime "^6.22.0" 424 | 425 | babel-plugin-transform-regenerator@^6.24.1: 426 | version "6.26.0" 427 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 428 | dependencies: 429 | regenerator-transform "^0.10.0" 430 | 431 | babel-plugin-transform-strict-mode@^6.24.1: 432 | version "6.24.1" 433 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 434 | dependencies: 435 | babel-runtime "^6.22.0" 436 | babel-types "^6.24.1" 437 | 438 | babel-polyfill@^6.26.0: 439 | version "6.26.0" 440 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" 441 | dependencies: 442 | babel-runtime "^6.26.0" 443 | core-js "^2.5.0" 444 | regenerator-runtime "^0.10.5" 445 | 446 | babel-preset-es2015@^6.24.1: 447 | version "6.24.1" 448 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939" 449 | dependencies: 450 | babel-plugin-check-es2015-constants "^6.22.0" 451 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 452 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 453 | babel-plugin-transform-es2015-block-scoping "^6.24.1" 454 | babel-plugin-transform-es2015-classes "^6.24.1" 455 | babel-plugin-transform-es2015-computed-properties "^6.24.1" 456 | babel-plugin-transform-es2015-destructuring "^6.22.0" 457 | babel-plugin-transform-es2015-duplicate-keys "^6.24.1" 458 | babel-plugin-transform-es2015-for-of "^6.22.0" 459 | babel-plugin-transform-es2015-function-name "^6.24.1" 460 | babel-plugin-transform-es2015-literals "^6.22.0" 461 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 462 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 463 | babel-plugin-transform-es2015-modules-systemjs "^6.24.1" 464 | babel-plugin-transform-es2015-modules-umd "^6.24.1" 465 | babel-plugin-transform-es2015-object-super "^6.24.1" 466 | babel-plugin-transform-es2015-parameters "^6.24.1" 467 | babel-plugin-transform-es2015-shorthand-properties "^6.24.1" 468 | babel-plugin-transform-es2015-spread "^6.22.0" 469 | babel-plugin-transform-es2015-sticky-regex "^6.24.1" 470 | babel-plugin-transform-es2015-template-literals "^6.22.0" 471 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 472 | babel-plugin-transform-es2015-unicode-regex "^6.24.1" 473 | babel-plugin-transform-regenerator "^6.24.1" 474 | 475 | babel-preset-flow@^6.23.0: 476 | version "6.23.0" 477 | resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d" 478 | dependencies: 479 | babel-plugin-transform-flow-strip-types "^6.22.0" 480 | 481 | babel-preset-react@^6.24.1: 482 | version "6.24.1" 483 | resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.24.1.tgz#ba69dfaea45fc3ec639b6a4ecea6e17702c91380" 484 | dependencies: 485 | babel-plugin-syntax-jsx "^6.3.13" 486 | babel-plugin-transform-react-display-name "^6.23.0" 487 | babel-plugin-transform-react-jsx "^6.24.1" 488 | babel-plugin-transform-react-jsx-self "^6.22.0" 489 | babel-plugin-transform-react-jsx-source "^6.22.0" 490 | babel-preset-flow "^6.23.0" 491 | 492 | babel-register@^6.26.0: 493 | version "6.26.0" 494 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 495 | dependencies: 496 | babel-core "^6.26.0" 497 | babel-runtime "^6.26.0" 498 | core-js "^2.5.0" 499 | home-or-tmp "^2.0.0" 500 | lodash "^4.17.4" 501 | mkdirp "^0.5.1" 502 | source-map-support "^0.4.15" 503 | 504 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 505 | version "6.26.0" 506 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 507 | dependencies: 508 | core-js "^2.4.0" 509 | regenerator-runtime "^0.11.0" 510 | 511 | babel-template@^6.24.1, babel-template@^6.26.0: 512 | version "6.26.0" 513 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 514 | dependencies: 515 | babel-runtime "^6.26.0" 516 | babel-traverse "^6.26.0" 517 | babel-types "^6.26.0" 518 | babylon "^6.18.0" 519 | lodash "^4.17.4" 520 | 521 | babel-traverse@^6.24.1, babel-traverse@^6.26.0: 522 | version "6.26.0" 523 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 524 | dependencies: 525 | babel-code-frame "^6.26.0" 526 | babel-messages "^6.23.0" 527 | babel-runtime "^6.26.0" 528 | babel-types "^6.26.0" 529 | babylon "^6.18.0" 530 | debug "^2.6.8" 531 | globals "^9.18.0" 532 | invariant "^2.2.2" 533 | lodash "^4.17.4" 534 | 535 | babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: 536 | version "6.26.0" 537 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 538 | dependencies: 539 | babel-runtime "^6.26.0" 540 | esutils "^2.0.2" 541 | lodash "^4.17.4" 542 | to-fast-properties "^1.0.3" 543 | 544 | babylon@^6.18.0: 545 | version "6.18.0" 546 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 547 | 548 | balanced-match@^1.0.0: 549 | version "1.0.0" 550 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 551 | 552 | binary-extensions@^1.0.0: 553 | version "1.11.0" 554 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 555 | 556 | brace-expansion@^1.1.7: 557 | version "1.1.11" 558 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 559 | dependencies: 560 | balanced-match "^1.0.0" 561 | concat-map "0.0.1" 562 | 563 | braces@^1.8.2: 564 | version "1.8.5" 565 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 566 | dependencies: 567 | expand-range "^1.8.1" 568 | preserve "^0.2.0" 569 | repeat-element "^1.1.2" 570 | 571 | chalk@^1.1.3: 572 | version "1.1.3" 573 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 574 | dependencies: 575 | ansi-styles "^2.2.1" 576 | escape-string-regexp "^1.0.2" 577 | has-ansi "^2.0.0" 578 | strip-ansi "^3.0.0" 579 | supports-color "^2.0.0" 580 | 581 | chokidar@^1.6.1: 582 | version "1.7.0" 583 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 584 | dependencies: 585 | anymatch "^1.3.0" 586 | async-each "^1.0.0" 587 | glob-parent "^2.0.0" 588 | inherits "^2.0.1" 589 | is-binary-path "^1.0.0" 590 | is-glob "^2.0.0" 591 | path-is-absolute "^1.0.0" 592 | readdirp "^2.0.0" 593 | optionalDependencies: 594 | fsevents "^1.0.0" 595 | 596 | chownr@^1.0.1: 597 | version "1.0.1" 598 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.0.1.tgz#e2a75042a9551908bebd25b8523d5f9769d79181" 599 | 600 | code-point-at@^1.0.0: 601 | version "1.1.0" 602 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 603 | 604 | commander@^2.11.0: 605 | version "2.15.1" 606 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.15.1.tgz#df46e867d0fc2aec66a34662b406a9ccafff5b0f" 607 | 608 | concat-map@0.0.1: 609 | version "0.0.1" 610 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 611 | 612 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 613 | version "1.1.0" 614 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 615 | 616 | convert-source-map@^1.5.0, convert-source-map@^1.5.1: 617 | version "1.5.1" 618 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 619 | 620 | core-js@^2.4.0, core-js@^2.5.0: 621 | version "2.5.6" 622 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.6.tgz#0fe6d45bf3cac3ac364a9d72de7576f4eb221b9d" 623 | 624 | core-util-is@~1.0.0: 625 | version "1.0.2" 626 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 627 | 628 | debug@^2.1.2, debug@^2.6.8, debug@^2.6.9: 629 | version "2.6.9" 630 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 631 | dependencies: 632 | ms "2.0.0" 633 | 634 | deep-extend@^0.5.1: 635 | version "0.5.1" 636 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.5.1.tgz#b894a9dd90d3023fbf1c55a394fb858eb2066f1f" 637 | 638 | delegates@^1.0.0: 639 | version "1.0.0" 640 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 641 | 642 | detect-indent@^4.0.0: 643 | version "4.0.0" 644 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 645 | dependencies: 646 | repeating "^2.0.0" 647 | 648 | detect-libc@^1.0.2: 649 | version "1.0.3" 650 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 651 | 652 | escape-string-regexp@^1.0.2: 653 | version "1.0.5" 654 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 655 | 656 | esutils@^2.0.2: 657 | version "2.0.2" 658 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 659 | 660 | expand-brackets@^0.1.4: 661 | version "0.1.5" 662 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 663 | dependencies: 664 | is-posix-bracket "^0.1.0" 665 | 666 | expand-range@^1.8.1: 667 | version "1.8.2" 668 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 669 | dependencies: 670 | fill-range "^2.1.0" 671 | 672 | extglob@^0.3.1: 673 | version "0.3.2" 674 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 675 | dependencies: 676 | is-extglob "^1.0.0" 677 | 678 | filename-regex@^2.0.0: 679 | version "2.0.1" 680 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 681 | 682 | fill-range@^2.1.0: 683 | version "2.2.4" 684 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565" 685 | dependencies: 686 | is-number "^2.1.0" 687 | isobject "^2.0.0" 688 | randomatic "^3.0.0" 689 | repeat-element "^1.1.2" 690 | repeat-string "^1.5.2" 691 | 692 | for-in@^1.0.1: 693 | version "1.0.2" 694 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 695 | 696 | for-own@^0.1.4: 697 | version "0.1.5" 698 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 699 | dependencies: 700 | for-in "^1.0.1" 701 | 702 | fs-minipass@^1.2.5: 703 | version "1.2.5" 704 | resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d" 705 | dependencies: 706 | minipass "^2.2.1" 707 | 708 | fs-readdir-recursive@^1.0.0: 709 | version "1.1.0" 710 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27" 711 | 712 | fs.realpath@^1.0.0: 713 | version "1.0.0" 714 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 715 | 716 | fsevents@^1.0.0: 717 | version "1.2.4" 718 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.4.tgz#f41dcb1af2582af3692da36fc55cbd8e1041c426" 719 | dependencies: 720 | nan "^2.9.2" 721 | node-pre-gyp "^0.10.0" 722 | 723 | gauge@~2.7.3: 724 | version "2.7.4" 725 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 726 | dependencies: 727 | aproba "^1.0.3" 728 | console-control-strings "^1.0.0" 729 | has-unicode "^2.0.0" 730 | object-assign "^4.1.0" 731 | signal-exit "^3.0.0" 732 | string-width "^1.0.1" 733 | strip-ansi "^3.0.1" 734 | wide-align "^1.1.0" 735 | 736 | glob-base@^0.3.0: 737 | version "0.3.0" 738 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 739 | dependencies: 740 | glob-parent "^2.0.0" 741 | is-glob "^2.0.0" 742 | 743 | glob-parent@^2.0.0: 744 | version "2.0.0" 745 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 746 | dependencies: 747 | is-glob "^2.0.0" 748 | 749 | glob@^7.0.5, glob@^7.1.2: 750 | version "7.1.2" 751 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 752 | dependencies: 753 | fs.realpath "^1.0.0" 754 | inflight "^1.0.4" 755 | inherits "2" 756 | minimatch "^3.0.4" 757 | once "^1.3.0" 758 | path-is-absolute "^1.0.0" 759 | 760 | globals@^9.18.0: 761 | version "9.18.0" 762 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 763 | 764 | graceful-fs@^4.1.2, graceful-fs@^4.1.4: 765 | version "4.1.11" 766 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 767 | 768 | has-ansi@^2.0.0: 769 | version "2.0.0" 770 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 771 | dependencies: 772 | ansi-regex "^2.0.0" 773 | 774 | has-unicode@^2.0.0: 775 | version "2.0.1" 776 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 777 | 778 | home-or-tmp@^2.0.0: 779 | version "2.0.0" 780 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 781 | dependencies: 782 | os-homedir "^1.0.0" 783 | os-tmpdir "^1.0.1" 784 | 785 | iconv-lite@^0.4.4: 786 | version "0.4.23" 787 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.23.tgz#297871f63be507adcfbfca715d0cd0eed84e9a63" 788 | dependencies: 789 | safer-buffer ">= 2.1.2 < 3" 790 | 791 | ignore-walk@^3.0.1: 792 | version "3.0.1" 793 | resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" 794 | dependencies: 795 | minimatch "^3.0.4" 796 | 797 | inflight@^1.0.4: 798 | version "1.0.6" 799 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 800 | dependencies: 801 | once "^1.3.0" 802 | wrappy "1" 803 | 804 | inherits@2, inherits@^2.0.1, inherits@~2.0.3: 805 | version "2.0.3" 806 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 807 | 808 | ini@~1.3.0: 809 | version "1.3.5" 810 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 811 | 812 | inori-core@^0.1.3: 813 | version "0.1.3" 814 | resolved "https://registry.yarnpkg.com/inori-core/-/inori-core-0.1.3.tgz#1302a959ceaeff6fef108348c5e870a1624d6686" 815 | dependencies: 816 | mi-js-utils "^2.1.0" 817 | 818 | inori-core@^0.1.9: 819 | version "0.1.9" 820 | resolved "https://registry.yarnpkg.com/inori-core/-/inori-core-0.1.9.tgz#64cf1168adc671b8e564cdc132cbc9f24ebc5ffa" 821 | dependencies: 822 | mi-js-utils "^2.1.0" 823 | 824 | inori@^1.10.4: 825 | version "1.10.4" 826 | resolved "https://registry.yarnpkg.com/inori/-/inori-1.10.4.tgz#8c36237a1605f314e649dd0e93b967d44f76abfc" 827 | dependencies: 828 | inori-core "^0.1.3" 829 | 830 | invariant@^2.2.2: 831 | version "2.2.4" 832 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" 833 | dependencies: 834 | loose-envify "^1.0.0" 835 | 836 | is-binary-path@^1.0.0: 837 | version "1.0.1" 838 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 839 | dependencies: 840 | binary-extensions "^1.0.0" 841 | 842 | is-buffer@^1.1.5: 843 | version "1.1.6" 844 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 845 | 846 | is-dotfile@^1.0.0: 847 | version "1.0.3" 848 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 849 | 850 | is-equal-shallow@^0.1.3: 851 | version "0.1.3" 852 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 853 | dependencies: 854 | is-primitive "^2.0.0" 855 | 856 | is-extendable@^0.1.1: 857 | version "0.1.1" 858 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 859 | 860 | is-extglob@^1.0.0: 861 | version "1.0.0" 862 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 863 | 864 | is-finite@^1.0.0: 865 | version "1.0.2" 866 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 867 | dependencies: 868 | number-is-nan "^1.0.0" 869 | 870 | is-fullwidth-code-point@^1.0.0: 871 | version "1.0.0" 872 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 873 | dependencies: 874 | number-is-nan "^1.0.0" 875 | 876 | is-glob@^2.0.0, is-glob@^2.0.1: 877 | version "2.0.1" 878 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 879 | dependencies: 880 | is-extglob "^1.0.0" 881 | 882 | is-number@^2.1.0: 883 | version "2.1.0" 884 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 885 | dependencies: 886 | kind-of "^3.0.2" 887 | 888 | is-number@^4.0.0: 889 | version "4.0.0" 890 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" 891 | 892 | is-posix-bracket@^0.1.0: 893 | version "0.1.1" 894 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 895 | 896 | is-primitive@^2.0.0: 897 | version "2.0.0" 898 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 899 | 900 | isarray@1.0.0, isarray@~1.0.0: 901 | version "1.0.0" 902 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 903 | 904 | isobject@^2.0.0: 905 | version "2.1.0" 906 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 907 | dependencies: 908 | isarray "1.0.0" 909 | 910 | js-tokens@^3.0.0, js-tokens@^3.0.2: 911 | version "3.0.2" 912 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 913 | 914 | jsesc@^1.3.0: 915 | version "1.3.0" 916 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 917 | 918 | jsesc@~0.5.0: 919 | version "0.5.0" 920 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 921 | 922 | json5@^0.5.1: 923 | version "0.5.1" 924 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 925 | 926 | kind-of@^3.0.2: 927 | version "3.2.2" 928 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 929 | dependencies: 930 | is-buffer "^1.1.5" 931 | 932 | kind-of@^6.0.0: 933 | version "6.0.2" 934 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 935 | 936 | lodash@^4.17.4: 937 | version "4.17.10" 938 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7" 939 | 940 | loose-envify@^1.0.0: 941 | version "1.3.1" 942 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 943 | dependencies: 944 | js-tokens "^3.0.0" 945 | 946 | math-random@^1.0.1: 947 | version "1.0.1" 948 | resolved "https://registry.yarnpkg.com/math-random/-/math-random-1.0.1.tgz#8b3aac588b8a66e4975e3cdea67f7bb329601fac" 949 | 950 | mi-js-utils@^2.1.0: 951 | version "2.1.0" 952 | resolved "https://registry.yarnpkg.com/mi-js-utils/-/mi-js-utils-2.1.0.tgz#2c9152d631cf98c70ec6c55a408988aa3ae5f4a4" 953 | 954 | micromatch@^2.1.5: 955 | version "2.3.11" 956 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 957 | dependencies: 958 | arr-diff "^2.0.0" 959 | array-unique "^0.2.1" 960 | braces "^1.8.2" 961 | expand-brackets "^0.1.4" 962 | extglob "^0.3.1" 963 | filename-regex "^2.0.0" 964 | is-extglob "^1.0.0" 965 | is-glob "^2.0.1" 966 | kind-of "^3.0.2" 967 | normalize-path "^2.0.1" 968 | object.omit "^2.0.0" 969 | parse-glob "^3.0.4" 970 | regex-cache "^0.4.2" 971 | 972 | minimatch@^3.0.2, minimatch@^3.0.4: 973 | version "3.0.4" 974 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 975 | dependencies: 976 | brace-expansion "^1.1.7" 977 | 978 | minimist@0.0.8: 979 | version "0.0.8" 980 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 981 | 982 | minimist@^1.2.0: 983 | version "1.2.0" 984 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 985 | 986 | minipass@^2.2.1, minipass@^2.2.4: 987 | version "2.3.0" 988 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.0.tgz#2e11b1c46df7fe7f1afbe9a490280add21ffe384" 989 | dependencies: 990 | safe-buffer "^5.1.1" 991 | yallist "^3.0.0" 992 | 993 | minizlib@^1.1.0: 994 | version "1.1.0" 995 | resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.1.0.tgz#11e13658ce46bc3a70a267aac58359d1e0c29ceb" 996 | dependencies: 997 | minipass "^2.2.1" 998 | 999 | mkdirp@^0.5.0, mkdirp@^0.5.1: 1000 | version "0.5.1" 1001 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1002 | dependencies: 1003 | minimist "0.0.8" 1004 | 1005 | ms@2.0.0: 1006 | version "2.0.0" 1007 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1008 | 1009 | nan@^2.9.2: 1010 | version "2.10.0" 1011 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.10.0.tgz#96d0cd610ebd58d4b4de9cc0c6828cda99c7548f" 1012 | 1013 | needle@^2.2.0: 1014 | version "2.2.1" 1015 | resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.1.tgz#b5e325bd3aae8c2678902fa296f729455d1d3a7d" 1016 | dependencies: 1017 | debug "^2.1.2" 1018 | iconv-lite "^0.4.4" 1019 | sax "^1.2.4" 1020 | 1021 | node-pre-gyp@^0.10.0: 1022 | version "0.10.0" 1023 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.10.0.tgz#6e4ef5bb5c5203c6552448828c852c40111aac46" 1024 | dependencies: 1025 | detect-libc "^1.0.2" 1026 | mkdirp "^0.5.1" 1027 | needle "^2.2.0" 1028 | nopt "^4.0.1" 1029 | npm-packlist "^1.1.6" 1030 | npmlog "^4.0.2" 1031 | rc "^1.1.7" 1032 | rimraf "^2.6.1" 1033 | semver "^5.3.0" 1034 | tar "^4" 1035 | 1036 | nopt@^4.0.1: 1037 | version "4.0.1" 1038 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1039 | dependencies: 1040 | abbrev "1" 1041 | osenv "^0.1.4" 1042 | 1043 | normalize-path@^2.0.0, normalize-path@^2.0.1: 1044 | version "2.1.1" 1045 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1046 | dependencies: 1047 | remove-trailing-separator "^1.0.1" 1048 | 1049 | npm-bundled@^1.0.1: 1050 | version "1.0.3" 1051 | resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.3.tgz#7e71703d973af3370a9591bafe3a63aca0be2308" 1052 | 1053 | npm-packlist@^1.1.6: 1054 | version "1.1.10" 1055 | resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.1.10.tgz#1039db9e985727e464df066f4cf0ab6ef85c398a" 1056 | dependencies: 1057 | ignore-walk "^3.0.1" 1058 | npm-bundled "^1.0.1" 1059 | 1060 | npmlog@^4.0.2: 1061 | version "4.1.2" 1062 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 1063 | dependencies: 1064 | are-we-there-yet "~1.1.2" 1065 | console-control-strings "~1.1.0" 1066 | gauge "~2.7.3" 1067 | set-blocking "~2.0.0" 1068 | 1069 | number-is-nan@^1.0.0: 1070 | version "1.0.1" 1071 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1072 | 1073 | object-assign@^4.1.0: 1074 | version "4.1.1" 1075 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1076 | 1077 | object.omit@^2.0.0: 1078 | version "2.0.1" 1079 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1080 | dependencies: 1081 | for-own "^0.1.4" 1082 | is-extendable "^0.1.1" 1083 | 1084 | once@^1.3.0: 1085 | version "1.4.0" 1086 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1087 | dependencies: 1088 | wrappy "1" 1089 | 1090 | os-homedir@^1.0.0: 1091 | version "1.0.2" 1092 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1093 | 1094 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 1095 | version "1.0.2" 1096 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1097 | 1098 | osenv@^0.1.4: 1099 | version "0.1.5" 1100 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 1101 | dependencies: 1102 | os-homedir "^1.0.0" 1103 | os-tmpdir "^1.0.0" 1104 | 1105 | output-file-sync@^1.1.2: 1106 | version "1.1.2" 1107 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 1108 | dependencies: 1109 | graceful-fs "^4.1.4" 1110 | mkdirp "^0.5.1" 1111 | object-assign "^4.1.0" 1112 | 1113 | parse-glob@^3.0.4: 1114 | version "3.0.4" 1115 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1116 | dependencies: 1117 | glob-base "^0.3.0" 1118 | is-dotfile "^1.0.0" 1119 | is-extglob "^1.0.0" 1120 | is-glob "^2.0.0" 1121 | 1122 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 1123 | version "1.0.1" 1124 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1125 | 1126 | preserve@^0.2.0: 1127 | version "0.2.0" 1128 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1129 | 1130 | private@^0.1.6, private@^0.1.8: 1131 | version "0.1.8" 1132 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 1133 | 1134 | process-nextick-args@~2.0.0: 1135 | version "2.0.0" 1136 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 1137 | 1138 | randomatic@^3.0.0: 1139 | version "3.0.0" 1140 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-3.0.0.tgz#d35490030eb4f7578de292ce6dfb04a91a128923" 1141 | dependencies: 1142 | is-number "^4.0.0" 1143 | kind-of "^6.0.0" 1144 | math-random "^1.0.1" 1145 | 1146 | rc@^1.1.7: 1147 | version "1.2.7" 1148 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.7.tgz#8a10ca30d588d00464360372b890d06dacd02297" 1149 | dependencies: 1150 | deep-extend "^0.5.1" 1151 | ini "~1.3.0" 1152 | minimist "^1.2.0" 1153 | strip-json-comments "~2.0.1" 1154 | 1155 | readable-stream@^2.0.2, readable-stream@^2.0.6: 1156 | version "2.3.6" 1157 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 1158 | dependencies: 1159 | core-util-is "~1.0.0" 1160 | inherits "~2.0.3" 1161 | isarray "~1.0.0" 1162 | process-nextick-args "~2.0.0" 1163 | safe-buffer "~5.1.1" 1164 | string_decoder "~1.1.1" 1165 | util-deprecate "~1.0.1" 1166 | 1167 | readdirp@^2.0.0: 1168 | version "2.1.0" 1169 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 1170 | dependencies: 1171 | graceful-fs "^4.1.2" 1172 | minimatch "^3.0.2" 1173 | readable-stream "^2.0.2" 1174 | set-immediate-shim "^1.0.1" 1175 | 1176 | redux-devtools-extension@^2.13.5: 1177 | version "2.13.5" 1178 | resolved "https://registry.yarnpkg.com/redux-devtools-extension/-/redux-devtools-extension-2.13.5.tgz#3ff34f7227acfeef3964194f5f7fc2765e5c5a39" 1179 | 1180 | regenerate@^1.2.1: 1181 | version "1.4.0" 1182 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" 1183 | 1184 | regenerator-runtime@^0.10.5: 1185 | version "0.10.5" 1186 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 1187 | 1188 | regenerator-runtime@^0.11.0: 1189 | version "0.11.1" 1190 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 1191 | 1192 | regenerator-transform@^0.10.0: 1193 | version "0.10.1" 1194 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 1195 | dependencies: 1196 | babel-runtime "^6.18.0" 1197 | babel-types "^6.19.0" 1198 | private "^0.1.6" 1199 | 1200 | regex-cache@^0.4.2: 1201 | version "0.4.4" 1202 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 1203 | dependencies: 1204 | is-equal-shallow "^0.1.3" 1205 | 1206 | regexpu-core@^2.0.0: 1207 | version "2.0.0" 1208 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 1209 | dependencies: 1210 | regenerate "^1.2.1" 1211 | regjsgen "^0.2.0" 1212 | regjsparser "^0.1.4" 1213 | 1214 | regjsgen@^0.2.0: 1215 | version "0.2.0" 1216 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 1217 | 1218 | regjsparser@^0.1.4: 1219 | version "0.1.5" 1220 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 1221 | dependencies: 1222 | jsesc "~0.5.0" 1223 | 1224 | remove-trailing-separator@^1.0.1: 1225 | version "1.1.0" 1226 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 1227 | 1228 | repeat-element@^1.1.2: 1229 | version "1.1.2" 1230 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1231 | 1232 | repeat-string@^1.5.2: 1233 | version "1.6.1" 1234 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1235 | 1236 | repeating@^2.0.0: 1237 | version "2.0.1" 1238 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1239 | dependencies: 1240 | is-finite "^1.0.0" 1241 | 1242 | rimraf@^2.6.1: 1243 | version "2.6.2" 1244 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 1245 | dependencies: 1246 | glob "^7.0.5" 1247 | 1248 | safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 1249 | version "5.1.2" 1250 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 1251 | 1252 | "safer-buffer@>= 2.1.2 < 3": 1253 | version "2.1.2" 1254 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 1255 | 1256 | sax@^1.2.4: 1257 | version "1.2.4" 1258 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 1259 | 1260 | semver@^5.3.0: 1261 | version "5.5.0" 1262 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 1263 | 1264 | set-blocking@~2.0.0: 1265 | version "2.0.0" 1266 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1267 | 1268 | set-immediate-shim@^1.0.1: 1269 | version "1.0.1" 1270 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 1271 | 1272 | signal-exit@^3.0.0: 1273 | version "3.0.2" 1274 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 1275 | 1276 | slash@^1.0.0: 1277 | version "1.0.0" 1278 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 1279 | 1280 | source-map-support@^0.4.15: 1281 | version "0.4.18" 1282 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 1283 | dependencies: 1284 | source-map "^0.5.6" 1285 | 1286 | source-map@^0.5.6, source-map@^0.5.7: 1287 | version "0.5.7" 1288 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 1289 | 1290 | string-width@^1.0.1, string-width@^1.0.2: 1291 | version "1.0.2" 1292 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1293 | dependencies: 1294 | code-point-at "^1.0.0" 1295 | is-fullwidth-code-point "^1.0.0" 1296 | strip-ansi "^3.0.0" 1297 | 1298 | string_decoder@~1.1.1: 1299 | version "1.1.1" 1300 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 1301 | dependencies: 1302 | safe-buffer "~5.1.0" 1303 | 1304 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 1305 | version "3.0.1" 1306 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1307 | dependencies: 1308 | ansi-regex "^2.0.0" 1309 | 1310 | strip-json-comments@~2.0.1: 1311 | version "2.0.1" 1312 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 1313 | 1314 | supports-color@^2.0.0: 1315 | version "2.0.0" 1316 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 1317 | 1318 | tar@^4: 1319 | version "4.4.2" 1320 | resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.2.tgz#60685211ba46b38847b1ae7ee1a24d744a2cd462" 1321 | dependencies: 1322 | chownr "^1.0.1" 1323 | fs-minipass "^1.2.5" 1324 | minipass "^2.2.4" 1325 | minizlib "^1.1.0" 1326 | mkdirp "^0.5.0" 1327 | safe-buffer "^5.1.2" 1328 | yallist "^3.0.2" 1329 | 1330 | to-fast-properties@^1.0.3: 1331 | version "1.0.3" 1332 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 1333 | 1334 | trim-right@^1.0.1: 1335 | version "1.0.1" 1336 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 1337 | 1338 | user-home@^1.1.1: 1339 | version "1.1.1" 1340 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 1341 | 1342 | util-deprecate@~1.0.1: 1343 | version "1.0.2" 1344 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1345 | 1346 | v8flags@^2.1.1: 1347 | version "2.1.1" 1348 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 1349 | dependencies: 1350 | user-home "^1.1.1" 1351 | 1352 | wide-align@^1.1.0: 1353 | version "1.1.2" 1354 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 1355 | dependencies: 1356 | string-width "^1.0.2" 1357 | 1358 | wrappy@1: 1359 | version "1.0.2" 1360 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1361 | 1362 | yallist@^3.0.0, yallist@^3.0.2: 1363 | version "3.0.2" 1364 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.2.tgz#8452b4bb7e83c7c188d8041c1a837c773d6d8bb9" 1365 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abbrev@1: 6 | version "1.1.1" 7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 8 | 9 | ansi-regex@^2.0.0: 10 | version "2.1.1" 11 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 12 | 13 | ansi-styles@^2.2.1: 14 | version "2.2.1" 15 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 16 | 17 | anymatch@^1.3.0: 18 | version "1.3.2" 19 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 20 | dependencies: 21 | micromatch "^2.1.5" 22 | normalize-path "^2.0.0" 23 | 24 | aproba@^1.0.3: 25 | version "1.2.0" 26 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 27 | 28 | are-we-there-yet@~1.1.2: 29 | version "1.1.4" 30 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 31 | dependencies: 32 | delegates "^1.0.0" 33 | readable-stream "^2.0.6" 34 | 35 | arr-diff@^2.0.0: 36 | version "2.0.0" 37 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 38 | dependencies: 39 | arr-flatten "^1.0.1" 40 | 41 | arr-flatten@^1.0.1: 42 | version "1.1.0" 43 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 44 | 45 | array-unique@^0.2.1: 46 | version "0.2.1" 47 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 48 | 49 | async-each@^1.0.0: 50 | version "1.0.1" 51 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 52 | 53 | babel-cli@^6.26.0: 54 | version "6.26.0" 55 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.26.0.tgz#502ab54874d7db88ad00b887a06383ce03d002f1" 56 | dependencies: 57 | babel-core "^6.26.0" 58 | babel-polyfill "^6.26.0" 59 | babel-register "^6.26.0" 60 | babel-runtime "^6.26.0" 61 | commander "^2.11.0" 62 | convert-source-map "^1.5.0" 63 | fs-readdir-recursive "^1.0.0" 64 | glob "^7.1.2" 65 | lodash "^4.17.4" 66 | output-file-sync "^1.1.2" 67 | path-is-absolute "^1.0.1" 68 | slash "^1.0.0" 69 | source-map "^0.5.6" 70 | v8flags "^2.1.1" 71 | optionalDependencies: 72 | chokidar "^1.6.1" 73 | 74 | babel-code-frame@^6.26.0: 75 | version "6.26.0" 76 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 77 | dependencies: 78 | chalk "^1.1.3" 79 | esutils "^2.0.2" 80 | js-tokens "^3.0.2" 81 | 82 | babel-core@^6.26.0: 83 | version "6.26.3" 84 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.3.tgz#b2e2f09e342d0f0c88e2f02e067794125e75c207" 85 | dependencies: 86 | babel-code-frame "^6.26.0" 87 | babel-generator "^6.26.0" 88 | babel-helpers "^6.24.1" 89 | babel-messages "^6.23.0" 90 | babel-register "^6.26.0" 91 | babel-runtime "^6.26.0" 92 | babel-template "^6.26.0" 93 | babel-traverse "^6.26.0" 94 | babel-types "^6.26.0" 95 | babylon "^6.18.0" 96 | convert-source-map "^1.5.1" 97 | debug "^2.6.9" 98 | json5 "^0.5.1" 99 | lodash "^4.17.4" 100 | minimatch "^3.0.4" 101 | path-is-absolute "^1.0.1" 102 | private "^0.1.8" 103 | slash "^1.0.0" 104 | source-map "^0.5.7" 105 | 106 | babel-generator@^6.26.0: 107 | version "6.26.1" 108 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" 109 | dependencies: 110 | babel-messages "^6.23.0" 111 | babel-runtime "^6.26.0" 112 | babel-types "^6.26.0" 113 | detect-indent "^4.0.0" 114 | jsesc "^1.3.0" 115 | lodash "^4.17.4" 116 | source-map "^0.5.7" 117 | trim-right "^1.0.1" 118 | 119 | babel-helper-builder-react-jsx@^6.24.1: 120 | version "6.26.0" 121 | resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz#39ff8313b75c8b65dceff1f31d383e0ff2a408a0" 122 | dependencies: 123 | babel-runtime "^6.26.0" 124 | babel-types "^6.26.0" 125 | esutils "^2.0.2" 126 | 127 | babel-helper-call-delegate@^6.24.1: 128 | version "6.24.1" 129 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 130 | dependencies: 131 | babel-helper-hoist-variables "^6.24.1" 132 | babel-runtime "^6.22.0" 133 | babel-traverse "^6.24.1" 134 | babel-types "^6.24.1" 135 | 136 | babel-helper-define-map@^6.24.1: 137 | version "6.26.0" 138 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 139 | dependencies: 140 | babel-helper-function-name "^6.24.1" 141 | babel-runtime "^6.26.0" 142 | babel-types "^6.26.0" 143 | lodash "^4.17.4" 144 | 145 | babel-helper-function-name@^6.24.1: 146 | version "6.24.1" 147 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 148 | dependencies: 149 | babel-helper-get-function-arity "^6.24.1" 150 | babel-runtime "^6.22.0" 151 | babel-template "^6.24.1" 152 | babel-traverse "^6.24.1" 153 | babel-types "^6.24.1" 154 | 155 | babel-helper-get-function-arity@^6.24.1: 156 | version "6.24.1" 157 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 158 | dependencies: 159 | babel-runtime "^6.22.0" 160 | babel-types "^6.24.1" 161 | 162 | babel-helper-hoist-variables@^6.24.1: 163 | version "6.24.1" 164 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 165 | dependencies: 166 | babel-runtime "^6.22.0" 167 | babel-types "^6.24.1" 168 | 169 | babel-helper-optimise-call-expression@^6.24.1: 170 | version "6.24.1" 171 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 172 | dependencies: 173 | babel-runtime "^6.22.0" 174 | babel-types "^6.24.1" 175 | 176 | babel-helper-regex@^6.24.1: 177 | version "6.26.0" 178 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 179 | dependencies: 180 | babel-runtime "^6.26.0" 181 | babel-types "^6.26.0" 182 | lodash "^4.17.4" 183 | 184 | babel-helper-replace-supers@^6.24.1: 185 | version "6.24.1" 186 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 187 | dependencies: 188 | babel-helper-optimise-call-expression "^6.24.1" 189 | babel-messages "^6.23.0" 190 | babel-runtime "^6.22.0" 191 | babel-template "^6.24.1" 192 | babel-traverse "^6.24.1" 193 | babel-types "^6.24.1" 194 | 195 | babel-helpers@^6.24.1: 196 | version "6.24.1" 197 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 198 | dependencies: 199 | babel-runtime "^6.22.0" 200 | babel-template "^6.24.1" 201 | 202 | babel-messages@^6.23.0: 203 | version "6.23.0" 204 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 205 | dependencies: 206 | babel-runtime "^6.22.0" 207 | 208 | babel-plugin-check-es2015-constants@^6.22.0: 209 | version "6.22.0" 210 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 211 | dependencies: 212 | babel-runtime "^6.22.0" 213 | 214 | babel-plugin-syntax-flow@^6.18.0: 215 | version "6.18.0" 216 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" 217 | 218 | babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0: 219 | version "6.18.0" 220 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" 221 | 222 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 223 | version "6.22.0" 224 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 225 | dependencies: 226 | babel-runtime "^6.22.0" 227 | 228 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 229 | version "6.22.0" 230 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 231 | dependencies: 232 | babel-runtime "^6.22.0" 233 | 234 | babel-plugin-transform-es2015-block-scoping@^6.24.1: 235 | version "6.26.0" 236 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 237 | dependencies: 238 | babel-runtime "^6.26.0" 239 | babel-template "^6.26.0" 240 | babel-traverse "^6.26.0" 241 | babel-types "^6.26.0" 242 | lodash "^4.17.4" 243 | 244 | babel-plugin-transform-es2015-classes@^6.24.1: 245 | version "6.24.1" 246 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 247 | dependencies: 248 | babel-helper-define-map "^6.24.1" 249 | babel-helper-function-name "^6.24.1" 250 | babel-helper-optimise-call-expression "^6.24.1" 251 | babel-helper-replace-supers "^6.24.1" 252 | babel-messages "^6.23.0" 253 | babel-runtime "^6.22.0" 254 | babel-template "^6.24.1" 255 | babel-traverse "^6.24.1" 256 | babel-types "^6.24.1" 257 | 258 | babel-plugin-transform-es2015-computed-properties@^6.24.1: 259 | version "6.24.1" 260 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 261 | dependencies: 262 | babel-runtime "^6.22.0" 263 | babel-template "^6.24.1" 264 | 265 | babel-plugin-transform-es2015-destructuring@^6.22.0: 266 | version "6.23.0" 267 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 268 | dependencies: 269 | babel-runtime "^6.22.0" 270 | 271 | babel-plugin-transform-es2015-duplicate-keys@^6.24.1: 272 | version "6.24.1" 273 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 274 | dependencies: 275 | babel-runtime "^6.22.0" 276 | babel-types "^6.24.1" 277 | 278 | babel-plugin-transform-es2015-for-of@^6.22.0: 279 | version "6.23.0" 280 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 281 | dependencies: 282 | babel-runtime "^6.22.0" 283 | 284 | babel-plugin-transform-es2015-function-name@^6.24.1: 285 | version "6.24.1" 286 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 287 | dependencies: 288 | babel-helper-function-name "^6.24.1" 289 | babel-runtime "^6.22.0" 290 | babel-types "^6.24.1" 291 | 292 | babel-plugin-transform-es2015-literals@^6.22.0: 293 | version "6.22.0" 294 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 295 | dependencies: 296 | babel-runtime "^6.22.0" 297 | 298 | babel-plugin-transform-es2015-modules-amd@^6.24.1: 299 | version "6.24.1" 300 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 301 | dependencies: 302 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 303 | babel-runtime "^6.22.0" 304 | babel-template "^6.24.1" 305 | 306 | babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 307 | version "6.26.2" 308 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz#58a793863a9e7ca870bdc5a881117ffac27db6f3" 309 | dependencies: 310 | babel-plugin-transform-strict-mode "^6.24.1" 311 | babel-runtime "^6.26.0" 312 | babel-template "^6.26.0" 313 | babel-types "^6.26.0" 314 | 315 | babel-plugin-transform-es2015-modules-systemjs@^6.24.1: 316 | version "6.24.1" 317 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 318 | dependencies: 319 | babel-helper-hoist-variables "^6.24.1" 320 | babel-runtime "^6.22.0" 321 | babel-template "^6.24.1" 322 | 323 | babel-plugin-transform-es2015-modules-umd@^6.24.1: 324 | version "6.24.1" 325 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 326 | dependencies: 327 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 328 | babel-runtime "^6.22.0" 329 | babel-template "^6.24.1" 330 | 331 | babel-plugin-transform-es2015-object-super@^6.24.1: 332 | version "6.24.1" 333 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 334 | dependencies: 335 | babel-helper-replace-supers "^6.24.1" 336 | babel-runtime "^6.22.0" 337 | 338 | babel-plugin-transform-es2015-parameters@^6.24.1: 339 | version "6.24.1" 340 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 341 | dependencies: 342 | babel-helper-call-delegate "^6.24.1" 343 | babel-helper-get-function-arity "^6.24.1" 344 | babel-runtime "^6.22.0" 345 | babel-template "^6.24.1" 346 | babel-traverse "^6.24.1" 347 | babel-types "^6.24.1" 348 | 349 | babel-plugin-transform-es2015-shorthand-properties@^6.24.1: 350 | version "6.24.1" 351 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 352 | dependencies: 353 | babel-runtime "^6.22.0" 354 | babel-types "^6.24.1" 355 | 356 | babel-plugin-transform-es2015-spread@^6.22.0: 357 | version "6.22.0" 358 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 359 | dependencies: 360 | babel-runtime "^6.22.0" 361 | 362 | babel-plugin-transform-es2015-sticky-regex@^6.24.1: 363 | version "6.24.1" 364 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 365 | dependencies: 366 | babel-helper-regex "^6.24.1" 367 | babel-runtime "^6.22.0" 368 | babel-types "^6.24.1" 369 | 370 | babel-plugin-transform-es2015-template-literals@^6.22.0: 371 | version "6.22.0" 372 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 373 | dependencies: 374 | babel-runtime "^6.22.0" 375 | 376 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0: 377 | version "6.23.0" 378 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 379 | dependencies: 380 | babel-runtime "^6.22.0" 381 | 382 | babel-plugin-transform-es2015-unicode-regex@^6.24.1: 383 | version "6.24.1" 384 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 385 | dependencies: 386 | babel-helper-regex "^6.24.1" 387 | babel-runtime "^6.22.0" 388 | regexpu-core "^2.0.0" 389 | 390 | babel-plugin-transform-flow-strip-types@^6.22.0: 391 | version "6.22.0" 392 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" 393 | dependencies: 394 | babel-plugin-syntax-flow "^6.18.0" 395 | babel-runtime "^6.22.0" 396 | 397 | babel-plugin-transform-react-display-name@^6.23.0: 398 | version "6.25.0" 399 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz#67e2bf1f1e9c93ab08db96792e05392bf2cc28d1" 400 | dependencies: 401 | babel-runtime "^6.22.0" 402 | 403 | babel-plugin-transform-react-jsx-self@^6.22.0: 404 | version "6.22.0" 405 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e" 406 | dependencies: 407 | babel-plugin-syntax-jsx "^6.8.0" 408 | babel-runtime "^6.22.0" 409 | 410 | babel-plugin-transform-react-jsx-source@^6.22.0: 411 | version "6.22.0" 412 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6" 413 | dependencies: 414 | babel-plugin-syntax-jsx "^6.8.0" 415 | babel-runtime "^6.22.0" 416 | 417 | babel-plugin-transform-react-jsx@^6.24.1: 418 | version "6.24.1" 419 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3" 420 | dependencies: 421 | babel-helper-builder-react-jsx "^6.24.1" 422 | babel-plugin-syntax-jsx "^6.8.0" 423 | babel-runtime "^6.22.0" 424 | 425 | babel-plugin-transform-regenerator@^6.24.1: 426 | version "6.26.0" 427 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 428 | dependencies: 429 | regenerator-transform "^0.10.0" 430 | 431 | babel-plugin-transform-strict-mode@^6.24.1: 432 | version "6.24.1" 433 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 434 | dependencies: 435 | babel-runtime "^6.22.0" 436 | babel-types "^6.24.1" 437 | 438 | babel-polyfill@^6.26.0: 439 | version "6.26.0" 440 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" 441 | dependencies: 442 | babel-runtime "^6.26.0" 443 | core-js "^2.5.0" 444 | regenerator-runtime "^0.10.5" 445 | 446 | babel-preset-es2015@^6.24.1: 447 | version "6.24.1" 448 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939" 449 | dependencies: 450 | babel-plugin-check-es2015-constants "^6.22.0" 451 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 452 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 453 | babel-plugin-transform-es2015-block-scoping "^6.24.1" 454 | babel-plugin-transform-es2015-classes "^6.24.1" 455 | babel-plugin-transform-es2015-computed-properties "^6.24.1" 456 | babel-plugin-transform-es2015-destructuring "^6.22.0" 457 | babel-plugin-transform-es2015-duplicate-keys "^6.24.1" 458 | babel-plugin-transform-es2015-for-of "^6.22.0" 459 | babel-plugin-transform-es2015-function-name "^6.24.1" 460 | babel-plugin-transform-es2015-literals "^6.22.0" 461 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 462 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 463 | babel-plugin-transform-es2015-modules-systemjs "^6.24.1" 464 | babel-plugin-transform-es2015-modules-umd "^6.24.1" 465 | babel-plugin-transform-es2015-object-super "^6.24.1" 466 | babel-plugin-transform-es2015-parameters "^6.24.1" 467 | babel-plugin-transform-es2015-shorthand-properties "^6.24.1" 468 | babel-plugin-transform-es2015-spread "^6.22.0" 469 | babel-plugin-transform-es2015-sticky-regex "^6.24.1" 470 | babel-plugin-transform-es2015-template-literals "^6.22.0" 471 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 472 | babel-plugin-transform-es2015-unicode-regex "^6.24.1" 473 | babel-plugin-transform-regenerator "^6.24.1" 474 | 475 | babel-preset-flow@^6.23.0: 476 | version "6.23.0" 477 | resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d" 478 | dependencies: 479 | babel-plugin-transform-flow-strip-types "^6.22.0" 480 | 481 | babel-preset-react@^6.24.1: 482 | version "6.24.1" 483 | resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.24.1.tgz#ba69dfaea45fc3ec639b6a4ecea6e17702c91380" 484 | dependencies: 485 | babel-plugin-syntax-jsx "^6.3.13" 486 | babel-plugin-transform-react-display-name "^6.23.0" 487 | babel-plugin-transform-react-jsx "^6.24.1" 488 | babel-plugin-transform-react-jsx-self "^6.22.0" 489 | babel-plugin-transform-react-jsx-source "^6.22.0" 490 | babel-preset-flow "^6.23.0" 491 | 492 | babel-register@^6.26.0: 493 | version "6.26.0" 494 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 495 | dependencies: 496 | babel-core "^6.26.0" 497 | babel-runtime "^6.26.0" 498 | core-js "^2.5.0" 499 | home-or-tmp "^2.0.0" 500 | lodash "^4.17.4" 501 | mkdirp "^0.5.1" 502 | source-map-support "^0.4.15" 503 | 504 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 505 | version "6.26.0" 506 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 507 | dependencies: 508 | core-js "^2.4.0" 509 | regenerator-runtime "^0.11.0" 510 | 511 | babel-template@^6.24.1, babel-template@^6.26.0: 512 | version "6.26.0" 513 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 514 | dependencies: 515 | babel-runtime "^6.26.0" 516 | babel-traverse "^6.26.0" 517 | babel-types "^6.26.0" 518 | babylon "^6.18.0" 519 | lodash "^4.17.4" 520 | 521 | babel-traverse@^6.24.1, babel-traverse@^6.26.0: 522 | version "6.26.0" 523 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 524 | dependencies: 525 | babel-code-frame "^6.26.0" 526 | babel-messages "^6.23.0" 527 | babel-runtime "^6.26.0" 528 | babel-types "^6.26.0" 529 | babylon "^6.18.0" 530 | debug "^2.6.8" 531 | globals "^9.18.0" 532 | invariant "^2.2.2" 533 | lodash "^4.17.4" 534 | 535 | babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: 536 | version "6.26.0" 537 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 538 | dependencies: 539 | babel-runtime "^6.26.0" 540 | esutils "^2.0.2" 541 | lodash "^4.17.4" 542 | to-fast-properties "^1.0.3" 543 | 544 | babylon@^6.18.0: 545 | version "6.18.0" 546 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 547 | 548 | balanced-match@^1.0.0: 549 | version "1.0.0" 550 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 551 | 552 | binary-extensions@^1.0.0: 553 | version "1.11.0" 554 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 555 | 556 | brace-expansion@^1.1.7: 557 | version "1.1.11" 558 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 559 | dependencies: 560 | balanced-match "^1.0.0" 561 | concat-map "0.0.1" 562 | 563 | braces@^1.8.2: 564 | version "1.8.5" 565 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 566 | dependencies: 567 | expand-range "^1.8.1" 568 | preserve "^0.2.0" 569 | repeat-element "^1.1.2" 570 | 571 | chalk@^1.1.3: 572 | version "1.1.3" 573 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 574 | dependencies: 575 | ansi-styles "^2.2.1" 576 | escape-string-regexp "^1.0.2" 577 | has-ansi "^2.0.0" 578 | strip-ansi "^3.0.0" 579 | supports-color "^2.0.0" 580 | 581 | chokidar@^1.6.1: 582 | version "1.7.0" 583 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 584 | dependencies: 585 | anymatch "^1.3.0" 586 | async-each "^1.0.0" 587 | glob-parent "^2.0.0" 588 | inherits "^2.0.1" 589 | is-binary-path "^1.0.0" 590 | is-glob "^2.0.0" 591 | path-is-absolute "^1.0.0" 592 | readdirp "^2.0.0" 593 | optionalDependencies: 594 | fsevents "^1.0.0" 595 | 596 | chownr@^1.0.1: 597 | version "1.0.1" 598 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.0.1.tgz#e2a75042a9551908bebd25b8523d5f9769d79181" 599 | 600 | code-point-at@^1.0.0: 601 | version "1.1.0" 602 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 603 | 604 | commander@^2.11.0: 605 | version "2.15.1" 606 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.15.1.tgz#df46e867d0fc2aec66a34662b406a9ccafff5b0f" 607 | 608 | concat-map@0.0.1: 609 | version "0.0.1" 610 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 611 | 612 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 613 | version "1.1.0" 614 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 615 | 616 | convert-source-map@^1.5.0, convert-source-map@^1.5.1: 617 | version "1.5.1" 618 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 619 | 620 | core-js@^2.4.0, core-js@^2.5.0: 621 | version "2.5.6" 622 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.6.tgz#0fe6d45bf3cac3ac364a9d72de7576f4eb221b9d" 623 | 624 | core-util-is@~1.0.0: 625 | version "1.0.2" 626 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 627 | 628 | debug@^2.1.2, debug@^2.6.8, debug@^2.6.9: 629 | version "2.6.9" 630 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 631 | dependencies: 632 | ms "2.0.0" 633 | 634 | deep-extend@^0.5.1: 635 | version "0.5.1" 636 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.5.1.tgz#b894a9dd90d3023fbf1c55a394fb858eb2066f1f" 637 | 638 | delegates@^1.0.0: 639 | version "1.0.0" 640 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 641 | 642 | detect-indent@^4.0.0: 643 | version "4.0.0" 644 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 645 | dependencies: 646 | repeating "^2.0.0" 647 | 648 | detect-libc@^1.0.2: 649 | version "1.0.3" 650 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 651 | 652 | escape-string-regexp@^1.0.2: 653 | version "1.0.5" 654 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 655 | 656 | esutils@^2.0.2: 657 | version "2.0.2" 658 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 659 | 660 | expand-brackets@^0.1.4: 661 | version "0.1.5" 662 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 663 | dependencies: 664 | is-posix-bracket "^0.1.0" 665 | 666 | expand-range@^1.8.1: 667 | version "1.8.2" 668 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 669 | dependencies: 670 | fill-range "^2.1.0" 671 | 672 | extglob@^0.3.1: 673 | version "0.3.2" 674 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 675 | dependencies: 676 | is-extglob "^1.0.0" 677 | 678 | filename-regex@^2.0.0: 679 | version "2.0.1" 680 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 681 | 682 | fill-range@^2.1.0: 683 | version "2.2.4" 684 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565" 685 | dependencies: 686 | is-number "^2.1.0" 687 | isobject "^2.0.0" 688 | randomatic "^3.0.0" 689 | repeat-element "^1.1.2" 690 | repeat-string "^1.5.2" 691 | 692 | for-in@^1.0.1: 693 | version "1.0.2" 694 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 695 | 696 | for-own@^0.1.4: 697 | version "0.1.5" 698 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 699 | dependencies: 700 | for-in "^1.0.1" 701 | 702 | fs-minipass@^1.2.5: 703 | version "1.2.5" 704 | resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d" 705 | dependencies: 706 | minipass "^2.2.1" 707 | 708 | fs-readdir-recursive@^1.0.0: 709 | version "1.1.0" 710 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27" 711 | 712 | fs.realpath@^1.0.0: 713 | version "1.0.0" 714 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 715 | 716 | fsevents@^1.0.0: 717 | version "1.2.4" 718 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.4.tgz#f41dcb1af2582af3692da36fc55cbd8e1041c426" 719 | dependencies: 720 | nan "^2.9.2" 721 | node-pre-gyp "^0.10.0" 722 | 723 | gauge@~2.7.3: 724 | version "2.7.4" 725 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 726 | dependencies: 727 | aproba "^1.0.3" 728 | console-control-strings "^1.0.0" 729 | has-unicode "^2.0.0" 730 | object-assign "^4.1.0" 731 | signal-exit "^3.0.0" 732 | string-width "^1.0.1" 733 | strip-ansi "^3.0.1" 734 | wide-align "^1.1.0" 735 | 736 | glob-base@^0.3.0: 737 | version "0.3.0" 738 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 739 | dependencies: 740 | glob-parent "^2.0.0" 741 | is-glob "^2.0.0" 742 | 743 | glob-parent@^2.0.0: 744 | version "2.0.0" 745 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 746 | dependencies: 747 | is-glob "^2.0.0" 748 | 749 | glob@^7.0.5, glob@^7.1.2: 750 | version "7.1.2" 751 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 752 | dependencies: 753 | fs.realpath "^1.0.0" 754 | inflight "^1.0.4" 755 | inherits "2" 756 | minimatch "^3.0.4" 757 | once "^1.3.0" 758 | path-is-absolute "^1.0.0" 759 | 760 | globals@^9.18.0: 761 | version "9.18.0" 762 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 763 | 764 | graceful-fs@^4.1.2, graceful-fs@^4.1.4: 765 | version "4.1.11" 766 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 767 | 768 | has-ansi@^2.0.0: 769 | version "2.0.0" 770 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 771 | dependencies: 772 | ansi-regex "^2.0.0" 773 | 774 | has-unicode@^2.0.0: 775 | version "2.0.1" 776 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 777 | 778 | home-or-tmp@^2.0.0: 779 | version "2.0.0" 780 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 781 | dependencies: 782 | os-homedir "^1.0.0" 783 | os-tmpdir "^1.0.1" 784 | 785 | iconv-lite@^0.4.4: 786 | version "0.4.23" 787 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.23.tgz#297871f63be507adcfbfca715d0cd0eed84e9a63" 788 | dependencies: 789 | safer-buffer ">= 2.1.2 < 3" 790 | 791 | ignore-walk@^3.0.1: 792 | version "3.0.1" 793 | resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" 794 | dependencies: 795 | minimatch "^3.0.4" 796 | 797 | inflight@^1.0.4: 798 | version "1.0.6" 799 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 800 | dependencies: 801 | once "^1.3.0" 802 | wrappy "1" 803 | 804 | inherits@2, inherits@^2.0.1, inherits@~2.0.3: 805 | version "2.0.3" 806 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 807 | 808 | ini@~1.3.0: 809 | version "1.3.5" 810 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 811 | 812 | invariant@^2.2.2: 813 | version "2.2.4" 814 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" 815 | dependencies: 816 | loose-envify "^1.0.0" 817 | 818 | is-binary-path@^1.0.0: 819 | version "1.0.1" 820 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 821 | dependencies: 822 | binary-extensions "^1.0.0" 823 | 824 | is-buffer@^1.1.5: 825 | version "1.1.6" 826 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 827 | 828 | is-dotfile@^1.0.0: 829 | version "1.0.3" 830 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 831 | 832 | is-equal-shallow@^0.1.3: 833 | version "0.1.3" 834 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 835 | dependencies: 836 | is-primitive "^2.0.0" 837 | 838 | is-extendable@^0.1.1: 839 | version "0.1.1" 840 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 841 | 842 | is-extglob@^1.0.0: 843 | version "1.0.0" 844 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 845 | 846 | is-finite@^1.0.0: 847 | version "1.0.2" 848 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 849 | dependencies: 850 | number-is-nan "^1.0.0" 851 | 852 | is-fullwidth-code-point@^1.0.0: 853 | version "1.0.0" 854 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 855 | dependencies: 856 | number-is-nan "^1.0.0" 857 | 858 | is-glob@^2.0.0, is-glob@^2.0.1: 859 | version "2.0.1" 860 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 861 | dependencies: 862 | is-extglob "^1.0.0" 863 | 864 | is-number@^2.1.0: 865 | version "2.1.0" 866 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 867 | dependencies: 868 | kind-of "^3.0.2" 869 | 870 | is-number@^4.0.0: 871 | version "4.0.0" 872 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" 873 | 874 | is-posix-bracket@^0.1.0: 875 | version "0.1.1" 876 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 877 | 878 | is-primitive@^2.0.0: 879 | version "2.0.0" 880 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 881 | 882 | isarray@1.0.0, isarray@~1.0.0: 883 | version "1.0.0" 884 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 885 | 886 | isobject@^2.0.0: 887 | version "2.1.0" 888 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 889 | dependencies: 890 | isarray "1.0.0" 891 | 892 | js-tokens@^3.0.0, js-tokens@^3.0.2: 893 | version "3.0.2" 894 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 895 | 896 | jsesc@^1.3.0: 897 | version "1.3.0" 898 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 899 | 900 | jsesc@~0.5.0: 901 | version "0.5.0" 902 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 903 | 904 | json5@^0.5.1: 905 | version "0.5.1" 906 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 907 | 908 | kind-of@^3.0.2: 909 | version "3.2.2" 910 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 911 | dependencies: 912 | is-buffer "^1.1.5" 913 | 914 | kind-of@^6.0.0: 915 | version "6.0.2" 916 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 917 | 918 | lodash@^4.17.4: 919 | version "4.17.10" 920 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7" 921 | 922 | loose-envify@^1.0.0: 923 | version "1.3.1" 924 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 925 | dependencies: 926 | js-tokens "^3.0.0" 927 | 928 | math-random@^1.0.1: 929 | version "1.0.1" 930 | resolved "https://registry.yarnpkg.com/math-random/-/math-random-1.0.1.tgz#8b3aac588b8a66e4975e3cdea67f7bb329601fac" 931 | 932 | micromatch@^2.1.5: 933 | version "2.3.11" 934 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 935 | dependencies: 936 | arr-diff "^2.0.0" 937 | array-unique "^0.2.1" 938 | braces "^1.8.2" 939 | expand-brackets "^0.1.4" 940 | extglob "^0.3.1" 941 | filename-regex "^2.0.0" 942 | is-extglob "^1.0.0" 943 | is-glob "^2.0.1" 944 | kind-of "^3.0.2" 945 | normalize-path "^2.0.1" 946 | object.omit "^2.0.0" 947 | parse-glob "^3.0.4" 948 | regex-cache "^0.4.2" 949 | 950 | minimatch@^3.0.2, minimatch@^3.0.4: 951 | version "3.0.4" 952 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 953 | dependencies: 954 | brace-expansion "^1.1.7" 955 | 956 | minimist@0.0.8: 957 | version "0.0.8" 958 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 959 | 960 | minimist@^1.2.0: 961 | version "1.2.0" 962 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 963 | 964 | minipass@^2.2.1, minipass@^2.2.4: 965 | version "2.3.0" 966 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.0.tgz#2e11b1c46df7fe7f1afbe9a490280add21ffe384" 967 | dependencies: 968 | safe-buffer "^5.1.1" 969 | yallist "^3.0.0" 970 | 971 | minizlib@^1.1.0: 972 | version "1.1.0" 973 | resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.1.0.tgz#11e13658ce46bc3a70a267aac58359d1e0c29ceb" 974 | dependencies: 975 | minipass "^2.2.1" 976 | 977 | mkdirp@^0.5.0, mkdirp@^0.5.1: 978 | version "0.5.1" 979 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 980 | dependencies: 981 | minimist "0.0.8" 982 | 983 | ms@2.0.0: 984 | version "2.0.0" 985 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 986 | 987 | nan@^2.9.2: 988 | version "2.10.0" 989 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.10.0.tgz#96d0cd610ebd58d4b4de9cc0c6828cda99c7548f" 990 | 991 | needle@^2.2.0: 992 | version "2.2.1" 993 | resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.1.tgz#b5e325bd3aae8c2678902fa296f729455d1d3a7d" 994 | dependencies: 995 | debug "^2.1.2" 996 | iconv-lite "^0.4.4" 997 | sax "^1.2.4" 998 | 999 | node-pre-gyp@^0.10.0: 1000 | version "0.10.0" 1001 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.10.0.tgz#6e4ef5bb5c5203c6552448828c852c40111aac46" 1002 | dependencies: 1003 | detect-libc "^1.0.2" 1004 | mkdirp "^0.5.1" 1005 | needle "^2.2.0" 1006 | nopt "^4.0.1" 1007 | npm-packlist "^1.1.6" 1008 | npmlog "^4.0.2" 1009 | rc "^1.1.7" 1010 | rimraf "^2.6.1" 1011 | semver "^5.3.0" 1012 | tar "^4" 1013 | 1014 | nopt@^4.0.1: 1015 | version "4.0.1" 1016 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1017 | dependencies: 1018 | abbrev "1" 1019 | osenv "^0.1.4" 1020 | 1021 | normalize-path@^2.0.0, normalize-path@^2.0.1: 1022 | version "2.1.1" 1023 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1024 | dependencies: 1025 | remove-trailing-separator "^1.0.1" 1026 | 1027 | npm-bundled@^1.0.1: 1028 | version "1.0.3" 1029 | resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.3.tgz#7e71703d973af3370a9591bafe3a63aca0be2308" 1030 | 1031 | npm-packlist@^1.1.6: 1032 | version "1.1.10" 1033 | resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.1.10.tgz#1039db9e985727e464df066f4cf0ab6ef85c398a" 1034 | dependencies: 1035 | ignore-walk "^3.0.1" 1036 | npm-bundled "^1.0.1" 1037 | 1038 | npmlog@^4.0.2: 1039 | version "4.1.2" 1040 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 1041 | dependencies: 1042 | are-we-there-yet "~1.1.2" 1043 | console-control-strings "~1.1.0" 1044 | gauge "~2.7.3" 1045 | set-blocking "~2.0.0" 1046 | 1047 | number-is-nan@^1.0.0: 1048 | version "1.0.1" 1049 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1050 | 1051 | object-assign@^4.1.0: 1052 | version "4.1.1" 1053 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1054 | 1055 | object.omit@^2.0.0: 1056 | version "2.0.1" 1057 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1058 | dependencies: 1059 | for-own "^0.1.4" 1060 | is-extendable "^0.1.1" 1061 | 1062 | once@^1.3.0: 1063 | version "1.4.0" 1064 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1065 | dependencies: 1066 | wrappy "1" 1067 | 1068 | os-homedir@^1.0.0: 1069 | version "1.0.2" 1070 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1071 | 1072 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 1073 | version "1.0.2" 1074 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1075 | 1076 | osenv@^0.1.4: 1077 | version "0.1.5" 1078 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 1079 | dependencies: 1080 | os-homedir "^1.0.0" 1081 | os-tmpdir "^1.0.0" 1082 | 1083 | output-file-sync@^1.1.2: 1084 | version "1.1.2" 1085 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 1086 | dependencies: 1087 | graceful-fs "^4.1.4" 1088 | mkdirp "^0.5.1" 1089 | object-assign "^4.1.0" 1090 | 1091 | parse-glob@^3.0.4: 1092 | version "3.0.4" 1093 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1094 | dependencies: 1095 | glob-base "^0.3.0" 1096 | is-dotfile "^1.0.0" 1097 | is-extglob "^1.0.0" 1098 | is-glob "^2.0.0" 1099 | 1100 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 1101 | version "1.0.1" 1102 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1103 | 1104 | preserve@^0.2.0: 1105 | version "0.2.0" 1106 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1107 | 1108 | private@^0.1.6, private@^0.1.8: 1109 | version "0.1.8" 1110 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 1111 | 1112 | process-nextick-args@~2.0.0: 1113 | version "2.0.0" 1114 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 1115 | 1116 | randomatic@^3.0.0: 1117 | version "3.0.0" 1118 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-3.0.0.tgz#d35490030eb4f7578de292ce6dfb04a91a128923" 1119 | dependencies: 1120 | is-number "^4.0.0" 1121 | kind-of "^6.0.0" 1122 | math-random "^1.0.1" 1123 | 1124 | rc@^1.1.7: 1125 | version "1.2.7" 1126 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.7.tgz#8a10ca30d588d00464360372b890d06dacd02297" 1127 | dependencies: 1128 | deep-extend "^0.5.1" 1129 | ini "~1.3.0" 1130 | minimist "^1.2.0" 1131 | strip-json-comments "~2.0.1" 1132 | 1133 | readable-stream@^2.0.2, readable-stream@^2.0.6: 1134 | version "2.3.6" 1135 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 1136 | dependencies: 1137 | core-util-is "~1.0.0" 1138 | inherits "~2.0.3" 1139 | isarray "~1.0.0" 1140 | process-nextick-args "~2.0.0" 1141 | safe-buffer "~5.1.1" 1142 | string_decoder "~1.1.1" 1143 | util-deprecate "~1.0.1" 1144 | 1145 | readdirp@^2.0.0: 1146 | version "2.1.0" 1147 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 1148 | dependencies: 1149 | graceful-fs "^4.1.2" 1150 | minimatch "^3.0.2" 1151 | readable-stream "^2.0.2" 1152 | set-immediate-shim "^1.0.1" 1153 | 1154 | redux-devtools-extension@^2.13.2: 1155 | version "2.13.2" 1156 | resolved "https://registry.yarnpkg.com/redux-devtools-extension/-/redux-devtools-extension-2.13.2.tgz#e0f9a8e8dfca7c17be92c7124958a3b94eb2911d" 1157 | 1158 | regenerate@^1.2.1: 1159 | version "1.4.0" 1160 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" 1161 | 1162 | regenerator-runtime@^0.10.5: 1163 | version "0.10.5" 1164 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 1165 | 1166 | regenerator-runtime@^0.11.0: 1167 | version "0.11.1" 1168 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 1169 | 1170 | regenerator-transform@^0.10.0: 1171 | version "0.10.1" 1172 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 1173 | dependencies: 1174 | babel-runtime "^6.18.0" 1175 | babel-types "^6.19.0" 1176 | private "^0.1.6" 1177 | 1178 | regex-cache@^0.4.2: 1179 | version "0.4.4" 1180 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 1181 | dependencies: 1182 | is-equal-shallow "^0.1.3" 1183 | 1184 | regexpu-core@^2.0.0: 1185 | version "2.0.0" 1186 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 1187 | dependencies: 1188 | regenerate "^1.2.1" 1189 | regjsgen "^0.2.0" 1190 | regjsparser "^0.1.4" 1191 | 1192 | regjsgen@^0.2.0: 1193 | version "0.2.0" 1194 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 1195 | 1196 | regjsparser@^0.1.4: 1197 | version "0.1.5" 1198 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 1199 | dependencies: 1200 | jsesc "~0.5.0" 1201 | 1202 | remove-trailing-separator@^1.0.1: 1203 | version "1.1.0" 1204 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 1205 | 1206 | repeat-element@^1.1.2: 1207 | version "1.1.2" 1208 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1209 | 1210 | repeat-string@^1.5.2: 1211 | version "1.6.1" 1212 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1213 | 1214 | repeating@^2.0.0: 1215 | version "2.0.1" 1216 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1217 | dependencies: 1218 | is-finite "^1.0.0" 1219 | 1220 | rimraf@^2.6.1: 1221 | version "2.6.2" 1222 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 1223 | dependencies: 1224 | glob "^7.0.5" 1225 | 1226 | safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 1227 | version "5.1.2" 1228 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 1229 | 1230 | "safer-buffer@>= 2.1.2 < 3": 1231 | version "2.1.2" 1232 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 1233 | 1234 | sax@^1.2.4: 1235 | version "1.2.4" 1236 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 1237 | 1238 | semver@^5.3.0: 1239 | version "5.5.0" 1240 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 1241 | 1242 | set-blocking@~2.0.0: 1243 | version "2.0.0" 1244 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1245 | 1246 | set-immediate-shim@^1.0.1: 1247 | version "1.0.1" 1248 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 1249 | 1250 | signal-exit@^3.0.0: 1251 | version "3.0.2" 1252 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 1253 | 1254 | slash@^1.0.0: 1255 | version "1.0.0" 1256 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 1257 | 1258 | source-map-support@^0.4.15: 1259 | version "0.4.18" 1260 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 1261 | dependencies: 1262 | source-map "^0.5.6" 1263 | 1264 | source-map@^0.5.6, source-map@^0.5.7: 1265 | version "0.5.7" 1266 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 1267 | 1268 | string-width@^1.0.1, string-width@^1.0.2: 1269 | version "1.0.2" 1270 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1271 | dependencies: 1272 | code-point-at "^1.0.0" 1273 | is-fullwidth-code-point "^1.0.0" 1274 | strip-ansi "^3.0.0" 1275 | 1276 | string_decoder@~1.1.1: 1277 | version "1.1.1" 1278 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 1279 | dependencies: 1280 | safe-buffer "~5.1.0" 1281 | 1282 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 1283 | version "3.0.1" 1284 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1285 | dependencies: 1286 | ansi-regex "^2.0.0" 1287 | 1288 | strip-json-comments@~2.0.1: 1289 | version "2.0.1" 1290 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 1291 | 1292 | supports-color@^2.0.0: 1293 | version "2.0.0" 1294 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 1295 | 1296 | tar@^4: 1297 | version "4.4.2" 1298 | resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.2.tgz#60685211ba46b38847b1ae7ee1a24d744a2cd462" 1299 | dependencies: 1300 | chownr "^1.0.1" 1301 | fs-minipass "^1.2.5" 1302 | minipass "^2.2.4" 1303 | minizlib "^1.1.0" 1304 | mkdirp "^0.5.0" 1305 | safe-buffer "^5.1.2" 1306 | yallist "^3.0.2" 1307 | 1308 | to-fast-properties@^1.0.3: 1309 | version "1.0.3" 1310 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 1311 | 1312 | trim-right@^1.0.1: 1313 | version "1.0.1" 1314 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 1315 | 1316 | user-home@^1.1.1: 1317 | version "1.1.1" 1318 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 1319 | 1320 | util-deprecate@~1.0.1: 1321 | version "1.0.2" 1322 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1323 | 1324 | v8flags@^2.1.1: 1325 | version "2.1.1" 1326 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 1327 | dependencies: 1328 | user-home "^1.1.1" 1329 | 1330 | wide-align@^1.1.0: 1331 | version "1.1.2" 1332 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 1333 | dependencies: 1334 | string-width "^1.0.2" 1335 | 1336 | wrappy@1: 1337 | version "1.0.2" 1338 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1339 | 1340 | yallist@^3.0.0, yallist@^3.0.2: 1341 | version "3.0.2" 1342 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.2.tgz#8452b4bb7e83c7c188d8041c1a837c773d6d8bb9" 1343 | --------------------------------------------------------------------------------