├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── index.d.ts ├── index.ts ├── package.json ├── scripts └── create-indexes.sh ├── src ├── count.d.ts ├── count.ts ├── getAccount.d.ts ├── getAccount.ts ├── getAccountControls.d.ts ├── getAccountControls.ts ├── getAccounts.d.ts ├── getAccounts.ts ├── getActions.d.ts ├── getActions.ts ├── getBlocks.d.ts ├── getBlocks.ts ├── utils.d.ts └── utils.ts ├── test ├── count.test.ts ├── getAccount.test.ts ├── getAccountControls.test.ts ├── getAccounts.test.ts ├── getActions.test.ts ├── getBlocks.test.ts └── mongodb.ts ├── tsconfig.json ├── tslint.json ├── types ├── account_controls.d.ts ├── account_controls.json ├── accounts.d.ts ├── accounts.json ├── action_traces.d.ts ├── action_traces.json ├── block_states.d.ts ├── block_states.json ├── blocks.d.ts ├── blocks.json ├── index.d.ts ├── index.ts ├── pub_keys.d.ts ├── pub_keys.json ├── transaction_traces.d.ts ├── transaction_traces.json ├── transactions.d.ts └── transactions.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | # Typescript library 2 | *.js 3 | dist 4 | 5 | # Logs 6 | logs 7 | *.log 8 | npm-debug.log* 9 | yarn-debug.log* 10 | yarn-error.log* 11 | 12 | # Runtime data 13 | pids 14 | *.pid 15 | *.seed 16 | *.pid.lock 17 | 18 | # Directory for instrumented libs generated by jscoverage/JSCover 19 | lib-cov 20 | 21 | # Coverage directory used by tools like istanbul 22 | coverage 23 | 24 | # nyc test coverage 25 | .nyc_output 26 | 27 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 28 | .grunt 29 | 30 | # Bower dependency directory (https://bower.io/) 31 | bower_components 32 | 33 | # node-waf configuration 34 | .lock-wscript 35 | 36 | # Compiled binary addons (https://nodejs.org/api/addons.html) 37 | build/Release 38 | 39 | # Dependency directories 40 | node_modules/ 41 | jspm_packages/ 42 | 43 | # TypeScript v1 declaration files 44 | typings/ 45 | 46 | # Optional npm cache directory 47 | .npm 48 | 49 | # Optional eslint cache 50 | .eslintcache 51 | 52 | # Optional REPL history 53 | .node_repl_history 54 | 55 | # Output of 'npm pack' 56 | *.tgz 57 | 58 | # Yarn Integrity file 59 | .yarn-integrity 60 | 61 | # dotenv environment variables file 62 | .env 63 | 64 | # next.js build output 65 | .next 66 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | cache: yarn 3 | node_js: 4 | - node -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 EOS BP Developers 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # EOSIO MongoDB Queries 2 | 3 | [![Build Status](https://travis-ci.org/EOS-BP-Developers/eosio-mongodb-queries.svg?branch=master)](https://travis-ci.org/EOS-BP-Developers/eosio-mongodb-queries) 4 | [![npm version](https://badge.fury.io/js/eosio-mongodb-queries.svg)](https://badge.fury.io/js/eosio-mongodb-queries) 5 | [![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/EOS-BP-Developers/eosio-mongodb-queries/master/LICENSE) 6 | 7 | Quickly and easily create complex MongoDB Queries for the EOSIO blockchain. 8 | 9 | ## Install 10 | 11 | **npm** 12 | 13 | ```bash 14 | $ yarn add eosio-mongodb-queries 15 | ``` 16 | 17 | **web** 18 | 19 | ```html 20 | 21 | ``` 22 | 23 | ## Quickstart 24 | 25 | ```javascript 26 | import { MongoClient } from "mongodb"; 27 | import { getAccount } from "eosio-mongodb-queries"; 28 | 29 | (async () => { 30 | const client = await MongoClient.connect("mongodb://localhost:27017", { useNewUrlParser: true }); 31 | 32 | // Optional Parameters 33 | const options = { 34 | gte_block_num: 0, 35 | lte_block_num: Infinity, 36 | }; 37 | const result = await getAccount(client, "eosnationftw", options); 38 | // { 39 | // name: 'eosnationftw', 40 | // block_num: 6101090, 41 | // stake_quantity: 2.8, 42 | // stake_net_quantity: 0.4, 43 | // stake_cpu_quantity: 2.4 44 | // } 45 | })(); 46 | ``` 47 | 48 | ## EOSIO Full Node 49 | 50 | You must first enable the MongoDB plugin to your EOSIO full node by including the following to your configuration. 51 | 52 | **config.in** 53 | 54 | ```ini 55 | # Override default maximum ABI serialization time allowed in ms (eosio::chain_plugin) 56 | abi-serializer-max-time-ms = 5000 57 | 58 | # Plugin(s) to enable, may be specified multiple times 59 | plugin = eosio::mongo_db_plugin 60 | 61 | # MongoDB URI connection string, see: https://docs.mongodb.com/master/reference/connection-string/. If not specified then plugin is disabled. Default database 'EOS' is used if not specified in URI. Example: mongodb://127.0.0.1:27017/EOS (eosio::mongo_db_plugin) 62 | mongodb-uri = mongodb://localhost:27017 63 | ``` 64 | 65 | **Replay Blocks** 66 | 67 | To allow actions to be decoded from the ABI, you must replay all blocks from the genesis. 68 | 69 | $ nodeos --replay-blockchain --hard-replay-blockchain --mongodb-wipe 70 | 71 | > [More Information on EOSIO GitHub](https://github.com/EOSIO/eos/pull/4304) 72 | 73 | ## Query Ideas 74 | 75 | - [ ] Vote Tally for `eosio.forum` (submitted by [Denis](https://t.me/deniscarrier) from [EOS Nation](https://eosnation.io)) 76 | - [ ] Block Producer votes & positions (submitted by [Nathan](https://t.me/nsrempel) from [GenerEOS](https://www.genereos.io)) 77 | - [ ] Name auction for all-time bids or current bid (submitted by [Syed](https://t.me/syed_jafri) from [EOS Cafe](https://www.eos.cafe)) 78 | 79 | ## References 80 | 81 | **MongoDB Pipeline** 82 | 83 | - 84 | - 85 | 86 | ## Contributors 87 | 88 | This is made with ♥ by: 89 | 90 | - [EOS Nation](https://eosnation.io) (`eosnationftw`) 91 | 92 | > Voting on the EOSIO mainnet helps build more awesome tools for the EOS community. 93 | 94 | ## API 95 | 96 | 97 | 98 | #### Table of Contents 99 | 100 | - [getActions](#getactions) 101 | - [Parameters](#parameters) 102 | - [Examples](#examples) 103 | - [getBlocks](#getblocks) 104 | - [Parameters](#parameters-1) 105 | - [Examples](#examples-1) 106 | - [getAccountControls](#getaccountcontrols) 107 | - [Parameters](#parameters-2) 108 | - [Examples](#examples-2) 109 | - [setDefaultLimit](#setdefaultlimit) 110 | - [Parameters](#parameters-3) 111 | - [Examples](#examples-3) 112 | - [addBlockFiltersToPipeline](#addblockfilterstopipeline) 113 | - [Parameters](#parameters-4) 114 | - [getAccount](#getaccount) 115 | - [Parameters](#parameters-5) 116 | - [Examples](#examples-4) 117 | - [getAccounts](#getaccounts) 118 | - [Parameters](#parameters-6) 119 | - [Examples](#examples-5) 120 | 121 | ### getActions 122 | 123 | EOSIO MongoDB Actions 124 | 125 | #### Parameters 126 | 127 | - `client` **MongoClient** MongoDB Client 128 | - `options` **[Object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object)** Optional Parameters (optional, default `{}`) 129 | - `options.account` **([string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String) \| [Array](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array)<[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)>)?** Filter by account contracts (eg: ["eosio","eosio.token"]) 130 | - `options.name` **([string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String) \| [Array](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array)<[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)>)?** Filter by action names (eg: ["undelegatebw", "delegatebw"]) 131 | - `options.limit` **[number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)** Limit the maximum amount of of actions returned (optional, default `25`) 132 | - `options.skip` **[number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)?** Skips number of documents 133 | - `options.sort` **[object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object)?** Sort by ascending order (1) or descending order (-1) (eg: {block_num: -1}) 134 | - `options.match` **[object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object)?** Match by entries using MongoDB's $match (eg: {"data.from": "eosio"}) 135 | - `options.trx_id` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)?** Filter by exact Transaction Id 136 | - `options.irreversible` **[boolean](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean)?** Irreversible transaction (eg: true/false) 137 | - `options.block_num` **[number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)?** Filter by exact Reference Block Number 138 | - `options.block_id` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)?** Filter by exact Reference Block ID 139 | - `options.lte_block_num` **[number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)?** Filter by Less-than or equal (<=) the Reference Block Number 140 | - `options.gte_block_num` **[number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)?** Filter by Greater-than or equal (>=) the Reference Block Number 141 | 142 | #### Examples 143 | 144 | ```javascript 145 | const options = { 146 | account: "eosio", 147 | name: ["delegatebw", "undelegatebw"], 148 | match: {"data.from": "eosnationftw", "data.receiver": "eosnationftw"}, 149 | irreversible: true, 150 | sort: {block_num: -1} 151 | }; 152 | const results = await getActions(client, options); 153 | console.log(await results.toArray()); 154 | ``` 155 | 156 | Returns **AggregationCursor<Actions>** MongoDB Aggregation Cursor 157 | 158 | ### getBlocks 159 | 160 | EOSIO MongoDB Blocks 161 | 162 | #### Parameters 163 | 164 | - `client` **MongoClient** MongoDB Client 165 | - `options` **[Object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object)** Optional Parameters (optional, default `{}`) 166 | - `options.limit` **[number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)** Limit the maximum amount of of actions returned (optional, default `25`) 167 | - `options.skip` **[number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)?** Skips number of documents 168 | - `options.sort` **[object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object)?** Sort by ascending order (1) or descending order (-1) (eg: {block_num: -1}) 169 | - `options.match` **[object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object)?** Match by entries (eg: {"block.producer": "eosio"}) 170 | - `options.block_num` **[number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)?** Filter by exact Reference Block Number 171 | - `options.block_id` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)?** Filter by exact Reference Block ID 172 | - `options.lte_block_num` **[number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)?** Filter by Less-than or equal (<=) the Reference Block Number 173 | - `options.gte_block_num` **[number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)?** Filter by Greater-than or equal (>=) the Reference Block Number 174 | 175 | #### Examples 176 | 177 | ```javascript 178 | const options = { 179 | match: {"block.producer": "eosnationftw"}, 180 | sort: {block_num: -1} 181 | }; 182 | const results = await getBlocks(client, options); 183 | console.log(await results.toArray()); 184 | ``` 185 | 186 | Returns **AggregationCursor<Blocks>** MongoDB Aggregation Cursor 187 | 188 | ### getAccountControls 189 | 190 | EOSIO MongoDB Account Controls 191 | 192 | #### Parameters 193 | 194 | - `client` **MongoClient** MongoDB Client 195 | - `options` **[Object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object)** Optional Parameters (optional, default `{}`) 196 | - `options.limit` **[number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)** Limit the maximum amount of of actions returned (optional, default `25`) 197 | - `options.sort` **[object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object)?** Sort by ascending order (1) or descending order (-1) (eg: {controlled_account: -1}) 198 | - `options.skip` **[number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)?** Skips number of documents 199 | - `options.match` **[object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object)?** Match by entries (eg: {controlled_account: "eosio.saving"}) 200 | 201 | #### Examples 202 | 203 | ```javascript 204 | const options = { 205 | match: {controlled_account: "eosio.saving"}, 206 | }; 207 | const results = await getAccounControls(client, options); 208 | console.log(await results.toArray()); 209 | ``` 210 | 211 | Returns **AggregationCursor<AccountControls>** MongoDB Aggregation Cursor 212 | 213 | ### setDefaultLimit 214 | 215 | Set default limit 216 | 217 | #### Parameters 218 | 219 | - `options` **[object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object)** Optional Parameters (optional, default `{}`) 220 | 221 | #### Examples 222 | 223 | ```javascript 224 | setDefaultLimit() //=> 25 225 | ``` 226 | 227 | Returns **[number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)** Default Limit value 228 | 229 | ### addBlockFiltersToPipeline 230 | 231 | Add Block Filters to Pipeline 232 | 233 | #### Parameters 234 | 235 | - `pipeline` **[Array](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array)<[object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object)>** MongoDB Pipeline 236 | - `options` **[object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object)** Optional Parameters (optional, default `{}`) 237 | - `options.irreversible` **[boolean](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean)?** Irreversible transaction (eg: true/false) 238 | - `options.block_num` **[number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)?** Filter by exact Reference Block Number 239 | - `options.block_id` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)?** Filter by exact Reference Block ID 240 | - `options.lte_block_num` **[number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)?** Filter by Less-than or equal (<=) the Reference Block Number 241 | - `options.gte_block_num` **[number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)?** Filter by Greater-than or equal (>=) the Reference Block Number 242 | 243 | Returns **void** Appends results to pipeline 244 | 245 | ### getAccount 246 | 247 | Get Account Details 248 | 249 | #### Parameters 250 | 251 | - `client` **MongoClient** MongoDB Client 252 | - `name` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** Account Name 253 | - `options` **[Object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object)** Optional Parameters (optional, default `{}`) 254 | - `options.lte_block_num` **[number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)?** Filter by Less-than or equal (<=) the Reference Block Number 255 | 256 | #### Examples 257 | 258 | ```javascript 259 | const name = "eosnationftw"; 260 | const options = { 261 | block_num: 6000000, 262 | }; 263 | const result = await getAccount(client, name, options); 264 | // { 265 | // name: 'eosnationftw', 266 | // block_num: 2092984, 267 | // stake_quantity: 1.8, 268 | // stake_net_quantity: 0.9, 269 | // stake_cpu_quantity: 0.9, 270 | // actions: [...Actions] 271 | // } 272 | ``` 273 | 274 | Returns **[Object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object)** Account Details 275 | 276 | ### getAccounts 277 | 278 | EOSIO MongoDB Accounts 279 | 280 | #### Parameters 281 | 282 | - `client` **MongoClient** MongoDB Client 283 | - `options` **[Object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object)** Optional Parameters (optional, default `{}`) 284 | - `options.abi` **[boolean](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean)?** Does abi exist (eg: true/false) 285 | - `options.limit` **[number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)** Limit the maximum amount of of actions returned (optional, default `25`) 286 | - `options.sort` **[object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object)?** Sort by ascending order (1) or descending order (-1) (eg: {controlled_account: -1}) 287 | - `options.skip` **[number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)?** Skips number of documents 288 | - `options.match` **[object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object)?** Match by entries (eg: {controlled_account: "eosio.saving"}) 289 | 290 | #### Examples 291 | 292 | ```javascript 293 | const options = { 294 | match: {controlled_account: "eosio.saving"}, 295 | }; 296 | const results = await getAccounControls(client, options); 297 | console.log(await results.toArray()); 298 | ``` 299 | 300 | Returns **AggregationCursor<AccountControls>** MongoDB Aggregation Cursor 301 | -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- 1 | export { getActions } from "./src/getActions"; 2 | export { getBlocks } from "./src/getBlocks"; 3 | export { getAccountControls } from "./src/getAccountControls"; 4 | export { getAccount } from "./src/getAccount"; 5 | export { getAccounts } from "./src/getAccounts"; 6 | export { count } from "./src/count"; 7 | export * from "./types"; 8 | -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- 1 | export { getActions } from "./src/getActions"; 2 | export { getBlocks } from "./src/getBlocks"; 3 | export { getAccountControls } from "./src/getAccountControls"; 4 | export { getAccount } from "./src/getAccount"; 5 | export { getAccounts } from "./src/getAccounts"; 6 | export { count } from "./src/count"; 7 | export * from "./types"; 8 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "eosio-mongodb-queries", 3 | "version": "1.0.0", 4 | "description": "EOSIO MongoDB Queries", 5 | "main": "index.js", 6 | "types": "index.d.ts", 7 | "files": [ 8 | "index.js", 9 | "index.d.ts", 10 | "src" 11 | ], 12 | "scripts": { 13 | "test": "tslint --project .", 14 | "prepare": "tsc", 15 | "postpublish": "git push && git push --tags", 16 | "docs": "tsc && documentation readme index.js --section=API" 17 | }, 18 | "repository": { 19 | "type": "git", 20 | "url": "git+https://github.com/EOS-BP-Developers/eosio-mongodb-queries.git" 21 | }, 22 | "keywords": [ 23 | "eosio", 24 | "database", 25 | "mongodb", 26 | "mongo", 27 | "eos" 28 | ], 29 | "author": "EOS BP Developers", 30 | "contributors": [ 31 | "Denis Carriere " 32 | ], 33 | "license": "MIT", 34 | "bugs": { 35 | "url": "https://github.com/EOS-BP-Developers/eosio-mongodb-queries/issues" 36 | }, 37 | "homepage": "https://github.com/EOS-BP-Developers/eosio-mongodb-queries#readme", 38 | "devDependencies": { 39 | "@types/bson": "*", 40 | "@types/dotenv": "*", 41 | "@types/mongodb": "*", 42 | "@types/node": "*", 43 | "documentation": "*", 44 | "dotenv": "*", 45 | "mongodb": "*", 46 | "tslint": "*", 47 | "typescript": "*" 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /scripts/create-indexes.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # action_traces 4 | mongo EOS --eval 'db.action_traces.createIndex({"act.account": 1, "act.name": 1},{background: true})' 5 | 6 | # eosio:delegatebw 7 | # eosio:undelegatebw 8 | mongo EOS --eval 'db.action_traces.createIndex({"act.data.from": 1},{background: true})' 9 | mongo EOS --eval 'db.action_traces.createIndex({"act.data.receiver": 1},{background: true})' 10 | 11 | -------------------------------------------------------------------------------- /src/count.d.ts: -------------------------------------------------------------------------------- 1 | import { MongoClient, MongoCountPreferences } from "mongodb"; 2 | /** 3 | * EOSIO MongoDB Fast Count 4 | * 5 | * @param {MongoClient} client MongoDB Client 6 | * @param {string} collectionName Collection Name 7 | * @param {object} [query={}] MongoDB Query 8 | * @param {object} [options={}] Optional Parameters 9 | * @param {number} [options.limit] Limit the maximum count 10 | * @param {number} [options.skip] Skips number of documents 11 | * @returns {Promise} Esimated Document Count 12 | * @example 13 | * const count = await count(client, "actions", {account: "eosio.token"}); 14 | * count //=> 160000 15 | */ 16 | export declare function count(client: MongoClient, collectionName: string, query?: object, options?: MongoCountPreferences): Promise; 17 | -------------------------------------------------------------------------------- /src/count.ts: -------------------------------------------------------------------------------- 1 | import { MongoClient, MongoCountPreferences } from "mongodb"; 2 | 3 | /** 4 | * EOSIO MongoDB Fast Count 5 | * 6 | * @param {MongoClient} client MongoDB Client 7 | * @param {string} collectionName Collection Name 8 | * @param {object} [query={}] MongoDB Query 9 | * @param {object} [options={}] Optional Parameters 10 | * @param {number} [options.limit] Limit the maximum count 11 | * @param {number} [options.skip] Skips number of documents 12 | * @returns {Promise} Esimated Document Count 13 | * @example 14 | * const count = await count(client, "actions", {account: "eosio.token"}); 15 | * count //=> 160000 16 | */ 17 | export function count(client: MongoClient, collectionName: string, query: object = {}, options: MongoCountPreferences = {}): Promise { 18 | const db = client.db("EOS"); 19 | const collection = db.collection(collectionName); 20 | 21 | if (Object.keys(query).length) { 22 | return collection.countDocuments(query, options); 23 | } else { 24 | if (Object.keys(options).length) { 25 | return collection.estimatedDocumentCount(query, options); 26 | } else { 27 | return collection.estimatedDocumentCount(query); 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /src/getAccount.d.ts: -------------------------------------------------------------------------------- 1 | import { MongoClient } from "mongodb"; 2 | /** 3 | * Get Account Details 4 | * 5 | * @param {MongoClient} client MongoDB Client 6 | * @param {string} name Account Name 7 | * @param {Object} [options={}] Optional Parameters 8 | * @param {number} [options.lte_block_num] Filter by Less-than or equal (<=) the Reference Block Number 9 | * @returns {Object} Account Details 10 | * @example 11 | * const name = "eosnationftw"; 12 | * const options = { 13 | * block_num: 6000000, 14 | * }; 15 | * const result = await getAccount(client, name, options); 16 | * // { 17 | * // name: 'eosnationftw', 18 | * // block_num: 2092984, 19 | * // stake_quantity: 1.8, 20 | * // stake_net_quantity: 0.9, 21 | * // stake_cpu_quantity: 0.9, 22 | * // actions: [...Actions] 23 | * // } 24 | */ 25 | export declare function getAccount(client: MongoClient, name: string, options?: { 26 | lte_block_num?: number; 27 | }): Promise<{ 28 | name: string; 29 | block_num: number; 30 | stake_quantity: number; 31 | stake_net_quantity: number; 32 | stake_cpu_quantity: number; 33 | actions: import("../../../../../Users/denis/Github/eosio-mongodb-queries/src/getActions").Action[]; 34 | }>; 35 | -------------------------------------------------------------------------------- /src/getAccount.ts: -------------------------------------------------------------------------------- 1 | import { MongoClient } from "mongodb"; 2 | import { getActions } from "./getActions"; 3 | 4 | /** 5 | * Get Account Details 6 | * 7 | * @param {MongoClient} client MongoDB Client 8 | * @param {string} name Account Name 9 | * @param {Object} [options={}] Optional Parameters 10 | * @param {number} [options.lte_block_num] Filter by Less-than or equal (<=) the Reference Block Number 11 | * @returns {Object} Account Details 12 | * @example 13 | * const name = "eosnationftw"; 14 | * const options = { 15 | * block_num: 6000000, 16 | * }; 17 | * const result = await getAccount(client, name, options); 18 | * // { 19 | * // name: 'eosnationftw', 20 | * // block_num: 2092984, 21 | * // stake_quantity: 1.8, 22 | * // stake_net_quantity: 0.9, 23 | * // stake_cpu_quantity: 0.9, 24 | * // actions: [...Actions] 25 | * // } 26 | */ 27 | export async function getAccount(client: MongoClient, name: string, options: { 28 | lte_block_num?: number, 29 | } = {}) { 30 | // Get Actions 31 | const actions = await getActions(client, { 32 | account: "eosio", 33 | name: ["delegatebw", "undelegatebw"], 34 | match: {$or: [{"data.from": name}, {"data.receiver": name}]}, 35 | lte_block_num: options.lte_block_num, 36 | irreversible: true, 37 | limit: Infinity, 38 | }).toArray(); 39 | 40 | // Assert 41 | if (!actions.length) { throw new Error("no account found"); } 42 | 43 | // Counters 44 | let block_num = 0; 45 | let stake_quantity = 0; 46 | let stake_net_quantity = 0; 47 | let stake_cpu_quantity = 0; 48 | 49 | for (const action of actions) { 50 | if (action.block_num > block_num) { block_num = action.block_num; } 51 | switch (action.name) { 52 | // Add total stake 53 | case "delegatebw": 54 | if (name === action.data.receiver) { 55 | const stake_net_quantity_number = Number(action.data.stake_net_quantity.replace(" EOS", "")); 56 | const stake_cpu_quantity_number = Number(action.data.stake_cpu_quantity.replace(" EOS", "")); 57 | stake_net_quantity += stake_net_quantity_number; 58 | stake_cpu_quantity += stake_cpu_quantity_number; 59 | stake_quantity += stake_net_quantity_number + stake_cpu_quantity_number; 60 | } 61 | break; 62 | // Remove total stake 63 | case "undelegatebw": 64 | if (name === action.data.from) { 65 | const unstake_net_quantity_number = Number(action.data.unstake_net_quantity.replace(" EOS", "")); 66 | const unstake_cpu_quantity_number = Number(action.data.unstake_cpu_quantity.replace(" EOS", "")); 67 | stake_net_quantity -= unstake_net_quantity_number; 68 | stake_cpu_quantity -= unstake_cpu_quantity_number; 69 | stake_quantity -= unstake_net_quantity_number + unstake_cpu_quantity_number; 70 | } 71 | break; 72 | } 73 | } 74 | // Round to 4 decimals 75 | stake_quantity = Number(stake_quantity.toFixed(4)); 76 | 77 | return { 78 | name, 79 | block_num, 80 | stake_quantity, 81 | stake_net_quantity, 82 | stake_cpu_quantity, 83 | actions, 84 | }; 85 | } 86 | -------------------------------------------------------------------------------- /src/getAccountControls.d.ts: -------------------------------------------------------------------------------- 1 | import { AggregationCursor, MongoClient } from "mongodb"; 2 | import { AccountControls } from "../types/account_controls"; 3 | /** 4 | * EOSIO MongoDB Account Controls 5 | * 6 | * @param {MongoClient} client MongoDB Client 7 | * @param {Object} [options={}] Optional Parameters 8 | * @param {number} [options.limit=25] Limit the maximum amount of of actions returned 9 | * @param {object} [options.sort] Sort by ascending order (1) or descending order (-1) (eg: {controlled_account: -1}) 10 | * @param {number} [options.skip] Skips number of documents 11 | * @param {object} [options.match] Match by entries (eg: {controlled_account: "eosio.saving"}) 12 | * @returns {AggregationCursor} MongoDB Aggregation Cursor 13 | * @example 14 | * const options = { 15 | * match: {controlled_account: "eosio.saving"}, 16 | * }; 17 | * const results = await getAccounControls(client, options); 18 | * console.log(await results.toArray()); 19 | */ 20 | export declare function getAccountControls(client: MongoClient, options?: { 21 | limit?: number; 22 | match?: object; 23 | skip?: number; 24 | sort?: object; 25 | }): AggregationCursor; 26 | -------------------------------------------------------------------------------- /src/getAccountControls.ts: -------------------------------------------------------------------------------- 1 | import { AggregationCursor, MongoClient } from "mongodb"; 2 | import { AccountControls } from "../types/account_controls"; 3 | import { setDefaultLimit } from "./utils"; 4 | 5 | /** 6 | * EOSIO MongoDB Account Controls 7 | * 8 | * @param {MongoClient} client MongoDB Client 9 | * @param {Object} [options={}] Optional Parameters 10 | * @param {number} [options.limit=25] Limit the maximum amount of of actions returned 11 | * @param {object} [options.sort] Sort by ascending order (1) or descending order (-1) (eg: {controlled_account: -1}) 12 | * @param {number} [options.skip] Skips number of documents 13 | * @param {object} [options.match] Match by entries (eg: {controlled_account: "eosio.saving"}) 14 | * @returns {AggregationCursor} MongoDB Aggregation Cursor 15 | * @example 16 | * const options = { 17 | * match: {controlled_account: "eosio.saving"}, 18 | * }; 19 | * const results = await getAccounControls(client, options); 20 | * console.log(await results.toArray()); 21 | */ 22 | export function getAccountControls(client: MongoClient, options: { 23 | limit?: number, 24 | match?: object, 25 | skip?: number, 26 | sort?: object, 27 | } = {}): AggregationCursor { 28 | // Setup MongoDB collection 29 | const db = client.db("EOS"); 30 | const collection = db.collection("account_controls"); 31 | 32 | // Default optional paramters 33 | const limit = setDefaultLimit(options); 34 | 35 | // MongoDB Pipeline 36 | const pipeline: any = []; 37 | 38 | // Match by data entries 39 | if (options.match) { pipeline.push({$match: options.match}); } 40 | 41 | // Sort by ascending or decending based on attribute 42 | if (options.sort) { pipeline.push({$sort: options.sort}); } 43 | 44 | // Support Pagination using Skip & Limit 45 | if (options.skip) { pipeline.push({$skip: options.skip }); } 46 | if (limit) { pipeline.push({$limit: limit }); } 47 | 48 | return collection.aggregate(pipeline); 49 | } 50 | -------------------------------------------------------------------------------- /src/getAccounts.d.ts: -------------------------------------------------------------------------------- 1 | import { AggregationCursor, MongoClient } from "mongodb"; 2 | import { Accounts } from "../types/accounts"; 3 | /** 4 | * EOSIO MongoDB Accounts 5 | * 6 | * @param {MongoClient} client MongoDB Client 7 | * @param {Object} [options={}] Optional Parameters 8 | * @param {boolean} [options.abi] Does abi exist (eg: true/false) 9 | * @param {number} [options.limit=25] Limit the maximum amount of of actions returned 10 | * @param {object} [options.sort] Sort by ascending order (1) or descending order (-1) (eg: {controlled_account: -1}) 11 | * @param {number} [options.skip] Skips number of documents 12 | * @param {object} [options.match] Match by entries (eg: {controlled_account: "eosio.saving"}) 13 | * @returns {AggregationCursor} MongoDB Aggregation Cursor 14 | * @example 15 | * const options = { 16 | * match: {controlled_account: "eosio.saving"}, 17 | * }; 18 | * const results = await getAccounControls(client, options); 19 | * console.log(await results.toArray()); 20 | */ 21 | export declare function getAccounts(client: MongoClient, options?: { 22 | abi?: boolean; 23 | limit?: number; 24 | match?: object; 25 | skip?: number; 26 | sort?: object; 27 | }): AggregationCursor; 28 | -------------------------------------------------------------------------------- /src/getAccounts.ts: -------------------------------------------------------------------------------- 1 | import { AggregationCursor, MongoClient } from "mongodb"; 2 | import { Accounts } from "../types/accounts"; 3 | import { setDefaultLimit } from "./utils"; 4 | 5 | /** 6 | * EOSIO MongoDB Accounts 7 | * 8 | * @param {MongoClient} client MongoDB Client 9 | * @param {Object} [options={}] Optional Parameters 10 | * @param {boolean} [options.abi] Does abi exist (eg: true/false) 11 | * @param {number} [options.limit=25] Limit the maximum amount of of actions returned 12 | * @param {object} [options.sort] Sort by ascending order (1) or descending order (-1) (eg: {controlled_account: -1}) 13 | * @param {number} [options.skip] Skips number of documents 14 | * @param {object} [options.match] Match by entries (eg: {controlled_account: "eosio.saving"}) 15 | * @returns {AggregationCursor} MongoDB Aggregation Cursor 16 | * @example 17 | * const options = { 18 | * match: {controlled_account: "eosio.saving"}, 19 | * }; 20 | * const results = await getAccounControls(client, options); 21 | * console.log(await results.toArray()); 22 | */ 23 | export function getAccounts(client: MongoClient, options: { 24 | abi?: boolean, 25 | limit?: number, 26 | match?: object, 27 | skip?: number, 28 | sort?: object, 29 | } = {}): AggregationCursor { 30 | // Setup MongoDB collection 31 | const db = client.db("EOS"); 32 | const collection = db.collection("accounts"); 33 | 34 | // Default optional paramters 35 | const limit = setDefaultLimit(options); 36 | 37 | // MongoDB Pipeline 38 | const pipeline: any = []; 39 | 40 | // Match by data entries 41 | if (options.match) { pipeline.push({$match: options.match}); } 42 | 43 | // Match if ABI exists or not 44 | if (options.abi) { pipeline.push({$match: {abi: {$exists: options.abi}}}); } 45 | 46 | // Sort by ascending or decending based on attribute 47 | if (options.sort) { pipeline.push({$sort: options.sort}); } 48 | 49 | // Support Pagination using Skip & Limit 50 | if (options.skip) { pipeline.push({$skip: options.skip }); } 51 | if (limit) { pipeline.push({$limit: limit }); } 52 | 53 | return collection.aggregate(pipeline); 54 | } 55 | -------------------------------------------------------------------------------- /src/getActions.d.ts: -------------------------------------------------------------------------------- 1 | import { AggregationCursor, MongoClient } from "mongodb"; 2 | import { Act } from "../types/action_traces"; 3 | export interface Action extends Act { 4 | irreversible: boolean; 5 | block_id: string; 6 | block_num: number; 7 | } 8 | /** 9 | * EOSIO MongoDB Actions 10 | * 11 | * @param {MongoClient} client MongoDB Client 12 | * @param {Object} [options={}] Optional Parameters 13 | * @param {string|Array} [options.account] Filter by account contracts (eg: ["eosio","eosio.token"]) 14 | * @param {string|Array} [options.name] Filter by action names (eg: ["undelegatebw", "delegatebw"]) 15 | * @param {number} [options.limit=25] Limit the maximum amount of of actions returned 16 | * @param {number} [options.skip] Skips number of documents 17 | * @param {object} [options.sort] Sort by ascending order (1) or descending order (-1) (eg: {block_num: -1}) 18 | * @param {object} [options.match] Match by entries using MongoDB's $match (eg: {"data.from": "eosio"}) 19 | * @param {string} [options.trx_id] Filter by exact Transaction Id 20 | * @param {boolean} [options.irreversible] Irreversible transaction (eg: true/false) 21 | * @param {number} [options.block_num] Filter by exact Reference Block Number 22 | * @param {string} [options.block_id] Filter by exact Reference Block ID 23 | * @param {number} [options.lte_block_num] Filter by Less-than or equal (<=) the Reference Block Number 24 | * @param {number} [options.gte_block_num] Filter by Greater-than or equal (>=) the Reference Block Number 25 | * @returns {AggregationCursor} MongoDB Aggregation Cursor 26 | * @example 27 | * const options = { 28 | * account: "eosio", 29 | * name: ["delegatebw", "undelegatebw"], 30 | * match: {"act.data.from": "eosnationftw", "act.data.receiver": "eosnationftw"}, 31 | * irreversible: true, 32 | * sort: {block_num: -1} 33 | * }; 34 | * const results = await getActions(client, options); 35 | * console.log(await results.toArray()); 36 | */ 37 | export declare function getActions(client: MongoClient, options?: { 38 | account?: string | string[]; 39 | name?: string | string[]; 40 | match?: object; 41 | trx_id?: string; 42 | block_num?: number; 43 | block_id?: string; 44 | lte_block_num?: number; 45 | gte_block_num?: number; 46 | irreversible?: boolean; 47 | skip?: number; 48 | limit?: number; 49 | sort?: object; 50 | }): AggregationCursor; 51 | -------------------------------------------------------------------------------- /src/getActions.ts: -------------------------------------------------------------------------------- 1 | import { AggregationCursor, MongoClient } from "mongodb"; 2 | import { Act } from "../types/action_traces"; 3 | import { addBlockFiltersToPipeline, setDefaultLimit } from "./utils"; 4 | 5 | export interface Action extends Act { 6 | irreversible: boolean; 7 | block_id: string; 8 | block_num: number; 9 | } 10 | 11 | /** 12 | * EOSIO MongoDB Actions 13 | * 14 | * @param {MongoClient} client MongoDB Client 15 | * @param {Object} [options={}] Optional Parameters 16 | * @param {string|Array} [options.account] Filter by account contracts (eg: ["eosio","eosio.token"]) 17 | * @param {string|Array} [options.name] Filter by action names (eg: ["undelegatebw", "delegatebw"]) 18 | * @param {number} [options.limit=25] Limit the maximum amount of of actions returned 19 | * @param {number} [options.skip] Skips number of documents 20 | * @param {object} [options.sort] Sort by ascending order (1) or descending order (-1) (eg: {block_num: -1}) 21 | * @param {object} [options.match] Match by entries using MongoDB's $match (eg: {"data.from": "eosio"}) 22 | * @param {string} [options.trx_id] Filter by exact Transaction Id 23 | * @param {boolean} [options.irreversible] Irreversible transaction (eg: true/false) 24 | * @param {number} [options.block_num] Filter by exact Reference Block Number 25 | * @param {string} [options.block_id] Filter by exact Reference Block ID 26 | * @param {number} [options.lte_block_num] Filter by Less-than or equal (<=) the Reference Block Number 27 | * @param {number} [options.gte_block_num] Filter by Greater-than or equal (>=) the Reference Block Number 28 | * @returns {AggregationCursor} MongoDB Aggregation Cursor 29 | * @example 30 | * const options = { 31 | * account: "eosio", 32 | * name: ["delegatebw", "undelegatebw"], 33 | * match: {"act.data.from": "eosnationftw", "act.data.receiver": "eosnationftw"}, 34 | * irreversible: true, 35 | * sort: {block_num: -1} 36 | * }; 37 | * const results = await getActions(client, options); 38 | * console.log(await results.toArray()); 39 | */ 40 | export function getActions(client: MongoClient, options: { 41 | account?: string|string[], 42 | name?: string|string[], 43 | match?: object, 44 | trx_id?: string, 45 | block_num?: number, 46 | block_id?: string, 47 | lte_block_num?: number, 48 | gte_block_num?: number, 49 | irreversible?: boolean, 50 | skip?: number, 51 | limit?: number, 52 | sort?: object, 53 | } = {}): AggregationCursor { 54 | // Setup MongoDB collection 55 | const db = client.db("EOS"); 56 | const collection = db.collection("action_traces"); 57 | 58 | // Default optional paramters 59 | const limit = setDefaultLimit(options); 60 | 61 | // Convert (string|string[]) => string[] 62 | const names: string[] = Array.isArray(options.name) ? options.name : options.name ? [options.name] : []; 63 | const accounts: string[] = Array.isArray(options.account) ? options.account : options.account ? [options.account] : []; 64 | 65 | // MongoDB Pipeline 66 | const pipeline: object[] = []; 67 | 68 | // Filter by Transaction ID 69 | if (options.trx_id) { pipeline.push({$match: { trx_id: options.trx_id }}); } 70 | 71 | // Filter account contracts 72 | // eg: ["eosio", "eosio.token"] 73 | if (accounts.length) { 74 | pipeline.push({ 75 | $match: { 76 | $or: accounts.map((account) => { 77 | return { "act.account": account }; 78 | }), 79 | }, 80 | }); 81 | } 82 | 83 | // Filter action names 84 | // eg: ["delegatebw", "undelegatebw"] 85 | if (names.length) { 86 | pipeline.push({ 87 | $match: { 88 | $or: names.map((name) => { 89 | return { "act.name": name }; 90 | }), 91 | }, 92 | }); 93 | } 94 | 95 | // Match by data entries 96 | // options.match //=> {"data.from": "eosio"} 97 | if (options.match) { pipeline.push({$match: options.match}); } 98 | 99 | // Get Reference Block Number from Transaction Id 100 | pipeline.push({ 101 | $graphLookup: { 102 | from: "transactions", 103 | startWith: "$trx_id", 104 | connectFromField: "trx_id", 105 | connectToField: "trx_id", 106 | as: "transactions", 107 | // maxDepth: 2, 108 | // restrictSearchWithMatch: { "transactions.irreversible": true }, 109 | }, 110 | }); 111 | 112 | // Add block_num + block_id and other fields 113 | pipeline.push({ 114 | $project: { 115 | // action_traces 116 | _id: 1, 117 | act: 1, 118 | trx_id: 1, 119 | // join transactions 120 | irreversible: { $arrayElemAt: [ "$transactions.irreversible", 0 ] }, 121 | block_id: { $arrayElemAt: [ "$transactions.block_id", 0 ] }, 122 | block_num: { $arrayElemAt: [ "$transactions.block_num", 0 ] }, 123 | }, 124 | }); 125 | 126 | // Add block filters to Pipeline 127 | addBlockFiltersToPipeline(pipeline, options); 128 | 129 | // Sort by ascending or decending based on attribute 130 | // options.sort //=> {block_num: -1} 131 | // options.sort //=> {"act.data.from": -1} 132 | if (options.sort) { pipeline.push({$sort: options.sort}); } 133 | 134 | // Support Pagination using Skip & Limit 135 | if (options.skip) { pipeline.push({$skip: options.skip }); } 136 | if (limit) { pipeline.push({$limit: limit }); } 137 | 138 | return collection.aggregate(pipeline); 139 | } 140 | -------------------------------------------------------------------------------- /src/getBlocks.d.ts: -------------------------------------------------------------------------------- 1 | import { AggregationCursor, MongoClient } from "mongodb"; 2 | import { Blocks } from "../types/blocks"; 3 | /** 4 | * EOSIO MongoDB Blocks 5 | * 6 | * @param {MongoClient} client MongoDB Client 7 | * @param {Object} [options={}] Optional Parameters 8 | * @param {number} [options.limit=25] Limit the maximum amount of of actions returned 9 | * @param {number} [options.skip] Skips number of documents 10 | * @param {object} [options.sort] Sort by ascending order (1) or descending order (-1) (eg: {block_num: -1}) 11 | * @param {object} [options.match] Match by entries (eg: {"block.producer": "eosio"}) 12 | * @param {number} [options.block_num] Filter by exact Reference Block Number 13 | * @param {string} [options.block_id] Filter by exact Reference Block ID 14 | * @param {number} [options.lte_block_num] Filter by Less-than or equal (<=) the Reference Block Number 15 | * @param {number} [options.gte_block_num] Filter by Greater-than or equal (>=) the Reference Block Number 16 | * @returns {AggregationCursor} MongoDB Aggregation Cursor 17 | * @example 18 | * const options = { 19 | * match: {"block.producer": "eosnationftw"}, 20 | * sort: {block_num: -1} 21 | * }; 22 | * const results = await getBlocks(client, options); 23 | * console.log(await results.toArray()); 24 | */ 25 | export declare function getBlocks(client: MongoClient, options?: { 26 | match?: object; 27 | block_num?: number; 28 | block_id?: string; 29 | lte_block_num?: number; 30 | gte_block_num?: number; 31 | skip?: number; 32 | limit?: number; 33 | sort?: object; 34 | }): AggregationCursor; 35 | -------------------------------------------------------------------------------- /src/getBlocks.ts: -------------------------------------------------------------------------------- 1 | import { AggregationCursor, MongoClient } from "mongodb"; 2 | import { Blocks } from "../types/blocks"; 3 | import { addBlockFiltersToPipeline, setDefaultLimit } from "./utils"; 4 | 5 | /** 6 | * EOSIO MongoDB Blocks 7 | * 8 | * @param {MongoClient} client MongoDB Client 9 | * @param {Object} [options={}] Optional Parameters 10 | * @param {number} [options.limit=25] Limit the maximum amount of of actions returned 11 | * @param {number} [options.skip] Skips number of documents 12 | * @param {object} [options.sort] Sort by ascending order (1) or descending order (-1) (eg: {block_num: -1}) 13 | * @param {object} [options.match] Match by entries (eg: {"block.producer": "eosio"}) 14 | * @param {number} [options.block_num] Filter by exact Reference Block Number 15 | * @param {string} [options.block_id] Filter by exact Reference Block ID 16 | * @param {number} [options.lte_block_num] Filter by Less-than or equal (<=) the Reference Block Number 17 | * @param {number} [options.gte_block_num] Filter by Greater-than or equal (>=) the Reference Block Number 18 | * @returns {AggregationCursor} MongoDB Aggregation Cursor 19 | * @example 20 | * const options = { 21 | * match: {"block.producer": "eosnationftw"}, 22 | * sort: {block_num: -1} 23 | * }; 24 | * const results = await getBlocks(client, options); 25 | * console.log(await results.toArray()); 26 | */ 27 | export function getBlocks(client: MongoClient, options: { 28 | match?: object, 29 | block_num?: number, 30 | block_id?: string, 31 | lte_block_num?: number, 32 | gte_block_num?: number, 33 | skip?: number, 34 | limit?: number, 35 | sort?: object, 36 | } = {}): AggregationCursor { 37 | // Setup MongoDB collection 38 | const db = client.db("EOS"); 39 | const collection = db.collection("blocks"); 40 | 41 | // MongoDB Pipeline 42 | const pipeline: any = []; 43 | 44 | // Default optional paramters 45 | const limit = setDefaultLimit(options); 46 | 47 | // Match by data entries 48 | // options.match //=> {"data.from": "eosio"} 49 | if (options.match) { pipeline.push({$match: options.match}); } 50 | 51 | // Add block filters to Pipeline 52 | addBlockFiltersToPipeline(pipeline, options); 53 | 54 | // Sort by ascending or decending based on attribute 55 | // options.sort //=> {block_num: -1} 56 | // options.sort //=> {"data.from": -1} 57 | if (options.sort) { pipeline.push({$sort: options.sort}); } 58 | 59 | // Support Pagination using Skip & Limit 60 | if (options.skip) { pipeline.push({$skip: options.skip }); } 61 | if (limit) { pipeline.push({$limit: limit }); } 62 | 63 | return collection.aggregate(pipeline); 64 | } 65 | -------------------------------------------------------------------------------- /src/utils.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Set default limit 3 | * 4 | * @param {object} [options={}] Optional Parameters 5 | * @returns {number} Default Limit value 6 | * @example 7 | * setDefaultLimit() //=> 25 8 | */ 9 | export declare function setDefaultLimit(options?: { 10 | limit?: number; 11 | }): number | null; 12 | /** 13 | * Add Block Filters to Pipeline 14 | * 15 | * @param {object[]} pipeline MongoDB Pipeline 16 | * @param {object} [options={}] Optional Parameters 17 | * @param {boolean} [options.irreversible] Irreversible transaction (eg: true/false) 18 | * @param {number} [options.block_num] Filter by exact Reference Block Number 19 | * @param {string} [options.block_id] Filter by exact Reference Block ID 20 | * @param {number} [options.lte_block_num] Filter by Less-than or equal (<=) the Reference Block Number 21 | * @param {number} [options.gte_block_num] Filter by Greater-than or equal (>=) the Reference Block Number 22 | * @returns {void} Appends results to pipeline 23 | */ 24 | export declare function addBlockFiltersToPipeline(pipeline: object[], options?: { 25 | block_id?: string; 26 | block_num?: number; 27 | lte_block_num?: number; 28 | gte_block_num?: number; 29 | irreversible?: boolean; 30 | }): void; 31 | -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- 1 | import { isNullOrUndefined } from "util"; 2 | 3 | /** 4 | * Set default limit 5 | * 6 | * @param {object} [options={}] Optional Parameters 7 | * @returns {number} Default Limit value 8 | * @example 9 | * setDefaultLimit() //=> 25 10 | */ 11 | export function setDefaultLimit(options: {limit?: number} = {}) { 12 | return isNullOrUndefined(options.limit) ? 25 : 13 | (options.limit === Infinity || options.limit === -1) ? null : options.limit; 14 | } 15 | 16 | /** 17 | * Add Block Filters to Pipeline 18 | * 19 | * @param {object[]} pipeline MongoDB Pipeline 20 | * @param {object} [options={}] Optional Parameters 21 | * @param {boolean} [options.irreversible] Irreversible transaction (eg: true/false) 22 | * @param {number} [options.block_num] Filter by exact Reference Block Number 23 | * @param {string} [options.block_id] Filter by exact Reference Block ID 24 | * @param {number} [options.lte_block_num] Filter by Less-than or equal (<=) the Reference Block Number 25 | * @param {number} [options.gte_block_num] Filter by Greater-than or equal (>=) the Reference Block Number 26 | * @returns {void} Appends results to pipeline 27 | */ 28 | export function addBlockFiltersToPipeline(pipeline: object[], options: { 29 | block_id?: string, 30 | block_num?: number, 31 | lte_block_num?: number, 32 | gte_block_num?: number, 33 | irreversible?: boolean, 34 | } = {}) { 35 | const {block_id, block_num, lte_block_num, gte_block_num, irreversible} = options; 36 | 37 | // Irreversible 38 | if (irreversible) { pipeline.push({$match: { irreversible }}); } 39 | 40 | // Block ID 41 | if (block_id) { pipeline.push({$match: { block_id }}); } 42 | 43 | // Block Number 44 | if (!isNullOrUndefined(block_num)) { pipeline.push({$match: { block_num }}); } 45 | 46 | // Both greater & lesser Block Number 47 | if (!isNullOrUndefined(lte_block_num) && !isNullOrUndefined(gte_block_num)) { 48 | pipeline.push({$match: { block_num: {$lte: lte_block_num, $gte: gte_block_num }}}); 49 | } else { 50 | if (!isNullOrUndefined(lte_block_num)) { pipeline.push({$match: { block_num: {$lte: lte_block_num }}}); } 51 | if (!isNullOrUndefined(gte_block_num)) { pipeline.push({$match: { block_num: {$gte: gte_block_num }}}); } 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /test/count.test.ts: -------------------------------------------------------------------------------- 1 | import { count } from "../"; 2 | import { connect } from "./mongodb"; 3 | 4 | (async () => { 5 | const client = await connect(); 6 | console.log(await count(client, "actions", {account: "eosio.token"})); 7 | console.log(await count(client, "actions", {"data.to": "eosio.saving"})); 8 | console.log(await count(client, "actions")); 9 | console.log(await count(client, "accounts")); 10 | client.close(); 11 | })(); 12 | -------------------------------------------------------------------------------- /test/getAccount.test.ts: -------------------------------------------------------------------------------- 1 | import { getAccount } from ".."; 2 | import { connect } from "./mongodb"; 3 | 4 | (async () => { 5 | const client = await connect(); 6 | const results = await getAccount(client, "aus1genereos", { 7 | lte_block_num: 6146889, 8 | }); 9 | console.log(results); 10 | client.close(); 11 | })(); 12 | -------------------------------------------------------------------------------- /test/getAccountControls.test.ts: -------------------------------------------------------------------------------- 1 | import { getAccountControls } from ".."; 2 | import { connect } from "./mongodb"; 3 | 4 | (async () => { 5 | const client = await connect(); 6 | const results = await getAccountControls(client, { 7 | match: {controlled_account: "eosio.saving"}, 8 | }); 9 | console.log(await results.toArray()); 10 | client.close(); 11 | })(); 12 | -------------------------------------------------------------------------------- /test/getAccounts.test.ts: -------------------------------------------------------------------------------- 1 | import { getAccounts } from "../"; 2 | import { connect } from "./mongodb"; 3 | 4 | (async () => { 5 | const client = await connect(); 6 | const results = await getAccounts(client, { 7 | abi: true, 8 | }); 9 | console.log(await results.toArray()); 10 | client.close(); 11 | })(); 12 | -------------------------------------------------------------------------------- /test/getActions.test.ts: -------------------------------------------------------------------------------- 1 | import { getActions } from ".."; 2 | import { connect } from "./mongodb"; 3 | 4 | (async () => { 5 | const client = await connect(); 6 | const test = await getActions(client, { 7 | limit: 3, 8 | account: "eosio", 9 | name: ["delegatebw", "undelegatebw"], 10 | match: {"act.data.from": "eosnationftw", "act.data.receiver": "eosnationftw"}, 11 | sort: {block_num: -1}, 12 | }); 13 | const results = await test.toArray(); 14 | console.log(results); 15 | client.close(); 16 | })(); 17 | 18 | (async () => { 19 | const client = await connect(); 20 | const test = await getActions(client, { 21 | limit: 3, 22 | account: "eosio", 23 | name: ["transfer"], 24 | irreversible: true, 25 | }); 26 | const results = await test.toArray(); 27 | console.log(results); 28 | client.close(); 29 | })(); 30 | -------------------------------------------------------------------------------- /test/getBlocks.test.ts: -------------------------------------------------------------------------------- 1 | import { getBlocks } from "../"; 2 | import { connect } from "./mongodb"; 3 | 4 | (async () => { 5 | const client = await connect(); 6 | const results = await getBlocks(client, { 7 | match: {"block.producer": "eosnationftw"}, 8 | }); 9 | console.log(await results.toArray()); 10 | client.close(); 11 | })(); 12 | -------------------------------------------------------------------------------- /test/mongodb.ts: -------------------------------------------------------------------------------- 1 | import * as dotenv from "dotenv"; 2 | import { MongoClient } from "mongodb"; 3 | import * as path from "path"; 4 | 5 | // Parse .env 6 | dotenv.config({path: path.join(__dirname, "..", ".env")}); 7 | 8 | export const MONGODB_URI = process.env.MONGODB_URI || "mongodb://localhost:27017"; 9 | 10 | /** 11 | * Connect to MongoDB 12 | * 13 | * @returns {Promise} MongoClient 14 | */ 15 | export function connect() { 16 | return MongoClient.connect(MONGODB_URI, { useNewUrlParser: true }); 17 | } 18 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | /* Basic Options */ 4 | "target": "es6", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */ 5 | "module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */ 6 | "declaration": true, 7 | 8 | /* Strict Type-Checking Options */ 9 | "strict": true, /* Enable all strict type-checking options. */ 10 | 11 | /* Module Resolution Options */ 12 | "esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */ 13 | 14 | /* https://github.com/apollographql/graphql-subscriptions/issues/83 */ 15 | "lib": [ 16 | "es6", 17 | "esnext.asynciterable" 18 | ] 19 | }, 20 | "files": [ 21 | "index.ts" 22 | ] 23 | } -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultSeverity": "error", 3 | "extends": [ 4 | "tslint:recommended" 5 | ], 6 | "jsRules": {}, 7 | "rules": { 8 | "object-literal-sort-keys": false, 9 | "no-console": false, 10 | "variable-name": false, 11 | "interface-name": false, 12 | "max-line-length": false 13 | }, 14 | "rulesDirectory": [] 15 | } -------------------------------------------------------------------------------- /types/account_controls.d.ts: -------------------------------------------------------------------------------- 1 | // Generated by https://quicktype.io 2 | // 3 | // To change quicktype's target language, run command: 4 | // 5 | // "Set quicktype target language" 6 | 7 | export interface AccountControls { 8 | _id: string; 9 | controlled_account: string; 10 | controlled_permission: string; 11 | controlling_account: string; 12 | createdAt: string; 13 | } 14 | -------------------------------------------------------------------------------- /types/account_controls.json: -------------------------------------------------------------------------------- 1 | {"_id":"5b59fa816e498ca56c3a2cd1","controlled_account":"eosio","controlled_permission":"owner","controlling_account":"eosio.prods","createdAt":"2018-07-26T16:44:49.108Z"} -------------------------------------------------------------------------------- /types/accounts.d.ts: -------------------------------------------------------------------------------- 1 | // Generated by https://quicktype.io 2 | // 3 | // To change quicktype's target language, run command: 4 | // 5 | // "Set quicktype target language" 6 | 7 | export interface Accounts { 8 | _id: string; 9 | name: string; 10 | createdAt: string; 11 | abi: ABI; 12 | updatedAt: string; 13 | } 14 | 15 | export interface ABI { 16 | version: string; 17 | types: TypeElement[]; 18 | structs: Struct[]; 19 | actions: Action[]; 20 | tables: Table[]; 21 | ricardian_clauses: any[]; 22 | error_messages: any[]; 23 | abi_extensions: any[]; 24 | } 25 | 26 | export interface Action { 27 | name: string; 28 | type: string; 29 | ricardian_contract: string; 30 | } 31 | 32 | export interface Struct { 33 | name: string; 34 | base: string; 35 | fields: Field[]; 36 | } 37 | 38 | export interface Field { 39 | name: string; 40 | type: string; 41 | } 42 | 43 | export interface Table { 44 | name: string; 45 | index_type: string; 46 | key_names: string[]; 47 | key_types: string[]; 48 | type: string; 49 | } 50 | 51 | export interface TypeElement { 52 | new_type_name: string; 53 | type: string; 54 | } 55 | -------------------------------------------------------------------------------- /types/accounts.json: -------------------------------------------------------------------------------- 1 | {"_id":"5b59f7a76e498ca56c282cef","name":"eosio.token","createdAt":"2018-07-26T16:32:39.192Z","abi":{"version":"eosio::abi/1.0","types":[{"new_type_name":"account_name","type":"name"}],"structs":[{"name":"transfer","base":"","fields":[{"name":"from","type":"account_name"},{"name":"to","type":"account_name"},{"name":"quantity","type":"asset"},{"name":"memo","type":"string"}]},{"name":"create","base":"","fields":[{"name":"issuer","type":"account_name"},{"name":"maximum_supply","type":"asset"}]},{"name":"issue","base":"","fields":[{"name":"to","type":"account_name"},{"name":"quantity","type":"asset"},{"name":"memo","type":"string"}]},{"name":"account","base":"","fields":[{"name":"balance","type":"asset"}]},{"name":"currency_stats","base":"","fields":[{"name":"supply","type":"asset"},{"name":"max_supply","type":"asset"},{"name":"issuer","type":"account_name"}]}],"actions":[{"name":"transfer","type":"transfer","ricardian_contract":"## Transfer Terms & Conditions\n\nI, {{from}}, certify the following to be true to the best of my knowledge:\n\n1. I certify that {{quantity}} is not the proceeds of fraudulent or violent activities.\n2. I certify that, to the best of my knowledge, {{to}} is not supporting initiation of violence against others.\n3. I have disclosed any contractual terms & conditions with respect to {{quantity}} to {{to}}.\n\nI understand that funds transfers are not reversible after the {{transaction.delay}} seconds or other delay as configured by {{from}}'s permissions.\n\nIf this action fails to be irreversibly confirmed after receiving goods or services from '{{to}}', I agree to either return the goods or services or resend {{quantity}} in a timely manner.\n"},{"name":"issue","type":"issue","ricardian_contract":""},{"name":"create","type":"create","ricardian_contract":""}],"tables":[{"name":"accounts","index_type":"i64","key_names":["currency"],"key_types":["uint64"],"type":"account"},{"name":"stat","index_type":"i64","key_names":["currency"],"key_types":["uint64"],"type":"currency_stats"}],"ricardian_clauses":[],"error_messages":[],"abi_extensions":[]},"updatedAt":"2018-07-26T16:32:39.226Z"} -------------------------------------------------------------------------------- /types/action_traces.d.ts: -------------------------------------------------------------------------------- 1 | // Generated by https://quicktype.io 2 | // 3 | // To change quicktype's target language, run command: 4 | // 5 | // "Set quicktype target language" 6 | 7 | export interface ActionTraces { 8 | _id: string; 9 | receipt: Receipt; 10 | act: Act; 11 | elapsed: number; 12 | cpu_usage: number; 13 | console: string; 14 | total_cpu_usage: number; 15 | trx_id: string; 16 | createdAt: string; 17 | } 18 | 19 | export interface Act { 20 | account: string; 21 | name: string; 22 | authorization: Authorization[]; 23 | data: any; 24 | hex_data: string; 25 | } 26 | 27 | export interface Authorization { 28 | actor: string; 29 | permission: string; 30 | } 31 | 32 | export interface Receipt { 33 | receiver: string; 34 | act_digest: string; 35 | global_sequence: number; 36 | recv_sequence: number; 37 | auth_sequence: Array>; 38 | code_sequence: number; 39 | abi_sequence: number; 40 | } 41 | -------------------------------------------------------------------------------- /types/action_traces.json: -------------------------------------------------------------------------------- 1 | {"_id":"5b6c8f22e6355b8ba414c31a","receipt":{"receiver":"eosio","act_digest":"3e0bd15c101a8c63d52c0c4c7172a6e663a19724c5fa4c4853138a9c33ab8220","global_sequence":547,"recv_sequence":505,"auth_sequence":[["eosio",540]],"code_sequence":2,"abi_sequence":2},"act":{"account":"eosio","name":"buyrambytes","authorization":[{"actor":"eosio","permission":"active"}],"data":{"payer":"eosio","receiver":"heztcnjtgyge","bytes":8192},"hex_data":"0000000000ea3055a09867f94d94bf6a00200000"},"elapsed":1271,"cpu_usage":0,"console":"","total_cpu_usage":0,"trx_id":"42dacd5722001b734be46a2140917e06cd21d42425f927f506c07b4388b07f62","createdAt":"2018-08-09T18:59:46.435Z"} -------------------------------------------------------------------------------- /types/block_states.d.ts: -------------------------------------------------------------------------------- 1 | // Generated by https://quicktype.io 2 | // 3 | // To change quicktype's target language, run command: 4 | // 5 | // "Set quicktype target language" 6 | 7 | export interface BlockStates { 8 | _id: string; 9 | block_id: string; 10 | block_header_state: BlockHeaderState; 11 | block_num: number; 12 | createdAt: string; 13 | in_current_chain: boolean; 14 | validated: boolean; 15 | } 16 | 17 | export interface BlockHeaderState { 18 | id: string; 19 | block_num: number; 20 | header: Header; 21 | dpos_proposed_irreversible_blocknum: number; 22 | dpos_irreversible_blocknum: number; 23 | bft_irreversible_blocknum: number; 24 | pending_schedule_lib_num: number; 25 | pending_schedule_hash: string; 26 | pending_schedule: Schedule; 27 | active_schedule: Schedule; 28 | blockroot_merkle: BlockrootMerkle; 29 | producer_to_last_produced: Array>; 30 | producer_to_last_implied_irb: Array>; 31 | block_signing_key: string; 32 | confirm_count: any[]; 33 | confirmations: any[]; 34 | } 35 | 36 | export interface Schedule { 37 | version: number; 38 | producers: Producer[]; 39 | } 40 | 41 | export interface Producer { 42 | producer_name: string; 43 | block_signing_key: string; 44 | } 45 | 46 | export interface BlockrootMerkle { 47 | _active_nodes: string[]; 48 | _node_count: number; 49 | } 50 | 51 | export interface Header { 52 | timestamp: string; 53 | producer: string; 54 | confirmed: number; 55 | previous: string; 56 | transaction_mroot: string; 57 | action_mroot: string; 58 | schedule_version: number; 59 | header_extensions: any[]; 60 | producer_signature: string; 61 | } 62 | -------------------------------------------------------------------------------- /types/block_states.json: -------------------------------------------------------------------------------- 1 | {"_id":"5b59f7a66e498ca56c282887","block_id":"00000003d93442ea55d07be4d515700e2b9737c1f485e8a13ebb3550c1a8bb44","block_header_state":{"id":"00000003d93442ea55d07be4d515700e2b9737c1f485e8a13ebb3550c1a8bb44","block_num":3,"header":{"timestamp":"2018-06-09T11:56:30.500","producer":"eosio","confirmed":0,"previous":"0000000267f3e2284b482f3afc2e724be1d6cbc1804532ec62d4e7af47c30693","transaction_mroot":"0000000000000000000000000000000000000000000000000000000000000000","action_mroot":"1fb815fab36fcb7abda71a209c804db4d7d5c20c164035344f7efecb608d6b53","schedule_version":0,"header_extensions":[],"producer_signature":"SIG_K1_JvfMecYTVzaXZVWHGbrdBf3Sb19WJuyhM5vUzzt974dJHoZdPuip1Mm45WYMxx7RMjkSrBNz5tj2Ao9d4Bzp7z5tdaZvDt"},"dpos_proposed_irreversible_blocknum":3,"dpos_irreversible_blocknum":2,"bft_irreversible_blocknum":0,"pending_schedule_lib_num":0,"pending_schedule_hash":"ef8306df0f8b307111e9b2f4d25ed68076229da7d94080d420ec791e7181f510","pending_schedule":{"version":0,"producers":[]},"active_schedule":{"version":0,"producers":[{"producer_name":"eosio","block_signing_key":"EOS7EarnUhcyYqmdnPon8rm7mBCTnBoot6o7fE2WzjvEX2TdggbL3"}]},"blockroot_merkle":{"_active_nodes":["3458a12424105926aa765f9584d3c2a459ad0824c36f6e9b0c5681303edf32cf"],"_node_count":2},"producer_to_last_produced":[["eosio",3]],"producer_to_last_implied_irb":[["eosio",2]],"block_signing_key":"EOS7EarnUhcyYqmdnPon8rm7mBCTnBoot6o7fE2WzjvEX2TdggbL3","confirm_count":[],"confirmations":[]},"block_num":3,"createdAt":"2018-07-26T16:32:38.980Z","in_current_chain":true,"validated":false} -------------------------------------------------------------------------------- /types/blocks.d.ts: -------------------------------------------------------------------------------- 1 | // Generated by https://quicktype.io 2 | // 3 | // To change quicktype's target language, run command: 4 | // 5 | // "Set quicktype target language" 6 | 7 | export interface Blocks { 8 | _id: string; 9 | block_id: string; 10 | block: Block; 11 | block_num: number; 12 | createdAt: string; 13 | in_current_chain: boolean; 14 | irreversible: boolean; 15 | updatedAt: string; 16 | validated: boolean; 17 | } 18 | 19 | export interface Block { 20 | timestamp: string; 21 | producer: string; 22 | confirmed: number; 23 | previous: string; 24 | transaction_mroot: string; 25 | action_mroot: string; 26 | schedule_version: number; 27 | new_producers: null; 28 | header_extensions: any[]; 29 | producer_signature: string; 30 | transactions: any[]; 31 | block_extensions: any[]; 32 | } 33 | -------------------------------------------------------------------------------- /types/blocks.json: -------------------------------------------------------------------------------- 1 | {"_id":"5b6c8f2121d51e748d5ccfaa","block_id":"0000000267f3e2284b482f3afc2e724be1d6cbc1804532ec62d4e7af47c30693","block":{"timestamp":"2018-06-09T11:56:30.000","producer":"eosio","confirmed":0,"previous":"00000001405147477ab2f5f51cda427b638191c66d2c59aa392d5c2c98076cb0","transaction_mroot":"0000000000000000000000000000000000000000000000000000000000000000","action_mroot":"e0244db4c02d68ae64dec160310e247bb04e5cb599afb7c14710fbf3f4576c0e","schedule_version":0,"new_producers":null,"header_extensions":[],"producer_signature":"SIG_K1_KhKRMeFHa59AzBaqNvq89Mye9uTNsRsY4koYZk4GBxb4UfSEakj4LwxxP5xQVK4q9N32JFhMpjnHa8pgTKNLwP1vXpU6eg","transactions":[],"block_extensions":[]},"block_num":2,"createdAt":"2018-08-09T18:59:45.270Z","in_current_chain":true,"irreversible":true,"updatedAt":"2018-08-09T18:59:45.170Z","validated":true} -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- 1 | import * as account_controls from "./account_controls"; 2 | import * as accounts from "./accounts"; 3 | import * as action_traces from "./action_traces"; 4 | import * as block_states from "./block_states"; 5 | import * as blocks from "./blocks"; 6 | import * as pub_keys from "./pub_keys"; 7 | import * as transaction_traces from "./transaction_traces"; 8 | import * as transactions from "./transactions"; 9 | export { account_controls, accounts, action_traces, block_states, blocks, pub_keys, transaction_traces, transactions, }; 10 | -------------------------------------------------------------------------------- /types/index.ts: -------------------------------------------------------------------------------- 1 | import * as account_controls from "./account_controls"; 2 | import * as accounts from "./accounts"; 3 | import * as action_traces from "./action_traces"; 4 | import * as block_states from "./block_states"; 5 | import * as blocks from "./blocks"; 6 | import * as pub_keys from "./pub_keys"; 7 | import * as transaction_traces from "./transaction_traces"; 8 | import * as transactions from "./transactions"; 9 | 10 | export { 11 | account_controls, 12 | accounts, 13 | action_traces, 14 | block_states, 15 | blocks, 16 | pub_keys, 17 | transaction_traces, 18 | transactions, 19 | }; 20 | -------------------------------------------------------------------------------- /types/pub_keys.d.ts: -------------------------------------------------------------------------------- 1 | // Generated by https://quicktype.io 2 | // 3 | // To change quicktype's target language, run command: 4 | // 5 | // "Set quicktype target language" 6 | 7 | export interface PubKeys { 8 | _id: string; 9 | account: string; 10 | permission: string; 11 | public_key: string; 12 | createdAt: string; 13 | } 14 | -------------------------------------------------------------------------------- /types/pub_keys.json: -------------------------------------------------------------------------------- 1 | {"_id":"5b59f7a76e498ca56c282dbd","account":"b1","permission":"active","public_key":"EOS5cujNHGMYZZ2tgByyNEUaoPLFhZVmGXbZc9BLJeQkKZFqGYEiQ","createdAt":"2018-07-26T16:32:39.258Z"} -------------------------------------------------------------------------------- /types/transaction_traces.d.ts: -------------------------------------------------------------------------------- 1 | import { Act } from "./action_traces"; 2 | 3 | // Generated by https://quicktype.io 4 | // 5 | // To change quicktype's target language, run command: 6 | // 7 | // "Set quicktype target language" 8 | 9 | export interface TransactionTraces { 10 | _id: string; 11 | id: string; 12 | receipt: TransactionTracesReceipt; 13 | elapsed: number; 14 | net_usage: number; 15 | scheduled: boolean; 16 | action_traces: ActionTrace[]; 17 | except: null; 18 | createdAt: string; 19 | } 20 | 21 | export interface ActionTrace { 22 | receipt: ActionTraceReceipt; 23 | act: Act; 24 | elapsed: number; 25 | cpu_usage: number; 26 | console: string; 27 | total_cpu_usage: number; 28 | trx_id: string; 29 | inline_traces: any[]; 30 | } 31 | 32 | export interface ActionTraceReceipt { 33 | receiver: string; 34 | act_digest: string; 35 | global_sequence: number; 36 | recv_sequence: number; 37 | auth_sequence: Array>; 38 | code_sequence: number; 39 | abi_sequence: number; 40 | } 41 | 42 | export interface TransactionTracesReceipt { 43 | status: string; 44 | cpu_usage_us: number; 45 | net_usage_words: number; 46 | } 47 | -------------------------------------------------------------------------------- /types/transaction_traces.json: -------------------------------------------------------------------------------- 1 | {"_id":"5b6c8f21e6355b8ba414c0e3","id":"2a39358c4881663e6728b2284edd65ea6810ad62ff8b7d90d3f60886ee9bdd72","receipt":{"status":"executed","cpu_usage_us":100,"net_usage_words":0},"elapsed":2261,"net_usage":0,"scheduled":false,"action_traces":[{"receipt":{"receiver":"eosio","act_digest":"64a0434dfd2b5cc20a3b5955d58950a95a4c39faf2341bf85e1fe4a7f88d52f4","global_sequence":1,"recv_sequence":1,"auth_sequence":[["eosio",1]],"code_sequence":0,"abi_sequence":0},"act":{"account":"eosio","name":"onblock","authorization":[{"actor":"eosio","permission":"active"}],"data":"d1eb59450000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000aca376f206b8fc25a6ed44dbdc66547c36c6c33e3a119ffbeaef943642f0e906000000000000"},"elapsed":1045,"cpu_usage":0,"console":"","total_cpu_usage":0,"trx_id":"2a39358c4881663e6728b2284edd65ea6810ad62ff8b7d90d3f60886ee9bdd72","inline_traces":[]}],"except":null,"createdAt":"2018-08-09T18:59:45.183Z"} -------------------------------------------------------------------------------- /types/transactions.d.ts: -------------------------------------------------------------------------------- 1 | import { Act } from "./action_traces"; 2 | 3 | // Generated by https://quicktype.io 4 | // 5 | // To change quicktype's target language, run command: 6 | // 7 | // "Set quicktype target language" 8 | 9 | export interface Transactions { 10 | _id: string; 11 | trx_id: string; 12 | accepted: boolean; 13 | actions: Act[]; 14 | context_free_actions: any[]; 15 | context_free_data: any[]; 16 | createdAt: string; 17 | delay_sec: number; 18 | expiration: string; 19 | implicit: boolean; 20 | max_cpu_usage_ms: number; 21 | max_net_usage_words: number; 22 | ref_block_num: number; 23 | ref_block_prefix: string; 24 | scheduled: boolean; 25 | signatures: any[]; 26 | transaction_extensions: any[]; 27 | } 28 | -------------------------------------------------------------------------------- /types/transactions.json: -------------------------------------------------------------------------------- 1 | {"_id":"5b6c8f2121d51e748d5cd00f","trx_id":"2a39358c4881663e6728b2284edd65ea6810ad62ff8b7d90d3f60886ee9bdd72","accepted":true,"actions":[{"account":"eosio","name":"onblock","authorization":[{"actor":"eosio","permission":"active"}],"data":"d1eb59450000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000aca376f206b8fc25a6ed44dbdc66547c36c6c33e3a119ffbeaef943642f0e906000000000000"}],"context_free_actions":[],"context_free_data":[],"createdAt":"2018-08-09T18:59:45.227Z","delay_sec":0,"expiration":"2018-06-09T11:56:30","implicit":true,"max_cpu_usage_ms":0,"max_net_usage_words":0,"ref_block_num":1,"ref_block_prefix":"4126519930","scheduled":false,"signatures":[],"transaction_extensions":[]} -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@types/bson@*": 6 | version "1.0.11" 7 | resolved "https://registry.yarnpkg.com/@types/bson/-/bson-1.0.11.tgz#c95ad69bb0b3f5c33b4bb6cc86d86cafb273335c" 8 | dependencies: 9 | "@types/node" "*" 10 | 11 | "@types/dotenv@*": 12 | version "4.0.3" 13 | resolved "https://registry.yarnpkg.com/@types/dotenv/-/dotenv-4.0.3.tgz#ebcfc40da7bc0728b705945b7db48485ec5b4b67" 14 | dependencies: 15 | "@types/node" "*" 16 | 17 | "@types/events@*": 18 | version "1.2.0" 19 | resolved "https://registry.yarnpkg.com/@types/events/-/events-1.2.0.tgz#81a6731ce4df43619e5c8c945383b3e62a89ea86" 20 | 21 | "@types/mongodb@*": 22 | version "3.1.2" 23 | resolved "https://registry.yarnpkg.com/@types/mongodb/-/mongodb-3.1.2.tgz#fe5d84a151025b00104357805e23d62217e681cc" 24 | dependencies: 25 | "@types/bson" "*" 26 | "@types/events" "*" 27 | "@types/node" "*" 28 | 29 | "@types/node@*": 30 | version "10.5.4" 31 | resolved "https://registry.yarnpkg.com/@types/node/-/node-10.5.4.tgz#6eccc158504357d1da91434d75e86acde94bb10b" 32 | 33 | JSONStream@^1.0.3: 34 | version "1.3.3" 35 | resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.3.tgz#27b4b8fbbfeab4e71bcf551e7f27be8d952239bf" 36 | dependencies: 37 | jsonparse "^1.2.0" 38 | through ">=2.2.7 <3" 39 | 40 | abbrev@1: 41 | version "1.1.1" 42 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 43 | 44 | acorn@^5.2.1: 45 | version "5.7.1" 46 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.1.tgz#f095829297706a7c9776958c0afc8930a9b9d9d8" 47 | 48 | ansi-html@^0.0.7: 49 | version "0.0.7" 50 | resolved "https://registry.yarnpkg.com/ansi-html/-/ansi-html-0.0.7.tgz#813584021962a9e9e6fd039f940d12f56ca7859e" 51 | 52 | ansi-regex@^2.0.0: 53 | version "2.1.1" 54 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 55 | 56 | ansi-regex@^3.0.0: 57 | version "3.0.0" 58 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 59 | 60 | ansi-styles@^2.0.1, ansi-styles@^2.2.1: 61 | version "2.2.1" 62 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 63 | 64 | ansi-styles@^3.2.1: 65 | version "3.2.1" 66 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 67 | dependencies: 68 | color-convert "^1.9.0" 69 | 70 | anymatch@^2.0.0: 71 | version "2.0.0" 72 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" 73 | dependencies: 74 | micromatch "^3.1.4" 75 | normalize-path "^2.1.1" 76 | 77 | append-buffer@^1.0.2: 78 | version "1.0.2" 79 | resolved "https://registry.yarnpkg.com/append-buffer/-/append-buffer-1.0.2.tgz#d8220cf466081525efea50614f3de6514dfa58f1" 80 | dependencies: 81 | buffer-equal "^1.0.0" 82 | 83 | aproba@^1.0.3: 84 | version "1.2.0" 85 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 86 | 87 | are-we-there-yet@~1.1.2: 88 | version "1.1.5" 89 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" 90 | dependencies: 91 | delegates "^1.0.0" 92 | readable-stream "^2.0.6" 93 | 94 | argparse@^1.0.7: 95 | version "1.0.10" 96 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 97 | dependencies: 98 | sprintf-js "~1.0.2" 99 | 100 | arr-diff@^4.0.0: 101 | version "4.0.0" 102 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 103 | 104 | arr-flatten@^1.1.0: 105 | version "1.1.0" 106 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 107 | 108 | arr-union@^3.1.0: 109 | version "3.1.0" 110 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 111 | 112 | array-iterate@^1.0.0: 113 | version "1.1.2" 114 | resolved "https://registry.yarnpkg.com/array-iterate/-/array-iterate-1.1.2.tgz#f66a57e84426f8097f4197fbb6c051b8e5cdf7d8" 115 | 116 | array-unique@^0.3.2: 117 | version "0.3.2" 118 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 119 | 120 | assign-symbols@^1.0.0: 121 | version "1.0.0" 122 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 123 | 124 | async-each@^1.0.0: 125 | version "1.0.1" 126 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 127 | 128 | atob@^2.1.1: 129 | version "2.1.1" 130 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.1.tgz#ae2d5a729477f289d60dd7f96a6314a22dd6c22a" 131 | 132 | babel-code-frame@^6.22.0, babel-code-frame@^6.26.0: 133 | version "6.26.0" 134 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 135 | dependencies: 136 | chalk "^1.1.3" 137 | esutils "^2.0.2" 138 | js-tokens "^3.0.2" 139 | 140 | babel-core@^6.26.0: 141 | version "6.26.3" 142 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.3.tgz#b2e2f09e342d0f0c88e2f02e067794125e75c207" 143 | dependencies: 144 | babel-code-frame "^6.26.0" 145 | babel-generator "^6.26.0" 146 | babel-helpers "^6.24.1" 147 | babel-messages "^6.23.0" 148 | babel-register "^6.26.0" 149 | babel-runtime "^6.26.0" 150 | babel-template "^6.26.0" 151 | babel-traverse "^6.26.0" 152 | babel-types "^6.26.0" 153 | babylon "^6.18.0" 154 | convert-source-map "^1.5.1" 155 | debug "^2.6.9" 156 | json5 "^0.5.1" 157 | lodash "^4.17.4" 158 | minimatch "^3.0.4" 159 | path-is-absolute "^1.0.1" 160 | private "^0.1.8" 161 | slash "^1.0.0" 162 | source-map "^0.5.7" 163 | 164 | babel-generator@^6.26.0: 165 | version "6.26.1" 166 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" 167 | dependencies: 168 | babel-messages "^6.23.0" 169 | babel-runtime "^6.26.0" 170 | babel-types "^6.26.0" 171 | detect-indent "^4.0.0" 172 | jsesc "^1.3.0" 173 | lodash "^4.17.4" 174 | source-map "^0.5.7" 175 | trim-right "^1.0.1" 176 | 177 | babel-helper-bindify-decorators@^6.24.1: 178 | version "6.24.1" 179 | resolved "https://registry.yarnpkg.com/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.24.1.tgz#14c19e5f142d7b47f19a52431e52b1ccbc40a330" 180 | dependencies: 181 | babel-runtime "^6.22.0" 182 | babel-traverse "^6.24.1" 183 | babel-types "^6.24.1" 184 | 185 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 186 | version "6.24.1" 187 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 188 | dependencies: 189 | babel-helper-explode-assignable-expression "^6.24.1" 190 | babel-runtime "^6.22.0" 191 | babel-types "^6.24.1" 192 | 193 | babel-helper-builder-react-jsx@^6.24.1: 194 | version "6.26.0" 195 | resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz#39ff8313b75c8b65dceff1f31d383e0ff2a408a0" 196 | dependencies: 197 | babel-runtime "^6.26.0" 198 | babel-types "^6.26.0" 199 | esutils "^2.0.2" 200 | 201 | babel-helper-call-delegate@^6.24.1: 202 | version "6.24.1" 203 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 204 | dependencies: 205 | babel-helper-hoist-variables "^6.24.1" 206 | babel-runtime "^6.22.0" 207 | babel-traverse "^6.24.1" 208 | babel-types "^6.24.1" 209 | 210 | babel-helper-define-map@^6.24.1: 211 | version "6.26.0" 212 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 213 | dependencies: 214 | babel-helper-function-name "^6.24.1" 215 | babel-runtime "^6.26.0" 216 | babel-types "^6.26.0" 217 | lodash "^4.17.4" 218 | 219 | babel-helper-explode-assignable-expression@^6.24.1: 220 | version "6.24.1" 221 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 222 | dependencies: 223 | babel-runtime "^6.22.0" 224 | babel-traverse "^6.24.1" 225 | babel-types "^6.24.1" 226 | 227 | babel-helper-explode-class@^6.24.1: 228 | version "6.24.1" 229 | resolved "https://registry.yarnpkg.com/babel-helper-explode-class/-/babel-helper-explode-class-6.24.1.tgz#7dc2a3910dee007056e1e31d640ced3d54eaa9eb" 230 | dependencies: 231 | babel-helper-bindify-decorators "^6.24.1" 232 | babel-runtime "^6.22.0" 233 | babel-traverse "^6.24.1" 234 | babel-types "^6.24.1" 235 | 236 | babel-helper-function-name@^6.24.1: 237 | version "6.24.1" 238 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 239 | dependencies: 240 | babel-helper-get-function-arity "^6.24.1" 241 | babel-runtime "^6.22.0" 242 | babel-template "^6.24.1" 243 | babel-traverse "^6.24.1" 244 | babel-types "^6.24.1" 245 | 246 | babel-helper-get-function-arity@^6.24.1: 247 | version "6.24.1" 248 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 249 | dependencies: 250 | babel-runtime "^6.22.0" 251 | babel-types "^6.24.1" 252 | 253 | babel-helper-hoist-variables@^6.24.1: 254 | version "6.24.1" 255 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 256 | dependencies: 257 | babel-runtime "^6.22.0" 258 | babel-types "^6.24.1" 259 | 260 | babel-helper-optimise-call-expression@^6.24.1: 261 | version "6.24.1" 262 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 263 | dependencies: 264 | babel-runtime "^6.22.0" 265 | babel-types "^6.24.1" 266 | 267 | babel-helper-regex@^6.24.1: 268 | version "6.26.0" 269 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 270 | dependencies: 271 | babel-runtime "^6.26.0" 272 | babel-types "^6.26.0" 273 | lodash "^4.17.4" 274 | 275 | babel-helper-remap-async-to-generator@^6.24.1: 276 | version "6.24.1" 277 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 278 | dependencies: 279 | babel-helper-function-name "^6.24.1" 280 | babel-runtime "^6.22.0" 281 | babel-template "^6.24.1" 282 | babel-traverse "^6.24.1" 283 | babel-types "^6.24.1" 284 | 285 | babel-helper-replace-supers@^6.24.1: 286 | version "6.24.1" 287 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 288 | dependencies: 289 | babel-helper-optimise-call-expression "^6.24.1" 290 | babel-messages "^6.23.0" 291 | babel-runtime "^6.22.0" 292 | babel-template "^6.24.1" 293 | babel-traverse "^6.24.1" 294 | babel-types "^6.24.1" 295 | 296 | babel-helpers@^6.24.1: 297 | version "6.24.1" 298 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 299 | dependencies: 300 | babel-runtime "^6.22.0" 301 | babel-template "^6.24.1" 302 | 303 | babel-messages@^6.23.0: 304 | version "6.23.0" 305 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 306 | dependencies: 307 | babel-runtime "^6.22.0" 308 | 309 | babel-plugin-check-es2015-constants@^6.22.0: 310 | version "6.22.0" 311 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 312 | dependencies: 313 | babel-runtime "^6.22.0" 314 | 315 | babel-plugin-syntax-async-functions@^6.8.0: 316 | version "6.13.0" 317 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 318 | 319 | babel-plugin-syntax-async-generators@^6.5.0: 320 | version "6.13.0" 321 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a" 322 | 323 | babel-plugin-syntax-class-constructor-call@^6.18.0: 324 | version "6.18.0" 325 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-constructor-call/-/babel-plugin-syntax-class-constructor-call-6.18.0.tgz#9cb9d39fe43c8600bec8146456ddcbd4e1a76416" 326 | 327 | babel-plugin-syntax-class-properties@^6.8.0: 328 | version "6.13.0" 329 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" 330 | 331 | babel-plugin-syntax-decorators@^6.1.18, babel-plugin-syntax-decorators@^6.13.0: 332 | version "6.13.0" 333 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b" 334 | 335 | babel-plugin-syntax-do-expressions@^6.8.0: 336 | version "6.13.0" 337 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-do-expressions/-/babel-plugin-syntax-do-expressions-6.13.0.tgz#5747756139aa26d390d09410b03744ba07e4796d" 338 | 339 | babel-plugin-syntax-dynamic-import@^6.18.0: 340 | version "6.18.0" 341 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da" 342 | 343 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 344 | version "6.13.0" 345 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 346 | 347 | babel-plugin-syntax-export-extensions@^6.8.0: 348 | version "6.13.0" 349 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-export-extensions/-/babel-plugin-syntax-export-extensions-6.13.0.tgz#70a1484f0f9089a4e84ad44bac353c95b9b12721" 350 | 351 | babel-plugin-syntax-flow@^6.18.0: 352 | version "6.18.0" 353 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" 354 | 355 | babel-plugin-syntax-function-bind@^6.8.0: 356 | version "6.13.0" 357 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-function-bind/-/babel-plugin-syntax-function-bind-6.13.0.tgz#48c495f177bdf31a981e732f55adc0bdd2601f46" 358 | 359 | babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0: 360 | version "6.18.0" 361 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" 362 | 363 | babel-plugin-syntax-object-rest-spread@^6.8.0: 364 | version "6.13.0" 365 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 366 | 367 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 368 | version "6.22.0" 369 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 370 | 371 | babel-plugin-system-import-transformer@3.1.0: 372 | version "3.1.0" 373 | resolved "https://registry.yarnpkg.com/babel-plugin-system-import-transformer/-/babel-plugin-system-import-transformer-3.1.0.tgz#d37f0cae8e61ef39060208331d931b5e630d7c5f" 374 | dependencies: 375 | babel-plugin-syntax-dynamic-import "^6.18.0" 376 | 377 | babel-plugin-transform-async-generator-functions@^6.24.1: 378 | version "6.24.1" 379 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.24.1.tgz#f058900145fd3e9907a6ddf28da59f215258a5db" 380 | dependencies: 381 | babel-helper-remap-async-to-generator "^6.24.1" 382 | babel-plugin-syntax-async-generators "^6.5.0" 383 | babel-runtime "^6.22.0" 384 | 385 | babel-plugin-transform-async-to-generator@^6.22.0, babel-plugin-transform-async-to-generator@^6.24.1: 386 | version "6.24.1" 387 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 388 | dependencies: 389 | babel-helper-remap-async-to-generator "^6.24.1" 390 | babel-plugin-syntax-async-functions "^6.8.0" 391 | babel-runtime "^6.22.0" 392 | 393 | babel-plugin-transform-class-constructor-call@^6.24.1: 394 | version "6.24.1" 395 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-constructor-call/-/babel-plugin-transform-class-constructor-call-6.24.1.tgz#80dc285505ac067dcb8d6c65e2f6f11ab7765ef9" 396 | dependencies: 397 | babel-plugin-syntax-class-constructor-call "^6.18.0" 398 | babel-runtime "^6.22.0" 399 | babel-template "^6.24.1" 400 | 401 | babel-plugin-transform-class-properties@^6.24.1: 402 | version "6.24.1" 403 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac" 404 | dependencies: 405 | babel-helper-function-name "^6.24.1" 406 | babel-plugin-syntax-class-properties "^6.8.0" 407 | babel-runtime "^6.22.0" 408 | babel-template "^6.24.1" 409 | 410 | babel-plugin-transform-decorators-legacy@^1.3.4: 411 | version "1.3.5" 412 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators-legacy/-/babel-plugin-transform-decorators-legacy-1.3.5.tgz#0e492dffa0edd70529072887f8aa86d4dd8b40a1" 413 | dependencies: 414 | babel-plugin-syntax-decorators "^6.1.18" 415 | babel-runtime "^6.2.0" 416 | babel-template "^6.3.0" 417 | 418 | babel-plugin-transform-decorators@^6.24.1: 419 | version "6.24.1" 420 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.24.1.tgz#788013d8f8c6b5222bdf7b344390dfd77569e24d" 421 | dependencies: 422 | babel-helper-explode-class "^6.24.1" 423 | babel-plugin-syntax-decorators "^6.13.0" 424 | babel-runtime "^6.22.0" 425 | babel-template "^6.24.1" 426 | babel-types "^6.24.1" 427 | 428 | babel-plugin-transform-do-expressions@^6.22.0: 429 | version "6.22.0" 430 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-do-expressions/-/babel-plugin-transform-do-expressions-6.22.0.tgz#28ccaf92812d949c2cd1281f690c8fdc468ae9bb" 431 | dependencies: 432 | babel-plugin-syntax-do-expressions "^6.8.0" 433 | babel-runtime "^6.22.0" 434 | 435 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 436 | version "6.22.0" 437 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 438 | dependencies: 439 | babel-runtime "^6.22.0" 440 | 441 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 442 | version "6.22.0" 443 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 444 | dependencies: 445 | babel-runtime "^6.22.0" 446 | 447 | babel-plugin-transform-es2015-block-scoping@^6.23.0: 448 | version "6.26.0" 449 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 450 | dependencies: 451 | babel-runtime "^6.26.0" 452 | babel-template "^6.26.0" 453 | babel-traverse "^6.26.0" 454 | babel-types "^6.26.0" 455 | lodash "^4.17.4" 456 | 457 | babel-plugin-transform-es2015-classes@^6.23.0: 458 | version "6.24.1" 459 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 460 | dependencies: 461 | babel-helper-define-map "^6.24.1" 462 | babel-helper-function-name "^6.24.1" 463 | babel-helper-optimise-call-expression "^6.24.1" 464 | babel-helper-replace-supers "^6.24.1" 465 | babel-messages "^6.23.0" 466 | babel-runtime "^6.22.0" 467 | babel-template "^6.24.1" 468 | babel-traverse "^6.24.1" 469 | babel-types "^6.24.1" 470 | 471 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 472 | version "6.24.1" 473 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 474 | dependencies: 475 | babel-runtime "^6.22.0" 476 | babel-template "^6.24.1" 477 | 478 | babel-plugin-transform-es2015-destructuring@^6.23.0: 479 | version "6.23.0" 480 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 481 | dependencies: 482 | babel-runtime "^6.22.0" 483 | 484 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 485 | version "6.24.1" 486 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 487 | dependencies: 488 | babel-runtime "^6.22.0" 489 | babel-types "^6.24.1" 490 | 491 | babel-plugin-transform-es2015-for-of@^6.23.0: 492 | version "6.23.0" 493 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 494 | dependencies: 495 | babel-runtime "^6.22.0" 496 | 497 | babel-plugin-transform-es2015-function-name@^6.22.0: 498 | version "6.24.1" 499 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 500 | dependencies: 501 | babel-helper-function-name "^6.24.1" 502 | babel-runtime "^6.22.0" 503 | babel-types "^6.24.1" 504 | 505 | babel-plugin-transform-es2015-literals@^6.22.0: 506 | version "6.22.0" 507 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 508 | dependencies: 509 | babel-runtime "^6.22.0" 510 | 511 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: 512 | version "6.24.1" 513 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 514 | dependencies: 515 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 516 | babel-runtime "^6.22.0" 517 | babel-template "^6.24.1" 518 | 519 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 520 | version "6.26.2" 521 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz#58a793863a9e7ca870bdc5a881117ffac27db6f3" 522 | dependencies: 523 | babel-plugin-transform-strict-mode "^6.24.1" 524 | babel-runtime "^6.26.0" 525 | babel-template "^6.26.0" 526 | babel-types "^6.26.0" 527 | 528 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0: 529 | version "6.24.1" 530 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 531 | dependencies: 532 | babel-helper-hoist-variables "^6.24.1" 533 | babel-runtime "^6.22.0" 534 | babel-template "^6.24.1" 535 | 536 | babel-plugin-transform-es2015-modules-umd@^6.23.0: 537 | version "6.24.1" 538 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 539 | dependencies: 540 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 541 | babel-runtime "^6.22.0" 542 | babel-template "^6.24.1" 543 | 544 | babel-plugin-transform-es2015-object-super@^6.22.0: 545 | version "6.24.1" 546 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 547 | dependencies: 548 | babel-helper-replace-supers "^6.24.1" 549 | babel-runtime "^6.22.0" 550 | 551 | babel-plugin-transform-es2015-parameters@^6.23.0: 552 | version "6.24.1" 553 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 554 | dependencies: 555 | babel-helper-call-delegate "^6.24.1" 556 | babel-helper-get-function-arity "^6.24.1" 557 | babel-runtime "^6.22.0" 558 | babel-template "^6.24.1" 559 | babel-traverse "^6.24.1" 560 | babel-types "^6.24.1" 561 | 562 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 563 | version "6.24.1" 564 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 565 | dependencies: 566 | babel-runtime "^6.22.0" 567 | babel-types "^6.24.1" 568 | 569 | babel-plugin-transform-es2015-spread@^6.22.0: 570 | version "6.22.0" 571 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 572 | dependencies: 573 | babel-runtime "^6.22.0" 574 | 575 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 576 | version "6.24.1" 577 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 578 | dependencies: 579 | babel-helper-regex "^6.24.1" 580 | babel-runtime "^6.22.0" 581 | babel-types "^6.24.1" 582 | 583 | babel-plugin-transform-es2015-template-literals@^6.22.0: 584 | version "6.22.0" 585 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 586 | dependencies: 587 | babel-runtime "^6.22.0" 588 | 589 | babel-plugin-transform-es2015-typeof-symbol@^6.23.0: 590 | version "6.23.0" 591 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 592 | dependencies: 593 | babel-runtime "^6.22.0" 594 | 595 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 596 | version "6.24.1" 597 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 598 | dependencies: 599 | babel-helper-regex "^6.24.1" 600 | babel-runtime "^6.22.0" 601 | regexpu-core "^2.0.0" 602 | 603 | babel-plugin-transform-exponentiation-operator@^6.22.0, babel-plugin-transform-exponentiation-operator@^6.24.1: 604 | version "6.24.1" 605 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 606 | dependencies: 607 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 608 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 609 | babel-runtime "^6.22.0" 610 | 611 | babel-plugin-transform-export-extensions@^6.22.0: 612 | version "6.22.0" 613 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-export-extensions/-/babel-plugin-transform-export-extensions-6.22.0.tgz#53738b47e75e8218589eea946cbbd39109bbe653" 614 | dependencies: 615 | babel-plugin-syntax-export-extensions "^6.8.0" 616 | babel-runtime "^6.22.0" 617 | 618 | babel-plugin-transform-flow-strip-types@^6.22.0: 619 | version "6.22.0" 620 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" 621 | dependencies: 622 | babel-plugin-syntax-flow "^6.18.0" 623 | babel-runtime "^6.22.0" 624 | 625 | babel-plugin-transform-function-bind@^6.22.0: 626 | version "6.22.0" 627 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-function-bind/-/babel-plugin-transform-function-bind-6.22.0.tgz#c6fb8e96ac296a310b8cf8ea401462407ddf6a97" 628 | dependencies: 629 | babel-plugin-syntax-function-bind "^6.8.0" 630 | babel-runtime "^6.22.0" 631 | 632 | babel-plugin-transform-object-rest-spread@^6.22.0: 633 | version "6.26.0" 634 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06" 635 | dependencies: 636 | babel-plugin-syntax-object-rest-spread "^6.8.0" 637 | babel-runtime "^6.26.0" 638 | 639 | babel-plugin-transform-react-display-name@^6.23.0: 640 | version "6.25.0" 641 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz#67e2bf1f1e9c93ab08db96792e05392bf2cc28d1" 642 | dependencies: 643 | babel-runtime "^6.22.0" 644 | 645 | babel-plugin-transform-react-jsx-self@^6.22.0: 646 | version "6.22.0" 647 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e" 648 | dependencies: 649 | babel-plugin-syntax-jsx "^6.8.0" 650 | babel-runtime "^6.22.0" 651 | 652 | babel-plugin-transform-react-jsx-source@^6.22.0: 653 | version "6.22.0" 654 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6" 655 | dependencies: 656 | babel-plugin-syntax-jsx "^6.8.0" 657 | babel-runtime "^6.22.0" 658 | 659 | babel-plugin-transform-react-jsx@^6.24.1: 660 | version "6.24.1" 661 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3" 662 | dependencies: 663 | babel-helper-builder-react-jsx "^6.24.1" 664 | babel-plugin-syntax-jsx "^6.8.0" 665 | babel-runtime "^6.22.0" 666 | 667 | babel-plugin-transform-regenerator@^6.22.0: 668 | version "6.26.0" 669 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 670 | dependencies: 671 | regenerator-transform "^0.10.0" 672 | 673 | babel-plugin-transform-strict-mode@^6.24.1: 674 | version "6.24.1" 675 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 676 | dependencies: 677 | babel-runtime "^6.22.0" 678 | babel-types "^6.24.1" 679 | 680 | babel-preset-env@^1.6.1: 681 | version "1.7.0" 682 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.7.0.tgz#dea79fa4ebeb883cd35dab07e260c1c9c04df77a" 683 | dependencies: 684 | babel-plugin-check-es2015-constants "^6.22.0" 685 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 686 | babel-plugin-transform-async-to-generator "^6.22.0" 687 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 688 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 689 | babel-plugin-transform-es2015-block-scoping "^6.23.0" 690 | babel-plugin-transform-es2015-classes "^6.23.0" 691 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 692 | babel-plugin-transform-es2015-destructuring "^6.23.0" 693 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 694 | babel-plugin-transform-es2015-for-of "^6.23.0" 695 | babel-plugin-transform-es2015-function-name "^6.22.0" 696 | babel-plugin-transform-es2015-literals "^6.22.0" 697 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 698 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0" 699 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0" 700 | babel-plugin-transform-es2015-modules-umd "^6.23.0" 701 | babel-plugin-transform-es2015-object-super "^6.22.0" 702 | babel-plugin-transform-es2015-parameters "^6.23.0" 703 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 704 | babel-plugin-transform-es2015-spread "^6.22.0" 705 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 706 | babel-plugin-transform-es2015-template-literals "^6.22.0" 707 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0" 708 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 709 | babel-plugin-transform-exponentiation-operator "^6.22.0" 710 | babel-plugin-transform-regenerator "^6.22.0" 711 | browserslist "^3.2.6" 712 | invariant "^2.2.2" 713 | semver "^5.3.0" 714 | 715 | babel-preset-flow@^6.23.0: 716 | version "6.23.0" 717 | resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d" 718 | dependencies: 719 | babel-plugin-transform-flow-strip-types "^6.22.0" 720 | 721 | babel-preset-react@^6.24.1: 722 | version "6.24.1" 723 | resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.24.1.tgz#ba69dfaea45fc3ec639b6a4ecea6e17702c91380" 724 | dependencies: 725 | babel-plugin-syntax-jsx "^6.3.13" 726 | babel-plugin-transform-react-display-name "^6.23.0" 727 | babel-plugin-transform-react-jsx "^6.24.1" 728 | babel-plugin-transform-react-jsx-self "^6.22.0" 729 | babel-plugin-transform-react-jsx-source "^6.22.0" 730 | babel-preset-flow "^6.23.0" 731 | 732 | babel-preset-stage-0@^6.24.1: 733 | version "6.24.1" 734 | resolved "https://registry.yarnpkg.com/babel-preset-stage-0/-/babel-preset-stage-0-6.24.1.tgz#5642d15042f91384d7e5af8bc88b1db95b039e6a" 735 | dependencies: 736 | babel-plugin-transform-do-expressions "^6.22.0" 737 | babel-plugin-transform-function-bind "^6.22.0" 738 | babel-preset-stage-1 "^6.24.1" 739 | 740 | babel-preset-stage-1@^6.24.1: 741 | version "6.24.1" 742 | resolved "https://registry.yarnpkg.com/babel-preset-stage-1/-/babel-preset-stage-1-6.24.1.tgz#7692cd7dcd6849907e6ae4a0a85589cfb9e2bfb0" 743 | dependencies: 744 | babel-plugin-transform-class-constructor-call "^6.24.1" 745 | babel-plugin-transform-export-extensions "^6.22.0" 746 | babel-preset-stage-2 "^6.24.1" 747 | 748 | babel-preset-stage-2@^6.24.1: 749 | version "6.24.1" 750 | resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-6.24.1.tgz#d9e2960fb3d71187f0e64eec62bc07767219bdc1" 751 | dependencies: 752 | babel-plugin-syntax-dynamic-import "^6.18.0" 753 | babel-plugin-transform-class-properties "^6.24.1" 754 | babel-plugin-transform-decorators "^6.24.1" 755 | babel-preset-stage-3 "^6.24.1" 756 | 757 | babel-preset-stage-3@^6.24.1: 758 | version "6.24.1" 759 | resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-6.24.1.tgz#836ada0a9e7a7fa37cb138fb9326f87934a48395" 760 | dependencies: 761 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 762 | babel-plugin-transform-async-generator-functions "^6.24.1" 763 | babel-plugin-transform-async-to-generator "^6.24.1" 764 | babel-plugin-transform-exponentiation-operator "^6.24.1" 765 | babel-plugin-transform-object-rest-spread "^6.22.0" 766 | 767 | babel-register@^6.26.0: 768 | version "6.26.0" 769 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 770 | dependencies: 771 | babel-core "^6.26.0" 772 | babel-runtime "^6.26.0" 773 | core-js "^2.5.0" 774 | home-or-tmp "^2.0.0" 775 | lodash "^4.17.4" 776 | mkdirp "^0.5.1" 777 | source-map-support "^0.4.15" 778 | 779 | babel-runtime@^6.18.0, babel-runtime@^6.2.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 780 | version "6.26.0" 781 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 782 | dependencies: 783 | core-js "^2.4.0" 784 | regenerator-runtime "^0.11.0" 785 | 786 | babel-template@^6.24.1, babel-template@^6.26.0, babel-template@^6.3.0: 787 | version "6.26.0" 788 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 789 | dependencies: 790 | babel-runtime "^6.26.0" 791 | babel-traverse "^6.26.0" 792 | babel-types "^6.26.0" 793 | babylon "^6.18.0" 794 | lodash "^4.17.4" 795 | 796 | babel-traverse@^6.24.1, babel-traverse@^6.26.0: 797 | version "6.26.0" 798 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 799 | dependencies: 800 | babel-code-frame "^6.26.0" 801 | babel-messages "^6.23.0" 802 | babel-runtime "^6.26.0" 803 | babel-types "^6.26.0" 804 | babylon "^6.18.0" 805 | debug "^2.6.8" 806 | globals "^9.18.0" 807 | invariant "^2.2.2" 808 | lodash "^4.17.4" 809 | 810 | babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: 811 | version "6.26.0" 812 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 813 | dependencies: 814 | babel-runtime "^6.26.0" 815 | esutils "^2.0.2" 816 | lodash "^4.17.4" 817 | to-fast-properties "^1.0.3" 818 | 819 | babelify@^8.0.0: 820 | version "8.0.0" 821 | resolved "https://registry.yarnpkg.com/babelify/-/babelify-8.0.0.tgz#6f60f5f062bfe7695754ef2403b842014a580ed3" 822 | 823 | babylon@^6.18.0: 824 | version "6.18.0" 825 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 826 | 827 | bail@^1.0.0: 828 | version "1.0.3" 829 | resolved "https://registry.yarnpkg.com/bail/-/bail-1.0.3.tgz#63cfb9ddbac829b02a3128cd53224be78e6c21a3" 830 | 831 | balanced-match@^1.0.0: 832 | version "1.0.0" 833 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 834 | 835 | base@^0.11.1: 836 | version "0.11.2" 837 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 838 | dependencies: 839 | cache-base "^1.0.1" 840 | class-utils "^0.3.5" 841 | component-emitter "^1.2.1" 842 | define-property "^1.0.0" 843 | isobject "^3.0.1" 844 | mixin-deep "^1.2.0" 845 | pascalcase "^0.1.1" 846 | 847 | binary-extensions@^1.0.0: 848 | version "1.11.0" 849 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 850 | 851 | body@^5.1.0: 852 | version "5.1.0" 853 | resolved "https://registry.yarnpkg.com/body/-/body-5.1.0.tgz#e4ba0ce410a46936323367609ecb4e6553125069" 854 | dependencies: 855 | continuable-cache "^0.3.1" 856 | error "^7.0.0" 857 | raw-body "~1.1.0" 858 | safe-json-parse "~1.0.1" 859 | 860 | brace-expansion@^1.1.7: 861 | version "1.1.11" 862 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 863 | dependencies: 864 | balanced-match "^1.0.0" 865 | concat-map "0.0.1" 866 | 867 | braces@^2.3.0, braces@^2.3.1: 868 | version "2.3.2" 869 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" 870 | dependencies: 871 | arr-flatten "^1.1.0" 872 | array-unique "^0.3.2" 873 | extend-shallow "^2.0.1" 874 | fill-range "^4.0.0" 875 | isobject "^3.0.1" 876 | repeat-element "^1.1.2" 877 | snapdragon "^0.8.1" 878 | snapdragon-node "^2.0.1" 879 | split-string "^3.0.2" 880 | to-regex "^3.0.1" 881 | 882 | browser-resolve@^1.7.0: 883 | version "1.11.3" 884 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.3.tgz#9b7cbb3d0f510e4cb86bdbd796124d28b5890af6" 885 | dependencies: 886 | resolve "1.1.7" 887 | 888 | browserslist@^3.2.6: 889 | version "3.2.8" 890 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-3.2.8.tgz#b0005361d6471f0f5952797a76fc985f1f978fc6" 891 | dependencies: 892 | caniuse-lite "^1.0.30000844" 893 | electron-to-chromium "^1.3.47" 894 | 895 | bson@~1.0.4: 896 | version "1.0.9" 897 | resolved "https://registry.yarnpkg.com/bson/-/bson-1.0.9.tgz#12319f8323b1254739b7c6bef8d3e89ae05a2f57" 898 | 899 | buffer-equal@^1.0.0: 900 | version "1.0.0" 901 | resolved "https://registry.yarnpkg.com/buffer-equal/-/buffer-equal-1.0.0.tgz#59616b498304d556abd466966b22eeda3eca5fbe" 902 | 903 | buffer-from@^1.0.0: 904 | version "1.1.1" 905 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 906 | 907 | buffer-shims@^1.0.0: 908 | version "1.0.0" 909 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 910 | 911 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 912 | version "1.1.1" 913 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 914 | 915 | bytes@1: 916 | version "1.0.0" 917 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-1.0.0.tgz#3569ede8ba34315fab99c3e92cb04c7220de1fa8" 918 | 919 | cache-base@^1.0.1: 920 | version "1.0.1" 921 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 922 | dependencies: 923 | collection-visit "^1.0.0" 924 | component-emitter "^1.2.1" 925 | get-value "^2.0.6" 926 | has-value "^1.0.0" 927 | isobject "^3.0.1" 928 | set-value "^2.0.0" 929 | to-object-path "^0.3.0" 930 | union-value "^1.0.0" 931 | unset-value "^1.0.0" 932 | 933 | camelcase@^4.1.0: 934 | version "4.1.0" 935 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 936 | 937 | caniuse-lite@^1.0.30000844: 938 | version "1.0.30000865" 939 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000865.tgz#70026616e8afe6e1442f8bb4e1092987d81a2f25" 940 | 941 | ccount@^1.0.0: 942 | version "1.0.3" 943 | resolved "https://registry.yarnpkg.com/ccount/-/ccount-1.0.3.tgz#f1cec43f332e2ea5a569fd46f9f5bde4e6102aff" 944 | 945 | chalk@^1.1.3: 946 | version "1.1.3" 947 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 948 | dependencies: 949 | ansi-styles "^2.2.1" 950 | escape-string-regexp "^1.0.2" 951 | has-ansi "^2.0.0" 952 | strip-ansi "^3.0.0" 953 | supports-color "^2.0.0" 954 | 955 | chalk@^2.3.0: 956 | version "2.4.1" 957 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e" 958 | dependencies: 959 | ansi-styles "^3.2.1" 960 | escape-string-regexp "^1.0.5" 961 | supports-color "^5.3.0" 962 | 963 | character-entities-html4@^1.0.0: 964 | version "1.1.2" 965 | resolved "https://registry.yarnpkg.com/character-entities-html4/-/character-entities-html4-1.1.2.tgz#c44fdde3ce66b52e8d321d6c1bf46101f0150610" 966 | 967 | character-entities-legacy@^1.0.0: 968 | version "1.1.2" 969 | resolved "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-1.1.2.tgz#7c6defb81648498222c9855309953d05f4d63a9c" 970 | 971 | character-entities@^1.0.0: 972 | version "1.2.2" 973 | resolved "https://registry.yarnpkg.com/character-entities/-/character-entities-1.2.2.tgz#58c8f371c0774ef0ba9b2aca5f00d8f100e6e363" 974 | 975 | character-reference-invalid@^1.0.0: 976 | version "1.1.2" 977 | resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-1.1.2.tgz#21e421ad3d84055952dab4a43a04e73cd425d3ed" 978 | 979 | chokidar@^2.0.0: 980 | version "2.0.4" 981 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.0.4.tgz#356ff4e2b0e8e43e322d18a372460bbcf3accd26" 982 | dependencies: 983 | anymatch "^2.0.0" 984 | async-each "^1.0.0" 985 | braces "^2.3.0" 986 | glob-parent "^3.1.0" 987 | inherits "^2.0.1" 988 | is-binary-path "^1.0.0" 989 | is-glob "^4.0.0" 990 | lodash.debounce "^4.0.8" 991 | normalize-path "^2.1.1" 992 | path-is-absolute "^1.0.0" 993 | readdirp "^2.0.0" 994 | upath "^1.0.5" 995 | optionalDependencies: 996 | fsevents "^1.2.2" 997 | 998 | chownr@^1.0.1: 999 | version "1.0.1" 1000 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.0.1.tgz#e2a75042a9551908bebd25b8523d5f9769d79181" 1001 | 1002 | class-utils@^0.3.5: 1003 | version "0.3.6" 1004 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 1005 | dependencies: 1006 | arr-union "^3.1.0" 1007 | define-property "^0.2.5" 1008 | isobject "^3.0.0" 1009 | static-extend "^0.1.1" 1010 | 1011 | cliui@^3.2.0: 1012 | version "3.2.0" 1013 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 1014 | dependencies: 1015 | string-width "^1.0.1" 1016 | strip-ansi "^3.0.1" 1017 | wrap-ansi "^2.0.0" 1018 | 1019 | clone-buffer@^1.0.0: 1020 | version "1.0.0" 1021 | resolved "https://registry.yarnpkg.com/clone-buffer/-/clone-buffer-1.0.0.tgz#e3e25b207ac4e701af721e2cb5a16792cac3dc58" 1022 | 1023 | clone-stats@^1.0.0: 1024 | version "1.0.0" 1025 | resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-1.0.0.tgz#b3782dff8bb5474e18b9b6bf0fdfe782f8777680" 1026 | 1027 | clone@^2.1.1: 1028 | version "2.1.1" 1029 | resolved "https://registry.yarnpkg.com/clone/-/clone-2.1.1.tgz#d217d1e961118e3ac9a4b8bba3285553bf647cdb" 1030 | 1031 | cloneable-readable@^1.0.0: 1032 | version "1.1.2" 1033 | resolved "https://registry.yarnpkg.com/cloneable-readable/-/cloneable-readable-1.1.2.tgz#d591dee4a8f8bc15da43ce97dceeba13d43e2a65" 1034 | dependencies: 1035 | inherits "^2.0.1" 1036 | process-nextick-args "^2.0.0" 1037 | readable-stream "^2.3.5" 1038 | 1039 | code-point-at@^1.0.0: 1040 | version "1.1.0" 1041 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 1042 | 1043 | collapse-white-space@^1.0.0, collapse-white-space@^1.0.2: 1044 | version "1.0.4" 1045 | resolved "https://registry.yarnpkg.com/collapse-white-space/-/collapse-white-space-1.0.4.tgz#ce05cf49e54c3277ae573036a26851ba430a0091" 1046 | 1047 | collection-visit@^1.0.0: 1048 | version "1.0.0" 1049 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 1050 | dependencies: 1051 | map-visit "^1.0.0" 1052 | object-visit "^1.0.0" 1053 | 1054 | color-convert@^1.9.0: 1055 | version "1.9.2" 1056 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.2.tgz#49881b8fba67df12a96bdf3f56c0aab9e7913147" 1057 | dependencies: 1058 | color-name "1.1.1" 1059 | 1060 | color-name@1.1.1: 1061 | version "1.1.1" 1062 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.1.tgz#4b1415304cf50028ea81643643bd82ea05803689" 1063 | 1064 | comma-separated-tokens@^1.0.1: 1065 | version "1.0.5" 1066 | resolved "https://registry.yarnpkg.com/comma-separated-tokens/-/comma-separated-tokens-1.0.5.tgz#b13793131d9ea2d2431cf5b507ddec258f0ce0db" 1067 | dependencies: 1068 | trim "0.0.1" 1069 | 1070 | commander@^2.12.1: 1071 | version "2.16.0" 1072 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.16.0.tgz#f16390593996ceb4f3eeb020b31d78528f7f8a50" 1073 | 1074 | component-emitter@^1.2.1: 1075 | version "1.2.1" 1076 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 1077 | 1078 | concat-map@0.0.1: 1079 | version "0.0.1" 1080 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1081 | 1082 | concat-stream@^1.6.0: 1083 | version "1.6.2" 1084 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" 1085 | dependencies: 1086 | buffer-from "^1.0.0" 1087 | inherits "^2.0.3" 1088 | readable-stream "^2.2.2" 1089 | typedarray "^0.0.6" 1090 | 1091 | concat-stream@~1.5.0: 1092 | version "1.5.2" 1093 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.5.2.tgz#708978624d856af41a5a741defdd261da752c266" 1094 | dependencies: 1095 | inherits "~2.0.1" 1096 | readable-stream "~2.0.0" 1097 | typedarray "~0.0.5" 1098 | 1099 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1100 | version "1.1.0" 1101 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1102 | 1103 | continuable-cache@^0.3.1: 1104 | version "0.3.1" 1105 | resolved "https://registry.yarnpkg.com/continuable-cache/-/continuable-cache-0.3.1.tgz#bd727a7faed77e71ff3985ac93351a912733ad0f" 1106 | 1107 | convert-source-map@^1.5.0, convert-source-map@^1.5.1: 1108 | version "1.5.1" 1109 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 1110 | 1111 | copy-descriptor@^0.1.0: 1112 | version "0.1.1" 1113 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 1114 | 1115 | core-js@^2.4.0, core-js@^2.5.0: 1116 | version "2.5.7" 1117 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.7.tgz#f972608ff0cead68b841a16a932d0b183791814e" 1118 | 1119 | core-util-is@~1.0.0: 1120 | version "1.0.2" 1121 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1122 | 1123 | cross-spawn@^5.0.1: 1124 | version "5.1.0" 1125 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 1126 | dependencies: 1127 | lru-cache "^4.0.1" 1128 | shebang-command "^1.2.0" 1129 | which "^1.2.9" 1130 | 1131 | de-indent@^1.0.2: 1132 | version "1.0.2" 1133 | resolved "https://registry.yarnpkg.com/de-indent/-/de-indent-1.0.2.tgz#b2038e846dc33baa5796128d0804b455b8c1e21d" 1134 | 1135 | debug@^2.1.2, debug@^2.2.0, debug@^2.3.3, debug@^2.6.8, debug@^2.6.9: 1136 | version "2.6.9" 1137 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1138 | dependencies: 1139 | ms "2.0.0" 1140 | 1141 | debug@^3.1.0: 1142 | version "3.1.0" 1143 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 1144 | dependencies: 1145 | ms "2.0.0" 1146 | 1147 | decamelize@^1.1.1: 1148 | version "1.2.0" 1149 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1150 | 1151 | decode-uri-component@^0.2.0: 1152 | version "0.2.0" 1153 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 1154 | 1155 | deep-extend@^0.6.0: 1156 | version "0.6.0" 1157 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 1158 | 1159 | define-properties@^1.1.2: 1160 | version "1.1.2" 1161 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 1162 | dependencies: 1163 | foreach "^2.0.5" 1164 | object-keys "^1.0.8" 1165 | 1166 | define-property@^0.2.5: 1167 | version "0.2.5" 1168 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 1169 | dependencies: 1170 | is-descriptor "^0.1.0" 1171 | 1172 | define-property@^1.0.0: 1173 | version "1.0.0" 1174 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 1175 | dependencies: 1176 | is-descriptor "^1.0.0" 1177 | 1178 | define-property@^2.0.2: 1179 | version "2.0.2" 1180 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 1181 | dependencies: 1182 | is-descriptor "^1.0.2" 1183 | isobject "^3.0.1" 1184 | 1185 | defined@^1.0.0: 1186 | version "1.0.0" 1187 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 1188 | 1189 | delegates@^1.0.0: 1190 | version "1.0.0" 1191 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1192 | 1193 | detab@^2.0.0: 1194 | version "2.0.1" 1195 | resolved "https://registry.yarnpkg.com/detab/-/detab-2.0.1.tgz#531f5e326620e2fd4f03264a905fb3bcc8af4df4" 1196 | dependencies: 1197 | repeat-string "^1.5.4" 1198 | 1199 | detect-indent@^4.0.0: 1200 | version "4.0.0" 1201 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1202 | dependencies: 1203 | repeating "^2.0.0" 1204 | 1205 | detect-libc@^1.0.2: 1206 | version "1.0.3" 1207 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 1208 | 1209 | detective@^4.0.0: 1210 | version "4.7.1" 1211 | resolved "https://registry.yarnpkg.com/detective/-/detective-4.7.1.tgz#0eca7314338442febb6d65da54c10bb1c82b246e" 1212 | dependencies: 1213 | acorn "^5.2.1" 1214 | defined "^1.0.0" 1215 | 1216 | diff@^1.3.2: 1217 | version "1.4.0" 1218 | resolved "https://registry.yarnpkg.com/diff/-/diff-1.4.0.tgz#7f28d2eb9ee7b15a97efd89ce63dcfdaa3ccbabf" 1219 | 1220 | diff@^3.2.0: 1221 | version "3.5.0" 1222 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" 1223 | 1224 | disparity@^2.0.0: 1225 | version "2.0.0" 1226 | resolved "https://registry.yarnpkg.com/disparity/-/disparity-2.0.0.tgz#57ddacb47324ae5f58d2cc0da886db4ce9eeb718" 1227 | dependencies: 1228 | ansi-styles "^2.0.1" 1229 | diff "^1.3.2" 1230 | 1231 | doctrine-temporary-fork@2.0.1: 1232 | version "2.0.1" 1233 | resolved "https://registry.yarnpkg.com/doctrine-temporary-fork/-/doctrine-temporary-fork-2.0.1.tgz#23f0b6275c65f48893324b02338178e496b2e4bf" 1234 | dependencies: 1235 | esutils "^2.0.2" 1236 | 1237 | documentation@*: 1238 | version "8.0.2" 1239 | resolved "https://registry.yarnpkg.com/documentation/-/documentation-8.0.2.tgz#a646ad2a92f3de04e44db0925a4218085e081c0c" 1240 | dependencies: 1241 | ansi-html "^0.0.7" 1242 | babel-core "^6.26.0" 1243 | babel-generator "^6.26.0" 1244 | babel-plugin-system-import-transformer "3.1.0" 1245 | babel-plugin-transform-decorators-legacy "^1.3.4" 1246 | babel-preset-env "^1.6.1" 1247 | babel-preset-react "^6.24.1" 1248 | babel-preset-stage-0 "^6.24.1" 1249 | babel-traverse "^6.26.0" 1250 | babel-types "^6.26.0" 1251 | babelify "^8.0.0" 1252 | babylon "^6.18.0" 1253 | chalk "^2.3.0" 1254 | chokidar "^2.0.0" 1255 | concat-stream "^1.6.0" 1256 | disparity "^2.0.0" 1257 | doctrine-temporary-fork "2.0.1" 1258 | get-port "^3.2.0" 1259 | git-url-parse "^10.0.1" 1260 | github-slugger "1.2.0" 1261 | glob "^7.1.2" 1262 | globals-docs "^2.4.0" 1263 | highlight.js "^9.12.0" 1264 | js-yaml "^3.10.0" 1265 | lodash "^4.17.10" 1266 | mdast-util-inject "^1.1.0" 1267 | micromatch "^3.1.5" 1268 | mime "^2.2.0" 1269 | module-deps-sortable "4.0.6" 1270 | parse-filepath "^1.0.2" 1271 | pify "^3.0.0" 1272 | read-pkg-up "^4.0.0" 1273 | remark "^9.0.0" 1274 | remark-html "7.0.0" 1275 | remark-reference-links "^4.0.1" 1276 | remark-toc "^5.0.0" 1277 | remote-origin-url "0.4.0" 1278 | stream-array "^1.1.2" 1279 | strip-json-comments "^2.0.1" 1280 | tiny-lr "^1.1.0" 1281 | unist-builder "^1.0.2" 1282 | unist-util-visit "^1.3.0" 1283 | vfile "^2.3.0" 1284 | vfile-reporter "^4.0.0" 1285 | vfile-sort "^2.1.0" 1286 | vinyl "^2.1.0" 1287 | vinyl-fs "^3.0.2" 1288 | vue-template-compiler "^2.5.16" 1289 | yargs "^9.0.1" 1290 | 1291 | dotenv@*: 1292 | version "6.0.0" 1293 | resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-6.0.0.tgz#24e37c041741c5f4b25324958ebbc34bca965935" 1294 | 1295 | duplexer2@^0.1.2, duplexer2@~0.1.0: 1296 | version "0.1.4" 1297 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" 1298 | dependencies: 1299 | readable-stream "^2.0.2" 1300 | 1301 | duplexify@^3.6.0: 1302 | version "3.6.0" 1303 | resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.6.0.tgz#592903f5d80b38d037220541264d69a198fb3410" 1304 | dependencies: 1305 | end-of-stream "^1.0.0" 1306 | inherits "^2.0.1" 1307 | readable-stream "^2.0.0" 1308 | stream-shift "^1.0.0" 1309 | 1310 | electron-to-chromium@^1.3.47: 1311 | version "1.3.52" 1312 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.52.tgz#d2d9f1270ba4a3b967b831c40ef71fb4d9ab5ce0" 1313 | 1314 | "emoji-regex@>=6.0.0 <=6.1.1": 1315 | version "6.1.1" 1316 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-6.1.1.tgz#c6cd0ec1b0642e2a3c67a1137efc5e796da4f88e" 1317 | 1318 | end-of-stream@^1.0.0, end-of-stream@^1.1.0: 1319 | version "1.4.1" 1320 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.1.tgz#ed29634d19baba463b6ce6b80a37213eab71ec43" 1321 | dependencies: 1322 | once "^1.4.0" 1323 | 1324 | error-ex@^1.2.0, error-ex@^1.3.1: 1325 | version "1.3.2" 1326 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 1327 | dependencies: 1328 | is-arrayish "^0.2.1" 1329 | 1330 | error@^7.0.0: 1331 | version "7.0.2" 1332 | resolved "https://registry.yarnpkg.com/error/-/error-7.0.2.tgz#a5f75fff4d9926126ddac0ea5dc38e689153cb02" 1333 | dependencies: 1334 | string-template "~0.2.1" 1335 | xtend "~4.0.0" 1336 | 1337 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1338 | version "1.0.5" 1339 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1340 | 1341 | esprima@^4.0.0: 1342 | version "4.0.1" 1343 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 1344 | 1345 | esutils@^2.0.2: 1346 | version "2.0.2" 1347 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1348 | 1349 | execa@^0.7.0: 1350 | version "0.7.0" 1351 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1352 | dependencies: 1353 | cross-spawn "^5.0.1" 1354 | get-stream "^3.0.0" 1355 | is-stream "^1.1.0" 1356 | npm-run-path "^2.0.0" 1357 | p-finally "^1.0.0" 1358 | signal-exit "^3.0.0" 1359 | strip-eof "^1.0.0" 1360 | 1361 | expand-brackets@^2.1.4: 1362 | version "2.1.4" 1363 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 1364 | dependencies: 1365 | debug "^2.3.3" 1366 | define-property "^0.2.5" 1367 | extend-shallow "^2.0.1" 1368 | posix-character-classes "^0.1.0" 1369 | regex-not "^1.0.0" 1370 | snapdragon "^0.8.1" 1371 | to-regex "^3.0.1" 1372 | 1373 | extend-shallow@^2.0.1: 1374 | version "2.0.1" 1375 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 1376 | dependencies: 1377 | is-extendable "^0.1.0" 1378 | 1379 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 1380 | version "3.0.2" 1381 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 1382 | dependencies: 1383 | assign-symbols "^1.0.0" 1384 | is-extendable "^1.0.1" 1385 | 1386 | extend@^3.0.0: 1387 | version "3.0.2" 1388 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 1389 | 1390 | extglob@^2.0.4: 1391 | version "2.0.4" 1392 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 1393 | dependencies: 1394 | array-unique "^0.3.2" 1395 | define-property "^1.0.0" 1396 | expand-brackets "^2.1.4" 1397 | extend-shallow "^2.0.1" 1398 | fragment-cache "^0.2.1" 1399 | regex-not "^1.0.0" 1400 | snapdragon "^0.8.1" 1401 | to-regex "^3.0.1" 1402 | 1403 | faye-websocket@~0.10.0: 1404 | version "0.10.0" 1405 | resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.10.0.tgz#4e492f8d04dfb6f89003507f6edbf2d501e7c6f4" 1406 | dependencies: 1407 | websocket-driver ">=0.5.1" 1408 | 1409 | fill-range@^4.0.0: 1410 | version "4.0.0" 1411 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 1412 | dependencies: 1413 | extend-shallow "^2.0.1" 1414 | is-number "^3.0.0" 1415 | repeat-string "^1.6.1" 1416 | to-regex-range "^2.1.0" 1417 | 1418 | find-up@^2.0.0: 1419 | version "2.1.0" 1420 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1421 | dependencies: 1422 | locate-path "^2.0.0" 1423 | 1424 | find-up@^3.0.0: 1425 | version "3.0.0" 1426 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" 1427 | dependencies: 1428 | locate-path "^3.0.0" 1429 | 1430 | flush-write-stream@^1.0.2: 1431 | version "1.0.3" 1432 | resolved "https://registry.yarnpkg.com/flush-write-stream/-/flush-write-stream-1.0.3.tgz#c5d586ef38af6097650b49bc41b55fabb19f35bd" 1433 | dependencies: 1434 | inherits "^2.0.1" 1435 | readable-stream "^2.0.4" 1436 | 1437 | for-in@^1.0.2: 1438 | version "1.0.2" 1439 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1440 | 1441 | foreach@^2.0.5: 1442 | version "2.0.5" 1443 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1444 | 1445 | fragment-cache@^0.2.1: 1446 | version "0.2.1" 1447 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 1448 | dependencies: 1449 | map-cache "^0.2.2" 1450 | 1451 | fs-minipass@^1.2.5: 1452 | version "1.2.5" 1453 | resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d" 1454 | dependencies: 1455 | minipass "^2.2.1" 1456 | 1457 | fs-mkdirp-stream@^1.0.0: 1458 | version "1.0.0" 1459 | resolved "https://registry.yarnpkg.com/fs-mkdirp-stream/-/fs-mkdirp-stream-1.0.0.tgz#0b7815fc3201c6a69e14db98ce098c16935259eb" 1460 | dependencies: 1461 | graceful-fs "^4.1.11" 1462 | through2 "^2.0.3" 1463 | 1464 | fs.realpath@^1.0.0: 1465 | version "1.0.0" 1466 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1467 | 1468 | fsevents@^1.2.2: 1469 | version "1.2.4" 1470 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.4.tgz#f41dcb1af2582af3692da36fc55cbd8e1041c426" 1471 | dependencies: 1472 | nan "^2.9.2" 1473 | node-pre-gyp "^0.10.0" 1474 | 1475 | function-bind@^1.1.1: 1476 | version "1.1.1" 1477 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1478 | 1479 | gauge@~2.7.3: 1480 | version "2.7.4" 1481 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1482 | dependencies: 1483 | aproba "^1.0.3" 1484 | console-control-strings "^1.0.0" 1485 | has-unicode "^2.0.0" 1486 | object-assign "^4.1.0" 1487 | signal-exit "^3.0.0" 1488 | string-width "^1.0.1" 1489 | strip-ansi "^3.0.1" 1490 | wide-align "^1.1.0" 1491 | 1492 | get-caller-file@^1.0.1: 1493 | version "1.0.3" 1494 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" 1495 | 1496 | get-port@^3.2.0: 1497 | version "3.2.0" 1498 | resolved "https://registry.yarnpkg.com/get-port/-/get-port-3.2.0.tgz#dd7ce7de187c06c8bf353796ac71e099f0980ebc" 1499 | 1500 | get-stream@^3.0.0: 1501 | version "3.0.0" 1502 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1503 | 1504 | get-value@^2.0.3, get-value@^2.0.6: 1505 | version "2.0.6" 1506 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 1507 | 1508 | git-up@^2.0.0: 1509 | version "2.0.10" 1510 | resolved "https://registry.yarnpkg.com/git-up/-/git-up-2.0.10.tgz#20fe6bafbef4384cae253dc4f463c49a0c3bd2ec" 1511 | dependencies: 1512 | is-ssh "^1.3.0" 1513 | parse-url "^1.3.0" 1514 | 1515 | git-url-parse@^10.0.1: 1516 | version "10.0.1" 1517 | resolved "https://registry.yarnpkg.com/git-url-parse/-/git-url-parse-10.0.1.tgz#75f153b24ac7297447fc583cf9fac23a5ae687c1" 1518 | dependencies: 1519 | git-up "^2.0.0" 1520 | 1521 | github-slugger@1.2.0, github-slugger@^1.0.0, github-slugger@^1.1.1: 1522 | version "1.2.0" 1523 | resolved "https://registry.yarnpkg.com/github-slugger/-/github-slugger-1.2.0.tgz#8ada3286fd046d8951c3c952a8d7854cfd90fd9a" 1524 | dependencies: 1525 | emoji-regex ">=6.0.0 <=6.1.1" 1526 | 1527 | glob-parent@^3.1.0: 1528 | version "3.1.0" 1529 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" 1530 | dependencies: 1531 | is-glob "^3.1.0" 1532 | path-dirname "^1.0.0" 1533 | 1534 | glob-stream@^6.1.0: 1535 | version "6.1.0" 1536 | resolved "https://registry.yarnpkg.com/glob-stream/-/glob-stream-6.1.0.tgz#7045c99413b3eb94888d83ab46d0b404cc7bdde4" 1537 | dependencies: 1538 | extend "^3.0.0" 1539 | glob "^7.1.1" 1540 | glob-parent "^3.1.0" 1541 | is-negated-glob "^1.0.0" 1542 | ordered-read-streams "^1.0.0" 1543 | pumpify "^1.3.5" 1544 | readable-stream "^2.1.5" 1545 | remove-trailing-separator "^1.0.1" 1546 | to-absolute-glob "^2.0.0" 1547 | unique-stream "^2.0.2" 1548 | 1549 | glob@^7.0.5, glob@^7.1.1, glob@^7.1.2: 1550 | version "7.1.2" 1551 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1552 | dependencies: 1553 | fs.realpath "^1.0.0" 1554 | inflight "^1.0.4" 1555 | inherits "2" 1556 | minimatch "^3.0.4" 1557 | once "^1.3.0" 1558 | path-is-absolute "^1.0.0" 1559 | 1560 | globals-docs@^2.4.0: 1561 | version "2.4.0" 1562 | resolved "https://registry.yarnpkg.com/globals-docs/-/globals-docs-2.4.0.tgz#f2c647544eb6161c7c38452808e16e693c2dafbb" 1563 | 1564 | globals@^9.18.0: 1565 | version "9.18.0" 1566 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1567 | 1568 | graceful-fs@^4.0.0, graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6: 1569 | version "4.1.11" 1570 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1571 | 1572 | has-ansi@^2.0.0: 1573 | version "2.0.0" 1574 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1575 | dependencies: 1576 | ansi-regex "^2.0.0" 1577 | 1578 | has-flag@^2.0.0: 1579 | version "2.0.0" 1580 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1581 | 1582 | has-flag@^3.0.0: 1583 | version "3.0.0" 1584 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1585 | 1586 | has-symbols@^1.0.0: 1587 | version "1.0.0" 1588 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" 1589 | 1590 | has-unicode@^2.0.0: 1591 | version "2.0.1" 1592 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1593 | 1594 | has-value@^0.3.1: 1595 | version "0.3.1" 1596 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 1597 | dependencies: 1598 | get-value "^2.0.3" 1599 | has-values "^0.1.4" 1600 | isobject "^2.0.0" 1601 | 1602 | has-value@^1.0.0: 1603 | version "1.0.0" 1604 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 1605 | dependencies: 1606 | get-value "^2.0.6" 1607 | has-values "^1.0.0" 1608 | isobject "^3.0.0" 1609 | 1610 | has-values@^0.1.4: 1611 | version "0.1.4" 1612 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 1613 | 1614 | has-values@^1.0.0: 1615 | version "1.0.0" 1616 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 1617 | dependencies: 1618 | is-number "^3.0.0" 1619 | kind-of "^4.0.0" 1620 | 1621 | hast-util-is-element@^1.0.0: 1622 | version "1.0.1" 1623 | resolved "https://registry.yarnpkg.com/hast-util-is-element/-/hast-util-is-element-1.0.1.tgz#c76e8aafbdb6e5c83265bf50324e2f2e024eb12a" 1624 | 1625 | hast-util-sanitize@^1.0.0: 1626 | version "1.2.0" 1627 | resolved "https://registry.yarnpkg.com/hast-util-sanitize/-/hast-util-sanitize-1.2.0.tgz#1a46bc8e8554f4747d219dd1d85f9cb245b1b08d" 1628 | dependencies: 1629 | xtend "^4.0.1" 1630 | 1631 | hast-util-to-html@^3.0.0: 1632 | version "3.1.0" 1633 | resolved "https://registry.yarnpkg.com/hast-util-to-html/-/hast-util-to-html-3.1.0.tgz#882c99849e40130e991c042e456d453d95c36cff" 1634 | dependencies: 1635 | ccount "^1.0.0" 1636 | comma-separated-tokens "^1.0.1" 1637 | hast-util-is-element "^1.0.0" 1638 | hast-util-whitespace "^1.0.0" 1639 | html-void-elements "^1.0.0" 1640 | kebab-case "^1.0.0" 1641 | property-information "^3.1.0" 1642 | space-separated-tokens "^1.0.0" 1643 | stringify-entities "^1.0.1" 1644 | unist-util-is "^2.0.0" 1645 | xtend "^4.0.1" 1646 | 1647 | hast-util-whitespace@^1.0.0: 1648 | version "1.0.1" 1649 | resolved "https://registry.yarnpkg.com/hast-util-whitespace/-/hast-util-whitespace-1.0.1.tgz#d67da2c87637b1ce1d85dd15b270ba057930149a" 1650 | 1651 | he@^1.1.0: 1652 | version "1.1.1" 1653 | resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd" 1654 | 1655 | highlight.js@^9.12.0: 1656 | version "9.12.0" 1657 | resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-9.12.0.tgz#e6d9dbe57cbefe60751f02af336195870c90c01e" 1658 | 1659 | home-or-tmp@^2.0.0: 1660 | version "2.0.0" 1661 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1662 | dependencies: 1663 | os-homedir "^1.0.0" 1664 | os-tmpdir "^1.0.1" 1665 | 1666 | hosted-git-info@^2.1.4: 1667 | version "2.7.1" 1668 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.7.1.tgz#97f236977bd6e125408930ff6de3eec6281ec047" 1669 | 1670 | html-void-elements@^1.0.0: 1671 | version "1.0.3" 1672 | resolved "https://registry.yarnpkg.com/html-void-elements/-/html-void-elements-1.0.3.tgz#956707dbecd10cf658c92c5d27fee763aa6aa982" 1673 | 1674 | http-parser-js@>=0.4.0: 1675 | version "0.4.13" 1676 | resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.4.13.tgz#3bd6d6fde6e3172c9334c3b33b6c193d80fe1137" 1677 | 1678 | iconv-lite@^0.4.4: 1679 | version "0.4.23" 1680 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.23.tgz#297871f63be507adcfbfca715d0cd0eed84e9a63" 1681 | dependencies: 1682 | safer-buffer ">= 2.1.2 < 3" 1683 | 1684 | ignore-walk@^3.0.1: 1685 | version "3.0.1" 1686 | resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" 1687 | dependencies: 1688 | minimatch "^3.0.4" 1689 | 1690 | inflight@^1.0.4: 1691 | version "1.0.6" 1692 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1693 | dependencies: 1694 | once "^1.3.0" 1695 | wrappy "1" 1696 | 1697 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.1, inherits@~2.0.3: 1698 | version "2.0.3" 1699 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1700 | 1701 | ini@^1.3.3, ini@~1.3.0: 1702 | version "1.3.5" 1703 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1704 | 1705 | invariant@^2.2.2: 1706 | version "2.2.4" 1707 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" 1708 | dependencies: 1709 | loose-envify "^1.0.0" 1710 | 1711 | invert-kv@^1.0.0: 1712 | version "1.0.0" 1713 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1714 | 1715 | is-absolute@^1.0.0: 1716 | version "1.0.0" 1717 | resolved "https://registry.yarnpkg.com/is-absolute/-/is-absolute-1.0.0.tgz#395e1ae84b11f26ad1795e73c17378e48a301576" 1718 | dependencies: 1719 | is-relative "^1.0.0" 1720 | is-windows "^1.0.1" 1721 | 1722 | is-accessor-descriptor@^0.1.6: 1723 | version "0.1.6" 1724 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 1725 | dependencies: 1726 | kind-of "^3.0.2" 1727 | 1728 | is-accessor-descriptor@^1.0.0: 1729 | version "1.0.0" 1730 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 1731 | dependencies: 1732 | kind-of "^6.0.0" 1733 | 1734 | is-alphabetical@^1.0.0: 1735 | version "1.0.2" 1736 | resolved "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-1.0.2.tgz#1fa6e49213cb7885b75d15862fb3f3d96c884f41" 1737 | 1738 | is-alphanumeric@^1.0.0: 1739 | version "1.0.0" 1740 | resolved "https://registry.yarnpkg.com/is-alphanumeric/-/is-alphanumeric-1.0.0.tgz#4a9cef71daf4c001c1d81d63d140cf53fd6889f4" 1741 | 1742 | is-alphanumerical@^1.0.0: 1743 | version "1.0.2" 1744 | resolved "https://registry.yarnpkg.com/is-alphanumerical/-/is-alphanumerical-1.0.2.tgz#1138e9ae5040158dc6ff76b820acd6b7a181fd40" 1745 | dependencies: 1746 | is-alphabetical "^1.0.0" 1747 | is-decimal "^1.0.0" 1748 | 1749 | is-arrayish@^0.2.1: 1750 | version "0.2.1" 1751 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1752 | 1753 | is-binary-path@^1.0.0: 1754 | version "1.0.1" 1755 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1756 | dependencies: 1757 | binary-extensions "^1.0.0" 1758 | 1759 | is-buffer@^1.1.4, is-buffer@^1.1.5: 1760 | version "1.1.6" 1761 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1762 | 1763 | is-builtin-module@^1.0.0: 1764 | version "1.0.0" 1765 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1766 | dependencies: 1767 | builtin-modules "^1.0.0" 1768 | 1769 | is-data-descriptor@^0.1.4: 1770 | version "0.1.4" 1771 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 1772 | dependencies: 1773 | kind-of "^3.0.2" 1774 | 1775 | is-data-descriptor@^1.0.0: 1776 | version "1.0.0" 1777 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 1778 | dependencies: 1779 | kind-of "^6.0.0" 1780 | 1781 | is-decimal@^1.0.0: 1782 | version "1.0.2" 1783 | resolved "https://registry.yarnpkg.com/is-decimal/-/is-decimal-1.0.2.tgz#894662d6a8709d307f3a276ca4339c8fa5dff0ff" 1784 | 1785 | is-descriptor@^0.1.0: 1786 | version "0.1.6" 1787 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 1788 | dependencies: 1789 | is-accessor-descriptor "^0.1.6" 1790 | is-data-descriptor "^0.1.4" 1791 | kind-of "^5.0.0" 1792 | 1793 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 1794 | version "1.0.2" 1795 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 1796 | dependencies: 1797 | is-accessor-descriptor "^1.0.0" 1798 | is-data-descriptor "^1.0.0" 1799 | kind-of "^6.0.2" 1800 | 1801 | is-extendable@^0.1.0, is-extendable@^0.1.1: 1802 | version "0.1.1" 1803 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1804 | 1805 | is-extendable@^1.0.1: 1806 | version "1.0.1" 1807 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 1808 | dependencies: 1809 | is-plain-object "^2.0.4" 1810 | 1811 | is-extglob@^2.1.0, is-extglob@^2.1.1: 1812 | version "2.1.1" 1813 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1814 | 1815 | is-finite@^1.0.0: 1816 | version "1.0.2" 1817 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1818 | dependencies: 1819 | number-is-nan "^1.0.0" 1820 | 1821 | is-fullwidth-code-point@^1.0.0: 1822 | version "1.0.0" 1823 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1824 | dependencies: 1825 | number-is-nan "^1.0.0" 1826 | 1827 | is-fullwidth-code-point@^2.0.0: 1828 | version "2.0.0" 1829 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1830 | 1831 | is-glob@^3.1.0: 1832 | version "3.1.0" 1833 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" 1834 | dependencies: 1835 | is-extglob "^2.1.0" 1836 | 1837 | is-glob@^4.0.0: 1838 | version "4.0.0" 1839 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.0.tgz#9521c76845cc2610a85203ddf080a958c2ffabc0" 1840 | dependencies: 1841 | is-extglob "^2.1.1" 1842 | 1843 | is-hexadecimal@^1.0.0: 1844 | version "1.0.2" 1845 | resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-1.0.2.tgz#b6e710d7d07bb66b98cb8cece5c9b4921deeb835" 1846 | 1847 | is-negated-glob@^1.0.0: 1848 | version "1.0.0" 1849 | resolved "https://registry.yarnpkg.com/is-negated-glob/-/is-negated-glob-1.0.0.tgz#6910bca5da8c95e784b5751b976cf5a10fee36d2" 1850 | 1851 | is-number@^3.0.0: 1852 | version "3.0.0" 1853 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1854 | dependencies: 1855 | kind-of "^3.0.2" 1856 | 1857 | is-plain-obj@^1.1.0: 1858 | version "1.1.0" 1859 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 1860 | 1861 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: 1862 | version "2.0.4" 1863 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 1864 | dependencies: 1865 | isobject "^3.0.1" 1866 | 1867 | is-relative@^1.0.0: 1868 | version "1.0.0" 1869 | resolved "https://registry.yarnpkg.com/is-relative/-/is-relative-1.0.0.tgz#a1bb6935ce8c5dba1e8b9754b9b2dcc020e2260d" 1870 | dependencies: 1871 | is-unc-path "^1.0.0" 1872 | 1873 | is-ssh@^1.3.0: 1874 | version "1.3.0" 1875 | resolved "https://registry.yarnpkg.com/is-ssh/-/is-ssh-1.3.0.tgz#ebea1169a2614da392a63740366c3ce049d8dff6" 1876 | dependencies: 1877 | protocols "^1.1.0" 1878 | 1879 | is-stream@^1.1.0: 1880 | version "1.1.0" 1881 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1882 | 1883 | is-unc-path@^1.0.0: 1884 | version "1.0.0" 1885 | resolved "https://registry.yarnpkg.com/is-unc-path/-/is-unc-path-1.0.0.tgz#d731e8898ed090a12c352ad2eaed5095ad322c9d" 1886 | dependencies: 1887 | unc-path-regex "^0.1.2" 1888 | 1889 | is-utf8@^0.2.1: 1890 | version "0.2.1" 1891 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1892 | 1893 | is-valid-glob@^1.0.0: 1894 | version "1.0.0" 1895 | resolved "https://registry.yarnpkg.com/is-valid-glob/-/is-valid-glob-1.0.0.tgz#29bf3eff701be2d4d315dbacc39bc39fe8f601aa" 1896 | 1897 | is-whitespace-character@^1.0.0: 1898 | version "1.0.2" 1899 | resolved "https://registry.yarnpkg.com/is-whitespace-character/-/is-whitespace-character-1.0.2.tgz#ede53b4c6f6fb3874533751ec9280d01928d03ed" 1900 | 1901 | is-windows@^1.0.1, is-windows@^1.0.2: 1902 | version "1.0.2" 1903 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 1904 | 1905 | is-word-character@^1.0.0: 1906 | version "1.0.2" 1907 | resolved "https://registry.yarnpkg.com/is-word-character/-/is-word-character-1.0.2.tgz#46a5dac3f2a1840898b91e576cd40d493f3ae553" 1908 | 1909 | isarray@1.0.0, isarray@~1.0.0: 1910 | version "1.0.0" 1911 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1912 | 1913 | isexe@^2.0.0: 1914 | version "2.0.0" 1915 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1916 | 1917 | isobject@^2.0.0: 1918 | version "2.1.0" 1919 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1920 | dependencies: 1921 | isarray "1.0.0" 1922 | 1923 | isobject@^3.0.0, isobject@^3.0.1: 1924 | version "3.0.1" 1925 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 1926 | 1927 | "js-tokens@^3.0.0 || ^4.0.0": 1928 | version "4.0.0" 1929 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1930 | 1931 | js-tokens@^3.0.2: 1932 | version "3.0.2" 1933 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1934 | 1935 | js-yaml@^3.10.0, js-yaml@^3.7.0: 1936 | version "3.12.0" 1937 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.0.tgz#eaed656ec8344f10f527c6bfa1b6e2244de167d1" 1938 | dependencies: 1939 | argparse "^1.0.7" 1940 | esprima "^4.0.0" 1941 | 1942 | jsesc@^1.3.0: 1943 | version "1.3.0" 1944 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1945 | 1946 | jsesc@~0.5.0: 1947 | version "0.5.0" 1948 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1949 | 1950 | json-parse-better-errors@^1.0.1: 1951 | version "1.0.2" 1952 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" 1953 | 1954 | json-stable-stringify@^1.0.0: 1955 | version "1.0.1" 1956 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1957 | dependencies: 1958 | jsonify "~0.0.0" 1959 | 1960 | json5@^0.5.1: 1961 | version "0.5.1" 1962 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1963 | 1964 | jsonify@~0.0.0: 1965 | version "0.0.0" 1966 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1967 | 1968 | jsonparse@^1.2.0: 1969 | version "1.3.1" 1970 | resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" 1971 | 1972 | kebab-case@^1.0.0: 1973 | version "1.0.0" 1974 | resolved "https://registry.yarnpkg.com/kebab-case/-/kebab-case-1.0.0.tgz#3f9e4990adcad0c686c0e701f7645868f75f91eb" 1975 | 1976 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 1977 | version "3.2.2" 1978 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1979 | dependencies: 1980 | is-buffer "^1.1.5" 1981 | 1982 | kind-of@^4.0.0: 1983 | version "4.0.0" 1984 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1985 | dependencies: 1986 | is-buffer "^1.1.5" 1987 | 1988 | kind-of@^5.0.0: 1989 | version "5.1.0" 1990 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 1991 | 1992 | kind-of@^6.0.0, kind-of@^6.0.2: 1993 | version "6.0.2" 1994 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 1995 | 1996 | lazystream@^1.0.0: 1997 | version "1.0.0" 1998 | resolved "https://registry.yarnpkg.com/lazystream/-/lazystream-1.0.0.tgz#f6995fe0f820392f61396be89462407bb77168e4" 1999 | dependencies: 2000 | readable-stream "^2.0.5" 2001 | 2002 | lcid@^1.0.0: 2003 | version "1.0.0" 2004 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2005 | dependencies: 2006 | invert-kv "^1.0.0" 2007 | 2008 | lead@^1.0.0: 2009 | version "1.0.0" 2010 | resolved "https://registry.yarnpkg.com/lead/-/lead-1.0.0.tgz#6f14f99a37be3a9dd784f5495690e5903466ee42" 2011 | dependencies: 2012 | flush-write-stream "^1.0.2" 2013 | 2014 | livereload-js@^2.3.0: 2015 | version "2.3.0" 2016 | resolved "https://registry.yarnpkg.com/livereload-js/-/livereload-js-2.3.0.tgz#c3ab22e8aaf5bf3505d80d098cbad67726548c9a" 2017 | 2018 | load-json-file@^2.0.0: 2019 | version "2.0.0" 2020 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 2021 | dependencies: 2022 | graceful-fs "^4.1.2" 2023 | parse-json "^2.2.0" 2024 | pify "^2.0.0" 2025 | strip-bom "^3.0.0" 2026 | 2027 | load-json-file@^4.0.0: 2028 | version "4.0.0" 2029 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" 2030 | dependencies: 2031 | graceful-fs "^4.1.2" 2032 | parse-json "^4.0.0" 2033 | pify "^3.0.0" 2034 | strip-bom "^3.0.0" 2035 | 2036 | locate-path@^2.0.0: 2037 | version "2.0.0" 2038 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2039 | dependencies: 2040 | p-locate "^2.0.0" 2041 | path-exists "^3.0.0" 2042 | 2043 | locate-path@^3.0.0: 2044 | version "3.0.0" 2045 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" 2046 | dependencies: 2047 | p-locate "^3.0.0" 2048 | path-exists "^3.0.0" 2049 | 2050 | lodash.debounce@^4.0.8: 2051 | version "4.0.8" 2052 | resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" 2053 | 2054 | lodash@^4.17.10, lodash@^4.17.4: 2055 | version "4.17.10" 2056 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7" 2057 | 2058 | longest-streak@^2.0.1: 2059 | version "2.0.2" 2060 | resolved "https://registry.yarnpkg.com/longest-streak/-/longest-streak-2.0.2.tgz#2421b6ba939a443bb9ffebf596585a50b4c38e2e" 2061 | 2062 | loose-envify@^1.0.0: 2063 | version "1.4.0" 2064 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 2065 | dependencies: 2066 | js-tokens "^3.0.0 || ^4.0.0" 2067 | 2068 | lru-cache@^4.0.1: 2069 | version "4.1.3" 2070 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.3.tgz#a1175cf3496dfc8436c156c334b4955992bce69c" 2071 | dependencies: 2072 | pseudomap "^1.0.2" 2073 | yallist "^2.1.2" 2074 | 2075 | map-cache@^0.2.0, map-cache@^0.2.2: 2076 | version "0.2.2" 2077 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 2078 | 2079 | map-visit@^1.0.0: 2080 | version "1.0.0" 2081 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 2082 | dependencies: 2083 | object-visit "^1.0.0" 2084 | 2085 | markdown-escapes@^1.0.0: 2086 | version "1.0.2" 2087 | resolved "https://registry.yarnpkg.com/markdown-escapes/-/markdown-escapes-1.0.2.tgz#e639cbde7b99c841c0bacc8a07982873b46d2122" 2088 | 2089 | markdown-table@^1.1.0: 2090 | version "1.1.2" 2091 | resolved "https://registry.yarnpkg.com/markdown-table/-/markdown-table-1.1.2.tgz#c78db948fa879903a41bce522e3b96f801c63786" 2092 | 2093 | mdast-util-compact@^1.0.0: 2094 | version "1.0.1" 2095 | resolved "https://registry.yarnpkg.com/mdast-util-compact/-/mdast-util-compact-1.0.1.tgz#cdb5f84e2b6a2d3114df33bd05d9cb32e3c4083a" 2096 | dependencies: 2097 | unist-util-modify-children "^1.0.0" 2098 | unist-util-visit "^1.1.0" 2099 | 2100 | mdast-util-definitions@^1.2.0: 2101 | version "1.2.2" 2102 | resolved "https://registry.yarnpkg.com/mdast-util-definitions/-/mdast-util-definitions-1.2.2.tgz#673f4377c3e23d3de7af7a4fe2214c0e221c5ac7" 2103 | dependencies: 2104 | unist-util-visit "^1.0.0" 2105 | 2106 | mdast-util-inject@^1.1.0: 2107 | version "1.1.0" 2108 | resolved "https://registry.yarnpkg.com/mdast-util-inject/-/mdast-util-inject-1.1.0.tgz#db06b8b585be959a2dcd2f87f472ba9b756f3675" 2109 | dependencies: 2110 | mdast-util-to-string "^1.0.0" 2111 | 2112 | mdast-util-to-hast@^3.0.0: 2113 | version "3.0.1" 2114 | resolved "https://registry.yarnpkg.com/mdast-util-to-hast/-/mdast-util-to-hast-3.0.1.tgz#0f91a2d3e3f9415705c0849ff8c2cbe5cc73b307" 2115 | dependencies: 2116 | collapse-white-space "^1.0.0" 2117 | detab "^2.0.0" 2118 | mdast-util-definitions "^1.2.0" 2119 | mdurl "^1.0.1" 2120 | trim "0.0.1" 2121 | trim-lines "^1.0.0" 2122 | unist-builder "^1.0.1" 2123 | unist-util-generated "^1.1.0" 2124 | unist-util-position "^3.0.0" 2125 | unist-util-visit "^1.1.0" 2126 | xtend "^4.0.1" 2127 | 2128 | mdast-util-to-string@^1.0.0, mdast-util-to-string@^1.0.2: 2129 | version "1.0.4" 2130 | resolved "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-1.0.4.tgz#5c455c878c9355f0c1e7f3e8b719cf583691acfb" 2131 | 2132 | mdast-util-toc@^2.0.0: 2133 | version "2.0.1" 2134 | resolved "https://registry.yarnpkg.com/mdast-util-toc/-/mdast-util-toc-2.0.1.tgz#b1d2cb23bfb01f812fa7b55bffe8b0a8bedf6f21" 2135 | dependencies: 2136 | github-slugger "^1.1.1" 2137 | mdast-util-to-string "^1.0.2" 2138 | unist-util-visit "^1.1.0" 2139 | 2140 | mdurl@^1.0.1: 2141 | version "1.0.1" 2142 | resolved "https://registry.yarnpkg.com/mdurl/-/mdurl-1.0.1.tgz#fe85b2ec75a59037f2adfec100fd6c601761152e" 2143 | 2144 | mem@^1.1.0: 2145 | version "1.1.0" 2146 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 2147 | dependencies: 2148 | mimic-fn "^1.0.0" 2149 | 2150 | micromatch@^3.1.4, micromatch@^3.1.5: 2151 | version "3.1.10" 2152 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 2153 | dependencies: 2154 | arr-diff "^4.0.0" 2155 | array-unique "^0.3.2" 2156 | braces "^2.3.1" 2157 | define-property "^2.0.2" 2158 | extend-shallow "^3.0.2" 2159 | extglob "^2.0.4" 2160 | fragment-cache "^0.2.1" 2161 | kind-of "^6.0.2" 2162 | nanomatch "^1.2.9" 2163 | object.pick "^1.3.0" 2164 | regex-not "^1.0.0" 2165 | snapdragon "^0.8.1" 2166 | to-regex "^3.0.2" 2167 | 2168 | mime@^2.2.0: 2169 | version "2.3.1" 2170 | resolved "https://registry.yarnpkg.com/mime/-/mime-2.3.1.tgz#b1621c54d63b97c47d3cfe7f7215f7d64517c369" 2171 | 2172 | mimic-fn@^1.0.0: 2173 | version "1.2.0" 2174 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 2175 | 2176 | minimatch@^3.0.2, minimatch@^3.0.4: 2177 | version "3.0.4" 2178 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2179 | dependencies: 2180 | brace-expansion "^1.1.7" 2181 | 2182 | minimist@0.0.8: 2183 | version "0.0.8" 2184 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2185 | 2186 | minimist@^1.1.0, minimist@^1.2.0: 2187 | version "1.2.0" 2188 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2189 | 2190 | minipass@^2.2.1, minipass@^2.3.3: 2191 | version "2.3.3" 2192 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.3.tgz#a7dcc8b7b833f5d368759cce544dccb55f50f233" 2193 | dependencies: 2194 | safe-buffer "^5.1.2" 2195 | yallist "^3.0.0" 2196 | 2197 | minizlib@^1.1.0: 2198 | version "1.1.0" 2199 | resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.1.0.tgz#11e13658ce46bc3a70a267aac58359d1e0c29ceb" 2200 | dependencies: 2201 | minipass "^2.2.1" 2202 | 2203 | mixin-deep@^1.2.0: 2204 | version "1.3.1" 2205 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe" 2206 | dependencies: 2207 | for-in "^1.0.2" 2208 | is-extendable "^1.0.1" 2209 | 2210 | mkdirp@^0.5.0, mkdirp@^0.5.1: 2211 | version "0.5.1" 2212 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2213 | dependencies: 2214 | minimist "0.0.8" 2215 | 2216 | module-deps-sortable@4.0.6: 2217 | version "4.0.6" 2218 | resolved "https://registry.yarnpkg.com/module-deps-sortable/-/module-deps-sortable-4.0.6.tgz#1251a4ba2c44a92df6989bd029da121a4f2109b0" 2219 | dependencies: 2220 | JSONStream "^1.0.3" 2221 | browser-resolve "^1.7.0" 2222 | concat-stream "~1.5.0" 2223 | defined "^1.0.0" 2224 | detective "^4.0.0" 2225 | duplexer2 "^0.1.2" 2226 | inherits "^2.0.1" 2227 | parents "^1.0.0" 2228 | readable-stream "^2.0.2" 2229 | resolve "^1.1.3" 2230 | stream-combiner2 "^1.1.1" 2231 | subarg "^1.0.0" 2232 | through2 "^2.0.0" 2233 | xtend "^4.0.0" 2234 | 2235 | mongodb-core@3.1.0: 2236 | version "3.1.0" 2237 | resolved "https://registry.yarnpkg.com/mongodb-core/-/mongodb-core-3.1.0.tgz#af91f36fd560ed785f4e61e694432df4d3698aad" 2238 | dependencies: 2239 | bson "~1.0.4" 2240 | require_optional "^1.0.1" 2241 | optionalDependencies: 2242 | saslprep "^1.0.0" 2243 | 2244 | mongodb@*: 2245 | version "3.1.1" 2246 | resolved "https://registry.yarnpkg.com/mongodb/-/mongodb-3.1.1.tgz#c018c4b277614e8b1e08426d5bcbe1a7e5cdbd74" 2247 | dependencies: 2248 | mongodb-core "3.1.0" 2249 | 2250 | ms@2.0.0: 2251 | version "2.0.0" 2252 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2253 | 2254 | nan@^2.9.2: 2255 | version "2.10.0" 2256 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.10.0.tgz#96d0cd610ebd58d4b4de9cc0c6828cda99c7548f" 2257 | 2258 | nanomatch@^1.2.9: 2259 | version "1.2.13" 2260 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" 2261 | dependencies: 2262 | arr-diff "^4.0.0" 2263 | array-unique "^0.3.2" 2264 | define-property "^2.0.2" 2265 | extend-shallow "^3.0.2" 2266 | fragment-cache "^0.2.1" 2267 | is-windows "^1.0.2" 2268 | kind-of "^6.0.2" 2269 | object.pick "^1.3.0" 2270 | regex-not "^1.0.0" 2271 | snapdragon "^0.8.1" 2272 | to-regex "^3.0.1" 2273 | 2274 | needle@^2.2.1: 2275 | version "2.2.1" 2276 | resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.1.tgz#b5e325bd3aae8c2678902fa296f729455d1d3a7d" 2277 | dependencies: 2278 | debug "^2.1.2" 2279 | iconv-lite "^0.4.4" 2280 | sax "^1.2.4" 2281 | 2282 | node-pre-gyp@^0.10.0: 2283 | version "0.10.3" 2284 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.10.3.tgz#3070040716afdc778747b61b6887bf78880b80fc" 2285 | dependencies: 2286 | detect-libc "^1.0.2" 2287 | mkdirp "^0.5.1" 2288 | needle "^2.2.1" 2289 | nopt "^4.0.1" 2290 | npm-packlist "^1.1.6" 2291 | npmlog "^4.0.2" 2292 | rc "^1.2.7" 2293 | rimraf "^2.6.1" 2294 | semver "^5.3.0" 2295 | tar "^4" 2296 | 2297 | nopt@^4.0.1: 2298 | version "4.0.1" 2299 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2300 | dependencies: 2301 | abbrev "1" 2302 | osenv "^0.1.4" 2303 | 2304 | normalize-package-data@^2.3.2: 2305 | version "2.4.0" 2306 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 2307 | dependencies: 2308 | hosted-git-info "^2.1.4" 2309 | is-builtin-module "^1.0.0" 2310 | semver "2 || 3 || 4 || 5" 2311 | validate-npm-package-license "^3.0.1" 2312 | 2313 | normalize-path@^2.1.1: 2314 | version "2.1.1" 2315 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2316 | dependencies: 2317 | remove-trailing-separator "^1.0.1" 2318 | 2319 | now-and-later@^2.0.0: 2320 | version "2.0.0" 2321 | resolved "https://registry.yarnpkg.com/now-and-later/-/now-and-later-2.0.0.tgz#bc61cbb456d79cb32207ce47ca05136ff2e7d6ee" 2322 | dependencies: 2323 | once "^1.3.2" 2324 | 2325 | npm-bundled@^1.0.1: 2326 | version "1.0.3" 2327 | resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.3.tgz#7e71703d973af3370a9591bafe3a63aca0be2308" 2328 | 2329 | npm-packlist@^1.1.6: 2330 | version "1.1.11" 2331 | resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.1.11.tgz#84e8c683cbe7867d34b1d357d893ce29e28a02de" 2332 | dependencies: 2333 | ignore-walk "^3.0.1" 2334 | npm-bundled "^1.0.1" 2335 | 2336 | npm-run-path@^2.0.0: 2337 | version "2.0.2" 2338 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2339 | dependencies: 2340 | path-key "^2.0.0" 2341 | 2342 | npmlog@^4.0.2: 2343 | version "4.1.2" 2344 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2345 | dependencies: 2346 | are-we-there-yet "~1.1.2" 2347 | console-control-strings "~1.1.0" 2348 | gauge "~2.7.3" 2349 | set-blocking "~2.0.0" 2350 | 2351 | number-is-nan@^1.0.0: 2352 | version "1.0.1" 2353 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2354 | 2355 | object-assign@^4.1.0: 2356 | version "4.1.1" 2357 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2358 | 2359 | object-copy@^0.1.0: 2360 | version "0.1.0" 2361 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 2362 | dependencies: 2363 | copy-descriptor "^0.1.0" 2364 | define-property "^0.2.5" 2365 | kind-of "^3.0.3" 2366 | 2367 | object-keys@^1.0.11, object-keys@^1.0.8: 2368 | version "1.0.12" 2369 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.12.tgz#09c53855377575310cca62f55bb334abff7b3ed2" 2370 | 2371 | object-visit@^1.0.0: 2372 | version "1.0.1" 2373 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 2374 | dependencies: 2375 | isobject "^3.0.0" 2376 | 2377 | object.assign@^4.0.4: 2378 | version "4.1.0" 2379 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" 2380 | dependencies: 2381 | define-properties "^1.1.2" 2382 | function-bind "^1.1.1" 2383 | has-symbols "^1.0.0" 2384 | object-keys "^1.0.11" 2385 | 2386 | object.pick@^1.3.0: 2387 | version "1.3.0" 2388 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 2389 | dependencies: 2390 | isobject "^3.0.1" 2391 | 2392 | once@^1.3.0, once@^1.3.1, once@^1.3.2, once@^1.4.0: 2393 | version "1.4.0" 2394 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2395 | dependencies: 2396 | wrappy "1" 2397 | 2398 | ordered-read-streams@^1.0.0: 2399 | version "1.0.1" 2400 | resolved "https://registry.yarnpkg.com/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz#77c0cb37c41525d64166d990ffad7ec6a0e1363e" 2401 | dependencies: 2402 | readable-stream "^2.0.1" 2403 | 2404 | os-homedir@^1.0.0: 2405 | version "1.0.2" 2406 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2407 | 2408 | os-locale@^2.0.0: 2409 | version "2.1.0" 2410 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 2411 | dependencies: 2412 | execa "^0.7.0" 2413 | lcid "^1.0.0" 2414 | mem "^1.1.0" 2415 | 2416 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 2417 | version "1.0.2" 2418 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2419 | 2420 | osenv@^0.1.4: 2421 | version "0.1.5" 2422 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 2423 | dependencies: 2424 | os-homedir "^1.0.0" 2425 | os-tmpdir "^1.0.0" 2426 | 2427 | p-finally@^1.0.0: 2428 | version "1.0.0" 2429 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2430 | 2431 | p-limit@^1.1.0: 2432 | version "1.3.0" 2433 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" 2434 | dependencies: 2435 | p-try "^1.0.0" 2436 | 2437 | p-limit@^2.0.0: 2438 | version "2.0.0" 2439 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.0.0.tgz#e624ed54ee8c460a778b3c9f3670496ff8a57aec" 2440 | dependencies: 2441 | p-try "^2.0.0" 2442 | 2443 | p-locate@^2.0.0: 2444 | version "2.0.0" 2445 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2446 | dependencies: 2447 | p-limit "^1.1.0" 2448 | 2449 | p-locate@^3.0.0: 2450 | version "3.0.0" 2451 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" 2452 | dependencies: 2453 | p-limit "^2.0.0" 2454 | 2455 | p-try@^1.0.0: 2456 | version "1.0.0" 2457 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 2458 | 2459 | p-try@^2.0.0: 2460 | version "2.0.0" 2461 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.0.0.tgz#85080bb87c64688fa47996fe8f7dfbe8211760b1" 2462 | 2463 | parents@^1.0.0: 2464 | version "1.0.1" 2465 | resolved "https://registry.yarnpkg.com/parents/-/parents-1.0.1.tgz#fedd4d2bf193a77745fe71e371d73c3307d9c751" 2466 | dependencies: 2467 | path-platform "~0.11.15" 2468 | 2469 | parse-entities@^1.0.2, parse-entities@^1.1.0: 2470 | version "1.1.2" 2471 | resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-1.1.2.tgz#9eaf719b29dc3bd62246b4332009072e01527777" 2472 | dependencies: 2473 | character-entities "^1.0.0" 2474 | character-entities-legacy "^1.0.0" 2475 | character-reference-invalid "^1.0.0" 2476 | is-alphanumerical "^1.0.0" 2477 | is-decimal "^1.0.0" 2478 | is-hexadecimal "^1.0.0" 2479 | 2480 | parse-filepath@^1.0.2: 2481 | version "1.0.2" 2482 | resolved "https://registry.yarnpkg.com/parse-filepath/-/parse-filepath-1.0.2.tgz#a632127f53aaf3d15876f5872f3ffac763d6c891" 2483 | dependencies: 2484 | is-absolute "^1.0.0" 2485 | map-cache "^0.2.0" 2486 | path-root "^0.1.1" 2487 | 2488 | parse-git-config@^0.2.0: 2489 | version "0.2.0" 2490 | resolved "https://registry.yarnpkg.com/parse-git-config/-/parse-git-config-0.2.0.tgz#272833fdd15fea146fb75d336d236b963b6ff706" 2491 | dependencies: 2492 | ini "^1.3.3" 2493 | 2494 | parse-json@^2.2.0: 2495 | version "2.2.0" 2496 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2497 | dependencies: 2498 | error-ex "^1.2.0" 2499 | 2500 | parse-json@^4.0.0: 2501 | version "4.0.0" 2502 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" 2503 | dependencies: 2504 | error-ex "^1.3.1" 2505 | json-parse-better-errors "^1.0.1" 2506 | 2507 | parse-url@^1.3.0: 2508 | version "1.3.11" 2509 | resolved "https://registry.yarnpkg.com/parse-url/-/parse-url-1.3.11.tgz#57c15428ab8a892b1f43869645c711d0e144b554" 2510 | dependencies: 2511 | is-ssh "^1.3.0" 2512 | protocols "^1.4.0" 2513 | 2514 | pascalcase@^0.1.1: 2515 | version "0.1.1" 2516 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 2517 | 2518 | path-dirname@^1.0.0: 2519 | version "1.0.2" 2520 | resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" 2521 | 2522 | path-exists@^3.0.0: 2523 | version "3.0.0" 2524 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2525 | 2526 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 2527 | version "1.0.1" 2528 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2529 | 2530 | path-key@^2.0.0: 2531 | version "2.0.1" 2532 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2533 | 2534 | path-parse@^1.0.5: 2535 | version "1.0.5" 2536 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2537 | 2538 | path-platform@~0.11.15: 2539 | version "0.11.15" 2540 | resolved "https://registry.yarnpkg.com/path-platform/-/path-platform-0.11.15.tgz#e864217f74c36850f0852b78dc7bf7d4a5721bf2" 2541 | 2542 | path-root-regex@^0.1.0: 2543 | version "0.1.2" 2544 | resolved "https://registry.yarnpkg.com/path-root-regex/-/path-root-regex-0.1.2.tgz#bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d" 2545 | 2546 | path-root@^0.1.1: 2547 | version "0.1.1" 2548 | resolved "https://registry.yarnpkg.com/path-root/-/path-root-0.1.1.tgz#9a4a6814cac1c0cd73360a95f32083c8ea4745b7" 2549 | dependencies: 2550 | path-root-regex "^0.1.0" 2551 | 2552 | path-type@^2.0.0: 2553 | version "2.0.0" 2554 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 2555 | dependencies: 2556 | pify "^2.0.0" 2557 | 2558 | path-type@^3.0.0: 2559 | version "3.0.0" 2560 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" 2561 | dependencies: 2562 | pify "^3.0.0" 2563 | 2564 | pify@^2.0.0: 2565 | version "2.3.0" 2566 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2567 | 2568 | pify@^3.0.0: 2569 | version "3.0.0" 2570 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 2571 | 2572 | posix-character-classes@^0.1.0: 2573 | version "0.1.1" 2574 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 2575 | 2576 | private@^0.1.6, private@^0.1.8: 2577 | version "0.1.8" 2578 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 2579 | 2580 | process-nextick-args@^2.0.0, process-nextick-args@~2.0.0: 2581 | version "2.0.0" 2582 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 2583 | 2584 | process-nextick-args@~1.0.6: 2585 | version "1.0.7" 2586 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2587 | 2588 | property-information@^3.1.0: 2589 | version "3.2.0" 2590 | resolved "https://registry.yarnpkg.com/property-information/-/property-information-3.2.0.tgz#fd1483c8fbac61808f5fe359e7693a1f48a58331" 2591 | 2592 | protocols@^1.1.0, protocols@^1.4.0: 2593 | version "1.4.6" 2594 | resolved "https://registry.yarnpkg.com/protocols/-/protocols-1.4.6.tgz#f8bb263ea1b5fd7a7604d26b8be39bd77678bf8a" 2595 | 2596 | pseudomap@^1.0.2: 2597 | version "1.0.2" 2598 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2599 | 2600 | pump@^2.0.0: 2601 | version "2.0.1" 2602 | resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909" 2603 | dependencies: 2604 | end-of-stream "^1.1.0" 2605 | once "^1.3.1" 2606 | 2607 | pumpify@^1.3.5: 2608 | version "1.5.1" 2609 | resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce" 2610 | dependencies: 2611 | duplexify "^3.6.0" 2612 | inherits "^2.0.3" 2613 | pump "^2.0.0" 2614 | 2615 | qs@^6.4.0: 2616 | version "6.5.2" 2617 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" 2618 | 2619 | raw-body@~1.1.0: 2620 | version "1.1.7" 2621 | resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-1.1.7.tgz#1d027c2bfa116acc6623bca8f00016572a87d425" 2622 | dependencies: 2623 | bytes "1" 2624 | string_decoder "0.10" 2625 | 2626 | rc@^1.2.7: 2627 | version "1.2.8" 2628 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 2629 | dependencies: 2630 | deep-extend "^0.6.0" 2631 | ini "~1.3.0" 2632 | minimist "^1.2.0" 2633 | strip-json-comments "~2.0.1" 2634 | 2635 | read-pkg-up@^2.0.0: 2636 | version "2.0.0" 2637 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 2638 | dependencies: 2639 | find-up "^2.0.0" 2640 | read-pkg "^2.0.0" 2641 | 2642 | read-pkg-up@^4.0.0: 2643 | version "4.0.0" 2644 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-4.0.0.tgz#1b221c6088ba7799601c808f91161c66e58f8978" 2645 | dependencies: 2646 | find-up "^3.0.0" 2647 | read-pkg "^3.0.0" 2648 | 2649 | read-pkg@^2.0.0: 2650 | version "2.0.0" 2651 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 2652 | dependencies: 2653 | load-json-file "^2.0.0" 2654 | normalize-package-data "^2.3.2" 2655 | path-type "^2.0.0" 2656 | 2657 | read-pkg@^3.0.0: 2658 | version "3.0.0" 2659 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" 2660 | dependencies: 2661 | load-json-file "^4.0.0" 2662 | normalize-package-data "^2.3.2" 2663 | path-type "^3.0.0" 2664 | 2665 | readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.4, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.5: 2666 | version "2.3.6" 2667 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 2668 | dependencies: 2669 | core-util-is "~1.0.0" 2670 | inherits "~2.0.3" 2671 | isarray "~1.0.0" 2672 | process-nextick-args "~2.0.0" 2673 | safe-buffer "~5.1.1" 2674 | string_decoder "~1.1.1" 2675 | util-deprecate "~1.0.1" 2676 | 2677 | readable-stream@~2.0.0: 2678 | version "2.0.6" 2679 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" 2680 | dependencies: 2681 | core-util-is "~1.0.0" 2682 | inherits "~2.0.1" 2683 | isarray "~1.0.0" 2684 | process-nextick-args "~1.0.6" 2685 | string_decoder "~0.10.x" 2686 | util-deprecate "~1.0.1" 2687 | 2688 | readable-stream@~2.1.0: 2689 | version "2.1.5" 2690 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0" 2691 | dependencies: 2692 | buffer-shims "^1.0.0" 2693 | core-util-is "~1.0.0" 2694 | inherits "~2.0.1" 2695 | isarray "~1.0.0" 2696 | process-nextick-args "~1.0.6" 2697 | string_decoder "~0.10.x" 2698 | util-deprecate "~1.0.1" 2699 | 2700 | readdirp@^2.0.0: 2701 | version "2.1.0" 2702 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2703 | dependencies: 2704 | graceful-fs "^4.1.2" 2705 | minimatch "^3.0.2" 2706 | readable-stream "^2.0.2" 2707 | set-immediate-shim "^1.0.1" 2708 | 2709 | regenerate@^1.2.1: 2710 | version "1.4.0" 2711 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" 2712 | 2713 | regenerator-runtime@^0.11.0: 2714 | version "0.11.1" 2715 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 2716 | 2717 | regenerator-transform@^0.10.0: 2718 | version "0.10.1" 2719 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 2720 | dependencies: 2721 | babel-runtime "^6.18.0" 2722 | babel-types "^6.19.0" 2723 | private "^0.1.6" 2724 | 2725 | regex-not@^1.0.0, regex-not@^1.0.2: 2726 | version "1.0.2" 2727 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 2728 | dependencies: 2729 | extend-shallow "^3.0.2" 2730 | safe-regex "^1.1.0" 2731 | 2732 | regexpu-core@^2.0.0: 2733 | version "2.0.0" 2734 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2735 | dependencies: 2736 | regenerate "^1.2.1" 2737 | regjsgen "^0.2.0" 2738 | regjsparser "^0.1.4" 2739 | 2740 | regjsgen@^0.2.0: 2741 | version "0.2.0" 2742 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2743 | 2744 | regjsparser@^0.1.4: 2745 | version "0.1.5" 2746 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2747 | dependencies: 2748 | jsesc "~0.5.0" 2749 | 2750 | remark-html@7.0.0: 2751 | version "7.0.0" 2752 | resolved "https://registry.yarnpkg.com/remark-html/-/remark-html-7.0.0.tgz#d13dc1ba9352e257fce8800c42c7690d9e3690c8" 2753 | dependencies: 2754 | hast-util-sanitize "^1.0.0" 2755 | hast-util-to-html "^3.0.0" 2756 | mdast-util-to-hast "^3.0.0" 2757 | xtend "^4.0.1" 2758 | 2759 | remark-parse@^5.0.0: 2760 | version "5.0.0" 2761 | resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-5.0.0.tgz#4c077f9e499044d1d5c13f80d7a98cf7b9285d95" 2762 | dependencies: 2763 | collapse-white-space "^1.0.2" 2764 | is-alphabetical "^1.0.0" 2765 | is-decimal "^1.0.0" 2766 | is-whitespace-character "^1.0.0" 2767 | is-word-character "^1.0.0" 2768 | markdown-escapes "^1.0.0" 2769 | parse-entities "^1.1.0" 2770 | repeat-string "^1.5.4" 2771 | state-toggle "^1.0.0" 2772 | trim "0.0.1" 2773 | trim-trailing-lines "^1.0.0" 2774 | unherit "^1.0.4" 2775 | unist-util-remove-position "^1.0.0" 2776 | vfile-location "^2.0.0" 2777 | xtend "^4.0.1" 2778 | 2779 | remark-reference-links@^4.0.1: 2780 | version "4.0.1" 2781 | resolved "https://registry.yarnpkg.com/remark-reference-links/-/remark-reference-links-4.0.1.tgz#021aed1c55c187d712b3c76d0057bf510d300ba7" 2782 | dependencies: 2783 | unist-util-visit "^1.0.0" 2784 | 2785 | remark-slug@^5.0.0: 2786 | version "5.0.0" 2787 | resolved "https://registry.yarnpkg.com/remark-slug/-/remark-slug-5.0.0.tgz#9de71fcdc2bfae33ebb4a41eb83035288a829980" 2788 | dependencies: 2789 | github-slugger "^1.0.0" 2790 | mdast-util-to-string "^1.0.0" 2791 | unist-util-visit "^1.0.0" 2792 | 2793 | remark-stringify@^5.0.0: 2794 | version "5.0.0" 2795 | resolved "https://registry.yarnpkg.com/remark-stringify/-/remark-stringify-5.0.0.tgz#336d3a4d4a6a3390d933eeba62e8de4bd280afba" 2796 | dependencies: 2797 | ccount "^1.0.0" 2798 | is-alphanumeric "^1.0.0" 2799 | is-decimal "^1.0.0" 2800 | is-whitespace-character "^1.0.0" 2801 | longest-streak "^2.0.1" 2802 | markdown-escapes "^1.0.0" 2803 | markdown-table "^1.1.0" 2804 | mdast-util-compact "^1.0.0" 2805 | parse-entities "^1.0.2" 2806 | repeat-string "^1.5.4" 2807 | state-toggle "^1.0.0" 2808 | stringify-entities "^1.0.1" 2809 | unherit "^1.0.4" 2810 | xtend "^4.0.1" 2811 | 2812 | remark-toc@^5.0.0: 2813 | version "5.0.0" 2814 | resolved "https://registry.yarnpkg.com/remark-toc/-/remark-toc-5.0.0.tgz#f1e13ed11062ad4d102b02e70168bd85015bf129" 2815 | dependencies: 2816 | mdast-util-toc "^2.0.0" 2817 | remark-slug "^5.0.0" 2818 | 2819 | remark@^9.0.0: 2820 | version "9.0.0" 2821 | resolved "https://registry.yarnpkg.com/remark/-/remark-9.0.0.tgz#c5cfa8ec535c73a67c4b0f12bfdbd3a67d8b2f60" 2822 | dependencies: 2823 | remark-parse "^5.0.0" 2824 | remark-stringify "^5.0.0" 2825 | unified "^6.0.0" 2826 | 2827 | remote-origin-url@0.4.0: 2828 | version "0.4.0" 2829 | resolved "https://registry.yarnpkg.com/remote-origin-url/-/remote-origin-url-0.4.0.tgz#4d3e2902f34e2d37d1c263d87710b77eb4086a30" 2830 | dependencies: 2831 | parse-git-config "^0.2.0" 2832 | 2833 | remove-bom-buffer@^3.0.0: 2834 | version "3.0.0" 2835 | resolved "https://registry.yarnpkg.com/remove-bom-buffer/-/remove-bom-buffer-3.0.0.tgz#c2bf1e377520d324f623892e33c10cac2c252b53" 2836 | dependencies: 2837 | is-buffer "^1.1.5" 2838 | is-utf8 "^0.2.1" 2839 | 2840 | remove-bom-stream@^1.2.0: 2841 | version "1.2.0" 2842 | resolved "https://registry.yarnpkg.com/remove-bom-stream/-/remove-bom-stream-1.2.0.tgz#05f1a593f16e42e1fb90ebf59de8e569525f9523" 2843 | dependencies: 2844 | remove-bom-buffer "^3.0.0" 2845 | safe-buffer "^5.1.0" 2846 | through2 "^2.0.3" 2847 | 2848 | remove-trailing-separator@^1.0.1: 2849 | version "1.1.0" 2850 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2851 | 2852 | repeat-element@^1.1.2: 2853 | version "1.1.2" 2854 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2855 | 2856 | repeat-string@^1.5.0, repeat-string@^1.5.4, repeat-string@^1.6.1: 2857 | version "1.6.1" 2858 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2859 | 2860 | repeating@^2.0.0: 2861 | version "2.0.1" 2862 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2863 | dependencies: 2864 | is-finite "^1.0.0" 2865 | 2866 | replace-ext@1.0.0, replace-ext@^1.0.0: 2867 | version "1.0.0" 2868 | resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-1.0.0.tgz#de63128373fcbf7c3ccfa4de5a480c45a67958eb" 2869 | 2870 | require-directory@^2.1.1: 2871 | version "2.1.1" 2872 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2873 | 2874 | require-main-filename@^1.0.1: 2875 | version "1.0.1" 2876 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2877 | 2878 | require_optional@^1.0.1: 2879 | version "1.0.1" 2880 | resolved "https://registry.yarnpkg.com/require_optional/-/require_optional-1.0.1.tgz#4cf35a4247f64ca3df8c2ef208cc494b1ca8fc2e" 2881 | dependencies: 2882 | resolve-from "^2.0.0" 2883 | semver "^5.1.0" 2884 | 2885 | resolve-from@^2.0.0: 2886 | version "2.0.0" 2887 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57" 2888 | 2889 | resolve-options@^1.1.0: 2890 | version "1.1.0" 2891 | resolved "https://registry.yarnpkg.com/resolve-options/-/resolve-options-1.1.0.tgz#32bb9e39c06d67338dc9378c0d6d6074566ad131" 2892 | dependencies: 2893 | value-or-function "^3.0.0" 2894 | 2895 | resolve-url@^0.2.1: 2896 | version "0.2.1" 2897 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 2898 | 2899 | resolve@1.1.7: 2900 | version "1.1.7" 2901 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2902 | 2903 | resolve@^1.1.3, resolve@^1.3.2: 2904 | version "1.8.1" 2905 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.8.1.tgz#82f1ec19a423ac1fbd080b0bab06ba36e84a7a26" 2906 | dependencies: 2907 | path-parse "^1.0.5" 2908 | 2909 | ret@~0.1.10: 2910 | version "0.1.15" 2911 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 2912 | 2913 | rimraf@^2.6.1: 2914 | version "2.6.2" 2915 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2916 | dependencies: 2917 | glob "^7.0.5" 2918 | 2919 | safe-buffer@^5.1.0, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2920 | version "5.1.2" 2921 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 2922 | 2923 | safe-json-parse@~1.0.1: 2924 | version "1.0.1" 2925 | resolved "https://registry.yarnpkg.com/safe-json-parse/-/safe-json-parse-1.0.1.tgz#3e76723e38dfdda13c9b1d29a1e07ffee4b30b57" 2926 | 2927 | safe-regex@^1.1.0: 2928 | version "1.1.0" 2929 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 2930 | dependencies: 2931 | ret "~0.1.10" 2932 | 2933 | "safer-buffer@>= 2.1.2 < 3": 2934 | version "2.1.2" 2935 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 2936 | 2937 | saslprep@^1.0.0: 2938 | version "1.0.1" 2939 | resolved "https://registry.yarnpkg.com/saslprep/-/saslprep-1.0.1.tgz#b644e0ba25b156b652f3cb90df7542f896049ba6" 2940 | 2941 | sax@^1.2.4: 2942 | version "1.2.4" 2943 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 2944 | 2945 | "semver@2 || 3 || 4 || 5", semver@^5.1.0, semver@^5.3.0: 2946 | version "5.5.0" 2947 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 2948 | 2949 | set-blocking@^2.0.0, set-blocking@~2.0.0: 2950 | version "2.0.0" 2951 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2952 | 2953 | set-immediate-shim@^1.0.1: 2954 | version "1.0.1" 2955 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2956 | 2957 | set-value@^0.4.3: 2958 | version "0.4.3" 2959 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" 2960 | dependencies: 2961 | extend-shallow "^2.0.1" 2962 | is-extendable "^0.1.1" 2963 | is-plain-object "^2.0.1" 2964 | to-object-path "^0.3.0" 2965 | 2966 | set-value@^2.0.0: 2967 | version "2.0.0" 2968 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" 2969 | dependencies: 2970 | extend-shallow "^2.0.1" 2971 | is-extendable "^0.1.1" 2972 | is-plain-object "^2.0.3" 2973 | split-string "^3.0.1" 2974 | 2975 | shebang-command@^1.2.0: 2976 | version "1.2.0" 2977 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2978 | dependencies: 2979 | shebang-regex "^1.0.0" 2980 | 2981 | shebang-regex@^1.0.0: 2982 | version "1.0.0" 2983 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2984 | 2985 | signal-exit@^3.0.0: 2986 | version "3.0.2" 2987 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2988 | 2989 | slash@^1.0.0: 2990 | version "1.0.0" 2991 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2992 | 2993 | snapdragon-node@^2.0.1: 2994 | version "2.1.1" 2995 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 2996 | dependencies: 2997 | define-property "^1.0.0" 2998 | isobject "^3.0.0" 2999 | snapdragon-util "^3.0.1" 3000 | 3001 | snapdragon-util@^3.0.1: 3002 | version "3.0.1" 3003 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 3004 | dependencies: 3005 | kind-of "^3.2.0" 3006 | 3007 | snapdragon@^0.8.1: 3008 | version "0.8.2" 3009 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" 3010 | dependencies: 3011 | base "^0.11.1" 3012 | debug "^2.2.0" 3013 | define-property "^0.2.5" 3014 | extend-shallow "^2.0.1" 3015 | map-cache "^0.2.2" 3016 | source-map "^0.5.6" 3017 | source-map-resolve "^0.5.0" 3018 | use "^3.1.0" 3019 | 3020 | source-map-resolve@^0.5.0: 3021 | version "0.5.2" 3022 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" 3023 | dependencies: 3024 | atob "^2.1.1" 3025 | decode-uri-component "^0.2.0" 3026 | resolve-url "^0.2.1" 3027 | source-map-url "^0.4.0" 3028 | urix "^0.1.0" 3029 | 3030 | source-map-support@^0.4.15: 3031 | version "0.4.18" 3032 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 3033 | dependencies: 3034 | source-map "^0.5.6" 3035 | 3036 | source-map-url@^0.4.0: 3037 | version "0.4.0" 3038 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 3039 | 3040 | source-map@^0.5.6, source-map@^0.5.7: 3041 | version "0.5.7" 3042 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 3043 | 3044 | space-separated-tokens@^1.0.0: 3045 | version "1.1.2" 3046 | resolved "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-1.1.2.tgz#e95ab9d19ae841e200808cd96bc7bd0adbbb3412" 3047 | dependencies: 3048 | trim "0.0.1" 3049 | 3050 | spdx-correct@^3.0.0: 3051 | version "3.0.0" 3052 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.0.0.tgz#05a5b4d7153a195bc92c3c425b69f3b2a9524c82" 3053 | dependencies: 3054 | spdx-expression-parse "^3.0.0" 3055 | spdx-license-ids "^3.0.0" 3056 | 3057 | spdx-exceptions@^2.1.0: 3058 | version "2.1.0" 3059 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.1.0.tgz#2c7ae61056c714a5b9b9b2b2af7d311ef5c78fe9" 3060 | 3061 | spdx-expression-parse@^3.0.0: 3062 | version "3.0.0" 3063 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" 3064 | dependencies: 3065 | spdx-exceptions "^2.1.0" 3066 | spdx-license-ids "^3.0.0" 3067 | 3068 | spdx-license-ids@^3.0.0: 3069 | version "3.0.0" 3070 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.0.tgz#7a7cd28470cc6d3a1cfe6d66886f6bc430d3ac87" 3071 | 3072 | split-string@^3.0.1, split-string@^3.0.2: 3073 | version "3.1.0" 3074 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 3075 | dependencies: 3076 | extend-shallow "^3.0.0" 3077 | 3078 | sprintf-js@~1.0.2: 3079 | version "1.0.3" 3080 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3081 | 3082 | state-toggle@^1.0.0: 3083 | version "1.0.1" 3084 | resolved "https://registry.yarnpkg.com/state-toggle/-/state-toggle-1.0.1.tgz#c3cb0974f40a6a0f8e905b96789eb41afa1cde3a" 3085 | 3086 | static-extend@^0.1.1: 3087 | version "0.1.2" 3088 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 3089 | dependencies: 3090 | define-property "^0.2.5" 3091 | object-copy "^0.1.0" 3092 | 3093 | stream-array@^1.1.2: 3094 | version "1.1.2" 3095 | resolved "https://registry.yarnpkg.com/stream-array/-/stream-array-1.1.2.tgz#9e5f7345f2137c30ee3b498b9114e80b52bb7eb5" 3096 | dependencies: 3097 | readable-stream "~2.1.0" 3098 | 3099 | stream-combiner2@^1.1.1: 3100 | version "1.1.1" 3101 | resolved "https://registry.yarnpkg.com/stream-combiner2/-/stream-combiner2-1.1.1.tgz#fb4d8a1420ea362764e21ad4780397bebcb41cbe" 3102 | dependencies: 3103 | duplexer2 "~0.1.0" 3104 | readable-stream "^2.0.2" 3105 | 3106 | stream-shift@^1.0.0: 3107 | version "1.0.0" 3108 | resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952" 3109 | 3110 | string-template@~0.2.1: 3111 | version "0.2.1" 3112 | resolved "https://registry.yarnpkg.com/string-template/-/string-template-0.2.1.tgz#42932e598a352d01fc22ec3367d9d84eec6c9add" 3113 | 3114 | string-width@^1.0.0, string-width@^1.0.1: 3115 | version "1.0.2" 3116 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3117 | dependencies: 3118 | code-point-at "^1.0.0" 3119 | is-fullwidth-code-point "^1.0.0" 3120 | strip-ansi "^3.0.0" 3121 | 3122 | "string-width@^1.0.2 || 2", string-width@^2.0.0: 3123 | version "2.1.1" 3124 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3125 | dependencies: 3126 | is-fullwidth-code-point "^2.0.0" 3127 | strip-ansi "^4.0.0" 3128 | 3129 | string_decoder@0.10, string_decoder@~0.10.x: 3130 | version "0.10.31" 3131 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 3132 | 3133 | string_decoder@~1.1.1: 3134 | version "1.1.1" 3135 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 3136 | dependencies: 3137 | safe-buffer "~5.1.0" 3138 | 3139 | stringify-entities@^1.0.1: 3140 | version "1.3.2" 3141 | resolved "https://registry.yarnpkg.com/stringify-entities/-/stringify-entities-1.3.2.tgz#a98417e5471fd227b3e45d3db1861c11caf668f7" 3142 | dependencies: 3143 | character-entities-html4 "^1.0.0" 3144 | character-entities-legacy "^1.0.0" 3145 | is-alphanumerical "^1.0.0" 3146 | is-hexadecimal "^1.0.0" 3147 | 3148 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3149 | version "3.0.1" 3150 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3151 | dependencies: 3152 | ansi-regex "^2.0.0" 3153 | 3154 | strip-ansi@^4.0.0: 3155 | version "4.0.0" 3156 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3157 | dependencies: 3158 | ansi-regex "^3.0.0" 3159 | 3160 | strip-bom@^3.0.0: 3161 | version "3.0.0" 3162 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3163 | 3164 | strip-eof@^1.0.0: 3165 | version "1.0.0" 3166 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3167 | 3168 | strip-json-comments@^2.0.1, strip-json-comments@~2.0.1: 3169 | version "2.0.1" 3170 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3171 | 3172 | subarg@^1.0.0: 3173 | version "1.0.0" 3174 | resolved "https://registry.yarnpkg.com/subarg/-/subarg-1.0.0.tgz#f62cf17581e996b48fc965699f54c06ae268b8d2" 3175 | dependencies: 3176 | minimist "^1.1.0" 3177 | 3178 | supports-color@^2.0.0: 3179 | version "2.0.0" 3180 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3181 | 3182 | supports-color@^4.1.0: 3183 | version "4.5.0" 3184 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" 3185 | dependencies: 3186 | has-flag "^2.0.0" 3187 | 3188 | supports-color@^5.3.0: 3189 | version "5.4.0" 3190 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.4.0.tgz#1c6b337402c2137605efe19f10fec390f6faab54" 3191 | dependencies: 3192 | has-flag "^3.0.0" 3193 | 3194 | tar@^4: 3195 | version "4.4.4" 3196 | resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.4.tgz#ec8409fae9f665a4355cc3b4087d0820232bb8cd" 3197 | dependencies: 3198 | chownr "^1.0.1" 3199 | fs-minipass "^1.2.5" 3200 | minipass "^2.3.3" 3201 | minizlib "^1.1.0" 3202 | mkdirp "^0.5.0" 3203 | safe-buffer "^5.1.2" 3204 | yallist "^3.0.2" 3205 | 3206 | through2-filter@^2.0.0: 3207 | version "2.0.0" 3208 | resolved "https://registry.yarnpkg.com/through2-filter/-/through2-filter-2.0.0.tgz#60bc55a0dacb76085db1f9dae99ab43f83d622ec" 3209 | dependencies: 3210 | through2 "~2.0.0" 3211 | xtend "~4.0.0" 3212 | 3213 | through2@^2.0.0, through2@^2.0.3, through2@~2.0.0: 3214 | version "2.0.3" 3215 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 3216 | dependencies: 3217 | readable-stream "^2.1.5" 3218 | xtend "~4.0.1" 3219 | 3220 | "through@>=2.2.7 <3": 3221 | version "2.3.8" 3222 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3223 | 3224 | tiny-lr@^1.1.0: 3225 | version "1.1.1" 3226 | resolved "https://registry.yarnpkg.com/tiny-lr/-/tiny-lr-1.1.1.tgz#9fa547412f238fedb068ee295af8b682c98b2aab" 3227 | dependencies: 3228 | body "^5.1.0" 3229 | debug "^3.1.0" 3230 | faye-websocket "~0.10.0" 3231 | livereload-js "^2.3.0" 3232 | object-assign "^4.1.0" 3233 | qs "^6.4.0" 3234 | 3235 | to-absolute-glob@^2.0.0: 3236 | version "2.0.2" 3237 | resolved "https://registry.yarnpkg.com/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz#1865f43d9e74b0822db9f145b78cff7d0f7c849b" 3238 | dependencies: 3239 | is-absolute "^1.0.0" 3240 | is-negated-glob "^1.0.0" 3241 | 3242 | to-fast-properties@^1.0.3: 3243 | version "1.0.3" 3244 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3245 | 3246 | to-object-path@^0.3.0: 3247 | version "0.3.0" 3248 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 3249 | dependencies: 3250 | kind-of "^3.0.2" 3251 | 3252 | to-regex-range@^2.1.0: 3253 | version "2.1.1" 3254 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 3255 | dependencies: 3256 | is-number "^3.0.0" 3257 | repeat-string "^1.6.1" 3258 | 3259 | to-regex@^3.0.1, to-regex@^3.0.2: 3260 | version "3.0.2" 3261 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 3262 | dependencies: 3263 | define-property "^2.0.2" 3264 | extend-shallow "^3.0.2" 3265 | regex-not "^1.0.2" 3266 | safe-regex "^1.1.0" 3267 | 3268 | to-through@^2.0.0: 3269 | version "2.0.0" 3270 | resolved "https://registry.yarnpkg.com/to-through/-/to-through-2.0.0.tgz#fc92adaba072647bc0b67d6b03664aa195093af6" 3271 | dependencies: 3272 | through2 "^2.0.3" 3273 | 3274 | trim-lines@^1.0.0: 3275 | version "1.1.1" 3276 | resolved "https://registry.yarnpkg.com/trim-lines/-/trim-lines-1.1.1.tgz#da738ff58fa74817588455e30b11b85289f2a396" 3277 | 3278 | trim-right@^1.0.1: 3279 | version "1.0.1" 3280 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3281 | 3282 | trim-trailing-lines@^1.0.0: 3283 | version "1.1.1" 3284 | resolved "https://registry.yarnpkg.com/trim-trailing-lines/-/trim-trailing-lines-1.1.1.tgz#e0ec0810fd3c3f1730516b45f49083caaf2774d9" 3285 | 3286 | trim@0.0.1: 3287 | version "0.0.1" 3288 | resolved "https://registry.yarnpkg.com/trim/-/trim-0.0.1.tgz#5858547f6b290757ee95cccc666fb50084c460dd" 3289 | 3290 | trough@^1.0.0: 3291 | version "1.0.2" 3292 | resolved "https://registry.yarnpkg.com/trough/-/trough-1.0.2.tgz#7f1663ec55c480139e2de5e486c6aef6cc24a535" 3293 | 3294 | tslib@^1.8.0, tslib@^1.8.1: 3295 | version "1.9.3" 3296 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.3.tgz#d7e4dd79245d85428c4d7e4822a79917954ca286" 3297 | 3298 | tslint@*: 3299 | version "5.11.0" 3300 | resolved "https://registry.yarnpkg.com/tslint/-/tslint-5.11.0.tgz#98f30c02eae3cde7006201e4c33cb08b48581eed" 3301 | dependencies: 3302 | babel-code-frame "^6.22.0" 3303 | builtin-modules "^1.1.1" 3304 | chalk "^2.3.0" 3305 | commander "^2.12.1" 3306 | diff "^3.2.0" 3307 | glob "^7.1.1" 3308 | js-yaml "^3.7.0" 3309 | minimatch "^3.0.4" 3310 | resolve "^1.3.2" 3311 | semver "^5.3.0" 3312 | tslib "^1.8.0" 3313 | tsutils "^2.27.2" 3314 | 3315 | tsutils@^2.27.2: 3316 | version "2.29.0" 3317 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-2.29.0.tgz#32b488501467acbedd4b85498673a0812aca0b99" 3318 | dependencies: 3319 | tslib "^1.8.1" 3320 | 3321 | typedarray@^0.0.6, typedarray@~0.0.5: 3322 | version "0.0.6" 3323 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3324 | 3325 | typescript@*: 3326 | version "3.0.1" 3327 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.0.1.tgz#43738f29585d3a87575520a4b93ab6026ef11fdb" 3328 | 3329 | unc-path-regex@^0.1.2: 3330 | version "0.1.2" 3331 | resolved "https://registry.yarnpkg.com/unc-path-regex/-/unc-path-regex-0.1.2.tgz#e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa" 3332 | 3333 | unherit@^1.0.4: 3334 | version "1.1.1" 3335 | resolved "https://registry.yarnpkg.com/unherit/-/unherit-1.1.1.tgz#132748da3e88eab767e08fabfbb89c5e9d28628c" 3336 | dependencies: 3337 | inherits "^2.0.1" 3338 | xtend "^4.0.1" 3339 | 3340 | unified@^6.0.0: 3341 | version "6.2.0" 3342 | resolved "https://registry.yarnpkg.com/unified/-/unified-6.2.0.tgz#7fbd630f719126d67d40c644b7e3f617035f6dba" 3343 | dependencies: 3344 | bail "^1.0.0" 3345 | extend "^3.0.0" 3346 | is-plain-obj "^1.1.0" 3347 | trough "^1.0.0" 3348 | vfile "^2.0.0" 3349 | x-is-string "^0.1.0" 3350 | 3351 | union-value@^1.0.0: 3352 | version "1.0.0" 3353 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" 3354 | dependencies: 3355 | arr-union "^3.1.0" 3356 | get-value "^2.0.6" 3357 | is-extendable "^0.1.1" 3358 | set-value "^0.4.3" 3359 | 3360 | unique-stream@^2.0.2: 3361 | version "2.2.1" 3362 | resolved "https://registry.yarnpkg.com/unique-stream/-/unique-stream-2.2.1.tgz#5aa003cfbe94c5ff866c4e7d668bb1c4dbadb369" 3363 | dependencies: 3364 | json-stable-stringify "^1.0.0" 3365 | through2-filter "^2.0.0" 3366 | 3367 | unist-builder@^1.0.1, unist-builder@^1.0.2: 3368 | version "1.0.2" 3369 | resolved "https://registry.yarnpkg.com/unist-builder/-/unist-builder-1.0.2.tgz#8c3b9903ef64bcfb117dd7cf6a5d98fc1b3b27b6" 3370 | dependencies: 3371 | object-assign "^4.1.0" 3372 | 3373 | unist-util-generated@^1.1.0: 3374 | version "1.1.2" 3375 | resolved "https://registry.yarnpkg.com/unist-util-generated/-/unist-util-generated-1.1.2.tgz#8b993f9239d8e560be6ee6e91c3f7b7208e5ce25" 3376 | 3377 | unist-util-is@^2.0.0, unist-util-is@^2.1.2: 3378 | version "2.1.2" 3379 | resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-2.1.2.tgz#1193fa8f2bfbbb82150633f3a8d2eb9a1c1d55db" 3380 | 3381 | unist-util-modify-children@^1.0.0: 3382 | version "1.1.2" 3383 | resolved "https://registry.yarnpkg.com/unist-util-modify-children/-/unist-util-modify-children-1.1.2.tgz#c7f1b91712554ee59c47a05b551ed3e052a4e2d1" 3384 | dependencies: 3385 | array-iterate "^1.0.0" 3386 | 3387 | unist-util-position@^3.0.0: 3388 | version "3.0.1" 3389 | resolved "https://registry.yarnpkg.com/unist-util-position/-/unist-util-position-3.0.1.tgz#8e220c24658239bf7ddafada5725ed0ea1ebbc26" 3390 | 3391 | unist-util-remove-position@^1.0.0: 3392 | version "1.1.2" 3393 | resolved "https://registry.yarnpkg.com/unist-util-remove-position/-/unist-util-remove-position-1.1.2.tgz#86b5dad104d0bbfbeb1db5f5c92f3570575c12cb" 3394 | dependencies: 3395 | unist-util-visit "^1.1.0" 3396 | 3397 | unist-util-stringify-position@^1.0.0, unist-util-stringify-position@^1.1.1: 3398 | version "1.1.2" 3399 | resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-1.1.2.tgz#3f37fcf351279dcbca7480ab5889bb8a832ee1c6" 3400 | 3401 | unist-util-visit-parents@^2.0.0: 3402 | version "2.0.1" 3403 | resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-2.0.1.tgz#63fffc8929027bee04bfef7d2cce474f71cb6217" 3404 | dependencies: 3405 | unist-util-is "^2.1.2" 3406 | 3407 | unist-util-visit@^1.0.0, unist-util-visit@^1.1.0, unist-util-visit@^1.3.0: 3408 | version "1.4.0" 3409 | resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-1.4.0.tgz#1cb763647186dc26f5e1df5db6bd1e48b3cc2fb1" 3410 | dependencies: 3411 | unist-util-visit-parents "^2.0.0" 3412 | 3413 | unset-value@^1.0.0: 3414 | version "1.0.0" 3415 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 3416 | dependencies: 3417 | has-value "^0.3.1" 3418 | isobject "^3.0.0" 3419 | 3420 | upath@^1.0.5: 3421 | version "1.1.0" 3422 | resolved "https://registry.yarnpkg.com/upath/-/upath-1.1.0.tgz#35256597e46a581db4793d0ce47fa9aebfc9fabd" 3423 | 3424 | urix@^0.1.0: 3425 | version "0.1.0" 3426 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 3427 | 3428 | use@^3.1.0: 3429 | version "3.1.1" 3430 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" 3431 | 3432 | util-deprecate@~1.0.1: 3433 | version "1.0.2" 3434 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3435 | 3436 | validate-npm-package-license@^3.0.1: 3437 | version "3.0.3" 3438 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.3.tgz#81643bcbef1bdfecd4623793dc4648948ba98338" 3439 | dependencies: 3440 | spdx-correct "^3.0.0" 3441 | spdx-expression-parse "^3.0.0" 3442 | 3443 | value-or-function@^3.0.0: 3444 | version "3.0.0" 3445 | resolved "https://registry.yarnpkg.com/value-or-function/-/value-or-function-3.0.0.tgz#1c243a50b595c1be54a754bfece8563b9ff8d813" 3446 | 3447 | vfile-location@^2.0.0: 3448 | version "2.0.3" 3449 | resolved "https://registry.yarnpkg.com/vfile-location/-/vfile-location-2.0.3.tgz#083ba80e50968e8d420be49dd1ea9a992131df77" 3450 | 3451 | vfile-message@^1.0.0: 3452 | version "1.0.1" 3453 | resolved "https://registry.yarnpkg.com/vfile-message/-/vfile-message-1.0.1.tgz#51a2ccd8a6b97a7980bb34efb9ebde9632e93677" 3454 | dependencies: 3455 | unist-util-stringify-position "^1.1.1" 3456 | 3457 | vfile-reporter@^4.0.0: 3458 | version "4.0.0" 3459 | resolved "https://registry.yarnpkg.com/vfile-reporter/-/vfile-reporter-4.0.0.tgz#ea6f0ae1342f4841573985e05f941736f27de9da" 3460 | dependencies: 3461 | repeat-string "^1.5.0" 3462 | string-width "^1.0.0" 3463 | supports-color "^4.1.0" 3464 | unist-util-stringify-position "^1.0.0" 3465 | vfile-statistics "^1.1.0" 3466 | 3467 | vfile-sort@^2.1.0: 3468 | version "2.1.1" 3469 | resolved "https://registry.yarnpkg.com/vfile-sort/-/vfile-sort-2.1.1.tgz#03acdc8a4d7870ecf0e35499f095ddd9d14cbc41" 3470 | 3471 | vfile-statistics@^1.1.0: 3472 | version "1.1.1" 3473 | resolved "https://registry.yarnpkg.com/vfile-statistics/-/vfile-statistics-1.1.1.tgz#a22fd4eb844c9eaddd781ad3b3246db88375e2e3" 3474 | 3475 | vfile@^2.0.0, vfile@^2.3.0: 3476 | version "2.3.0" 3477 | resolved "https://registry.yarnpkg.com/vfile/-/vfile-2.3.0.tgz#e62d8e72b20e83c324bc6c67278ee272488bf84a" 3478 | dependencies: 3479 | is-buffer "^1.1.4" 3480 | replace-ext "1.0.0" 3481 | unist-util-stringify-position "^1.0.0" 3482 | vfile-message "^1.0.0" 3483 | 3484 | vinyl-fs@^3.0.2: 3485 | version "3.0.3" 3486 | resolved "https://registry.yarnpkg.com/vinyl-fs/-/vinyl-fs-3.0.3.tgz#c85849405f67428feabbbd5c5dbdd64f47d31bc7" 3487 | dependencies: 3488 | fs-mkdirp-stream "^1.0.0" 3489 | glob-stream "^6.1.0" 3490 | graceful-fs "^4.0.0" 3491 | is-valid-glob "^1.0.0" 3492 | lazystream "^1.0.0" 3493 | lead "^1.0.0" 3494 | object.assign "^4.0.4" 3495 | pumpify "^1.3.5" 3496 | readable-stream "^2.3.3" 3497 | remove-bom-buffer "^3.0.0" 3498 | remove-bom-stream "^1.2.0" 3499 | resolve-options "^1.1.0" 3500 | through2 "^2.0.0" 3501 | to-through "^2.0.0" 3502 | value-or-function "^3.0.0" 3503 | vinyl "^2.0.0" 3504 | vinyl-sourcemap "^1.1.0" 3505 | 3506 | vinyl-sourcemap@^1.1.0: 3507 | version "1.1.0" 3508 | resolved "https://registry.yarnpkg.com/vinyl-sourcemap/-/vinyl-sourcemap-1.1.0.tgz#92a800593a38703a8cdb11d8b300ad4be63b3e16" 3509 | dependencies: 3510 | append-buffer "^1.0.2" 3511 | convert-source-map "^1.5.0" 3512 | graceful-fs "^4.1.6" 3513 | normalize-path "^2.1.1" 3514 | now-and-later "^2.0.0" 3515 | remove-bom-buffer "^3.0.0" 3516 | vinyl "^2.0.0" 3517 | 3518 | vinyl@^2.0.0, vinyl@^2.1.0: 3519 | version "2.2.0" 3520 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-2.2.0.tgz#d85b07da96e458d25b2ffe19fece9f2caa13ed86" 3521 | dependencies: 3522 | clone "^2.1.1" 3523 | clone-buffer "^1.0.0" 3524 | clone-stats "^1.0.0" 3525 | cloneable-readable "^1.0.0" 3526 | remove-trailing-separator "^1.0.1" 3527 | replace-ext "^1.0.0" 3528 | 3529 | vue-template-compiler@^2.5.16: 3530 | version "2.5.16" 3531 | resolved "https://registry.yarnpkg.com/vue-template-compiler/-/vue-template-compiler-2.5.16.tgz#93b48570e56c720cdf3f051cc15287c26fbd04cb" 3532 | dependencies: 3533 | de-indent "^1.0.2" 3534 | he "^1.1.0" 3535 | 3536 | websocket-driver@>=0.5.1: 3537 | version "0.7.0" 3538 | resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.0.tgz#0caf9d2d755d93aee049d4bdd0d3fe2cca2a24eb" 3539 | dependencies: 3540 | http-parser-js ">=0.4.0" 3541 | websocket-extensions ">=0.1.1" 3542 | 3543 | websocket-extensions@>=0.1.1: 3544 | version "0.1.3" 3545 | resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.3.tgz#5d2ff22977003ec687a4b87073dfbbac146ccf29" 3546 | 3547 | which-module@^2.0.0: 3548 | version "2.0.0" 3549 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 3550 | 3551 | which@^1.2.9: 3552 | version "1.3.1" 3553 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 3554 | dependencies: 3555 | isexe "^2.0.0" 3556 | 3557 | wide-align@^1.1.0: 3558 | version "1.1.3" 3559 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" 3560 | dependencies: 3561 | string-width "^1.0.2 || 2" 3562 | 3563 | wrap-ansi@^2.0.0: 3564 | version "2.1.0" 3565 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3566 | dependencies: 3567 | string-width "^1.0.1" 3568 | strip-ansi "^3.0.1" 3569 | 3570 | wrappy@1: 3571 | version "1.0.2" 3572 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3573 | 3574 | x-is-string@^0.1.0: 3575 | version "0.1.0" 3576 | resolved "https://registry.yarnpkg.com/x-is-string/-/x-is-string-0.1.0.tgz#474b50865af3a49a9c4657f05acd145458f77d82" 3577 | 3578 | xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.0, xtend@~4.0.1: 3579 | version "4.0.1" 3580 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3581 | 3582 | y18n@^3.2.1: 3583 | version "3.2.1" 3584 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3585 | 3586 | yallist@^2.1.2: 3587 | version "2.1.2" 3588 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3589 | 3590 | yallist@^3.0.0, yallist@^3.0.2: 3591 | version "3.0.2" 3592 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.2.tgz#8452b4bb7e83c7c188d8041c1a837c773d6d8bb9" 3593 | 3594 | yargs-parser@^7.0.0: 3595 | version "7.0.0" 3596 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" 3597 | dependencies: 3598 | camelcase "^4.1.0" 3599 | 3600 | yargs@^9.0.1: 3601 | version "9.0.1" 3602 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-9.0.1.tgz#52acc23feecac34042078ee78c0c007f5085db4c" 3603 | dependencies: 3604 | camelcase "^4.1.0" 3605 | cliui "^3.2.0" 3606 | decamelize "^1.1.1" 3607 | get-caller-file "^1.0.1" 3608 | os-locale "^2.0.0" 3609 | read-pkg-up "^2.0.0" 3610 | require-directory "^2.1.1" 3611 | require-main-filename "^1.0.1" 3612 | set-blocking "^2.0.0" 3613 | string-width "^2.0.0" 3614 | which-module "^2.0.0" 3615 | y18n "^3.2.1" 3616 | yargs-parser "^7.0.0" 3617 | --------------------------------------------------------------------------------