├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── example ├── multi │ ├── index.html │ ├── package.json │ ├── server.js │ ├── src │ │ ├── App.vue │ │ ├── Chat.vue │ │ ├── index.d.ts │ │ ├── main.ts │ │ └── store │ │ │ ├── Chat1.ts │ │ │ ├── Chat2.ts │ │ │ └── index.ts │ ├── tsconfig.json │ ├── webpack.config.js │ └── yarn.lock └── simple │ ├── .gitignore │ ├── index.html │ ├── package.json │ ├── server.js │ ├── src │ ├── App.vue │ ├── index.d.ts │ ├── main.ts │ └── store.ts │ ├── tsconfig.json │ ├── webpack.config.js │ └── yarn.lock ├── package.json ├── src └── index.ts ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | indent_style = space 6 | indent_size = 2 7 | end_of_line = lf 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2018 joe-re 2 | 3 | MIT License 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining 6 | a copy of this software and associated documentation files (the 7 | "Software"), to deal in the Software without restriction, including 8 | without limitation the rights to use, copy, modify, merge, publish, 9 | distribute, sublicense, and/or sell copies of the Software, and to 10 | permit persons to whom the Software is furnished to do so, subject to 11 | the following conditions: 12 | 13 | The above copyright notice and this permission notice shall be 14 | included in all copies or substantial portions of the Software. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 17 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 18 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 19 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 20 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 21 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 22 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # vuex-socketio-plugin 2 | 3 | Vuex plugin to integrate socket.io client 4 | 5 | ## Install 6 | 7 | ``` 8 | npm install vuex-socketio-plugin --save 9 | ``` 10 | 11 | ## Simple Example 12 | 13 | store.ts 14 | 15 | ```js 16 | import Vuex, { Store } from 'vuex' 17 | import Vue from 'vue' 18 | import { createSocketioPlugin } from 'vuex-socketio-plugin' 19 | import * as io from 'socket.io-client' 20 | 21 | Vue.use(Vuex) 22 | 23 | let _client: (typeof io.Socket) | null = null; 24 | export type State = { messages: string[] } 25 | const store = new Vuex.Store({ 26 | plugins: [createSocketioPlugin('http://localhost:3000')], 27 | state: { 28 | messages: [] 29 | }, 30 | mutations: { 31 | SOCKET_CONNECT(state, { client }) { 32 | console.log('connected') 33 | _client = client; 34 | }, 35 | SOCKET_CHAT_MESSAGE(state, { data }) { 36 | state.messages = state.messages.concat([data[0]]) 37 | } 38 | }, 39 | actions: { 40 | postMessage(context, payload: { message: string }) { 41 | if (!_client) { 42 | throw new Error("don't have connection") 43 | } 44 | _client.emit('CHAT_MESSAGE', payload.message) 45 | } 46 | } 47 | }) 48 | 49 | export default store 50 | ``` 51 | 52 | ## Usage 53 | 54 | ### createSocketioPlugin 55 | 56 | Creates a new instance of the plugin. You can give an URL string or custom socket.io-client instance. 57 | 58 | ``` 59 | createSocketioPlugin('http://localhost:3000') // apply default as socket-io(auto-connect) 60 | createSocketioPlugin(io('http://localhost:3000', { autoConnect: false }) // if you want to customize you can give any socket.io instance 61 | ``` 62 | 63 | If you want to use multi connection, you can give an array of it. 64 | 65 | ``` 66 | createSocketioPlugin([ 67 | 'http://localhost:3000/function1', 68 | 'http://localhost:3000/function2', 69 | 'http://localhost:3000/function3' 70 | ]) 71 | ``` 72 | 73 | Prefix are set automatically to each Mutation and Action.(See [Mutation And Action](https://github.com/joe-re/vuex-socketio-plugin#mutation-and-action)) 74 | If you want to change prefix name, you can give it as `actionPrefix` and `mutationPrefix` options. 75 | 76 | ``` 77 | createSocketioPlugin([ 78 | 'http://localhost:3000/function1', 79 | 'http://localhost:3000/function2', 80 | 'http://localhost:3000/function3' 81 | ], { 82 | actionPrefix: 'socket/soc_', 83 | mutationPrefix: 'socket/SOC_' 84 | }) 85 | ``` 86 | 87 | ### Mutation and Action 88 | 89 | When it receives any SocketIO events, vuex-socketio-plugin triggers Mutation and Action. 90 | `SOCKET_` prefix is added on MutationName, prefix `socket_` is added on ActionName . 91 | (MutationName and ActionName consists from prefix + EventName.) 92 | 93 | ```js 94 | mutations: { 95 | SOCKET_CONNECT(state, payload) { 96 | console.log('connected on mutation') 97 | }, 98 | }, 99 | actions: { 100 | socket_connect(context, payload) { 101 | console.log('connected on action') 102 | } 103 | } 104 | ``` 105 | 106 | > Note: In case of mutation, default socket.io events are UpperCase. Pleae ref [socket.io docs](https://socket.io/docs/) about type of default events. 107 | 108 | Both of mutation and action payload includes `client` and `data` parameters. 109 | `client` is socket.io instance. You can emit any event via this. 110 | `data` is received message. It is always array type. 111 | 112 | 113 | ### Socket.io Namespaces and Vuex Namespaced Modules 114 | 115 | [Socket.io namespaces](https://socket.io/docs/rooms-and-namespaces/) is mapped Vuex namespaced Modules. 116 | 117 | If you use socket.io namespaces, you can receive which one of below types. 118 | 119 | ```js 120 | { 121 | plugins: [ 122 | createSocketioPlugin('http://localhost:3000/bar') 123 | ], 124 | mutations: { 125 | SOCKET_CONNECT: { ... } // default 126 | SOCKET_bar_CONNECT: { ... } // prefix + namespace + event name 127 | }, 128 | modules: { 129 | bar: { 130 | SOCKET_CONNECT: { ... } // namespaced module + prefix + event name 131 | } 132 | } 133 | } 134 | ``` 135 | 136 | Because this is a convention you don't have to set any configtation. It is triggered to be found mutation and action at first. 137 | 138 | ### getClients 139 | 140 | If you want to get a socket.io client, you can use `getClients` . 141 | 142 | Example 143 | ```js 144 | import { getClients } from 'vuex-socketio-plugin' 145 | getClients().forEach(v => v.connect()) 146 | ``` 147 | 148 | ### Example 149 | 150 | [example](./example) 151 | -------------------------------------------------------------------------------- /example/multi/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Socket.IO chat: multi channel 5 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /example/multi/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "example_multi", 3 | "version": "1.0.0", 4 | "main": "index.js", 5 | "license": "MIT", 6 | "scripts": { 7 | "build": "webpack", 8 | "start": "npm run build && node server.js" 9 | }, 10 | "dependencies": { 11 | "express": "^4.16.3", 12 | "socketio": "^1.0.0", 13 | "vue": "^2.5.16", 14 | "vuex": "^3.0.1" 15 | }, 16 | "devDependencies": { 17 | "@types/express": "^4.11.1", 18 | "@types/socket.io": "^1.4.33", 19 | "css-loader": "^0.28.11", 20 | "ts-loader": "^3.2.0", 21 | "typescript": "^2.8.3", 22 | "vue-loader": "^13.6.2", 23 | "vue-style-loader": "^3.0.3", 24 | "vue-template-compiler": "^2.5.16", 25 | "webpack": "^3.10.0", 26 | "webpack-cli": "^2.1.3" 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /example/multi/server.js: -------------------------------------------------------------------------------- 1 | var app = require('express')(); 2 | var http = require('http').Server(app); 3 | var io = require('socket.io')(http); 4 | var port = process.env.PORT || 3000; 5 | 6 | app.get('/', function(req, res){ 7 | res.sendFile(__dirname + '/index.html'); 8 | }); 9 | 10 | app.get('/dist/app.js', function(req, res){ 11 | res.sendFile(__dirname + '/dist/app.js'); 12 | }); 13 | 14 | const chat1 = io.of('/chat1') 15 | const chat2 = io.of('/chat2') 16 | 17 | chat1.on('connection', function(socket){ 18 | socket.on('CHAT_MESSAGE', function(msg){ 19 | chat1.emit('CHAT_MESSAGE', msg); 20 | }); 21 | }); 22 | 23 | chat2.on('connection', function(socket){ 24 | socket.on('CHAT_MESSAGE', function(msg){ 25 | chat2.emit('CHAT_MESSAGE', msg); 26 | }); 27 | }); 28 | 29 | http.listen(port, function(){ 30 | console.log('listening on *:' + port); 31 | }); 32 | -------------------------------------------------------------------------------- /example/multi/src/App.vue: -------------------------------------------------------------------------------- 1 | 13 | 14 | 34 | 42 | -------------------------------------------------------------------------------- /example/multi/src/Chat.vue: -------------------------------------------------------------------------------- 1 | 12 | 13 | 28 | 29 | 39 | -------------------------------------------------------------------------------- /example/multi/src/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module '*.vue' { 2 | import Vue from 'vue' 3 | export default Vue 4 | } 5 | 6 | declare module '*.vue.ts' { 7 | import Vue from 'vue' 8 | export default Vue 9 | } 10 | -------------------------------------------------------------------------------- /example/multi/src/main.ts: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import store from './store' 3 | new Vue({ 4 | el: '#app', 5 | store, 6 | render: h => h(require('./App').default) 7 | }) 8 | -------------------------------------------------------------------------------- /example/multi/src/store/Chat1.ts: -------------------------------------------------------------------------------- 1 | import { Module } from 'vuex' 2 | import * as io from 'socket.io-client' 3 | import { RootState } from './index' 4 | 5 | export type State = { messages: string[] } 6 | 7 | let _client: (typeof io.Socket) | null = null; 8 | const chat1: Module = { 9 | namespaced: true, 10 | state: { messages: [] }, 11 | mutations: { 12 | SOCKET_CONNECT(state, { client }) { 13 | console.log('chat1/connected') 14 | console.log(client) 15 | _client = client 16 | }, 17 | SOCKET_CHAT_MESSAGE(state, { data }) { 18 | state.messages = state.messages.concat([data[0]]) 19 | } 20 | }, 21 | actions: { 22 | postMessage(context, payload: { message: string }) { 23 | if (!_client) { 24 | throw new Error("don't have connection") 25 | } 26 | console.log(_client) 27 | _client.emit('CHAT_MESSAGE', payload.message) 28 | } 29 | } 30 | } 31 | 32 | export default chat1; -------------------------------------------------------------------------------- /example/multi/src/store/Chat2.ts: -------------------------------------------------------------------------------- 1 | import { Module } from 'vuex' 2 | import * as io from 'socket.io-client' 3 | import { RootState } from './index' 4 | 5 | export type State = { messages: string[] } 6 | 7 | let _client: (typeof io.Socket) | null = null; 8 | const chat2: Module = { 9 | namespaced: true, 10 | state: { messages: [] }, 11 | mutations: { 12 | SOCKET_CONNECT(state, { client }) { 13 | console.log('chat2/connected') 14 | console.log(client) 15 | _client = client 16 | }, 17 | SOCKET_CHAT_MESSAGE(state, { data }) { 18 | state.messages = state.messages.concat([data[0]]) 19 | } 20 | }, 21 | actions: { 22 | postMessage(context, payload: { message: string }) { 23 | if (!_client) { 24 | throw new Error("don't have connection") 25 | } 26 | _client.emit('CHAT_MESSAGE', payload.message) 27 | } 28 | } 29 | } 30 | 31 | export default chat2; -------------------------------------------------------------------------------- /example/multi/src/store/index.ts: -------------------------------------------------------------------------------- 1 | import Vuex, { Store, Module } from 'vuex' 2 | import Vue from 'vue' 3 | import { createSocketioPlugin } from '../../../../src/index' 4 | import chat1, { State as Chat1State } from './Chat1' 5 | import chat2, { State as Chat2State } from './Chat2' 6 | import * as io from 'socket.io-client' 7 | 8 | Vue.use(Vuex) 9 | 10 | export type RootState = { chat1: Chat1State, chat2: Chat2State } 11 | 12 | const store = new Vuex.Store({ 13 | plugins: [createSocketioPlugin(['http://localhost:3000/chat1', 'http://localhost:3000/chat2'])], 14 | modules: { chat1, chat2 }, 15 | }) 16 | 17 | export default store 18 | -------------------------------------------------------------------------------- /example/multi/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "outDir": "./dist", 4 | "strict": true, 5 | "module": "es2015", 6 | "moduleResolution": "node", 7 | "target": "es5", 8 | "lib": ["dom", "es2016"] 9 | }, 10 | "include": [ 11 | "./src/**/*", 12 | "../../src/**/*" 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /example/multi/webpack.config.js: -------------------------------------------------------------------------------- 1 | const path = require('path') 2 | 3 | module.exports = { 4 | entry: { 5 | app: './src/main.ts' 6 | }, 7 | output: { 8 | path: path.resolve(__dirname, 'dist'), 9 | filename: `[name].js`, 10 | }, 11 | resolve: { 12 | extensions: ['.ts', '.vue', '.js'], 13 | modules: [ 14 | path.join(__dirname, 'src'), 15 | 'node_modules' 16 | ] 17 | }, 18 | module: { 19 | rules: [ 20 | { 21 | test: /\.ts$/, 22 | exclude: /node_modules/, 23 | loader: 'ts-loader', 24 | options: { 25 | appendTsSuffixTo: [/\.vue$/] 26 | } 27 | }, 28 | { 29 | test: /\.vue$/, 30 | loader: 'vue-loader', 31 | options: { 32 | esModule: true 33 | } 34 | }, 35 | ] 36 | }, 37 | devtool: 'source-map' 38 | } 39 | -------------------------------------------------------------------------------- /example/simple/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | -------------------------------------------------------------------------------- /example/simple/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Socket.IO chat 5 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /example/simple/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "example", 3 | "version": "1.0.0", 4 | "main": "index.js", 5 | "license": "MIT", 6 | "scripts": { 7 | "build": "webpack", 8 | "start": "npm run build && node server.js" 9 | }, 10 | "dependencies": { 11 | "express": "^4.16.2", 12 | "socketio": "^1.0.0", 13 | "vue": "^2.5.2", 14 | "vuex": "^3.0.1" 15 | }, 16 | "devDependencies": { 17 | "@types/express": "^4.11.0", 18 | "@types/socket.io": "^1.4.31", 19 | "css-loader": "^0.28.8", 20 | "ts-loader": "^3.2.0", 21 | "typescript": "^2.6.1", 22 | "vue-loader": "^13.6.2", 23 | "vue-style-loader": "^3.0.3", 24 | "vue-template-compiler": "^2.5.13", 25 | "webpack": "^3.10.0" 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /example/simple/server.js: -------------------------------------------------------------------------------- 1 | var app = require('express')(); 2 | var http = require('http').Server(app); 3 | var io = require('socket.io')(http); 4 | var port = process.env.PORT || 3000; 5 | 6 | app.get('/', function(req, res){ 7 | res.sendFile(__dirname + '/index.html'); 8 | }); 9 | 10 | app.get('/dist/app.js', function(req, res){ 11 | res.sendFile(__dirname + '/dist/app.js'); 12 | }); 13 | 14 | io.on('connection', function(socket){ 15 | socket.on('CHAT_MESSAGE', function(msg){ 16 | io.emit('CHAT_MESSAGE', msg); 17 | }); 18 | }); 19 | 20 | http.listen(port, function(){ 21 | console.log('listening on *:' + port); 22 | }); -------------------------------------------------------------------------------- /example/simple/src/App.vue: -------------------------------------------------------------------------------- 1 | 12 | 13 | 34 | 43 | -------------------------------------------------------------------------------- /example/simple/src/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module '*.vue' { 2 | import Vue from 'vue' 3 | export default Vue 4 | } 5 | 6 | declare module '*.vue.ts' { 7 | import Vue from 'vue' 8 | export default Vue 9 | } -------------------------------------------------------------------------------- /example/simple/src/main.ts: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import store from './store' 3 | new Vue({ 4 | el: '#app', 5 | store, 6 | render: h => h(require('./App').default) 7 | }) 8 | -------------------------------------------------------------------------------- /example/simple/src/store.ts: -------------------------------------------------------------------------------- 1 | import Vuex, { Store } from 'vuex' 2 | import Vue from 'vue' 3 | import { createSocketioPlugin } from '../../../src/index' 4 | import * as io from 'socket.io-client' 5 | 6 | Vue.use(Vuex) 7 | 8 | let _client: (typeof io.Socket) | null = null; 9 | export type State = { messages: string[] } 10 | const store = new Vuex.Store({ 11 | plugins: [createSocketioPlugin('http://localhost:3000')], 12 | state: { 13 | messages: [] 14 | }, 15 | mutations: { 16 | SOCKET_CONNECT(state, { client }) { 17 | console.log('connected') 18 | _client = client; 19 | }, 20 | SOCKET_CHAT_MESSAGE(state, { data }) { 21 | state.messages = state.messages.concat([data[0]]) 22 | } 23 | }, 24 | actions: { 25 | postMessage(context, payload: { message: string }) { 26 | if (!_client) { 27 | throw new Error("don't have connection") 28 | } 29 | _client.emit('CHAT_MESSAGE', payload.message) 30 | } 31 | } 32 | }) 33 | 34 | export default store 35 | -------------------------------------------------------------------------------- /example/simple/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "outDir": "./dist", 4 | "strict": true, 5 | "module": "es2015", 6 | "moduleResolution": "node", 7 | "target": "es5", 8 | "lib": ["dom", "es2016"] 9 | }, 10 | "include": [ 11 | "./src/**/*", 12 | "../../src/**/*" 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /example/simple/webpack.config.js: -------------------------------------------------------------------------------- 1 | const path = require('path') 2 | 3 | module.exports = { 4 | entry: { 5 | app: './src/main.ts' 6 | }, 7 | output: { 8 | path: path.resolve(__dirname, 'dist'), 9 | filename: `[name].js`, 10 | }, 11 | resolve: { 12 | extensions: ['.ts', '.vue', '.js'], 13 | modules: [ 14 | path.join(__dirname, 'src'), 15 | 'node_modules' 16 | ] 17 | }, 18 | module: { 19 | rules: [ 20 | { 21 | test: /\.ts$/, 22 | exclude: /node_modules/, 23 | loader: 'ts-loader', 24 | options: { 25 | appendTsSuffixTo: [/\.vue$/] 26 | } 27 | }, 28 | { 29 | test: /\.vue$/, 30 | loader: 'vue-loader', 31 | options: { 32 | esModule: true 33 | } 34 | }, 35 | ] 36 | }, 37 | devtool: 'source-map' 38 | } -------------------------------------------------------------------------------- /example/simple/yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@types/body-parser@*": 6 | version "1.16.8" 7 | resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.16.8.tgz#687ec34140624a3bec2b1a8ea9268478ae8f3be3" 8 | dependencies: 9 | "@types/express" "*" 10 | "@types/node" "*" 11 | 12 | "@types/express-serve-static-core@*": 13 | version "4.11.0" 14 | resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.11.0.tgz#aaaf472777191c3e56ec7aa160034c6b55ebdd59" 15 | dependencies: 16 | "@types/node" "*" 17 | 18 | "@types/express@*", "@types/express@^4.11.0": 19 | version "4.11.0" 20 | resolved "https://registry.yarnpkg.com/@types/express/-/express-4.11.0.tgz#234d65280af917cb290634b7a8d6bcac24aecbad" 21 | dependencies: 22 | "@types/body-parser" "*" 23 | "@types/express-serve-static-core" "*" 24 | "@types/serve-static" "*" 25 | 26 | "@types/mime@*": 27 | version "2.0.0" 28 | resolved "https://registry.yarnpkg.com/@types/mime/-/mime-2.0.0.tgz#5a7306e367c539b9f6543499de8dd519fac37a8b" 29 | 30 | "@types/node@*": 31 | version "8.5.7" 32 | resolved "https://registry.yarnpkg.com/@types/node/-/node-8.5.7.tgz#9c498c35af354dcfbca3790fb2e81129e93cf0e2" 33 | 34 | "@types/serve-static@*": 35 | version "1.13.1" 36 | resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.13.1.tgz#1d2801fa635d274cd97d4ec07e26b21b44127492" 37 | dependencies: 38 | "@types/express-serve-static-core" "*" 39 | "@types/mime" "*" 40 | 41 | "@types/socket.io@^1.4.31": 42 | version "1.4.31" 43 | resolved "https://registry.yarnpkg.com/@types/socket.io/-/socket.io-1.4.31.tgz#7a928518a35516fccd90431f94538ed3fddaba19" 44 | dependencies: 45 | "@types/node" "*" 46 | 47 | abbrev@1: 48 | version "1.1.1" 49 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 50 | 51 | accepts@1.3.3: 52 | version "1.3.3" 53 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.3.tgz#c3ca7434938648c3e0d9c1e328dd68b622c284ca" 54 | dependencies: 55 | mime-types "~2.1.11" 56 | negotiator "0.6.1" 57 | 58 | accepts@~1.3.4: 59 | version "1.3.4" 60 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.4.tgz#86246758c7dd6d21a6474ff084a4740ec05eb21f" 61 | dependencies: 62 | mime-types "~2.1.16" 63 | negotiator "0.6.1" 64 | 65 | acorn-dynamic-import@^2.0.0: 66 | version "2.0.2" 67 | resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz#c752bd210bef679501b6c6cb7fc84f8f47158cc4" 68 | dependencies: 69 | acorn "^4.0.3" 70 | 71 | acorn@^4.0.3: 72 | version "4.0.13" 73 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 74 | 75 | acorn@^5.0.0: 76 | version "5.3.0" 77 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.3.0.tgz#7446d39459c54fb49a80e6ee6478149b940ec822" 78 | 79 | after@0.8.2: 80 | version "0.8.2" 81 | resolved "https://registry.yarnpkg.com/after/-/after-0.8.2.tgz#fedb394f9f0e02aa9768e702bda23b505fae7e1f" 82 | 83 | ajv-keywords@^2.0.0: 84 | version "2.1.1" 85 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762" 86 | 87 | ajv@^4.9.1: 88 | version "4.11.8" 89 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 90 | dependencies: 91 | co "^4.6.0" 92 | json-stable-stringify "^1.0.1" 93 | 94 | ajv@^5.1.5: 95 | version "5.5.2" 96 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 97 | dependencies: 98 | co "^4.6.0" 99 | fast-deep-equal "^1.0.0" 100 | fast-json-stable-stringify "^2.0.0" 101 | json-schema-traverse "^0.3.0" 102 | 103 | align-text@^0.1.1, align-text@^0.1.3: 104 | version "0.1.4" 105 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 106 | dependencies: 107 | kind-of "^3.0.2" 108 | longest "^1.0.1" 109 | repeat-string "^1.5.2" 110 | 111 | alphanum-sort@^1.0.1, alphanum-sort@^1.0.2: 112 | version "1.0.2" 113 | resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3" 114 | 115 | ansi-regex@^2.0.0: 116 | version "2.1.1" 117 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 118 | 119 | ansi-regex@^3.0.0: 120 | version "3.0.0" 121 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 122 | 123 | ansi-styles@^2.2.1: 124 | version "2.2.1" 125 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 126 | 127 | ansi-styles@^3.1.0: 128 | version "3.2.0" 129 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 130 | dependencies: 131 | color-convert "^1.9.0" 132 | 133 | anymatch@^1.3.0: 134 | version "1.3.2" 135 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 136 | dependencies: 137 | micromatch "^2.1.5" 138 | normalize-path "^2.0.0" 139 | 140 | aproba@^1.0.3: 141 | version "1.2.0" 142 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 143 | 144 | are-we-there-yet@~1.1.2: 145 | version "1.1.4" 146 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 147 | dependencies: 148 | delegates "^1.0.0" 149 | readable-stream "^2.0.6" 150 | 151 | argparse@^1.0.7: 152 | version "1.0.9" 153 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 154 | dependencies: 155 | sprintf-js "~1.0.2" 156 | 157 | arr-diff@^2.0.0: 158 | version "2.0.0" 159 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 160 | dependencies: 161 | arr-flatten "^1.0.1" 162 | 163 | arr-flatten@^1.0.1: 164 | version "1.1.0" 165 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 166 | 167 | array-flatten@1.1.1: 168 | version "1.1.1" 169 | resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" 170 | 171 | array-unique@^0.2.1: 172 | version "0.2.1" 173 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 174 | 175 | arraybuffer.slice@0.0.6: 176 | version "0.0.6" 177 | resolved "https://registry.yarnpkg.com/arraybuffer.slice/-/arraybuffer.slice-0.0.6.tgz#f33b2159f0532a3f3107a272c0ccfbd1ad2979ca" 178 | 179 | asn1.js@^4.0.0: 180 | version "4.9.2" 181 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.2.tgz#8117ef4f7ed87cd8f89044b5bff97ac243a16c9a" 182 | dependencies: 183 | bn.js "^4.0.0" 184 | inherits "^2.0.1" 185 | minimalistic-assert "^1.0.0" 186 | 187 | asn1@~0.2.3: 188 | version "0.2.3" 189 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 190 | 191 | assert-plus@1.0.0, assert-plus@^1.0.0: 192 | version "1.0.0" 193 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 194 | 195 | assert-plus@^0.2.0: 196 | version "0.2.0" 197 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 198 | 199 | assert@^1.1.1: 200 | version "1.4.1" 201 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" 202 | dependencies: 203 | util "0.10.3" 204 | 205 | async-each@^1.0.0: 206 | version "1.0.1" 207 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 208 | 209 | async@^2.1.2: 210 | version "2.6.0" 211 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.0.tgz#61a29abb6fcc026fea77e56d1c6ec53a795951f4" 212 | dependencies: 213 | lodash "^4.14.0" 214 | 215 | asynckit@^0.4.0: 216 | version "0.4.0" 217 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 218 | 219 | autoprefixer@^6.3.1: 220 | version "6.7.7" 221 | resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-6.7.7.tgz#1dbd1c835658e35ce3f9984099db00585c782014" 222 | dependencies: 223 | browserslist "^1.7.6" 224 | caniuse-db "^1.0.30000634" 225 | normalize-range "^0.1.2" 226 | num2fraction "^1.2.2" 227 | postcss "^5.2.16" 228 | postcss-value-parser "^3.2.3" 229 | 230 | aws-sign2@~0.6.0: 231 | version "0.6.0" 232 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 233 | 234 | aws4@^1.2.1: 235 | version "1.6.0" 236 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 237 | 238 | babel-code-frame@^6.26.0: 239 | version "6.26.0" 240 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 241 | dependencies: 242 | chalk "^1.1.3" 243 | esutils "^2.0.2" 244 | js-tokens "^3.0.2" 245 | 246 | backo2@1.0.2: 247 | version "1.0.2" 248 | resolved "https://registry.yarnpkg.com/backo2/-/backo2-1.0.2.tgz#31ab1ac8b129363463e35b3ebb69f4dfcfba7947" 249 | 250 | balanced-match@^0.4.2: 251 | version "0.4.2" 252 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 253 | 254 | balanced-match@^1.0.0: 255 | version "1.0.0" 256 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 257 | 258 | base64-arraybuffer@0.1.5: 259 | version "0.1.5" 260 | resolved "https://registry.yarnpkg.com/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz#73926771923b5a19747ad666aa5cd4bf9c6e9ce8" 261 | 262 | base64-js@^1.0.2: 263 | version "1.2.1" 264 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.1.tgz#a91947da1f4a516ea38e5b4ec0ec3773675e0886" 265 | 266 | base64id@1.0.0: 267 | version "1.0.0" 268 | resolved "https://registry.yarnpkg.com/base64id/-/base64id-1.0.0.tgz#47688cb99bb6804f0e06d3e763b1c32e57d8e6b6" 269 | 270 | bcrypt-pbkdf@^1.0.0: 271 | version "1.0.1" 272 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 273 | dependencies: 274 | tweetnacl "^0.14.3" 275 | 276 | better-assert@~1.0.0: 277 | version "1.0.2" 278 | resolved "https://registry.yarnpkg.com/better-assert/-/better-assert-1.0.2.tgz#40866b9e1b9e0b55b481894311e68faffaebc522" 279 | dependencies: 280 | callsite "1.0.0" 281 | 282 | big.js@^3.1.3: 283 | version "3.2.0" 284 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.2.0.tgz#a5fc298b81b9e0dca2e458824784b65c52ba588e" 285 | 286 | binary-extensions@^1.0.0: 287 | version "1.11.0" 288 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 289 | 290 | blob@0.0.4: 291 | version "0.0.4" 292 | resolved "https://registry.yarnpkg.com/blob/-/blob-0.0.4.tgz#bcf13052ca54463f30f9fc7e95b9a47630a94921" 293 | 294 | block-stream@*: 295 | version "0.0.9" 296 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 297 | dependencies: 298 | inherits "~2.0.0" 299 | 300 | bluebird@^3.1.1: 301 | version "3.5.1" 302 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.1.tgz#d9551f9de98f1fcda1e683d17ee91a0602ee2eb9" 303 | 304 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: 305 | version "4.11.8" 306 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" 307 | 308 | body-parser@1.18.2: 309 | version "1.18.2" 310 | resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.18.2.tgz#87678a19d84b47d859b83199bd59bce222b10454" 311 | dependencies: 312 | bytes "3.0.0" 313 | content-type "~1.0.4" 314 | debug "2.6.9" 315 | depd "~1.1.1" 316 | http-errors "~1.6.2" 317 | iconv-lite "0.4.19" 318 | on-finished "~2.3.0" 319 | qs "6.5.1" 320 | raw-body "2.3.2" 321 | type-is "~1.6.15" 322 | 323 | boom@2.x.x: 324 | version "2.10.1" 325 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 326 | dependencies: 327 | hoek "2.x.x" 328 | 329 | brace-expansion@^1.1.7: 330 | version "1.1.8" 331 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 332 | dependencies: 333 | balanced-match "^1.0.0" 334 | concat-map "0.0.1" 335 | 336 | braces@^1.8.2: 337 | version "1.8.5" 338 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 339 | dependencies: 340 | expand-range "^1.8.1" 341 | preserve "^0.2.0" 342 | repeat-element "^1.1.2" 343 | 344 | brorand@^1.0.1: 345 | version "1.1.0" 346 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 347 | 348 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: 349 | version "1.1.1" 350 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.1.1.tgz#38b7ab55edb806ff2dcda1a7f1620773a477c49f" 351 | dependencies: 352 | buffer-xor "^1.0.3" 353 | cipher-base "^1.0.0" 354 | create-hash "^1.1.0" 355 | evp_bytestokey "^1.0.3" 356 | inherits "^2.0.1" 357 | safe-buffer "^5.0.1" 358 | 359 | browserify-cipher@^1.0.0: 360 | version "1.0.0" 361 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" 362 | dependencies: 363 | browserify-aes "^1.0.4" 364 | browserify-des "^1.0.0" 365 | evp_bytestokey "^1.0.0" 366 | 367 | browserify-des@^1.0.0: 368 | version "1.0.0" 369 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" 370 | dependencies: 371 | cipher-base "^1.0.1" 372 | des.js "^1.0.0" 373 | inherits "^2.0.1" 374 | 375 | browserify-rsa@^4.0.0: 376 | version "4.0.1" 377 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" 378 | dependencies: 379 | bn.js "^4.1.0" 380 | randombytes "^2.0.1" 381 | 382 | browserify-sign@^4.0.0: 383 | version "4.0.4" 384 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" 385 | dependencies: 386 | bn.js "^4.1.1" 387 | browserify-rsa "^4.0.0" 388 | create-hash "^1.1.0" 389 | create-hmac "^1.1.2" 390 | elliptic "^6.0.0" 391 | inherits "^2.0.1" 392 | parse-asn1 "^5.0.0" 393 | 394 | browserify-zlib@^0.2.0: 395 | version "0.2.0" 396 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" 397 | dependencies: 398 | pako "~1.0.5" 399 | 400 | browserslist@^1.3.6, browserslist@^1.5.2, browserslist@^1.7.6: 401 | version "1.7.7" 402 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-1.7.7.tgz#0bd76704258be829b2398bb50e4b62d1a166b0b9" 403 | dependencies: 404 | caniuse-db "^1.0.30000639" 405 | electron-to-chromium "^1.2.7" 406 | 407 | buffer-xor@^1.0.3: 408 | version "1.0.3" 409 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 410 | 411 | buffer@^4.3.0: 412 | version "4.9.1" 413 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" 414 | dependencies: 415 | base64-js "^1.0.2" 416 | ieee754 "^1.1.4" 417 | isarray "^1.0.0" 418 | 419 | builtin-modules@^1.0.0: 420 | version "1.1.1" 421 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 422 | 423 | builtin-status-codes@^3.0.0: 424 | version "3.0.0" 425 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" 426 | 427 | bytes@3.0.0: 428 | version "3.0.0" 429 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" 430 | 431 | callsite@1.0.0: 432 | version "1.0.0" 433 | resolved "https://registry.yarnpkg.com/callsite/-/callsite-1.0.0.tgz#280398e5d664bd74038b6f0905153e6e8af1bc20" 434 | 435 | camelcase@^1.0.2: 436 | version "1.2.1" 437 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 438 | 439 | camelcase@^4.1.0: 440 | version "4.1.0" 441 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 442 | 443 | caniuse-api@^1.5.2: 444 | version "1.6.1" 445 | resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-1.6.1.tgz#b534e7c734c4f81ec5fbe8aca2ad24354b962c6c" 446 | dependencies: 447 | browserslist "^1.3.6" 448 | caniuse-db "^1.0.30000529" 449 | lodash.memoize "^4.1.2" 450 | lodash.uniq "^4.5.0" 451 | 452 | caniuse-db@^1.0.30000529, caniuse-db@^1.0.30000634, caniuse-db@^1.0.30000639: 453 | version "1.0.30000789" 454 | resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000789.tgz#5cf3fec75480041ab162ca06413153141e234325" 455 | 456 | caseless@~0.12.0: 457 | version "0.12.0" 458 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 459 | 460 | center-align@^0.1.1: 461 | version "0.1.3" 462 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 463 | dependencies: 464 | align-text "^0.1.3" 465 | lazy-cache "^1.0.3" 466 | 467 | chalk@^1.1.3: 468 | version "1.1.3" 469 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 470 | dependencies: 471 | ansi-styles "^2.2.1" 472 | escape-string-regexp "^1.0.2" 473 | has-ansi "^2.0.0" 474 | strip-ansi "^3.0.0" 475 | supports-color "^2.0.0" 476 | 477 | chalk@^2.3.0: 478 | version "2.3.0" 479 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba" 480 | dependencies: 481 | ansi-styles "^3.1.0" 482 | escape-string-regexp "^1.0.5" 483 | supports-color "^4.0.0" 484 | 485 | chokidar@^1.7.0: 486 | version "1.7.0" 487 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 488 | dependencies: 489 | anymatch "^1.3.0" 490 | async-each "^1.0.0" 491 | glob-parent "^2.0.0" 492 | inherits "^2.0.1" 493 | is-binary-path "^1.0.0" 494 | is-glob "^2.0.0" 495 | path-is-absolute "^1.0.0" 496 | readdirp "^2.0.0" 497 | optionalDependencies: 498 | fsevents "^1.0.0" 499 | 500 | cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: 501 | version "1.0.4" 502 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" 503 | dependencies: 504 | inherits "^2.0.1" 505 | safe-buffer "^5.0.1" 506 | 507 | clap@^1.0.9: 508 | version "1.2.3" 509 | resolved "https://registry.yarnpkg.com/clap/-/clap-1.2.3.tgz#4f36745b32008492557f46412d66d50cb99bce51" 510 | dependencies: 511 | chalk "^1.1.3" 512 | 513 | cliui@^2.1.0: 514 | version "2.1.0" 515 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 516 | dependencies: 517 | center-align "^0.1.1" 518 | right-align "^0.1.1" 519 | wordwrap "0.0.2" 520 | 521 | cliui@^3.2.0: 522 | version "3.2.0" 523 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 524 | dependencies: 525 | string-width "^1.0.1" 526 | strip-ansi "^3.0.1" 527 | wrap-ansi "^2.0.0" 528 | 529 | clone@^1.0.2: 530 | version "1.0.3" 531 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.3.tgz#298d7e2231660f40c003c2ed3140decf3f53085f" 532 | 533 | co@^4.6.0: 534 | version "4.6.0" 535 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 536 | 537 | coa@~1.0.1: 538 | version "1.0.4" 539 | resolved "https://registry.yarnpkg.com/coa/-/coa-1.0.4.tgz#a9ef153660d6a86a8bdec0289a5c684d217432fd" 540 | dependencies: 541 | q "^1.1.2" 542 | 543 | code-point-at@^1.0.0: 544 | version "1.1.0" 545 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 546 | 547 | color-convert@^1.3.0, color-convert@^1.9.0: 548 | version "1.9.1" 549 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" 550 | dependencies: 551 | color-name "^1.1.1" 552 | 553 | color-name@^1.0.0, color-name@^1.1.1: 554 | version "1.1.3" 555 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 556 | 557 | color-string@^0.3.0: 558 | version "0.3.0" 559 | resolved "https://registry.yarnpkg.com/color-string/-/color-string-0.3.0.tgz#27d46fb67025c5c2fa25993bfbf579e47841b991" 560 | dependencies: 561 | color-name "^1.0.0" 562 | 563 | color@^0.11.0: 564 | version "0.11.4" 565 | resolved "https://registry.yarnpkg.com/color/-/color-0.11.4.tgz#6d7b5c74fb65e841cd48792ad1ed5e07b904d764" 566 | dependencies: 567 | clone "^1.0.2" 568 | color-convert "^1.3.0" 569 | color-string "^0.3.0" 570 | 571 | colormin@^1.0.5: 572 | version "1.1.2" 573 | resolved "https://registry.yarnpkg.com/colormin/-/colormin-1.1.2.tgz#ea2f7420a72b96881a38aae59ec124a6f7298133" 574 | dependencies: 575 | color "^0.11.0" 576 | css-color-names "0.0.4" 577 | has "^1.0.1" 578 | 579 | colors@~1.1.2: 580 | version "1.1.2" 581 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" 582 | 583 | combined-stream@^1.0.5, combined-stream@~1.0.5: 584 | version "1.0.5" 585 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 586 | dependencies: 587 | delayed-stream "~1.0.0" 588 | 589 | component-bind@1.0.0: 590 | version "1.0.0" 591 | resolved "https://registry.yarnpkg.com/component-bind/-/component-bind-1.0.0.tgz#00c608ab7dcd93897c0009651b1d3a8e1e73bbd1" 592 | 593 | component-emitter@1.1.2: 594 | version "1.1.2" 595 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.1.2.tgz#296594f2753daa63996d2af08d15a95116c9aec3" 596 | 597 | component-emitter@1.2.1: 598 | version "1.2.1" 599 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 600 | 601 | component-inherit@0.0.3: 602 | version "0.0.3" 603 | resolved "https://registry.yarnpkg.com/component-inherit/-/component-inherit-0.0.3.tgz#645fc4adf58b72b649d5cae65135619db26ff143" 604 | 605 | concat-map@0.0.1: 606 | version "0.0.1" 607 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 608 | 609 | console-browserify@^1.1.0: 610 | version "1.1.0" 611 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" 612 | dependencies: 613 | date-now "^0.1.4" 614 | 615 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 616 | version "1.1.0" 617 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 618 | 619 | consolidate@^0.14.0: 620 | version "0.14.5" 621 | resolved "https://registry.yarnpkg.com/consolidate/-/consolidate-0.14.5.tgz#5a25047bc76f73072667c8cb52c989888f494c63" 622 | dependencies: 623 | bluebird "^3.1.1" 624 | 625 | constants-browserify@^1.0.0: 626 | version "1.0.0" 627 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" 628 | 629 | content-disposition@0.5.2: 630 | version "0.5.2" 631 | resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4" 632 | 633 | content-type@~1.0.4: 634 | version "1.0.4" 635 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" 636 | 637 | cookie-signature@1.0.6: 638 | version "1.0.6" 639 | resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" 640 | 641 | cookie@0.3.1: 642 | version "0.3.1" 643 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" 644 | 645 | core-util-is@1.0.2, core-util-is@~1.0.0: 646 | version "1.0.2" 647 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 648 | 649 | cosmiconfig@^2.1.0, cosmiconfig@^2.1.1: 650 | version "2.2.2" 651 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-2.2.2.tgz#6173cebd56fac042c1f4390edf7af6c07c7cb892" 652 | dependencies: 653 | is-directory "^0.3.1" 654 | js-yaml "^3.4.3" 655 | minimist "^1.2.0" 656 | object-assign "^4.1.0" 657 | os-homedir "^1.0.1" 658 | parse-json "^2.2.0" 659 | require-from-string "^1.1.0" 660 | 661 | create-ecdh@^4.0.0: 662 | version "4.0.0" 663 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" 664 | dependencies: 665 | bn.js "^4.1.0" 666 | elliptic "^6.0.0" 667 | 668 | create-hash@^1.1.0, create-hash@^1.1.2: 669 | version "1.1.3" 670 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.3.tgz#606042ac8b9262750f483caddab0f5819172d8fd" 671 | dependencies: 672 | cipher-base "^1.0.1" 673 | inherits "^2.0.1" 674 | ripemd160 "^2.0.0" 675 | sha.js "^2.4.0" 676 | 677 | create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: 678 | version "1.1.6" 679 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.6.tgz#acb9e221a4e17bdb076e90657c42b93e3726cf06" 680 | dependencies: 681 | cipher-base "^1.0.3" 682 | create-hash "^1.1.0" 683 | inherits "^2.0.1" 684 | ripemd160 "^2.0.0" 685 | safe-buffer "^5.0.1" 686 | sha.js "^2.4.8" 687 | 688 | cross-spawn@^5.0.1: 689 | version "5.1.0" 690 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 691 | dependencies: 692 | lru-cache "^4.0.1" 693 | shebang-command "^1.2.0" 694 | which "^1.2.9" 695 | 696 | cryptiles@2.x.x: 697 | version "2.0.5" 698 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 699 | dependencies: 700 | boom "2.x.x" 701 | 702 | crypto-browserify@^3.11.0: 703 | version "3.12.0" 704 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" 705 | dependencies: 706 | browserify-cipher "^1.0.0" 707 | browserify-sign "^4.0.0" 708 | create-ecdh "^4.0.0" 709 | create-hash "^1.1.0" 710 | create-hmac "^1.1.0" 711 | diffie-hellman "^5.0.0" 712 | inherits "^2.0.1" 713 | pbkdf2 "^3.0.3" 714 | public-encrypt "^4.0.0" 715 | randombytes "^2.0.0" 716 | randomfill "^1.0.3" 717 | 718 | css-color-names@0.0.4: 719 | version "0.0.4" 720 | resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0" 721 | 722 | css-loader@^0.28.8: 723 | version "0.28.8" 724 | resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-0.28.8.tgz#ff36381464dea18fe60f2601a060ba6445886bd5" 725 | dependencies: 726 | babel-code-frame "^6.26.0" 727 | css-selector-tokenizer "^0.7.0" 728 | cssnano "^3.10.0" 729 | icss-utils "^2.1.0" 730 | loader-utils "^1.0.2" 731 | lodash.camelcase "^4.3.0" 732 | object-assign "^4.1.1" 733 | postcss "^5.0.6" 734 | postcss-modules-extract-imports "^1.1.0" 735 | postcss-modules-local-by-default "^1.2.0" 736 | postcss-modules-scope "^1.1.0" 737 | postcss-modules-values "^1.3.0" 738 | postcss-value-parser "^3.3.0" 739 | source-list-map "^2.0.0" 740 | 741 | css-selector-tokenizer@^0.7.0: 742 | version "0.7.0" 743 | resolved "https://registry.yarnpkg.com/css-selector-tokenizer/-/css-selector-tokenizer-0.7.0.tgz#e6988474ae8c953477bf5e7efecfceccd9cf4c86" 744 | dependencies: 745 | cssesc "^0.1.0" 746 | fastparse "^1.1.1" 747 | regexpu-core "^1.0.0" 748 | 749 | cssesc@^0.1.0: 750 | version "0.1.0" 751 | resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-0.1.0.tgz#c814903e45623371a0477b40109aaafbeeaddbb4" 752 | 753 | cssnano@^3.10.0: 754 | version "3.10.0" 755 | resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-3.10.0.tgz#4f38f6cea2b9b17fa01490f23f1dc68ea65c1c38" 756 | dependencies: 757 | autoprefixer "^6.3.1" 758 | decamelize "^1.1.2" 759 | defined "^1.0.0" 760 | has "^1.0.1" 761 | object-assign "^4.0.1" 762 | postcss "^5.0.14" 763 | postcss-calc "^5.2.0" 764 | postcss-colormin "^2.1.8" 765 | postcss-convert-values "^2.3.4" 766 | postcss-discard-comments "^2.0.4" 767 | postcss-discard-duplicates "^2.0.1" 768 | postcss-discard-empty "^2.0.1" 769 | postcss-discard-overridden "^0.1.1" 770 | postcss-discard-unused "^2.2.1" 771 | postcss-filter-plugins "^2.0.0" 772 | postcss-merge-idents "^2.1.5" 773 | postcss-merge-longhand "^2.0.1" 774 | postcss-merge-rules "^2.0.3" 775 | postcss-minify-font-values "^1.0.2" 776 | postcss-minify-gradients "^1.0.1" 777 | postcss-minify-params "^1.0.4" 778 | postcss-minify-selectors "^2.0.4" 779 | postcss-normalize-charset "^1.1.0" 780 | postcss-normalize-url "^3.0.7" 781 | postcss-ordered-values "^2.1.0" 782 | postcss-reduce-idents "^2.2.2" 783 | postcss-reduce-initial "^1.0.0" 784 | postcss-reduce-transforms "^1.0.3" 785 | postcss-svgo "^2.1.1" 786 | postcss-unique-selectors "^2.0.2" 787 | postcss-value-parser "^3.2.3" 788 | postcss-zindex "^2.0.1" 789 | 790 | csso@~2.3.1: 791 | version "2.3.2" 792 | resolved "https://registry.yarnpkg.com/csso/-/csso-2.3.2.tgz#ddd52c587033f49e94b71fc55569f252e8ff5f85" 793 | dependencies: 794 | clap "^1.0.9" 795 | source-map "^0.5.3" 796 | 797 | d@1: 798 | version "1.0.0" 799 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 800 | dependencies: 801 | es5-ext "^0.10.9" 802 | 803 | dashdash@^1.12.0: 804 | version "1.14.1" 805 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 806 | dependencies: 807 | assert-plus "^1.0.0" 808 | 809 | date-now@^0.1.4: 810 | version "0.1.4" 811 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 812 | 813 | de-indent@^1.0.2: 814 | version "1.0.2" 815 | resolved "https://registry.yarnpkg.com/de-indent/-/de-indent-1.0.2.tgz#b2038e846dc33baa5796128d0804b455b8c1e21d" 816 | 817 | debug@2.2.0: 818 | version "2.2.0" 819 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 820 | dependencies: 821 | ms "0.7.1" 822 | 823 | debug@2.3.3: 824 | version "2.3.3" 825 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.3.3.tgz#40c453e67e6e13c901ddec317af8986cda9eff8c" 826 | dependencies: 827 | ms "0.7.2" 828 | 829 | debug@2.6.9, debug@^2.2.0: 830 | version "2.6.9" 831 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 832 | dependencies: 833 | ms "2.0.0" 834 | 835 | decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: 836 | version "1.2.0" 837 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 838 | 839 | deep-extend@~0.4.0: 840 | version "0.4.2" 841 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 842 | 843 | defined@^1.0.0: 844 | version "1.0.0" 845 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 846 | 847 | delayed-stream@~1.0.0: 848 | version "1.0.0" 849 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 850 | 851 | delegates@^1.0.0: 852 | version "1.0.0" 853 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 854 | 855 | depd@1.1.1, depd@~1.1.1: 856 | version "1.1.1" 857 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.1.tgz#5783b4e1c459f06fa5ca27f991f3d06e7a310359" 858 | 859 | des.js@^1.0.0: 860 | version "1.0.0" 861 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" 862 | dependencies: 863 | inherits "^2.0.1" 864 | minimalistic-assert "^1.0.0" 865 | 866 | destroy@~1.0.4: 867 | version "1.0.4" 868 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 869 | 870 | detect-libc@^1.0.2: 871 | version "1.0.3" 872 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 873 | 874 | diffie-hellman@^5.0.0: 875 | version "5.0.2" 876 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" 877 | dependencies: 878 | bn.js "^4.1.0" 879 | miller-rabin "^4.0.0" 880 | randombytes "^2.0.0" 881 | 882 | domain-browser@^1.1.1: 883 | version "1.1.7" 884 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" 885 | 886 | ecc-jsbn@~0.1.1: 887 | version "0.1.1" 888 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 889 | dependencies: 890 | jsbn "~0.1.0" 891 | 892 | ee-first@1.1.1: 893 | version "1.1.1" 894 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 895 | 896 | electron-releases@^2.1.0: 897 | version "2.1.0" 898 | resolved "https://registry.yarnpkg.com/electron-releases/-/electron-releases-2.1.0.tgz#c5614bf811f176ce3c836e368a0625782341fd4e" 899 | 900 | electron-to-chromium@^1.2.7: 901 | version "1.3.30" 902 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.30.tgz#9666f532a64586651fc56a72513692e820d06a80" 903 | dependencies: 904 | electron-releases "^2.1.0" 905 | 906 | elliptic@^6.0.0: 907 | version "6.4.0" 908 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df" 909 | dependencies: 910 | bn.js "^4.4.0" 911 | brorand "^1.0.1" 912 | hash.js "^1.0.0" 913 | hmac-drbg "^1.0.0" 914 | inherits "^2.0.1" 915 | minimalistic-assert "^1.0.0" 916 | minimalistic-crypto-utils "^1.0.0" 917 | 918 | emojis-list@^2.0.0: 919 | version "2.1.0" 920 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" 921 | 922 | encodeurl@~1.0.1: 923 | version "1.0.1" 924 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20" 925 | 926 | engine.io-client@~1.8.4: 927 | version "1.8.5" 928 | resolved "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-1.8.5.tgz#fe7fb60cb0dcf2fa2859489329cb5968dedeb11f" 929 | dependencies: 930 | component-emitter "1.2.1" 931 | component-inherit "0.0.3" 932 | debug "2.3.3" 933 | engine.io-parser "1.3.2" 934 | has-cors "1.1.0" 935 | indexof "0.0.1" 936 | parsejson "0.0.3" 937 | parseqs "0.0.5" 938 | parseuri "0.0.5" 939 | ws "~1.1.5" 940 | xmlhttprequest-ssl "1.5.3" 941 | yeast "0.1.2" 942 | 943 | engine.io-parser@1.3.2: 944 | version "1.3.2" 945 | resolved "https://registry.yarnpkg.com/engine.io-parser/-/engine.io-parser-1.3.2.tgz#937b079f0007d0893ec56d46cb220b8cb435220a" 946 | dependencies: 947 | after "0.8.2" 948 | arraybuffer.slice "0.0.6" 949 | base64-arraybuffer "0.1.5" 950 | blob "0.0.4" 951 | has-binary "0.1.7" 952 | wtf-8 "1.0.0" 953 | 954 | engine.io@~1.8.4: 955 | version "1.8.5" 956 | resolved "https://registry.yarnpkg.com/engine.io/-/engine.io-1.8.5.tgz#4ebe5e75c6dc123dee4afdce6e5fdced21eb93f6" 957 | dependencies: 958 | accepts "1.3.3" 959 | base64id "1.0.0" 960 | cookie "0.3.1" 961 | debug "2.3.3" 962 | engine.io-parser "1.3.2" 963 | ws "~1.1.5" 964 | 965 | enhanced-resolve@^3.0.0, enhanced-resolve@^3.4.0: 966 | version "3.4.1" 967 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz#0421e339fd71419b3da13d129b3979040230476e" 968 | dependencies: 969 | graceful-fs "^4.1.2" 970 | memory-fs "^0.4.0" 971 | object-assign "^4.0.1" 972 | tapable "^0.2.7" 973 | 974 | errno@^0.1.3: 975 | version "0.1.6" 976 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.6.tgz#c386ce8a6283f14fc09563b71560908c9bf53026" 977 | dependencies: 978 | prr "~1.0.1" 979 | 980 | error-ex@^1.2.0: 981 | version "1.3.1" 982 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 983 | dependencies: 984 | is-arrayish "^0.2.1" 985 | 986 | es5-ext@^0.10.14, es5-ext@^0.10.35, es5-ext@^0.10.9, es5-ext@~0.10.14: 987 | version "0.10.37" 988 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.37.tgz#0ee741d148b80069ba27d020393756af257defc3" 989 | dependencies: 990 | es6-iterator "~2.0.1" 991 | es6-symbol "~3.1.1" 992 | 993 | es6-iterator@^2.0.1, es6-iterator@~2.0.1: 994 | version "2.0.3" 995 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" 996 | dependencies: 997 | d "1" 998 | es5-ext "^0.10.35" 999 | es6-symbol "^3.1.1" 1000 | 1001 | es6-map@^0.1.3: 1002 | version "0.1.5" 1003 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" 1004 | dependencies: 1005 | d "1" 1006 | es5-ext "~0.10.14" 1007 | es6-iterator "~2.0.1" 1008 | es6-set "~0.1.5" 1009 | es6-symbol "~3.1.1" 1010 | event-emitter "~0.3.5" 1011 | 1012 | es6-set@~0.1.5: 1013 | version "0.1.5" 1014 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" 1015 | dependencies: 1016 | d "1" 1017 | es5-ext "~0.10.14" 1018 | es6-iterator "~2.0.1" 1019 | es6-symbol "3.1.1" 1020 | event-emitter "~0.3.5" 1021 | 1022 | es6-symbol@3.1.1, es6-symbol@^3.1.1, es6-symbol@~3.1.1: 1023 | version "3.1.1" 1024 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 1025 | dependencies: 1026 | d "1" 1027 | es5-ext "~0.10.14" 1028 | 1029 | es6-weak-map@^2.0.1: 1030 | version "2.0.2" 1031 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" 1032 | dependencies: 1033 | d "1" 1034 | es5-ext "^0.10.14" 1035 | es6-iterator "^2.0.1" 1036 | es6-symbol "^3.1.1" 1037 | 1038 | escape-html@~1.0.3: 1039 | version "1.0.3" 1040 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 1041 | 1042 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1043 | version "1.0.5" 1044 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1045 | 1046 | escope@^3.6.0: 1047 | version "3.6.0" 1048 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 1049 | dependencies: 1050 | es6-map "^0.1.3" 1051 | es6-weak-map "^2.0.1" 1052 | esrecurse "^4.1.0" 1053 | estraverse "^4.1.1" 1054 | 1055 | esprima@^2.6.0: 1056 | version "2.7.3" 1057 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 1058 | 1059 | esprima@^4.0.0: 1060 | version "4.0.0" 1061 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 1062 | 1063 | esrecurse@^4.1.0: 1064 | version "4.2.0" 1065 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163" 1066 | dependencies: 1067 | estraverse "^4.1.0" 1068 | object-assign "^4.0.1" 1069 | 1070 | estraverse@^4.1.0, estraverse@^4.1.1: 1071 | version "4.2.0" 1072 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1073 | 1074 | esutils@^2.0.2: 1075 | version "2.0.2" 1076 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1077 | 1078 | etag@~1.8.1: 1079 | version "1.8.1" 1080 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" 1081 | 1082 | event-emitter@~0.3.5: 1083 | version "0.3.5" 1084 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 1085 | dependencies: 1086 | d "1" 1087 | es5-ext "~0.10.14" 1088 | 1089 | events@^1.0.0: 1090 | version "1.1.1" 1091 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 1092 | 1093 | evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: 1094 | version "1.0.3" 1095 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" 1096 | dependencies: 1097 | md5.js "^1.3.4" 1098 | safe-buffer "^5.1.1" 1099 | 1100 | execa@^0.7.0: 1101 | version "0.7.0" 1102 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1103 | dependencies: 1104 | cross-spawn "^5.0.1" 1105 | get-stream "^3.0.0" 1106 | is-stream "^1.1.0" 1107 | npm-run-path "^2.0.0" 1108 | p-finally "^1.0.0" 1109 | signal-exit "^3.0.0" 1110 | strip-eof "^1.0.0" 1111 | 1112 | expand-brackets@^0.1.4: 1113 | version "0.1.5" 1114 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1115 | dependencies: 1116 | is-posix-bracket "^0.1.0" 1117 | 1118 | expand-range@^1.8.1: 1119 | version "1.8.2" 1120 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1121 | dependencies: 1122 | fill-range "^2.1.0" 1123 | 1124 | express@^4.13.3, express@^4.16.2: 1125 | version "4.16.2" 1126 | resolved "https://registry.yarnpkg.com/express/-/express-4.16.2.tgz#e35c6dfe2d64b7dca0a5cd4f21781be3299e076c" 1127 | dependencies: 1128 | accepts "~1.3.4" 1129 | array-flatten "1.1.1" 1130 | body-parser "1.18.2" 1131 | content-disposition "0.5.2" 1132 | content-type "~1.0.4" 1133 | cookie "0.3.1" 1134 | cookie-signature "1.0.6" 1135 | debug "2.6.9" 1136 | depd "~1.1.1" 1137 | encodeurl "~1.0.1" 1138 | escape-html "~1.0.3" 1139 | etag "~1.8.1" 1140 | finalhandler "1.1.0" 1141 | fresh "0.5.2" 1142 | merge-descriptors "1.0.1" 1143 | methods "~1.1.2" 1144 | on-finished "~2.3.0" 1145 | parseurl "~1.3.2" 1146 | path-to-regexp "0.1.7" 1147 | proxy-addr "~2.0.2" 1148 | qs "6.5.1" 1149 | range-parser "~1.2.0" 1150 | safe-buffer "5.1.1" 1151 | send "0.16.1" 1152 | serve-static "1.13.1" 1153 | setprototypeof "1.1.0" 1154 | statuses "~1.3.1" 1155 | type-is "~1.6.15" 1156 | utils-merge "1.0.1" 1157 | vary "~1.1.2" 1158 | 1159 | extend@~3.0.0: 1160 | version "3.0.1" 1161 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1162 | 1163 | extglob@^0.3.1: 1164 | version "0.3.2" 1165 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1166 | dependencies: 1167 | is-extglob "^1.0.0" 1168 | 1169 | extsprintf@1.3.0: 1170 | version "1.3.0" 1171 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1172 | 1173 | extsprintf@^1.2.0: 1174 | version "1.4.0" 1175 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 1176 | 1177 | fast-deep-equal@^1.0.0: 1178 | version "1.0.0" 1179 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 1180 | 1181 | fast-json-stable-stringify@^2.0.0: 1182 | version "2.0.0" 1183 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1184 | 1185 | fastparse@^1.1.1: 1186 | version "1.1.1" 1187 | resolved "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.1.tgz#d1e2643b38a94d7583b479060e6c4affc94071f8" 1188 | 1189 | filename-regex@^2.0.0: 1190 | version "2.0.1" 1191 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1192 | 1193 | fill-range@^2.1.0: 1194 | version "2.2.3" 1195 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1196 | dependencies: 1197 | is-number "^2.1.0" 1198 | isobject "^2.0.0" 1199 | randomatic "^1.1.3" 1200 | repeat-element "^1.1.2" 1201 | repeat-string "^1.5.2" 1202 | 1203 | finalhandler@1.1.0: 1204 | version "1.1.0" 1205 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.0.tgz#ce0b6855b45853e791b2fcc680046d88253dd7f5" 1206 | dependencies: 1207 | debug "2.6.9" 1208 | encodeurl "~1.0.1" 1209 | escape-html "~1.0.3" 1210 | on-finished "~2.3.0" 1211 | parseurl "~1.3.2" 1212 | statuses "~1.3.1" 1213 | unpipe "~1.0.0" 1214 | 1215 | find-up@^2.0.0: 1216 | version "2.1.0" 1217 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1218 | dependencies: 1219 | locate-path "^2.0.0" 1220 | 1221 | flatten@^1.0.2: 1222 | version "1.0.2" 1223 | resolved "https://registry.yarnpkg.com/flatten/-/flatten-1.0.2.tgz#dae46a9d78fbe25292258cc1e780a41d95c03782" 1224 | 1225 | for-in@^1.0.1: 1226 | version "1.0.2" 1227 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1228 | 1229 | for-own@^0.1.4: 1230 | version "0.1.5" 1231 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1232 | dependencies: 1233 | for-in "^1.0.1" 1234 | 1235 | forever-agent@~0.6.1: 1236 | version "0.6.1" 1237 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1238 | 1239 | form-data@~2.1.1: 1240 | version "2.1.4" 1241 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1242 | dependencies: 1243 | asynckit "^0.4.0" 1244 | combined-stream "^1.0.5" 1245 | mime-types "^2.1.12" 1246 | 1247 | forwarded@~0.1.2: 1248 | version "0.1.2" 1249 | resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84" 1250 | 1251 | fresh@0.5.2: 1252 | version "0.5.2" 1253 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" 1254 | 1255 | fs.realpath@^1.0.0: 1256 | version "1.0.0" 1257 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1258 | 1259 | fsevents@^1.0.0: 1260 | version "1.1.3" 1261 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8" 1262 | dependencies: 1263 | nan "^2.3.0" 1264 | node-pre-gyp "^0.6.39" 1265 | 1266 | fstream-ignore@^1.0.5: 1267 | version "1.0.5" 1268 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1269 | dependencies: 1270 | fstream "^1.0.0" 1271 | inherits "2" 1272 | minimatch "^3.0.0" 1273 | 1274 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1275 | version "1.0.11" 1276 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1277 | dependencies: 1278 | graceful-fs "^4.1.2" 1279 | inherits "~2.0.0" 1280 | mkdirp ">=0.5 0" 1281 | rimraf "2" 1282 | 1283 | function-bind@^1.0.2: 1284 | version "1.1.1" 1285 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1286 | 1287 | gauge@~2.7.3: 1288 | version "2.7.4" 1289 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1290 | dependencies: 1291 | aproba "^1.0.3" 1292 | console-control-strings "^1.0.0" 1293 | has-unicode "^2.0.0" 1294 | object-assign "^4.1.0" 1295 | signal-exit "^3.0.0" 1296 | string-width "^1.0.1" 1297 | strip-ansi "^3.0.1" 1298 | wide-align "^1.1.0" 1299 | 1300 | get-caller-file@^1.0.1: 1301 | version "1.0.2" 1302 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1303 | 1304 | get-stream@^3.0.0: 1305 | version "3.0.0" 1306 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1307 | 1308 | getpass@^0.1.1: 1309 | version "0.1.7" 1310 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1311 | dependencies: 1312 | assert-plus "^1.0.0" 1313 | 1314 | glob-base@^0.3.0: 1315 | version "0.3.0" 1316 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1317 | dependencies: 1318 | glob-parent "^2.0.0" 1319 | is-glob "^2.0.0" 1320 | 1321 | glob-parent@^2.0.0: 1322 | version "2.0.0" 1323 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1324 | dependencies: 1325 | is-glob "^2.0.0" 1326 | 1327 | glob@^7.0.5: 1328 | version "7.1.2" 1329 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1330 | dependencies: 1331 | fs.realpath "^1.0.0" 1332 | inflight "^1.0.4" 1333 | inherits "2" 1334 | minimatch "^3.0.4" 1335 | once "^1.3.0" 1336 | path-is-absolute "^1.0.0" 1337 | 1338 | graceful-fs@^4.1.2: 1339 | version "4.1.11" 1340 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1341 | 1342 | har-schema@^1.0.5: 1343 | version "1.0.5" 1344 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1345 | 1346 | har-validator@~4.2.1: 1347 | version "4.2.1" 1348 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1349 | dependencies: 1350 | ajv "^4.9.1" 1351 | har-schema "^1.0.5" 1352 | 1353 | has-ansi@^2.0.0: 1354 | version "2.0.0" 1355 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1356 | dependencies: 1357 | ansi-regex "^2.0.0" 1358 | 1359 | has-binary@0.1.7: 1360 | version "0.1.7" 1361 | resolved "https://registry.yarnpkg.com/has-binary/-/has-binary-0.1.7.tgz#68e61eb16210c9545a0a5cce06a873912fe1e68c" 1362 | dependencies: 1363 | isarray "0.0.1" 1364 | 1365 | has-cors@1.1.0: 1366 | version "1.1.0" 1367 | resolved "https://registry.yarnpkg.com/has-cors/-/has-cors-1.1.0.tgz#5e474793f7ea9843d1bb99c23eef49ff126fff39" 1368 | 1369 | has-flag@^1.0.0: 1370 | version "1.0.0" 1371 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1372 | 1373 | has-flag@^2.0.0: 1374 | version "2.0.0" 1375 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1376 | 1377 | has-unicode@^2.0.0: 1378 | version "2.0.1" 1379 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1380 | 1381 | has@^1.0.1: 1382 | version "1.0.1" 1383 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1384 | dependencies: 1385 | function-bind "^1.0.2" 1386 | 1387 | hash-base@^2.0.0: 1388 | version "2.0.2" 1389 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-2.0.2.tgz#66ea1d856db4e8a5470cadf6fce23ae5244ef2e1" 1390 | dependencies: 1391 | inherits "^2.0.1" 1392 | 1393 | hash-base@^3.0.0: 1394 | version "3.0.4" 1395 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" 1396 | dependencies: 1397 | inherits "^2.0.1" 1398 | safe-buffer "^5.0.1" 1399 | 1400 | hash-sum@^1.0.2: 1401 | version "1.0.2" 1402 | resolved "https://registry.yarnpkg.com/hash-sum/-/hash-sum-1.0.2.tgz#33b40777754c6432573c120cc3808bbd10d47f04" 1403 | 1404 | hash.js@^1.0.0, hash.js@^1.0.3: 1405 | version "1.1.3" 1406 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.3.tgz#340dedbe6290187151c1ea1d777a3448935df846" 1407 | dependencies: 1408 | inherits "^2.0.3" 1409 | minimalistic-assert "^1.0.0" 1410 | 1411 | hawk@3.1.3, hawk@~3.1.3: 1412 | version "3.1.3" 1413 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1414 | dependencies: 1415 | boom "2.x.x" 1416 | cryptiles "2.x.x" 1417 | hoek "2.x.x" 1418 | sntp "1.x.x" 1419 | 1420 | he@^1.1.0: 1421 | version "1.1.1" 1422 | resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd" 1423 | 1424 | hmac-drbg@^1.0.0: 1425 | version "1.0.1" 1426 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" 1427 | dependencies: 1428 | hash.js "^1.0.3" 1429 | minimalistic-assert "^1.0.0" 1430 | minimalistic-crypto-utils "^1.0.1" 1431 | 1432 | hoek@2.x.x: 1433 | version "2.16.3" 1434 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1435 | 1436 | hosted-git-info@^2.1.4: 1437 | version "2.5.0" 1438 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 1439 | 1440 | html-comment-regex@^1.1.0: 1441 | version "1.1.1" 1442 | resolved "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.1.tgz#668b93776eaae55ebde8f3ad464b307a4963625e" 1443 | 1444 | http-errors@1.6.2, http-errors@~1.6.2: 1445 | version "1.6.2" 1446 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.2.tgz#0a002cc85707192a7e7946ceedc11155f60ec736" 1447 | dependencies: 1448 | depd "1.1.1" 1449 | inherits "2.0.3" 1450 | setprototypeof "1.0.3" 1451 | statuses ">= 1.3.1 < 2" 1452 | 1453 | http-signature@~1.1.0: 1454 | version "1.1.1" 1455 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1456 | dependencies: 1457 | assert-plus "^0.2.0" 1458 | jsprim "^1.2.2" 1459 | sshpk "^1.7.0" 1460 | 1461 | https-browserify@^1.0.0: 1462 | version "1.0.0" 1463 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" 1464 | 1465 | iconv-lite@0.4.19: 1466 | version "0.4.19" 1467 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 1468 | 1469 | icss-replace-symbols@^1.1.0: 1470 | version "1.1.0" 1471 | resolved "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded" 1472 | 1473 | icss-utils@^2.1.0: 1474 | version "2.1.0" 1475 | resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-2.1.0.tgz#83f0a0ec378bf3246178b6c2ad9136f135b1c962" 1476 | dependencies: 1477 | postcss "^6.0.1" 1478 | 1479 | ieee754@^1.1.4: 1480 | version "1.1.8" 1481 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 1482 | 1483 | indexes-of@^1.0.1: 1484 | version "1.0.1" 1485 | resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" 1486 | 1487 | indexof@0.0.1: 1488 | version "0.0.1" 1489 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 1490 | 1491 | inflight@^1.0.4: 1492 | version "1.0.6" 1493 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1494 | dependencies: 1495 | once "^1.3.0" 1496 | wrappy "1" 1497 | 1498 | inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: 1499 | version "2.0.3" 1500 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1501 | 1502 | inherits@2.0.1: 1503 | version "2.0.1" 1504 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 1505 | 1506 | ini@~1.3.0: 1507 | version "1.3.5" 1508 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1509 | 1510 | interpret@^1.0.0: 1511 | version "1.1.0" 1512 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.1.0.tgz#7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614" 1513 | 1514 | invert-kv@^1.0.0: 1515 | version "1.0.0" 1516 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1517 | 1518 | ipaddr.js@1.5.2: 1519 | version "1.5.2" 1520 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.5.2.tgz#d4b505bde9946987ccf0fc58d9010ff9607e3fa0" 1521 | 1522 | is-absolute-url@^2.0.0: 1523 | version "2.1.0" 1524 | resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6" 1525 | 1526 | is-arrayish@^0.2.1: 1527 | version "0.2.1" 1528 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1529 | 1530 | is-binary-path@^1.0.0: 1531 | version "1.0.1" 1532 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1533 | dependencies: 1534 | binary-extensions "^1.0.0" 1535 | 1536 | is-buffer@^1.1.5: 1537 | version "1.1.6" 1538 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1539 | 1540 | is-builtin-module@^1.0.0: 1541 | version "1.0.0" 1542 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1543 | dependencies: 1544 | builtin-modules "^1.0.0" 1545 | 1546 | is-directory@^0.3.1: 1547 | version "0.3.1" 1548 | resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" 1549 | 1550 | is-dotfile@^1.0.0: 1551 | version "1.0.3" 1552 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1553 | 1554 | is-equal-shallow@^0.1.3: 1555 | version "0.1.3" 1556 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1557 | dependencies: 1558 | is-primitive "^2.0.0" 1559 | 1560 | is-extendable@^0.1.1: 1561 | version "0.1.1" 1562 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1563 | 1564 | is-extglob@^1.0.0: 1565 | version "1.0.0" 1566 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1567 | 1568 | is-fullwidth-code-point@^1.0.0: 1569 | version "1.0.0" 1570 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1571 | dependencies: 1572 | number-is-nan "^1.0.0" 1573 | 1574 | is-fullwidth-code-point@^2.0.0: 1575 | version "2.0.0" 1576 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1577 | 1578 | is-glob@^2.0.0, is-glob@^2.0.1: 1579 | version "2.0.1" 1580 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1581 | dependencies: 1582 | is-extglob "^1.0.0" 1583 | 1584 | is-number@^2.1.0: 1585 | version "2.1.0" 1586 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1587 | dependencies: 1588 | kind-of "^3.0.2" 1589 | 1590 | is-number@^3.0.0: 1591 | version "3.0.0" 1592 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1593 | dependencies: 1594 | kind-of "^3.0.2" 1595 | 1596 | is-plain-obj@^1.0.0: 1597 | version "1.1.0" 1598 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 1599 | 1600 | is-posix-bracket@^0.1.0: 1601 | version "0.1.1" 1602 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1603 | 1604 | is-primitive@^2.0.0: 1605 | version "2.0.0" 1606 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1607 | 1608 | is-stream@^1.1.0: 1609 | version "1.1.0" 1610 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1611 | 1612 | is-svg@^2.0.0: 1613 | version "2.1.0" 1614 | resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-2.1.0.tgz#cf61090da0d9efbcab8722deba6f032208dbb0e9" 1615 | dependencies: 1616 | html-comment-regex "^1.1.0" 1617 | 1618 | is-typedarray@~1.0.0: 1619 | version "1.0.0" 1620 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1621 | 1622 | isarray@0.0.1: 1623 | version "0.0.1" 1624 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 1625 | 1626 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1627 | version "1.0.0" 1628 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1629 | 1630 | isexe@^2.0.0: 1631 | version "2.0.0" 1632 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1633 | 1634 | isobject@^2.0.0: 1635 | version "2.1.0" 1636 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1637 | dependencies: 1638 | isarray "1.0.0" 1639 | 1640 | isstream@~0.1.2: 1641 | version "0.1.2" 1642 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1643 | 1644 | js-base64@^2.1.9: 1645 | version "2.4.0" 1646 | resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.4.0.tgz#9e566fee624751a1d720c966cd6226d29d4025aa" 1647 | 1648 | js-tokens@^3.0.2: 1649 | version "3.0.2" 1650 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1651 | 1652 | js-yaml@^3.4.3: 1653 | version "3.10.0" 1654 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" 1655 | dependencies: 1656 | argparse "^1.0.7" 1657 | esprima "^4.0.0" 1658 | 1659 | js-yaml@~3.7.0: 1660 | version "3.7.0" 1661 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.7.0.tgz#5c967ddd837a9bfdca5f2de84253abe8a1c03b80" 1662 | dependencies: 1663 | argparse "^1.0.7" 1664 | esprima "^2.6.0" 1665 | 1666 | jsbn@~0.1.0: 1667 | version "0.1.1" 1668 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1669 | 1670 | jsesc@~0.5.0: 1671 | version "0.5.0" 1672 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1673 | 1674 | json-loader@^0.5.4: 1675 | version "0.5.7" 1676 | resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.7.tgz#dca14a70235ff82f0ac9a3abeb60d337a365185d" 1677 | 1678 | json-schema-traverse@^0.3.0: 1679 | version "0.3.1" 1680 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 1681 | 1682 | json-schema@0.2.3: 1683 | version "0.2.3" 1684 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1685 | 1686 | json-stable-stringify@^1.0.1: 1687 | version "1.0.1" 1688 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1689 | dependencies: 1690 | jsonify "~0.0.0" 1691 | 1692 | json-stringify-safe@~5.0.1: 1693 | version "5.0.1" 1694 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1695 | 1696 | json3@3.3.2: 1697 | version "3.3.2" 1698 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" 1699 | 1700 | json5@^0.5.0, json5@^0.5.1: 1701 | version "0.5.1" 1702 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1703 | 1704 | jsonify@~0.0.0: 1705 | version "0.0.0" 1706 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1707 | 1708 | jsprim@^1.2.2: 1709 | version "1.4.1" 1710 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1711 | dependencies: 1712 | assert-plus "1.0.0" 1713 | extsprintf "1.3.0" 1714 | json-schema "0.2.3" 1715 | verror "1.10.0" 1716 | 1717 | kind-of@^3.0.2: 1718 | version "3.2.2" 1719 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1720 | dependencies: 1721 | is-buffer "^1.1.5" 1722 | 1723 | kind-of@^4.0.0: 1724 | version "4.0.0" 1725 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1726 | dependencies: 1727 | is-buffer "^1.1.5" 1728 | 1729 | lazy-cache@^1.0.3: 1730 | version "1.0.4" 1731 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1732 | 1733 | lcid@^1.0.0: 1734 | version "1.0.0" 1735 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1736 | dependencies: 1737 | invert-kv "^1.0.0" 1738 | 1739 | load-json-file@^2.0.0: 1740 | version "2.0.0" 1741 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 1742 | dependencies: 1743 | graceful-fs "^4.1.2" 1744 | parse-json "^2.2.0" 1745 | pify "^2.0.0" 1746 | strip-bom "^3.0.0" 1747 | 1748 | loader-runner@^2.3.0: 1749 | version "2.3.0" 1750 | resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.3.0.tgz#f482aea82d543e07921700d5a46ef26fdac6b8a2" 1751 | 1752 | loader-utils@^1.0.2, loader-utils@^1.1.0: 1753 | version "1.1.0" 1754 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd" 1755 | dependencies: 1756 | big.js "^3.1.3" 1757 | emojis-list "^2.0.0" 1758 | json5 "^0.5.0" 1759 | 1760 | locate-path@^2.0.0: 1761 | version "2.0.0" 1762 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1763 | dependencies: 1764 | p-locate "^2.0.0" 1765 | path-exists "^3.0.0" 1766 | 1767 | lodash.camelcase@^4.3.0: 1768 | version "4.3.0" 1769 | resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" 1770 | 1771 | lodash.memoize@^4.1.2: 1772 | version "4.1.2" 1773 | resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" 1774 | 1775 | lodash.uniq@^4.5.0: 1776 | version "4.5.0" 1777 | resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" 1778 | 1779 | lodash@^4.14.0: 1780 | version "4.17.4" 1781 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1782 | 1783 | longest@^1.0.1: 1784 | version "1.0.1" 1785 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 1786 | 1787 | lru-cache@^4.0.1, lru-cache@^4.1.1: 1788 | version "4.1.1" 1789 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 1790 | dependencies: 1791 | pseudomap "^1.0.2" 1792 | yallist "^2.1.2" 1793 | 1794 | macaddress@^0.2.8: 1795 | version "0.2.8" 1796 | resolved "https://registry.yarnpkg.com/macaddress/-/macaddress-0.2.8.tgz#5904dc537c39ec6dbefeae902327135fa8511f12" 1797 | 1798 | math-expression-evaluator@^1.2.14: 1799 | version "1.2.17" 1800 | resolved "https://registry.yarnpkg.com/math-expression-evaluator/-/math-expression-evaluator-1.2.17.tgz#de819fdbcd84dccd8fae59c6aeb79615b9d266ac" 1801 | 1802 | md5.js@^1.3.4: 1803 | version "1.3.4" 1804 | resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.4.tgz#e9bdbde94a20a5ac18b04340fc5764d5b09d901d" 1805 | dependencies: 1806 | hash-base "^3.0.0" 1807 | inherits "^2.0.1" 1808 | 1809 | media-typer@0.3.0: 1810 | version "0.3.0" 1811 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 1812 | 1813 | mem@^1.1.0: 1814 | version "1.1.0" 1815 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 1816 | dependencies: 1817 | mimic-fn "^1.0.0" 1818 | 1819 | memory-fs@^0.4.0, memory-fs@~0.4.1: 1820 | version "0.4.1" 1821 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" 1822 | dependencies: 1823 | errno "^0.1.3" 1824 | readable-stream "^2.0.1" 1825 | 1826 | merge-descriptors@1.0.1: 1827 | version "1.0.1" 1828 | resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" 1829 | 1830 | methods@~1.1.2: 1831 | version "1.1.2" 1832 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" 1833 | 1834 | micromatch@^2.1.5: 1835 | version "2.3.11" 1836 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1837 | dependencies: 1838 | arr-diff "^2.0.0" 1839 | array-unique "^0.2.1" 1840 | braces "^1.8.2" 1841 | expand-brackets "^0.1.4" 1842 | extglob "^0.3.1" 1843 | filename-regex "^2.0.0" 1844 | is-extglob "^1.0.0" 1845 | is-glob "^2.0.1" 1846 | kind-of "^3.0.2" 1847 | normalize-path "^2.0.1" 1848 | object.omit "^2.0.0" 1849 | parse-glob "^3.0.4" 1850 | regex-cache "^0.4.2" 1851 | 1852 | miller-rabin@^4.0.0: 1853 | version "4.0.1" 1854 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" 1855 | dependencies: 1856 | bn.js "^4.0.0" 1857 | brorand "^1.0.1" 1858 | 1859 | mime-db@~1.30.0: 1860 | version "1.30.0" 1861 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 1862 | 1863 | mime-types@^2.1.12, mime-types@~2.1.11, mime-types@~2.1.15, mime-types@~2.1.16, mime-types@~2.1.7: 1864 | version "2.1.17" 1865 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 1866 | dependencies: 1867 | mime-db "~1.30.0" 1868 | 1869 | mime@1.4.1: 1870 | version "1.4.1" 1871 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.4.1.tgz#121f9ebc49e3766f311a76e1fa1c8003c4b03aa6" 1872 | 1873 | mimic-fn@^1.0.0: 1874 | version "1.1.0" 1875 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 1876 | 1877 | minimalistic-assert@^1.0.0: 1878 | version "1.0.0" 1879 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" 1880 | 1881 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: 1882 | version "1.0.1" 1883 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 1884 | 1885 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 1886 | version "3.0.4" 1887 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1888 | dependencies: 1889 | brace-expansion "^1.1.7" 1890 | 1891 | minimist@0.0.8: 1892 | version "0.0.8" 1893 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1894 | 1895 | minimist@^1.2.0: 1896 | version "1.2.0" 1897 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1898 | 1899 | "mkdirp@>=0.5 0", mkdirp@^0.5.1, mkdirp@~0.5.0, mkdirp@~0.5.1: 1900 | version "0.5.1" 1901 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1902 | dependencies: 1903 | minimist "0.0.8" 1904 | 1905 | ms@0.7.1: 1906 | version "0.7.1" 1907 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 1908 | 1909 | ms@0.7.2: 1910 | version "0.7.2" 1911 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 1912 | 1913 | ms@2.0.0: 1914 | version "2.0.0" 1915 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1916 | 1917 | nan@^2.3.0: 1918 | version "2.8.0" 1919 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.8.0.tgz#ed715f3fe9de02b57a5e6252d90a96675e1f085a" 1920 | 1921 | negotiator@0.6.1: 1922 | version "0.6.1" 1923 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" 1924 | 1925 | node-libs-browser@^2.0.0: 1926 | version "2.1.0" 1927 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.1.0.tgz#5f94263d404f6e44767d726901fff05478d600df" 1928 | dependencies: 1929 | assert "^1.1.1" 1930 | browserify-zlib "^0.2.0" 1931 | buffer "^4.3.0" 1932 | console-browserify "^1.1.0" 1933 | constants-browserify "^1.0.0" 1934 | crypto-browserify "^3.11.0" 1935 | domain-browser "^1.1.1" 1936 | events "^1.0.0" 1937 | https-browserify "^1.0.0" 1938 | os-browserify "^0.3.0" 1939 | path-browserify "0.0.0" 1940 | process "^0.11.10" 1941 | punycode "^1.2.4" 1942 | querystring-es3 "^0.2.0" 1943 | readable-stream "^2.3.3" 1944 | stream-browserify "^2.0.1" 1945 | stream-http "^2.7.2" 1946 | string_decoder "^1.0.0" 1947 | timers-browserify "^2.0.4" 1948 | tty-browserify "0.0.0" 1949 | url "^0.11.0" 1950 | util "^0.10.3" 1951 | vm-browserify "0.0.4" 1952 | 1953 | node-pre-gyp@^0.6.39: 1954 | version "0.6.39" 1955 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" 1956 | dependencies: 1957 | detect-libc "^1.0.2" 1958 | hawk "3.1.3" 1959 | mkdirp "^0.5.1" 1960 | nopt "^4.0.1" 1961 | npmlog "^4.0.2" 1962 | rc "^1.1.7" 1963 | request "2.81.0" 1964 | rimraf "^2.6.1" 1965 | semver "^5.3.0" 1966 | tar "^2.2.1" 1967 | tar-pack "^3.4.0" 1968 | 1969 | nopt@^4.0.1: 1970 | version "4.0.1" 1971 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1972 | dependencies: 1973 | abbrev "1" 1974 | osenv "^0.1.4" 1975 | 1976 | normalize-package-data@^2.3.2: 1977 | version "2.4.0" 1978 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 1979 | dependencies: 1980 | hosted-git-info "^2.1.4" 1981 | is-builtin-module "^1.0.0" 1982 | semver "2 || 3 || 4 || 5" 1983 | validate-npm-package-license "^3.0.1" 1984 | 1985 | normalize-path@^2.0.0, normalize-path@^2.0.1: 1986 | version "2.1.1" 1987 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1988 | dependencies: 1989 | remove-trailing-separator "^1.0.1" 1990 | 1991 | normalize-range@^0.1.2: 1992 | version "0.1.2" 1993 | resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" 1994 | 1995 | normalize-url@^1.4.0: 1996 | version "1.9.1" 1997 | resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-1.9.1.tgz#2cc0d66b31ea23036458436e3620d85954c66c3c" 1998 | dependencies: 1999 | object-assign "^4.0.1" 2000 | prepend-http "^1.0.0" 2001 | query-string "^4.1.0" 2002 | sort-keys "^1.0.0" 2003 | 2004 | npm-run-path@^2.0.0: 2005 | version "2.0.2" 2006 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2007 | dependencies: 2008 | path-key "^2.0.0" 2009 | 2010 | npmlog@^4.0.2: 2011 | version "4.1.2" 2012 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2013 | dependencies: 2014 | are-we-there-yet "~1.1.2" 2015 | console-control-strings "~1.1.0" 2016 | gauge "~2.7.3" 2017 | set-blocking "~2.0.0" 2018 | 2019 | num2fraction@^1.2.2: 2020 | version "1.2.2" 2021 | resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" 2022 | 2023 | number-is-nan@^1.0.0: 2024 | version "1.0.1" 2025 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2026 | 2027 | oauth-sign@~0.8.1: 2028 | version "0.8.2" 2029 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2030 | 2031 | object-assign@4.1.0: 2032 | version "4.1.0" 2033 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.0.tgz#7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0" 2034 | 2035 | object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: 2036 | version "4.1.1" 2037 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2038 | 2039 | object-component@0.0.3: 2040 | version "0.0.3" 2041 | resolved "https://registry.yarnpkg.com/object-component/-/object-component-0.0.3.tgz#f0c69aa50efc95b866c186f400a33769cb2f1291" 2042 | 2043 | object.omit@^2.0.0: 2044 | version "2.0.1" 2045 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2046 | dependencies: 2047 | for-own "^0.1.4" 2048 | is-extendable "^0.1.1" 2049 | 2050 | on-finished@~2.3.0: 2051 | version "2.3.0" 2052 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 2053 | dependencies: 2054 | ee-first "1.1.1" 2055 | 2056 | once@^1.3.0, once@^1.3.3: 2057 | version "1.4.0" 2058 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2059 | dependencies: 2060 | wrappy "1" 2061 | 2062 | options@>=0.0.5: 2063 | version "0.0.6" 2064 | resolved "https://registry.yarnpkg.com/options/-/options-0.0.6.tgz#ec22d312806bb53e731773e7cdaefcf1c643128f" 2065 | 2066 | os-browserify@^0.3.0: 2067 | version "0.3.0" 2068 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" 2069 | 2070 | os-homedir@^1.0.0, os-homedir@^1.0.1: 2071 | version "1.0.2" 2072 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2073 | 2074 | os-locale@^2.0.0: 2075 | version "2.1.0" 2076 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 2077 | dependencies: 2078 | execa "^0.7.0" 2079 | lcid "^1.0.0" 2080 | mem "^1.1.0" 2081 | 2082 | os-tmpdir@^1.0.0: 2083 | version "1.0.2" 2084 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2085 | 2086 | osenv@^0.1.4: 2087 | version "0.1.4" 2088 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2089 | dependencies: 2090 | os-homedir "^1.0.0" 2091 | os-tmpdir "^1.0.0" 2092 | 2093 | p-finally@^1.0.0: 2094 | version "1.0.0" 2095 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2096 | 2097 | p-limit@^1.1.0: 2098 | version "1.2.0" 2099 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.2.0.tgz#0e92b6bedcb59f022c13d0f1949dc82d15909f1c" 2100 | dependencies: 2101 | p-try "^1.0.0" 2102 | 2103 | p-locate@^2.0.0: 2104 | version "2.0.0" 2105 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2106 | dependencies: 2107 | p-limit "^1.1.0" 2108 | 2109 | p-try@^1.0.0: 2110 | version "1.0.0" 2111 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 2112 | 2113 | pako@~1.0.5: 2114 | version "1.0.6" 2115 | resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.6.tgz#0101211baa70c4bca4a0f63f2206e97b7dfaf258" 2116 | 2117 | parse-asn1@^5.0.0: 2118 | version "5.1.0" 2119 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712" 2120 | dependencies: 2121 | asn1.js "^4.0.0" 2122 | browserify-aes "^1.0.0" 2123 | create-hash "^1.1.0" 2124 | evp_bytestokey "^1.0.0" 2125 | pbkdf2 "^3.0.3" 2126 | 2127 | parse-glob@^3.0.4: 2128 | version "3.0.4" 2129 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2130 | dependencies: 2131 | glob-base "^0.3.0" 2132 | is-dotfile "^1.0.0" 2133 | is-extglob "^1.0.0" 2134 | is-glob "^2.0.0" 2135 | 2136 | parse-json@^2.2.0: 2137 | version "2.2.0" 2138 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2139 | dependencies: 2140 | error-ex "^1.2.0" 2141 | 2142 | parsejson@0.0.3: 2143 | version "0.0.3" 2144 | resolved "https://registry.yarnpkg.com/parsejson/-/parsejson-0.0.3.tgz#ab7e3759f209ece99437973f7d0f1f64ae0e64ab" 2145 | dependencies: 2146 | better-assert "~1.0.0" 2147 | 2148 | parseqs@0.0.5: 2149 | version "0.0.5" 2150 | resolved "https://registry.yarnpkg.com/parseqs/-/parseqs-0.0.5.tgz#d5208a3738e46766e291ba2ea173684921a8b89d" 2151 | dependencies: 2152 | better-assert "~1.0.0" 2153 | 2154 | parseuri@0.0.5: 2155 | version "0.0.5" 2156 | resolved "https://registry.yarnpkg.com/parseuri/-/parseuri-0.0.5.tgz#80204a50d4dbb779bfdc6ebe2778d90e4bce320a" 2157 | dependencies: 2158 | better-assert "~1.0.0" 2159 | 2160 | parseurl@~1.3.2: 2161 | version "1.3.2" 2162 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.2.tgz#fc289d4ed8993119460c156253262cdc8de65bf3" 2163 | 2164 | path-browserify@0.0.0: 2165 | version "0.0.0" 2166 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" 2167 | 2168 | path-exists@^3.0.0: 2169 | version "3.0.0" 2170 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2171 | 2172 | path-is-absolute@^1.0.0: 2173 | version "1.0.1" 2174 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2175 | 2176 | path-key@^2.0.0: 2177 | version "2.0.1" 2178 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2179 | 2180 | path-parse@^1.0.5: 2181 | version "1.0.5" 2182 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2183 | 2184 | path-to-regexp@0.1.7: 2185 | version "0.1.7" 2186 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" 2187 | 2188 | path-type@^2.0.0: 2189 | version "2.0.0" 2190 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 2191 | dependencies: 2192 | pify "^2.0.0" 2193 | 2194 | pbkdf2@^3.0.3: 2195 | version "3.0.14" 2196 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.14.tgz#a35e13c64799b06ce15320f459c230e68e73bade" 2197 | dependencies: 2198 | create-hash "^1.1.2" 2199 | create-hmac "^1.1.4" 2200 | ripemd160 "^2.0.1" 2201 | safe-buffer "^5.0.1" 2202 | sha.js "^2.4.8" 2203 | 2204 | performance-now@^0.2.0: 2205 | version "0.2.0" 2206 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2207 | 2208 | pify@^2.0.0: 2209 | version "2.3.0" 2210 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2211 | 2212 | postcss-calc@^5.2.0: 2213 | version "5.3.1" 2214 | resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-5.3.1.tgz#77bae7ca928ad85716e2fda42f261bf7c1d65b5e" 2215 | dependencies: 2216 | postcss "^5.0.2" 2217 | postcss-message-helpers "^2.0.0" 2218 | reduce-css-calc "^1.2.6" 2219 | 2220 | postcss-colormin@^2.1.8: 2221 | version "2.2.2" 2222 | resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-2.2.2.tgz#6631417d5f0e909a3d7ec26b24c8a8d1e4f96e4b" 2223 | dependencies: 2224 | colormin "^1.0.5" 2225 | postcss "^5.0.13" 2226 | postcss-value-parser "^3.2.3" 2227 | 2228 | postcss-convert-values@^2.3.4: 2229 | version "2.6.1" 2230 | resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-2.6.1.tgz#bbd8593c5c1fd2e3d1c322bb925dcae8dae4d62d" 2231 | dependencies: 2232 | postcss "^5.0.11" 2233 | postcss-value-parser "^3.1.2" 2234 | 2235 | postcss-discard-comments@^2.0.4: 2236 | version "2.0.4" 2237 | resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz#befe89fafd5b3dace5ccce51b76b81514be00e3d" 2238 | dependencies: 2239 | postcss "^5.0.14" 2240 | 2241 | postcss-discard-duplicates@^2.0.1: 2242 | version "2.1.0" 2243 | resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-2.1.0.tgz#b9abf27b88ac188158a5eb12abcae20263b91932" 2244 | dependencies: 2245 | postcss "^5.0.4" 2246 | 2247 | postcss-discard-empty@^2.0.1: 2248 | version "2.1.0" 2249 | resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz#d2b4bd9d5ced5ebd8dcade7640c7d7cd7f4f92b5" 2250 | dependencies: 2251 | postcss "^5.0.14" 2252 | 2253 | postcss-discard-overridden@^0.1.1: 2254 | version "0.1.1" 2255 | resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz#8b1eaf554f686fb288cd874c55667b0aa3668d58" 2256 | dependencies: 2257 | postcss "^5.0.16" 2258 | 2259 | postcss-discard-unused@^2.2.1: 2260 | version "2.2.3" 2261 | resolved "https://registry.yarnpkg.com/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz#bce30b2cc591ffc634322b5fb3464b6d934f4433" 2262 | dependencies: 2263 | postcss "^5.0.14" 2264 | uniqs "^2.0.0" 2265 | 2266 | postcss-filter-plugins@^2.0.0: 2267 | version "2.0.2" 2268 | resolved "https://registry.yarnpkg.com/postcss-filter-plugins/-/postcss-filter-plugins-2.0.2.tgz#6d85862534d735ac420e4a85806e1f5d4286d84c" 2269 | dependencies: 2270 | postcss "^5.0.4" 2271 | uniqid "^4.0.0" 2272 | 2273 | postcss-load-config@^1.1.0: 2274 | version "1.2.0" 2275 | resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-1.2.0.tgz#539e9afc9ddc8620121ebf9d8c3673e0ce50d28a" 2276 | dependencies: 2277 | cosmiconfig "^2.1.0" 2278 | object-assign "^4.1.0" 2279 | postcss-load-options "^1.2.0" 2280 | postcss-load-plugins "^2.3.0" 2281 | 2282 | postcss-load-options@^1.2.0: 2283 | version "1.2.0" 2284 | resolved "https://registry.yarnpkg.com/postcss-load-options/-/postcss-load-options-1.2.0.tgz#b098b1559ddac2df04bc0bb375f99a5cfe2b6d8c" 2285 | dependencies: 2286 | cosmiconfig "^2.1.0" 2287 | object-assign "^4.1.0" 2288 | 2289 | postcss-load-plugins@^2.3.0: 2290 | version "2.3.0" 2291 | resolved "https://registry.yarnpkg.com/postcss-load-plugins/-/postcss-load-plugins-2.3.0.tgz#745768116599aca2f009fad426b00175049d8d92" 2292 | dependencies: 2293 | cosmiconfig "^2.1.1" 2294 | object-assign "^4.1.0" 2295 | 2296 | postcss-merge-idents@^2.1.5: 2297 | version "2.1.7" 2298 | resolved "https://registry.yarnpkg.com/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz#4c5530313c08e1d5b3bbf3d2bbc747e278eea270" 2299 | dependencies: 2300 | has "^1.0.1" 2301 | postcss "^5.0.10" 2302 | postcss-value-parser "^3.1.1" 2303 | 2304 | postcss-merge-longhand@^2.0.1: 2305 | version "2.0.2" 2306 | resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-2.0.2.tgz#23d90cd127b0a77994915332739034a1a4f3d658" 2307 | dependencies: 2308 | postcss "^5.0.4" 2309 | 2310 | postcss-merge-rules@^2.0.3: 2311 | version "2.1.2" 2312 | resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-2.1.2.tgz#d1df5dfaa7b1acc3be553f0e9e10e87c61b5f721" 2313 | dependencies: 2314 | browserslist "^1.5.2" 2315 | caniuse-api "^1.5.2" 2316 | postcss "^5.0.4" 2317 | postcss-selector-parser "^2.2.2" 2318 | vendors "^1.0.0" 2319 | 2320 | postcss-message-helpers@^2.0.0: 2321 | version "2.0.0" 2322 | resolved "https://registry.yarnpkg.com/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz#a4f2f4fab6e4fe002f0aed000478cdf52f9ba60e" 2323 | 2324 | postcss-minify-font-values@^1.0.2: 2325 | version "1.0.5" 2326 | resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz#4b58edb56641eba7c8474ab3526cafd7bbdecb69" 2327 | dependencies: 2328 | object-assign "^4.0.1" 2329 | postcss "^5.0.4" 2330 | postcss-value-parser "^3.0.2" 2331 | 2332 | postcss-minify-gradients@^1.0.1: 2333 | version "1.0.5" 2334 | resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz#5dbda11373703f83cfb4a3ea3881d8d75ff5e6e1" 2335 | dependencies: 2336 | postcss "^5.0.12" 2337 | postcss-value-parser "^3.3.0" 2338 | 2339 | postcss-minify-params@^1.0.4: 2340 | version "1.2.2" 2341 | resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-1.2.2.tgz#ad2ce071373b943b3d930a3fa59a358c28d6f1f3" 2342 | dependencies: 2343 | alphanum-sort "^1.0.1" 2344 | postcss "^5.0.2" 2345 | postcss-value-parser "^3.0.2" 2346 | uniqs "^2.0.0" 2347 | 2348 | postcss-minify-selectors@^2.0.4: 2349 | version "2.1.1" 2350 | resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-2.1.1.tgz#b2c6a98c0072cf91b932d1a496508114311735bf" 2351 | dependencies: 2352 | alphanum-sort "^1.0.2" 2353 | has "^1.0.1" 2354 | postcss "^5.0.14" 2355 | postcss-selector-parser "^2.0.0" 2356 | 2357 | postcss-modules-extract-imports@^1.1.0: 2358 | version "1.2.0" 2359 | resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.2.0.tgz#66140ecece38ef06bf0d3e355d69bf59d141ea85" 2360 | dependencies: 2361 | postcss "^6.0.1" 2362 | 2363 | postcss-modules-local-by-default@^1.2.0: 2364 | version "1.2.0" 2365 | resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz#f7d80c398c5a393fa7964466bd19500a7d61c069" 2366 | dependencies: 2367 | css-selector-tokenizer "^0.7.0" 2368 | postcss "^6.0.1" 2369 | 2370 | postcss-modules-scope@^1.1.0: 2371 | version "1.1.0" 2372 | resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz#d6ea64994c79f97b62a72b426fbe6056a194bb90" 2373 | dependencies: 2374 | css-selector-tokenizer "^0.7.0" 2375 | postcss "^6.0.1" 2376 | 2377 | postcss-modules-values@^1.3.0: 2378 | version "1.3.0" 2379 | resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz#ecffa9d7e192518389f42ad0e83f72aec456ea20" 2380 | dependencies: 2381 | icss-replace-symbols "^1.1.0" 2382 | postcss "^6.0.1" 2383 | 2384 | postcss-normalize-charset@^1.1.0: 2385 | version "1.1.1" 2386 | resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz#ef9ee71212d7fe759c78ed162f61ed62b5cb93f1" 2387 | dependencies: 2388 | postcss "^5.0.5" 2389 | 2390 | postcss-normalize-url@^3.0.7: 2391 | version "3.0.8" 2392 | resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz#108f74b3f2fcdaf891a2ffa3ea4592279fc78222" 2393 | dependencies: 2394 | is-absolute-url "^2.0.0" 2395 | normalize-url "^1.4.0" 2396 | postcss "^5.0.14" 2397 | postcss-value-parser "^3.2.3" 2398 | 2399 | postcss-ordered-values@^2.1.0: 2400 | version "2.2.3" 2401 | resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-2.2.3.tgz#eec6c2a67b6c412a8db2042e77fe8da43f95c11d" 2402 | dependencies: 2403 | postcss "^5.0.4" 2404 | postcss-value-parser "^3.0.1" 2405 | 2406 | postcss-reduce-idents@^2.2.2: 2407 | version "2.4.0" 2408 | resolved "https://registry.yarnpkg.com/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz#c2c6d20cc958284f6abfbe63f7609bf409059ad3" 2409 | dependencies: 2410 | postcss "^5.0.4" 2411 | postcss-value-parser "^3.0.2" 2412 | 2413 | postcss-reduce-initial@^1.0.0: 2414 | version "1.0.1" 2415 | resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-1.0.1.tgz#68f80695f045d08263a879ad240df8dd64f644ea" 2416 | dependencies: 2417 | postcss "^5.0.4" 2418 | 2419 | postcss-reduce-transforms@^1.0.3: 2420 | version "1.0.4" 2421 | resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz#ff76f4d8212437b31c298a42d2e1444025771ae1" 2422 | dependencies: 2423 | has "^1.0.1" 2424 | postcss "^5.0.8" 2425 | postcss-value-parser "^3.0.1" 2426 | 2427 | postcss-selector-parser@^2.0.0, postcss-selector-parser@^2.2.2: 2428 | version "2.2.3" 2429 | resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz#f9437788606c3c9acee16ffe8d8b16297f27bb90" 2430 | dependencies: 2431 | flatten "^1.0.2" 2432 | indexes-of "^1.0.1" 2433 | uniq "^1.0.1" 2434 | 2435 | postcss-svgo@^2.1.1: 2436 | version "2.1.6" 2437 | resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-2.1.6.tgz#b6df18aa613b666e133f08adb5219c2684ac108d" 2438 | dependencies: 2439 | is-svg "^2.0.0" 2440 | postcss "^5.0.14" 2441 | postcss-value-parser "^3.2.3" 2442 | svgo "^0.7.0" 2443 | 2444 | postcss-unique-selectors@^2.0.2: 2445 | version "2.0.2" 2446 | resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz#981d57d29ddcb33e7b1dfe1fd43b8649f933ca1d" 2447 | dependencies: 2448 | alphanum-sort "^1.0.1" 2449 | postcss "^5.0.4" 2450 | uniqs "^2.0.0" 2451 | 2452 | postcss-value-parser@^3.0.1, postcss-value-parser@^3.0.2, postcss-value-parser@^3.1.1, postcss-value-parser@^3.1.2, postcss-value-parser@^3.2.3, postcss-value-parser@^3.3.0: 2453 | version "3.3.0" 2454 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz#87f38f9f18f774a4ab4c8a232f5c5ce8872a9d15" 2455 | 2456 | postcss-zindex@^2.0.1: 2457 | version "2.2.0" 2458 | resolved "https://registry.yarnpkg.com/postcss-zindex/-/postcss-zindex-2.2.0.tgz#d2109ddc055b91af67fc4cb3b025946639d2af22" 2459 | dependencies: 2460 | has "^1.0.1" 2461 | postcss "^5.0.4" 2462 | uniqs "^2.0.0" 2463 | 2464 | postcss@^5.0.10, postcss@^5.0.11, postcss@^5.0.12, postcss@^5.0.13, postcss@^5.0.14, postcss@^5.0.16, postcss@^5.0.2, postcss@^5.0.4, postcss@^5.0.5, postcss@^5.0.6, postcss@^5.0.8, postcss@^5.2.16: 2465 | version "5.2.18" 2466 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-5.2.18.tgz#badfa1497d46244f6390f58b319830d9107853c5" 2467 | dependencies: 2468 | chalk "^1.1.3" 2469 | js-base64 "^2.1.9" 2470 | source-map "^0.5.6" 2471 | supports-color "^3.2.3" 2472 | 2473 | postcss@^6.0.1, postcss@^6.0.8: 2474 | version "6.0.16" 2475 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.16.tgz#112e2fe2a6d2109be0957687243170ea5589e146" 2476 | dependencies: 2477 | chalk "^2.3.0" 2478 | source-map "^0.6.1" 2479 | supports-color "^5.1.0" 2480 | 2481 | prepend-http@^1.0.0: 2482 | version "1.0.4" 2483 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 2484 | 2485 | preserve@^0.2.0: 2486 | version "0.2.0" 2487 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2488 | 2489 | prettier@^1.7.0: 2490 | version "1.9.2" 2491 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.9.2.tgz#96bc2132f7a32338e6078aeb29727178c6335827" 2492 | 2493 | process-nextick-args@~1.0.6: 2494 | version "1.0.7" 2495 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2496 | 2497 | process@^0.11.10: 2498 | version "0.11.10" 2499 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" 2500 | 2501 | proxy-addr@~2.0.2: 2502 | version "2.0.2" 2503 | resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.2.tgz#6571504f47bb988ec8180253f85dd7e14952bdec" 2504 | dependencies: 2505 | forwarded "~0.1.2" 2506 | ipaddr.js "1.5.2" 2507 | 2508 | prr@~1.0.1: 2509 | version "1.0.1" 2510 | resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" 2511 | 2512 | pseudomap@^1.0.2: 2513 | version "1.0.2" 2514 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2515 | 2516 | public-encrypt@^4.0.0: 2517 | version "4.0.0" 2518 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" 2519 | dependencies: 2520 | bn.js "^4.1.0" 2521 | browserify-rsa "^4.0.0" 2522 | create-hash "^1.1.0" 2523 | parse-asn1 "^5.0.0" 2524 | randombytes "^2.0.1" 2525 | 2526 | punycode@1.3.2: 2527 | version "1.3.2" 2528 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 2529 | 2530 | punycode@^1.2.4, punycode@^1.4.1: 2531 | version "1.4.1" 2532 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2533 | 2534 | q@^1.1.2: 2535 | version "1.5.1" 2536 | resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" 2537 | 2538 | qs@6.5.1: 2539 | version "6.5.1" 2540 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8" 2541 | 2542 | qs@~6.4.0: 2543 | version "6.4.0" 2544 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2545 | 2546 | query-string@^4.1.0: 2547 | version "4.3.4" 2548 | resolved "https://registry.yarnpkg.com/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb" 2549 | dependencies: 2550 | object-assign "^4.1.0" 2551 | strict-uri-encode "^1.0.0" 2552 | 2553 | querystring-es3@^0.2.0: 2554 | version "0.2.1" 2555 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 2556 | 2557 | querystring@0.2.0: 2558 | version "0.2.0" 2559 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 2560 | 2561 | randomatic@^1.1.3: 2562 | version "1.1.7" 2563 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 2564 | dependencies: 2565 | is-number "^3.0.0" 2566 | kind-of "^4.0.0" 2567 | 2568 | randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5: 2569 | version "2.0.5" 2570 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.5.tgz#dc009a246b8d09a177b4b7a0ae77bc570f4b1b79" 2571 | dependencies: 2572 | safe-buffer "^5.1.0" 2573 | 2574 | randomfill@^1.0.3: 2575 | version "1.0.3" 2576 | resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.3.tgz#b96b7df587f01dd91726c418f30553b1418e3d62" 2577 | dependencies: 2578 | randombytes "^2.0.5" 2579 | safe-buffer "^5.1.0" 2580 | 2581 | range-parser@~1.2.0: 2582 | version "1.2.0" 2583 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" 2584 | 2585 | raw-body@2.3.2: 2586 | version "2.3.2" 2587 | resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.3.2.tgz#bcd60c77d3eb93cde0050295c3f379389bc88f89" 2588 | dependencies: 2589 | bytes "3.0.0" 2590 | http-errors "1.6.2" 2591 | iconv-lite "0.4.19" 2592 | unpipe "1.0.0" 2593 | 2594 | rc@^1.1.7: 2595 | version "1.2.2" 2596 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.2.tgz#d8ce9cb57e8d64d9c7badd9876c7c34cbe3c7077" 2597 | dependencies: 2598 | deep-extend "~0.4.0" 2599 | ini "~1.3.0" 2600 | minimist "^1.2.0" 2601 | strip-json-comments "~2.0.1" 2602 | 2603 | read-pkg-up@^2.0.0: 2604 | version "2.0.0" 2605 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 2606 | dependencies: 2607 | find-up "^2.0.0" 2608 | read-pkg "^2.0.0" 2609 | 2610 | read-pkg@^2.0.0: 2611 | version "2.0.0" 2612 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 2613 | dependencies: 2614 | load-json-file "^2.0.0" 2615 | normalize-package-data "^2.3.2" 2616 | path-type "^2.0.0" 2617 | 2618 | readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.6, readable-stream@^2.3.3: 2619 | version "2.3.3" 2620 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 2621 | dependencies: 2622 | core-util-is "~1.0.0" 2623 | inherits "~2.0.3" 2624 | isarray "~1.0.0" 2625 | process-nextick-args "~1.0.6" 2626 | safe-buffer "~5.1.1" 2627 | string_decoder "~1.0.3" 2628 | util-deprecate "~1.0.1" 2629 | 2630 | readdirp@^2.0.0: 2631 | version "2.1.0" 2632 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2633 | dependencies: 2634 | graceful-fs "^4.1.2" 2635 | minimatch "^3.0.2" 2636 | readable-stream "^2.0.2" 2637 | set-immediate-shim "^1.0.1" 2638 | 2639 | reduce-css-calc@^1.2.6: 2640 | version "1.3.0" 2641 | resolved "https://registry.yarnpkg.com/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz#747c914e049614a4c9cfbba629871ad1d2927716" 2642 | dependencies: 2643 | balanced-match "^0.4.2" 2644 | math-expression-evaluator "^1.2.14" 2645 | reduce-function-call "^1.0.1" 2646 | 2647 | reduce-function-call@^1.0.1: 2648 | version "1.0.2" 2649 | resolved "https://registry.yarnpkg.com/reduce-function-call/-/reduce-function-call-1.0.2.tgz#5a200bf92e0e37751752fe45b0ab330fd4b6be99" 2650 | dependencies: 2651 | balanced-match "^0.4.2" 2652 | 2653 | regenerate@^1.2.1: 2654 | version "1.3.3" 2655 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f" 2656 | 2657 | regex-cache@^0.4.2: 2658 | version "0.4.4" 2659 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 2660 | dependencies: 2661 | is-equal-shallow "^0.1.3" 2662 | 2663 | regexpu-core@^1.0.0: 2664 | version "1.0.0" 2665 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-1.0.0.tgz#86a763f58ee4d7c2f6b102e4764050de7ed90c6b" 2666 | dependencies: 2667 | regenerate "^1.2.1" 2668 | regjsgen "^0.2.0" 2669 | regjsparser "^0.1.4" 2670 | 2671 | regjsgen@^0.2.0: 2672 | version "0.2.0" 2673 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2674 | 2675 | regjsparser@^0.1.4: 2676 | version "0.1.5" 2677 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2678 | dependencies: 2679 | jsesc "~0.5.0" 2680 | 2681 | remove-trailing-separator@^1.0.1: 2682 | version "1.1.0" 2683 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2684 | 2685 | repeat-element@^1.1.2: 2686 | version "1.1.2" 2687 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2688 | 2689 | repeat-string@^1.5.2: 2690 | version "1.6.1" 2691 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2692 | 2693 | request@2.81.0: 2694 | version "2.81.0" 2695 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2696 | dependencies: 2697 | aws-sign2 "~0.6.0" 2698 | aws4 "^1.2.1" 2699 | caseless "~0.12.0" 2700 | combined-stream "~1.0.5" 2701 | extend "~3.0.0" 2702 | forever-agent "~0.6.1" 2703 | form-data "~2.1.1" 2704 | har-validator "~4.2.1" 2705 | hawk "~3.1.3" 2706 | http-signature "~1.1.0" 2707 | is-typedarray "~1.0.0" 2708 | isstream "~0.1.2" 2709 | json-stringify-safe "~5.0.1" 2710 | mime-types "~2.1.7" 2711 | oauth-sign "~0.8.1" 2712 | performance-now "^0.2.0" 2713 | qs "~6.4.0" 2714 | safe-buffer "^5.0.1" 2715 | stringstream "~0.0.4" 2716 | tough-cookie "~2.3.0" 2717 | tunnel-agent "^0.6.0" 2718 | uuid "^3.0.0" 2719 | 2720 | require-directory@^2.1.1: 2721 | version "2.1.1" 2722 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2723 | 2724 | require-from-string@^1.1.0: 2725 | version "1.2.1" 2726 | resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-1.2.1.tgz#529c9ccef27380adfec9a2f965b649bbee636418" 2727 | 2728 | require-main-filename@^1.0.1: 2729 | version "1.0.1" 2730 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2731 | 2732 | resolve@^1.4.0: 2733 | version "1.5.0" 2734 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.5.0.tgz#1f09acce796c9a762579f31b2c1cc4c3cddf9f36" 2735 | dependencies: 2736 | path-parse "^1.0.5" 2737 | 2738 | right-align@^0.1.1: 2739 | version "0.1.3" 2740 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2741 | dependencies: 2742 | align-text "^0.1.1" 2743 | 2744 | rimraf@2, rimraf@^2.5.1, rimraf@^2.6.1: 2745 | version "2.6.2" 2746 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2747 | dependencies: 2748 | glob "^7.0.5" 2749 | 2750 | ripemd160@^2.0.0, ripemd160@^2.0.1: 2751 | version "2.0.1" 2752 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.1.tgz#0f4584295c53a3628af7e6d79aca21ce57d1c6e7" 2753 | dependencies: 2754 | hash-base "^2.0.0" 2755 | inherits "^2.0.1" 2756 | 2757 | safe-buffer@5.1.1, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2758 | version "5.1.1" 2759 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2760 | 2761 | sax@~1.2.1: 2762 | version "1.2.4" 2763 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 2764 | 2765 | "semver@2 || 3 || 4 || 5", semver@^5.0.1, semver@^5.3.0: 2766 | version "5.4.1" 2767 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 2768 | 2769 | send@0.16.1: 2770 | version "0.16.1" 2771 | resolved "https://registry.yarnpkg.com/send/-/send-0.16.1.tgz#a70e1ca21d1382c11d0d9f6231deb281080d7ab3" 2772 | dependencies: 2773 | debug "2.6.9" 2774 | depd "~1.1.1" 2775 | destroy "~1.0.4" 2776 | encodeurl "~1.0.1" 2777 | escape-html "~1.0.3" 2778 | etag "~1.8.1" 2779 | fresh "0.5.2" 2780 | http-errors "~1.6.2" 2781 | mime "1.4.1" 2782 | ms "2.0.0" 2783 | on-finished "~2.3.0" 2784 | range-parser "~1.2.0" 2785 | statuses "~1.3.1" 2786 | 2787 | serve-static@1.13.1: 2788 | version "1.13.1" 2789 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.13.1.tgz#4c57d53404a761d8f2e7c1e8a18a47dbf278a719" 2790 | dependencies: 2791 | encodeurl "~1.0.1" 2792 | escape-html "~1.0.3" 2793 | parseurl "~1.3.2" 2794 | send "0.16.1" 2795 | 2796 | set-blocking@^2.0.0, set-blocking@~2.0.0: 2797 | version "2.0.0" 2798 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2799 | 2800 | set-immediate-shim@^1.0.1: 2801 | version "1.0.1" 2802 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2803 | 2804 | setimmediate@^1.0.4: 2805 | version "1.0.5" 2806 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 2807 | 2808 | setprototypeof@1.0.3: 2809 | version "1.0.3" 2810 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.3.tgz#66567e37043eeb4f04d91bd658c0cbefb55b8e04" 2811 | 2812 | setprototypeof@1.1.0: 2813 | version "1.1.0" 2814 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656" 2815 | 2816 | sha.js@^2.4.0, sha.js@^2.4.8: 2817 | version "2.4.9" 2818 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.9.tgz#98f64880474b74f4a38b8da9d3c0f2d104633e7d" 2819 | dependencies: 2820 | inherits "^2.0.1" 2821 | safe-buffer "^5.0.1" 2822 | 2823 | shebang-command@^1.2.0: 2824 | version "1.2.0" 2825 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2826 | dependencies: 2827 | shebang-regex "^1.0.0" 2828 | 2829 | shebang-regex@^1.0.0: 2830 | version "1.0.0" 2831 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2832 | 2833 | signal-exit@^3.0.0: 2834 | version "3.0.2" 2835 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2836 | 2837 | sntp@1.x.x: 2838 | version "1.0.9" 2839 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2840 | dependencies: 2841 | hoek "2.x.x" 2842 | 2843 | socket.io-adapter@0.5.0: 2844 | version "0.5.0" 2845 | resolved "https://registry.yarnpkg.com/socket.io-adapter/-/socket.io-adapter-0.5.0.tgz#cb6d4bb8bec81e1078b99677f9ced0046066bb8b" 2846 | dependencies: 2847 | debug "2.3.3" 2848 | socket.io-parser "2.3.1" 2849 | 2850 | socket.io-client@1.7.4: 2851 | version "1.7.4" 2852 | resolved "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-1.7.4.tgz#ec9f820356ed99ef6d357f0756d648717bdd4281" 2853 | dependencies: 2854 | backo2 "1.0.2" 2855 | component-bind "1.0.0" 2856 | component-emitter "1.2.1" 2857 | debug "2.3.3" 2858 | engine.io-client "~1.8.4" 2859 | has-binary "0.1.7" 2860 | indexof "0.0.1" 2861 | object-component "0.0.3" 2862 | parseuri "0.0.5" 2863 | socket.io-parser "2.3.1" 2864 | to-array "0.1.4" 2865 | 2866 | socket.io-parser@2.3.1: 2867 | version "2.3.1" 2868 | resolved "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-2.3.1.tgz#dd532025103ce429697326befd64005fcfe5b4a0" 2869 | dependencies: 2870 | component-emitter "1.1.2" 2871 | debug "2.2.0" 2872 | isarray "0.0.1" 2873 | json3 "3.3.2" 2874 | 2875 | socket.io@^1.3.7: 2876 | version "1.7.4" 2877 | resolved "https://registry.yarnpkg.com/socket.io/-/socket.io-1.7.4.tgz#2f7ecedc3391bf2d5c73e291fe233e6e34d4dd00" 2878 | dependencies: 2879 | debug "2.3.3" 2880 | engine.io "~1.8.4" 2881 | has-binary "0.1.7" 2882 | object-assign "4.1.0" 2883 | socket.io-adapter "0.5.0" 2884 | socket.io-client "1.7.4" 2885 | socket.io-parser "2.3.1" 2886 | 2887 | socketio@^1.0.0: 2888 | version "1.0.0" 2889 | resolved "https://registry.yarnpkg.com/socketio/-/socketio-1.0.0.tgz#68ea1598fd240561601712e57499767ed8eba8ca" 2890 | dependencies: 2891 | express "^4.13.3" 2892 | socket.io "^1.3.7" 2893 | 2894 | sort-keys@^1.0.0: 2895 | version "1.1.2" 2896 | resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" 2897 | dependencies: 2898 | is-plain-obj "^1.0.0" 2899 | 2900 | source-list-map@^2.0.0: 2901 | version "2.0.0" 2902 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.0.tgz#aaa47403f7b245a92fbc97ea08f250d6087ed085" 2903 | 2904 | source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: 2905 | version "0.5.7" 2906 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2907 | 2908 | source-map@^0.6.1, source-map@~0.6.1: 2909 | version "0.6.1" 2910 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 2911 | 2912 | spdx-correct@~1.0.0: 2913 | version "1.0.2" 2914 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2915 | dependencies: 2916 | spdx-license-ids "^1.0.2" 2917 | 2918 | spdx-expression-parse@~1.0.0: 2919 | version "1.0.4" 2920 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2921 | 2922 | spdx-license-ids@^1.0.2: 2923 | version "1.2.2" 2924 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2925 | 2926 | sprintf-js@~1.0.2: 2927 | version "1.0.3" 2928 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2929 | 2930 | sshpk@^1.7.0: 2931 | version "1.13.1" 2932 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 2933 | dependencies: 2934 | asn1 "~0.2.3" 2935 | assert-plus "^1.0.0" 2936 | dashdash "^1.12.0" 2937 | getpass "^0.1.1" 2938 | optionalDependencies: 2939 | bcrypt-pbkdf "^1.0.0" 2940 | ecc-jsbn "~0.1.1" 2941 | jsbn "~0.1.0" 2942 | tweetnacl "~0.14.0" 2943 | 2944 | "statuses@>= 1.3.1 < 2": 2945 | version "1.4.0" 2946 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.4.0.tgz#bb73d446da2796106efcc1b601a253d6c46bd087" 2947 | 2948 | statuses@~1.3.1: 2949 | version "1.3.1" 2950 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" 2951 | 2952 | stream-browserify@^2.0.1: 2953 | version "2.0.1" 2954 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" 2955 | dependencies: 2956 | inherits "~2.0.1" 2957 | readable-stream "^2.0.2" 2958 | 2959 | stream-http@^2.7.2: 2960 | version "2.7.2" 2961 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.7.2.tgz#40a050ec8dc3b53b33d9909415c02c0bf1abfbad" 2962 | dependencies: 2963 | builtin-status-codes "^3.0.0" 2964 | inherits "^2.0.1" 2965 | readable-stream "^2.2.6" 2966 | to-arraybuffer "^1.0.0" 2967 | xtend "^4.0.0" 2968 | 2969 | strict-uri-encode@^1.0.0: 2970 | version "1.1.0" 2971 | resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713" 2972 | 2973 | string-width@^1.0.1, string-width@^1.0.2: 2974 | version "1.0.2" 2975 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2976 | dependencies: 2977 | code-point-at "^1.0.0" 2978 | is-fullwidth-code-point "^1.0.0" 2979 | strip-ansi "^3.0.0" 2980 | 2981 | string-width@^2.0.0: 2982 | version "2.1.1" 2983 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 2984 | dependencies: 2985 | is-fullwidth-code-point "^2.0.0" 2986 | strip-ansi "^4.0.0" 2987 | 2988 | string_decoder@^1.0.0, string_decoder@~1.0.3: 2989 | version "1.0.3" 2990 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 2991 | dependencies: 2992 | safe-buffer "~5.1.0" 2993 | 2994 | stringstream@~0.0.4: 2995 | version "0.0.5" 2996 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2997 | 2998 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2999 | version "3.0.1" 3000 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3001 | dependencies: 3002 | ansi-regex "^2.0.0" 3003 | 3004 | strip-ansi@^4.0.0: 3005 | version "4.0.0" 3006 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3007 | dependencies: 3008 | ansi-regex "^3.0.0" 3009 | 3010 | strip-bom@^3.0.0: 3011 | version "3.0.0" 3012 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3013 | 3014 | strip-eof@^1.0.0: 3015 | version "1.0.0" 3016 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3017 | 3018 | strip-json-comments@~2.0.1: 3019 | version "2.0.1" 3020 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3021 | 3022 | supports-color@^2.0.0: 3023 | version "2.0.0" 3024 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3025 | 3026 | supports-color@^3.2.3: 3027 | version "3.2.3" 3028 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3029 | dependencies: 3030 | has-flag "^1.0.0" 3031 | 3032 | supports-color@^4.0.0, supports-color@^4.2.1: 3033 | version "4.5.0" 3034 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" 3035 | dependencies: 3036 | has-flag "^2.0.0" 3037 | 3038 | supports-color@^5.1.0: 3039 | version "5.1.0" 3040 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.1.0.tgz#058a021d1b619f7ddf3980d712ea3590ce7de3d5" 3041 | dependencies: 3042 | has-flag "^2.0.0" 3043 | 3044 | svgo@^0.7.0: 3045 | version "0.7.2" 3046 | resolved "https://registry.yarnpkg.com/svgo/-/svgo-0.7.2.tgz#9f5772413952135c6fefbf40afe6a4faa88b4bb5" 3047 | dependencies: 3048 | coa "~1.0.1" 3049 | colors "~1.1.2" 3050 | csso "~2.3.1" 3051 | js-yaml "~3.7.0" 3052 | mkdirp "~0.5.1" 3053 | sax "~1.2.1" 3054 | whet.extend "~0.9.9" 3055 | 3056 | tapable@^0.2.7: 3057 | version "0.2.8" 3058 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.8.tgz#99372a5c999bf2df160afc0d74bed4f47948cd22" 3059 | 3060 | tar-pack@^3.4.0: 3061 | version "3.4.1" 3062 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" 3063 | dependencies: 3064 | debug "^2.2.0" 3065 | fstream "^1.0.10" 3066 | fstream-ignore "^1.0.5" 3067 | once "^1.3.3" 3068 | readable-stream "^2.1.4" 3069 | rimraf "^2.5.1" 3070 | tar "^2.2.1" 3071 | uid-number "^0.0.6" 3072 | 3073 | tar@^2.2.1: 3074 | version "2.2.1" 3075 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3076 | dependencies: 3077 | block-stream "*" 3078 | fstream "^1.0.2" 3079 | inherits "2" 3080 | 3081 | timers-browserify@^2.0.4: 3082 | version "2.0.4" 3083 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.4.tgz#96ca53f4b794a5e7c0e1bd7cc88a372298fa01e6" 3084 | dependencies: 3085 | setimmediate "^1.0.4" 3086 | 3087 | to-array@0.1.4: 3088 | version "0.1.4" 3089 | resolved "https://registry.yarnpkg.com/to-array/-/to-array-0.1.4.tgz#17e6c11f73dd4f3d74cda7a4ff3238e9ad9bf890" 3090 | 3091 | to-arraybuffer@^1.0.0: 3092 | version "1.0.1" 3093 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" 3094 | 3095 | tough-cookie@~2.3.0: 3096 | version "2.3.3" 3097 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 3098 | dependencies: 3099 | punycode "^1.4.1" 3100 | 3101 | ts-loader@^3.2.0: 3102 | version "3.2.0" 3103 | resolved "https://registry.yarnpkg.com/ts-loader/-/ts-loader-3.2.0.tgz#23211922179b81f7448754b7fdfca45b8374a15a" 3104 | dependencies: 3105 | chalk "^2.3.0" 3106 | enhanced-resolve "^3.0.0" 3107 | loader-utils "^1.0.2" 3108 | semver "^5.0.1" 3109 | 3110 | tty-browserify@0.0.0: 3111 | version "0.0.0" 3112 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 3113 | 3114 | tunnel-agent@^0.6.0: 3115 | version "0.6.0" 3116 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3117 | dependencies: 3118 | safe-buffer "^5.0.1" 3119 | 3120 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3121 | version "0.14.5" 3122 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3123 | 3124 | type-is@~1.6.15: 3125 | version "1.6.15" 3126 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.15.tgz#cab10fb4909e441c82842eafe1ad646c81804410" 3127 | dependencies: 3128 | media-typer "0.3.0" 3129 | mime-types "~2.1.15" 3130 | 3131 | typescript@^2.6.1: 3132 | version "2.6.2" 3133 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.6.2.tgz#3c5b6fd7f6de0914269027f03c0946758f7673a4" 3134 | 3135 | uglify-js@^2.8.29: 3136 | version "2.8.29" 3137 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 3138 | dependencies: 3139 | source-map "~0.5.1" 3140 | yargs "~3.10.0" 3141 | optionalDependencies: 3142 | uglify-to-browserify "~1.0.0" 3143 | 3144 | uglify-to-browserify@~1.0.0: 3145 | version "1.0.2" 3146 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3147 | 3148 | uglifyjs-webpack-plugin@^0.4.6: 3149 | version "0.4.6" 3150 | resolved "https://registry.yarnpkg.com/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.4.6.tgz#b951f4abb6bd617e66f63eb891498e391763e309" 3151 | dependencies: 3152 | source-map "^0.5.6" 3153 | uglify-js "^2.8.29" 3154 | webpack-sources "^1.0.1" 3155 | 3156 | uid-number@^0.0.6: 3157 | version "0.0.6" 3158 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3159 | 3160 | ultron@1.0.x: 3161 | version "1.0.2" 3162 | resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.0.2.tgz#ace116ab557cd197386a4e88f4685378c8b2e4fa" 3163 | 3164 | uniq@^1.0.1: 3165 | version "1.0.1" 3166 | resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" 3167 | 3168 | uniqid@^4.0.0: 3169 | version "4.1.1" 3170 | resolved "https://registry.yarnpkg.com/uniqid/-/uniqid-4.1.1.tgz#89220ddf6b751ae52b5f72484863528596bb84c1" 3171 | dependencies: 3172 | macaddress "^0.2.8" 3173 | 3174 | uniqs@^2.0.0: 3175 | version "2.0.0" 3176 | resolved "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02" 3177 | 3178 | unpipe@1.0.0, unpipe@~1.0.0: 3179 | version "1.0.0" 3180 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 3181 | 3182 | url@^0.11.0: 3183 | version "0.11.0" 3184 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 3185 | dependencies: 3186 | punycode "1.3.2" 3187 | querystring "0.2.0" 3188 | 3189 | util-deprecate@~1.0.1: 3190 | version "1.0.2" 3191 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3192 | 3193 | util@0.10.3, util@^0.10.3: 3194 | version "0.10.3" 3195 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 3196 | dependencies: 3197 | inherits "2.0.1" 3198 | 3199 | utils-merge@1.0.1: 3200 | version "1.0.1" 3201 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" 3202 | 3203 | uuid@^3.0.0: 3204 | version "3.1.0" 3205 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 3206 | 3207 | validate-npm-package-license@^3.0.1: 3208 | version "3.0.1" 3209 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3210 | dependencies: 3211 | spdx-correct "~1.0.0" 3212 | spdx-expression-parse "~1.0.0" 3213 | 3214 | vary@~1.1.2: 3215 | version "1.1.2" 3216 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" 3217 | 3218 | vendors@^1.0.0: 3219 | version "1.0.1" 3220 | resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.1.tgz#37ad73c8ee417fb3d580e785312307d274847f22" 3221 | 3222 | verror@1.10.0: 3223 | version "1.10.0" 3224 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 3225 | dependencies: 3226 | assert-plus "^1.0.0" 3227 | core-util-is "1.0.2" 3228 | extsprintf "^1.2.0" 3229 | 3230 | vm-browserify@0.0.4: 3231 | version "0.0.4" 3232 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" 3233 | dependencies: 3234 | indexof "0.0.1" 3235 | 3236 | vue-hot-reload-api@^2.2.0: 3237 | version "2.2.4" 3238 | resolved "https://registry.yarnpkg.com/vue-hot-reload-api/-/vue-hot-reload-api-2.2.4.tgz#683bd1d026c0d3b3c937d5875679e9a87ec6cd8f" 3239 | 3240 | vue-loader@^13.6.2: 3241 | version "13.6.2" 3242 | resolved "https://registry.yarnpkg.com/vue-loader/-/vue-loader-13.6.2.tgz#43d9688f2c80400916104d1138941aacd7e389cb" 3243 | dependencies: 3244 | consolidate "^0.14.0" 3245 | hash-sum "^1.0.2" 3246 | loader-utils "^1.1.0" 3247 | lru-cache "^4.1.1" 3248 | postcss "^6.0.8" 3249 | postcss-load-config "^1.1.0" 3250 | postcss-selector-parser "^2.0.0" 3251 | prettier "^1.7.0" 3252 | resolve "^1.4.0" 3253 | source-map "^0.6.1" 3254 | vue-hot-reload-api "^2.2.0" 3255 | vue-style-loader "^3.0.0" 3256 | vue-template-es2015-compiler "^1.6.0" 3257 | 3258 | vue-style-loader@^3.0.0, vue-style-loader@^3.0.3: 3259 | version "3.0.3" 3260 | resolved "https://registry.yarnpkg.com/vue-style-loader/-/vue-style-loader-3.0.3.tgz#623658f81506aef9d121cdc113a4f5c9cac32df7" 3261 | dependencies: 3262 | hash-sum "^1.0.2" 3263 | loader-utils "^1.0.2" 3264 | 3265 | vue-template-compiler@^2.5.13: 3266 | version "2.5.13" 3267 | resolved "https://registry.yarnpkg.com/vue-template-compiler/-/vue-template-compiler-2.5.13.tgz#12a2aa0ecd6158ac5e5f14d294b0993f399c3d38" 3268 | dependencies: 3269 | de-indent "^1.0.2" 3270 | he "^1.1.0" 3271 | 3272 | vue-template-es2015-compiler@^1.6.0: 3273 | version "1.6.0" 3274 | resolved "https://registry.yarnpkg.com/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.6.0.tgz#dc42697133302ce3017524356a6c61b7b69b4a18" 3275 | 3276 | vue@^2.5.2: 3277 | version "2.5.13" 3278 | resolved "https://registry.yarnpkg.com/vue/-/vue-2.5.13.tgz#95bd31e20efcf7a7f39239c9aa6787ce8cf578e1" 3279 | 3280 | vuex@^3.0.1: 3281 | version "3.0.1" 3282 | resolved "https://registry.yarnpkg.com/vuex/-/vuex-3.0.1.tgz#e761352ebe0af537d4bb755a9b9dc4be3df7efd2" 3283 | 3284 | watchpack@^1.4.0: 3285 | version "1.4.0" 3286 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.4.0.tgz#4a1472bcbb952bd0a9bb4036801f954dfb39faac" 3287 | dependencies: 3288 | async "^2.1.2" 3289 | chokidar "^1.7.0" 3290 | graceful-fs "^4.1.2" 3291 | 3292 | webpack-sources@^1.0.1: 3293 | version "1.1.0" 3294 | resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.1.0.tgz#a101ebae59d6507354d71d8013950a3a8b7a5a54" 3295 | dependencies: 3296 | source-list-map "^2.0.0" 3297 | source-map "~0.6.1" 3298 | 3299 | webpack@^3.10.0: 3300 | version "3.10.0" 3301 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-3.10.0.tgz#5291b875078cf2abf42bdd23afe3f8f96c17d725" 3302 | dependencies: 3303 | acorn "^5.0.0" 3304 | acorn-dynamic-import "^2.0.0" 3305 | ajv "^5.1.5" 3306 | ajv-keywords "^2.0.0" 3307 | async "^2.1.2" 3308 | enhanced-resolve "^3.4.0" 3309 | escope "^3.6.0" 3310 | interpret "^1.0.0" 3311 | json-loader "^0.5.4" 3312 | json5 "^0.5.1" 3313 | loader-runner "^2.3.0" 3314 | loader-utils "^1.1.0" 3315 | memory-fs "~0.4.1" 3316 | mkdirp "~0.5.0" 3317 | node-libs-browser "^2.0.0" 3318 | source-map "^0.5.3" 3319 | supports-color "^4.2.1" 3320 | tapable "^0.2.7" 3321 | uglifyjs-webpack-plugin "^0.4.6" 3322 | watchpack "^1.4.0" 3323 | webpack-sources "^1.0.1" 3324 | yargs "^8.0.2" 3325 | 3326 | whet.extend@~0.9.9: 3327 | version "0.9.9" 3328 | resolved "https://registry.yarnpkg.com/whet.extend/-/whet.extend-0.9.9.tgz#f877d5bf648c97e5aa542fadc16d6a259b9c11a1" 3329 | 3330 | which-module@^2.0.0: 3331 | version "2.0.0" 3332 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 3333 | 3334 | which@^1.2.9: 3335 | version "1.3.0" 3336 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 3337 | dependencies: 3338 | isexe "^2.0.0" 3339 | 3340 | wide-align@^1.1.0: 3341 | version "1.1.2" 3342 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 3343 | dependencies: 3344 | string-width "^1.0.2" 3345 | 3346 | window-size@0.1.0: 3347 | version "0.1.0" 3348 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3349 | 3350 | wordwrap@0.0.2: 3351 | version "0.0.2" 3352 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3353 | 3354 | wrap-ansi@^2.0.0: 3355 | version "2.1.0" 3356 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3357 | dependencies: 3358 | string-width "^1.0.1" 3359 | strip-ansi "^3.0.1" 3360 | 3361 | wrappy@1: 3362 | version "1.0.2" 3363 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3364 | 3365 | ws@~1.1.5: 3366 | version "1.1.5" 3367 | resolved "https://registry.yarnpkg.com/ws/-/ws-1.1.5.tgz#cbd9e6e75e09fc5d2c90015f21f0c40875e0dd51" 3368 | dependencies: 3369 | options ">=0.0.5" 3370 | ultron "1.0.x" 3371 | 3372 | wtf-8@1.0.0: 3373 | version "1.0.0" 3374 | resolved "https://registry.yarnpkg.com/wtf-8/-/wtf-8-1.0.0.tgz#392d8ba2d0f1c34d1ee2d630f15d0efb68e1048a" 3375 | 3376 | xmlhttprequest-ssl@1.5.3: 3377 | version "1.5.3" 3378 | resolved "https://registry.yarnpkg.com/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.3.tgz#185a888c04eca46c3e4070d99f7b49de3528992d" 3379 | 3380 | xtend@^4.0.0: 3381 | version "4.0.1" 3382 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3383 | 3384 | y18n@^3.2.1: 3385 | version "3.2.1" 3386 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3387 | 3388 | yallist@^2.1.2: 3389 | version "2.1.2" 3390 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3391 | 3392 | yargs-parser@^7.0.0: 3393 | version "7.0.0" 3394 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" 3395 | dependencies: 3396 | camelcase "^4.1.0" 3397 | 3398 | yargs@^8.0.2: 3399 | version "8.0.2" 3400 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360" 3401 | dependencies: 3402 | camelcase "^4.1.0" 3403 | cliui "^3.2.0" 3404 | decamelize "^1.1.1" 3405 | get-caller-file "^1.0.1" 3406 | os-locale "^2.0.0" 3407 | read-pkg-up "^2.0.0" 3408 | require-directory "^2.1.1" 3409 | require-main-filename "^1.0.1" 3410 | set-blocking "^2.0.0" 3411 | string-width "^2.0.0" 3412 | which-module "^2.0.0" 3413 | y18n "^3.2.1" 3414 | yargs-parser "^7.0.0" 3415 | 3416 | yargs@~3.10.0: 3417 | version "3.10.0" 3418 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3419 | dependencies: 3420 | camelcase "^1.0.2" 3421 | cliui "^2.1.0" 3422 | decamelize "^1.0.0" 3423 | window-size "0.1.0" 3424 | 3425 | yeast@0.1.2: 3426 | version "0.1.2" 3427 | resolved "https://registry.yarnpkg.com/yeast/-/yeast-0.1.2.tgz#008e06d8094320c372dbc2f8ed76a0ca6c8ac419" 3428 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vuex-socketio-plugin", 3 | "version": "0.2.0", 4 | "description": "Vuex plugin to integrate socket.io client", 5 | "main": "dist/index.js", 6 | "types": "dist/index.d.ts", 7 | "scripts": { 8 | "build": "npm run build:tsc", 9 | "build:tsc": "tsc", 10 | "clean": "rm -rf dist", 11 | "prepublish": "npm run clean && npm run build", 12 | "test": "echo \"Error: no test specified\" && exit 1" 13 | }, 14 | "homepage": "https://github.com/joe-re/vuex-socketio-plugin", 15 | "bugs": "https://github.com/joe-re/vuex-socketio-plugin/issues", 16 | "repository": { 17 | "type": "git", 18 | "url": "https://github.com/joe-re/vuex-socketio-plugin.git" 19 | }, 20 | "author": "joe-re ", 21 | "license": "MIT", 22 | "files": [ 23 | "dist" 24 | ], 25 | "devDependencies": { 26 | "typescript": "^2.6.2", 27 | "vue": "^2.5.13", 28 | "vuex": "^3.0.1" 29 | }, 30 | "dependencies": { 31 | "eslint": "^4.15.0", 32 | "socket.io-client": "^4.1.3" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | import { io, Socket } from 'socket.io-client' 2 | import { Store } from 'vuex' 3 | 4 | type Packet = { nsp: string, data: Array } 5 | function findName (params: { nameList: { [key: string]: Function }, nsp: string, wsMessageName: string, prefix?: string }) { 6 | const { nameList, nsp, wsMessageName, prefix } = params 7 | const names = [(prefix || '') + wsMessageName] 8 | if (nsp !== '/') { 9 | names.unshift(`${nsp.slice(1)}/${prefix}${wsMessageName}`) 10 | names.unshift(`${prefix}${nsp.slice(1)}_${wsMessageName}`) 11 | } 12 | return names.find(v => !!nameList[v]) 13 | } 14 | 15 | function callStoreAction (client: Socket, store: Store, packet: Packet, prefix = 'socket_') { 16 | const actionName = findName({ nameList: (store as any)._actions, nsp: packet.nsp, wsMessageName: packet.data[0], prefix }) 17 | if (actionName) { 18 | store.dispatch(actionName, { data: [...packet.data.slice(1)], client }) 19 | } 20 | } 21 | 22 | function callStoreMutation (client: Socket, store: Store, packet: Packet, prefix = 'SOCKET_') { 23 | const mutationName = findName({ nameList: (store as any)._mutations, nsp: packet.nsp, wsMessageName: packet.data[0], prefix }) 24 | if (mutationName) { 25 | store.commit(mutationName, { data: [...packet.data.slice(1)], client }) 26 | } 27 | } 28 | 29 | let clients: Socket[] = [] 30 | export function getClients () { 31 | return clients 32 | } 33 | export type Options = { actionPrefix?: string, mutationPrefix?: string} 34 | export function createSocketioPlugin (params: string | Socket | Array, options?: Options) { 35 | const payload = Array.isArray(params) ? params : [params] 36 | clients = payload.map(v => typeof v === 'string' ? io(v) : v) 37 | const actionPrefix = options && options.actionPrefix 38 | const mutationPrefix = options && options.mutationPrefix 39 | return (store: Store) => { 40 | clients.forEach(client => { 41 | const onevent = (client as any).onevent; 42 | (client as any).onevent = (packet: Packet) => { 43 | onevent.call(client, packet) 44 | callStoreAction(client, store, packet, actionPrefix) 45 | callStoreMutation(client, store, packet, mutationPrefix) 46 | }; 47 | [ 48 | 'connect', 49 | 'error', 50 | 'disconnect', 51 | 'reconnect', 52 | 'reconnect_attempt', 53 | 'reconnecting', 54 | 'reconnect_error', 55 | 'reconnect_failed', 56 | 'connect_error', 57 | 'connect_timeout', 58 | 'connecting', 59 | 'ping', 60 | 'pong' 61 | ].forEach((value) => { 62 | client.on(value, (_data: any) => { 63 | callStoreAction(client, store, { nsp: (client as any).nsp, data: [value] }, actionPrefix) 64 | callStoreMutation(client, store, { nsp: (client as any).nsp, data: [value.toUpperCase()] }, mutationPrefix) 65 | }) 66 | }) 67 | }) 68 | } 69 | } 70 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "outDir": "./dist", 4 | "declaration": true, 5 | "strict": true, 6 | "noImplicitReturns": true, 7 | "module": "es2015", 8 | "moduleResolution": "node", 9 | "target": "es5", 10 | "lib": ["dom", "es2016"], 11 | "skipLibCheck": true 12 | }, 13 | "include": [ 14 | "./src/**/*" 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@types/component-emitter@^1.2.10": 6 | version "1.2.10" 7 | resolved "https://registry.npmjs.org/@types/component-emitter/-/component-emitter-1.2.10.tgz" 8 | integrity sha512-bsjleuRKWmGqajMerkzox19aGbscQX5rmmvvXl3wlIp5gMG1HgkiwPxsN5p070fBDKTNSPgojVbuY1+HWMbFhg== 9 | 10 | acorn-jsx@^3.0.0: 11 | version "3.0.1" 12 | resolved "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz" 13 | integrity sha1-r9+UiPsezvyDSPb7IvRk4ypYs2s= 14 | dependencies: 15 | acorn "^3.0.4" 16 | 17 | acorn@^3.0.4: 18 | version "3.3.0" 19 | resolved "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz" 20 | integrity sha1-ReN/s56No/JbruP/U2niu18iAXo= 21 | 22 | acorn@^5.2.1: 23 | version "5.3.0" 24 | resolved "https://registry.npmjs.org/acorn/-/acorn-5.3.0.tgz" 25 | integrity sha512-Yej+zOJ1Dm/IMZzzj78OntP/r3zHEaKcyNoU2lAaxPtrseM6rF0xwqoz5Q5ysAiED9hTjI2hgtvLXitlCN1/Ug== 26 | 27 | ajv-keywords@^2.1.0: 28 | version "2.1.1" 29 | resolved "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-2.1.1.tgz" 30 | integrity sha1-YXmX/F9gV2iUxDX5QNgZ4TW4B2I= 31 | 32 | ajv@^5.2.3, ajv@^5.3.0: 33 | version "5.5.2" 34 | resolved "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz" 35 | integrity sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU= 36 | dependencies: 37 | co "^4.6.0" 38 | fast-deep-equal "^1.0.0" 39 | fast-json-stable-stringify "^2.0.0" 40 | json-schema-traverse "^0.3.0" 41 | 42 | ansi-escapes@^3.0.0: 43 | version "3.0.0" 44 | resolved "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.0.0.tgz" 45 | integrity sha512-O/klc27mWNUigtv0F8NJWbLF00OcegQalkqKURWdosW08YZKi4m6CnSUSvIZG1otNJbTWhN01Hhz389DW7mvDQ== 46 | 47 | ansi-regex@^2.0.0: 48 | version "2.1.1" 49 | resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz" 50 | integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= 51 | 52 | ansi-regex@^3.0.0: 53 | version "3.0.0" 54 | resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz" 55 | integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= 56 | 57 | ansi-styles@^2.2.1: 58 | version "2.2.1" 59 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz" 60 | integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= 61 | 62 | ansi-styles@^3.1.0: 63 | version "3.2.0" 64 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz" 65 | integrity sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug== 66 | dependencies: 67 | color-convert "^1.9.0" 68 | 69 | argparse@^1.0.7: 70 | version "1.0.9" 71 | resolved "https://registry.npmjs.org/argparse/-/argparse-1.0.9.tgz" 72 | integrity sha1-c9g7wmP4bpf4zE9rrhsOkKfSLIY= 73 | dependencies: 74 | sprintf-js "~1.0.2" 75 | 76 | array-union@^1.0.1: 77 | version "1.0.2" 78 | resolved "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz" 79 | integrity sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk= 80 | dependencies: 81 | array-uniq "^1.0.1" 82 | 83 | array-uniq@^1.0.1: 84 | version "1.0.3" 85 | resolved "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz" 86 | integrity sha1-r2rId6Jcx/dOBYiUdThY39sk/bY= 87 | 88 | arrify@^1.0.0: 89 | version "1.0.1" 90 | resolved "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz" 91 | integrity sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0= 92 | 93 | babel-code-frame@^6.22.0: 94 | version "6.26.0" 95 | resolved "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz" 96 | integrity sha1-Y/1D99weO7fONZR9uP42mj9Yx0s= 97 | dependencies: 98 | chalk "^1.1.3" 99 | esutils "^2.0.2" 100 | js-tokens "^3.0.2" 101 | 102 | backo2@~1.0.2: 103 | version "1.0.2" 104 | resolved "https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz" 105 | integrity sha1-MasayLEpNjRj41s+u2n038+6eUc= 106 | 107 | balanced-match@^1.0.0: 108 | version "1.0.0" 109 | resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz" 110 | integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= 111 | 112 | base64-arraybuffer@0.1.4: 113 | version "0.1.4" 114 | resolved "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.4.tgz" 115 | integrity sha1-mBjHngWbE1X5fgQooBfIOOkLqBI= 116 | 117 | brace-expansion@^1.1.7: 118 | version "1.1.8" 119 | resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz" 120 | integrity sha1-wHshHHyVLsH479Uad+8NHTmQopI= 121 | dependencies: 122 | balanced-match "^1.0.0" 123 | concat-map "0.0.1" 124 | 125 | caller-path@^0.1.0: 126 | version "0.1.0" 127 | resolved "https://registry.npmjs.org/caller-path/-/caller-path-0.1.0.tgz" 128 | integrity sha1-lAhe9jWB7NPaqSREqP6U6CV3dR8= 129 | dependencies: 130 | callsites "^0.2.0" 131 | 132 | callsites@^0.2.0: 133 | version "0.2.0" 134 | resolved "https://registry.npmjs.org/callsites/-/callsites-0.2.0.tgz" 135 | integrity sha1-r6uWJikQp/M8GaV3WCXGnzTjUMo= 136 | 137 | chalk@^1.1.3: 138 | version "1.1.3" 139 | resolved "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz" 140 | integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg= 141 | dependencies: 142 | ansi-styles "^2.2.1" 143 | escape-string-regexp "^1.0.2" 144 | has-ansi "^2.0.0" 145 | strip-ansi "^3.0.0" 146 | supports-color "^2.0.0" 147 | 148 | chalk@^2.0.0, chalk@^2.1.0: 149 | version "2.3.0" 150 | resolved "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz" 151 | integrity sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q== 152 | dependencies: 153 | ansi-styles "^3.1.0" 154 | escape-string-regexp "^1.0.5" 155 | supports-color "^4.0.0" 156 | 157 | chardet@^0.4.0: 158 | version "0.4.2" 159 | resolved "https://registry.npmjs.org/chardet/-/chardet-0.4.2.tgz" 160 | integrity sha1-tUc7M9yXxCTl2Y3IfVXU2KKci/I= 161 | 162 | circular-json@^0.3.1: 163 | version "0.3.3" 164 | resolved "https://registry.npmjs.org/circular-json/-/circular-json-0.3.3.tgz" 165 | integrity sha512-UZK3NBx2Mca+b5LsG7bY183pHWt5Y1xts4P3Pz7ENTwGVnJOUWbRb3ocjvX7hx9tq/yTAdclXm9sZ38gNuem4A== 166 | 167 | cli-cursor@^2.1.0: 168 | version "2.1.0" 169 | resolved "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz" 170 | integrity sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU= 171 | dependencies: 172 | restore-cursor "^2.0.0" 173 | 174 | cli-width@^2.0.0: 175 | version "2.2.0" 176 | resolved "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz" 177 | integrity sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk= 178 | 179 | co@^4.6.0: 180 | version "4.6.0" 181 | resolved "https://registry.npmjs.org/co/-/co-4.6.0.tgz" 182 | integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ= 183 | 184 | color-convert@^1.9.0: 185 | version "1.9.1" 186 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.1.tgz" 187 | integrity sha512-mjGanIiwQJskCC18rPR6OmrZ6fm2Lc7PeGFYwCmy5J34wC6F1PzdGL6xeMfmgicfYcNLGuVFA3WzXtIDCQSZxQ== 188 | dependencies: 189 | color-name "^1.1.1" 190 | 191 | color-name@^1.1.1: 192 | version "1.1.3" 193 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz" 194 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 195 | 196 | component-emitter@~1.3.0: 197 | version "1.3.0" 198 | resolved "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz" 199 | integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== 200 | 201 | concat-map@0.0.1: 202 | version "0.0.1" 203 | resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" 204 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 205 | 206 | concat-stream@^1.6.0: 207 | version "1.6.0" 208 | resolved "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.0.tgz" 209 | integrity sha1-CqxmL9Ur54lk1VMvaUeE5wEQrPc= 210 | dependencies: 211 | inherits "^2.0.3" 212 | readable-stream "^2.2.2" 213 | typedarray "^0.0.6" 214 | 215 | core-util-is@~1.0.0: 216 | version "1.0.2" 217 | resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz" 218 | integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= 219 | 220 | cross-spawn@^5.1.0: 221 | version "5.1.0" 222 | resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz" 223 | integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk= 224 | dependencies: 225 | lru-cache "^4.0.1" 226 | shebang-command "^1.2.0" 227 | which "^1.2.9" 228 | 229 | debug@^3.1.0: 230 | version "3.1.0" 231 | resolved "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz" 232 | integrity sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g== 233 | dependencies: 234 | ms "2.0.0" 235 | 236 | debug@~4.3.1: 237 | version "4.3.2" 238 | resolved "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz" 239 | integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw== 240 | dependencies: 241 | ms "2.1.2" 242 | 243 | deep-is@~0.1.3: 244 | version "0.1.3" 245 | resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz" 246 | integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= 247 | 248 | del@^2.0.2: 249 | version "2.2.2" 250 | resolved "https://registry.npmjs.org/del/-/del-2.2.2.tgz" 251 | integrity sha1-wSyYHQZ4RshLyvhiz/kw2Qf/0ag= 252 | dependencies: 253 | globby "^5.0.0" 254 | is-path-cwd "^1.0.0" 255 | is-path-in-cwd "^1.0.0" 256 | object-assign "^4.0.1" 257 | pify "^2.0.0" 258 | pinkie-promise "^2.0.0" 259 | rimraf "^2.2.8" 260 | 261 | doctrine@^2.0.2: 262 | version "2.1.0" 263 | resolved "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz" 264 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== 265 | dependencies: 266 | esutils "^2.0.2" 267 | 268 | engine.io-client@~5.1.2: 269 | version "5.1.2" 270 | resolved "https://registry.npmjs.org/engine.io-client/-/engine.io-client-5.1.2.tgz" 271 | integrity sha512-blRrgXIE0A/eurWXRzvfCLG7uUFJqfTGFsyJzXSK71srMMGJ2VraBLg8Mdw28uUxSpVicepBN9X7asqpD1mZcQ== 272 | dependencies: 273 | base64-arraybuffer "0.1.4" 274 | component-emitter "~1.3.0" 275 | debug "~4.3.1" 276 | engine.io-parser "~4.0.1" 277 | has-cors "1.1.0" 278 | parseqs "0.0.6" 279 | parseuri "0.0.6" 280 | ws "~7.4.2" 281 | yeast "0.1.2" 282 | 283 | engine.io-parser@~4.0.1: 284 | version "4.0.2" 285 | resolved "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-4.0.2.tgz" 286 | integrity sha512-sHfEQv6nmtJrq6TKuIz5kyEKH/qSdK56H/A+7DnAuUPWosnIZAS2NHNcPLmyjtY3cGS/MqJdZbUjW97JU72iYg== 287 | dependencies: 288 | base64-arraybuffer "0.1.4" 289 | 290 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 291 | version "1.0.5" 292 | resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" 293 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 294 | 295 | eslint-scope@^3.7.1: 296 | version "3.7.1" 297 | resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-3.7.1.tgz" 298 | integrity sha1-PWPD7f2gLgbgGkUq2IyqzHzctug= 299 | dependencies: 300 | esrecurse "^4.1.0" 301 | estraverse "^4.1.1" 302 | 303 | eslint-visitor-keys@^1.0.0: 304 | version "1.0.0" 305 | resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz" 306 | integrity sha512-qzm/XxIbxm/FHyH341ZrbnMUpe+5Bocte9xkmFMzPMjRaZMcXww+MpBptFvtU+79L362nqiLhekCxCxDPaUMBQ== 307 | 308 | eslint@^4.15.0: 309 | version "4.15.0" 310 | resolved "https://registry.npmjs.org/eslint/-/eslint-4.15.0.tgz" 311 | integrity sha512-zEO/Z1ZUxIQ+MhDVKkVTUYpIPDTEJLXGMrkID+5v1NeQHtCz6FZikWuFRgxE1Q/RV2V4zVl1u3xmpPADHhMZ6A== 312 | dependencies: 313 | ajv "^5.3.0" 314 | babel-code-frame "^6.22.0" 315 | chalk "^2.1.0" 316 | concat-stream "^1.6.0" 317 | cross-spawn "^5.1.0" 318 | debug "^3.1.0" 319 | doctrine "^2.0.2" 320 | eslint-scope "^3.7.1" 321 | eslint-visitor-keys "^1.0.0" 322 | espree "^3.5.2" 323 | esquery "^1.0.0" 324 | esutils "^2.0.2" 325 | file-entry-cache "^2.0.0" 326 | functional-red-black-tree "^1.0.1" 327 | glob "^7.1.2" 328 | globals "^11.0.1" 329 | ignore "^3.3.3" 330 | imurmurhash "^0.1.4" 331 | inquirer "^3.0.6" 332 | is-resolvable "^1.0.0" 333 | js-yaml "^3.9.1" 334 | json-stable-stringify-without-jsonify "^1.0.1" 335 | levn "^0.3.0" 336 | lodash "^4.17.4" 337 | minimatch "^3.0.2" 338 | mkdirp "^0.5.1" 339 | natural-compare "^1.4.0" 340 | optionator "^0.8.2" 341 | path-is-inside "^1.0.2" 342 | pluralize "^7.0.0" 343 | progress "^2.0.0" 344 | require-uncached "^1.0.3" 345 | semver "^5.3.0" 346 | strip-ansi "^4.0.0" 347 | strip-json-comments "~2.0.1" 348 | table "^4.0.1" 349 | text-table "~0.2.0" 350 | 351 | espree@^3.5.2: 352 | version "3.5.2" 353 | resolved "https://registry.npmjs.org/espree/-/espree-3.5.2.tgz" 354 | integrity sha512-sadKeYwaR/aJ3stC2CdvgXu1T16TdYN+qwCpcWbMnGJ8s0zNWemzrvb2GbD4OhmJ/fwpJjudThAlLobGbWZbCQ== 355 | dependencies: 356 | acorn "^5.2.1" 357 | acorn-jsx "^3.0.0" 358 | 359 | esprima@^4.0.0: 360 | version "4.0.0" 361 | resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.0.tgz" 362 | integrity sha512-oftTcaMu/EGrEIu904mWteKIv8vMuOgGYo7EhVJJN00R/EED9DCua/xxHRdYnKtcECzVg7xOWhflvJMnqcFZjw== 363 | 364 | esquery@^1.0.0: 365 | version "1.0.0" 366 | resolved "https://registry.npmjs.org/esquery/-/esquery-1.0.0.tgz" 367 | integrity sha1-z7qLV9f7qT8XKYqKAGoEzaE9gPo= 368 | dependencies: 369 | estraverse "^4.0.0" 370 | 371 | esrecurse@^4.1.0: 372 | version "4.2.0" 373 | resolved "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.0.tgz" 374 | integrity sha1-+pVo2Y04I/mkHZHpAtyrnqblsWM= 375 | dependencies: 376 | estraverse "^4.1.0" 377 | object-assign "^4.0.1" 378 | 379 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1: 380 | version "4.2.0" 381 | resolved "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz" 382 | integrity sha1-De4/7TH81GlhjOc0IJn8GvoL2xM= 383 | 384 | esutils@^2.0.2: 385 | version "2.0.2" 386 | resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz" 387 | integrity sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs= 388 | 389 | external-editor@^2.0.4: 390 | version "2.1.0" 391 | resolved "https://registry.npmjs.org/external-editor/-/external-editor-2.1.0.tgz" 392 | integrity sha512-E44iT5QVOUJBKij4IIV3uvxuNlbKS38Tw1HiupxEIHPv9qtC2PrDYohbXV5U+1jnfIXttny8gUhj+oZvflFlzA== 393 | dependencies: 394 | chardet "^0.4.0" 395 | iconv-lite "^0.4.17" 396 | tmp "^0.0.33" 397 | 398 | fast-deep-equal@^1.0.0: 399 | version "1.0.0" 400 | resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz" 401 | integrity sha1-liVqO8l1WV6zbYLpkp0GDYk0Of8= 402 | 403 | fast-json-stable-stringify@^2.0.0: 404 | version "2.0.0" 405 | resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz" 406 | integrity sha1-1RQsDK7msRifh9OnYREGT4bIu/I= 407 | 408 | fast-levenshtein@~2.0.4: 409 | version "2.0.6" 410 | resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz" 411 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= 412 | 413 | figures@^2.0.0: 414 | version "2.0.0" 415 | resolved "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz" 416 | integrity sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI= 417 | dependencies: 418 | escape-string-regexp "^1.0.5" 419 | 420 | file-entry-cache@^2.0.0: 421 | version "2.0.0" 422 | resolved "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-2.0.0.tgz" 423 | integrity sha1-w5KZDD5oR4PYOLjISkXYoEhFg2E= 424 | dependencies: 425 | flat-cache "^1.2.1" 426 | object-assign "^4.0.1" 427 | 428 | flat-cache@^1.2.1: 429 | version "1.3.0" 430 | resolved "https://registry.npmjs.org/flat-cache/-/flat-cache-1.3.0.tgz" 431 | integrity sha1-0wMLMrOBVPTjt+nHCfSQ9++XxIE= 432 | dependencies: 433 | circular-json "^0.3.1" 434 | del "^2.0.2" 435 | graceful-fs "^4.1.2" 436 | write "^0.2.1" 437 | 438 | fs.realpath@^1.0.0: 439 | version "1.0.0" 440 | resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz" 441 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 442 | 443 | functional-red-black-tree@^1.0.1: 444 | version "1.0.1" 445 | resolved "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz" 446 | integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= 447 | 448 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.2: 449 | version "7.1.2" 450 | resolved "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz" 451 | integrity sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ== 452 | dependencies: 453 | fs.realpath "^1.0.0" 454 | inflight "^1.0.4" 455 | inherits "2" 456 | minimatch "^3.0.4" 457 | once "^1.3.0" 458 | path-is-absolute "^1.0.0" 459 | 460 | globals@^11.0.1: 461 | version "11.1.0" 462 | resolved "https://registry.npmjs.org/globals/-/globals-11.1.0.tgz" 463 | integrity sha512-uEuWt9mqTlPDwSqi+sHjD4nWU/1N+q0fiWI9T1mZpD2UENqX20CFD5T/ziLZvztPaBKl7ZylUi1q6Qfm7E2CiQ== 464 | 465 | globby@^5.0.0: 466 | version "5.0.0" 467 | resolved "https://registry.npmjs.org/globby/-/globby-5.0.0.tgz" 468 | integrity sha1-69hGZ8oNuzMLmbz8aOrCvFQ3Dg0= 469 | dependencies: 470 | array-union "^1.0.1" 471 | arrify "^1.0.0" 472 | glob "^7.0.3" 473 | object-assign "^4.0.1" 474 | pify "^2.0.0" 475 | pinkie-promise "^2.0.0" 476 | 477 | graceful-fs@^4.1.2: 478 | version "4.1.11" 479 | resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz" 480 | integrity sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg= 481 | 482 | has-ansi@^2.0.0: 483 | version "2.0.0" 484 | resolved "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz" 485 | integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE= 486 | dependencies: 487 | ansi-regex "^2.0.0" 488 | 489 | has-cors@1.1.0: 490 | version "1.1.0" 491 | resolved "https://registry.npmjs.org/has-cors/-/has-cors-1.1.0.tgz" 492 | integrity sha1-XkdHk/fqmEPRu5nCPu9J/xJv/zk= 493 | 494 | has-flag@^2.0.0: 495 | version "2.0.0" 496 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-2.0.0.tgz" 497 | integrity sha1-6CB68cx7MNRGzHC3NLXovhj4jVE= 498 | 499 | iconv-lite@^0.4.17: 500 | version "0.4.19" 501 | resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz" 502 | integrity sha512-oTZqweIP51xaGPI4uPa56/Pri/480R+mo7SeU+YETByQNhDG55ycFyNLIgta9vXhILrxXDmF7ZGhqZIcuN0gJQ== 503 | 504 | ignore@^3.3.3: 505 | version "3.3.7" 506 | resolved "https://registry.npmjs.org/ignore/-/ignore-3.3.7.tgz" 507 | integrity sha512-YGG3ejvBNHRqu0559EOxxNFihD0AjpvHlC/pdGKd3X3ofe+CoJkYazwNJYTNebqpPKN+VVQbh4ZFn1DivMNuHA== 508 | 509 | imurmurhash@^0.1.4: 510 | version "0.1.4" 511 | resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz" 512 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 513 | 514 | inflight@^1.0.4: 515 | version "1.0.6" 516 | resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz" 517 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 518 | dependencies: 519 | once "^1.3.0" 520 | wrappy "1" 521 | 522 | inherits@2, inherits@^2.0.3, inherits@~2.0.3: 523 | version "2.0.3" 524 | resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz" 525 | integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= 526 | 527 | inquirer@^3.0.6: 528 | version "3.3.0" 529 | resolved "https://registry.npmjs.org/inquirer/-/inquirer-3.3.0.tgz" 530 | integrity sha512-h+xtnyk4EwKvFWHrUYsWErEVR+igKtLdchu+o0Z1RL7VU/jVMFbYir2bp6bAj8efFNxWqHX0dIss6fJQ+/+qeQ== 531 | dependencies: 532 | ansi-escapes "^3.0.0" 533 | chalk "^2.0.0" 534 | cli-cursor "^2.1.0" 535 | cli-width "^2.0.0" 536 | external-editor "^2.0.4" 537 | figures "^2.0.0" 538 | lodash "^4.3.0" 539 | mute-stream "0.0.7" 540 | run-async "^2.2.0" 541 | rx-lite "^4.0.8" 542 | rx-lite-aggregates "^4.0.8" 543 | string-width "^2.1.0" 544 | strip-ansi "^4.0.0" 545 | through "^2.3.6" 546 | 547 | is-fullwidth-code-point@^2.0.0: 548 | version "2.0.0" 549 | resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz" 550 | integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= 551 | 552 | is-path-cwd@^1.0.0: 553 | version "1.0.0" 554 | resolved "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-1.0.0.tgz" 555 | integrity sha1-0iXsIxMuie3Tj9p2dHLmLmXxEG0= 556 | 557 | is-path-in-cwd@^1.0.0: 558 | version "1.0.0" 559 | resolved "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz" 560 | integrity sha1-ZHdYK4IU1gI0YJRWcAO+ip6sBNw= 561 | dependencies: 562 | is-path-inside "^1.0.0" 563 | 564 | is-path-inside@^1.0.0: 565 | version "1.0.1" 566 | resolved "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz" 567 | integrity sha1-jvW33lBDej/cprToZe96pVy0gDY= 568 | dependencies: 569 | path-is-inside "^1.0.1" 570 | 571 | is-promise@^2.1.0: 572 | version "2.1.0" 573 | resolved "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz" 574 | integrity sha1-eaKp7OfwlugPNtKy87wWwf9L8/o= 575 | 576 | is-resolvable@^1.0.0: 577 | version "1.0.1" 578 | resolved "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.0.1.tgz" 579 | integrity sha512-y5CXYbzvB3jTnWAZH1Nl7ykUWb6T3BcTs56HUruwBf8MhF56n1HWqhDWnVFo8GHrUPDgvUUNVhrc2U8W7iqz5g== 580 | 581 | isarray@~1.0.0: 582 | version "1.0.0" 583 | resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz" 584 | integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= 585 | 586 | isexe@^2.0.0: 587 | version "2.0.0" 588 | resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz" 589 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 590 | 591 | js-tokens@^3.0.2: 592 | version "3.0.2" 593 | resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz" 594 | integrity sha1-mGbfOVECEw449/mWvOtlRDIJwls= 595 | 596 | js-yaml@^3.9.1: 597 | version "3.10.0" 598 | resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.10.0.tgz" 599 | integrity sha512-O2v52ffjLa9VeM43J4XocZE//WT9N0IiwDa3KSHH7Tu8CtH+1qM8SIZvnsTh6v+4yFy5KUY3BHUVwjpfAWsjIA== 600 | dependencies: 601 | argparse "^1.0.7" 602 | esprima "^4.0.0" 603 | 604 | json-schema-traverse@^0.3.0: 605 | version "0.3.1" 606 | resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz" 607 | integrity sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A= 608 | 609 | json-stable-stringify-without-jsonify@^1.0.1: 610 | version "1.0.1" 611 | resolved "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz" 612 | integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= 613 | 614 | levn@^0.3.0, levn@~0.3.0: 615 | version "0.3.0" 616 | resolved "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz" 617 | integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= 618 | dependencies: 619 | prelude-ls "~1.1.2" 620 | type-check "~0.3.2" 621 | 622 | lodash@^4.17.4, lodash@^4.3.0: 623 | version "4.17.4" 624 | resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz" 625 | integrity sha1-eCA6TRwyiuHYbcpkYONptX9AVa4= 626 | 627 | lru-cache@^4.0.1: 628 | version "4.1.1" 629 | resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.1.tgz" 630 | integrity sha512-q4spe4KTfsAS1SUHLO0wz8Qiyf1+vMIAgpRYioFYDMNqKfHQbg+AVDH3i4fvpl71/P1L0dBl+fQi+P37UYf0ew== 631 | dependencies: 632 | pseudomap "^1.0.2" 633 | yallist "^2.1.2" 634 | 635 | mimic-fn@^1.0.0: 636 | version "1.1.0" 637 | resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.1.0.tgz" 638 | integrity sha1-5md4PZLonb00KBi1IwudYqZyrRg= 639 | 640 | minimatch@^3.0.2, minimatch@^3.0.4: 641 | version "3.0.4" 642 | resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz" 643 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 644 | dependencies: 645 | brace-expansion "^1.1.7" 646 | 647 | minimist@0.0.8: 648 | version "0.0.8" 649 | resolved "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz" 650 | integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0= 651 | 652 | mkdirp@^0.5.1: 653 | version "0.5.1" 654 | resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz" 655 | integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM= 656 | dependencies: 657 | minimist "0.0.8" 658 | 659 | ms@2.0.0: 660 | version "2.0.0" 661 | resolved "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz" 662 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 663 | 664 | ms@2.1.2: 665 | version "2.1.2" 666 | resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz" 667 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 668 | 669 | mute-stream@0.0.7: 670 | version "0.0.7" 671 | resolved "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz" 672 | integrity sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s= 673 | 674 | natural-compare@^1.4.0: 675 | version "1.4.0" 676 | resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz" 677 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= 678 | 679 | object-assign@^4.0.1: 680 | version "4.1.1" 681 | resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz" 682 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 683 | 684 | once@^1.3.0: 685 | version "1.4.0" 686 | resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz" 687 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 688 | dependencies: 689 | wrappy "1" 690 | 691 | onetime@^2.0.0: 692 | version "2.0.1" 693 | resolved "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz" 694 | integrity sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ= 695 | dependencies: 696 | mimic-fn "^1.0.0" 697 | 698 | optionator@^0.8.2: 699 | version "0.8.2" 700 | resolved "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz" 701 | integrity sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q= 702 | dependencies: 703 | deep-is "~0.1.3" 704 | fast-levenshtein "~2.0.4" 705 | levn "~0.3.0" 706 | prelude-ls "~1.1.2" 707 | type-check "~0.3.2" 708 | wordwrap "~1.0.0" 709 | 710 | os-tmpdir@~1.0.2: 711 | version "1.0.2" 712 | resolved "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz" 713 | integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= 714 | 715 | parseqs@0.0.6: 716 | version "0.0.6" 717 | resolved "https://registry.npmjs.org/parseqs/-/parseqs-0.0.6.tgz" 718 | integrity sha512-jeAGzMDbfSHHA091hr0r31eYfTig+29g3GKKE/PPbEQ65X0lmMwlEoqmhzu0iztID5uJpZsFlUPDP8ThPL7M8w== 719 | 720 | parseuri@0.0.6: 721 | version "0.0.6" 722 | resolved "https://registry.npmjs.org/parseuri/-/parseuri-0.0.6.tgz" 723 | integrity sha512-AUjen8sAkGgao7UyCX6Ahv0gIK2fABKmYjvP4xmy5JaKvcbTRueIqIPHLAfq30xJddqSE033IOMUSOMCcK3Sow== 724 | 725 | path-is-absolute@^1.0.0: 726 | version "1.0.1" 727 | resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz" 728 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 729 | 730 | path-is-inside@^1.0.1, path-is-inside@^1.0.2: 731 | version "1.0.2" 732 | resolved "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz" 733 | integrity sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM= 734 | 735 | pify@^2.0.0: 736 | version "2.3.0" 737 | resolved "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz" 738 | integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= 739 | 740 | pinkie-promise@^2.0.0: 741 | version "2.0.1" 742 | resolved "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz" 743 | integrity sha1-ITXW36ejWMBprJsXh3YogihFD/o= 744 | dependencies: 745 | pinkie "^2.0.0" 746 | 747 | pinkie@^2.0.0: 748 | version "2.0.4" 749 | resolved "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz" 750 | integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA= 751 | 752 | pluralize@^7.0.0: 753 | version "7.0.0" 754 | resolved "https://registry.npmjs.org/pluralize/-/pluralize-7.0.0.tgz" 755 | integrity sha512-ARhBOdzS3e41FbkW/XWrTEtukqqLoK5+Z/4UeDaLuSW+39JPeFgs4gCGqsrJHVZX0fUrx//4OF0K1CUGwlIFow== 756 | 757 | prelude-ls@~1.1.2: 758 | version "1.1.2" 759 | resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz" 760 | integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= 761 | 762 | process-nextick-args@~1.0.6: 763 | version "1.0.7" 764 | resolved "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz" 765 | integrity sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M= 766 | 767 | progress@^2.0.0: 768 | version "2.0.0" 769 | resolved "https://registry.npmjs.org/progress/-/progress-2.0.0.tgz" 770 | integrity sha1-ihvjZr+Pwj2yvSPxDG/pILQ4nR8= 771 | 772 | pseudomap@^1.0.2: 773 | version "1.0.2" 774 | resolved "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz" 775 | integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= 776 | 777 | readable-stream@^2.2.2: 778 | version "2.3.3" 779 | resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz" 780 | integrity sha512-m+qzzcn7KUxEmd1gMbchF+Y2eIUbieUaxkWtptyHywrX0rE8QEYqPC07Vuy4Wm32/xE16NcdBctb8S0Xe/5IeQ== 781 | dependencies: 782 | core-util-is "~1.0.0" 783 | inherits "~2.0.3" 784 | isarray "~1.0.0" 785 | process-nextick-args "~1.0.6" 786 | safe-buffer "~5.1.1" 787 | string_decoder "~1.0.3" 788 | util-deprecate "~1.0.1" 789 | 790 | require-uncached@^1.0.3: 791 | version "1.0.3" 792 | resolved "https://registry.npmjs.org/require-uncached/-/require-uncached-1.0.3.tgz" 793 | integrity sha1-Tg1W1slmL9MeQwEcS5WqSZVUIdM= 794 | dependencies: 795 | caller-path "^0.1.0" 796 | resolve-from "^1.0.0" 797 | 798 | resolve-from@^1.0.0: 799 | version "1.0.1" 800 | resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-1.0.1.tgz" 801 | integrity sha1-Jsv+k10a7uq7Kbw/5a6wHpPUQiY= 802 | 803 | restore-cursor@^2.0.0: 804 | version "2.0.0" 805 | resolved "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz" 806 | integrity sha1-n37ih/gv0ybU/RYpI9YhKe7g368= 807 | dependencies: 808 | onetime "^2.0.0" 809 | signal-exit "^3.0.2" 810 | 811 | rimraf@^2.2.8: 812 | version "2.6.2" 813 | resolved "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz" 814 | integrity sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w== 815 | dependencies: 816 | glob "^7.0.5" 817 | 818 | run-async@^2.2.0: 819 | version "2.3.0" 820 | resolved "https://registry.npmjs.org/run-async/-/run-async-2.3.0.tgz" 821 | integrity sha1-A3GrSuC91yDUFm19/aZP96RFpsA= 822 | dependencies: 823 | is-promise "^2.1.0" 824 | 825 | rx-lite-aggregates@^4.0.8: 826 | version "4.0.8" 827 | resolved "https://registry.npmjs.org/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz" 828 | integrity sha1-dTuHqJoRyVRnxKwWJsTvxOBcZ74= 829 | dependencies: 830 | rx-lite "*" 831 | 832 | rx-lite@*, rx-lite@^4.0.8: 833 | version "4.0.8" 834 | resolved "https://registry.npmjs.org/rx-lite/-/rx-lite-4.0.8.tgz" 835 | integrity sha1-Cx4Rr4vESDbwSmQH6S2kJGe3lEQ= 836 | 837 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 838 | version "5.1.1" 839 | resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz" 840 | integrity sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg== 841 | 842 | semver@^5.3.0: 843 | version "5.4.1" 844 | resolved "https://registry.npmjs.org/semver/-/semver-5.4.1.tgz" 845 | integrity sha512-WfG/X9+oATh81XtllIo/I8gOiY9EXRdv1cQdyykeXK17YcUW3EXUAi2To4pcH6nZtJPr7ZOpM5OMyWJZm+8Rsg== 846 | 847 | shebang-command@^1.2.0: 848 | version "1.2.0" 849 | resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz" 850 | integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= 851 | dependencies: 852 | shebang-regex "^1.0.0" 853 | 854 | shebang-regex@^1.0.0: 855 | version "1.0.0" 856 | resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz" 857 | integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= 858 | 859 | signal-exit@^3.0.2: 860 | version "3.0.2" 861 | resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz" 862 | integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0= 863 | 864 | slice-ansi@1.0.0: 865 | version "1.0.0" 866 | resolved "https://registry.npmjs.org/slice-ansi/-/slice-ansi-1.0.0.tgz" 867 | integrity sha512-POqxBK6Lb3q6s047D/XsDVNPnF9Dl8JSaqe9h9lURl0OdNqy/ujDrOiIHtsqXMGbWWTIomRzAMaTyawAU//Reg== 868 | dependencies: 869 | is-fullwidth-code-point "^2.0.0" 870 | 871 | socket.io-client@^4.1.3: 872 | version "4.1.3" 873 | resolved "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.1.3.tgz" 874 | integrity sha512-hISFn6PDpgDifVUiNklLHVPTMv1LAk8poHArfIUdXa+gKgbr0MZbAlquDFqCqsF30yBqa+jg42wgos2FK50BHA== 875 | dependencies: 876 | "@types/component-emitter" "^1.2.10" 877 | backo2 "~1.0.2" 878 | component-emitter "~1.3.0" 879 | debug "~4.3.1" 880 | engine.io-client "~5.1.2" 881 | parseuri "0.0.6" 882 | socket.io-parser "~4.0.4" 883 | 884 | socket.io-parser@~4.0.4: 885 | version "4.0.4" 886 | resolved "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.0.4.tgz" 887 | integrity sha512-t+b0SS+IxG7Rxzda2EVvyBZbvFPBCjJoyHuE0P//7OAsN23GItzDRdWa6ALxZI/8R5ygK7jAR6t028/z+7295g== 888 | dependencies: 889 | "@types/component-emitter" "^1.2.10" 890 | component-emitter "~1.3.0" 891 | debug "~4.3.1" 892 | 893 | sprintf-js@~1.0.2: 894 | version "1.0.3" 895 | resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz" 896 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= 897 | 898 | string-width@^2.1.0, string-width@^2.1.1: 899 | version "2.1.1" 900 | resolved "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz" 901 | integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== 902 | dependencies: 903 | is-fullwidth-code-point "^2.0.0" 904 | strip-ansi "^4.0.0" 905 | 906 | string_decoder@~1.0.3: 907 | version "1.0.3" 908 | resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz" 909 | integrity sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ== 910 | dependencies: 911 | safe-buffer "~5.1.0" 912 | 913 | strip-ansi@^3.0.0: 914 | version "3.0.1" 915 | resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz" 916 | integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= 917 | dependencies: 918 | ansi-regex "^2.0.0" 919 | 920 | strip-ansi@^4.0.0: 921 | version "4.0.0" 922 | resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz" 923 | integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= 924 | dependencies: 925 | ansi-regex "^3.0.0" 926 | 927 | strip-json-comments@~2.0.1: 928 | version "2.0.1" 929 | resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz" 930 | integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= 931 | 932 | supports-color@^2.0.0: 933 | version "2.0.0" 934 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz" 935 | integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc= 936 | 937 | supports-color@^4.0.0: 938 | version "4.5.0" 939 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz" 940 | integrity sha1-vnoN5ITexcXN34s9WRJQRJEvY1s= 941 | dependencies: 942 | has-flag "^2.0.0" 943 | 944 | table@^4.0.1: 945 | version "4.0.2" 946 | resolved "https://registry.npmjs.org/table/-/table-4.0.2.tgz" 947 | integrity sha512-UUkEAPdSGxtRpiV9ozJ5cMTtYiqz7Ni1OGqLXRCynrvzdtR1p+cfOWe2RJLwvUG8hNanaSRjecIqwOjqeatDsA== 948 | dependencies: 949 | ajv "^5.2.3" 950 | ajv-keywords "^2.1.0" 951 | chalk "^2.1.0" 952 | lodash "^4.17.4" 953 | slice-ansi "1.0.0" 954 | string-width "^2.1.1" 955 | 956 | text-table@~0.2.0: 957 | version "0.2.0" 958 | resolved "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz" 959 | integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= 960 | 961 | through@^2.3.6: 962 | version "2.3.8" 963 | resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz" 964 | integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= 965 | 966 | tmp@^0.0.33: 967 | version "0.0.33" 968 | resolved "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz" 969 | integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== 970 | dependencies: 971 | os-tmpdir "~1.0.2" 972 | 973 | type-check@~0.3.2: 974 | version "0.3.2" 975 | resolved "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz" 976 | integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= 977 | dependencies: 978 | prelude-ls "~1.1.2" 979 | 980 | typedarray@^0.0.6: 981 | version "0.0.6" 982 | resolved "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz" 983 | integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= 984 | 985 | typescript@^2.6.2: 986 | version "2.9.2" 987 | resolved "https://registry.npmjs.org/typescript/-/typescript-2.9.2.tgz" 988 | integrity sha512-Gr4p6nFNaoufRIY4NMdpQRNmgxVIGMs4Fcu/ujdYk3nAZqk7supzBE9idmvfZIlH/Cuj//dvi+019qEue9lV0w== 989 | 990 | util-deprecate@~1.0.1: 991 | version "1.0.2" 992 | resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" 993 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= 994 | 995 | vue@^2.5.13: 996 | version "2.6.14" 997 | resolved "https://registry.npmjs.org/vue/-/vue-2.6.14.tgz" 998 | integrity sha512-x2284lgYvjOMj3Za7kqzRcUSxBboHqtgRE2zlos1qWaOye5yUmHn42LB1250NJBLRwEcdrB0JRwyPTEPhfQjiQ== 999 | 1000 | vuex@^3.0.1: 1001 | version "3.6.2" 1002 | resolved "https://registry.npmjs.org/vuex/-/vuex-3.6.2.tgz" 1003 | integrity sha512-ETW44IqCgBpVomy520DT5jf8n0zoCac+sxWnn+hMe/CzaSejb/eVw2YToiXYX+Ex/AuHHia28vWTq4goAexFbw== 1004 | 1005 | which@^1.2.9: 1006 | version "1.3.0" 1007 | resolved "https://registry.npmjs.org/which/-/which-1.3.0.tgz" 1008 | integrity sha512-xcJpopdamTuY5duC/KnTTNBraPK54YwpenP4lzxU8H91GudWpFv38u0CKjclE1Wi2EH2EDz5LRcHcKbCIzqGyg== 1009 | dependencies: 1010 | isexe "^2.0.0" 1011 | 1012 | wordwrap@~1.0.0: 1013 | version "1.0.0" 1014 | resolved "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz" 1015 | integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus= 1016 | 1017 | wrappy@1: 1018 | version "1.0.2" 1019 | resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz" 1020 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 1021 | 1022 | write@^0.2.1: 1023 | version "0.2.1" 1024 | resolved "https://registry.npmjs.org/write/-/write-0.2.1.tgz" 1025 | integrity sha1-X8A4KOJkzqP+kUVUdvejxWbLB1c= 1026 | dependencies: 1027 | mkdirp "^0.5.1" 1028 | 1029 | ws@~7.4.2: 1030 | version "7.4.6" 1031 | resolved "https://registry.npmjs.org/ws/-/ws-7.4.6.tgz" 1032 | integrity sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A== 1033 | 1034 | yallist@^2.1.2: 1035 | version "2.1.2" 1036 | resolved "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz" 1037 | integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= 1038 | 1039 | yeast@0.1.2: 1040 | version "0.1.2" 1041 | resolved "https://registry.npmjs.org/yeast/-/yeast-0.1.2.tgz" 1042 | integrity sha1-AI4G2AlDIMNy28L47XagymyKxBk= 1043 | --------------------------------------------------------------------------------