├── .gitignore ├── LICENSE ├── README.md ├── ignite.json ├── package.json ├── plugin.js ├── templates ├── devScreensInstall │ └── JsonServer │ │ ├── db.json │ │ ├── devScreenIntegration.js │ │ ├── json-server.json │ │ └── routes.json └── minimalInstall │ └── JsonServer │ ├── db.json │ ├── json-server.json │ └── routes.json ├── test ├── add.js ├── interface.js └── remove.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | generated 4 | .nyc_output -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Infinite Red, Inc. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ignite-json-server 2 | [Ignite](https://infinite.red/ignite) plugin that adds json-server to an Ignited project 3 | 4 | This plugin installs the necessary files and configuration settings to run [JSON-Server](https://github.com/typicode/json-server) from the root directory of your Ignited project. 5 | 6 | ## Installation and Usage 7 | 8 | 1. CD to the root of your Ignited project and issue this command: `ignite add json-server` 9 | 10 | 2. If you have installed [ignite-dev-screens](https://github.com/infinitered/ignite-dev-screens) to your app, a prompt will appear ('Do you want to integrate json-server with the dev screens?'). 11 | - If you answer yes, json-server will be integrated with the dev screens. You will have to start up json-server in order to provide the API endpoints required by the Startup saga as well as the API testing dev screens. See step 3 to see how to start up json-server. 12 | - If you answer no, json-server will be added to your application without integration to the optional dev screens. 13 | 14 | 3. Open a new terminal screen and start json-server with this command: `yarn|npm run json-server`. This will start a json-server instance that you can access via API endpoints if you integrate them into your application. The default settings for json-server are in `JsonServer/json-server.json`. Here is where you set the host and port settings for json-server. I recommend installing [Postman](https://www.getpostman.com/) to test json-server. 15 | 16 | 4. Read the docs for [JSON-Server](https://github.com/typicode/json-server). You can modify the JSON file used by json-server here: `JsonServer/db.json`. Set up routes if you need them by modifying `JsonServer/routes.json`. 17 | 18 | 5. If you elected to integrate json-server with the dev screens, a middleware file is added to JsonServer/devScreenIntegration.js. This file is referenced in the startup script: 19 | ``` 20 | "json-server": "json-server -c JsonServer/json-server.json JsonServer/db.json --middlewares JsonServer/devScreenIntegration.js" 21 | ``` 22 | This simple middleware file demonstrates how to intercept a json-server request and return whatever you like to the request. In this example, searches for users return a request URL pattern match in `JsonServer/db.json`. 23 | 24 | 6. If you elected to integrate json-server with the dev screens, you can disable json-server by setting `useJsonServer` to false (`__DEV__ && false`) in `App/Config/DebugConfig.js`. This will result in Fixtures being used for the API endpoints. 25 | 26 | ## Premium Support 27 | 28 | [Ignite](https://infinite.red/ignite) and [Ignite-json-server](https://github.com/infinitered/ignite-json-server), as open source projects, are free to use and always will be. [Infinite Red](https://infinite.red/) offers premium Ignite and Ignite-json-server support and general mobile app design/development services. Email us at [hello@infinite.red](mailto:hello@infinite.red) to get in touch with us for more details. 29 | -------------------------------------------------------------------------------- /ignite.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ignite-json-server", 3 | "description": "An Ignite plugin that installs json-server as a development dependency to your Ignited app.", 4 | "version": "0.1.8", 5 | "license": "MIT", 6 | "files": [ 7 | "README.md", 8 | "plugin.js", 9 | "templates" 10 | ], 11 | "author": { 12 | "name": "Derek Greenberg", 13 | "email": "derek@gmail.com", 14 | "url": "https://github.com/infinitered/ignite-json-server" 15 | }, 16 | "scripts": { 17 | "lint": "standard", 18 | "test": "ava", 19 | "watch": "ava --watch", 20 | "coverage": "nyc ava", 21 | "shipit": "np" 22 | }, 23 | "standard": { 24 | "parser": "babel-eslint" 25 | }, 26 | "repository": "infinitered/ignite-json-server", 27 | "devDependencies": { 28 | "ava": "^0.18.2", 29 | "babel-eslint": "^7.1.1", 30 | "np": "^2.12.0", 31 | "nyc": "^10.1.2", 32 | "sinon": "^1.17.7", 33 | "standard": "^8.6.0" 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /plugin.js: -------------------------------------------------------------------------------- 1 | // Ignite plugin for JsonServer 2 | // ---------------------------------------------------------------------------- 3 | 4 | const NPM_MODULE_NAME = 'json-server' 5 | const PLUGIN_PATH = __dirname 6 | const APP_PATH = process.cwd() 7 | const PACKAGE_JSON_PATCH = 'json-server -c JsonServer/json-server.json JsonServer/db.json' 8 | const PACKAGE_JSON_PATCH_WITH_DEV_SCREEN_INTEGRATION = 'json-server -c JsonServer/json-server.json JsonServer/db.json --middlewares JsonServer/devScreenIntegration.js' 9 | const DEBUG_CONFIG_PATH = `${APP_PATH}/App/Config/DebugConfig.js` 10 | const API_PATCH_IMPORT_DEBUG_CONFIG = "import DebugConfig from '../Config/DebugConfig'" 11 | const API_PATCH_IMPORT_JSON_SERVER_SETTINGS = "import JsonServerSettings from '../../JsonServer/json-server.json'" 12 | const API_PATCH_API_SAUCE_CREATE_FINDER = 'const api' 13 | const API_PATCH_SET_BASE_URL = " if (DebugConfig.useJsonServer) { baseURL = 'http://' + JsonServerSettings.host + ':' + JsonServerSettings.port }" 14 | const API_PATCH_GET_ROOT_ORIGINAL = "const getRoot = () => api.get('')" 15 | const API_PATCH_GET_ROOT = "const getRoot = () => api.get(DebugConfig.useJsonServer ? 'root' : '')" 16 | 17 | const API_PATH = `${APP_PATH}/App/Services/Api.js` 18 | const IGNITE_DEVSCREENS_PATH = `${APP_PATH}/ignite/DevScreens` 19 | 20 | const add = async function (context) { 21 | const { ignite, filesystem } = context 22 | 23 | // install a npm module and link it 24 | await ignite.addModule(NPM_MODULE_NAME, {dev: true, version: '0.9.6'}) 25 | 26 | let installIntegratedWithDevScreens = false 27 | 28 | // here we present prompts 29 | if (filesystem.exists(IGNITE_DEVSCREENS_PATH)) { 30 | installIntegratedWithDevScreens = await context.prompt.confirm( 31 | 'Do you want to integrate json-server with the dev screens?' 32 | ) 33 | } 34 | 35 | // Copy templates/JsonServer to /JsonServer 36 | if (!filesystem.exists('JsonServer')) { 37 | const templateDir = installIntegratedWithDevScreens ? 'devScreensInstall' : 'minimalInstall' 38 | filesystem.copy(`${PLUGIN_PATH}/templates/${templateDir}/JsonServer`, 'JsonServer') 39 | } 40 | 41 | if (installIntegratedWithDevScreens) { 42 | // Patch API.js 43 | ignite.patchInFile(API_PATH, { 44 | insert: API_PATCH_IMPORT_DEBUG_CONFIG, 45 | after: "import apisauce from 'apisauce'" 46 | }) 47 | // Patch API.js 48 | ignite.patchInFile(API_PATH, { 49 | insert: API_PATCH_IMPORT_JSON_SERVER_SETTINGS, 50 | after: API_PATCH_IMPORT_DEBUG_CONFIG 51 | }) 52 | 53 | // Patch API.js 54 | ignite.patchInFile(API_PATH, { 55 | insert: API_PATCH_SET_BASE_URL, 56 | before: API_PATCH_API_SAUCE_CREATE_FINDER 57 | }) 58 | 59 | ignite.patchInFile(API_PATH, { 60 | insert: API_PATCH_GET_ROOT, 61 | replace: API_PATCH_GET_ROOT_ORIGINAL 62 | }) 63 | 64 | ignite.setDebugConfig('useJsonServer', '__DEV__ && true', true) 65 | 66 | // patch package.json with a script that starts json-server with the necessary middleware file for the dev screens. 67 | const pkg = filesystem.read('package.json', 'json') 68 | pkg.scripts['json-server'] = PACKAGE_JSON_PATCH_WITH_DEV_SCREEN_INTEGRATION 69 | filesystem.write('package.json', pkg) 70 | } else { 71 | // patch package.json with a script that starts json-server. 72 | const pkg = filesystem.read('package.json', 'json') 73 | pkg.scripts['json-server'] = PACKAGE_JSON_PATCH 74 | filesystem.write('package.json', pkg) 75 | } 76 | } 77 | 78 | /** 79 | * Remove yourself from the project. 80 | */ 81 | const remove = async function (context) { 82 | const { ignite, filesystem, patching } = context 83 | 84 | // remove the npm module 85 | await ignite.removeModule(NPM_MODULE_NAME, {dev: true}) 86 | 87 | // Remove App/JsonServer folder 88 | filesystem.remove('JsonServer') 89 | 90 | if (filesystem.exists(IGNITE_DEVSCREENS_PATH)) { 91 | // currently leaves a blank line behind in the app's /Config/DebugConfig.js file 92 | // to be fixed in Ignite and possibly in GlueGun 93 | // See https://github.com/infinitered/ignite/issues/948 94 | if (patching.isInFile(DEBUG_CONFIG_PATH, 'useJsonServer')) { 95 | ignite.removeDebugConfig('useJsonServer') 96 | } 97 | 98 | // Unpatch changes to API.js 99 | if (patching.isInFile(API_PATH, API_PATCH_IMPORT_DEBUG_CONFIG)) { 100 | ignite.patchInFile(API_PATH, { 101 | delete: `${API_PATCH_IMPORT_DEBUG_CONFIG}\n` 102 | }) 103 | } 104 | 105 | // Unpatch changes to API.js 106 | if (patching.isInFile(API_PATH, API_PATCH_IMPORT_JSON_SERVER_SETTINGS)) { 107 | ignite.patchInFile(API_PATH, { 108 | delete: `${API_PATCH_IMPORT_JSON_SERVER_SETTINGS}\n` 109 | }) 110 | } 111 | 112 | // Unpatch changes to API.js 113 | if (patching.isInFile(API_PATH, 'DebugConfig.useJsonServer')) { 114 | ignite.patchInFile(API_PATH, { 115 | delete: `${API_PATCH_SET_BASE_URL}\n` 116 | }) 117 | } 118 | 119 | // Unpatch changes to API.js 120 | if (patching.isInFile(API_PATH, "root' : ''")) { 121 | ignite.patchInFile(API_PATH, { 122 | replace: API_PATCH_GET_ROOT, 123 | insert: API_PATCH_GET_ROOT_ORIGINAL 124 | }) 125 | } 126 | } 127 | 128 | // remove script added to package.json 129 | const pkg = filesystem.read('package.json', 'json') 130 | delete pkg.scripts['json-server'] 131 | filesystem.write('package.json', pkg) 132 | } 133 | 134 | // Required in all Ignite plugins 135 | module.exports = { add, remove } 136 | 137 | -------------------------------------------------------------------------------- /templates/devScreensInstall/JsonServer/db.json: -------------------------------------------------------------------------------- 1 | { 2 | "root": { 3 | "current_user_url": "https://api.github.com/user", 4 | "current_user_authorizations_html_url": "https://github.com/settings/connections/applications{/client_id}", 5 | "authorizations_url": "https://api.github.com/authorizations", 6 | "code_search_url": "https://api.github.com/search/code?q={query}{&page,per_page,sort,order}", 7 | "commit_search_url": "https://api.github.com/search/commits?q={query}{&page,per_page,sort,order}", 8 | "emails_url": "https://api.github.com/user/emails", 9 | "emojis_url": "https://api.github.com/emojis", 10 | "events_url": "https://api.github.com/events", 11 | "feeds_url": "https://api.github.com/feeds", 12 | "followers_url": "https://api.github.com/user/followers", 13 | "following_url": "https://api.github.com/user/following{/target}", 14 | "gists_url": "https://api.github.com/gists{/gist_id}", 15 | "hub_url": "https://api.github.com/hub", 16 | "issue_search_url": "https://api.github.com/search/issues?q={query}{&page,per_page,sort,order}", 17 | "issues_url": "https://api.github.com/issues", 18 | "keys_url": "https://api.github.com/user/keys", 19 | "notifications_url": "https://api.github.com/notifications", 20 | "organization_repositories_url": "https://api.github.com/orgs/{org}/repos{?type,page,per_page,sort}", 21 | "organization_url": "https://api.github.com/orgs/{org}", 22 | "public_gists_url": "https://api.github.com/gists/public", 23 | "rate_limit_url": "https://api.github.com/rate_limit", 24 | "repository_url": "https://api.github.com/repos/{owner}/{repo}", 25 | "repository_search_url": "https://api.github.com/search/repositories?q={query}{&page,per_page,sort,order}", 26 | "current_user_repositories_url": "https://api.github.com/user/repos{?type,page,per_page,sort}", 27 | "starred_url": "https://api.github.com/user/starred{/owner}{/repo}", 28 | "starred_gists_url": "https://api.github.com/gists/starred", 29 | "team_url": "https://api.github.com/teams", 30 | "user_url": "https://api.github.com/users/{user}", 31 | "user_organizations_url": "https://api.github.com/user/orgs", 32 | "user_repositories_url": "https://api.github.com/users/{user}/repos{?type,page,per_page,sort}", 33 | "user_search_url": "https://api.github.com/search/users?q={query}{&page,per_page,sort,order}" 34 | }, 35 | "gantman": { 36 | "total_count": 7, 37 | "incomplete_results": false, 38 | "items": [ 39 | { 40 | "login": "GantMan", 41 | "id": 997157, 42 | "avatar_url": "https://avatars.githubusercontent.com/u/997157?v=3", 43 | "gravatar_id": "", 44 | "url": "https://api.github.com/users/GantMan", 45 | "html_url": "https://github.com/GantMan", 46 | "followers_url": "https://api.github.com/users/GantMan/followers", 47 | "following_url": "https://api.github.com/users/GantMan/following{/other_user}", 48 | "gists_url": "https://api.github.com/users/GantMan/gists{/gist_id}", 49 | "starred_url": "https://api.github.com/users/GantMan/starred{/owner}{/repo}", 50 | "subscriptions_url": "https://api.github.com/users/GantMan/subscriptions", 51 | "organizations_url": "https://api.github.com/users/GantMan/orgs", 52 | "repos_url": "https://api.github.com/users/GantMan/repos", 53 | "events_url": "https://api.github.com/users/GantMan/events{/privacy}", 54 | "received_events_url": "https://api.github.com/users/GantMan/received_events", 55 | "type": "User", 56 | "site_admin": false, 57 | "score": 122.12115 58 | }, 59 | { 60 | "login": "vlad-G", 61 | "id": 13520880, 62 | "avatar_url": "https://avatars.githubusercontent.com/u/13520880?v=3", 63 | "gravatar_id": "", 64 | "url": "https://api.github.com/users/vlad-G", 65 | "html_url": "https://github.com/vlad-G", 66 | "followers_url": "https://api.github.com/users/vlad-G/followers", 67 | "following_url": "https://api.github.com/users/vlad-G/following{/other_user}", 68 | "gists_url": "https://api.github.com/users/vlad-G/gists{/gist_id}", 69 | "starred_url": "https://api.github.com/users/vlad-G/starred{/owner}{/repo}", 70 | "subscriptions_url": "https://api.github.com/users/vlad-G/subscriptions", 71 | "organizations_url": "https://api.github.com/users/vlad-G/orgs", 72 | "repos_url": "https://api.github.com/users/vlad-G/repos", 73 | "events_url": "https://api.github.com/users/vlad-G/events{/privacy}", 74 | "received_events_url": "https://api.github.com/users/vlad-G/received_events", 75 | "type": "User", 76 | "site_admin": false, 77 | "score": 12.69848 78 | }, 79 | { 80 | "login": "gantmani", 81 | "id": 3034094, 82 | "avatar_url": "https://avatars.githubusercontent.com/u/3034094?v=3", 83 | "gravatar_id": "", 84 | "url": "https://api.github.com/users/gantmani", 85 | "html_url": "https://github.com/gantmani", 86 | "followers_url": "https://api.github.com/users/gantmani/followers", 87 | "following_url": "https://api.github.com/users/gantmani/following{/other_user}", 88 | "gists_url": "https://api.github.com/users/gantmani/gists{/gist_id}", 89 | "starred_url": "https://api.github.com/users/gantmani/starred{/owner}{/repo}", 90 | "subscriptions_url": "https://api.github.com/users/gantmani/subscriptions", 91 | "organizations_url": "https://api.github.com/users/gantmani/orgs", 92 | "repos_url": "https://api.github.com/users/gantmani/repos", 93 | "events_url": "https://api.github.com/users/gantmani/events{/privacy}", 94 | "received_events_url": "https://api.github.com/users/gantmani/received_events", 95 | "type": "User", 96 | "site_admin": false, 97 | "score": 11.641713 98 | }, 99 | { 100 | "login": "sgantman", 101 | "id": 5911526, 102 | "avatar_url": "https://avatars.githubusercontent.com/u/5911526?v=3", 103 | "gravatar_id": "", 104 | "url": "https://api.github.com/users/sgantman", 105 | "html_url": "https://github.com/sgantman", 106 | "followers_url": "https://api.github.com/users/sgantman/followers", 107 | "following_url": "https://api.github.com/users/sgantman/following{/other_user}", 108 | "gists_url": "https://api.github.com/users/sgantman/gists{/gist_id}", 109 | "starred_url": "https://api.github.com/users/sgantman/starred{/owner}{/repo}", 110 | "subscriptions_url": "https://api.github.com/users/sgantman/subscriptions", 111 | "organizations_url": "https://api.github.com/users/sgantman/orgs", 112 | "repos_url": "https://api.github.com/users/sgantman/repos", 113 | "events_url": "https://api.github.com/users/sgantman/events{/privacy}", 114 | "received_events_url": "https://api.github.com/users/sgantman/received_events", 115 | "type": "User", 116 | "site_admin": false, 117 | "score": 7.926345 118 | }, 119 | { 120 | "login": "michaelgantman", 121 | "id": 16693070, 122 | "avatar_url": "https://avatars.githubusercontent.com/u/16693070?v=3", 123 | "gravatar_id": "", 124 | "url": "https://api.github.com/users/michaelgantman", 125 | "html_url": "https://github.com/michaelgantman", 126 | "followers_url": "https://api.github.com/users/michaelgantman/followers", 127 | "following_url": "https://api.github.com/users/michaelgantman/following{/other_user}", 128 | "gists_url": "https://api.github.com/users/michaelgantman/gists{/gist_id}", 129 | "starred_url": "https://api.github.com/users/michaelgantman/starred{/owner}{/repo}", 130 | "subscriptions_url": "https://api.github.com/users/michaelgantman/subscriptions", 131 | "organizations_url": "https://api.github.com/users/michaelgantman/orgs", 132 | "repos_url": "https://api.github.com/users/michaelgantman/repos", 133 | "events_url": "https://api.github.com/users/michaelgantman/events{/privacy}", 134 | "received_events_url": "https://api.github.com/users/michaelgantman/received_events", 135 | "type": "User", 136 | "site_admin": false, 137 | "score": 7.926345 138 | }, 139 | { 140 | "login": "gantmanis", 141 | "id": 19141249, 142 | "avatar_url": "https://avatars.githubusercontent.com/u/19141249?v=3", 143 | "gravatar_id": "", 144 | "url": "https://api.github.com/users/gantmanis", 145 | "html_url": "https://github.com/gantmanis", 146 | "followers_url": "https://api.github.com/users/gantmanis/followers", 147 | "following_url": "https://api.github.com/users/gantmanis/following{/other_user}", 148 | "gists_url": "https://api.github.com/users/gantmanis/gists{/gist_id}", 149 | "starred_url": "https://api.github.com/users/gantmanis/starred{/owner}{/repo}", 150 | "subscriptions_url": "https://api.github.com/users/gantmanis/subscriptions", 151 | "organizations_url": "https://api.github.com/users/gantmanis/orgs", 152 | "repos_url": "https://api.github.com/users/gantmanis/repos", 153 | "events_url": "https://api.github.com/users/gantmanis/events{/privacy}", 154 | "received_events_url": "https://api.github.com/users/gantmanis/received_events", 155 | "type": "User", 156 | "site_admin": false, 157 | "score": 7.8813524 158 | }, 159 | { 160 | "login": "Gantman2014", 161 | "id": 7669410, 162 | "avatar_url": "https://avatars.githubusercontent.com/u/7669410?v=3", 163 | "gravatar_id": "", 164 | "url": "https://api.github.com/users/Gantman2014", 165 | "html_url": "https://github.com/Gantman2014", 166 | "followers_url": "https://api.github.com/users/Gantman2014/followers", 167 | "following_url": "https://api.github.com/users/Gantman2014/following{/other_user}", 168 | "gists_url": "https://api.github.com/users/Gantman2014/gists{/gist_id}", 169 | "starred_url": "https://api.github.com/users/Gantman2014/starred{/owner}{/repo}", 170 | "subscriptions_url": "https://api.github.com/users/Gantman2014/subscriptions", 171 | "organizations_url": "https://api.github.com/users/Gantman2014/orgs", 172 | "repos_url": "https://api.github.com/users/Gantman2014/repos", 173 | "events_url": "https://api.github.com/users/Gantman2014/events{/privacy}", 174 | "received_events_url": "https://api.github.com/users/Gantman2014/received_events", 175 | "type": "User", 176 | "site_admin": false, 177 | "score": 7.8813524 178 | } 179 | ] 180 | }, 181 | "skellock": { 182 | "username": "skellock", 183 | "total_count": 1, 184 | "incomplete_results": false, 185 | "items": [ 186 | { 187 | "login": "skellock", 188 | "id": 68273, 189 | "avatar_url": "https://avatars.githubusercontent.com/u/68273?v=3", 190 | "gravatar_id": "", 191 | "url": "https://api.github.com/users/skellock", 192 | "html_url": "https://github.com/skellock", 193 | "followers_url": "https://api.github.com/users/skellock/followers", 194 | "following_url": "https://api.github.com/users/skellock/following{/other_user}", 195 | "gists_url": "https://api.github.com/users/skellock/gists{/gist_id}", 196 | "starred_url": "https://api.github.com/users/skellock/starred{/owner}{/repo}", 197 | "subscriptions_url": "https://api.github.com/users/skellock/subscriptions", 198 | "organizations_url": "https://api.github.com/users/skellock/orgs", 199 | "repos_url": "https://api.github.com/users/skellock/repos", 200 | "events_url": "https://api.github.com/users/skellock/events{/privacy}", 201 | "received_events_url": "https://api.github.com/users/skellock/received_events", 202 | "type": "User", 203 | "site_admin": false, 204 | "score": 107.22611 205 | } 206 | ] 207 | }, 208 | "rate_limit": { 209 | "resources": { 210 | "core": { 211 | "limit": 60, 212 | "remaining": 42, 213 | "reset": 1488126913 214 | }, 215 | "search": { 216 | "limit": 10, 217 | "remaining": 9, 218 | "reset": 1488126003 219 | } 220 | }, 221 | "rate": { 222 | "limit": 60, 223 | "remaining": 42, 224 | "reset": 1488126913 225 | } 226 | } 227 | } -------------------------------------------------------------------------------- /templates/devScreensInstall/JsonServer/devScreenIntegration.js: -------------------------------------------------------------------------------- 1 | module.exports = (req, res, next) => { 2 | if (req.url === '/users?q=GantMan' || req.url === '/users?q=gantman') { 3 | req.url = '/gantman' 4 | } 5 | if (req.url === '/users?q=skellock') { 6 | req.url = '/skellock' 7 | } 8 | next() 9 | } 10 | -------------------------------------------------------------------------------- /templates/devScreensInstall/JsonServer/json-server.json: -------------------------------------------------------------------------------- 1 | { 2 | "port": 3000, 3 | "host": "localhost", 4 | "routes": "JsonServer/routes.json", 5 | "watch": true 6 | } -------------------------------------------------------------------------------- /templates/devScreensInstall/JsonServer/routes.json: -------------------------------------------------------------------------------- 1 | { 2 | "/search/users": "/users" 3 | } -------------------------------------------------------------------------------- /templates/minimalInstall/JsonServer/db.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /templates/minimalInstall/JsonServer/json-server.json: -------------------------------------------------------------------------------- 1 | { 2 | "port": 3000, 3 | "host": "localhost", 4 | "routes": "JsonServer/routes.json", 5 | "watch": true 6 | } -------------------------------------------------------------------------------- /templates/minimalInstall/JsonServer/routes.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /test/add.js: -------------------------------------------------------------------------------- 1 | const test = require('ava') 2 | const sinon = require('sinon') 3 | const plugin = require('../plugin') 4 | const PLUGIN_PATH = __dirname.replace('/test', '') 5 | const APP_PATH = process.cwd() 6 | const API_PATH = `${APP_PATH}/App/Services/Api.js` 7 | const API_PATCH_IMPORT_DEBUG_CONFIG = "import DebugConfig from '../Config/DebugConfig'" 8 | const API_PATCH_IMPORT_JSON_SERVER_SETTINGS = "import JsonServerSettings from '../../JsonServer/json-server.json'" 9 | const API_PATCH_GET_ROOT_ORIGINAL = "const getRoot = () => api.get('')" 10 | const API_PATCH_GET_ROOT = "const getRoot = () => api.get(DebugConfig.useJsonServer ? 'root' : '')" 11 | const API_PATCH_SET_BASE_URL = " if (DebugConfig.useJsonServer) { baseURL = 'http://' + JsonServerSettings.host + ':' + JsonServerSettings.port }" 12 | const API_PATCH_API_SAUCE_CREATE_FINDER = 'const api' 13 | // spy on few things so we know they're called 14 | const addModule = sinon.spy() 15 | const patchInFile = sinon.spy() 16 | const copy = sinon.spy() 17 | const read = sinon.stub().returns({ scripts: {'json-server': 'foo'} }) 18 | const write = sinon.spy() 19 | const setDebugConfig = sinon.spy() 20 | 21 | const JSON_SERVER_VERSION = '0.9.6' 22 | 23 | test('adds the proper npm module and modifies the expected files if user does not integrate with the dev screens', async t => { 24 | const exists = sinon.stub() 25 | exists.onCall(0).returns(false) // if filesystem.exists(IGNITE_DEVSCREENS_PATH) 26 | 27 | // mock a context 28 | const context = { 29 | ignite: { addModule, patchInFile }, 30 | filesystem: { exists, copy, read, write } 31 | } 32 | 33 | await plugin.add(context) 34 | 35 | t.true(addModule.calledWith('json-server', { dev: true, version: JSON_SERVER_VERSION })) 36 | 37 | t.true(copy.calledWith(`${PLUGIN_PATH}/templates/minimalInstall/JsonServer`, 'JsonServer')) 38 | 39 | t.false(patchInFile.calledWith( 40 | API_PATH, { 41 | insert: API_PATCH_IMPORT_DEBUG_CONFIG, 42 | after: "import apisauce from 'apisauce'" 43 | } 44 | )) 45 | 46 | t.false(patchInFile.calledWith( 47 | API_PATH, { 48 | insert: API_PATCH_IMPORT_JSON_SERVER_SETTINGS, 49 | after: API_PATCH_IMPORT_DEBUG_CONFIG 50 | } 51 | )) 52 | 53 | t.false(patchInFile.calledWith( 54 | API_PATH, { 55 | insert: API_PATCH_SET_BASE_URL, 56 | before: API_PATCH_API_SAUCE_CREATE_FINDER 57 | } 58 | )) 59 | 60 | t.false(patchInFile.calledWith( 61 | API_PATH, { 62 | insert: API_PATCH_GET_ROOT, 63 | replace: API_PATCH_GET_ROOT_ORIGINAL 64 | } 65 | )) 66 | 67 | t.false(setDebugConfig.calledWith( 68 | 'useJsonServer', '__DEV__ && true', true 69 | )) 70 | 71 | t.true(read.calledWith('package.json', 'json')) 72 | }) 73 | 74 | test('adds the proper npm module and installs the expected files if user integrates with the dev screens', async t => { 75 | const confirm = sinon.stub().returns(true) 76 | const exists = sinon.stub() 77 | exists.onCall(0).returns(true) // if filesystem.exists(IGNITE_DEVSCREENS_PATH) 78 | exists.onCall(1).returns(false) // if !filesystem.exists('JsonServer') 79 | 80 | // mock a context 81 | const context = { 82 | ignite: { addModule, patchInFile, setDebugConfig }, 83 | filesystem: { exists, copy, read, write }, 84 | prompt: { confirm } 85 | } 86 | 87 | await plugin.add(context) 88 | 89 | t.true(addModule.calledWith('json-server', { dev: true, version: JSON_SERVER_VERSION })) 90 | 91 | await context.prompt.confirm('Do you want to integrate json-server with the dev screens?') 92 | 93 | t.true(copy.calledWith(`${PLUGIN_PATH}/templates/devScreensInstall/JsonServer`, 'JsonServer')) 94 | 95 | t.true(patchInFile.calledWith( 96 | API_PATH, { 97 | insert: API_PATCH_IMPORT_DEBUG_CONFIG, 98 | after: "import apisauce from 'apisauce'" 99 | } 100 | )) 101 | 102 | t.true(patchInFile.calledWith( 103 | API_PATH, { 104 | insert: API_PATCH_IMPORT_JSON_SERVER_SETTINGS, 105 | after: API_PATCH_IMPORT_DEBUG_CONFIG 106 | } 107 | )) 108 | 109 | t.true(patchInFile.calledWith( 110 | API_PATH, { 111 | insert: API_PATCH_SET_BASE_URL, 112 | before: API_PATCH_API_SAUCE_CREATE_FINDER 113 | } 114 | )) 115 | 116 | t.true(patchInFile.calledWith( 117 | API_PATH, { 118 | insert: API_PATCH_GET_ROOT, 119 | replace: API_PATCH_GET_ROOT_ORIGINAL 120 | } 121 | )) 122 | 123 | t.true(setDebugConfig.calledWith( 124 | 'useJsonServer', '__DEV__ && true', true 125 | )) 126 | 127 | t.true(read.calledWith('package.json', 'json')) 128 | }) 129 | -------------------------------------------------------------------------------- /test/interface.js: -------------------------------------------------------------------------------- 1 | const test = require('ava') 2 | const plugin = require('../plugin') 3 | 4 | test('has the right interface', async t => { 5 | t.is(typeof plugin.add, 'function') 6 | t.is(typeof plugin.remove, 'function') 7 | }) 8 | -------------------------------------------------------------------------------- /test/remove.js: -------------------------------------------------------------------------------- 1 | const test = require('ava') 2 | const sinon = require('sinon') 3 | const plugin = require('../plugin') 4 | const NPM_MODULE_NAME = 'json-server' 5 | 6 | // spy on few things so we know they're called 7 | const removeModule = sinon.spy() 8 | const remove = sinon.spy() 9 | const read = sinon.stub().returns({ scripts: {'json-server': 'foo'} }) 10 | const write = sinon.spy() 11 | const patchInFile = sinon.spy() 12 | 13 | test('removes JsonServer without dev server integration', async t => { 14 | const exists = sinon.stub().returns(false) 15 | 16 | const isInFile = sinon.stub().returns(false) 17 | 18 | const removeDebugConfig = sinon.spy() 19 | 20 | const context = { 21 | ignite: { removeModule, patchInFile, removeDebugConfig }, 22 | filesystem: { exists, remove, read, write }, 23 | patching: { isInFile } 24 | } 25 | 26 | await plugin.remove(context) 27 | 28 | t.true(removeModule.calledWith(NPM_MODULE_NAME, { dev: true })) 29 | t.true(remove.calledWith('JsonServer')) 30 | 31 | t.false(removeDebugConfig.calledWith('useJsonServer')) 32 | }) 33 | 34 | test('removes JsonServer with dev server integration', async t => { 35 | const exists = sinon.stub().returns(true) 36 | 37 | const isInFile = sinon.stub().returns(true) 38 | 39 | const removeDebugConfig = sinon.spy() 40 | 41 | const context = { 42 | ignite: { removeModule, patchInFile, removeDebugConfig }, 43 | filesystem: { exists, remove, read, write }, 44 | patching: { isInFile } 45 | } 46 | 47 | await plugin.remove(context) 48 | 49 | t.true(removeModule.calledWith(NPM_MODULE_NAME, { dev: true })) 50 | t.true(remove.calledWith('JsonServer')) 51 | 52 | t.true(removeDebugConfig.calledWith('useJsonServer')) 53 | }) 54 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@ava/babel-preset-stage-4@^1.0.0": 6 | version "1.0.0" 7 | resolved "https://registry.yarnpkg.com/@ava/babel-preset-stage-4/-/babel-preset-stage-4-1.0.0.tgz#a613b5e152f529305422546b072d47facfb26291" 8 | dependencies: 9 | babel-plugin-check-es2015-constants "^6.8.0" 10 | babel-plugin-syntax-trailing-function-commas "^6.20.0" 11 | babel-plugin-transform-async-to-generator "^6.16.0" 12 | babel-plugin-transform-es2015-destructuring "^6.19.0" 13 | babel-plugin-transform-es2015-function-name "^6.9.0" 14 | babel-plugin-transform-es2015-modules-commonjs "^6.18.0" 15 | babel-plugin-transform-es2015-parameters "^6.21.0" 16 | babel-plugin-transform-es2015-spread "^6.8.0" 17 | babel-plugin-transform-es2015-sticky-regex "^6.8.0" 18 | babel-plugin-transform-es2015-unicode-regex "^6.11.0" 19 | babel-plugin-transform-exponentiation-operator "^6.8.0" 20 | package-hash "^1.2.0" 21 | 22 | "@ava/babel-preset-transform-test-files@^2.0.0": 23 | version "2.0.1" 24 | resolved "https://registry.yarnpkg.com/@ava/babel-preset-transform-test-files/-/babel-preset-transform-test-files-2.0.1.tgz#d75232cc6d71dc9c7eae4b76a9004fd81501d0c1" 25 | dependencies: 26 | babel-plugin-ava-throws-helper "^1.0.0" 27 | babel-plugin-espower "^2.3.2" 28 | package-hash "^1.2.0" 29 | 30 | "@ava/pretty-format@^1.1.0": 31 | version "1.1.0" 32 | resolved "https://registry.yarnpkg.com/@ava/pretty-format/-/pretty-format-1.1.0.tgz#d0a57d25eb9aeab9643bdd1a030642b91c123e28" 33 | dependencies: 34 | ansi-styles "^2.2.1" 35 | esutils "^2.0.2" 36 | 37 | abbrev@1: 38 | version "1.1.0" 39 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 40 | 41 | acorn-jsx@^3.0.0: 42 | version "3.0.1" 43 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 44 | dependencies: 45 | acorn "^3.0.4" 46 | 47 | acorn@^3.0.4: 48 | version "3.3.0" 49 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 50 | 51 | acorn@^5.0.1: 52 | version "5.0.3" 53 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.0.3.tgz#c460df08491463f028ccb82eab3730bf01087b3d" 54 | 55 | ajv-keywords@^1.0.0: 56 | version "1.5.1" 57 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 58 | 59 | ajv@^4.7.0, ajv@^4.9.1: 60 | version "4.11.8" 61 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 62 | dependencies: 63 | co "^4.6.0" 64 | json-stable-stringify "^1.0.1" 65 | 66 | align-text@^0.1.1, align-text@^0.1.3: 67 | version "0.1.4" 68 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 69 | dependencies: 70 | kind-of "^3.0.2" 71 | longest "^1.0.1" 72 | repeat-string "^1.5.2" 73 | 74 | amdefine@>=0.0.4: 75 | version "1.0.1" 76 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 77 | 78 | ansi-align@^1.1.0: 79 | version "1.1.0" 80 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-1.1.0.tgz#2f0c1658829739add5ebb15e6b0c6e3423f016ba" 81 | dependencies: 82 | string-width "^1.0.1" 83 | 84 | ansi-align@^2.0.0: 85 | version "2.0.0" 86 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" 87 | dependencies: 88 | string-width "^2.0.0" 89 | 90 | ansi-escapes@^1.0.0, ansi-escapes@^1.1.0: 91 | version "1.4.0" 92 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 93 | 94 | ansi-regex@^2.0.0: 95 | version "2.1.1" 96 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 97 | 98 | ansi-styles@^2.2.1: 99 | version "2.2.1" 100 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 101 | 102 | ansi-styles@~1.0.0: 103 | version "1.0.0" 104 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-1.0.0.tgz#cb102df1c56f5123eab8b67cd7b98027a0279178" 105 | 106 | any-observable@^0.2.0: 107 | version "0.2.0" 108 | resolved "https://registry.yarnpkg.com/any-observable/-/any-observable-0.2.0.tgz#c67870058003579009083f54ac0abafb5c33d242" 109 | 110 | anymatch@^1.3.0: 111 | version "1.3.0" 112 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 113 | dependencies: 114 | arrify "^1.0.0" 115 | micromatch "^2.1.5" 116 | 117 | append-transform@^0.4.0: 118 | version "0.4.0" 119 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 120 | dependencies: 121 | default-require-extensions "^1.0.0" 122 | 123 | aproba@^1.0.3: 124 | version "1.1.1" 125 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.1.tgz#95d3600f07710aa0e9298c726ad5ecf2eacbabab" 126 | 127 | archy@^1.0.0: 128 | version "1.0.0" 129 | resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" 130 | 131 | are-we-there-yet@~1.1.2: 132 | version "1.1.4" 133 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 134 | dependencies: 135 | delegates "^1.0.0" 136 | readable-stream "^2.0.6" 137 | 138 | argparse@^1.0.7: 139 | version "1.0.9" 140 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 141 | dependencies: 142 | sprintf-js "~1.0.2" 143 | 144 | arr-diff@^2.0.0: 145 | version "2.0.0" 146 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 147 | dependencies: 148 | arr-flatten "^1.0.1" 149 | 150 | arr-exclude@^1.0.0: 151 | version "1.0.0" 152 | resolved "https://registry.yarnpkg.com/arr-exclude/-/arr-exclude-1.0.0.tgz#dfc7c2e552a270723ccda04cf3128c8cbfe5c631" 153 | 154 | arr-flatten@^1.0.1: 155 | version "1.0.3" 156 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.3.tgz#a274ed85ac08849b6bd7847c4580745dc51adfb1" 157 | 158 | array-differ@^1.0.0: 159 | version "1.0.0" 160 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" 161 | 162 | array-find-index@^1.0.1: 163 | version "1.0.2" 164 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 165 | 166 | array-union@^1.0.1: 167 | version "1.0.2" 168 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 169 | dependencies: 170 | array-uniq "^1.0.1" 171 | 172 | array-uniq@^1.0.1, array-uniq@^1.0.2: 173 | version "1.0.3" 174 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 175 | 176 | array-unique@^0.2.1: 177 | version "0.2.1" 178 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 179 | 180 | arrify@^1.0.0, arrify@^1.0.1: 181 | version "1.0.1" 182 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 183 | 184 | asn1@~0.2.3: 185 | version "0.2.3" 186 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 187 | 188 | assert-plus@1.0.0, assert-plus@^1.0.0: 189 | version "1.0.0" 190 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 191 | 192 | assert-plus@^0.2.0: 193 | version "0.2.0" 194 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 195 | 196 | async-each@^1.0.0: 197 | version "1.0.1" 198 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 199 | 200 | async@^1.4.0: 201 | version "1.5.2" 202 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 203 | 204 | asynckit@^0.4.0: 205 | version "0.4.0" 206 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 207 | 208 | auto-bind@^1.1.0: 209 | version "1.1.0" 210 | resolved "https://registry.yarnpkg.com/auto-bind/-/auto-bind-1.1.0.tgz#93b864dc7ee01a326281775d5c75ca0a751e5961" 211 | 212 | ava-init@^0.2.0: 213 | version "0.2.0" 214 | resolved "https://registry.yarnpkg.com/ava-init/-/ava-init-0.2.0.tgz#9304c8b4c357d66e3dfdae1fbff47b1199d5c55d" 215 | dependencies: 216 | arr-exclude "^1.0.0" 217 | execa "^0.5.0" 218 | has-yarn "^1.0.0" 219 | read-pkg-up "^2.0.0" 220 | write-pkg "^2.0.0" 221 | 222 | ava@^0.18.2: 223 | version "0.18.2" 224 | resolved "https://registry.yarnpkg.com/ava/-/ava-0.18.2.tgz#79253d1636077034a2780bb55b5c3e6c3d7f312f" 225 | dependencies: 226 | "@ava/babel-preset-stage-4" "^1.0.0" 227 | "@ava/babel-preset-transform-test-files" "^2.0.0" 228 | "@ava/pretty-format" "^1.1.0" 229 | arr-flatten "^1.0.1" 230 | array-union "^1.0.1" 231 | array-uniq "^1.0.2" 232 | arrify "^1.0.0" 233 | auto-bind "^1.1.0" 234 | ava-init "^0.2.0" 235 | babel-code-frame "^6.16.0" 236 | babel-core "^6.17.0" 237 | bluebird "^3.0.0" 238 | caching-transform "^1.0.0" 239 | chalk "^1.0.0" 240 | chokidar "^1.4.2" 241 | clean-stack "^1.1.1" 242 | clean-yaml-object "^0.1.0" 243 | cli-cursor "^2.1.0" 244 | cli-spinners "^1.0.0" 245 | cli-truncate "^0.2.0" 246 | co-with-promise "^4.6.0" 247 | code-excerpt "^2.1.0" 248 | common-path-prefix "^1.0.0" 249 | convert-source-map "^1.2.0" 250 | core-assert "^0.2.0" 251 | currently-unhandled "^0.4.1" 252 | debug "^2.2.0" 253 | diff "^3.0.1" 254 | dot-prop "^4.1.0" 255 | empower-core "^0.6.1" 256 | equal-length "^1.0.0" 257 | figures "^2.0.0" 258 | find-cache-dir "^0.1.1" 259 | fn-name "^2.0.0" 260 | get-port "^2.1.0" 261 | globby "^6.0.0" 262 | has-flag "^2.0.0" 263 | ignore-by-default "^1.0.0" 264 | indent-string "^3.0.0" 265 | is-ci "^1.0.7" 266 | is-generator-fn "^1.0.0" 267 | is-obj "^1.0.0" 268 | is-observable "^0.2.0" 269 | is-promise "^2.1.0" 270 | jest-snapshot "^18.1.0" 271 | last-line-stream "^1.0.0" 272 | lodash.debounce "^4.0.3" 273 | lodash.difference "^4.3.0" 274 | lodash.flatten "^4.2.0" 275 | lodash.isequal "^4.5.0" 276 | loud-rejection "^1.2.0" 277 | matcher "^0.1.1" 278 | max-timeout "^1.0.0" 279 | md5-hex "^2.0.0" 280 | meow "^3.7.0" 281 | ms "^0.7.1" 282 | multimatch "^2.1.0" 283 | observable-to-promise "^0.4.0" 284 | option-chain "^0.1.0" 285 | package-hash "^1.2.0" 286 | pkg-conf "^2.0.0" 287 | plur "^2.0.0" 288 | pretty-ms "^2.0.0" 289 | require-precompiled "^0.1.0" 290 | resolve-cwd "^1.0.0" 291 | slash "^1.0.0" 292 | source-map-support "^0.4.0" 293 | stack-utils "^1.0.0" 294 | strip-ansi "^3.0.1" 295 | strip-bom-buf "^1.0.0" 296 | time-require "^0.1.2" 297 | unique-temp-dir "^1.0.0" 298 | update-notifier "^1.0.0" 299 | 300 | aws-sign2@~0.6.0: 301 | version "0.6.0" 302 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 303 | 304 | aws4@^1.2.1: 305 | version "1.6.0" 306 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 307 | 308 | babel-code-frame@^6.16.0, babel-code-frame@^6.22.0: 309 | version "6.22.0" 310 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 311 | dependencies: 312 | chalk "^1.1.0" 313 | esutils "^2.0.2" 314 | js-tokens "^3.0.0" 315 | 316 | babel-core@^6.17.0, babel-core@^6.24.1: 317 | version "6.24.1" 318 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.1.tgz#8c428564dce1e1f41fb337ec34f4c3b022b5ad83" 319 | dependencies: 320 | babel-code-frame "^6.22.0" 321 | babel-generator "^6.24.1" 322 | babel-helpers "^6.24.1" 323 | babel-messages "^6.23.0" 324 | babel-register "^6.24.1" 325 | babel-runtime "^6.22.0" 326 | babel-template "^6.24.1" 327 | babel-traverse "^6.24.1" 328 | babel-types "^6.24.1" 329 | babylon "^6.11.0" 330 | convert-source-map "^1.1.0" 331 | debug "^2.1.1" 332 | json5 "^0.5.0" 333 | lodash "^4.2.0" 334 | minimatch "^3.0.2" 335 | path-is-absolute "^1.0.0" 336 | private "^0.1.6" 337 | slash "^1.0.0" 338 | source-map "^0.5.0" 339 | 340 | babel-eslint@^7.1.1: 341 | version "7.2.3" 342 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-7.2.3.tgz#b2fe2d80126470f5c19442dc757253a897710827" 343 | dependencies: 344 | babel-code-frame "^6.22.0" 345 | babel-traverse "^6.23.1" 346 | babel-types "^6.23.0" 347 | babylon "^6.17.0" 348 | 349 | babel-generator@^6.1.0, babel-generator@^6.18.0, babel-generator@^6.24.1: 350 | version "6.24.1" 351 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.1.tgz#e715f486c58ded25649d888944d52aa07c5d9497" 352 | dependencies: 353 | babel-messages "^6.23.0" 354 | babel-runtime "^6.22.0" 355 | babel-types "^6.24.1" 356 | detect-indent "^4.0.0" 357 | jsesc "^1.3.0" 358 | lodash "^4.2.0" 359 | source-map "^0.5.0" 360 | trim-right "^1.0.1" 361 | 362 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 363 | version "6.24.1" 364 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 365 | dependencies: 366 | babel-helper-explode-assignable-expression "^6.24.1" 367 | babel-runtime "^6.22.0" 368 | babel-types "^6.24.1" 369 | 370 | babel-helper-call-delegate@^6.24.1: 371 | version "6.24.1" 372 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 373 | dependencies: 374 | babel-helper-hoist-variables "^6.24.1" 375 | babel-runtime "^6.22.0" 376 | babel-traverse "^6.24.1" 377 | babel-types "^6.24.1" 378 | 379 | babel-helper-explode-assignable-expression@^6.24.1: 380 | version "6.24.1" 381 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 382 | dependencies: 383 | babel-runtime "^6.22.0" 384 | babel-traverse "^6.24.1" 385 | babel-types "^6.24.1" 386 | 387 | babel-helper-function-name@^6.24.1: 388 | version "6.24.1" 389 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 390 | dependencies: 391 | babel-helper-get-function-arity "^6.24.1" 392 | babel-runtime "^6.22.0" 393 | babel-template "^6.24.1" 394 | babel-traverse "^6.24.1" 395 | babel-types "^6.24.1" 396 | 397 | babel-helper-get-function-arity@^6.24.1: 398 | version "6.24.1" 399 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 400 | dependencies: 401 | babel-runtime "^6.22.0" 402 | babel-types "^6.24.1" 403 | 404 | babel-helper-hoist-variables@^6.24.1: 405 | version "6.24.1" 406 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 407 | dependencies: 408 | babel-runtime "^6.22.0" 409 | babel-types "^6.24.1" 410 | 411 | babel-helper-regex@^6.24.1: 412 | version "6.24.1" 413 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz#d36e22fab1008d79d88648e32116868128456ce8" 414 | dependencies: 415 | babel-runtime "^6.22.0" 416 | babel-types "^6.24.1" 417 | lodash "^4.2.0" 418 | 419 | babel-helper-remap-async-to-generator@^6.24.1: 420 | version "6.24.1" 421 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 422 | dependencies: 423 | babel-helper-function-name "^6.24.1" 424 | babel-runtime "^6.22.0" 425 | babel-template "^6.24.1" 426 | babel-traverse "^6.24.1" 427 | babel-types "^6.24.1" 428 | 429 | babel-helpers@^6.24.1: 430 | version "6.24.1" 431 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 432 | dependencies: 433 | babel-runtime "^6.22.0" 434 | babel-template "^6.24.1" 435 | 436 | babel-messages@^6.23.0: 437 | version "6.23.0" 438 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 439 | dependencies: 440 | babel-runtime "^6.22.0" 441 | 442 | babel-plugin-ava-throws-helper@^1.0.0: 443 | version "1.0.0" 444 | resolved "https://registry.yarnpkg.com/babel-plugin-ava-throws-helper/-/babel-plugin-ava-throws-helper-1.0.0.tgz#8fe6e79d2fd19838b5c3649f89cfb03fd563e241" 445 | dependencies: 446 | babel-template "^6.7.0" 447 | babel-types "^6.7.2" 448 | 449 | babel-plugin-check-es2015-constants@^6.8.0: 450 | version "6.22.0" 451 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 452 | dependencies: 453 | babel-runtime "^6.22.0" 454 | 455 | babel-plugin-espower@^2.3.2: 456 | version "2.3.2" 457 | resolved "https://registry.yarnpkg.com/babel-plugin-espower/-/babel-plugin-espower-2.3.2.tgz#5516b8fcdb26c9f0e1d8160749f6e4c65e71271e" 458 | dependencies: 459 | babel-generator "^6.1.0" 460 | babylon "^6.1.0" 461 | call-matcher "^1.0.0" 462 | core-js "^2.0.0" 463 | espower-location-detector "^1.0.0" 464 | espurify "^1.6.0" 465 | estraverse "^4.1.1" 466 | 467 | babel-plugin-syntax-async-functions@^6.8.0: 468 | version "6.13.0" 469 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 470 | 471 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 472 | version "6.13.0" 473 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 474 | 475 | babel-plugin-syntax-trailing-function-commas@^6.20.0: 476 | version "6.22.0" 477 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 478 | 479 | babel-plugin-transform-async-to-generator@^6.16.0: 480 | version "6.24.1" 481 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 482 | dependencies: 483 | babel-helper-remap-async-to-generator "^6.24.1" 484 | babel-plugin-syntax-async-functions "^6.8.0" 485 | babel-runtime "^6.22.0" 486 | 487 | babel-plugin-transform-es2015-destructuring@^6.19.0: 488 | version "6.23.0" 489 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 490 | dependencies: 491 | babel-runtime "^6.22.0" 492 | 493 | babel-plugin-transform-es2015-function-name@^6.9.0: 494 | version "6.24.1" 495 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 496 | dependencies: 497 | babel-helper-function-name "^6.24.1" 498 | babel-runtime "^6.22.0" 499 | babel-types "^6.24.1" 500 | 501 | babel-plugin-transform-es2015-modules-commonjs@^6.18.0: 502 | version "6.24.1" 503 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz#d3e310b40ef664a36622200097c6d440298f2bfe" 504 | dependencies: 505 | babel-plugin-transform-strict-mode "^6.24.1" 506 | babel-runtime "^6.22.0" 507 | babel-template "^6.24.1" 508 | babel-types "^6.24.1" 509 | 510 | babel-plugin-transform-es2015-parameters@^6.21.0: 511 | version "6.24.1" 512 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 513 | dependencies: 514 | babel-helper-call-delegate "^6.24.1" 515 | babel-helper-get-function-arity "^6.24.1" 516 | babel-runtime "^6.22.0" 517 | babel-template "^6.24.1" 518 | babel-traverse "^6.24.1" 519 | babel-types "^6.24.1" 520 | 521 | babel-plugin-transform-es2015-spread@^6.8.0: 522 | version "6.22.0" 523 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 524 | dependencies: 525 | babel-runtime "^6.22.0" 526 | 527 | babel-plugin-transform-es2015-sticky-regex@^6.8.0: 528 | version "6.24.1" 529 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 530 | dependencies: 531 | babel-helper-regex "^6.24.1" 532 | babel-runtime "^6.22.0" 533 | babel-types "^6.24.1" 534 | 535 | babel-plugin-transform-es2015-unicode-regex@^6.11.0: 536 | version "6.24.1" 537 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 538 | dependencies: 539 | babel-helper-regex "^6.24.1" 540 | babel-runtime "^6.22.0" 541 | regexpu-core "^2.0.0" 542 | 543 | babel-plugin-transform-exponentiation-operator@^6.8.0: 544 | version "6.24.1" 545 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 546 | dependencies: 547 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 548 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 549 | babel-runtime "^6.22.0" 550 | 551 | babel-plugin-transform-strict-mode@^6.24.1: 552 | version "6.24.1" 553 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 554 | dependencies: 555 | babel-runtime "^6.22.0" 556 | babel-types "^6.24.1" 557 | 558 | babel-register@^6.24.1: 559 | version "6.24.1" 560 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 561 | dependencies: 562 | babel-core "^6.24.1" 563 | babel-runtime "^6.22.0" 564 | core-js "^2.4.0" 565 | home-or-tmp "^2.0.0" 566 | lodash "^4.2.0" 567 | mkdirp "^0.5.1" 568 | source-map-support "^0.4.2" 569 | 570 | babel-runtime@^6.22.0: 571 | version "6.23.0" 572 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 573 | dependencies: 574 | core-js "^2.4.0" 575 | regenerator-runtime "^0.10.0" 576 | 577 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.7.0: 578 | version "6.24.1" 579 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.24.1.tgz#04ae514f1f93b3a2537f2a0f60a5a45fb8308333" 580 | dependencies: 581 | babel-runtime "^6.22.0" 582 | babel-traverse "^6.24.1" 583 | babel-types "^6.24.1" 584 | babylon "^6.11.0" 585 | lodash "^4.2.0" 586 | 587 | babel-traverse@^6.18.0, babel-traverse@^6.23.1, babel-traverse@^6.24.1: 588 | version "6.24.1" 589 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.24.1.tgz#ab36673fd356f9a0948659e7b338d5feadb31695" 590 | dependencies: 591 | babel-code-frame "^6.22.0" 592 | babel-messages "^6.23.0" 593 | babel-runtime "^6.22.0" 594 | babel-types "^6.24.1" 595 | babylon "^6.15.0" 596 | debug "^2.2.0" 597 | globals "^9.0.0" 598 | invariant "^2.2.0" 599 | lodash "^4.2.0" 600 | 601 | babel-types@^6.18.0, babel-types@^6.23.0, babel-types@^6.24.1, babel-types@^6.7.2: 602 | version "6.24.1" 603 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.24.1.tgz#a136879dc15b3606bda0d90c1fc74304c2ff0975" 604 | dependencies: 605 | babel-runtime "^6.22.0" 606 | esutils "^2.0.2" 607 | lodash "^4.2.0" 608 | to-fast-properties "^1.0.1" 609 | 610 | babylon@^6.1.0, babylon@^6.11.0, babylon@^6.13.0, babylon@^6.15.0, babylon@^6.17.0: 611 | version "6.17.1" 612 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.1.tgz#17f14fddf361b695981fe679385e4f1c01ebd86f" 613 | 614 | balanced-match@^0.4.1: 615 | version "0.4.2" 616 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 617 | 618 | bcrypt-pbkdf@^1.0.0: 619 | version "1.0.1" 620 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 621 | dependencies: 622 | tweetnacl "^0.14.3" 623 | 624 | binary-extensions@^1.0.0: 625 | version "1.8.0" 626 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 627 | 628 | block-stream@*: 629 | version "0.0.9" 630 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 631 | dependencies: 632 | inherits "~2.0.0" 633 | 634 | bluebird@^3.0.0: 635 | version "3.5.0" 636 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.0.tgz#791420d7f551eea2897453a8a77653f96606d67c" 637 | 638 | boom@2.x.x: 639 | version "2.10.1" 640 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 641 | dependencies: 642 | hoek "2.x.x" 643 | 644 | boxen@^0.6.0: 645 | version "0.6.0" 646 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-0.6.0.tgz#8364d4248ac34ff0ef1b2f2bf49a6c60ce0d81b6" 647 | dependencies: 648 | ansi-align "^1.1.0" 649 | camelcase "^2.1.0" 650 | chalk "^1.1.1" 651 | cli-boxes "^1.0.0" 652 | filled-array "^1.0.0" 653 | object-assign "^4.0.1" 654 | repeating "^2.0.0" 655 | string-width "^1.0.1" 656 | widest-line "^1.0.0" 657 | 658 | boxen@^1.0.0: 659 | version "1.1.0" 660 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.1.0.tgz#b1b69dd522305e807a99deee777dbd6e5167b102" 661 | dependencies: 662 | ansi-align "^2.0.0" 663 | camelcase "^4.0.0" 664 | chalk "^1.1.1" 665 | cli-boxes "^1.0.0" 666 | string-width "^2.0.0" 667 | term-size "^0.1.0" 668 | widest-line "^1.0.0" 669 | 670 | brace-expansion@^1.1.7: 671 | version "1.1.7" 672 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.7.tgz#3effc3c50e000531fb720eaff80f0ae8ef23cf59" 673 | dependencies: 674 | balanced-match "^0.4.1" 675 | concat-map "0.0.1" 676 | 677 | braces@^1.8.2: 678 | version "1.8.5" 679 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 680 | dependencies: 681 | expand-range "^1.8.1" 682 | preserve "^0.2.0" 683 | repeat-element "^1.1.2" 684 | 685 | buf-compare@^1.0.0: 686 | version "1.0.1" 687 | resolved "https://registry.yarnpkg.com/buf-compare/-/buf-compare-1.0.1.tgz#fef28da8b8113a0a0db4430b0b6467b69730b34a" 688 | 689 | buffer-shims@~1.0.0: 690 | version "1.0.0" 691 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 692 | 693 | builtin-modules@^1.0.0: 694 | version "1.1.1" 695 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 696 | 697 | caching-transform@^1.0.0: 698 | version "1.0.1" 699 | resolved "https://registry.yarnpkg.com/caching-transform/-/caching-transform-1.0.1.tgz#6dbdb2f20f8d8fbce79f3e94e9d1742dcdf5c0a1" 700 | dependencies: 701 | md5-hex "^1.2.0" 702 | mkdirp "^0.5.1" 703 | write-file-atomic "^1.1.4" 704 | 705 | call-matcher@^1.0.0: 706 | version "1.0.1" 707 | resolved "https://registry.yarnpkg.com/call-matcher/-/call-matcher-1.0.1.tgz#5134d077984f712a54dad3cbf62de28dce416ca8" 708 | dependencies: 709 | core-js "^2.0.0" 710 | deep-equal "^1.0.0" 711 | espurify "^1.6.0" 712 | estraverse "^4.0.0" 713 | 714 | call-signature@0.0.2: 715 | version "0.0.2" 716 | resolved "https://registry.yarnpkg.com/call-signature/-/call-signature-0.0.2.tgz#a84abc825a55ef4cb2b028bd74e205a65b9a4996" 717 | 718 | caller-path@^0.1.0: 719 | version "0.1.0" 720 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 721 | dependencies: 722 | callsites "^0.2.0" 723 | 724 | callsites@^0.2.0: 725 | version "0.2.0" 726 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 727 | 728 | camelcase-keys@^2.0.0: 729 | version "2.1.0" 730 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 731 | dependencies: 732 | camelcase "^2.0.0" 733 | map-obj "^1.0.0" 734 | 735 | camelcase@^1.0.2: 736 | version "1.2.1" 737 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 738 | 739 | camelcase@^2.0.0, camelcase@^2.1.0: 740 | version "2.1.1" 741 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 742 | 743 | camelcase@^3.0.0: 744 | version "3.0.0" 745 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 746 | 747 | camelcase@^4.0.0: 748 | version "4.1.0" 749 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 750 | 751 | capture-stack-trace@^1.0.0: 752 | version "1.0.0" 753 | resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d" 754 | 755 | caseless@~0.12.0: 756 | version "0.12.0" 757 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 758 | 759 | center-align@^0.1.1: 760 | version "0.1.3" 761 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 762 | dependencies: 763 | align-text "^0.1.3" 764 | lazy-cache "^1.0.3" 765 | 766 | chalk@^0.4.0: 767 | version "0.4.0" 768 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-0.4.0.tgz#5199a3ddcd0c1efe23bc08c1b027b06176e0c64f" 769 | dependencies: 770 | ansi-styles "~1.0.0" 771 | has-color "~0.1.0" 772 | strip-ansi "~0.1.0" 773 | 774 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 775 | version "1.1.3" 776 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 777 | dependencies: 778 | ansi-styles "^2.2.1" 779 | escape-string-regexp "^1.0.2" 780 | has-ansi "^2.0.0" 781 | strip-ansi "^3.0.0" 782 | supports-color "^2.0.0" 783 | 784 | chokidar@^1.4.2: 785 | version "1.7.0" 786 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 787 | dependencies: 788 | anymatch "^1.3.0" 789 | async-each "^1.0.0" 790 | glob-parent "^2.0.0" 791 | inherits "^2.0.1" 792 | is-binary-path "^1.0.0" 793 | is-glob "^2.0.0" 794 | path-is-absolute "^1.0.0" 795 | readdirp "^2.0.0" 796 | optionalDependencies: 797 | fsevents "^1.0.0" 798 | 799 | ci-info@^1.0.0: 800 | version "1.0.0" 801 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 802 | 803 | circular-json@^0.3.1: 804 | version "0.3.1" 805 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 806 | 807 | clean-stack@^1.1.1: 808 | version "1.3.0" 809 | resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-1.3.0.tgz#9e821501ae979986c46b1d66d2d432db2fd4ae31" 810 | 811 | clean-yaml-object@^0.1.0: 812 | version "0.1.0" 813 | resolved "https://registry.yarnpkg.com/clean-yaml-object/-/clean-yaml-object-0.1.0.tgz#63fb110dc2ce1a84dc21f6d9334876d010ae8b68" 814 | 815 | cli-boxes@^1.0.0: 816 | version "1.0.0" 817 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" 818 | 819 | cli-cursor@^1.0.1, cli-cursor@^1.0.2: 820 | version "1.0.2" 821 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 822 | dependencies: 823 | restore-cursor "^1.0.1" 824 | 825 | cli-cursor@^2.1.0: 826 | version "2.1.0" 827 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 828 | dependencies: 829 | restore-cursor "^2.0.0" 830 | 831 | cli-spinners@^0.1.2: 832 | version "0.1.2" 833 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-0.1.2.tgz#bb764d88e185fb9e1e6a2a1f19772318f605e31c" 834 | 835 | cli-spinners@^1.0.0: 836 | version "1.0.0" 837 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-1.0.0.tgz#ef987ed3d48391ac3dab9180b406a742180d6e6a" 838 | 839 | cli-truncate@^0.2.0, cli-truncate@^0.2.1: 840 | version "0.2.1" 841 | resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-0.2.1.tgz#9f15cfbb0705005369216c626ac7d05ab90dd574" 842 | dependencies: 843 | slice-ansi "0.0.4" 844 | string-width "^1.0.1" 845 | 846 | cli-width@^2.0.0: 847 | version "2.1.0" 848 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 849 | 850 | cliui@^2.1.0: 851 | version "2.1.0" 852 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 853 | dependencies: 854 | center-align "^0.1.1" 855 | right-align "^0.1.1" 856 | wordwrap "0.0.2" 857 | 858 | cliui@^3.2.0: 859 | version "3.2.0" 860 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 861 | dependencies: 862 | string-width "^1.0.1" 863 | strip-ansi "^3.0.1" 864 | wrap-ansi "^2.0.0" 865 | 866 | co-with-promise@^4.6.0: 867 | version "4.6.0" 868 | resolved "https://registry.yarnpkg.com/co-with-promise/-/co-with-promise-4.6.0.tgz#413e7db6f5893a60b942cf492c4bec93db415ab7" 869 | dependencies: 870 | pinkie-promise "^1.0.0" 871 | 872 | co@^4.6.0: 873 | version "4.6.0" 874 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 875 | 876 | code-excerpt@^2.1.0: 877 | version "2.1.0" 878 | resolved "https://registry.yarnpkg.com/code-excerpt/-/code-excerpt-2.1.0.tgz#5dcc081e88f4a7e3b554e9e35d7ef232d47f8147" 879 | dependencies: 880 | convert-to-spaces "^1.0.1" 881 | 882 | code-point-at@^1.0.0: 883 | version "1.1.0" 884 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 885 | 886 | combined-stream@^1.0.5, combined-stream@~1.0.5: 887 | version "1.0.5" 888 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 889 | dependencies: 890 | delayed-stream "~1.0.0" 891 | 892 | common-path-prefix@^1.0.0: 893 | version "1.0.0" 894 | resolved "https://registry.yarnpkg.com/common-path-prefix/-/common-path-prefix-1.0.0.tgz#cd52f6f0712e0baab97d6f9732874f22f47752c0" 895 | 896 | commondir@^1.0.1: 897 | version "1.0.1" 898 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 899 | 900 | concat-map@0.0.1: 901 | version "0.0.1" 902 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 903 | 904 | concat-stream@^1.4.6: 905 | version "1.6.0" 906 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 907 | dependencies: 908 | inherits "^2.0.3" 909 | readable-stream "^2.2.2" 910 | typedarray "^0.0.6" 911 | 912 | configstore@^2.0.0: 913 | version "2.1.0" 914 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-2.1.0.tgz#737a3a7036e9886102aa6099e47bb33ab1aba1a1" 915 | dependencies: 916 | dot-prop "^3.0.0" 917 | graceful-fs "^4.1.2" 918 | mkdirp "^0.5.0" 919 | object-assign "^4.0.1" 920 | os-tmpdir "^1.0.0" 921 | osenv "^0.1.0" 922 | uuid "^2.0.1" 923 | write-file-atomic "^1.1.2" 924 | xdg-basedir "^2.0.0" 925 | 926 | configstore@^3.0.0: 927 | version "3.1.0" 928 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.0.tgz#45df907073e26dfa1cf4b2d52f5b60545eaa11d1" 929 | dependencies: 930 | dot-prop "^4.1.0" 931 | graceful-fs "^4.1.2" 932 | make-dir "^1.0.0" 933 | unique-string "^1.0.0" 934 | write-file-atomic "^2.0.0" 935 | xdg-basedir "^3.0.0" 936 | 937 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 938 | version "1.1.0" 939 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 940 | 941 | convert-source-map@^1.1.0, convert-source-map@^1.2.0, convert-source-map@^1.3.0: 942 | version "1.5.0" 943 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 944 | 945 | convert-to-spaces@^1.0.1: 946 | version "1.0.2" 947 | resolved "https://registry.yarnpkg.com/convert-to-spaces/-/convert-to-spaces-1.0.2.tgz#7e3e48bbe6d997b1417ddca2868204b4d3d85715" 948 | 949 | core-assert@^0.2.0: 950 | version "0.2.1" 951 | resolved "https://registry.yarnpkg.com/core-assert/-/core-assert-0.2.1.tgz#f85e2cf9bfed28f773cc8b3fa5c5b69bdc02fe3f" 952 | dependencies: 953 | buf-compare "^1.0.0" 954 | is-error "^2.2.0" 955 | 956 | core-js@^2.0.0, core-js@^2.4.0: 957 | version "2.4.1" 958 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 959 | 960 | core-util-is@~1.0.0: 961 | version "1.0.2" 962 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 963 | 964 | create-error-class@^3.0.0, create-error-class@^3.0.1: 965 | version "3.0.2" 966 | resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" 967 | dependencies: 968 | capture-stack-trace "^1.0.0" 969 | 970 | cross-spawn-async@^2.1.1: 971 | version "2.2.5" 972 | resolved "https://registry.yarnpkg.com/cross-spawn-async/-/cross-spawn-async-2.2.5.tgz#845ff0c0834a3ded9d160daca6d390906bb288cc" 973 | dependencies: 974 | lru-cache "^4.0.0" 975 | which "^1.2.8" 976 | 977 | cross-spawn@^4, cross-spawn@^4.0.0: 978 | version "4.0.2" 979 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.2.tgz#7b9247621c23adfdd3856004a823cbe397424d41" 980 | dependencies: 981 | lru-cache "^4.0.1" 982 | which "^1.2.9" 983 | 984 | cross-spawn@^5.0.1: 985 | version "5.1.0" 986 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 987 | dependencies: 988 | lru-cache "^4.0.1" 989 | shebang-command "^1.2.0" 990 | which "^1.2.9" 991 | 992 | cryptiles@2.x.x: 993 | version "2.0.5" 994 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 995 | dependencies: 996 | boom "2.x.x" 997 | 998 | crypto-random-string@^1.0.0: 999 | version "1.0.0" 1000 | resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" 1001 | 1002 | currently-unhandled@^0.4.1: 1003 | version "0.4.1" 1004 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 1005 | dependencies: 1006 | array-find-index "^1.0.1" 1007 | 1008 | d@1: 1009 | version "1.0.0" 1010 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 1011 | dependencies: 1012 | es5-ext "^0.10.9" 1013 | 1014 | dashdash@^1.12.0: 1015 | version "1.14.1" 1016 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1017 | dependencies: 1018 | assert-plus "^1.0.0" 1019 | 1020 | date-fns@^1.27.2: 1021 | version "1.28.5" 1022 | resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.28.5.tgz#257cfc45d322df45ef5658665967ee841cd73faf" 1023 | 1024 | date-time@^0.1.1: 1025 | version "0.1.1" 1026 | resolved "https://registry.yarnpkg.com/date-time/-/date-time-0.1.1.tgz#ed2f6d93d9790ce2fd66d5b5ff3edd5bbcbf3b07" 1027 | 1028 | debug-log@^1.0.0, debug-log@^1.0.1: 1029 | version "1.0.1" 1030 | resolved "https://registry.yarnpkg.com/debug-log/-/debug-log-1.0.1.tgz#2307632d4c04382b8df8a32f70b895046d52745f" 1031 | 1032 | debug@^2.1.1, debug@^2.2.0, debug@^2.6.3: 1033 | version "2.6.8" 1034 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 1035 | dependencies: 1036 | ms "2.0.0" 1037 | 1038 | decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: 1039 | version "1.2.0" 1040 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1041 | 1042 | deep-equal@^1.0.0: 1043 | version "1.0.1" 1044 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" 1045 | 1046 | deep-extend@~0.4.0: 1047 | version "0.4.2" 1048 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 1049 | 1050 | deep-is@~0.1.3: 1051 | version "0.1.3" 1052 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1053 | 1054 | default-require-extensions@^1.0.0: 1055 | version "1.0.0" 1056 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 1057 | dependencies: 1058 | strip-bom "^2.0.0" 1059 | 1060 | deglob@^2.0.0: 1061 | version "2.1.0" 1062 | resolved "https://registry.yarnpkg.com/deglob/-/deglob-2.1.0.tgz#4d44abe16ef32c779b4972bd141a80325029a14a" 1063 | dependencies: 1064 | find-root "^1.0.0" 1065 | glob "^7.0.5" 1066 | ignore "^3.0.9" 1067 | pkg-config "^1.1.0" 1068 | run-parallel "^1.1.2" 1069 | uniq "^1.0.1" 1070 | 1071 | del@^2.0.2, del@^2.2.0: 1072 | version "2.2.2" 1073 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 1074 | dependencies: 1075 | globby "^5.0.0" 1076 | is-path-cwd "^1.0.0" 1077 | is-path-in-cwd "^1.0.0" 1078 | object-assign "^4.0.1" 1079 | pify "^2.0.0" 1080 | pinkie-promise "^2.0.0" 1081 | rimraf "^2.2.8" 1082 | 1083 | delayed-stream@~1.0.0: 1084 | version "1.0.0" 1085 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1086 | 1087 | delegates@^1.0.0: 1088 | version "1.0.0" 1089 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1090 | 1091 | detect-indent@^4.0.0: 1092 | version "4.0.0" 1093 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1094 | dependencies: 1095 | repeating "^2.0.0" 1096 | 1097 | diff@^3.0.0, diff@^3.0.1: 1098 | version "3.2.0" 1099 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 1100 | 1101 | doctrine@^1.2.2: 1102 | version "1.5.0" 1103 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 1104 | dependencies: 1105 | esutils "^2.0.2" 1106 | isarray "^1.0.0" 1107 | 1108 | dot-prop@^3.0.0: 1109 | version "3.0.0" 1110 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-3.0.0.tgz#1b708af094a49c9a0e7dbcad790aba539dac1177" 1111 | dependencies: 1112 | is-obj "^1.0.0" 1113 | 1114 | dot-prop@^4.1.0: 1115 | version "4.1.1" 1116 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.1.1.tgz#a8493f0b7b5eeec82525b5c7587fa7de7ca859c1" 1117 | dependencies: 1118 | is-obj "^1.0.0" 1119 | 1120 | duplexer2@^0.1.4: 1121 | version "0.1.4" 1122 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" 1123 | dependencies: 1124 | readable-stream "^2.0.2" 1125 | 1126 | duplexer3@^0.1.4: 1127 | version "0.1.4" 1128 | resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" 1129 | 1130 | ecc-jsbn@~0.1.1: 1131 | version "0.1.1" 1132 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1133 | dependencies: 1134 | jsbn "~0.1.0" 1135 | 1136 | elegant-spinner@^1.0.1: 1137 | version "1.0.1" 1138 | resolved "https://registry.yarnpkg.com/elegant-spinner/-/elegant-spinner-1.0.1.tgz#db043521c95d7e303fd8f345bedc3349cfb0729e" 1139 | 1140 | empower-core@^0.6.1: 1141 | version "0.6.1" 1142 | resolved "https://registry.yarnpkg.com/empower-core/-/empower-core-0.6.1.tgz#6c187f502fcef7554d57933396aac655483772b1" 1143 | dependencies: 1144 | call-signature "0.0.2" 1145 | core-js "^2.0.0" 1146 | 1147 | equal-length@^1.0.0: 1148 | version "1.0.1" 1149 | resolved "https://registry.yarnpkg.com/equal-length/-/equal-length-1.0.1.tgz#21ca112d48ab24b4e1e7ffc0e5339d31fdfc274c" 1150 | 1151 | error-ex@^1.2.0: 1152 | version "1.3.1" 1153 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1154 | dependencies: 1155 | is-arrayish "^0.2.1" 1156 | 1157 | es5-ext@^0.10.14, es5-ext@^0.10.9, es5-ext@~0.10.14: 1158 | version "0.10.21" 1159 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.21.tgz#19a725f9e51d0300bbc1e8e821109fd9daf55925" 1160 | dependencies: 1161 | es6-iterator "2" 1162 | es6-symbol "~3.1" 1163 | 1164 | es6-iterator@2, es6-iterator@^2.0.1, es6-iterator@~2.0.1: 1165 | version "2.0.1" 1166 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512" 1167 | dependencies: 1168 | d "1" 1169 | es5-ext "^0.10.14" 1170 | es6-symbol "^3.1" 1171 | 1172 | es6-map@^0.1.3: 1173 | version "0.1.5" 1174 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" 1175 | dependencies: 1176 | d "1" 1177 | es5-ext "~0.10.14" 1178 | es6-iterator "~2.0.1" 1179 | es6-set "~0.1.5" 1180 | es6-symbol "~3.1.1" 1181 | event-emitter "~0.3.5" 1182 | 1183 | es6-set@~0.1.5: 1184 | version "0.1.5" 1185 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" 1186 | dependencies: 1187 | d "1" 1188 | es5-ext "~0.10.14" 1189 | es6-iterator "~2.0.1" 1190 | es6-symbol "3.1.1" 1191 | event-emitter "~0.3.5" 1192 | 1193 | es6-symbol@3.1.1, es6-symbol@^3.1, es6-symbol@^3.1.1, es6-symbol@~3.1, es6-symbol@~3.1.1: 1194 | version "3.1.1" 1195 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 1196 | dependencies: 1197 | d "1" 1198 | es5-ext "~0.10.14" 1199 | 1200 | es6-weak-map@^2.0.1: 1201 | version "2.0.2" 1202 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" 1203 | dependencies: 1204 | d "1" 1205 | es5-ext "^0.10.14" 1206 | es6-iterator "^2.0.1" 1207 | es6-symbol "^3.1.1" 1208 | 1209 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.4, escape-string-regexp@^1.0.5: 1210 | version "1.0.5" 1211 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1212 | 1213 | escope@^3.6.0: 1214 | version "3.6.0" 1215 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 1216 | dependencies: 1217 | es6-map "^0.1.3" 1218 | es6-weak-map "^2.0.1" 1219 | esrecurse "^4.1.0" 1220 | estraverse "^4.1.1" 1221 | 1222 | eslint-config-standard-jsx@3.2.0: 1223 | version "3.2.0" 1224 | resolved "https://registry.yarnpkg.com/eslint-config-standard-jsx/-/eslint-config-standard-jsx-3.2.0.tgz#c240e26ed919a11a42aa4de8059472b38268d620" 1225 | 1226 | eslint-config-standard@6.2.1: 1227 | version "6.2.1" 1228 | resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-6.2.1.tgz#d3a68aafc7191639e7ee441e7348739026354292" 1229 | 1230 | eslint-plugin-promise@~3.4.0: 1231 | version "3.4.2" 1232 | resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-3.4.2.tgz#1be2793eafe2d18b5b123b8136c269f804fe7122" 1233 | 1234 | eslint-plugin-react@~6.7.1: 1235 | version "6.7.1" 1236 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-6.7.1.tgz#1af96aea545856825157d97c1b50d5a8fb64a5a7" 1237 | dependencies: 1238 | doctrine "^1.2.2" 1239 | jsx-ast-utils "^1.3.3" 1240 | 1241 | eslint-plugin-standard@~2.0.1: 1242 | version "2.0.1" 1243 | resolved "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-2.0.1.tgz#3589699ff9c917f2c25f76a916687f641c369ff3" 1244 | 1245 | eslint@~3.10.2: 1246 | version "3.10.2" 1247 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.10.2.tgz#c9a10e8bf6e9d65651204778c503341f1eac3ce7" 1248 | dependencies: 1249 | babel-code-frame "^6.16.0" 1250 | chalk "^1.1.3" 1251 | concat-stream "^1.4.6" 1252 | debug "^2.1.1" 1253 | doctrine "^1.2.2" 1254 | escope "^3.6.0" 1255 | espree "^3.3.1" 1256 | estraverse "^4.2.0" 1257 | esutils "^2.0.2" 1258 | file-entry-cache "^2.0.0" 1259 | glob "^7.0.3" 1260 | globals "^9.2.0" 1261 | ignore "^3.2.0" 1262 | imurmurhash "^0.1.4" 1263 | inquirer "^0.12.0" 1264 | is-my-json-valid "^2.10.0" 1265 | is-resolvable "^1.0.0" 1266 | js-yaml "^3.5.1" 1267 | json-stable-stringify "^1.0.0" 1268 | levn "^0.3.0" 1269 | lodash "^4.0.0" 1270 | mkdirp "^0.5.0" 1271 | natural-compare "^1.4.0" 1272 | optionator "^0.8.2" 1273 | path-is-inside "^1.0.1" 1274 | pluralize "^1.2.1" 1275 | progress "^1.1.8" 1276 | require-uncached "^1.0.2" 1277 | shelljs "^0.7.5" 1278 | strip-bom "^3.0.0" 1279 | strip-json-comments "~1.0.1" 1280 | table "^3.7.8" 1281 | text-table "~0.2.0" 1282 | user-home "^2.0.0" 1283 | 1284 | espower-location-detector@^1.0.0: 1285 | version "1.0.0" 1286 | resolved "https://registry.yarnpkg.com/espower-location-detector/-/espower-location-detector-1.0.0.tgz#a17b7ecc59d30e179e2bef73fb4137704cb331b5" 1287 | dependencies: 1288 | is-url "^1.2.1" 1289 | path-is-absolute "^1.0.0" 1290 | source-map "^0.5.0" 1291 | xtend "^4.0.0" 1292 | 1293 | espree@^3.3.1: 1294 | version "3.4.3" 1295 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.3.tgz#2910b5ccd49ce893c2ffffaab4fd8b3a31b82374" 1296 | dependencies: 1297 | acorn "^5.0.1" 1298 | acorn-jsx "^3.0.0" 1299 | 1300 | esprima@^3.1.1: 1301 | version "3.1.3" 1302 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1303 | 1304 | espurify@^1.6.0: 1305 | version "1.7.0" 1306 | resolved "https://registry.yarnpkg.com/espurify/-/espurify-1.7.0.tgz#1c5cf6cbccc32e6f639380bd4f991fab9ba9d226" 1307 | dependencies: 1308 | core-js "^2.0.0" 1309 | 1310 | esrecurse@^4.1.0: 1311 | version "4.1.0" 1312 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" 1313 | dependencies: 1314 | estraverse "~4.1.0" 1315 | object-assign "^4.0.1" 1316 | 1317 | estraverse@^4.0.0, estraverse@^4.1.1, estraverse@^4.2.0: 1318 | version "4.2.0" 1319 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1320 | 1321 | estraverse@~4.1.0: 1322 | version "4.1.1" 1323 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" 1324 | 1325 | esutils@^2.0.2: 1326 | version "2.0.2" 1327 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1328 | 1329 | event-emitter@~0.3.5: 1330 | version "0.3.5" 1331 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 1332 | dependencies: 1333 | d "1" 1334 | es5-ext "~0.10.14" 1335 | 1336 | execa@^0.4.0: 1337 | version "0.4.0" 1338 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.4.0.tgz#4eb6467a36a095fabb2970ff9d5e3fb7bce6ebc3" 1339 | dependencies: 1340 | cross-spawn-async "^2.1.1" 1341 | is-stream "^1.1.0" 1342 | npm-run-path "^1.0.0" 1343 | object-assign "^4.0.1" 1344 | path-key "^1.0.0" 1345 | strip-eof "^1.0.0" 1346 | 1347 | execa@^0.5.0: 1348 | version "0.5.1" 1349 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.5.1.tgz#de3fb85cb8d6e91c85bcbceb164581785cb57b36" 1350 | dependencies: 1351 | cross-spawn "^4.0.0" 1352 | get-stream "^2.2.0" 1353 | is-stream "^1.1.0" 1354 | npm-run-path "^2.0.0" 1355 | p-finally "^1.0.0" 1356 | signal-exit "^3.0.0" 1357 | strip-eof "^1.0.0" 1358 | 1359 | execa@^0.6.3: 1360 | version "0.6.3" 1361 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.6.3.tgz#57b69a594f081759c69e5370f0d17b9cb11658fe" 1362 | dependencies: 1363 | cross-spawn "^5.0.1" 1364 | get-stream "^3.0.0" 1365 | is-stream "^1.1.0" 1366 | npm-run-path "^2.0.0" 1367 | p-finally "^1.0.0" 1368 | signal-exit "^3.0.0" 1369 | strip-eof "^1.0.0" 1370 | 1371 | exit-hook@^1.0.0: 1372 | version "1.1.1" 1373 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1374 | 1375 | expand-brackets@^0.1.4: 1376 | version "0.1.5" 1377 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1378 | dependencies: 1379 | is-posix-bracket "^0.1.0" 1380 | 1381 | expand-range@^1.8.1: 1382 | version "1.8.2" 1383 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1384 | dependencies: 1385 | fill-range "^2.1.0" 1386 | 1387 | extend@~3.0.0: 1388 | version "3.0.1" 1389 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1390 | 1391 | external-editor@^2.0.1: 1392 | version "2.0.4" 1393 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.0.4.tgz#1ed9199da9cbfe2ef2f7a31b2fde8b0d12368972" 1394 | dependencies: 1395 | iconv-lite "^0.4.17" 1396 | jschardet "^1.4.2" 1397 | tmp "^0.0.31" 1398 | 1399 | extglob@^0.3.1: 1400 | version "0.3.2" 1401 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1402 | dependencies: 1403 | is-extglob "^1.0.0" 1404 | 1405 | extsprintf@1.0.2: 1406 | version "1.0.2" 1407 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1408 | 1409 | fast-levenshtein@~2.0.4: 1410 | version "2.0.6" 1411 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1412 | 1413 | figures@^1.3.5, figures@^1.7.0: 1414 | version "1.7.0" 1415 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1416 | dependencies: 1417 | escape-string-regexp "^1.0.5" 1418 | object-assign "^4.1.0" 1419 | 1420 | figures@^2.0.0: 1421 | version "2.0.0" 1422 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1423 | dependencies: 1424 | escape-string-regexp "^1.0.5" 1425 | 1426 | file-entry-cache@^2.0.0: 1427 | version "2.0.0" 1428 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1429 | dependencies: 1430 | flat-cache "^1.2.1" 1431 | object-assign "^4.0.1" 1432 | 1433 | filename-regex@^2.0.0: 1434 | version "2.0.1" 1435 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1436 | 1437 | fill-range@^2.1.0: 1438 | version "2.2.3" 1439 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1440 | dependencies: 1441 | is-number "^2.1.0" 1442 | isobject "^2.0.0" 1443 | randomatic "^1.1.3" 1444 | repeat-element "^1.1.2" 1445 | repeat-string "^1.5.2" 1446 | 1447 | filled-array@^1.0.0: 1448 | version "1.1.0" 1449 | resolved "https://registry.yarnpkg.com/filled-array/-/filled-array-1.1.0.tgz#c3c4f6c663b923459a9aa29912d2d031f1507f84" 1450 | 1451 | find-cache-dir@^0.1.1: 1452 | version "0.1.1" 1453 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" 1454 | dependencies: 1455 | commondir "^1.0.1" 1456 | mkdirp "^0.5.1" 1457 | pkg-dir "^1.0.0" 1458 | 1459 | find-root@^1.0.0: 1460 | version "1.0.0" 1461 | resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.0.0.tgz#962ff211aab25c6520feeeb8d6287f8f6e95807a" 1462 | 1463 | find-up@^1.0.0, find-up@^1.1.2: 1464 | version "1.1.2" 1465 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1466 | dependencies: 1467 | path-exists "^2.0.0" 1468 | pinkie-promise "^2.0.0" 1469 | 1470 | find-up@^2.0.0: 1471 | version "2.1.0" 1472 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1473 | dependencies: 1474 | locate-path "^2.0.0" 1475 | 1476 | flat-cache@^1.2.1: 1477 | version "1.2.2" 1478 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 1479 | dependencies: 1480 | circular-json "^0.3.1" 1481 | del "^2.0.2" 1482 | graceful-fs "^4.1.2" 1483 | write "^0.2.1" 1484 | 1485 | fn-name@^2.0.0: 1486 | version "2.0.1" 1487 | resolved "https://registry.yarnpkg.com/fn-name/-/fn-name-2.0.1.tgz#5214d7537a4d06a4a301c0cc262feb84188002e7" 1488 | 1489 | for-in@^1.0.1: 1490 | version "1.0.2" 1491 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1492 | 1493 | for-own@^0.1.4: 1494 | version "0.1.5" 1495 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1496 | dependencies: 1497 | for-in "^1.0.1" 1498 | 1499 | foreground-child@^1.3.3, foreground-child@^1.5.3: 1500 | version "1.5.6" 1501 | resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-1.5.6.tgz#4fd71ad2dfde96789b980a5c0a295937cb2f5ce9" 1502 | dependencies: 1503 | cross-spawn "^4" 1504 | signal-exit "^3.0.0" 1505 | 1506 | forever-agent@~0.6.1: 1507 | version "0.6.1" 1508 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1509 | 1510 | form-data@~2.1.1: 1511 | version "2.1.4" 1512 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1513 | dependencies: 1514 | asynckit "^0.4.0" 1515 | combined-stream "^1.0.5" 1516 | mime-types "^2.1.12" 1517 | 1518 | formatio@1.1.1: 1519 | version "1.1.1" 1520 | resolved "https://registry.yarnpkg.com/formatio/-/formatio-1.1.1.tgz#5ed3ccd636551097383465d996199100e86161e9" 1521 | dependencies: 1522 | samsam "~1.1" 1523 | 1524 | fs.realpath@^1.0.0: 1525 | version "1.0.0" 1526 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1527 | 1528 | fsevents@^1.0.0: 1529 | version "1.1.1" 1530 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.1.tgz#f19fd28f43eeaf761680e519a203c4d0b3d31aff" 1531 | dependencies: 1532 | nan "^2.3.0" 1533 | node-pre-gyp "^0.6.29" 1534 | 1535 | fstream-ignore@^1.0.5: 1536 | version "1.0.5" 1537 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1538 | dependencies: 1539 | fstream "^1.0.0" 1540 | inherits "2" 1541 | minimatch "^3.0.0" 1542 | 1543 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1544 | version "1.0.11" 1545 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1546 | dependencies: 1547 | graceful-fs "^4.1.2" 1548 | inherits "~2.0.0" 1549 | mkdirp ">=0.5 0" 1550 | rimraf "2" 1551 | 1552 | gauge@~2.7.3: 1553 | version "2.7.4" 1554 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1555 | dependencies: 1556 | aproba "^1.0.3" 1557 | console-control-strings "^1.0.0" 1558 | has-unicode "^2.0.0" 1559 | object-assign "^4.1.0" 1560 | signal-exit "^3.0.0" 1561 | string-width "^1.0.1" 1562 | strip-ansi "^3.0.1" 1563 | wide-align "^1.1.0" 1564 | 1565 | generate-function@^2.0.0: 1566 | version "2.0.0" 1567 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1568 | 1569 | generate-object-property@^1.1.0: 1570 | version "1.2.0" 1571 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1572 | dependencies: 1573 | is-property "^1.0.0" 1574 | 1575 | get-caller-file@^1.0.1: 1576 | version "1.0.2" 1577 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1578 | 1579 | get-port@^2.1.0: 1580 | version "2.1.0" 1581 | resolved "https://registry.yarnpkg.com/get-port/-/get-port-2.1.0.tgz#8783f9dcebd1eea495a334e1a6a251e78887ab1a" 1582 | dependencies: 1583 | pinkie-promise "^2.0.0" 1584 | 1585 | get-stdin@^4.0.1: 1586 | version "4.0.1" 1587 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 1588 | 1589 | get-stdin@^5.0.1: 1590 | version "5.0.1" 1591 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" 1592 | 1593 | get-stream@^2.2.0: 1594 | version "2.3.1" 1595 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-2.3.1.tgz#5f38f93f346009666ee0150a054167f91bdd95de" 1596 | dependencies: 1597 | object-assign "^4.0.1" 1598 | pinkie-promise "^2.0.0" 1599 | 1600 | get-stream@^3.0.0: 1601 | version "3.0.0" 1602 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1603 | 1604 | getpass@^0.1.1: 1605 | version "0.1.7" 1606 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1607 | dependencies: 1608 | assert-plus "^1.0.0" 1609 | 1610 | glob-base@^0.3.0: 1611 | version "0.3.0" 1612 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1613 | dependencies: 1614 | glob-parent "^2.0.0" 1615 | is-glob "^2.0.0" 1616 | 1617 | glob-parent@^2.0.0: 1618 | version "2.0.0" 1619 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1620 | dependencies: 1621 | is-glob "^2.0.0" 1622 | 1623 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.0.6: 1624 | version "7.1.2" 1625 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1626 | dependencies: 1627 | fs.realpath "^1.0.0" 1628 | inflight "^1.0.4" 1629 | inherits "2" 1630 | minimatch "^3.0.4" 1631 | once "^1.3.0" 1632 | path-is-absolute "^1.0.0" 1633 | 1634 | globals@^9.0.0, globals@^9.2.0: 1635 | version "9.17.0" 1636 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" 1637 | 1638 | globby@^5.0.0: 1639 | version "5.0.0" 1640 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1641 | dependencies: 1642 | array-union "^1.0.1" 1643 | arrify "^1.0.0" 1644 | glob "^7.0.3" 1645 | object-assign "^4.0.1" 1646 | pify "^2.0.0" 1647 | pinkie-promise "^2.0.0" 1648 | 1649 | globby@^6.0.0: 1650 | version "6.1.0" 1651 | resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" 1652 | dependencies: 1653 | array-union "^1.0.1" 1654 | glob "^7.0.3" 1655 | object-assign "^4.0.1" 1656 | pify "^2.0.0" 1657 | pinkie-promise "^2.0.0" 1658 | 1659 | got@^5.0.0: 1660 | version "5.7.1" 1661 | resolved "https://registry.yarnpkg.com/got/-/got-5.7.1.tgz#5f81635a61e4a6589f180569ea4e381680a51f35" 1662 | dependencies: 1663 | create-error-class "^3.0.1" 1664 | duplexer2 "^0.1.4" 1665 | is-redirect "^1.0.0" 1666 | is-retry-allowed "^1.0.0" 1667 | is-stream "^1.0.0" 1668 | lowercase-keys "^1.0.0" 1669 | node-status-codes "^1.0.0" 1670 | object-assign "^4.0.1" 1671 | parse-json "^2.1.0" 1672 | pinkie-promise "^2.0.0" 1673 | read-all-stream "^3.0.0" 1674 | readable-stream "^2.0.5" 1675 | timed-out "^3.0.0" 1676 | unzip-response "^1.0.2" 1677 | url-parse-lax "^1.0.0" 1678 | 1679 | got@^6.7.1: 1680 | version "6.7.1" 1681 | resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0" 1682 | dependencies: 1683 | create-error-class "^3.0.0" 1684 | duplexer3 "^0.1.4" 1685 | get-stream "^3.0.0" 1686 | is-redirect "^1.0.0" 1687 | is-retry-allowed "^1.0.0" 1688 | is-stream "^1.0.0" 1689 | lowercase-keys "^1.0.0" 1690 | safe-buffer "^5.0.1" 1691 | timed-out "^4.0.0" 1692 | unzip-response "^2.0.1" 1693 | url-parse-lax "^1.0.0" 1694 | 1695 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6: 1696 | version "4.1.11" 1697 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1698 | 1699 | handlebars@^4.0.3: 1700 | version "4.0.10" 1701 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.10.tgz#3d30c718b09a3d96f23ea4cc1f403c4d3ba9ff4f" 1702 | dependencies: 1703 | async "^1.4.0" 1704 | optimist "^0.6.1" 1705 | source-map "^0.4.4" 1706 | optionalDependencies: 1707 | uglify-js "^2.6" 1708 | 1709 | har-schema@^1.0.5: 1710 | version "1.0.5" 1711 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1712 | 1713 | har-validator@~4.2.1: 1714 | version "4.2.1" 1715 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1716 | dependencies: 1717 | ajv "^4.9.1" 1718 | har-schema "^1.0.5" 1719 | 1720 | has-ansi@^2.0.0: 1721 | version "2.0.0" 1722 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1723 | dependencies: 1724 | ansi-regex "^2.0.0" 1725 | 1726 | has-color@~0.1.0: 1727 | version "0.1.7" 1728 | resolved "https://registry.yarnpkg.com/has-color/-/has-color-0.1.7.tgz#67144a5260c34fc3cca677d041daf52fe7b78b2f" 1729 | 1730 | has-flag@^1.0.0: 1731 | version "1.0.0" 1732 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1733 | 1734 | has-flag@^2.0.0: 1735 | version "2.0.0" 1736 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1737 | 1738 | has-unicode@^2.0.0: 1739 | version "2.0.1" 1740 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1741 | 1742 | has-yarn@^1.0.0: 1743 | version "1.0.0" 1744 | resolved "https://registry.yarnpkg.com/has-yarn/-/has-yarn-1.0.0.tgz#89e25db604b725c8f5976fff0addc921b828a5a7" 1745 | 1746 | hawk@~3.1.3: 1747 | version "3.1.3" 1748 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1749 | dependencies: 1750 | boom "2.x.x" 1751 | cryptiles "2.x.x" 1752 | hoek "2.x.x" 1753 | sntp "1.x.x" 1754 | 1755 | hoek@2.x.x: 1756 | version "2.16.3" 1757 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1758 | 1759 | home-or-tmp@^2.0.0: 1760 | version "2.0.0" 1761 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1762 | dependencies: 1763 | os-homedir "^1.0.0" 1764 | os-tmpdir "^1.0.1" 1765 | 1766 | hosted-git-info@^2.1.4: 1767 | version "2.4.2" 1768 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.2.tgz#0076b9f46a270506ddbaaea56496897460612a67" 1769 | 1770 | http-signature@~1.1.0: 1771 | version "1.1.1" 1772 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1773 | dependencies: 1774 | assert-plus "^0.2.0" 1775 | jsprim "^1.2.2" 1776 | sshpk "^1.7.0" 1777 | 1778 | iconv-lite@^0.4.17: 1779 | version "0.4.17" 1780 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.17.tgz#4fdaa3b38acbc2c031b045d0edcdfe1ecab18c8d" 1781 | 1782 | ignore-by-default@^1.0.0: 1783 | version "1.0.1" 1784 | resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" 1785 | 1786 | ignore@^3.0.9, ignore@^3.2.0: 1787 | version "3.3.3" 1788 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.3.tgz#432352e57accd87ab3110e82d3fea0e47812156d" 1789 | 1790 | imurmurhash@^0.1.4: 1791 | version "0.1.4" 1792 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1793 | 1794 | indent-string@^2.1.0: 1795 | version "2.1.0" 1796 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 1797 | dependencies: 1798 | repeating "^2.0.0" 1799 | 1800 | indent-string@^3.0.0: 1801 | version "3.1.0" 1802 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.1.0.tgz#08ff4334603388399b329e6b9538dc7a3cf5de7d" 1803 | 1804 | inflight@^1.0.4: 1805 | version "1.0.6" 1806 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1807 | dependencies: 1808 | once "^1.3.0" 1809 | wrappy "1" 1810 | 1811 | inherits@2, inherits@2.0.1, inherits@^2.0.1: 1812 | version "2.0.1" 1813 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 1814 | 1815 | inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1: 1816 | version "2.0.3" 1817 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1818 | 1819 | ini@~1.3.0: 1820 | version "1.3.4" 1821 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1822 | 1823 | inquirer@^0.12.0: 1824 | version "0.12.0" 1825 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 1826 | dependencies: 1827 | ansi-escapes "^1.1.0" 1828 | ansi-regex "^2.0.0" 1829 | chalk "^1.0.0" 1830 | cli-cursor "^1.0.1" 1831 | cli-width "^2.0.0" 1832 | figures "^1.3.5" 1833 | lodash "^4.3.0" 1834 | readline2 "^1.0.1" 1835 | run-async "^0.1.0" 1836 | rx-lite "^3.1.2" 1837 | string-width "^1.0.1" 1838 | strip-ansi "^3.0.0" 1839 | through "^2.3.6" 1840 | 1841 | inquirer@^3.0.6: 1842 | version "3.0.6" 1843 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.0.6.tgz#e04aaa9d05b7a3cb9b0f407d04375f0447190347" 1844 | dependencies: 1845 | ansi-escapes "^1.1.0" 1846 | chalk "^1.0.0" 1847 | cli-cursor "^2.1.0" 1848 | cli-width "^2.0.0" 1849 | external-editor "^2.0.1" 1850 | figures "^2.0.0" 1851 | lodash "^4.3.0" 1852 | mute-stream "0.0.7" 1853 | run-async "^2.2.0" 1854 | rx "^4.1.0" 1855 | string-width "^2.0.0" 1856 | strip-ansi "^3.0.0" 1857 | through "^2.3.6" 1858 | 1859 | interpret@^1.0.0: 1860 | version "1.0.3" 1861 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.3.tgz#cbc35c62eeee73f19ab7b10a801511401afc0f90" 1862 | 1863 | invariant@^2.2.0: 1864 | version "2.2.2" 1865 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1866 | dependencies: 1867 | loose-envify "^1.0.0" 1868 | 1869 | invert-kv@^1.0.0: 1870 | version "1.0.0" 1871 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1872 | 1873 | irregular-plurals@^1.0.0: 1874 | version "1.2.0" 1875 | resolved "https://registry.yarnpkg.com/irregular-plurals/-/irregular-plurals-1.2.0.tgz#38f299834ba8c00c30be9c554e137269752ff3ac" 1876 | 1877 | is-arrayish@^0.2.1: 1878 | version "0.2.1" 1879 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1880 | 1881 | is-binary-path@^1.0.0: 1882 | version "1.0.1" 1883 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1884 | dependencies: 1885 | binary-extensions "^1.0.0" 1886 | 1887 | is-buffer@^1.1.5: 1888 | version "1.1.5" 1889 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1890 | 1891 | is-builtin-module@^1.0.0: 1892 | version "1.0.0" 1893 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1894 | dependencies: 1895 | builtin-modules "^1.0.0" 1896 | 1897 | is-ci@^1.0.7: 1898 | version "1.0.10" 1899 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 1900 | dependencies: 1901 | ci-info "^1.0.0" 1902 | 1903 | is-dotfile@^1.0.0: 1904 | version "1.0.2" 1905 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 1906 | 1907 | is-equal-shallow@^0.1.3: 1908 | version "0.1.3" 1909 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1910 | dependencies: 1911 | is-primitive "^2.0.0" 1912 | 1913 | is-error@^2.2.0: 1914 | version "2.2.1" 1915 | resolved "https://registry.yarnpkg.com/is-error/-/is-error-2.2.1.tgz#684a96d84076577c98f4cdb40c6d26a5123bf19c" 1916 | 1917 | is-extendable@^0.1.1: 1918 | version "0.1.1" 1919 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1920 | 1921 | is-extglob@^1.0.0: 1922 | version "1.0.0" 1923 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1924 | 1925 | is-finite@^1.0.0, is-finite@^1.0.1: 1926 | version "1.0.2" 1927 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1928 | dependencies: 1929 | number-is-nan "^1.0.0" 1930 | 1931 | is-fullwidth-code-point@^1.0.0: 1932 | version "1.0.0" 1933 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1934 | dependencies: 1935 | number-is-nan "^1.0.0" 1936 | 1937 | is-fullwidth-code-point@^2.0.0: 1938 | version "2.0.0" 1939 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1940 | 1941 | is-generator-fn@^1.0.0: 1942 | version "1.0.0" 1943 | resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-1.0.0.tgz#969d49e1bb3329f6bb7f09089be26578b2ddd46a" 1944 | 1945 | is-glob@^2.0.0, is-glob@^2.0.1: 1946 | version "2.0.1" 1947 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1948 | dependencies: 1949 | is-extglob "^1.0.0" 1950 | 1951 | is-my-json-valid@^2.10.0: 1952 | version "2.16.0" 1953 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz#f079dd9bfdae65ee2038aae8acbc86ab109e3693" 1954 | dependencies: 1955 | generate-function "^2.0.0" 1956 | generate-object-property "^1.1.0" 1957 | jsonpointer "^4.0.0" 1958 | xtend "^4.0.0" 1959 | 1960 | is-npm@^1.0.0: 1961 | version "1.0.0" 1962 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 1963 | 1964 | is-number@^2.0.2, is-number@^2.1.0: 1965 | version "2.1.0" 1966 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1967 | dependencies: 1968 | kind-of "^3.0.2" 1969 | 1970 | is-obj@^1.0.0: 1971 | version "1.0.1" 1972 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 1973 | 1974 | is-observable@^0.2.0: 1975 | version "0.2.0" 1976 | resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-0.2.0.tgz#b361311d83c6e5d726cabf5e250b0237106f5ae2" 1977 | dependencies: 1978 | symbol-observable "^0.2.2" 1979 | 1980 | is-path-cwd@^1.0.0: 1981 | version "1.0.0" 1982 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1983 | 1984 | is-path-in-cwd@^1.0.0: 1985 | version "1.0.0" 1986 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 1987 | dependencies: 1988 | is-path-inside "^1.0.0" 1989 | 1990 | is-path-inside@^1.0.0: 1991 | version "1.0.0" 1992 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 1993 | dependencies: 1994 | path-is-inside "^1.0.1" 1995 | 1996 | is-plain-obj@^1.0.0: 1997 | version "1.1.0" 1998 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 1999 | 2000 | is-posix-bracket@^0.1.0: 2001 | version "0.1.1" 2002 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 2003 | 2004 | is-primitive@^2.0.0: 2005 | version "2.0.0" 2006 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 2007 | 2008 | is-promise@^2.1.0: 2009 | version "2.1.0" 2010 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 2011 | 2012 | is-property@^1.0.0: 2013 | version "1.0.2" 2014 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 2015 | 2016 | is-redirect@^1.0.0: 2017 | version "1.0.0" 2018 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 2019 | 2020 | is-resolvable@^1.0.0: 2021 | version "1.0.0" 2022 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 2023 | dependencies: 2024 | tryit "^1.0.1" 2025 | 2026 | is-retry-allowed@^1.0.0: 2027 | version "1.1.0" 2028 | resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" 2029 | 2030 | is-stream@^1.0.0, is-stream@^1.1.0: 2031 | version "1.1.0" 2032 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2033 | 2034 | is-typedarray@~1.0.0: 2035 | version "1.0.0" 2036 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2037 | 2038 | is-url@^1.2.1: 2039 | version "1.2.2" 2040 | resolved "https://registry.yarnpkg.com/is-url/-/is-url-1.2.2.tgz#498905a593bf47cc2d9e7f738372bbf7696c7f26" 2041 | 2042 | is-utf8@^0.2.0, is-utf8@^0.2.1: 2043 | version "0.2.1" 2044 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 2045 | 2046 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 2047 | version "1.0.0" 2048 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2049 | 2050 | isexe@^2.0.0: 2051 | version "2.0.0" 2052 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2053 | 2054 | isobject@^2.0.0: 2055 | version "2.1.0" 2056 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2057 | dependencies: 2058 | isarray "1.0.0" 2059 | 2060 | isstream@~0.1.2: 2061 | version "0.1.2" 2062 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2063 | 2064 | istanbul-lib-coverage@^1.1.0: 2065 | version "1.1.0" 2066 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.0.tgz#caca19decaef3525b5d6331d701f3f3b7ad48528" 2067 | 2068 | istanbul-lib-hook@^1.0.6: 2069 | version "1.0.6" 2070 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.6.tgz#c0866d1e81cf2d5319249510131fc16dee49231f" 2071 | dependencies: 2072 | append-transform "^0.4.0" 2073 | 2074 | istanbul-lib-instrument@^1.7.1: 2075 | version "1.7.1" 2076 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.1.tgz#169e31bc62c778851a99439dd99c3cc12184d360" 2077 | dependencies: 2078 | babel-generator "^6.18.0" 2079 | babel-template "^6.16.0" 2080 | babel-traverse "^6.18.0" 2081 | babel-types "^6.18.0" 2082 | babylon "^6.13.0" 2083 | istanbul-lib-coverage "^1.1.0" 2084 | semver "^5.3.0" 2085 | 2086 | istanbul-lib-report@^1.1.0: 2087 | version "1.1.0" 2088 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.0.tgz#444c4ecca9afa93cf584f56b10f195bf768c0770" 2089 | dependencies: 2090 | istanbul-lib-coverage "^1.1.0" 2091 | mkdirp "^0.5.1" 2092 | path-parse "^1.0.5" 2093 | supports-color "^3.1.2" 2094 | 2095 | istanbul-lib-source-maps@^1.2.0: 2096 | version "1.2.0" 2097 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.0.tgz#8c7706d497e26feeb6af3e0c28fd5b0669598d0e" 2098 | dependencies: 2099 | debug "^2.6.3" 2100 | istanbul-lib-coverage "^1.1.0" 2101 | mkdirp "^0.5.1" 2102 | rimraf "^2.6.1" 2103 | source-map "^0.5.3" 2104 | 2105 | istanbul-reports@^1.1.0: 2106 | version "1.1.0" 2107 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.0.tgz#1ef3b795889219cfb5fad16365f6ce108d5f8c66" 2108 | dependencies: 2109 | handlebars "^4.0.3" 2110 | 2111 | jest-diff@^18.1.0: 2112 | version "18.1.0" 2113 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-18.1.0.tgz#4ff79e74dd988c139195b365dc65d87f606f4803" 2114 | dependencies: 2115 | chalk "^1.1.3" 2116 | diff "^3.0.0" 2117 | jest-matcher-utils "^18.1.0" 2118 | pretty-format "^18.1.0" 2119 | 2120 | jest-file-exists@^17.0.0: 2121 | version "17.0.0" 2122 | resolved "https://registry.yarnpkg.com/jest-file-exists/-/jest-file-exists-17.0.0.tgz#7f63eb73a1c43a13f461be261768b45af2cdd169" 2123 | 2124 | jest-matcher-utils@^18.1.0: 2125 | version "18.1.0" 2126 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-18.1.0.tgz#1ac4651955ee2a60cef1e7fcc98cdfd773c0f932" 2127 | dependencies: 2128 | chalk "^1.1.3" 2129 | pretty-format "^18.1.0" 2130 | 2131 | jest-mock@^18.0.0: 2132 | version "18.0.0" 2133 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-18.0.0.tgz#5c248846ea33fa558b526f5312ab4a6765e489b3" 2134 | 2135 | jest-snapshot@^18.1.0: 2136 | version "18.1.0" 2137 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-18.1.0.tgz#55b96d2ee639c9bce76f87f2a3fd40b71c7a5916" 2138 | dependencies: 2139 | jest-diff "^18.1.0" 2140 | jest-file-exists "^17.0.0" 2141 | jest-matcher-utils "^18.1.0" 2142 | jest-util "^18.1.0" 2143 | natural-compare "^1.4.0" 2144 | pretty-format "^18.1.0" 2145 | 2146 | jest-util@^18.1.0: 2147 | version "18.1.0" 2148 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-18.1.0.tgz#3a99c32114ab17f84be094382527006e6d4bfc6a" 2149 | dependencies: 2150 | chalk "^1.1.1" 2151 | diff "^3.0.0" 2152 | graceful-fs "^4.1.6" 2153 | jest-file-exists "^17.0.0" 2154 | jest-mock "^18.0.0" 2155 | mkdirp "^0.5.1" 2156 | 2157 | jodid25519@^1.0.0: 2158 | version "1.0.2" 2159 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 2160 | dependencies: 2161 | jsbn "~0.1.0" 2162 | 2163 | js-tokens@^3.0.0: 2164 | version "3.0.1" 2165 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 2166 | 2167 | js-yaml@^3.5.1: 2168 | version "3.8.4" 2169 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.4.tgz#520b4564f86573ba96662af85a8cafa7b4b5a6f6" 2170 | dependencies: 2171 | argparse "^1.0.7" 2172 | esprima "^3.1.1" 2173 | 2174 | jsbn@~0.1.0: 2175 | version "0.1.1" 2176 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2177 | 2178 | jschardet@^1.4.2: 2179 | version "1.4.2" 2180 | resolved "https://registry.yarnpkg.com/jschardet/-/jschardet-1.4.2.tgz#2aa107f142af4121d145659d44f50830961e699a" 2181 | 2182 | jsesc@^1.3.0: 2183 | version "1.3.0" 2184 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2185 | 2186 | jsesc@~0.5.0: 2187 | version "0.5.0" 2188 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2189 | 2190 | json-schema@0.2.3: 2191 | version "0.2.3" 2192 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2193 | 2194 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 2195 | version "1.0.1" 2196 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2197 | dependencies: 2198 | jsonify "~0.0.0" 2199 | 2200 | json-stringify-safe@~5.0.1: 2201 | version "5.0.1" 2202 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2203 | 2204 | json5@^0.5.0: 2205 | version "0.5.1" 2206 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2207 | 2208 | jsonify@~0.0.0: 2209 | version "0.0.0" 2210 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2211 | 2212 | jsonpointer@^4.0.0: 2213 | version "4.0.1" 2214 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 2215 | 2216 | jsprim@^1.2.2: 2217 | version "1.4.0" 2218 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 2219 | dependencies: 2220 | assert-plus "1.0.0" 2221 | extsprintf "1.0.2" 2222 | json-schema "0.2.3" 2223 | verror "1.3.6" 2224 | 2225 | jsx-ast-utils@^1.3.3: 2226 | version "1.4.1" 2227 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-1.4.1.tgz#3867213e8dd79bf1e8f2300c0cfc1efb182c0df1" 2228 | 2229 | kind-of@^3.0.2: 2230 | version "3.2.2" 2231 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2232 | dependencies: 2233 | is-buffer "^1.1.5" 2234 | 2235 | last-line-stream@^1.0.0: 2236 | version "1.0.0" 2237 | resolved "https://registry.yarnpkg.com/last-line-stream/-/last-line-stream-1.0.0.tgz#d1b64d69f86ff24af2d04883a2ceee14520a5600" 2238 | dependencies: 2239 | through2 "^2.0.0" 2240 | 2241 | latest-version@^2.0.0: 2242 | version "2.0.0" 2243 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-2.0.0.tgz#56f8d6139620847b8017f8f1f4d78e211324168b" 2244 | dependencies: 2245 | package-json "^2.0.0" 2246 | 2247 | latest-version@^3.0.0: 2248 | version "3.1.0" 2249 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15" 2250 | dependencies: 2251 | package-json "^4.0.0" 2252 | 2253 | lazy-cache@^1.0.3: 2254 | version "1.0.4" 2255 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2256 | 2257 | lazy-req@^1.1.0: 2258 | version "1.1.0" 2259 | resolved "https://registry.yarnpkg.com/lazy-req/-/lazy-req-1.1.0.tgz#bdaebead30f8d824039ce0ce149d4daa07ba1fac" 2260 | 2261 | lazy-req@^2.0.0: 2262 | version "2.0.0" 2263 | resolved "https://registry.yarnpkg.com/lazy-req/-/lazy-req-2.0.0.tgz#c9450a363ecdda2e6f0c70132ad4f37f8f06f2b4" 2264 | 2265 | lcid@^1.0.0: 2266 | version "1.0.0" 2267 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2268 | dependencies: 2269 | invert-kv "^1.0.0" 2270 | 2271 | levn@^0.3.0, levn@~0.3.0: 2272 | version "0.3.0" 2273 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2274 | dependencies: 2275 | prelude-ls "~1.1.2" 2276 | type-check "~0.3.2" 2277 | 2278 | listr-silent-renderer@^1.1.1: 2279 | version "1.1.1" 2280 | resolved "https://registry.yarnpkg.com/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz#924b5a3757153770bf1a8e3fbf74b8bbf3f9242e" 2281 | 2282 | listr-update-renderer@^0.2.0: 2283 | version "0.2.0" 2284 | resolved "https://registry.yarnpkg.com/listr-update-renderer/-/listr-update-renderer-0.2.0.tgz#ca80e1779b4e70266807e8eed1ad6abe398550f9" 2285 | dependencies: 2286 | chalk "^1.1.3" 2287 | cli-truncate "^0.2.1" 2288 | elegant-spinner "^1.0.1" 2289 | figures "^1.7.0" 2290 | indent-string "^3.0.0" 2291 | log-symbols "^1.0.2" 2292 | log-update "^1.0.2" 2293 | strip-ansi "^3.0.1" 2294 | 2295 | listr-verbose-renderer@^0.4.0: 2296 | version "0.4.0" 2297 | resolved "https://registry.yarnpkg.com/listr-verbose-renderer/-/listr-verbose-renderer-0.4.0.tgz#44dc01bb0c34a03c572154d4d08cde9b1dc5620f" 2298 | dependencies: 2299 | chalk "^1.1.3" 2300 | cli-cursor "^1.0.2" 2301 | date-fns "^1.27.2" 2302 | figures "^1.7.0" 2303 | 2304 | listr@^0.11.0: 2305 | version "0.11.0" 2306 | resolved "https://registry.yarnpkg.com/listr/-/listr-0.11.0.tgz#5e778bc23806ac3ab984ed75564458151f39b03e" 2307 | dependencies: 2308 | chalk "^1.1.3" 2309 | cli-truncate "^0.2.1" 2310 | figures "^1.7.0" 2311 | indent-string "^2.1.0" 2312 | is-promise "^2.1.0" 2313 | is-stream "^1.1.0" 2314 | listr-silent-renderer "^1.1.1" 2315 | listr-update-renderer "^0.2.0" 2316 | listr-verbose-renderer "^0.4.0" 2317 | log-symbols "^1.0.2" 2318 | log-update "^1.0.2" 2319 | ora "^0.2.3" 2320 | rxjs "^5.0.0-beta.11" 2321 | stream-to-observable "^0.1.0" 2322 | strip-ansi "^3.0.1" 2323 | 2324 | load-json-file@^1.0.0: 2325 | version "1.1.0" 2326 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2327 | dependencies: 2328 | graceful-fs "^4.1.2" 2329 | parse-json "^2.2.0" 2330 | pify "^2.0.0" 2331 | pinkie-promise "^2.0.0" 2332 | strip-bom "^2.0.0" 2333 | 2334 | load-json-file@^2.0.0: 2335 | version "2.0.0" 2336 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 2337 | dependencies: 2338 | graceful-fs "^4.1.2" 2339 | parse-json "^2.2.0" 2340 | pify "^2.0.0" 2341 | strip-bom "^3.0.0" 2342 | 2343 | locate-path@^2.0.0: 2344 | version "2.0.0" 2345 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2346 | dependencies: 2347 | p-locate "^2.0.0" 2348 | path-exists "^3.0.0" 2349 | 2350 | lodash.debounce@^4.0.3: 2351 | version "4.0.8" 2352 | resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" 2353 | 2354 | lodash.difference@^4.3.0: 2355 | version "4.5.0" 2356 | resolved "https://registry.yarnpkg.com/lodash.difference/-/lodash.difference-4.5.0.tgz#9ccb4e505d486b91651345772885a2df27fd017c" 2357 | 2358 | lodash.flatten@^4.2.0: 2359 | version "4.4.0" 2360 | resolved "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f" 2361 | 2362 | lodash.isequal@^4.5.0: 2363 | version "4.5.0" 2364 | resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" 2365 | 2366 | lodash@^4.0.0, lodash@^4.2.0, lodash@^4.3.0: 2367 | version "4.17.4" 2368 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2369 | 2370 | log-symbols@^1.0.2: 2371 | version "1.0.2" 2372 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" 2373 | dependencies: 2374 | chalk "^1.0.0" 2375 | 2376 | log-update@^1.0.2: 2377 | version "1.0.2" 2378 | resolved "https://registry.yarnpkg.com/log-update/-/log-update-1.0.2.tgz#19929f64c4093d2d2e7075a1dad8af59c296b8d1" 2379 | dependencies: 2380 | ansi-escapes "^1.0.0" 2381 | cli-cursor "^1.0.2" 2382 | 2383 | lolex@1.3.2: 2384 | version "1.3.2" 2385 | resolved "https://registry.yarnpkg.com/lolex/-/lolex-1.3.2.tgz#7c3da62ffcb30f0f5a80a2566ca24e45d8a01f31" 2386 | 2387 | longest@^1.0.1: 2388 | version "1.0.1" 2389 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2390 | 2391 | loose-envify@^1.0.0: 2392 | version "1.3.1" 2393 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2394 | dependencies: 2395 | js-tokens "^3.0.0" 2396 | 2397 | loud-rejection@^1.0.0, loud-rejection@^1.2.0: 2398 | version "1.6.0" 2399 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 2400 | dependencies: 2401 | currently-unhandled "^0.4.1" 2402 | signal-exit "^3.0.0" 2403 | 2404 | lowercase-keys@^1.0.0: 2405 | version "1.0.0" 2406 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" 2407 | 2408 | lru-cache@^4.0.0, lru-cache@^4.0.1: 2409 | version "4.0.2" 2410 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.0.2.tgz#1d17679c069cda5d040991a09dbc2c0db377e55e" 2411 | dependencies: 2412 | pseudomap "^1.0.1" 2413 | yallist "^2.0.0" 2414 | 2415 | make-dir@^1.0.0: 2416 | version "1.0.0" 2417 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.0.0.tgz#97a011751e91dd87cfadef58832ebb04936de978" 2418 | dependencies: 2419 | pify "^2.3.0" 2420 | 2421 | map-obj@^1.0.0, map-obj@^1.0.1: 2422 | version "1.0.1" 2423 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 2424 | 2425 | matcher@^0.1.1: 2426 | version "0.1.2" 2427 | resolved "https://registry.yarnpkg.com/matcher/-/matcher-0.1.2.tgz#ef20cbde64c24c50cc61af5b83ee0b1b8ff00101" 2428 | dependencies: 2429 | escape-string-regexp "^1.0.4" 2430 | 2431 | max-timeout@^1.0.0: 2432 | version "1.0.0" 2433 | resolved "https://registry.yarnpkg.com/max-timeout/-/max-timeout-1.0.0.tgz#b68f69a2f99e0b476fd4cb23e2059ca750715e1f" 2434 | 2435 | md5-hex@^1.2.0, md5-hex@^1.3.0: 2436 | version "1.3.0" 2437 | resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-1.3.0.tgz#d2c4afe983c4370662179b8cad145219135046c4" 2438 | dependencies: 2439 | md5-o-matic "^0.1.1" 2440 | 2441 | md5-hex@^2.0.0: 2442 | version "2.0.0" 2443 | resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-2.0.0.tgz#d0588e9f1c74954492ecd24ac0ac6ce997d92e33" 2444 | dependencies: 2445 | md5-o-matic "^0.1.1" 2446 | 2447 | md5-o-matic@^0.1.1: 2448 | version "0.1.1" 2449 | resolved "https://registry.yarnpkg.com/md5-o-matic/-/md5-o-matic-0.1.1.tgz#822bccd65e117c514fab176b25945d54100a03c3" 2450 | 2451 | meow@^3.7.0: 2452 | version "3.7.0" 2453 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 2454 | dependencies: 2455 | camelcase-keys "^2.0.0" 2456 | decamelize "^1.1.2" 2457 | loud-rejection "^1.0.0" 2458 | map-obj "^1.0.1" 2459 | minimist "^1.1.3" 2460 | normalize-package-data "^2.3.4" 2461 | object-assign "^4.0.1" 2462 | read-pkg-up "^1.0.1" 2463 | redent "^1.0.0" 2464 | trim-newlines "^1.0.0" 2465 | 2466 | merge-source-map@^1.0.2: 2467 | version "1.0.3" 2468 | resolved "https://registry.yarnpkg.com/merge-source-map/-/merge-source-map-1.0.3.tgz#da1415f2722a5119db07b14c4f973410863a2abf" 2469 | dependencies: 2470 | source-map "^0.5.3" 2471 | 2472 | micromatch@^2.1.5, micromatch@^2.3.11: 2473 | version "2.3.11" 2474 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2475 | dependencies: 2476 | arr-diff "^2.0.0" 2477 | array-unique "^0.2.1" 2478 | braces "^1.8.2" 2479 | expand-brackets "^0.1.4" 2480 | extglob "^0.3.1" 2481 | filename-regex "^2.0.0" 2482 | is-extglob "^1.0.0" 2483 | is-glob "^2.0.1" 2484 | kind-of "^3.0.2" 2485 | normalize-path "^2.0.1" 2486 | object.omit "^2.0.0" 2487 | parse-glob "^3.0.4" 2488 | regex-cache "^0.4.2" 2489 | 2490 | mime-db@~1.27.0: 2491 | version "1.27.0" 2492 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 2493 | 2494 | mime-types@^2.1.12, mime-types@~2.1.7: 2495 | version "2.1.15" 2496 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 2497 | dependencies: 2498 | mime-db "~1.27.0" 2499 | 2500 | mimic-fn@^1.0.0: 2501 | version "1.1.0" 2502 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 2503 | 2504 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 2505 | version "3.0.4" 2506 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2507 | dependencies: 2508 | brace-expansion "^1.1.7" 2509 | 2510 | minimist@0.0.8, minimist@~0.0.1: 2511 | version "0.0.8" 2512 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2513 | 2514 | minimist@^1.1.0, minimist@^1.1.3, minimist@^1.2.0: 2515 | version "1.2.0" 2516 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2517 | 2518 | "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1: 2519 | version "0.5.1" 2520 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2521 | dependencies: 2522 | minimist "0.0.8" 2523 | 2524 | ms@2.0.0: 2525 | version "2.0.0" 2526 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2527 | 2528 | ms@^0.7.1: 2529 | version "0.7.3" 2530 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.3.tgz#708155a5e44e33f5fd0fc53e81d0d40a91be1fff" 2531 | 2532 | multimatch@^2.1.0: 2533 | version "2.1.0" 2534 | resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-2.1.0.tgz#9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b" 2535 | dependencies: 2536 | array-differ "^1.0.0" 2537 | array-union "^1.0.1" 2538 | arrify "^1.0.0" 2539 | minimatch "^3.0.0" 2540 | 2541 | mute-stream@0.0.5: 2542 | version "0.0.5" 2543 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 2544 | 2545 | mute-stream@0.0.7: 2546 | version "0.0.7" 2547 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 2548 | 2549 | nan@^2.3.0: 2550 | version "2.6.2" 2551 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45" 2552 | 2553 | natural-compare@^1.4.0: 2554 | version "1.4.0" 2555 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2556 | 2557 | node-pre-gyp@^0.6.29: 2558 | version "0.6.34" 2559 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.34.tgz#94ad1c798a11d7fc67381b50d47f8cc18d9799f7" 2560 | dependencies: 2561 | mkdirp "^0.5.1" 2562 | nopt "^4.0.1" 2563 | npmlog "^4.0.2" 2564 | rc "^1.1.7" 2565 | request "^2.81.0" 2566 | rimraf "^2.6.1" 2567 | semver "^5.3.0" 2568 | tar "^2.2.1" 2569 | tar-pack "^3.4.0" 2570 | 2571 | node-status-codes@^1.0.0: 2572 | version "1.0.0" 2573 | resolved "https://registry.yarnpkg.com/node-status-codes/-/node-status-codes-1.0.0.tgz#5ae5541d024645d32a58fcddc9ceecea7ae3ac2f" 2574 | 2575 | nopt@^4.0.1: 2576 | version "4.0.1" 2577 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2578 | dependencies: 2579 | abbrev "1" 2580 | osenv "^0.1.4" 2581 | 2582 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: 2583 | version "2.3.8" 2584 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb" 2585 | dependencies: 2586 | hosted-git-info "^2.1.4" 2587 | is-builtin-module "^1.0.0" 2588 | semver "2 || 3 || 4 || 5" 2589 | validate-npm-package-license "^3.0.1" 2590 | 2591 | normalize-path@^2.0.1: 2592 | version "2.1.1" 2593 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2594 | dependencies: 2595 | remove-trailing-separator "^1.0.1" 2596 | 2597 | np@^2.12.0: 2598 | version "2.15.0" 2599 | resolved "https://registry.yarnpkg.com/np/-/np-2.15.0.tgz#6591811523f9a92f7ab1c47b3a9e57955a1c751c" 2600 | dependencies: 2601 | any-observable "^0.2.0" 2602 | chalk "^1.1.3" 2603 | del "^2.2.0" 2604 | execa "^0.6.3" 2605 | has-yarn "^1.0.0" 2606 | inquirer "^3.0.6" 2607 | listr "^0.11.0" 2608 | log-symbols "^1.0.2" 2609 | meow "^3.7.0" 2610 | read-pkg-up "^2.0.0" 2611 | rxjs "^5.0.0-beta.9" 2612 | semver "^5.2.0" 2613 | split "^1.0.0" 2614 | stream-to-observable "^0.2.0" 2615 | update-notifier "^2.1.0" 2616 | 2617 | npm-run-path@^1.0.0: 2618 | version "1.0.0" 2619 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-1.0.0.tgz#f5c32bf595fe81ae927daec52e82f8b000ac3c8f" 2620 | dependencies: 2621 | path-key "^1.0.0" 2622 | 2623 | npm-run-path@^2.0.0: 2624 | version "2.0.2" 2625 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2626 | dependencies: 2627 | path-key "^2.0.0" 2628 | 2629 | npmlog@^4.0.2: 2630 | version "4.1.0" 2631 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.0.tgz#dc59bee85f64f00ed424efb2af0783df25d1c0b5" 2632 | dependencies: 2633 | are-we-there-yet "~1.1.2" 2634 | console-control-strings "~1.1.0" 2635 | gauge "~2.7.3" 2636 | set-blocking "~2.0.0" 2637 | 2638 | number-is-nan@^1.0.0: 2639 | version "1.0.1" 2640 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2641 | 2642 | nyc@^10.1.2: 2643 | version "10.3.2" 2644 | resolved "https://registry.yarnpkg.com/nyc/-/nyc-10.3.2.tgz#f27f4d91f2a9db36c24f574ff5c6efff0233de46" 2645 | dependencies: 2646 | archy "^1.0.0" 2647 | arrify "^1.0.1" 2648 | caching-transform "^1.0.0" 2649 | convert-source-map "^1.3.0" 2650 | debug-log "^1.0.1" 2651 | default-require-extensions "^1.0.0" 2652 | find-cache-dir "^0.1.1" 2653 | find-up "^1.1.2" 2654 | foreground-child "^1.5.3" 2655 | glob "^7.0.6" 2656 | istanbul-lib-coverage "^1.1.0" 2657 | istanbul-lib-hook "^1.0.6" 2658 | istanbul-lib-instrument "^1.7.1" 2659 | istanbul-lib-report "^1.1.0" 2660 | istanbul-lib-source-maps "^1.2.0" 2661 | istanbul-reports "^1.1.0" 2662 | md5-hex "^1.2.0" 2663 | merge-source-map "^1.0.2" 2664 | micromatch "^2.3.11" 2665 | mkdirp "^0.5.0" 2666 | resolve-from "^2.0.0" 2667 | rimraf "^2.5.4" 2668 | signal-exit "^3.0.1" 2669 | spawn-wrap "1.2.4" 2670 | test-exclude "^4.1.0" 2671 | yargs "^7.1.0" 2672 | yargs-parser "^5.0.0" 2673 | 2674 | oauth-sign@~0.8.1: 2675 | version "0.8.2" 2676 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2677 | 2678 | object-assign@^4.0.1, object-assign@^4.1.0: 2679 | version "4.1.1" 2680 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2681 | 2682 | object.omit@^2.0.0: 2683 | version "2.0.1" 2684 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2685 | dependencies: 2686 | for-own "^0.1.4" 2687 | is-extendable "^0.1.1" 2688 | 2689 | observable-to-promise@^0.4.0: 2690 | version "0.4.0" 2691 | resolved "https://registry.yarnpkg.com/observable-to-promise/-/observable-to-promise-0.4.0.tgz#28afe71645308f2d41d71f47ad3fece1a377e52b" 2692 | dependencies: 2693 | is-observable "^0.2.0" 2694 | symbol-observable "^0.2.2" 2695 | 2696 | once@^1.3.0, once@^1.3.3: 2697 | version "1.4.0" 2698 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2699 | dependencies: 2700 | wrappy "1" 2701 | 2702 | onetime@^1.0.0: 2703 | version "1.1.0" 2704 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 2705 | 2706 | onetime@^2.0.0: 2707 | version "2.0.1" 2708 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2709 | dependencies: 2710 | mimic-fn "^1.0.0" 2711 | 2712 | optimist@^0.6.1: 2713 | version "0.6.1" 2714 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2715 | dependencies: 2716 | minimist "~0.0.1" 2717 | wordwrap "~0.0.2" 2718 | 2719 | option-chain@^0.1.0: 2720 | version "0.1.1" 2721 | resolved "https://registry.yarnpkg.com/option-chain/-/option-chain-0.1.1.tgz#e9b811e006f1c0f54802f28295bfc8970f8dcfbd" 2722 | dependencies: 2723 | object-assign "^4.0.1" 2724 | 2725 | optionator@^0.8.2: 2726 | version "0.8.2" 2727 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2728 | dependencies: 2729 | deep-is "~0.1.3" 2730 | fast-levenshtein "~2.0.4" 2731 | levn "~0.3.0" 2732 | prelude-ls "~1.1.2" 2733 | type-check "~0.3.2" 2734 | wordwrap "~1.0.0" 2735 | 2736 | ora@^0.2.3: 2737 | version "0.2.3" 2738 | resolved "https://registry.yarnpkg.com/ora/-/ora-0.2.3.tgz#37527d220adcd53c39b73571d754156d5db657a4" 2739 | dependencies: 2740 | chalk "^1.1.1" 2741 | cli-cursor "^1.0.2" 2742 | cli-spinners "^0.1.2" 2743 | object-assign "^4.0.1" 2744 | 2745 | os-homedir@^1.0.0, os-homedir@^1.0.1: 2746 | version "1.0.2" 2747 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2748 | 2749 | os-locale@^1.4.0: 2750 | version "1.4.0" 2751 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2752 | dependencies: 2753 | lcid "^1.0.0" 2754 | 2755 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.1: 2756 | version "1.0.2" 2757 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2758 | 2759 | osenv@^0.1.0, osenv@^0.1.4: 2760 | version "0.1.4" 2761 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2762 | dependencies: 2763 | os-homedir "^1.0.0" 2764 | os-tmpdir "^1.0.0" 2765 | 2766 | p-finally@^1.0.0: 2767 | version "1.0.0" 2768 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2769 | 2770 | p-limit@^1.1.0: 2771 | version "1.1.0" 2772 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 2773 | 2774 | p-locate@^2.0.0: 2775 | version "2.0.0" 2776 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2777 | dependencies: 2778 | p-limit "^1.1.0" 2779 | 2780 | package-hash@^1.2.0: 2781 | version "1.2.0" 2782 | resolved "https://registry.yarnpkg.com/package-hash/-/package-hash-1.2.0.tgz#003e56cd57b736a6ed6114cc2b81542672770e44" 2783 | dependencies: 2784 | md5-hex "^1.3.0" 2785 | 2786 | package-json@^2.0.0: 2787 | version "2.4.0" 2788 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-2.4.0.tgz#0d15bd67d1cbbddbb2ca222ff2edb86bcb31a8bb" 2789 | dependencies: 2790 | got "^5.0.0" 2791 | registry-auth-token "^3.0.1" 2792 | registry-url "^3.0.3" 2793 | semver "^5.1.0" 2794 | 2795 | package-json@^4.0.0: 2796 | version "4.0.1" 2797 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed" 2798 | dependencies: 2799 | got "^6.7.1" 2800 | registry-auth-token "^3.0.1" 2801 | registry-url "^3.0.3" 2802 | semver "^5.1.0" 2803 | 2804 | parse-glob@^3.0.4: 2805 | version "3.0.4" 2806 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2807 | dependencies: 2808 | glob-base "^0.3.0" 2809 | is-dotfile "^1.0.0" 2810 | is-extglob "^1.0.0" 2811 | is-glob "^2.0.0" 2812 | 2813 | parse-json@^2.1.0, parse-json@^2.2.0: 2814 | version "2.2.0" 2815 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2816 | dependencies: 2817 | error-ex "^1.2.0" 2818 | 2819 | parse-ms@^0.1.0: 2820 | version "0.1.2" 2821 | resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-0.1.2.tgz#dd3fa25ed6c2efc7bdde12ad9b46c163aa29224e" 2822 | 2823 | parse-ms@^1.0.0: 2824 | version "1.0.1" 2825 | resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-1.0.1.tgz#56346d4749d78f23430ca0c713850aef91aa361d" 2826 | 2827 | path-exists@^2.0.0: 2828 | version "2.1.0" 2829 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2830 | dependencies: 2831 | pinkie-promise "^2.0.0" 2832 | 2833 | path-exists@^3.0.0: 2834 | version "3.0.0" 2835 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2836 | 2837 | path-is-absolute@^1.0.0: 2838 | version "1.0.1" 2839 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2840 | 2841 | path-is-inside@^1.0.1: 2842 | version "1.0.2" 2843 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2844 | 2845 | path-key@^1.0.0: 2846 | version "1.0.0" 2847 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-1.0.0.tgz#5d53d578019646c0d68800db4e146e6bdc2ac7af" 2848 | 2849 | path-key@^2.0.0: 2850 | version "2.0.1" 2851 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2852 | 2853 | path-parse@^1.0.5: 2854 | version "1.0.5" 2855 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2856 | 2857 | path-type@^1.0.0: 2858 | version "1.1.0" 2859 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2860 | dependencies: 2861 | graceful-fs "^4.1.2" 2862 | pify "^2.0.0" 2863 | pinkie-promise "^2.0.0" 2864 | 2865 | path-type@^2.0.0: 2866 | version "2.0.0" 2867 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 2868 | dependencies: 2869 | pify "^2.0.0" 2870 | 2871 | performance-now@^0.2.0: 2872 | version "0.2.0" 2873 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2874 | 2875 | pify@^2.0.0, pify@^2.3.0: 2876 | version "2.3.0" 2877 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2878 | 2879 | pinkie-promise@^1.0.0: 2880 | version "1.0.0" 2881 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-1.0.0.tgz#d1da67f5482563bb7cf57f286ae2822ecfbf3670" 2882 | dependencies: 2883 | pinkie "^1.0.0" 2884 | 2885 | pinkie-promise@^2.0.0: 2886 | version "2.0.1" 2887 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2888 | dependencies: 2889 | pinkie "^2.0.0" 2890 | 2891 | pinkie@^1.0.0: 2892 | version "1.0.0" 2893 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-1.0.0.tgz#5a47f28ba1015d0201bda7bf0f358e47bec8c7e4" 2894 | 2895 | pinkie@^2.0.0: 2896 | version "2.0.4" 2897 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2898 | 2899 | pkg-conf@^2.0.0: 2900 | version "2.0.0" 2901 | resolved "https://registry.yarnpkg.com/pkg-conf/-/pkg-conf-2.0.0.tgz#071c87650403bccfb9c627f58751bfe47c067279" 2902 | dependencies: 2903 | find-up "^2.0.0" 2904 | load-json-file "^2.0.0" 2905 | 2906 | pkg-config@^1.0.1, pkg-config@^1.1.0: 2907 | version "1.1.1" 2908 | resolved "https://registry.yarnpkg.com/pkg-config/-/pkg-config-1.1.1.tgz#557ef22d73da3c8837107766c52eadabde298fe4" 2909 | dependencies: 2910 | debug-log "^1.0.0" 2911 | find-root "^1.0.0" 2912 | xtend "^4.0.1" 2913 | 2914 | pkg-dir@^1.0.0: 2915 | version "1.0.0" 2916 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 2917 | dependencies: 2918 | find-up "^1.0.0" 2919 | 2920 | plur@^1.0.0: 2921 | version "1.0.0" 2922 | resolved "https://registry.yarnpkg.com/plur/-/plur-1.0.0.tgz#db85c6814f5e5e5a3b49efc28d604fec62975156" 2923 | 2924 | plur@^2.0.0: 2925 | version "2.1.2" 2926 | resolved "https://registry.yarnpkg.com/plur/-/plur-2.1.2.tgz#7482452c1a0f508e3e344eaec312c91c29dc655a" 2927 | dependencies: 2928 | irregular-plurals "^1.0.0" 2929 | 2930 | pluralize@^1.2.1: 2931 | version "1.2.1" 2932 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" 2933 | 2934 | prelude-ls@~1.1.2: 2935 | version "1.1.2" 2936 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2937 | 2938 | prepend-http@^1.0.1: 2939 | version "1.0.4" 2940 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 2941 | 2942 | preserve@^0.2.0: 2943 | version "0.2.0" 2944 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2945 | 2946 | pretty-format@^18.1.0: 2947 | version "18.1.0" 2948 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-18.1.0.tgz#fb65a86f7a7f9194963eee91865c1bcf1039e284" 2949 | dependencies: 2950 | ansi-styles "^2.2.1" 2951 | 2952 | pretty-ms@^0.2.1: 2953 | version "0.2.2" 2954 | resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-0.2.2.tgz#da879a682ff33a37011046f13d627f67c73b84f6" 2955 | dependencies: 2956 | parse-ms "^0.1.0" 2957 | 2958 | pretty-ms@^2.0.0: 2959 | version "2.1.0" 2960 | resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-2.1.0.tgz#4257c256df3fb0b451d6affaab021884126981dc" 2961 | dependencies: 2962 | is-finite "^1.0.1" 2963 | parse-ms "^1.0.0" 2964 | plur "^1.0.0" 2965 | 2966 | private@^0.1.6: 2967 | version "0.1.7" 2968 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 2969 | 2970 | process-nextick-args@~1.0.6: 2971 | version "1.0.7" 2972 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2973 | 2974 | progress@^1.1.8: 2975 | version "1.1.8" 2976 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 2977 | 2978 | pseudomap@^1.0.1: 2979 | version "1.0.2" 2980 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2981 | 2982 | punycode@^1.4.1: 2983 | version "1.4.1" 2984 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2985 | 2986 | qs@~6.4.0: 2987 | version "6.4.0" 2988 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2989 | 2990 | randomatic@^1.1.3: 2991 | version "1.1.6" 2992 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 2993 | dependencies: 2994 | is-number "^2.0.2" 2995 | kind-of "^3.0.2" 2996 | 2997 | rc@^1.0.1, rc@^1.1.6, rc@^1.1.7: 2998 | version "1.2.1" 2999 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 3000 | dependencies: 3001 | deep-extend "~0.4.0" 3002 | ini "~1.3.0" 3003 | minimist "^1.2.0" 3004 | strip-json-comments "~2.0.1" 3005 | 3006 | read-all-stream@^3.0.0: 3007 | version "3.1.0" 3008 | resolved "https://registry.yarnpkg.com/read-all-stream/-/read-all-stream-3.1.0.tgz#35c3e177f2078ef789ee4bfafa4373074eaef4fa" 3009 | dependencies: 3010 | pinkie-promise "^2.0.0" 3011 | readable-stream "^2.0.0" 3012 | 3013 | read-pkg-up@^1.0.1: 3014 | version "1.0.1" 3015 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 3016 | dependencies: 3017 | find-up "^1.0.0" 3018 | read-pkg "^1.0.0" 3019 | 3020 | read-pkg-up@^2.0.0: 3021 | version "2.0.0" 3022 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 3023 | dependencies: 3024 | find-up "^2.0.0" 3025 | read-pkg "^2.0.0" 3026 | 3027 | read-pkg@^1.0.0: 3028 | version "1.1.0" 3029 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 3030 | dependencies: 3031 | load-json-file "^1.0.0" 3032 | normalize-package-data "^2.3.2" 3033 | path-type "^1.0.0" 3034 | 3035 | read-pkg@^2.0.0: 3036 | version "2.0.0" 3037 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 3038 | dependencies: 3039 | load-json-file "^2.0.0" 3040 | normalize-package-data "^2.3.2" 3041 | path-type "^2.0.0" 3042 | 3043 | readable-stream@^2.0.0, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.1.5, readable-stream@^2.2.2: 3044 | version "2.2.9" 3045 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.9.tgz#cf78ec6f4a6d1eb43d26488cac97f042e74b7fc8" 3046 | dependencies: 3047 | buffer-shims "~1.0.0" 3048 | core-util-is "~1.0.0" 3049 | inherits "~2.0.1" 3050 | isarray "~1.0.0" 3051 | process-nextick-args "~1.0.6" 3052 | string_decoder "~1.0.0" 3053 | util-deprecate "~1.0.1" 3054 | 3055 | readdirp@^2.0.0: 3056 | version "2.1.0" 3057 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 3058 | dependencies: 3059 | graceful-fs "^4.1.2" 3060 | minimatch "^3.0.2" 3061 | readable-stream "^2.0.2" 3062 | set-immediate-shim "^1.0.1" 3063 | 3064 | readline2@^1.0.1: 3065 | version "1.0.1" 3066 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 3067 | dependencies: 3068 | code-point-at "^1.0.0" 3069 | is-fullwidth-code-point "^1.0.0" 3070 | mute-stream "0.0.5" 3071 | 3072 | rechoir@^0.6.2: 3073 | version "0.6.2" 3074 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 3075 | dependencies: 3076 | resolve "^1.1.6" 3077 | 3078 | redent@^1.0.0: 3079 | version "1.0.0" 3080 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 3081 | dependencies: 3082 | indent-string "^2.1.0" 3083 | strip-indent "^1.0.1" 3084 | 3085 | regenerate@^1.2.1: 3086 | version "1.3.2" 3087 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 3088 | 3089 | regenerator-runtime@^0.10.0: 3090 | version "0.10.5" 3091 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 3092 | 3093 | regex-cache@^0.4.2: 3094 | version "0.4.3" 3095 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 3096 | dependencies: 3097 | is-equal-shallow "^0.1.3" 3098 | is-primitive "^2.0.0" 3099 | 3100 | regexpu-core@^2.0.0: 3101 | version "2.0.0" 3102 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 3103 | dependencies: 3104 | regenerate "^1.2.1" 3105 | regjsgen "^0.2.0" 3106 | regjsparser "^0.1.4" 3107 | 3108 | registry-auth-token@^3.0.1: 3109 | version "3.3.1" 3110 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.1.tgz#fb0d3289ee0d9ada2cbb52af5dfe66cb070d3006" 3111 | dependencies: 3112 | rc "^1.1.6" 3113 | safe-buffer "^5.0.1" 3114 | 3115 | registry-url@^3.0.3: 3116 | version "3.1.0" 3117 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 3118 | dependencies: 3119 | rc "^1.0.1" 3120 | 3121 | regjsgen@^0.2.0: 3122 | version "0.2.0" 3123 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 3124 | 3125 | regjsparser@^0.1.4: 3126 | version "0.1.5" 3127 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 3128 | dependencies: 3129 | jsesc "~0.5.0" 3130 | 3131 | remove-trailing-separator@^1.0.1: 3132 | version "1.0.1" 3133 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4" 3134 | 3135 | repeat-element@^1.1.2: 3136 | version "1.1.2" 3137 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 3138 | 3139 | repeat-string@^1.5.2: 3140 | version "1.6.1" 3141 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3142 | 3143 | repeating@^2.0.0: 3144 | version "2.0.1" 3145 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 3146 | dependencies: 3147 | is-finite "^1.0.0" 3148 | 3149 | request@^2.81.0: 3150 | version "2.81.0" 3151 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 3152 | dependencies: 3153 | aws-sign2 "~0.6.0" 3154 | aws4 "^1.2.1" 3155 | caseless "~0.12.0" 3156 | combined-stream "~1.0.5" 3157 | extend "~3.0.0" 3158 | forever-agent "~0.6.1" 3159 | form-data "~2.1.1" 3160 | har-validator "~4.2.1" 3161 | hawk "~3.1.3" 3162 | http-signature "~1.1.0" 3163 | is-typedarray "~1.0.0" 3164 | isstream "~0.1.2" 3165 | json-stringify-safe "~5.0.1" 3166 | mime-types "~2.1.7" 3167 | oauth-sign "~0.8.1" 3168 | performance-now "^0.2.0" 3169 | qs "~6.4.0" 3170 | safe-buffer "^5.0.1" 3171 | stringstream "~0.0.4" 3172 | tough-cookie "~2.3.0" 3173 | tunnel-agent "^0.6.0" 3174 | uuid "^3.0.0" 3175 | 3176 | require-directory@^2.1.1: 3177 | version "2.1.1" 3178 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3179 | 3180 | require-main-filename@^1.0.1: 3181 | version "1.0.1" 3182 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3183 | 3184 | require-precompiled@^0.1.0: 3185 | version "0.1.0" 3186 | resolved "https://registry.yarnpkg.com/require-precompiled/-/require-precompiled-0.1.0.tgz#5a1b52eb70ebed43eb982e974c85ab59571e56fa" 3187 | 3188 | require-uncached@^1.0.2: 3189 | version "1.0.3" 3190 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 3191 | dependencies: 3192 | caller-path "^0.1.0" 3193 | resolve-from "^1.0.0" 3194 | 3195 | resolve-cwd@^1.0.0: 3196 | version "1.0.0" 3197 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-1.0.0.tgz#4eaeea41ed040d1702457df64a42b2b07d246f9f" 3198 | dependencies: 3199 | resolve-from "^2.0.0" 3200 | 3201 | resolve-from@^1.0.0: 3202 | version "1.0.1" 3203 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 3204 | 3205 | resolve-from@^2.0.0: 3206 | version "2.0.0" 3207 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57" 3208 | 3209 | resolve@^1.1.6: 3210 | version "1.3.3" 3211 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.3.tgz#655907c3469a8680dc2de3a275a8fdd69691f0e5" 3212 | dependencies: 3213 | path-parse "^1.0.5" 3214 | 3215 | restore-cursor@^1.0.1: 3216 | version "1.0.1" 3217 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 3218 | dependencies: 3219 | exit-hook "^1.0.0" 3220 | onetime "^1.0.0" 3221 | 3222 | restore-cursor@^2.0.0: 3223 | version "2.0.0" 3224 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 3225 | dependencies: 3226 | onetime "^2.0.0" 3227 | signal-exit "^3.0.2" 3228 | 3229 | right-align@^0.1.1: 3230 | version "0.1.3" 3231 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3232 | dependencies: 3233 | align-text "^0.1.1" 3234 | 3235 | rimraf@2, rimraf@^2.2.8, rimraf@^2.3.3, rimraf@^2.5.1, rimraf@^2.5.4, rimraf@^2.6.1: 3236 | version "2.6.1" 3237 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 3238 | dependencies: 3239 | glob "^7.0.5" 3240 | 3241 | run-async@^0.1.0: 3242 | version "0.1.0" 3243 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 3244 | dependencies: 3245 | once "^1.3.0" 3246 | 3247 | run-async@^2.2.0: 3248 | version "2.3.0" 3249 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 3250 | dependencies: 3251 | is-promise "^2.1.0" 3252 | 3253 | run-parallel@^1.1.2: 3254 | version "1.1.6" 3255 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.1.6.tgz#29003c9a2163e01e2d2dfc90575f2c6c1d61a039" 3256 | 3257 | rx-lite@^3.1.2: 3258 | version "3.1.2" 3259 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 3260 | 3261 | rx@^4.1.0: 3262 | version "4.1.0" 3263 | resolved "https://registry.yarnpkg.com/rx/-/rx-4.1.0.tgz#a5f13ff79ef3b740fe30aa803fb09f98805d4782" 3264 | 3265 | rxjs@^5.0.0-beta.11, rxjs@^5.0.0-beta.9: 3266 | version "5.4.0" 3267 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.4.0.tgz#a7db14ab157f9d7aac6a56e655e7a3860d39bf26" 3268 | dependencies: 3269 | symbol-observable "^1.0.1" 3270 | 3271 | safe-buffer@^5.0.1: 3272 | version "5.0.1" 3273 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 3274 | 3275 | samsam@1.1.2, samsam@~1.1: 3276 | version "1.1.2" 3277 | resolved "https://registry.yarnpkg.com/samsam/-/samsam-1.1.2.tgz#bec11fdc83a9fda063401210e40176c3024d1567" 3278 | 3279 | semver-diff@^2.0.0: 3280 | version "2.1.0" 3281 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 3282 | dependencies: 3283 | semver "^5.0.3" 3284 | 3285 | "semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.2.0, semver@^5.3.0: 3286 | version "5.3.0" 3287 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 3288 | 3289 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3290 | version "2.0.0" 3291 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3292 | 3293 | set-immediate-shim@^1.0.1: 3294 | version "1.0.1" 3295 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3296 | 3297 | shebang-command@^1.2.0: 3298 | version "1.2.0" 3299 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 3300 | dependencies: 3301 | shebang-regex "^1.0.0" 3302 | 3303 | shebang-regex@^1.0.0: 3304 | version "1.0.0" 3305 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3306 | 3307 | shelljs@^0.7.5: 3308 | version "0.7.7" 3309 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.7.tgz#b2f5c77ef97148f4b4f6e22682e10bba8667cff1" 3310 | dependencies: 3311 | glob "^7.0.0" 3312 | interpret "^1.0.0" 3313 | rechoir "^0.6.2" 3314 | 3315 | signal-exit@^2.0.0: 3316 | version "2.1.2" 3317 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-2.1.2.tgz#375879b1f92ebc3b334480d038dc546a6d558564" 3318 | 3319 | signal-exit@^3.0.0, signal-exit@^3.0.1, signal-exit@^3.0.2: 3320 | version "3.0.2" 3321 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3322 | 3323 | sinon@^1.17.7: 3324 | version "1.17.7" 3325 | resolved "https://registry.yarnpkg.com/sinon/-/sinon-1.17.7.tgz#4542a4f49ba0c45c05eb2e9dd9d203e2b8efe0bf" 3326 | dependencies: 3327 | formatio "1.1.1" 3328 | lolex "1.3.2" 3329 | samsam "1.1.2" 3330 | util ">=0.10.3 <1" 3331 | 3332 | slash@^1.0.0: 3333 | version "1.0.0" 3334 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3335 | 3336 | slice-ansi@0.0.4: 3337 | version "0.0.4" 3338 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 3339 | 3340 | slide@^1.1.5: 3341 | version "1.1.6" 3342 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 3343 | 3344 | sntp@1.x.x: 3345 | version "1.0.9" 3346 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3347 | dependencies: 3348 | hoek "2.x.x" 3349 | 3350 | sort-keys@^1.1.1, sort-keys@^1.1.2: 3351 | version "1.1.2" 3352 | resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" 3353 | dependencies: 3354 | is-plain-obj "^1.0.0" 3355 | 3356 | source-map-support@^0.4.0, source-map-support@^0.4.2: 3357 | version "0.4.15" 3358 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1" 3359 | dependencies: 3360 | source-map "^0.5.6" 3361 | 3362 | source-map@^0.4.4: 3363 | version "0.4.4" 3364 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 3365 | dependencies: 3366 | amdefine ">=0.0.4" 3367 | 3368 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: 3369 | version "0.5.6" 3370 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 3371 | 3372 | spawn-wrap@1.2.4: 3373 | version "1.2.4" 3374 | resolved "https://registry.yarnpkg.com/spawn-wrap/-/spawn-wrap-1.2.4.tgz#920eb211a769c093eebfbd5b0e7a5d2e68ab2e40" 3375 | dependencies: 3376 | foreground-child "^1.3.3" 3377 | mkdirp "^0.5.0" 3378 | os-homedir "^1.0.1" 3379 | rimraf "^2.3.3" 3380 | signal-exit "^2.0.0" 3381 | which "^1.2.4" 3382 | 3383 | spdx-correct@~1.0.0: 3384 | version "1.0.2" 3385 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3386 | dependencies: 3387 | spdx-license-ids "^1.0.2" 3388 | 3389 | spdx-expression-parse@~1.0.0: 3390 | version "1.0.4" 3391 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3392 | 3393 | spdx-license-ids@^1.0.2: 3394 | version "1.2.2" 3395 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3396 | 3397 | split@^1.0.0: 3398 | version "1.0.0" 3399 | resolved "https://registry.yarnpkg.com/split/-/split-1.0.0.tgz#c4395ce683abcd254bc28fe1dabb6e5c27dcffae" 3400 | dependencies: 3401 | through "2" 3402 | 3403 | sprintf-js@~1.0.2: 3404 | version "1.0.3" 3405 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3406 | 3407 | sshpk@^1.7.0: 3408 | version "1.13.0" 3409 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.0.tgz#ff2a3e4fd04497555fed97b39a0fd82fafb3a33c" 3410 | dependencies: 3411 | asn1 "~0.2.3" 3412 | assert-plus "^1.0.0" 3413 | dashdash "^1.12.0" 3414 | getpass "^0.1.1" 3415 | optionalDependencies: 3416 | bcrypt-pbkdf "^1.0.0" 3417 | ecc-jsbn "~0.1.1" 3418 | jodid25519 "^1.0.0" 3419 | jsbn "~0.1.0" 3420 | tweetnacl "~0.14.0" 3421 | 3422 | stack-utils@^1.0.0: 3423 | version "1.0.1" 3424 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.1.tgz#d4f33ab54e8e38778b0ca5cfd3b3afb12db68620" 3425 | 3426 | standard-engine@~5.2.0: 3427 | version "5.2.0" 3428 | resolved "https://registry.yarnpkg.com/standard-engine/-/standard-engine-5.2.0.tgz#400660ae5acce8afd4db60ff2214a9190ad790a3" 3429 | dependencies: 3430 | deglob "^2.0.0" 3431 | find-root "^1.0.0" 3432 | get-stdin "^5.0.1" 3433 | home-or-tmp "^2.0.0" 3434 | minimist "^1.1.0" 3435 | pkg-config "^1.0.1" 3436 | 3437 | standard@^8.6.0: 3438 | version "8.6.0" 3439 | resolved "https://registry.yarnpkg.com/standard/-/standard-8.6.0.tgz#635132be7bfb567c2921005f30f9e350e4752aad" 3440 | dependencies: 3441 | eslint "~3.10.2" 3442 | eslint-config-standard "6.2.1" 3443 | eslint-config-standard-jsx "3.2.0" 3444 | eslint-plugin-promise "~3.4.0" 3445 | eslint-plugin-react "~6.7.1" 3446 | eslint-plugin-standard "~2.0.1" 3447 | standard-engine "~5.2.0" 3448 | 3449 | stream-to-observable@^0.1.0: 3450 | version "0.1.0" 3451 | resolved "https://registry.yarnpkg.com/stream-to-observable/-/stream-to-observable-0.1.0.tgz#45bf1d9f2d7dc09bed81f1c307c430e68b84cffe" 3452 | 3453 | stream-to-observable@^0.2.0: 3454 | version "0.2.0" 3455 | resolved "https://registry.yarnpkg.com/stream-to-observable/-/stream-to-observable-0.2.0.tgz#59d6ea393d87c2c0ddac10aa0d561bc6ba6f0e10" 3456 | dependencies: 3457 | any-observable "^0.2.0" 3458 | 3459 | string-width@^1.0.1, string-width@^1.0.2: 3460 | version "1.0.2" 3461 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3462 | dependencies: 3463 | code-point-at "^1.0.0" 3464 | is-fullwidth-code-point "^1.0.0" 3465 | strip-ansi "^3.0.0" 3466 | 3467 | string-width@^2.0.0: 3468 | version "2.0.0" 3469 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 3470 | dependencies: 3471 | is-fullwidth-code-point "^2.0.0" 3472 | strip-ansi "^3.0.0" 3473 | 3474 | string_decoder@~1.0.0: 3475 | version "1.0.1" 3476 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.1.tgz#62e200f039955a6810d8df0a33ffc0f013662d98" 3477 | dependencies: 3478 | safe-buffer "^5.0.1" 3479 | 3480 | stringstream@~0.0.4: 3481 | version "0.0.5" 3482 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3483 | 3484 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3485 | version "3.0.1" 3486 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3487 | dependencies: 3488 | ansi-regex "^2.0.0" 3489 | 3490 | strip-ansi@~0.1.0: 3491 | version "0.1.1" 3492 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-0.1.1.tgz#39e8a98d044d150660abe4a6808acf70bb7bc991" 3493 | 3494 | strip-bom-buf@^1.0.0: 3495 | version "1.0.0" 3496 | resolved "https://registry.yarnpkg.com/strip-bom-buf/-/strip-bom-buf-1.0.0.tgz#1cb45aaf57530f4caf86c7f75179d2c9a51dd572" 3497 | dependencies: 3498 | is-utf8 "^0.2.1" 3499 | 3500 | strip-bom@^2.0.0: 3501 | version "2.0.0" 3502 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3503 | dependencies: 3504 | is-utf8 "^0.2.0" 3505 | 3506 | strip-bom@^3.0.0: 3507 | version "3.0.0" 3508 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3509 | 3510 | strip-eof@^1.0.0: 3511 | version "1.0.0" 3512 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3513 | 3514 | strip-indent@^1.0.1: 3515 | version "1.0.1" 3516 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 3517 | dependencies: 3518 | get-stdin "^4.0.1" 3519 | 3520 | strip-json-comments@~1.0.1: 3521 | version "1.0.4" 3522 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91" 3523 | 3524 | strip-json-comments@~2.0.1: 3525 | version "2.0.1" 3526 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3527 | 3528 | supports-color@^2.0.0: 3529 | version "2.0.0" 3530 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3531 | 3532 | supports-color@^3.1.2: 3533 | version "3.2.3" 3534 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3535 | dependencies: 3536 | has-flag "^1.0.0" 3537 | 3538 | symbol-observable@^0.2.2: 3539 | version "0.2.4" 3540 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-0.2.4.tgz#95a83db26186d6af7e7a18dbd9760a2f86d08f40" 3541 | 3542 | symbol-observable@^1.0.1: 3543 | version "1.0.4" 3544 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d" 3545 | 3546 | table@^3.7.8: 3547 | version "3.8.3" 3548 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" 3549 | dependencies: 3550 | ajv "^4.7.0" 3551 | ajv-keywords "^1.0.0" 3552 | chalk "^1.1.1" 3553 | lodash "^4.0.0" 3554 | slice-ansi "0.0.4" 3555 | string-width "^2.0.0" 3556 | 3557 | tar-pack@^3.4.0: 3558 | version "3.4.0" 3559 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 3560 | dependencies: 3561 | debug "^2.2.0" 3562 | fstream "^1.0.10" 3563 | fstream-ignore "^1.0.5" 3564 | once "^1.3.3" 3565 | readable-stream "^2.1.4" 3566 | rimraf "^2.5.1" 3567 | tar "^2.2.1" 3568 | uid-number "^0.0.6" 3569 | 3570 | tar@^2.2.1: 3571 | version "2.2.1" 3572 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3573 | dependencies: 3574 | block-stream "*" 3575 | fstream "^1.0.2" 3576 | inherits "2" 3577 | 3578 | term-size@^0.1.0: 3579 | version "0.1.1" 3580 | resolved "https://registry.yarnpkg.com/term-size/-/term-size-0.1.1.tgz#87360b96396cab5760963714cda0d0cbeecad9ca" 3581 | dependencies: 3582 | execa "^0.4.0" 3583 | 3584 | test-exclude@^4.1.0: 3585 | version "4.1.0" 3586 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.0.tgz#04ca70b7390dd38c98d4a003a173806ca7991c91" 3587 | dependencies: 3588 | arrify "^1.0.1" 3589 | micromatch "^2.3.11" 3590 | object-assign "^4.1.0" 3591 | read-pkg-up "^1.0.1" 3592 | require-main-filename "^1.0.1" 3593 | 3594 | text-table@^0.2.0, text-table@~0.2.0: 3595 | version "0.2.0" 3596 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3597 | 3598 | through2@^2.0.0: 3599 | version "2.0.3" 3600 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 3601 | dependencies: 3602 | readable-stream "^2.1.5" 3603 | xtend "~4.0.1" 3604 | 3605 | through@2, through@^2.3.6: 3606 | version "2.3.8" 3607 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3608 | 3609 | time-require@^0.1.2: 3610 | version "0.1.2" 3611 | resolved "https://registry.yarnpkg.com/time-require/-/time-require-0.1.2.tgz#f9e12cb370fc2605e11404582ba54ef5ca2b2d98" 3612 | dependencies: 3613 | chalk "^0.4.0" 3614 | date-time "^0.1.1" 3615 | pretty-ms "^0.2.1" 3616 | text-table "^0.2.0" 3617 | 3618 | timed-out@^3.0.0: 3619 | version "3.1.3" 3620 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-3.1.3.tgz#95860bfcc5c76c277f8f8326fd0f5b2e20eba217" 3621 | 3622 | timed-out@^4.0.0: 3623 | version "4.0.1" 3624 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" 3625 | 3626 | tmp@^0.0.31: 3627 | version "0.0.31" 3628 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.31.tgz#8f38ab9438e17315e5dbd8b3657e8bfb277ae4a7" 3629 | dependencies: 3630 | os-tmpdir "~1.0.1" 3631 | 3632 | to-fast-properties@^1.0.1: 3633 | version "1.0.3" 3634 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3635 | 3636 | tough-cookie@~2.3.0: 3637 | version "2.3.2" 3638 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 3639 | dependencies: 3640 | punycode "^1.4.1" 3641 | 3642 | trim-newlines@^1.0.0: 3643 | version "1.0.0" 3644 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 3645 | 3646 | trim-right@^1.0.1: 3647 | version "1.0.1" 3648 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3649 | 3650 | tryit@^1.0.1: 3651 | version "1.0.3" 3652 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 3653 | 3654 | tunnel-agent@^0.6.0: 3655 | version "0.6.0" 3656 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3657 | dependencies: 3658 | safe-buffer "^5.0.1" 3659 | 3660 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3661 | version "0.14.5" 3662 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3663 | 3664 | type-check@~0.3.2: 3665 | version "0.3.2" 3666 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3667 | dependencies: 3668 | prelude-ls "~1.1.2" 3669 | 3670 | typedarray@^0.0.6: 3671 | version "0.0.6" 3672 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3673 | 3674 | uglify-js@^2.6: 3675 | version "2.8.27" 3676 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.27.tgz#47787f912b0f242e5b984343be8e35e95f694c9c" 3677 | dependencies: 3678 | source-map "~0.5.1" 3679 | yargs "~3.10.0" 3680 | optionalDependencies: 3681 | uglify-to-browserify "~1.0.0" 3682 | 3683 | uglify-to-browserify@~1.0.0: 3684 | version "1.0.2" 3685 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3686 | 3687 | uid-number@^0.0.6: 3688 | version "0.0.6" 3689 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3690 | 3691 | uid2@0.0.3: 3692 | version "0.0.3" 3693 | resolved "https://registry.yarnpkg.com/uid2/-/uid2-0.0.3.tgz#483126e11774df2f71b8b639dcd799c376162b82" 3694 | 3695 | uniq@^1.0.1: 3696 | version "1.0.1" 3697 | resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" 3698 | 3699 | unique-string@^1.0.0: 3700 | version "1.0.0" 3701 | resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" 3702 | dependencies: 3703 | crypto-random-string "^1.0.0" 3704 | 3705 | unique-temp-dir@^1.0.0: 3706 | version "1.0.0" 3707 | resolved "https://registry.yarnpkg.com/unique-temp-dir/-/unique-temp-dir-1.0.0.tgz#6dce95b2681ca003eebfb304a415f9cbabcc5385" 3708 | dependencies: 3709 | mkdirp "^0.5.1" 3710 | os-tmpdir "^1.0.1" 3711 | uid2 "0.0.3" 3712 | 3713 | unzip-response@^1.0.2: 3714 | version "1.0.2" 3715 | resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-1.0.2.tgz#b984f0877fc0a89c2c773cc1ef7b5b232b5b06fe" 3716 | 3717 | unzip-response@^2.0.1: 3718 | version "2.0.1" 3719 | resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97" 3720 | 3721 | update-notifier@^1.0.0: 3722 | version "1.0.3" 3723 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-1.0.3.tgz#8f92c515482bd6831b7c93013e70f87552c7cf5a" 3724 | dependencies: 3725 | boxen "^0.6.0" 3726 | chalk "^1.0.0" 3727 | configstore "^2.0.0" 3728 | is-npm "^1.0.0" 3729 | latest-version "^2.0.0" 3730 | lazy-req "^1.1.0" 3731 | semver-diff "^2.0.0" 3732 | xdg-basedir "^2.0.0" 3733 | 3734 | update-notifier@^2.1.0: 3735 | version "2.1.0" 3736 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.1.0.tgz#ec0c1e53536b76647a24b77cb83966d9315123d9" 3737 | dependencies: 3738 | boxen "^1.0.0" 3739 | chalk "^1.0.0" 3740 | configstore "^3.0.0" 3741 | is-npm "^1.0.0" 3742 | latest-version "^3.0.0" 3743 | lazy-req "^2.0.0" 3744 | semver-diff "^2.0.0" 3745 | xdg-basedir "^3.0.0" 3746 | 3747 | url-parse-lax@^1.0.0: 3748 | version "1.0.0" 3749 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" 3750 | dependencies: 3751 | prepend-http "^1.0.1" 3752 | 3753 | user-home@^2.0.0: 3754 | version "2.0.0" 3755 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 3756 | dependencies: 3757 | os-homedir "^1.0.0" 3758 | 3759 | util-deprecate@~1.0.1: 3760 | version "1.0.2" 3761 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3762 | 3763 | "util@>=0.10.3 <1": 3764 | version "0.10.3" 3765 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 3766 | dependencies: 3767 | inherits "2.0.1" 3768 | 3769 | uuid@^2.0.1: 3770 | version "2.0.3" 3771 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" 3772 | 3773 | uuid@^3.0.0: 3774 | version "3.0.1" 3775 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 3776 | 3777 | validate-npm-package-license@^3.0.1: 3778 | version "3.0.1" 3779 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3780 | dependencies: 3781 | spdx-correct "~1.0.0" 3782 | spdx-expression-parse "~1.0.0" 3783 | 3784 | verror@1.3.6: 3785 | version "1.3.6" 3786 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 3787 | dependencies: 3788 | extsprintf "1.0.2" 3789 | 3790 | which-module@^1.0.0: 3791 | version "1.0.0" 3792 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 3793 | 3794 | which@^1.2.4, which@^1.2.8, which@^1.2.9: 3795 | version "1.2.14" 3796 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 3797 | dependencies: 3798 | isexe "^2.0.0" 3799 | 3800 | wide-align@^1.1.0: 3801 | version "1.1.2" 3802 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 3803 | dependencies: 3804 | string-width "^1.0.2" 3805 | 3806 | widest-line@^1.0.0: 3807 | version "1.0.0" 3808 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-1.0.0.tgz#0c09c85c2a94683d0d7eaf8ee097d564bf0e105c" 3809 | dependencies: 3810 | string-width "^1.0.1" 3811 | 3812 | window-size@0.1.0: 3813 | version "0.1.0" 3814 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3815 | 3816 | wordwrap@0.0.2: 3817 | version "0.0.2" 3818 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3819 | 3820 | wordwrap@~0.0.2: 3821 | version "0.0.3" 3822 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3823 | 3824 | wordwrap@~1.0.0: 3825 | version "1.0.0" 3826 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3827 | 3828 | wrap-ansi@^2.0.0: 3829 | version "2.1.0" 3830 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3831 | dependencies: 3832 | string-width "^1.0.1" 3833 | strip-ansi "^3.0.1" 3834 | 3835 | wrappy@1: 3836 | version "1.0.2" 3837 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3838 | 3839 | write-file-atomic@^1.1.2, write-file-atomic@^1.1.4: 3840 | version "1.3.4" 3841 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.4.tgz#f807a4f0b1d9e913ae7a48112e6cc3af1991b45f" 3842 | dependencies: 3843 | graceful-fs "^4.1.11" 3844 | imurmurhash "^0.1.4" 3845 | slide "^1.1.5" 3846 | 3847 | write-file-atomic@^2.0.0: 3848 | version "2.1.0" 3849 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.1.0.tgz#1769f4b551eedce419f0505deae2e26763542d37" 3850 | dependencies: 3851 | graceful-fs "^4.1.11" 3852 | imurmurhash "^0.1.4" 3853 | slide "^1.1.5" 3854 | 3855 | write-json-file@^2.0.0: 3856 | version "2.1.0" 3857 | resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-2.1.0.tgz#ba1cf3ac7ee89db26c3d528986e48421389046b7" 3858 | dependencies: 3859 | graceful-fs "^4.1.2" 3860 | make-dir "^1.0.0" 3861 | pify "^2.0.0" 3862 | sort-keys "^1.1.1" 3863 | write-file-atomic "^2.0.0" 3864 | 3865 | write-pkg@^2.0.0: 3866 | version "2.1.0" 3867 | resolved "https://registry.yarnpkg.com/write-pkg/-/write-pkg-2.1.0.tgz#353aa44c39c48c21440f5c08ce6abd46141c9c08" 3868 | dependencies: 3869 | sort-keys "^1.1.2" 3870 | write-json-file "^2.0.0" 3871 | 3872 | write@^0.2.1: 3873 | version "0.2.1" 3874 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 3875 | dependencies: 3876 | mkdirp "^0.5.1" 3877 | 3878 | xdg-basedir@^2.0.0: 3879 | version "2.0.0" 3880 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-2.0.0.tgz#edbc903cc385fc04523d966a335504b5504d1bd2" 3881 | dependencies: 3882 | os-homedir "^1.0.0" 3883 | 3884 | xdg-basedir@^3.0.0: 3885 | version "3.0.0" 3886 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" 3887 | 3888 | xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.1: 3889 | version "4.0.1" 3890 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3891 | 3892 | y18n@^3.2.1: 3893 | version "3.2.1" 3894 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3895 | 3896 | yallist@^2.0.0: 3897 | version "2.1.2" 3898 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3899 | 3900 | yargs-parser@^5.0.0: 3901 | version "5.0.0" 3902 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" 3903 | dependencies: 3904 | camelcase "^3.0.0" 3905 | 3906 | yargs@^7.1.0: 3907 | version "7.1.0" 3908 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" 3909 | dependencies: 3910 | camelcase "^3.0.0" 3911 | cliui "^3.2.0" 3912 | decamelize "^1.1.1" 3913 | get-caller-file "^1.0.1" 3914 | os-locale "^1.4.0" 3915 | read-pkg-up "^1.0.1" 3916 | require-directory "^2.1.1" 3917 | require-main-filename "^1.0.1" 3918 | set-blocking "^2.0.0" 3919 | string-width "^1.0.2" 3920 | which-module "^1.0.0" 3921 | y18n "^3.2.1" 3922 | yargs-parser "^5.0.0" 3923 | 3924 | yargs@~3.10.0: 3925 | version "3.10.0" 3926 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3927 | dependencies: 3928 | camelcase "^1.0.2" 3929 | cliui "^2.1.0" 3930 | decamelize "^1.0.0" 3931 | window-size "0.1.0" 3932 | --------------------------------------------------------------------------------