├── .eslintrc ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── index.js ├── package.json └── yarn.lock /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "airbnb-base", 3 | "rules": { 4 | "no-underscore-dangle": 0, 5 | "arrow-body-style": 0, 6 | "no-unused-expressions": 0, 7 | "no-plusplus": 0, 8 | "no-console": 0, 9 | "func-names": 0, 10 | "global-require": 0, 11 | "prefer-template": 0, 12 | "spaced-comment": 0, 13 | "comma-dangle": ["error", { 14 | "arrays": "always-multiline", 15 | "objects": "always-multiline", 16 | "imports": "always-multiline", 17 | "exports": "always-multiline", 18 | "functions": "ignore", 19 | }], 20 | "no-param-reassign": 0, 21 | "import/no-dynamic-require": 0, 22 | "object-shorthand": 0, 23 | "function-paren-newline": 0 24 | }, 25 | } 26 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.log 3 | src -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## master 2 | 3 | ## 0.0.6 (February 08, 2017) 4 | - chore: Add babel-relay-plugin 0.11.0 (@sibelius) 5 | 6 | ## 0.0.4 (February 08, 2017) 7 | - feat: Add `verbose` option for enabling log message on schema reload. Now this messaging disabled by default. (closes #2) 8 | 9 | ## 0.0.3 (January 28, 2017) 10 | - fix: refactor code due eslint errors 11 | 12 | ## 0.0.2 (December 22, 2016) 13 | - fix: Proceed Webpack if was thrown error on schema generation 14 | 15 | ## 0.0.1 (December 22, 2016) 16 | - First commit 17 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016-present Pavel Chertorogov 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 6 | 7 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 8 | 9 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 10 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # babel-plugin-transform-relay-hot 2 | 3 | [![NPM version](https://img.shields.io/npm/v/babel-plugin-transform-relay-hot.svg)](https://www.npmjs.com/package/babel-plugin-transform-relay-hot) 4 | [![npm](https://img.shields.io/npm/dt/babel-plugin-transform-relay-hot.svg)](http://www.npmtrends.com/babel-plugin-transform-relay-hot) 5 | 6 | [Babel](https://github.com/babel/babel) plugin for transforming `graphql` literals and `Relay.QL` tagged templates (when `"compat": true`). It uses json/graphql file with GraphQL schema. This plugin wraps [babel-plugin-relay](https://facebook.github.io/relay/docs/babel-plugin-relay.html). Each time the schema file changes, the wrapper updates instance of `babel-plugin-relay` with new schema without completely restarting dev server. 7 | 8 | ## Install 9 | 10 | ``` 11 | yarn add babel-plugin-transform-relay-hot --dev 12 | ``` 13 | or 14 | ``` 15 | npm install babel-plugin-transform-relay-hot --save-dev 16 | ``` 17 | 18 | ## Usage with .babelrc 19 | 20 | ```js 21 | { 22 | "plugins": [ 23 | ["transform-relay-hot", { 24 | "schema": "./build/schema.graphql", 25 | "watchInterval": 2000, 26 | "verbose": true 27 | }], 28 | ] 29 | } 30 | ``` 31 | 32 | ## Options 33 | 34 | - **`schema`** 35 | - **Required** 36 | - Type: `String` 37 | - Path to graphql schema json/graphql file 38 | - **`watchInterval`** 39 | - Type: `Number` 40 | - Default: 2000 41 | - Time interval in milliseconds to check `mtime` of json file. Internally used `setTimeout().unref()` cause `fs.watch` blocks babel from exit. 42 | - You may **disable watching** by setting `watchInterval: 0`. 43 | - **`verbose`** 44 | - Type: `Boolean` 45 | - Default: false 46 | - Log to console when schema reloaded. 47 | - Also you may define [additional options](https://facebook.github.io/relay/docs/babel-plugin-relay.html) from **`babel-plugin-relay`** 48 | 49 | Use `"compat": true` option for Relay Classic. 50 | 51 | 52 | ## How to generate `schema.graphql` or `schema.graphql.json` files 53 | You may use [webpack-plugin-graphql-schema-hot](https://github.com/nodkz/webpack-plugin-graphql-schema-hot) or do it manually: 54 | ```js 55 | import fs from 'fs'; 56 | import path from 'path'; 57 | import { printSchema } from 'graphql'; 58 | import Schema from './schema'; 59 | 60 | export default function generateSchema() { 61 | fs.writeFileSync( 62 | path.join(__dirname, './build/schema.graphql'), 63 | printSchema(schema) 64 | ); 65 | } 66 | ``` 67 | 68 | ```js 69 | import fs from 'fs'; 70 | import path from 'path'; 71 | import { graphql, introspectionQuery } from 'graphql'; 72 | import Schema from './schema'; 73 | 74 | export default async function generateSchemaJson() { 75 | const result = await (graphql(Schema, introspectionQuery)); 76 | fs.writeFileSync( 77 | path.join(__dirname, './build/schema.graphql.json'), 78 | JSON.stringify(result, null, 2) 79 | ); 80 | } 81 | ``` 82 | 83 | ## Recommended modules 84 | 85 | ### 🔥 [webpack-plugin-graphql-schema-hot](https://github.com/nodkz/webpack-plugin-graphql-schema-hot) 86 | 87 | Webpack plugin which tracks changes in your GraphQL Schema files and generates schema introspection in `json` and `txt` formats. `webpack-plugin-graphql-schema-hot` can freeze Webpack, while this plugin catch changes from `json` file. For this you need set `waitOnStart` and `waitOnRebuild` options (in Webpack plugin) equal to `watchInterval` (from this babel plugin): 88 | ```js 89 | import path from 'path'; 90 | import WebpackPluginGraphqlSchemaHot from 'webpack-plugin-graphql-schema-hot'; 91 | 92 | const config = { 93 | // ... 94 | plugins: [ 95 | new WebpackPluginGraphqlSchemaHot({ 96 | schemaPath: path.resolve(__dirname, '../schema/index.js'), 97 | output: { 98 | json: path.resolve(__dirname, '../build/schema.graphql.json'), 99 | txt: path.resolve(__dirname, '../build/schema.graphql'), 100 | }, 101 | runOnStart: true, 102 | waitOnStart: 2000, // <----- value from `watchInterval` 103 | waitOnRebuild: 2000, // <----- value from `watchInterval` 104 | verbose: true, 105 | }), 106 | ] 107 | } 108 | ``` 109 | 110 | ### 🔥 [eslint-plugin-graphql](https://github.com/apollostack/eslint-plugin-graphql) 111 | 112 | For `eslint` checks of `Relay.QL` tagged templates you may use `eslint-plugin-graphql`. It also tracks changes of graphql schema json file with following config: 113 | ```js 114 | // In a file called .eslintrc.js 115 | const path = require('path'); 116 | 117 | module.exports = { 118 | parser: "babel-eslint", 119 | rules: { 120 | "graphql/template-strings": ['error', { 121 | env: 'relay', 122 | schemaJsonFilepath: path.resolve(__dirname, './build/schema.graphql.json'), 123 | }] 124 | }, 125 | plugins: [ 126 | 'graphql' 127 | ] 128 | } 129 | ``` 130 | 131 | ### 🔥 [js-graphql-intellij-plugin](https://github.com/jimkyndemeyer/js-graphql-intellij-plugin) 132 | 133 | GraphQL language support for IntelliJ IDEA and WebStorm, including Relay.QL tagged templates in JavaScript and TypeScript. 134 | 135 | ### 🔥 [webpack-plugin-relay-touch-dependents](https://github.com/jrhicks/webpack-plugin-relay-touch-dependents) 136 | 137 | Trigger webpack rebuilds after your GraphQL Schema has been updated and saved to JSON.. 138 | 139 | ## License 140 | 141 | MIT 142 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Returns a new Babel Transformer that uses the supplied schema to transform 3 | * template strings tagged with `Relay.QL` into an internal representation of 4 | * GraphQL queries. 5 | */ 6 | 7 | const fs = require('fs'); 8 | 9 | const log = (msg) => { 10 | console.log('[transform-relay-hot]', msg); 11 | }; 12 | 13 | // file changes watcher 14 | function watcherFn(schemaFilepath, watchInterval, reinitBabelRelayPlugin, prevMtime) { 15 | try { 16 | let stats; 17 | try { 18 | stats = fs.statSync(schemaFilepath); 19 | } catch (e) { 20 | // no problem 21 | } 22 | if (stats) { 23 | if (!prevMtime) prevMtime = stats.mtime; 24 | if (stats.mtime.getTime() !== prevMtime.getTime()) { 25 | prevMtime = stats.mtime; 26 | reinitBabelRelayPlugin(); 27 | } 28 | } 29 | setTimeout( 30 | () => { 31 | watcherFn(schemaFilepath, watchInterval, reinitBabelRelayPlugin, prevMtime); 32 | }, 33 | watchInterval 34 | ).unref(); // fs.watch blocks babel from exit, so using `setTimeout` with `unref` 35 | } catch (e) { 36 | log(e); 37 | } 38 | } 39 | 40 | 41 | // babelRelayPlugin initializer 42 | function initBabelRelayPlugin(pluginOptions, babel, ref) { 43 | const verbose = !!pluginOptions.verbose; 44 | const schemaFilepath = pluginOptions.schema || ''; 45 | let schema; 46 | 47 | try { 48 | schema = fs.readFileSync(schemaFilepath, 'utf8'); 49 | } catch (e) { 50 | schema = null; 51 | log('Cannot load GraphQL Schema from file \'' 52 | + schemaFilepath + '\': ' + e); 53 | } 54 | 55 | if (schema) { 56 | if (verbose) { 57 | log('GraphQL Schema loaded successfully from \'' + schemaFilepath + '\''); 58 | } 59 | ref.babelRelayPlugin = require('babel-plugin-relay')(babel); 60 | } else { 61 | // empty Plugin 62 | log('Relay.QL will not be transformed, cause `schema.data` is empty.'); 63 | ref.babelRelayPlugin = { 64 | visitor: { 65 | Program: function () {}, 66 | TaggedTemplateExpression: function () {}, 67 | }, 68 | }; 69 | } 70 | } 71 | 72 | function initProxy(babel, state) { 73 | const ref = {}; 74 | const pluginOptions = state.opts || {}; 75 | 76 | if (pluginOptions.schemaJsonFilepath) { 77 | log( 78 | '[transform-relay-hot] Please rename `schemaJsonFilepath` option in .babelrc:' 79 | + '\n {' 80 | + '\n "plugins": [' 81 | + '\n ["transform-relay-hot", {' 82 | + '\n 🛑 from: "schemaJsonFilepath": "./pathToSchema.json",' 83 | + '\n 👌 to: "schema": "./pathToSchema.json",' 84 | + '\n }]' 85 | + '\n ]' 86 | + '\n }' 87 | ); 88 | pluginOptions.schema = pluginOptions.schemaJsonFilepath; 89 | } 90 | 91 | if (!pluginOptions.schema || pluginOptions.schema === '') { 92 | log( 93 | '[transform-relay-hot] You should provide `schema` option in .babelrc:' 94 | + '\n {' 95 | + '\n "plugins": [' 96 | + '\n ["transform-relay-hot", {' 97 | + '\n "schema": "./pathToSchema.json",' 98 | + '\n "watchInterval": 2000' 99 | + '\n }]' 100 | + '\n ]' 101 | + '\n }' 102 | ); 103 | } 104 | 105 | // HACK obtain/update babelRelayPlugin by reference 106 | initBabelRelayPlugin(pluginOptions, babel, ref); 107 | 108 | const watchInterval = pluginOptions && pluginOptions.watchInterval 109 | ? pluginOptions.watchInterval 110 | : 2000; 111 | if (watchInterval > 0 && pluginOptions.schema) { 112 | const reinitBabelRelayPlugin = () => { 113 | log('Re-init babel-plugin-relay'); 114 | // decache all babel-plugin-relay modules 115 | Object.keys(require.cache).forEach((key) => { 116 | if (key.indexOf('babel-plugin-relay') > 0) { 117 | delete require.cache[key]; 118 | } 119 | }); 120 | Object.keys(module.constructor._pathCache).forEach((key) => { 121 | if (key.indexOf('babel-plugin-relay') > 0) { 122 | delete module.constructor._pathCache[key]; 123 | } 124 | }); 125 | initBabelRelayPlugin(pluginOptions, babel, ref); 126 | }; 127 | watcherFn(pluginOptions.schema, watchInterval, reinitBabelRelayPlugin); 128 | } 129 | 130 | return ref; 131 | } 132 | 133 | 134 | // babel plugin proxy 135 | module.exports = function (babel) { 136 | let ref; 137 | return { 138 | visitor: { 139 | /** 140 | * Extract the module name from `@providesModule`. 141 | */ 142 | Program(path, state) { 143 | // HACK ONLY ONCE obtain plugin configs form .babelrc and init our proxy 144 | if (!ref) ref = initProxy(babel, state); 145 | 146 | const fn = ref.babelRelayPlugin.visitor.Program; 147 | if (fn) fn(path, state); 148 | }, 149 | 150 | /** 151 | * Transform Relay.QL`...`. 152 | */ 153 | TaggedTemplateExpression(path, state) { 154 | const fn = ref.babelRelayPlugin.visitor.TaggedTemplateExpression; 155 | if (fn) fn(path, state); 156 | }, 157 | }, 158 | }; 159 | }; 160 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "babel-plugin-transform-relay-hot", 3 | "version": "1.0.4", 4 | "description": "Wrapper for babel-relay-plugin which track changes in the graphql schema file and hot swap them without restart dev server with babel", 5 | "main": "index.js", 6 | "repository": "https://github.com/nodkz/babel-plugin-transform-relay-hot", 7 | "author": "Nodkz (pavel.chertorogov@gmail.com)", 8 | "keywords": [ 9 | "relay", 10 | "Relay.QL", 11 | "babel-relay-plugin", 12 | "babel-plugin-relay", 13 | "BabelRelayPlugin", 14 | "BabelPluginRelay", 15 | "hot reload", 16 | "graphql" 17 | ], 18 | "license": "MIT", 19 | "dependencies": { 20 | "babel-plugin-relay": "^1.1.0" 21 | }, 22 | "devDependencies": { 23 | "eslint": "^4.6.1", 24 | "eslint-config-airbnb-base": "^12.0.0", 25 | "eslint-plugin-import": "^2.7.0" 26 | }, 27 | "scripts": { 28 | "lint": "./node_modules/.bin/eslint --ext .js ./index.js" 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | acorn-jsx@^3.0.0: 6 | version "3.0.1" 7 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 8 | dependencies: 9 | acorn "^3.0.4" 10 | 11 | acorn@^3.0.4: 12 | version "3.3.0" 13 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 14 | 15 | acorn@^5.1.1: 16 | version "5.1.1" 17 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.1.1.tgz#53fe161111f912ab999ee887a90a0bc52822fd75" 18 | 19 | ajv-keywords@^1.0.0: 20 | version "1.5.1" 21 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 22 | 23 | ajv@^4.7.0: 24 | version "4.11.2" 25 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.2.tgz#f166c3c11cbc6cb9dcc102a5bcfe5b72c95287e6" 26 | dependencies: 27 | co "^4.6.0" 28 | json-stable-stringify "^1.0.1" 29 | 30 | ajv@^5.2.0: 31 | version "5.2.2" 32 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.2.2.tgz#47c68d69e86f5d953103b0074a9430dc63da5e39" 33 | dependencies: 34 | co "^4.6.0" 35 | fast-deep-equal "^1.0.0" 36 | json-schema-traverse "^0.3.0" 37 | json-stable-stringify "^1.0.1" 38 | 39 | ansi-escapes@^2.0.0: 40 | version "2.0.0" 41 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-2.0.0.tgz#5bae52be424878dd9783e8910e3fc2922e83c81b" 42 | 43 | ansi-regex@^2.0.0: 44 | version "2.1.1" 45 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 46 | 47 | ansi-regex@^3.0.0: 48 | version "3.0.0" 49 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 50 | 51 | ansi-styles@^2.2.1: 52 | version "2.2.1" 53 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 54 | 55 | ansi-styles@^3.1.0: 56 | version "3.2.0" 57 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 58 | dependencies: 59 | color-convert "^1.9.0" 60 | 61 | argparse@^1.0.7: 62 | version "1.0.9" 63 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 64 | dependencies: 65 | sprintf-js "~1.0.2" 66 | 67 | array-union@^1.0.1: 68 | version "1.0.2" 69 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 70 | dependencies: 71 | array-uniq "^1.0.1" 72 | 73 | array-uniq@^1.0.1: 74 | version "1.0.3" 75 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 76 | 77 | arrify@^1.0.0: 78 | version "1.0.1" 79 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 80 | 81 | babel-code-frame@^6.22.0: 82 | version "6.22.0" 83 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 84 | dependencies: 85 | chalk "^1.1.0" 86 | esutils "^2.0.2" 87 | js-tokens "^3.0.0" 88 | 89 | babel-plugin-relay@^1.3.0: 90 | version "1.3.0" 91 | resolved "https://registry.yarnpkg.com/babel-plugin-relay/-/babel-plugin-relay-1.3.0.tgz#3a505fcda59f376d9c3c25b101e159debfee0b24" 92 | dependencies: 93 | babel-runtime "^6.23.0" 94 | babel-types "^6.23.0" 95 | graphql "^0.10.5" 96 | 97 | babel-runtime@^6.23.0: 98 | version "6.23.0" 99 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 100 | dependencies: 101 | core-js "^2.4.0" 102 | regenerator-runtime "^0.10.0" 103 | 104 | babel-runtime@^6.26.0: 105 | version "6.26.0" 106 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 107 | dependencies: 108 | core-js "^2.4.0" 109 | regenerator-runtime "^0.11.0" 110 | 111 | babel-types@^6.23.0: 112 | version "6.26.0" 113 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 114 | dependencies: 115 | babel-runtime "^6.26.0" 116 | esutils "^2.0.2" 117 | lodash "^4.17.4" 118 | to-fast-properties "^1.0.3" 119 | 120 | balanced-match@^0.4.1: 121 | version "0.4.2" 122 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 123 | 124 | balanced-match@^1.0.0: 125 | version "1.0.0" 126 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 127 | 128 | brace-expansion@^1.0.0: 129 | version "1.1.6" 130 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 131 | dependencies: 132 | balanced-match "^0.4.1" 133 | concat-map "0.0.1" 134 | 135 | brace-expansion@^1.1.7: 136 | version "1.1.8" 137 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 138 | dependencies: 139 | balanced-match "^1.0.0" 140 | concat-map "0.0.1" 141 | 142 | buffer-shims@^1.0.0: 143 | version "1.0.0" 144 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 145 | 146 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 147 | version "1.1.1" 148 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 149 | 150 | caller-path@^0.1.0: 151 | version "0.1.0" 152 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 153 | dependencies: 154 | callsites "^0.2.0" 155 | 156 | callsites@^0.2.0: 157 | version "0.2.0" 158 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 159 | 160 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1: 161 | version "1.1.3" 162 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 163 | dependencies: 164 | ansi-styles "^2.2.1" 165 | escape-string-regexp "^1.0.2" 166 | has-ansi "^2.0.0" 167 | strip-ansi "^3.0.0" 168 | supports-color "^2.0.0" 169 | 170 | chalk@^2.1.0: 171 | version "2.1.0" 172 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.1.0.tgz#ac5becf14fa21b99c6c92ca7a7d7cfd5b17e743e" 173 | dependencies: 174 | ansi-styles "^3.1.0" 175 | escape-string-regexp "^1.0.5" 176 | supports-color "^4.0.0" 177 | 178 | circular-json@^0.3.1: 179 | version "0.3.1" 180 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 181 | 182 | cli-cursor@^2.1.0: 183 | version "2.1.0" 184 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 185 | dependencies: 186 | restore-cursor "^2.0.0" 187 | 188 | cli-width@^2.0.0: 189 | version "2.1.0" 190 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 191 | 192 | co@^4.6.0: 193 | version "4.6.0" 194 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 195 | 196 | color-convert@^1.9.0: 197 | version "1.9.0" 198 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 199 | dependencies: 200 | color-name "^1.1.1" 201 | 202 | color-name@^1.1.1: 203 | version "1.1.3" 204 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 205 | 206 | concat-map@0.0.1: 207 | version "0.0.1" 208 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 209 | 210 | concat-stream@^1.6.0: 211 | version "1.6.0" 212 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 213 | dependencies: 214 | inherits "^2.0.3" 215 | readable-stream "^2.2.2" 216 | typedarray "^0.0.6" 217 | 218 | contains-path@^0.1.0: 219 | version "0.1.0" 220 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 221 | 222 | core-js@^2.4.0: 223 | version "2.4.1" 224 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 225 | 226 | core-util-is@~1.0.0: 227 | version "1.0.2" 228 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 229 | 230 | cross-spawn@^5.1.0: 231 | version "5.1.0" 232 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 233 | dependencies: 234 | lru-cache "^4.0.1" 235 | shebang-command "^1.2.0" 236 | which "^1.2.9" 237 | 238 | debug@^2.6.8: 239 | version "2.6.8" 240 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 241 | dependencies: 242 | ms "2.0.0" 243 | 244 | deep-is@~0.1.3: 245 | version "0.1.3" 246 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 247 | 248 | del@^2.0.2: 249 | version "2.2.2" 250 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 251 | dependencies: 252 | globby "^5.0.0" 253 | is-path-cwd "^1.0.0" 254 | is-path-in-cwd "^1.0.0" 255 | object-assign "^4.0.1" 256 | pify "^2.0.0" 257 | pinkie-promise "^2.0.0" 258 | rimraf "^2.2.8" 259 | 260 | doctrine@1.5.0: 261 | version "1.5.0" 262 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 263 | dependencies: 264 | esutils "^2.0.2" 265 | isarray "^1.0.0" 266 | 267 | doctrine@^2.0.0: 268 | version "2.0.0" 269 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" 270 | dependencies: 271 | esutils "^2.0.2" 272 | isarray "^1.0.0" 273 | 274 | error-ex@^1.2.0: 275 | version "1.3.1" 276 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 277 | dependencies: 278 | is-arrayish "^0.2.1" 279 | 280 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 281 | version "1.0.5" 282 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 283 | 284 | eslint-config-airbnb-base@^12.0.0: 285 | version "12.0.0" 286 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-12.0.0.tgz#99063aaef4b8698083481a00e165cbe15e82d615" 287 | dependencies: 288 | eslint-restricted-globals "^0.1.1" 289 | 290 | eslint-import-resolver-node@^0.3.1: 291 | version "0.3.1" 292 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.1.tgz#4422574cde66a9a7b099938ee4d508a199e0e3cc" 293 | dependencies: 294 | debug "^2.6.8" 295 | resolve "^1.2.0" 296 | 297 | eslint-module-utils@^2.1.1: 298 | version "2.1.1" 299 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.1.1.tgz#abaec824177613b8a95b299639e1b6facf473449" 300 | dependencies: 301 | debug "^2.6.8" 302 | pkg-dir "^1.0.0" 303 | 304 | eslint-plugin-import@^2.7.0: 305 | version "2.7.0" 306 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.7.0.tgz#21de33380b9efb55f5ef6d2e210ec0e07e7fa69f" 307 | dependencies: 308 | builtin-modules "^1.1.1" 309 | contains-path "^0.1.0" 310 | debug "^2.6.8" 311 | doctrine "1.5.0" 312 | eslint-import-resolver-node "^0.3.1" 313 | eslint-module-utils "^2.1.1" 314 | has "^1.0.1" 315 | lodash.cond "^4.3.0" 316 | minimatch "^3.0.3" 317 | read-pkg-up "^2.0.0" 318 | 319 | eslint-restricted-globals@^0.1.1: 320 | version "0.1.1" 321 | resolved "https://registry.yarnpkg.com/eslint-restricted-globals/-/eslint-restricted-globals-0.1.1.tgz#35f0d5cbc64c2e3ed62e93b4b1a7af05ba7ed4d7" 322 | 323 | eslint-scope@^3.7.1: 324 | version "3.7.1" 325 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" 326 | dependencies: 327 | esrecurse "^4.1.0" 328 | estraverse "^4.1.1" 329 | 330 | eslint@^4.6.1: 331 | version "4.6.1" 332 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.6.1.tgz#ddc7fc7fd70bf93205b0b3449bb16a1e9e7d4950" 333 | dependencies: 334 | ajv "^5.2.0" 335 | babel-code-frame "^6.22.0" 336 | chalk "^2.1.0" 337 | concat-stream "^1.6.0" 338 | cross-spawn "^5.1.0" 339 | debug "^2.6.8" 340 | doctrine "^2.0.0" 341 | eslint-scope "^3.7.1" 342 | espree "^3.5.0" 343 | esquery "^1.0.0" 344 | estraverse "^4.2.0" 345 | esutils "^2.0.2" 346 | file-entry-cache "^2.0.0" 347 | functional-red-black-tree "^1.0.1" 348 | glob "^7.1.2" 349 | globals "^9.17.0" 350 | ignore "^3.3.3" 351 | imurmurhash "^0.1.4" 352 | inquirer "^3.0.6" 353 | is-resolvable "^1.0.0" 354 | js-yaml "^3.9.1" 355 | json-stable-stringify "^1.0.1" 356 | levn "^0.3.0" 357 | lodash "^4.17.4" 358 | minimatch "^3.0.2" 359 | mkdirp "^0.5.1" 360 | natural-compare "^1.4.0" 361 | optionator "^0.8.2" 362 | path-is-inside "^1.0.2" 363 | pluralize "^4.0.0" 364 | progress "^2.0.0" 365 | require-uncached "^1.0.3" 366 | semver "^5.3.0" 367 | strip-ansi "^4.0.0" 368 | strip-json-comments "~2.0.1" 369 | table "^4.0.1" 370 | text-table "~0.2.0" 371 | 372 | espree@^3.5.0: 373 | version "3.5.0" 374 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.0.tgz#98358625bdd055861ea27e2867ea729faf463d8d" 375 | dependencies: 376 | acorn "^5.1.1" 377 | acorn-jsx "^3.0.0" 378 | 379 | esprima@^4.0.0: 380 | version "4.0.0" 381 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 382 | 383 | esquery@^1.0.0: 384 | version "1.0.0" 385 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 386 | dependencies: 387 | estraverse "^4.0.0" 388 | 389 | esrecurse@^4.1.0: 390 | version "4.1.0" 391 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" 392 | dependencies: 393 | estraverse "~4.1.0" 394 | object-assign "^4.0.1" 395 | 396 | estraverse@^4.0.0, estraverse@^4.1.1, estraverse@^4.2.0: 397 | version "4.2.0" 398 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 399 | 400 | estraverse@~4.1.0: 401 | version "4.1.1" 402 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" 403 | 404 | esutils@^2.0.2: 405 | version "2.0.2" 406 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 407 | 408 | external-editor@^2.0.4: 409 | version "2.0.4" 410 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.0.4.tgz#1ed9199da9cbfe2ef2f7a31b2fde8b0d12368972" 411 | dependencies: 412 | iconv-lite "^0.4.17" 413 | jschardet "^1.4.2" 414 | tmp "^0.0.31" 415 | 416 | fast-deep-equal@^1.0.0: 417 | version "1.0.0" 418 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 419 | 420 | fast-levenshtein@~2.0.4: 421 | version "2.0.6" 422 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 423 | 424 | figures@^2.0.0: 425 | version "2.0.0" 426 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 427 | dependencies: 428 | escape-string-regexp "^1.0.5" 429 | 430 | file-entry-cache@^2.0.0: 431 | version "2.0.0" 432 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 433 | dependencies: 434 | flat-cache "^1.2.1" 435 | object-assign "^4.0.1" 436 | 437 | find-up@^1.0.0: 438 | version "1.1.2" 439 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 440 | dependencies: 441 | path-exists "^2.0.0" 442 | pinkie-promise "^2.0.0" 443 | 444 | find-up@^2.0.0: 445 | version "2.1.0" 446 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 447 | dependencies: 448 | locate-path "^2.0.0" 449 | 450 | flat-cache@^1.2.1: 451 | version "1.2.2" 452 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 453 | dependencies: 454 | circular-json "^0.3.1" 455 | del "^2.0.2" 456 | graceful-fs "^4.1.2" 457 | write "^0.2.1" 458 | 459 | fs.realpath@^1.0.0: 460 | version "1.0.0" 461 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 462 | 463 | function-bind@^1.0.2: 464 | version "1.1.0" 465 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 466 | 467 | functional-red-black-tree@^1.0.1: 468 | version "1.0.1" 469 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 470 | 471 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.2: 472 | version "7.1.2" 473 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 474 | dependencies: 475 | fs.realpath "^1.0.0" 476 | inflight "^1.0.4" 477 | inherits "2" 478 | minimatch "^3.0.4" 479 | once "^1.3.0" 480 | path-is-absolute "^1.0.0" 481 | 482 | globals@^9.17.0: 483 | version "9.18.0" 484 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 485 | 486 | globby@^5.0.0: 487 | version "5.0.0" 488 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 489 | dependencies: 490 | array-union "^1.0.1" 491 | arrify "^1.0.0" 492 | glob "^7.0.3" 493 | object-assign "^4.0.1" 494 | pify "^2.0.0" 495 | pinkie-promise "^2.0.0" 496 | 497 | graceful-fs@^4.1.2: 498 | version "4.1.11" 499 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 500 | 501 | graphql@^0.10.5: 502 | version "0.10.5" 503 | resolved "https://registry.yarnpkg.com/graphql/-/graphql-0.10.5.tgz#c9be17ca2bdfdbd134077ffd9bbaa48b8becd298" 504 | dependencies: 505 | iterall "^1.1.0" 506 | 507 | has-ansi@^2.0.0: 508 | version "2.0.0" 509 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 510 | dependencies: 511 | ansi-regex "^2.0.0" 512 | 513 | has-flag@^2.0.0: 514 | version "2.0.0" 515 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 516 | 517 | has@^1.0.1: 518 | version "1.0.1" 519 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 520 | dependencies: 521 | function-bind "^1.0.2" 522 | 523 | hosted-git-info@^2.1.4: 524 | version "2.4.2" 525 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.2.tgz#0076b9f46a270506ddbaaea56496897460612a67" 526 | 527 | iconv-lite@^0.4.17: 528 | version "0.4.17" 529 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.17.tgz#4fdaa3b38acbc2c031b045d0edcdfe1ecab18c8d" 530 | 531 | ignore@^3.3.3: 532 | version "3.3.3" 533 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.3.tgz#432352e57accd87ab3110e82d3fea0e47812156d" 534 | 535 | imurmurhash@^0.1.4: 536 | version "0.1.4" 537 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 538 | 539 | inflight@^1.0.4: 540 | version "1.0.6" 541 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 542 | dependencies: 543 | once "^1.3.0" 544 | wrappy "1" 545 | 546 | inherits@2, inherits@^2.0.3, inherits@~2.0.1: 547 | version "2.0.3" 548 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 549 | 550 | inquirer@^3.0.6: 551 | version "3.1.0" 552 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.1.0.tgz#e05400d48b94937c2d3caa7038663ba9189aab01" 553 | dependencies: 554 | ansi-escapes "^2.0.0" 555 | chalk "^1.0.0" 556 | cli-cursor "^2.1.0" 557 | cli-width "^2.0.0" 558 | external-editor "^2.0.4" 559 | figures "^2.0.0" 560 | lodash "^4.3.0" 561 | mute-stream "0.0.7" 562 | run-async "^2.2.0" 563 | rx-lite "^4.0.8" 564 | rx-lite-aggregates "^4.0.8" 565 | string-width "^2.0.0" 566 | strip-ansi "^3.0.0" 567 | through "^2.3.6" 568 | 569 | is-arrayish@^0.2.1: 570 | version "0.2.1" 571 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 572 | 573 | is-builtin-module@^1.0.0: 574 | version "1.0.0" 575 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 576 | dependencies: 577 | builtin-modules "^1.0.0" 578 | 579 | is-fullwidth-code-point@^2.0.0: 580 | version "2.0.0" 581 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 582 | 583 | is-path-cwd@^1.0.0: 584 | version "1.0.0" 585 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 586 | 587 | is-path-in-cwd@^1.0.0: 588 | version "1.0.0" 589 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 590 | dependencies: 591 | is-path-inside "^1.0.0" 592 | 593 | is-path-inside@^1.0.0: 594 | version "1.0.0" 595 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 596 | dependencies: 597 | path-is-inside "^1.0.1" 598 | 599 | is-promise@^2.1.0: 600 | version "2.1.0" 601 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 602 | 603 | is-resolvable@^1.0.0: 604 | version "1.0.0" 605 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 606 | dependencies: 607 | tryit "^1.0.1" 608 | 609 | isarray@^1.0.0, isarray@~1.0.0: 610 | version "1.0.0" 611 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 612 | 613 | isexe@^2.0.0: 614 | version "2.0.0" 615 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 616 | 617 | iterall@^1.1.0: 618 | version "1.1.1" 619 | resolved "https://registry.yarnpkg.com/iterall/-/iterall-1.1.1.tgz#f7f0af11e9a04ec6426260f5019d9fcca4d50214" 620 | 621 | js-tokens@^3.0.0: 622 | version "3.0.0" 623 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.0.tgz#a2f2a969caae142fb3cd56228358c89366957bd1" 624 | 625 | js-yaml@^3.9.1: 626 | version "3.9.1" 627 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.9.1.tgz#08775cebdfdd359209f0d2acd383c8f86a6904a0" 628 | dependencies: 629 | argparse "^1.0.7" 630 | esprima "^4.0.0" 631 | 632 | jschardet@^1.4.2: 633 | version "1.4.2" 634 | resolved "https://registry.yarnpkg.com/jschardet/-/jschardet-1.4.2.tgz#2aa107f142af4121d145659d44f50830961e699a" 635 | 636 | json-schema-traverse@^0.3.0: 637 | version "0.3.1" 638 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 639 | 640 | json-stable-stringify@^1.0.1: 641 | version "1.0.1" 642 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 643 | dependencies: 644 | jsonify "~0.0.0" 645 | 646 | jsonify@~0.0.0: 647 | version "0.0.0" 648 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 649 | 650 | levn@^0.3.0, levn@~0.3.0: 651 | version "0.3.0" 652 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 653 | dependencies: 654 | prelude-ls "~1.1.2" 655 | type-check "~0.3.2" 656 | 657 | load-json-file@^2.0.0: 658 | version "2.0.0" 659 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 660 | dependencies: 661 | graceful-fs "^4.1.2" 662 | parse-json "^2.2.0" 663 | pify "^2.0.0" 664 | strip-bom "^3.0.0" 665 | 666 | locate-path@^2.0.0: 667 | version "2.0.0" 668 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 669 | dependencies: 670 | p-locate "^2.0.0" 671 | path-exists "^3.0.0" 672 | 673 | lodash.cond@^4.3.0: 674 | version "4.5.2" 675 | resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5" 676 | 677 | lodash@^4.0.0, lodash@^4.17.4, lodash@^4.3.0: 678 | version "4.17.4" 679 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 680 | 681 | lru-cache@^4.0.1: 682 | version "4.1.1" 683 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 684 | dependencies: 685 | pseudomap "^1.0.2" 686 | yallist "^2.1.2" 687 | 688 | mimic-fn@^1.0.0: 689 | version "1.1.0" 690 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 691 | 692 | minimatch@^3.0.2, minimatch@^3.0.4: 693 | version "3.0.4" 694 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 695 | dependencies: 696 | brace-expansion "^1.1.7" 697 | 698 | minimatch@^3.0.3: 699 | version "3.0.3" 700 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 701 | dependencies: 702 | brace-expansion "^1.0.0" 703 | 704 | minimist@0.0.8: 705 | version "0.0.8" 706 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 707 | 708 | mkdirp@^0.5.1: 709 | version "0.5.1" 710 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 711 | dependencies: 712 | minimist "0.0.8" 713 | 714 | ms@2.0.0: 715 | version "2.0.0" 716 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 717 | 718 | mute-stream@0.0.7: 719 | version "0.0.7" 720 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 721 | 722 | natural-compare@^1.4.0: 723 | version "1.4.0" 724 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 725 | 726 | normalize-package-data@^2.3.2: 727 | version "2.3.8" 728 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb" 729 | dependencies: 730 | hosted-git-info "^2.1.4" 731 | is-builtin-module "^1.0.0" 732 | semver "2 || 3 || 4 || 5" 733 | validate-npm-package-license "^3.0.1" 734 | 735 | object-assign@^4.0.1: 736 | version "4.1.1" 737 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 738 | 739 | once@^1.3.0: 740 | version "1.4.0" 741 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 742 | dependencies: 743 | wrappy "1" 744 | 745 | onetime@^2.0.0: 746 | version "2.0.1" 747 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 748 | dependencies: 749 | mimic-fn "^1.0.0" 750 | 751 | optionator@^0.8.2: 752 | version "0.8.2" 753 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 754 | dependencies: 755 | deep-is "~0.1.3" 756 | fast-levenshtein "~2.0.4" 757 | levn "~0.3.0" 758 | prelude-ls "~1.1.2" 759 | type-check "~0.3.2" 760 | wordwrap "~1.0.0" 761 | 762 | os-tmpdir@~1.0.1: 763 | version "1.0.2" 764 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 765 | 766 | p-limit@^1.1.0: 767 | version "1.1.0" 768 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 769 | 770 | p-locate@^2.0.0: 771 | version "2.0.0" 772 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 773 | dependencies: 774 | p-limit "^1.1.0" 775 | 776 | parse-json@^2.2.0: 777 | version "2.2.0" 778 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 779 | dependencies: 780 | error-ex "^1.2.0" 781 | 782 | path-exists@^2.0.0: 783 | version "2.1.0" 784 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 785 | dependencies: 786 | pinkie-promise "^2.0.0" 787 | 788 | path-exists@^3.0.0: 789 | version "3.0.0" 790 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 791 | 792 | path-is-absolute@^1.0.0: 793 | version "1.0.1" 794 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 795 | 796 | path-is-inside@^1.0.1, path-is-inside@^1.0.2: 797 | version "1.0.2" 798 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 799 | 800 | path-parse@^1.0.5: 801 | version "1.0.5" 802 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 803 | 804 | path-type@^2.0.0: 805 | version "2.0.0" 806 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 807 | dependencies: 808 | pify "^2.0.0" 809 | 810 | pify@^2.0.0: 811 | version "2.3.0" 812 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 813 | 814 | pinkie-promise@^2.0.0: 815 | version "2.0.1" 816 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 817 | dependencies: 818 | pinkie "^2.0.0" 819 | 820 | pinkie@^2.0.0: 821 | version "2.0.4" 822 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 823 | 824 | pkg-dir@^1.0.0: 825 | version "1.0.0" 826 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 827 | dependencies: 828 | find-up "^1.0.0" 829 | 830 | pluralize@^4.0.0: 831 | version "4.0.0" 832 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-4.0.0.tgz#59b708c1c0190a2f692f1c7618c446b052fd1762" 833 | 834 | prelude-ls@~1.1.2: 835 | version "1.1.2" 836 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 837 | 838 | process-nextick-args@~1.0.6: 839 | version "1.0.7" 840 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 841 | 842 | progress@^2.0.0: 843 | version "2.0.0" 844 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" 845 | 846 | pseudomap@^1.0.2: 847 | version "1.0.2" 848 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 849 | 850 | read-pkg-up@^2.0.0: 851 | version "2.0.0" 852 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 853 | dependencies: 854 | find-up "^2.0.0" 855 | read-pkg "^2.0.0" 856 | 857 | read-pkg@^2.0.0: 858 | version "2.0.0" 859 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 860 | dependencies: 861 | load-json-file "^2.0.0" 862 | normalize-package-data "^2.3.2" 863 | path-type "^2.0.0" 864 | 865 | readable-stream@^2.2.2: 866 | version "2.2.2" 867 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.2.tgz#a9e6fec3c7dda85f8bb1b3ba7028604556fc825e" 868 | dependencies: 869 | buffer-shims "^1.0.0" 870 | core-util-is "~1.0.0" 871 | inherits "~2.0.1" 872 | isarray "~1.0.0" 873 | process-nextick-args "~1.0.6" 874 | string_decoder "~0.10.x" 875 | util-deprecate "~1.0.1" 876 | 877 | regenerator-runtime@^0.10.0: 878 | version "0.10.5" 879 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 880 | 881 | regenerator-runtime@^0.11.0: 882 | version "0.11.0" 883 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1" 884 | 885 | require-uncached@^1.0.3: 886 | version "1.0.3" 887 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 888 | dependencies: 889 | caller-path "^0.1.0" 890 | resolve-from "^1.0.0" 891 | 892 | resolve-from@^1.0.0: 893 | version "1.0.1" 894 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 895 | 896 | resolve@^1.2.0: 897 | version "1.4.0" 898 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.4.0.tgz#a75be01c53da25d934a98ebd0e4c4a7312f92a86" 899 | dependencies: 900 | path-parse "^1.0.5" 901 | 902 | restore-cursor@^2.0.0: 903 | version "2.0.0" 904 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 905 | dependencies: 906 | onetime "^2.0.0" 907 | signal-exit "^3.0.2" 908 | 909 | rimraf@^2.2.8: 910 | version "2.5.4" 911 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" 912 | dependencies: 913 | glob "^7.0.5" 914 | 915 | run-async@^2.2.0: 916 | version "2.3.0" 917 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 918 | dependencies: 919 | is-promise "^2.1.0" 920 | 921 | rx-lite-aggregates@^4.0.8: 922 | version "4.0.8" 923 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 924 | dependencies: 925 | rx-lite "*" 926 | 927 | rx-lite@*, rx-lite@^4.0.8: 928 | version "4.0.8" 929 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 930 | 931 | "semver@2 || 3 || 4 || 5": 932 | version "5.3.0" 933 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 934 | 935 | semver@^5.3.0: 936 | version "5.4.1" 937 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 938 | 939 | shebang-command@^1.2.0: 940 | version "1.2.0" 941 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 942 | dependencies: 943 | shebang-regex "^1.0.0" 944 | 945 | shebang-regex@^1.0.0: 946 | version "1.0.0" 947 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 948 | 949 | signal-exit@^3.0.2: 950 | version "3.0.2" 951 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 952 | 953 | slice-ansi@0.0.4: 954 | version "0.0.4" 955 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 956 | 957 | spdx-correct@~1.0.0: 958 | version "1.0.2" 959 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 960 | dependencies: 961 | spdx-license-ids "^1.0.2" 962 | 963 | spdx-expression-parse@~1.0.0: 964 | version "1.0.4" 965 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 966 | 967 | spdx-license-ids@^1.0.2: 968 | version "1.2.2" 969 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 970 | 971 | sprintf-js@~1.0.2: 972 | version "1.0.3" 973 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 974 | 975 | string-width@^2.0.0: 976 | version "2.0.0" 977 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 978 | dependencies: 979 | is-fullwidth-code-point "^2.0.0" 980 | strip-ansi "^3.0.0" 981 | 982 | string_decoder@~0.10.x: 983 | version "0.10.31" 984 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 985 | 986 | strip-ansi@^3.0.0: 987 | version "3.0.1" 988 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 989 | dependencies: 990 | ansi-regex "^2.0.0" 991 | 992 | strip-ansi@^4.0.0: 993 | version "4.0.0" 994 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 995 | dependencies: 996 | ansi-regex "^3.0.0" 997 | 998 | strip-bom@^3.0.0: 999 | version "3.0.0" 1000 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 1001 | 1002 | strip-json-comments@~2.0.1: 1003 | version "2.0.1" 1004 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 1005 | 1006 | supports-color@^2.0.0: 1007 | version "2.0.0" 1008 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 1009 | 1010 | supports-color@^4.0.0: 1011 | version "4.4.0" 1012 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.4.0.tgz#883f7ddabc165142b2a61427f3352ded195d1a3e" 1013 | dependencies: 1014 | has-flag "^2.0.0" 1015 | 1016 | table@^4.0.1: 1017 | version "4.0.1" 1018 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.1.tgz#a8116c133fac2c61f4a420ab6cdf5c4d61f0e435" 1019 | dependencies: 1020 | ajv "^4.7.0" 1021 | ajv-keywords "^1.0.0" 1022 | chalk "^1.1.1" 1023 | lodash "^4.0.0" 1024 | slice-ansi "0.0.4" 1025 | string-width "^2.0.0" 1026 | 1027 | text-table@~0.2.0: 1028 | version "0.2.0" 1029 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 1030 | 1031 | through@^2.3.6: 1032 | version "2.3.8" 1033 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 1034 | 1035 | tmp@^0.0.31: 1036 | version "0.0.31" 1037 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.31.tgz#8f38ab9438e17315e5dbd8b3657e8bfb277ae4a7" 1038 | dependencies: 1039 | os-tmpdir "~1.0.1" 1040 | 1041 | to-fast-properties@^1.0.3: 1042 | version "1.0.3" 1043 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 1044 | 1045 | tryit@^1.0.1: 1046 | version "1.0.3" 1047 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 1048 | 1049 | type-check@~0.3.2: 1050 | version "0.3.2" 1051 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 1052 | dependencies: 1053 | prelude-ls "~1.1.2" 1054 | 1055 | typedarray@^0.0.6: 1056 | version "0.0.6" 1057 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 1058 | 1059 | util-deprecate@~1.0.1: 1060 | version "1.0.2" 1061 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1062 | 1063 | validate-npm-package-license@^3.0.1: 1064 | version "3.0.1" 1065 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 1066 | dependencies: 1067 | spdx-correct "~1.0.0" 1068 | spdx-expression-parse "~1.0.0" 1069 | 1070 | which@^1.2.9: 1071 | version "1.3.0" 1072 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 1073 | dependencies: 1074 | isexe "^2.0.0" 1075 | 1076 | wordwrap@~1.0.0: 1077 | version "1.0.0" 1078 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 1079 | 1080 | wrappy@1: 1081 | version "1.0.2" 1082 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1083 | 1084 | write@^0.2.1: 1085 | version "0.2.1" 1086 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 1087 | dependencies: 1088 | mkdirp "^0.5.1" 1089 | 1090 | yallist@^2.1.2: 1091 | version "2.1.2" 1092 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 1093 | --------------------------------------------------------------------------------