├── .babelrc ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── .travis.yml ├── LICENSE.md ├── README.md ├── gatsby-node.js ├── index.js ├── jest.config.js ├── package-lock.json ├── package.json ├── src ├── __tests__ │ └── internal │ │ ├── attachFields.js │ │ └── validateDescriptors.js ├── internal │ ├── attachFields.js │ ├── errors.js │ ├── schema.js │ └── validateDescriptors.js └── onCreateNode.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": [ 3 | "@babel/plugin-transform-destructuring", 4 | "@babel/plugin-proposal-object-rest-spread" 5 | ], 6 | "env": { 7 | "test": { 8 | "presets": [["@babel/preset-env"]] 9 | }, 10 | "development": { 11 | "presets": [["@babel/preset-env"]] 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | lib 2 | dist -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: ['eslint-config-airbnb-base', 'prettier'], 3 | plugins: ['prettier'], 4 | env: { 5 | browser: true, 6 | jest: true, 7 | }, 8 | parserOptions: { 9 | sourceType: 'module', 10 | ecmaFeatures: { 11 | jsx: true, 12 | }, 13 | }, 14 | globals: { 15 | l: true, 16 | }, 17 | rules: { 18 | 'func-names': ['error', 'never'], 19 | 'no-param-reassign': 'off', 20 | 'import/no-extraneous-dependencies': 'off', 21 | 'no-confusing-arrow': 'off', 22 | quotes: [ 23 | 'error', 24 | 'backtick', 25 | { avoidEscape: true, allowTemplateLiterals: true }, 26 | ], 27 | 'jsx-quotes': ['error', 'prefer-double'], 28 | 'comma-dangle': ['error', 'always-multiline'], 29 | 'valid-jsdoc': ['error'], 30 | 'no-restricted-syntax': ['error', 'LabeledStatement', 'WithStatement'], 31 | 'import/extensions': ['off', 'never'], 32 | }, 33 | }; 34 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | yarn-error.log 3 | coverage 4 | .DS_Store 5 | lib -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | unsafe-perm = true -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | /Users/pedr/Library/Application\ Support/Code/User/snippets/javascript.json -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "printWidth": 80, 3 | "tabWidth": 2, 4 | "semi": false, 5 | "singleQuote": true, 6 | "trailingComma": "es5", 7 | "overrides": [ 8 | { 9 | "files": ".prettierrc", 10 | "options": { "parser": "json" } 11 | }, 12 | { 13 | "files": ".babelrc", 14 | "options": { "parser": "json" } 15 | } 16 | ] 17 | } 18 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | dist: trusty 3 | node_js: 4 | - 9 5 | - 8 6 | - 7 7 | notifications: 8 | email: 9 | on_failure: change 10 | script: 11 | - node --version 12 | - yarn --version 13 | - yarn run securityCheck 14 | - yarn run lint 15 | - yarn run test:noWatch 16 | - codecov 17 | - yarn run build 18 | cache: 19 | yarn: true 20 | directories: 21 | - node_modules -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 Pedr Browne 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of 6 | this software and associated documentation files (the "Software"), to deal in 7 | the Software without restriction, including without limitation the rights to 8 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 9 | the Software, and to permit persons to whom the Software is furnished to do so, 10 | 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, FITNESS 17 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 18 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 19 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 20 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # gatsby-plugin-node-fields 2 | 3 | Important Changes: There has been an important change to the API in reaching V3. As of V2, all functions now recieve `actions` as their final argument, from which `createNodeField` or any other function can be pulled if needed. As of V3 an additional final argument is passed in to all functions: `getNode` which allows a node to be looked up using an id. This allows information to be pulled from a parent node for example. This is a breaking change _only_ if you are using the function version, in which case you will need to pass `getNode` as the third argument to `attachFields` (see below). 4 | 5 | `gatsby-plugin-node-fields` offers you a simple, consistent way to manage the creation of fields on your nodes, with support for default values, transformations and validation of values. It is well tested and uses helpful error messages to guide you away from the rocks. 6 | 7 | ## Quickstart 8 | 9 | ### Install 10 | 11 | ```bash 12 | yarn add gatsby-plugin-node-fields 13 | ``` 14 | 15 | ### Plugin vs Function 16 | 17 | You can use `gatsby-plugin-node-fields` either as a standard Gatsby plugin, or you can use it as standalone function. Both will perform the same task, but you might prefer to keep node manipulation in your `gatsby-node.js` file instead of via a plugin defined in your `gatsby-config.js`. 18 | 19 | #### Plugin 20 | 21 | If you want to use it as a plugin, add it as the last plugin. You can place it anywhere, but bear in mind that it will only see changes made by plugins that come before it. Unless you have a good reason not to, place it last. 22 | 23 | ```javaScript 24 | // gatsby-config.js 25 | 26 | const plugins = [ 27 | … 28 | { 29 | resolve: `gatsby-plugin-node-fields`, 30 | options: { 31 | // Your list of descriptors 32 | descriptors: [ 33 | … 34 | ], 35 | }, 36 | } 37 | ] 38 | 39 | module.exports = { 40 | plugins, 41 | } 42 | ``` 43 | 44 | #### Function 45 | 46 | If you'd prefer to use it as a function in your `gatsby-node.js` file, you need to hook into Gatsby's `onCreateNode` yourself, passing in the arguments it expects: 47 | 48 | ```javaScript 49 | // gatsby-node.js 50 | 51 | const { attachFields } = require(`gatsby-plugin-node-fields`) 52 | 53 | // Your list of descriptors 54 | const descriptors = [ 55 | … 56 | ] 57 | 58 | exports.onCreateNode = ({ node, actions, getNode }) => { 59 | attachFields(node, actions, getNode, descriptors) 60 | } 61 | ``` 62 | 63 | ## Some Examples 64 | 65 | ### Default value for a field 66 | 67 | Imagine you have a series of Markdown Articles. They are mainly written by the same person with an occasional guest author. You support an `author` field in your article pages' front matter, but you don't want your regular author to have to add their own name to every article. Effectively you need a default value for `author`. To implement this you would create the following descriptor: 68 | 69 | ```javaScript 70 | [ 71 | { 72 | predicate: isArticleNode, 73 | fields: [ 74 | { 75 | name: 'author', 76 | getter: node => node.frontmatter.author, 77 | defaultValue: 'John Doe', 78 | }, 79 | ] 80 | } 81 | ] 82 | ``` 83 | 84 | This would result in `node.fields.author` being populated with either the author field of the node's front matter, or with a default value of 'John Doe'. In reality you'd probably want to pull the default value from a config object or similar. 85 | 86 | ### Transforming a value 87 | 88 | Imagine you allow an author to add a `keywords` field to an article's front matter which you use for the `keywords` metadata of the page (which will be a comma-separated list), and also extract for use as tags. To make these tags easier to work with you want to convert then to an array of strings. 89 | 90 | ```javaScript 91 | [ 92 | { 93 | predicate: isArticleNode, 94 | fields: [ 95 | { 96 | name: 'tags', 97 | getter: node => node.frontmatter.keywords, 98 | defaultValue: '', 99 | transformer: value => isEmptyString(value) ? [] : cslToArray(value), 100 | }, 101 | ] 102 | } 103 | ] 104 | ``` 105 | 106 | Here we again use `getter` to pull the value we want from the node's `frontmatter`. We set it's `defaultValue` to `''`, then we use the `transformer` to either transform the value to an empty array, or to an array of strings using a helper function `cslToArray`. Note that it might seem strange to set a default value, then immediately check it and convert it to an array, but I've found that treating each stage discretely makes for much cleaner code. This way the transformer knows it will receive a string, making it more focused. 107 | 108 | ### Validating a value 109 | 110 | It's often better to handle invalid values at compile time rather than trying to handle these values in the UI. Imagine you allow an author to add a `title` keyword to an article's frontmatter. Obviously without a title, an Article shouldn't be valid and it doesn't make sense to set a default title, so you add a validator to ensure the article's title is a non-empty string. 111 | 112 | ```javaScript 113 | [ 114 | { 115 | predicate: isArticleNode, 116 | fields: [ 117 | { 118 | name: 'title', 119 | getter: node => node.frontmatter.title, 120 | validator: isNonEmptyString 121 | }, 122 | ] 123 | } 124 | ] 125 | ``` 126 | 127 | This will result in an error with a useful message if an article is encountered that doesn't have a title set. For obvious reasons it's better to set a sensible default in most cases, but in instances like this, a useful compile-time error is better than a potentially obscure runtime error, or invalid data being displayed. 128 | 129 | ## Overview 130 | 131 | I have found that mixing queries for values stored in a node's `frontmatter` with queries for values stored in generated fields is uneven and confusing, so I now transfer all values that I will use in the UI over to fields. This transfer gives us the opportunity to do a number of important things: 132 | 133 | - set a default value 134 | - validate a value 135 | - transform a value 136 | 137 | ### Validation 138 | 139 | Your descriptors will be validated against a schema when first used with useful error messages if you have added an invalid field or the value of required field is invalid or missing. 140 | 141 | ### Descriptors 142 | 143 | The plugin automatically hooks into Gatsby's `onCreateNode` life cycle hook and will check the node it receives against an array of descriptors you provide. Each descriptor must provide a `predicate` - a function that will be passed the node and decides whether the descriptor should be used to transform it. For example we might want to check if the node is Markdown node, or if it represents a file from a particular directory. 144 | 145 | If a descriptor's `predicate` returns true, the descriptor will be used to create new fields on that node using the contents of the descriptor's `fields` array. Each item in the `fields` array represents the creation of one or more fields and describes a series of steps 146 | 147 | Here is an example of a descriptor that will be run for all markdown nodes, validating that a title exists, then running is through a function called `preventOrphans` before saving it as a `title` field: 148 | 149 | ```javaScript 150 | [ 151 | // Descriptor 152 | { 153 | predicate: isMarkdownNode, 154 | fields: [ 155 | { 156 | name: 'title', 157 | getter: node => node.frontmatter.title, 158 | validator: isString, 159 | transformer: preventOrphans, 160 | }, 161 | ] 162 | }, 163 | ] 164 | ``` 165 | 166 | #### _predicate_ [function(node, getNode)] 167 | 168 | A (node, getNode) that receives the newly created node as and returns `true` if the descriptor should apply to that node and `false` if it doesn't. Multiple descriptors can be applied to the same node if their predicates return true. The predicate receives a second argument which is Gatsby's `getNode` (node, getNode). This can be used to extend predicate logic to other related nodes. 169 | 170 | #### _fields_ [array] 171 | 172 | An array of objects representing fields that will be created on the node. Each object comprises of a set of keys and values that describe the creation process of a new field. You can use as few or as many keys as needed. For example if all you want to do is set a default value you could use only the `name` and `defaultValue` keys: 173 | 174 | ```javaScript 175 | { 176 | name: 'example', 177 | defaultValue: 'Unknown', 178 | } 179 | ``` 180 | 181 | ### Fields 182 | 183 | A field can contain one or more of the following keys that describe which fields it should add, and how it should obtain and transform the data that will populate them. You can perform a one-to-one, many-to-one, or one-to-many mapping between values and fields. The order in which these fields are used is 184 | 185 | - `getter` or `name` 186 | - `defaultValue` 187 | - `validator` 188 | - `transformer` 189 | - `setter` or `name` 190 | 191 | #### _name_ [string] 192 | 193 | A `name` field represents the name of the field that will be created. If no `getter` field is present on the descriptor, it will also be used to access a value on the node. For example if the `name` is 'alpha', it will create a field on the node called 'alpha'. If no `getter` field is present on the descriptor is will try and get the value for this field from `node.alpha`. 194 | 195 | #### _getter_ [(node, getNode)(node, context, actions, getNode)] 196 | 197 | A `getter` is a (node, getNode) that gets the value or values from the node. If a `getter` is not defined and a `name` is defined, `node[name]` will be used in its place. 198 | 199 | A simple getter might look like: 200 | 201 | ```javaScript 202 | node => node.frontmatter.title 203 | ``` 204 | 205 | You could also pull the value from a config object or anywhere else you like. 206 | 207 | #### _defaultValue_ [* | function(node, context, actions, getNode)] 208 | 209 | A `defaultValue` supplies a value in instances where no value exists on the node (the value is `undefined`), or no means of getting a value has been defined on the descriptor. In the following cases `defaultValue` will be used: 210 | 211 | - Only a `name` was defined and there is no prop on the node with that name. 212 | - A prop of `name` exists with but has a value of `undefined` 213 | - A `getter` was defined but returned `undefined`, 214 | - Neither a `name` nor a `getter` were defined. 215 | 216 | If `defaultValue` is a function it should return a default value. If the value of `defaultValue` is not a function, that value will be used as the default value. 217 | 218 | For example by using a function, you could use supply a default value using another property of the node: 219 | 220 | ```javaScript 221 | node => node.someOtherValue 222 | ``` 223 | 224 | #### _validator_ [function(value, node, context, actions, getNode)] 225 | 226 | A `validator` is just a predicate that receives the value and returns true or false, depending if it deems it to be valid or not. For example we might have a descriptor that has looked up `node.Front Matter.slug`, but there is no slug defined, we use a sanitised version of the title instead: 227 | 228 | ```javaScript 229 | value => isValidDate(value) 230 | ``` 231 | 232 | #### _transformer_ [function(value, node, context, actions, getNode)] 233 | 234 | A `transformer` transforms the value in some way. For example it might run the value through a function that cleans it up or formats it. A transformer function will be called with three arguments: the value, the node and the context, if defined. 235 | 236 | ```javaScript 237 | value => preventOrphans(value) 238 | ``` 239 | 240 | #### _setter_ [function(value, node, context, actions, getNode)] 241 | 242 | A _setter_ defines how the value(s) are translated to fields. If no `setter` is defined, the _name_ field will be used to create a field of that name using Gatsby's `createNodeField` , however using a `setter` function allows more flexibility. For example a value might be an object and we might want to transfer its values to multiple fields. A `setter` will receive three arguments: the value, `actions`, and any context. If you define a setter, that setter is responsible for using `actions.createNodeField` to create fields. 243 | 244 | ```javaScript 245 | (value, node) => { 246 | createNodeField({ 247 | node, 248 | name: 'alpha', 249 | value: value.beta 250 | }) 251 | } 252 | ``` 253 | 254 | ### Context 255 | 256 | To keep things as functional as possible and prevent the need for you to reach out to external data sources from within your functions, you can pass in a `context`. Context can be anything you like, but will probably be an object. `getter`, `defaultValue`, `validator`, `transformer`, and `setter` functions all receive the context as their second argument. 257 | 258 | If you are using the plugin, pass the context as an option: 259 | 260 | ```javaScript 261 | { 262 | resolve: `gatsby-plugin-node-fields`, 263 | options: { 264 | descriptors: [ 265 | … 266 | ], 267 | context: { 268 | … 269 | } 270 | }, 271 | } 272 | ``` 273 | 274 | If you are using the function, pass it in as the fourth argument: 275 | 276 | ```javaScript 277 | attachFields(node, actions, descriptors, context) 278 | ``` 279 | 280 | ## Maintenance 281 | 282 | Gatsby doesn't support ES6 imports, so we need to compile our `./src` to `./lib`, then reference the compiled file from `gatsby-node.js`. 283 | 284 | ### Tests 285 | 286 | Tests are written with Jest: 287 | 288 | ```bash 289 | yarn test 290 | ``` 291 | -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- 1 | const onCreateNode = require(`./lib/onCreateNode`) 2 | 3 | module.exports.onCreateNode = onCreateNode.default 4 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | // You can use attachFields directly if you'd prefer to call it in your 2 | // project's `gatsby-node.js` instead of using it as a plugin. 3 | 4 | const attachFields = require(`./lib/internal/attachFields`) 5 | 6 | module.exports = { attachFields } 7 | -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | bail: true, 3 | verbose: true, 4 | collectCoverage: true, 5 | collectCoverageFrom: [`src/**/*.js`], 6 | coveragePathIgnorePatterns: [`src/index.js`], 7 | coverageReporters: [`lcov`, `html`], 8 | setupFiles: [], 9 | modulePathIgnorePatterns: [`testHelpers/`], 10 | } 11 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "gatsby-plugin-node-fields", 3 | "version": "3.0.0", 4 | "main": "index.js", 5 | "description": "A Gatsby Plugin and helper function for consistent creation of node fields with support for default values, validations and transformations", 6 | "repository": { 7 | "type": "git", 8 | "url": "git+https://github.com/Undistraction/gatsby-plugin-node-fields.git" 9 | }, 10 | "files": [ 11 | "gatsby-node.js", 12 | "src", 13 | "lib" 14 | ], 15 | "keywords": [ 16 | "gatsby", 17 | "gatsby-plugin", 18 | "defaults", 19 | "validation", 20 | "fields", 21 | "front matter", 22 | "node", 23 | "config" 24 | ], 25 | "author": "Pedr Browne", 26 | "license": "MIT", 27 | "bugs": { 28 | "url": "https://github.com/Undistraction/gatsby-plugin-node-fields/issues" 29 | }, 30 | "homepage": "https://github.com/Undistraction/gatsby-plugin-node-fields", 31 | "scripts": { 32 | "build": "babel --out-dir ./lib --ignore \"__tests__\" src", 33 | "prebuild": "npm run lint", 34 | "test": "jest --watch", 35 | "test:noWatch": "jest", 36 | "prepublishOnly": "npm run verify", 37 | "publish:patch": "npm version patch && sudo npm publish", 38 | "publish:minor": "npm version minor && sudo npm publish", 39 | "publish:major": "npm version major && sudo npm publish", 40 | "lint": "eslint src", 41 | "audit:packages": "yarn outdated || true", 42 | "test:cov": "open coverage/index.html", 43 | "securityCheck": "npm audit", 44 | "verify": "npm run lint && npm run test:noWatch && npm run build" 45 | }, 46 | "devDependencies": { 47 | "@babel/cli": "^7.7.0", 48 | "@babel/core": "^7.7.2", 49 | "@babel/plugin-external-helpers": "^7.2.0", 50 | "@babel/plugin-proposal-object-rest-spread": "^7.6.2", 51 | "@babel/plugin-transform-destructuring": "^7.6.0", 52 | "@babel/preset-env": "^7.7.1", 53 | "codecov": "^3.0.0", 54 | "cssbeautify": "^0.3.1", 55 | "eslint": "^4.11.0", 56 | "eslint-config-airbnb": "^16.1.0", 57 | "eslint-config-airbnb-base": "^12.1.0", 58 | "eslint-config-prettier": "^2.7.0", 59 | "eslint-plugin-import": "^2.8.0", 60 | "eslint-plugin-jsx-a11y": "^6.0.2", 61 | "eslint-plugin-prettier": "^2.3.1", 62 | "eslint-plugin-react": "^7.5.1", 63 | "husky": "^0.15.0-rc.8", 64 | "jest": "^24.9.0", 65 | "prettier": "^1.13.5" 66 | }, 67 | "dependencies": { 68 | "ramda": "^0.26.1", 69 | "ramda-adjunct": "^2.22.1", 70 | "@hapi/joi": "^16.1.7" 71 | }, 72 | "husky": { 73 | "hooks": { 74 | "pre-commit": "npm run lint", 75 | "pre-push": "npm run verify" 76 | } 77 | } 78 | } 79 | -------------------------------------------------------------------------------- /src/__tests__/internal/attachFields.js: -------------------------------------------------------------------------------- 1 | import { F, lensProp, path, T } from 'ramda' 2 | import { lensEq } from 'ramda-adjunct' 3 | import attachFields from '../../internal/attachFields' 4 | 5 | const name1 = `name1` 6 | const name2 = `name2` 7 | const key1 = `key1` 8 | const key2 = `key2` 9 | const value1 = `value1` 10 | const value2 = `value2` 11 | const EMPTY_NODE = {} 12 | const unmatchedDescriptor = { 13 | predicate: F, 14 | fields: [], 15 | } 16 | const DEFAULT_CONTEXT = {} 17 | 18 | const lensPropEq = (name, value) => lensEq(lensProp(name), value) 19 | 20 | describe(`attachFields`, () => { 21 | let createNode 22 | let actions 23 | let getNode 24 | 25 | beforeEach(() => { 26 | actions = {} 27 | createNode = jest.fn() 28 | getNode = jest.fn() 29 | actions.createNodeField = createNode 30 | }) 31 | 32 | // --------------------------------------------------------------------------- 33 | // Descriptor Validation 34 | // --------------------------------------------------------------------------- 35 | 36 | describe(`throws with invalid descriptors`, () => { 37 | expect(() => 38 | // Missing predicate key on descriptor 39 | attachFields(EMPTY_NODE, actions, getNode, [{ fields: [] }]) 40 | ).toThrow() 41 | }) 42 | 43 | // --------------------------------------------------------------------------- 44 | // Descriptor Predicates 45 | // --------------------------------------------------------------------------- 46 | 47 | describe(`with no descriptors`, () => { 48 | it(`does nothing`, () => { 49 | const node = {} 50 | 51 | attachFields(node, actions, getNode) 52 | 53 | expect(createNode).not.toBeCalled() 54 | }) 55 | }) 56 | 57 | describe(`with predicates that don't match`, () => { 58 | it(`does nothing`, () => { 59 | const descriptors = [unmatchedDescriptor, unmatchedDescriptor] 60 | 61 | attachFields(EMPTY_NODE, actions, getNode, descriptors) 62 | 63 | expect(createNode).not.toBeCalled() 64 | }) 65 | }) 66 | 67 | describe(`with predicates that match`, () => { 68 | it(`changes the node using the matching descriptors`, () => { 69 | const node = { 70 | [key1]: 1, 71 | [key2]: true, 72 | } 73 | 74 | const descriptors = [ 75 | { 76 | predicate: lensPropEq(key1, 1), 77 | fields: [ 78 | { 79 | name: name1, 80 | }, 81 | ], 82 | }, 83 | unmatchedDescriptor, 84 | { 85 | predicate: lensPropEq(key2, true), 86 | fields: [ 87 | { 88 | name: name2, 89 | }, 90 | ], 91 | }, 92 | ] 93 | attachFields(node, actions, getNode, descriptors) 94 | 95 | expect(createNode.mock.calls).toEqual([ 96 | [ 97 | { 98 | node, 99 | name: name1, 100 | value: undefined, 101 | }, 102 | ], 103 | [ 104 | { 105 | node, 106 | name: name2, 107 | value: undefined, 108 | }, 109 | ], 110 | ]) 111 | }) 112 | }) 113 | 114 | // --------------------------------------------------------------------------- 115 | // name field 116 | // --------------------------------------------------------------------------- 117 | 118 | describe(`with only a name`, () => { 119 | it(`will use the node prop of the same name`, () => { 120 | const node = { 121 | [name1]: value1, 122 | } 123 | 124 | const descriptors = [ 125 | { 126 | predicate: T, 127 | fields: [ 128 | { 129 | name: name1, 130 | }, 131 | ], 132 | }, 133 | ] 134 | 135 | attachFields(node, actions, getNode, descriptors) 136 | 137 | expect(createNode.mock.calls).toEqual([ 138 | [ 139 | { 140 | node, 141 | name: name1, 142 | value: value1, 143 | }, 144 | ], 145 | ]) 146 | }) 147 | }) 148 | 149 | describe(`with a getter`, () => { 150 | it(`will use the getter`, () => { 151 | const node = { 152 | [key1]: { 153 | [key2]: value1, 154 | }, 155 | } 156 | 157 | const descriptors = [ 158 | { 159 | predicate: T, 160 | fields: [ 161 | { 162 | name: name1, 163 | getter: path([key1, key2]), 164 | }, 165 | ], 166 | }, 167 | ] 168 | 169 | attachFields(node, actions, getNode, descriptors) 170 | 171 | expect(createNode.mock.calls).toEqual([ 172 | [ 173 | { 174 | node, 175 | name: name1, 176 | value: value1, 177 | }, 178 | ], 179 | ]) 180 | }) 181 | }) 182 | 183 | // --------------------------------------------------------------------------- 184 | // defaultValue field 185 | // --------------------------------------------------------------------------- 186 | 187 | describe(`when value exits`, () => { 188 | it(`defaultValue isn't used`, () => { 189 | const node = { 190 | [name1]: value1, 191 | } 192 | 193 | const descriptors = [ 194 | { 195 | predicate: T, 196 | fields: [ 197 | { 198 | name: name1, 199 | defaultValue: value2, 200 | }, 201 | ], 202 | }, 203 | ] 204 | 205 | attachFields(node, actions, getNode, descriptors) 206 | 207 | expect(createNode.mock.calls).toEqual([ 208 | [ 209 | { 210 | node, 211 | name: name1, 212 | value: value1, 213 | }, 214 | ], 215 | ]) 216 | }) 217 | 218 | describe(`when value is 'false'`, () => { 219 | it(`defaultValue isn't used`, () => { 220 | const node = { 221 | [name1]: false, 222 | } 223 | 224 | const descriptors = [ 225 | { 226 | predicate: T, 227 | fields: [ 228 | { 229 | name: name1, 230 | defaultValue: true, 231 | }, 232 | ], 233 | }, 234 | ] 235 | 236 | attachFields(node, actions, getNode, descriptors) 237 | 238 | expect(createNode.mock.calls).toEqual([ 239 | [ 240 | { 241 | node, 242 | name: name1, 243 | value: false, 244 | }, 245 | ], 246 | ]) 247 | }) 248 | }) 249 | }) 250 | 251 | describe(`when value doesn't exist`, () => { 252 | describe(`when 'defaultValue' field is a function`, () => { 253 | it(`calls the 'defaultValue' field value and uses the return value`, () => { 254 | const defaultValue = jest.fn().mockReturnValueOnce(value2) 255 | 256 | const node = { 257 | [key1]: value1, 258 | } 259 | 260 | const descriptors = [ 261 | { 262 | predicate: T, 263 | fields: [ 264 | { 265 | name: name1, 266 | defaultValue, 267 | }, 268 | ], 269 | }, 270 | ] 271 | 272 | attachFields(node, actions, getNode, descriptors) 273 | 274 | expect(defaultValue).toBeCalledWith( 275 | node, 276 | DEFAULT_CONTEXT, 277 | actions, 278 | getNode 279 | ) 280 | expect(createNode.mock.calls).toEqual([ 281 | [ 282 | { 283 | node, 284 | name: name1, 285 | value: value2, 286 | }, 287 | ], 288 | ]) 289 | }) 290 | }) 291 | 292 | describe(`when 'defaultValue' field is not a function`, () => { 293 | it(`uses the 'defaultValue' field value`, () => { 294 | const node = {} 295 | 296 | const descriptors = [ 297 | { 298 | predicate: T, 299 | fields: [ 300 | { 301 | name: name1, 302 | defaultValue: value2, 303 | }, 304 | ], 305 | }, 306 | ] 307 | 308 | attachFields(node, actions, getNode, descriptors) 309 | 310 | expect(createNode.mock.calls).toEqual([ 311 | [ 312 | { 313 | node, 314 | name: name1, 315 | value: value2, 316 | }, 317 | ], 318 | ]) 319 | }) 320 | }) 321 | }) 322 | 323 | // --------------------------------------------------------------------------- 324 | // transformer Field 325 | // --------------------------------------------------------------------------- 326 | 327 | describe(`when transformer is defined`, () => { 328 | it(`transforms the value`, () => { 329 | const transformer = jest.fn().mockReturnValueOnce(value2) 330 | 331 | const node = { 332 | [name1]: value1, 333 | } 334 | 335 | const descriptors = [ 336 | { 337 | predicate: T, 338 | fields: [ 339 | { 340 | name: name1, 341 | transformer, 342 | }, 343 | ], 344 | }, 345 | ] 346 | 347 | attachFields(node, actions, getNode, descriptors) 348 | 349 | expect(transformer).toBeCalledWith( 350 | value1, 351 | node, 352 | DEFAULT_CONTEXT, 353 | actions, 354 | getNode 355 | ) 356 | 357 | expect(createNode.mock.calls).toEqual([ 358 | [ 359 | { 360 | node, 361 | name: name1, 362 | value: value2, 363 | }, 364 | ], 365 | ]) 366 | }) 367 | }) 368 | 369 | // --------------------------------------------------------------------------- 370 | // setter Field 371 | // --------------------------------------------------------------------------- 372 | 373 | describe(`when setter is defined`, () => { 374 | describe(`when name is also defined`, () => { 375 | it(`uses the name setter`, () => { 376 | const setter = (value, node, context, { createNodeField }) => { 377 | createNodeField({ 378 | node, 379 | name: name2, 380 | value, 381 | }) 382 | } 383 | 384 | const node = { 385 | [name1]: value1, 386 | } 387 | 388 | const descriptors = [ 389 | { 390 | predicate: T, 391 | fields: [ 392 | { 393 | name: name1, 394 | setter, 395 | }, 396 | ], 397 | }, 398 | ] 399 | 400 | attachFields(node, actions, getNode, descriptors) 401 | 402 | expect(createNode.mock.calls).toEqual([ 403 | [ 404 | { 405 | node, 406 | name: name2, 407 | value: value1, 408 | }, 409 | ], 410 | ]) 411 | }) 412 | }) 413 | 414 | describe(`when no name is defined`, () => { 415 | it(`uses the setter`, () => { 416 | const setter = (value, node, context, { createNodeField }) => { 417 | createNodeField({ 418 | node, 419 | name: name2, 420 | value, 421 | }) 422 | } 423 | 424 | const node = { 425 | [name1]: value1, 426 | } 427 | 428 | const descriptors = [ 429 | { 430 | predicate: T, 431 | fields: [ 432 | { 433 | getter: () => value1, 434 | setter, 435 | }, 436 | ], 437 | }, 438 | ] 439 | 440 | attachFields(node, actions, getNode, descriptors) 441 | 442 | expect(createNode.mock.calls).toEqual([ 443 | [ 444 | { 445 | node, 446 | name: name2, 447 | value: value1, 448 | }, 449 | ], 450 | ]) 451 | }) 452 | }) 453 | 454 | describe(`when no name or getter is defined`, () => { 455 | it(`uses the setter`, () => { 456 | const setter = (value, node, context, { createNodeField }) => { 457 | createNodeField({ 458 | node, 459 | name: name2, 460 | value: value1, 461 | }) 462 | } 463 | 464 | const node = { 465 | [name1]: value1, 466 | } 467 | 468 | const descriptors = [ 469 | { 470 | predicate: T, 471 | fields: [ 472 | { 473 | setter, 474 | }, 475 | ], 476 | }, 477 | ] 478 | 479 | attachFields(node, actions, getNode, descriptors) 480 | 481 | expect(createNode.mock.calls).toEqual([ 482 | [ 483 | { 484 | node, 485 | name: name2, 486 | value: value1, 487 | }, 488 | ], 489 | ]) 490 | }) 491 | }) 492 | }) 493 | 494 | // --------------------------------------------------------------------------- 495 | // validator 496 | // --------------------------------------------------------------------------- 497 | 498 | describe(`validator with invalid value`, () => { 499 | it(`throws`, () => { 500 | const validator = jest.fn().mockReturnValueOnce(false) 501 | 502 | const descriptors = [ 503 | { 504 | predicate: T, 505 | fields: [ 506 | { 507 | name: name2, 508 | validator, 509 | }, 510 | ], 511 | }, 512 | ] 513 | 514 | expect(() => 515 | attachFields(EMPTY_NODE, actions, getNode, descriptors) 516 | ).toThrow( 517 | `[gatsby-plugin-node-fields] Invalid Field Error: Validator function for field named 'name2' returned false for field value 'undefined'` 518 | ) 519 | expect(validator).toBeCalledWith( 520 | undefined, 521 | EMPTY_NODE, 522 | {}, 523 | actions, 524 | getNode 525 | ) 526 | }) 527 | }) 528 | 529 | describe(`validator with valid value`, () => { 530 | it(`doesn't throw`, () => { 531 | const validator = jest.fn().mockReturnValueOnce(true) 532 | 533 | const descriptors = [ 534 | { 535 | predicate: T, 536 | fields: [ 537 | { 538 | name: name2, 539 | defaultValue: value1, 540 | validator, 541 | }, 542 | ], 543 | }, 544 | ] 545 | 546 | expect(() => 547 | attachFields(EMPTY_NODE, actions, getNode, descriptors) 548 | ).not.toThrow() 549 | expect(validator).toBeCalledWith(value1, EMPTY_NODE, {}, actions, getNode) 550 | }) 551 | }) 552 | 553 | // --------------------------------------------------------------------------- 554 | // context 555 | // --------------------------------------------------------------------------- 556 | 557 | describe(`when context is defined`, () => { 558 | it(`is passed to functions`, () => { 559 | const getter = jest.fn() 560 | const defaultValue = jest.fn() 561 | const validator = jest.fn().mockReturnValueOnce(true) 562 | const transformer = jest.fn() 563 | const setter = jest.fn() 564 | 565 | const context = { 566 | value: 1, 567 | } 568 | 569 | const descriptors = [ 570 | { 571 | predicate: T, 572 | fields: [ 573 | { 574 | getter, 575 | defaultValue, 576 | validator, 577 | transformer, 578 | setter, 579 | }, 580 | ], 581 | }, 582 | ] 583 | 584 | attachFields(EMPTY_NODE, actions, getNode, descriptors, context) 585 | 586 | expect(getter).toBeCalledWith(EMPTY_NODE, context, actions, getNode) 587 | expect(defaultValue).toBeCalledWith(EMPTY_NODE, context, actions, getNode) 588 | expect(transformer).toBeCalledWith( 589 | undefined, 590 | EMPTY_NODE, 591 | context, 592 | actions, 593 | getNode 594 | ) 595 | expect(validator).toBeCalledWith( 596 | undefined, 597 | EMPTY_NODE, 598 | context, 599 | actions, 600 | getNode 601 | ) 602 | expect(setter).toBeCalledWith( 603 | undefined, 604 | EMPTY_NODE, 605 | context, 606 | actions, 607 | getNode 608 | ) 609 | }) 610 | }) 611 | 612 | // --------------------------------------------------------------------------- 613 | // getNode 614 | // --------------------------------------------------------------------------- 615 | 616 | describe(`getNode function`, () => { 617 | it(`is passed to predicate`, () => { 618 | const predicate = jest.fn() 619 | 620 | const descriptors = [ 621 | { 622 | predicate, 623 | fields: [], 624 | }, 625 | ] 626 | 627 | attachFields(EMPTY_NODE, actions, getNode, descriptors) 628 | 629 | expect(predicate).toBeCalledWith(EMPTY_NODE, getNode) 630 | }) 631 | }) 632 | }) 633 | -------------------------------------------------------------------------------- /src/__tests__/internal/validateDescriptors.js: -------------------------------------------------------------------------------- 1 | import validateDescriptors from '../../internal/validateDescriptors' 2 | 3 | const stubFunction = () => {} 4 | 5 | describe(`validate descriptors`, () => { 6 | it(`is valid for empty array`, () => { 7 | const descriptors = [] 8 | expect(() => validateDescriptors(descriptors)).not.toThrow() 9 | }) 10 | 11 | describe(`invalid descriptors`, () => { 12 | it(`is throws for missing 'fields'`, () => { 13 | const descriptors = [ 14 | { 15 | predicate: stubFunction, 16 | }, 17 | ] 18 | expect(() => validateDescriptors(descriptors)).toThrow( 19 | `[gatsby-plugin-node-fields] ValidationError: "[0].fields" is required` 20 | ) 21 | }) 22 | 23 | it(`is throws for missing 'predicate'`, () => { 24 | const descriptors = [ 25 | { 26 | fields: [{ setter: stubFunction }], 27 | }, 28 | ] 29 | expect(() => validateDescriptors(descriptors)).toThrow( 30 | `[gatsby-plugin-node-fields] ValidationError: "[0].predicate" is required` 31 | ) 32 | }) 33 | 34 | it(`is throws for name not string`, () => { 35 | const descriptors = [ 36 | { 37 | predicate: stubFunction, 38 | fields: [ 39 | { 40 | setter: stubFunction, 41 | name: stubFunction, 42 | }, 43 | ], 44 | }, 45 | ] 46 | expect(() => validateDescriptors(descriptors)).toThrow( 47 | `[gatsby-plugin-node-fields] ValidationError: "[0].fields[0].name" must be a string` 48 | ) 49 | }) 50 | 51 | it(`is throws for name not string`, () => { 52 | const descriptors = [ 53 | { 54 | predicate: stubFunction, 55 | fields: [ 56 | { 57 | setter: stubFunction, 58 | name: stubFunction, 59 | }, 60 | ], 61 | }, 62 | ] 63 | expect(() => validateDescriptors(descriptors)).toThrow( 64 | `[gatsby-plugin-node-fields] ValidationError: "[0].fields[0].name" must be a string` 65 | ) 66 | }) 67 | 68 | it(`is throws for setter not a function`, () => { 69 | const descriptors = [ 70 | { 71 | predicate: stubFunction, 72 | fields: [ 73 | { 74 | setter: ``, 75 | }, 76 | ], 77 | }, 78 | ] 79 | expect(() => validateDescriptors(descriptors)).toThrow( 80 | `[gatsby-plugin-node-fields] ValidationError: "[0].fields[0].setter" must be of type function` 81 | ) 82 | }) 83 | 84 | it(`is throws for getter not a function`, () => { 85 | const descriptors = [ 86 | { 87 | predicate: stubFunction, 88 | fields: [ 89 | { 90 | setter: stubFunction, 91 | getter: ``, 92 | }, 93 | ], 94 | }, 95 | ] 96 | expect(() => validateDescriptors(descriptors)).toThrow( 97 | `[gatsby-plugin-node-fields] ValidationError: "[0].fields[0].getter" must be of type function` 98 | ) 99 | }) 100 | 101 | it(`is throws for validator not a function`, () => { 102 | const descriptors = [ 103 | { 104 | predicate: stubFunction, 105 | fields: [ 106 | { 107 | setter: stubFunction, 108 | validator: ``, 109 | }, 110 | ], 111 | }, 112 | ] 113 | expect(() => validateDescriptors(descriptors)).toThrow( 114 | `[gatsby-plugin-node-fields] ValidationError: "[0].fields[0].validator" must be of type function` 115 | ) 116 | }) 117 | 118 | it(`is throws for transformer not a function`, () => { 119 | const descriptors = [ 120 | { 121 | predicate: stubFunction, 122 | fields: [ 123 | { 124 | setter: stubFunction, 125 | transformer: ``, 126 | }, 127 | ], 128 | }, 129 | ] 130 | expect(() => validateDescriptors(descriptors)).toThrow( 131 | `[gatsby-plugin-node-fields] ValidationError: "[0].fields[0].transformer" must be of type function` 132 | ) 133 | }) 134 | }) 135 | 136 | describe(`minimal valid descriptors`, () => { 137 | it(`is valid for a field with only a 'setter'`, () => { 138 | const descriptors = [ 139 | { 140 | predicate: stubFunction, 141 | fields: [{ setter: stubFunction }], 142 | }, 143 | ] 144 | expect(() => validateDescriptors(descriptors)).not.toThrow() 145 | }) 146 | 147 | it(`is valid for a field with only a 'name'`, () => { 148 | const descriptors = [ 149 | { 150 | predicate: stubFunction, 151 | fields: [{ name: `name` }], 152 | }, 153 | ] 154 | expect(() => validateDescriptors(descriptors)).not.toThrow() 155 | }) 156 | }) 157 | 158 | it(`is valid for a field with 'defaultValue' as function`, () => { 159 | const descriptors = [ 160 | { 161 | predicate: stubFunction, 162 | fields: [{ name: `name`, defaultValue: stubFunction }], 163 | }, 164 | ] 165 | expect(() => validateDescriptors(descriptors)).not.toThrow() 166 | }) 167 | 168 | it(`is valid for a field with validator as function`, () => { 169 | const descriptors = [ 170 | { 171 | predicate: stubFunction, 172 | fields: [{ name: `name`, validator: stubFunction }], 173 | }, 174 | ] 175 | expect(() => validateDescriptors(descriptors)).not.toThrow() 176 | }) 177 | 178 | it(`is valid for a field with transformer as function`, () => { 179 | const descriptors = [ 180 | { 181 | predicate: stubFunction, 182 | fields: [{ name: `name`, transformer: stubFunction }], 183 | }, 184 | ] 185 | expect(() => validateDescriptors(descriptors)).not.toThrow() 186 | }) 187 | }) 188 | -------------------------------------------------------------------------------- /src/internal/attachFields.js: -------------------------------------------------------------------------------- 1 | import { 2 | apply, 3 | flip, 4 | curry, 5 | filter, 6 | forEach, 7 | identity, 8 | ifElse, 9 | pipe, 10 | prop, 11 | __, 12 | } from 'ramda' 13 | import { isFunction, isNotEmpty, isUndefined } from 'ramda-adjunct' 14 | import { throwInvalidFieldError } from './errors' 15 | import validateDescriptors from './validateDescriptors' 16 | 17 | const applyFlipped = flip(apply) 18 | 19 | const getDefaultValue = (node, context, actions, getNode, descriptor) => 20 | ifElse( 21 | isFunction, 22 | apply(__, [node, context, actions, getNode]), 23 | identity 24 | )(descriptor) 25 | 26 | const attachFieldToNode = curry((node, actions, getNode, context, fields) => { 27 | const { name, getter, defaultValue, validator, transformer, setter } = fields 28 | 29 | let fieldValue = isFunction(getter) 30 | ? getter(node, context, actions, getNode) 31 | : node[name] 32 | 33 | if (isUndefined(fieldValue)) { 34 | fieldValue = getDefaultValue(node, context, actions, getNode, defaultValue) 35 | } 36 | 37 | if (validator && !validator(fieldValue, node, context, actions, getNode)) { 38 | throwInvalidFieldError(name, fieldValue) 39 | } 40 | 41 | const value = isFunction(transformer) 42 | ? transformer(fieldValue, node, context, actions, getNode) 43 | : fieldValue 44 | 45 | if (isFunction(setter)) { 46 | setter(value, node, context, actions, getNode) 47 | } else { 48 | actions.createNodeField({ 49 | node, 50 | name, 51 | value, 52 | }) 53 | } 54 | }) 55 | 56 | const attachFieldsToNode = curry( 57 | (node, actions, getNode, context, descriptor) => { 58 | forEach( 59 | attachFieldToNode(node, actions, getNode, context), 60 | descriptor.fields 61 | ) 62 | } 63 | ) 64 | 65 | const appliesToNode = curry((value, getNode, descriptor) => 66 | pipe(prop(`predicate`), applyFlipped([value, getNode]))(descriptor) 67 | ) 68 | 69 | const attachFields = ( 70 | node, 71 | actions, 72 | getNode, 73 | descriptors = [], 74 | context = {} 75 | ) => { 76 | validateDescriptors(descriptors) 77 | 78 | const descriptorsForNode = filter(appliesToNode(node, getNode), descriptors) 79 | 80 | if (isNotEmpty(descriptorsForNode)) { 81 | forEach( 82 | attachFieldsToNode(node, actions, getNode, context), 83 | descriptorsForNode 84 | ) 85 | } 86 | } 87 | 88 | module.exports = attachFields 89 | -------------------------------------------------------------------------------- /src/internal/errors.js: -------------------------------------------------------------------------------- 1 | const ERROR_PREFIX = `[gatsby-plugin-node-fields]` 2 | const INVALID_FIELD_ERROR_PREFIX = `Invalid Field Error` 3 | 4 | const throwLibError = message => { 5 | throw new Error(`${ERROR_PREFIX} ${message}`) 6 | } 7 | 8 | const throwPrefixedError = (prefix, message) => 9 | throwLibError(`${prefix}: ${message}`) 10 | 11 | // eslint-disable-next-line import/prefer-default-export 12 | export const throwInvalidFieldError = (fieldName, fieldValue) => { 13 | throwPrefixedError( 14 | INVALID_FIELD_ERROR_PREFIX, 15 | `Validator function for field named '${fieldName}' returned false for field value '${fieldValue}'` 16 | ) 17 | } 18 | 19 | export const throwSchemaValidationError = error => 20 | throwLibError(error.toString()) 21 | -------------------------------------------------------------------------------- /src/internal/schema.js: -------------------------------------------------------------------------------- 1 | import Joi from '@hapi/joi' 2 | 3 | const field = Joi.object() 4 | .keys({ 5 | name: Joi.string(), 6 | getter: Joi.func(), 7 | defaultValue: Joi.any(), 8 | validator: Joi.func(), 9 | transformer: Joi.func(), 10 | setter: Joi.func(), 11 | }) 12 | .or(`name`, `setter`) 13 | 14 | const descriptor = Joi.object().keys({ 15 | predicate: Joi.func().required(), 16 | fields: Joi.array() 17 | .items(field) 18 | .required(), 19 | }) 20 | 21 | const schema = Joi.array() 22 | .items(descriptor) 23 | .required() 24 | 25 | export default schema 26 | -------------------------------------------------------------------------------- /src/internal/validateDescriptors.js: -------------------------------------------------------------------------------- 1 | import { throwSchemaValidationError } from './errors' 2 | import schema from './schema' 3 | 4 | const validateDescriptors = descriptors => { 5 | const { error, value } = schema.validate(descriptors) 6 | if (error) { 7 | throwSchemaValidationError(error) 8 | } 9 | 10 | return value 11 | } 12 | 13 | export default validateDescriptors 14 | -------------------------------------------------------------------------------- /src/onCreateNode.js: -------------------------------------------------------------------------------- 1 | import attachFields from './internal/attachFields' 2 | 3 | const onCreateNode = ({ node, actions, getNode }, { context, descriptors }) => { 4 | if (descriptors) { 5 | attachFields(node, actions, getNode, descriptors, context) 6 | } 7 | } 8 | 9 | export default onCreateNode 10 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@^7.0.0-beta.35": 6 | version "7.0.0-beta.51" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0-beta.51.tgz#bd71d9b192af978df915829d39d4094456439a0c" 8 | dependencies: 9 | "@babel/highlight" "7.0.0-beta.51" 10 | 11 | "@babel/highlight@7.0.0-beta.51": 12 | version "7.0.0-beta.51" 13 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0-beta.51.tgz#e8844ae25a1595ccfd42b89623b4376ca06d225d" 14 | dependencies: 15 | chalk "^2.0.0" 16 | esutils "^2.0.2" 17 | js-tokens "^3.0.0" 18 | 19 | abab@^1.0.4: 20 | version "1.0.4" 21 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.4.tgz#5faad9c2c07f60dd76770f71cf025b62a63cfd4e" 22 | 23 | abbrev@1: 24 | version "1.1.1" 25 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 26 | 27 | acorn-globals@^4.1.0: 28 | version "4.1.0" 29 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.1.0.tgz#ab716025dbe17c54d3ef81d32ece2b2d99fe2538" 30 | dependencies: 31 | acorn "^5.0.0" 32 | 33 | acorn-jsx@^3.0.0: 34 | version "3.0.1" 35 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 36 | dependencies: 37 | acorn "^3.0.4" 38 | 39 | acorn@^3.0.4: 40 | version "3.3.0" 41 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 42 | 43 | acorn@^5.0.0, acorn@^5.3.0, acorn@^5.5.0: 44 | version "5.6.2" 45 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.6.2.tgz#b1da1d7be2ac1b4a327fb9eab851702c5045b4e7" 46 | 47 | agent-base@^4.1.0: 48 | version "4.2.0" 49 | resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-4.2.0.tgz#9838b5c3392b962bad031e6a4c5e1024abec45ce" 50 | dependencies: 51 | es6-promisify "^5.0.0" 52 | 53 | ajv-keywords@^2.1.0: 54 | version "2.1.1" 55 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762" 56 | 57 | ajv@^5.1.0, ajv@^5.2.3, ajv@^5.3.0: 58 | version "5.5.2" 59 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 60 | dependencies: 61 | co "^4.6.0" 62 | fast-deep-equal "^1.0.0" 63 | fast-json-stable-stringify "^2.0.0" 64 | json-schema-traverse "^0.3.0" 65 | 66 | align-text@^0.1.1, align-text@^0.1.3: 67 | version "0.1.4" 68 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 69 | dependencies: 70 | kind-of "^3.0.2" 71 | longest "^1.0.1" 72 | repeat-string "^1.5.2" 73 | 74 | amdefine@>=0.0.4: 75 | version "1.0.1" 76 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 77 | 78 | ansi-escapes@^3.0.0: 79 | version "3.1.0" 80 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.1.0.tgz#f73207bb81207d75fd6c83f125af26eea378ca30" 81 | 82 | ansi-regex@^2.0.0: 83 | version "2.1.1" 84 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 85 | 86 | ansi-regex@^3.0.0: 87 | version "3.0.0" 88 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 89 | 90 | ansi-styles@^2.2.1: 91 | version "2.2.1" 92 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 93 | 94 | ansi-styles@^3.2.0, ansi-styles@^3.2.1: 95 | version "3.2.1" 96 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 97 | dependencies: 98 | color-convert "^1.9.0" 99 | 100 | anymatch@^1.3.0: 101 | version "1.3.2" 102 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 103 | dependencies: 104 | micromatch "^2.1.5" 105 | normalize-path "^2.0.0" 106 | 107 | anymatch@^2.0.0: 108 | version "2.0.0" 109 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" 110 | dependencies: 111 | micromatch "^3.1.4" 112 | normalize-path "^2.1.1" 113 | 114 | append-transform@^1.0.0: 115 | version "1.0.0" 116 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-1.0.0.tgz#046a52ae582a228bd72f58acfbe2967c678759ab" 117 | dependencies: 118 | default-require-extensions "^2.0.0" 119 | 120 | aproba@^1.0.3: 121 | version "1.2.0" 122 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 123 | 124 | are-we-there-yet@~1.1.2: 125 | version "1.1.5" 126 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" 127 | dependencies: 128 | delegates "^1.0.0" 129 | readable-stream "^2.0.6" 130 | 131 | argparse@^1.0.7: 132 | version "1.0.10" 133 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 134 | dependencies: 135 | sprintf-js "~1.0.2" 136 | 137 | argv@0.0.2: 138 | version "0.0.2" 139 | resolved "https://registry.yarnpkg.com/argv/-/argv-0.0.2.tgz#ecbd16f8949b157183711b1bda334f37840185ab" 140 | 141 | aria-query@^0.7.0: 142 | version "0.7.1" 143 | resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-0.7.1.tgz#26cbb5aff64144b0a825be1846e0b16cfa00b11e" 144 | dependencies: 145 | ast-types-flow "0.0.7" 146 | commander "^2.11.0" 147 | 148 | arr-diff@^2.0.0: 149 | version "2.0.0" 150 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 151 | dependencies: 152 | arr-flatten "^1.0.1" 153 | 154 | arr-diff@^4.0.0: 155 | version "4.0.0" 156 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 157 | 158 | arr-flatten@^1.0.1, arr-flatten@^1.1.0: 159 | version "1.1.0" 160 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 161 | 162 | arr-union@^3.1.0: 163 | version "3.1.0" 164 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 165 | 166 | array-equal@^1.0.0: 167 | version "1.0.0" 168 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 169 | 170 | array-includes@^3.0.3: 171 | version "3.0.3" 172 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.0.3.tgz#184b48f62d92d7452bb31b323165c7f8bd02266d" 173 | dependencies: 174 | define-properties "^1.1.2" 175 | es-abstract "^1.7.0" 176 | 177 | array-union@^1.0.1: 178 | version "1.0.2" 179 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 180 | dependencies: 181 | array-uniq "^1.0.1" 182 | 183 | array-uniq@^1.0.1: 184 | version "1.0.3" 185 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 186 | 187 | array-unique@^0.2.1: 188 | version "0.2.1" 189 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 190 | 191 | array-unique@^0.3.2: 192 | version "0.3.2" 193 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 194 | 195 | arrify@^1.0.0, arrify@^1.0.1: 196 | version "1.0.1" 197 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 198 | 199 | asap@~2.0.3: 200 | version "2.0.6" 201 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" 202 | 203 | asn1@~0.2.3: 204 | version "0.2.3" 205 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 206 | 207 | assert-plus@1.0.0, assert-plus@^1.0.0: 208 | version "1.0.0" 209 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 210 | 211 | assign-symbols@^1.0.0: 212 | version "1.0.0" 213 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 214 | 215 | ast-types-flow@0.0.7: 216 | version "0.0.7" 217 | resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad" 218 | 219 | astral-regex@^1.0.0: 220 | version "1.0.0" 221 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" 222 | 223 | async-each@^1.0.0: 224 | version "1.0.1" 225 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 226 | 227 | async-limiter@~1.0.0: 228 | version "1.0.0" 229 | resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8" 230 | 231 | async@^1.4.0: 232 | version "1.5.2" 233 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 234 | 235 | async@^2.1.4: 236 | version "2.6.1" 237 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.1.tgz#b245a23ca71930044ec53fa46aa00a3e87c6a610" 238 | dependencies: 239 | lodash "^4.17.10" 240 | 241 | asynckit@^0.4.0: 242 | version "0.4.0" 243 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 244 | 245 | atob@^2.1.1: 246 | version "2.1.1" 247 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.1.tgz#ae2d5a729477f289d60dd7f96a6314a22dd6c22a" 248 | 249 | aws-sign2@~0.7.0: 250 | version "0.7.0" 251 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 252 | 253 | aws4@^1.6.0: 254 | version "1.7.0" 255 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.7.0.tgz#d4d0e9b9dbfca77bf08eeb0a8a471550fe39e289" 256 | 257 | axobject-query@^0.1.0: 258 | version "0.1.0" 259 | resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-0.1.0.tgz#62f59dbc59c9f9242759ca349960e7a2fe3c36c0" 260 | dependencies: 261 | ast-types-flow "0.0.7" 262 | 263 | babel-cli@^6.26.0: 264 | version "6.26.0" 265 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.26.0.tgz#502ab54874d7db88ad00b887a06383ce03d002f1" 266 | dependencies: 267 | babel-core "^6.26.0" 268 | babel-polyfill "^6.26.0" 269 | babel-register "^6.26.0" 270 | babel-runtime "^6.26.0" 271 | commander "^2.11.0" 272 | convert-source-map "^1.5.0" 273 | fs-readdir-recursive "^1.0.0" 274 | glob "^7.1.2" 275 | lodash "^4.17.4" 276 | output-file-sync "^1.1.2" 277 | path-is-absolute "^1.0.1" 278 | slash "^1.0.0" 279 | source-map "^0.5.6" 280 | v8flags "^2.1.1" 281 | optionalDependencies: 282 | chokidar "^1.6.1" 283 | 284 | babel-code-frame@^6.22.0, babel-code-frame@^6.26.0: 285 | version "6.26.0" 286 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 287 | dependencies: 288 | chalk "^1.1.3" 289 | esutils "^2.0.2" 290 | js-tokens "^3.0.2" 291 | 292 | babel-core@6.26.3, babel-core@^6.0.0, babel-core@^6.26.0: 293 | version "6.26.3" 294 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.3.tgz#b2e2f09e342d0f0c88e2f02e067794125e75c207" 295 | dependencies: 296 | babel-code-frame "^6.26.0" 297 | babel-generator "^6.26.0" 298 | babel-helpers "^6.24.1" 299 | babel-messages "^6.23.0" 300 | babel-register "^6.26.0" 301 | babel-runtime "^6.26.0" 302 | babel-template "^6.26.0" 303 | babel-traverse "^6.26.0" 304 | babel-types "^6.26.0" 305 | babylon "^6.18.0" 306 | convert-source-map "^1.5.1" 307 | debug "^2.6.9" 308 | json5 "^0.5.1" 309 | lodash "^4.17.4" 310 | minimatch "^3.0.4" 311 | path-is-absolute "^1.0.1" 312 | private "^0.1.8" 313 | slash "^1.0.0" 314 | source-map "^0.5.7" 315 | 316 | babel-generator@^6.18.0, babel-generator@^6.26.0: 317 | version "6.26.1" 318 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" 319 | dependencies: 320 | babel-messages "^6.23.0" 321 | babel-runtime "^6.26.0" 322 | babel-types "^6.26.0" 323 | detect-indent "^4.0.0" 324 | jsesc "^1.3.0" 325 | lodash "^4.17.4" 326 | source-map "^0.5.7" 327 | trim-right "^1.0.1" 328 | 329 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 330 | version "6.24.1" 331 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 332 | dependencies: 333 | babel-helper-explode-assignable-expression "^6.24.1" 334 | babel-runtime "^6.22.0" 335 | babel-types "^6.24.1" 336 | 337 | babel-helper-call-delegate@^6.24.1: 338 | version "6.24.1" 339 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 340 | dependencies: 341 | babel-helper-hoist-variables "^6.24.1" 342 | babel-runtime "^6.22.0" 343 | babel-traverse "^6.24.1" 344 | babel-types "^6.24.1" 345 | 346 | babel-helper-define-map@^6.24.1: 347 | version "6.26.0" 348 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 349 | dependencies: 350 | babel-helper-function-name "^6.24.1" 351 | babel-runtime "^6.26.0" 352 | babel-types "^6.26.0" 353 | lodash "^4.17.4" 354 | 355 | babel-helper-explode-assignable-expression@^6.24.1: 356 | version "6.24.1" 357 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 358 | dependencies: 359 | babel-runtime "^6.22.0" 360 | babel-traverse "^6.24.1" 361 | babel-types "^6.24.1" 362 | 363 | babel-helper-function-name@^6.24.1: 364 | version "6.24.1" 365 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 366 | dependencies: 367 | babel-helper-get-function-arity "^6.24.1" 368 | babel-runtime "^6.22.0" 369 | babel-template "^6.24.1" 370 | babel-traverse "^6.24.1" 371 | babel-types "^6.24.1" 372 | 373 | babel-helper-get-function-arity@^6.24.1: 374 | version "6.24.1" 375 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 376 | dependencies: 377 | babel-runtime "^6.22.0" 378 | babel-types "^6.24.1" 379 | 380 | babel-helper-hoist-variables@^6.24.1: 381 | version "6.24.1" 382 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 383 | dependencies: 384 | babel-runtime "^6.22.0" 385 | babel-types "^6.24.1" 386 | 387 | babel-helper-optimise-call-expression@^6.24.1: 388 | version "6.24.1" 389 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 390 | dependencies: 391 | babel-runtime "^6.22.0" 392 | babel-types "^6.24.1" 393 | 394 | babel-helper-regex@^6.24.1: 395 | version "6.26.0" 396 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 397 | dependencies: 398 | babel-runtime "^6.26.0" 399 | babel-types "^6.26.0" 400 | lodash "^4.17.4" 401 | 402 | babel-helper-remap-async-to-generator@^6.24.1: 403 | version "6.24.1" 404 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 405 | dependencies: 406 | babel-helper-function-name "^6.24.1" 407 | babel-runtime "^6.22.0" 408 | babel-template "^6.24.1" 409 | babel-traverse "^6.24.1" 410 | babel-types "^6.24.1" 411 | 412 | babel-helper-replace-supers@^6.24.1: 413 | version "6.24.1" 414 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 415 | dependencies: 416 | babel-helper-optimise-call-expression "^6.24.1" 417 | babel-messages "^6.23.0" 418 | babel-runtime "^6.22.0" 419 | babel-template "^6.24.1" 420 | babel-traverse "^6.24.1" 421 | babel-types "^6.24.1" 422 | 423 | babel-helpers@^6.24.1: 424 | version "6.24.1" 425 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 426 | dependencies: 427 | babel-runtime "^6.22.0" 428 | babel-template "^6.24.1" 429 | 430 | babel-jest@^23.0.1: 431 | version "23.0.1" 432 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-23.0.1.tgz#bbad3bf523fb202da05ed0a6540b48c84eed13a6" 433 | dependencies: 434 | babel-plugin-istanbul "^4.1.6" 435 | babel-preset-jest "^23.0.1" 436 | 437 | babel-messages@^6.23.0: 438 | version "6.23.0" 439 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 440 | dependencies: 441 | babel-runtime "^6.22.0" 442 | 443 | babel-plugin-check-es2015-constants@^6.22.0: 444 | version "6.22.0" 445 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 446 | dependencies: 447 | babel-runtime "^6.22.0" 448 | 449 | babel-plugin-external-helpers@^6.22.0: 450 | version "6.22.0" 451 | resolved "https://registry.yarnpkg.com/babel-plugin-external-helpers/-/babel-plugin-external-helpers-6.22.0.tgz#2285f48b02bd5dede85175caf8c62e86adccefa1" 452 | dependencies: 453 | babel-runtime "^6.22.0" 454 | 455 | babel-plugin-istanbul@^4.1.6: 456 | version "4.1.6" 457 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.6.tgz#36c59b2192efce81c5b378321b74175add1c9a45" 458 | dependencies: 459 | babel-plugin-syntax-object-rest-spread "^6.13.0" 460 | find-up "^2.1.0" 461 | istanbul-lib-instrument "^1.10.1" 462 | test-exclude "^4.2.1" 463 | 464 | babel-plugin-jest-hoist@^23.0.1: 465 | version "23.0.1" 466 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-23.0.1.tgz#eaa11c964563aea9c21becef2bdf7853f7f3c148" 467 | 468 | babel-plugin-syntax-async-functions@^6.8.0: 469 | version "6.13.0" 470 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 471 | 472 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 473 | version "6.13.0" 474 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 475 | 476 | babel-plugin-syntax-object-rest-spread@^6.13.0, babel-plugin-syntax-object-rest-spread@^6.8.0: 477 | version "6.13.0" 478 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 479 | 480 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 481 | version "6.22.0" 482 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 483 | 484 | babel-plugin-transform-async-to-generator@^6.22.0: 485 | version "6.24.1" 486 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 487 | dependencies: 488 | babel-helper-remap-async-to-generator "^6.24.1" 489 | babel-plugin-syntax-async-functions "^6.8.0" 490 | babel-runtime "^6.22.0" 491 | 492 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 493 | version "6.22.0" 494 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 495 | dependencies: 496 | babel-runtime "^6.22.0" 497 | 498 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 499 | version "6.22.0" 500 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 501 | dependencies: 502 | babel-runtime "^6.22.0" 503 | 504 | babel-plugin-transform-es2015-block-scoping@^6.23.0: 505 | version "6.26.0" 506 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 507 | dependencies: 508 | babel-runtime "^6.26.0" 509 | babel-template "^6.26.0" 510 | babel-traverse "^6.26.0" 511 | babel-types "^6.26.0" 512 | lodash "^4.17.4" 513 | 514 | babel-plugin-transform-es2015-classes@^6.23.0: 515 | version "6.24.1" 516 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 517 | dependencies: 518 | babel-helper-define-map "^6.24.1" 519 | babel-helper-function-name "^6.24.1" 520 | babel-helper-optimise-call-expression "^6.24.1" 521 | babel-helper-replace-supers "^6.24.1" 522 | babel-messages "^6.23.0" 523 | babel-runtime "^6.22.0" 524 | babel-template "^6.24.1" 525 | babel-traverse "^6.24.1" 526 | babel-types "^6.24.1" 527 | 528 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 529 | version "6.24.1" 530 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 531 | dependencies: 532 | babel-runtime "^6.22.0" 533 | babel-template "^6.24.1" 534 | 535 | babel-plugin-transform-es2015-destructuring@^6.23.0: 536 | version "6.23.0" 537 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 538 | dependencies: 539 | babel-runtime "^6.22.0" 540 | 541 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 542 | version "6.24.1" 543 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 544 | dependencies: 545 | babel-runtime "^6.22.0" 546 | babel-types "^6.24.1" 547 | 548 | babel-plugin-transform-es2015-for-of@^6.23.0: 549 | version "6.23.0" 550 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 551 | dependencies: 552 | babel-runtime "^6.22.0" 553 | 554 | babel-plugin-transform-es2015-function-name@^6.22.0: 555 | version "6.24.1" 556 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 557 | dependencies: 558 | babel-helper-function-name "^6.24.1" 559 | babel-runtime "^6.22.0" 560 | babel-types "^6.24.1" 561 | 562 | babel-plugin-transform-es2015-literals@^6.22.0: 563 | version "6.22.0" 564 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 565 | dependencies: 566 | babel-runtime "^6.22.0" 567 | 568 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: 569 | version "6.24.1" 570 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 571 | dependencies: 572 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 573 | babel-runtime "^6.22.0" 574 | babel-template "^6.24.1" 575 | 576 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 577 | version "6.26.2" 578 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz#58a793863a9e7ca870bdc5a881117ffac27db6f3" 579 | dependencies: 580 | babel-plugin-transform-strict-mode "^6.24.1" 581 | babel-runtime "^6.26.0" 582 | babel-template "^6.26.0" 583 | babel-types "^6.26.0" 584 | 585 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0: 586 | version "6.24.1" 587 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 588 | dependencies: 589 | babel-helper-hoist-variables "^6.24.1" 590 | babel-runtime "^6.22.0" 591 | babel-template "^6.24.1" 592 | 593 | babel-plugin-transform-es2015-modules-umd@^6.23.0: 594 | version "6.24.1" 595 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 596 | dependencies: 597 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 598 | babel-runtime "^6.22.0" 599 | babel-template "^6.24.1" 600 | 601 | babel-plugin-transform-es2015-object-super@^6.22.0: 602 | version "6.24.1" 603 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 604 | dependencies: 605 | babel-helper-replace-supers "^6.24.1" 606 | babel-runtime "^6.22.0" 607 | 608 | babel-plugin-transform-es2015-parameters@^6.23.0: 609 | version "6.24.1" 610 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 611 | dependencies: 612 | babel-helper-call-delegate "^6.24.1" 613 | babel-helper-get-function-arity "^6.24.1" 614 | babel-runtime "^6.22.0" 615 | babel-template "^6.24.1" 616 | babel-traverse "^6.24.1" 617 | babel-types "^6.24.1" 618 | 619 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 620 | version "6.24.1" 621 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 622 | dependencies: 623 | babel-runtime "^6.22.0" 624 | babel-types "^6.24.1" 625 | 626 | babel-plugin-transform-es2015-spread@^6.22.0: 627 | version "6.22.0" 628 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 629 | dependencies: 630 | babel-runtime "^6.22.0" 631 | 632 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 633 | version "6.24.1" 634 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 635 | dependencies: 636 | babel-helper-regex "^6.24.1" 637 | babel-runtime "^6.22.0" 638 | babel-types "^6.24.1" 639 | 640 | babel-plugin-transform-es2015-template-literals@^6.22.0: 641 | version "6.22.0" 642 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 643 | dependencies: 644 | babel-runtime "^6.22.0" 645 | 646 | babel-plugin-transform-es2015-typeof-symbol@^6.23.0: 647 | version "6.23.0" 648 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 649 | dependencies: 650 | babel-runtime "^6.22.0" 651 | 652 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 653 | version "6.24.1" 654 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 655 | dependencies: 656 | babel-helper-regex "^6.24.1" 657 | babel-runtime "^6.22.0" 658 | regexpu-core "^2.0.0" 659 | 660 | babel-plugin-transform-exponentiation-operator@^6.22.0: 661 | version "6.24.1" 662 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 663 | dependencies: 664 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 665 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 666 | babel-runtime "^6.22.0" 667 | 668 | babel-plugin-transform-object-rest-spread@^6.26.0: 669 | version "6.26.0" 670 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06" 671 | dependencies: 672 | babel-plugin-syntax-object-rest-spread "^6.8.0" 673 | babel-runtime "^6.26.0" 674 | 675 | babel-plugin-transform-regenerator@^6.22.0: 676 | version "6.26.0" 677 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 678 | dependencies: 679 | regenerator-transform "^0.10.0" 680 | 681 | babel-plugin-transform-strict-mode@^6.24.1: 682 | version "6.24.1" 683 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 684 | dependencies: 685 | babel-runtime "^6.22.0" 686 | babel-types "^6.24.1" 687 | 688 | babel-polyfill@^6.26.0: 689 | version "6.26.0" 690 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" 691 | dependencies: 692 | babel-runtime "^6.26.0" 693 | core-js "^2.5.0" 694 | regenerator-runtime "^0.10.5" 695 | 696 | babel-preset-env@^1.6.1: 697 | version "1.7.0" 698 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.7.0.tgz#dea79fa4ebeb883cd35dab07e260c1c9c04df77a" 699 | dependencies: 700 | babel-plugin-check-es2015-constants "^6.22.0" 701 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 702 | babel-plugin-transform-async-to-generator "^6.22.0" 703 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 704 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 705 | babel-plugin-transform-es2015-block-scoping "^6.23.0" 706 | babel-plugin-transform-es2015-classes "^6.23.0" 707 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 708 | babel-plugin-transform-es2015-destructuring "^6.23.0" 709 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 710 | babel-plugin-transform-es2015-for-of "^6.23.0" 711 | babel-plugin-transform-es2015-function-name "^6.22.0" 712 | babel-plugin-transform-es2015-literals "^6.22.0" 713 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 714 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0" 715 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0" 716 | babel-plugin-transform-es2015-modules-umd "^6.23.0" 717 | babel-plugin-transform-es2015-object-super "^6.22.0" 718 | babel-plugin-transform-es2015-parameters "^6.23.0" 719 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 720 | babel-plugin-transform-es2015-spread "^6.22.0" 721 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 722 | babel-plugin-transform-es2015-template-literals "^6.22.0" 723 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0" 724 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 725 | babel-plugin-transform-exponentiation-operator "^6.22.0" 726 | babel-plugin-transform-regenerator "^6.22.0" 727 | browserslist "^3.2.6" 728 | invariant "^2.2.2" 729 | semver "^5.3.0" 730 | 731 | babel-preset-jest@^23.0.1: 732 | version "23.0.1" 733 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-23.0.1.tgz#631cc545c6cf021943013bcaf22f45d87fe62198" 734 | dependencies: 735 | babel-plugin-jest-hoist "^23.0.1" 736 | babel-plugin-syntax-object-rest-spread "^6.13.0" 737 | 738 | babel-register@^6.26.0: 739 | version "6.26.0" 740 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 741 | dependencies: 742 | babel-core "^6.26.0" 743 | babel-runtime "^6.26.0" 744 | core-js "^2.5.0" 745 | home-or-tmp "^2.0.0" 746 | lodash "^4.17.4" 747 | mkdirp "^0.5.1" 748 | source-map-support "^0.4.15" 749 | 750 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 751 | version "6.26.0" 752 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 753 | dependencies: 754 | core-js "^2.4.0" 755 | regenerator-runtime "^0.11.0" 756 | 757 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0: 758 | version "6.26.0" 759 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 760 | dependencies: 761 | babel-runtime "^6.26.0" 762 | babel-traverse "^6.26.0" 763 | babel-types "^6.26.0" 764 | babylon "^6.18.0" 765 | lodash "^4.17.4" 766 | 767 | babel-traverse@^6.18.0, babel-traverse@^6.24.1, babel-traverse@^6.26.0: 768 | version "6.26.0" 769 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 770 | dependencies: 771 | babel-code-frame "^6.26.0" 772 | babel-messages "^6.23.0" 773 | babel-runtime "^6.26.0" 774 | babel-types "^6.26.0" 775 | babylon "^6.18.0" 776 | debug "^2.6.8" 777 | globals "^9.18.0" 778 | invariant "^2.2.2" 779 | lodash "^4.17.4" 780 | 781 | babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: 782 | version "6.26.0" 783 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 784 | dependencies: 785 | babel-runtime "^6.26.0" 786 | esutils "^2.0.2" 787 | lodash "^4.17.4" 788 | to-fast-properties "^1.0.3" 789 | 790 | babylon@^6.18.0: 791 | version "6.18.0" 792 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 793 | 794 | balanced-match@^1.0.0: 795 | version "1.0.0" 796 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 797 | 798 | base@^0.11.1: 799 | version "0.11.2" 800 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 801 | dependencies: 802 | cache-base "^1.0.1" 803 | class-utils "^0.3.5" 804 | component-emitter "^1.2.1" 805 | define-property "^1.0.0" 806 | isobject "^3.0.1" 807 | mixin-deep "^1.2.0" 808 | pascalcase "^0.1.1" 809 | 810 | bcrypt-pbkdf@^1.0.0: 811 | version "1.0.1" 812 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 813 | dependencies: 814 | tweetnacl "^0.14.3" 815 | 816 | binary-extensions@^1.0.0: 817 | version "1.11.0" 818 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 819 | 820 | boom@5.x.x: 821 | version "5.2.0" 822 | resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02" 823 | dependencies: 824 | hoek "4.x.x" 825 | 826 | brace-expansion@^1.1.7: 827 | version "1.1.11" 828 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 829 | dependencies: 830 | balanced-match "^1.0.0" 831 | concat-map "0.0.1" 832 | 833 | braces@^1.8.2: 834 | version "1.8.5" 835 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 836 | dependencies: 837 | expand-range "^1.8.1" 838 | preserve "^0.2.0" 839 | repeat-element "^1.1.2" 840 | 841 | braces@^2.3.1: 842 | version "2.3.2" 843 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" 844 | dependencies: 845 | arr-flatten "^1.1.0" 846 | array-unique "^0.3.2" 847 | extend-shallow "^2.0.1" 848 | fill-range "^4.0.0" 849 | isobject "^3.0.1" 850 | repeat-element "^1.1.2" 851 | snapdragon "^0.8.1" 852 | snapdragon-node "^2.0.1" 853 | split-string "^3.0.2" 854 | to-regex "^3.0.1" 855 | 856 | browser-process-hrtime@^0.1.2: 857 | version "0.1.2" 858 | resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-0.1.2.tgz#425d68a58d3447f02a04aa894187fce8af8b7b8e" 859 | 860 | browser-resolve@^1.11.2: 861 | version "1.11.2" 862 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 863 | dependencies: 864 | resolve "1.1.7" 865 | 866 | browserslist@^3.2.6: 867 | version "3.2.8" 868 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-3.2.8.tgz#b0005361d6471f0f5952797a76fc985f1f978fc6" 869 | dependencies: 870 | caniuse-lite "^1.0.30000844" 871 | electron-to-chromium "^1.3.47" 872 | 873 | bser@^2.0.0: 874 | version "2.0.0" 875 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 876 | dependencies: 877 | node-int64 "^0.4.0" 878 | 879 | buffer-from@^1.0.0: 880 | version "1.1.0" 881 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.0.tgz#87fcaa3a298358e0ade6e442cfce840740d1ad04" 882 | 883 | builtin-modules@^1.0.0: 884 | version "1.1.1" 885 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 886 | 887 | cache-base@^1.0.1: 888 | version "1.0.1" 889 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 890 | dependencies: 891 | collection-visit "^1.0.0" 892 | component-emitter "^1.2.1" 893 | get-value "^2.0.6" 894 | has-value "^1.0.0" 895 | isobject "^3.0.1" 896 | set-value "^2.0.0" 897 | to-object-path "^0.3.0" 898 | union-value "^1.0.0" 899 | unset-value "^1.0.0" 900 | 901 | caller-path@^0.1.0: 902 | version "0.1.0" 903 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 904 | dependencies: 905 | callsites "^0.2.0" 906 | 907 | callsites@^0.2.0: 908 | version "0.2.0" 909 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 910 | 911 | callsites@^2.0.0: 912 | version "2.0.0" 913 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 914 | 915 | camelcase@^1.0.2: 916 | version "1.2.1" 917 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 918 | 919 | camelcase@^4.1.0: 920 | version "4.1.0" 921 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 922 | 923 | caniuse-lite@^1.0.30000844: 924 | version "1.0.30000853" 925 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000853.tgz#505249fc78d60e20ad47af3c13706d6f9fd209fd" 926 | 927 | capture-exit@^1.2.0: 928 | version "1.2.0" 929 | resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-1.2.0.tgz#1c5fcc489fd0ab00d4f1ac7ae1072e3173fbab6f" 930 | dependencies: 931 | rsvp "^3.3.3" 932 | 933 | caseless@~0.12.0: 934 | version "0.12.0" 935 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 936 | 937 | center-align@^0.1.1: 938 | version "0.1.3" 939 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 940 | dependencies: 941 | align-text "^0.1.3" 942 | lazy-cache "^1.0.3" 943 | 944 | chalk@^1.1.3: 945 | version "1.1.3" 946 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 947 | dependencies: 948 | ansi-styles "^2.2.1" 949 | escape-string-regexp "^1.0.2" 950 | has-ansi "^2.0.0" 951 | strip-ansi "^3.0.0" 952 | supports-color "^2.0.0" 953 | 954 | chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0: 955 | version "2.4.1" 956 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e" 957 | dependencies: 958 | ansi-styles "^3.2.1" 959 | escape-string-regexp "^1.0.5" 960 | supports-color "^5.3.0" 961 | 962 | chardet@^0.4.0: 963 | version "0.4.2" 964 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2" 965 | 966 | chokidar@^1.6.1: 967 | version "1.7.0" 968 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 969 | dependencies: 970 | anymatch "^1.3.0" 971 | async-each "^1.0.0" 972 | glob-parent "^2.0.0" 973 | inherits "^2.0.1" 974 | is-binary-path "^1.0.0" 975 | is-glob "^2.0.0" 976 | path-is-absolute "^1.0.0" 977 | readdirp "^2.0.0" 978 | optionalDependencies: 979 | fsevents "^1.0.0" 980 | 981 | chownr@^1.0.1: 982 | version "1.0.1" 983 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.0.1.tgz#e2a75042a9551908bebd25b8523d5f9769d79181" 984 | 985 | ci-info@^1.0.0: 986 | version "1.1.3" 987 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.3.tgz#710193264bb05c77b8c90d02f5aaf22216a667b2" 988 | 989 | circular-json@^0.3.1: 990 | version "0.3.3" 991 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" 992 | 993 | class-utils@^0.3.5: 994 | version "0.3.6" 995 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 996 | dependencies: 997 | arr-union "^3.1.0" 998 | define-property "^0.2.5" 999 | isobject "^3.0.0" 1000 | static-extend "^0.1.1" 1001 | 1002 | cli-cursor@^2.1.0: 1003 | version "2.1.0" 1004 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 1005 | dependencies: 1006 | restore-cursor "^2.0.0" 1007 | 1008 | cli-table2@^0.2.0: 1009 | version "0.2.0" 1010 | resolved "https://registry.yarnpkg.com/cli-table2/-/cli-table2-0.2.0.tgz#2d1ef7f218a0e786e214540562d4bd177fe32d97" 1011 | dependencies: 1012 | lodash "^3.10.1" 1013 | string-width "^1.0.1" 1014 | optionalDependencies: 1015 | colors "^1.1.2" 1016 | 1017 | cli-width@^2.0.0: 1018 | version "2.2.0" 1019 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 1020 | 1021 | cliui@^2.1.0: 1022 | version "2.1.0" 1023 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 1024 | dependencies: 1025 | center-align "^0.1.1" 1026 | right-align "^0.1.1" 1027 | wordwrap "0.0.2" 1028 | 1029 | cliui@^3.2.0: 1030 | version "3.2.0" 1031 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 1032 | dependencies: 1033 | string-width "^1.0.1" 1034 | strip-ansi "^3.0.1" 1035 | wrap-ansi "^2.0.0" 1036 | 1037 | cliui@^4.0.0: 1038 | version "4.1.0" 1039 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49" 1040 | dependencies: 1041 | string-width "^2.1.1" 1042 | strip-ansi "^4.0.0" 1043 | wrap-ansi "^2.0.0" 1044 | 1045 | co@^4.6.0: 1046 | version "4.6.0" 1047 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 1048 | 1049 | code-point-at@^1.0.0: 1050 | version "1.1.0" 1051 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 1052 | 1053 | codecov@^3.0.0: 1054 | version "3.0.2" 1055 | resolved "https://registry.yarnpkg.com/codecov/-/codecov-3.0.2.tgz#aea43843a5cd2fb6b7e488b2eff25d367ab70b12" 1056 | dependencies: 1057 | argv "0.0.2" 1058 | request "^2.81.0" 1059 | urlgrey "0.4.4" 1060 | 1061 | collection-visit@^1.0.0: 1062 | version "1.0.0" 1063 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 1064 | dependencies: 1065 | map-visit "^1.0.0" 1066 | object-visit "^1.0.0" 1067 | 1068 | color-convert@^1.9.0: 1069 | version "1.9.2" 1070 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.2.tgz#49881b8fba67df12a96bdf3f56c0aab9e7913147" 1071 | dependencies: 1072 | color-name "1.1.1" 1073 | 1074 | color-name@1.1.1: 1075 | version "1.1.1" 1076 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.1.tgz#4b1415304cf50028ea81643643bd82ea05803689" 1077 | 1078 | colors@^1.1.2: 1079 | version "1.3.0" 1080 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.3.0.tgz#5f20c9fef6945cb1134260aab33bfbdc8295e04e" 1081 | 1082 | combined-stream@1.0.6, combined-stream@~1.0.5: 1083 | version "1.0.6" 1084 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818" 1085 | dependencies: 1086 | delayed-stream "~1.0.0" 1087 | 1088 | commander@^2.11.0: 1089 | version "2.15.1" 1090 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.15.1.tgz#df46e867d0fc2aec66a34662b406a9ccafff5b0f" 1091 | 1092 | compare-versions@^3.1.0: 1093 | version "3.3.0" 1094 | resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-3.3.0.tgz#af93ea705a96943f622ab309578b9b90586f39c3" 1095 | 1096 | component-emitter@^1.2.1: 1097 | version "1.2.1" 1098 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 1099 | 1100 | concat-map@0.0.1: 1101 | version "0.0.1" 1102 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1103 | 1104 | concat-stream@^1.6.0: 1105 | version "1.6.2" 1106 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" 1107 | dependencies: 1108 | buffer-from "^1.0.0" 1109 | inherits "^2.0.3" 1110 | readable-stream "^2.2.2" 1111 | typedarray "^0.0.6" 1112 | 1113 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1114 | version "1.1.0" 1115 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1116 | 1117 | contains-path@^0.1.0: 1118 | version "0.1.0" 1119 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 1120 | 1121 | convert-source-map@^1.4.0, convert-source-map@^1.5.0, convert-source-map@^1.5.1: 1122 | version "1.5.1" 1123 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 1124 | 1125 | copy-descriptor@^0.1.0: 1126 | version "0.1.1" 1127 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 1128 | 1129 | core-js@^1.0.0: 1130 | version "1.2.7" 1131 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 1132 | 1133 | core-js@^2.4.0, core-js@^2.5.0: 1134 | version "2.5.7" 1135 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.7.tgz#f972608ff0cead68b841a16a932d0b183791814e" 1136 | 1137 | core-util-is@1.0.2, core-util-is@~1.0.0: 1138 | version "1.0.2" 1139 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1140 | 1141 | cosmiconfig@^4.0.0: 1142 | version "4.0.0" 1143 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-4.0.0.tgz#760391549580bbd2df1e562bc177b13c290972dc" 1144 | dependencies: 1145 | is-directory "^0.3.1" 1146 | js-yaml "^3.9.0" 1147 | parse-json "^4.0.0" 1148 | require-from-string "^2.0.1" 1149 | 1150 | cross-spawn@^5.0.1, cross-spawn@^5.1.0: 1151 | version "5.1.0" 1152 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 1153 | dependencies: 1154 | lru-cache "^4.0.1" 1155 | shebang-command "^1.2.0" 1156 | which "^1.2.9" 1157 | 1158 | cssbeautify@^0.3.1: 1159 | version "0.3.1" 1160 | resolved "https://registry.yarnpkg.com/cssbeautify/-/cssbeautify-0.3.1.tgz#12dd1f734035c2e6faca67dcbdcef74e42811397" 1161 | 1162 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 1163 | version "0.3.2" 1164 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 1165 | 1166 | "cssstyle@>= 0.3.1 < 0.4.0": 1167 | version "0.3.1" 1168 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.3.1.tgz#6da9b4cff1bc5d716e6e5fe8e04fcb1b50a49adf" 1169 | dependencies: 1170 | cssom "0.3.x" 1171 | 1172 | cvss@^1.0.2: 1173 | version "1.0.3" 1174 | resolved "https://registry.yarnpkg.com/cvss/-/cvss-1.0.3.tgz#70df9c4a4e07fdb9341f27a2847a21df25c3a83a" 1175 | 1176 | damerau-levenshtein@^1.0.0: 1177 | version "1.0.4" 1178 | resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.4.tgz#03191c432cb6eea168bb77f3a55ffdccb8978514" 1179 | 1180 | dashdash@^1.12.0: 1181 | version "1.14.1" 1182 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1183 | dependencies: 1184 | assert-plus "^1.0.0" 1185 | 1186 | data-urls@^1.0.0: 1187 | version "1.0.0" 1188 | resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-1.0.0.tgz#24802de4e81c298ea8a9388bb0d8e461c774684f" 1189 | dependencies: 1190 | abab "^1.0.4" 1191 | whatwg-mimetype "^2.0.0" 1192 | whatwg-url "^6.4.0" 1193 | 1194 | debug@^2.1.2, debug@^2.2.0, debug@^2.3.3, debug@^2.6.8, debug@^2.6.9: 1195 | version "2.6.9" 1196 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1197 | dependencies: 1198 | ms "2.0.0" 1199 | 1200 | debug@^3.1.0: 1201 | version "3.1.0" 1202 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 1203 | dependencies: 1204 | ms "2.0.0" 1205 | 1206 | decamelize@^1.0.0, decamelize@^1.1.1: 1207 | version "1.2.0" 1208 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1209 | 1210 | decode-uri-component@^0.2.0: 1211 | version "0.2.0" 1212 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 1213 | 1214 | deep-extend@^0.6.0: 1215 | version "0.6.0" 1216 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 1217 | 1218 | deep-is@~0.1.3: 1219 | version "0.1.3" 1220 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1221 | 1222 | default-require-extensions@^2.0.0: 1223 | version "2.0.0" 1224 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-2.0.0.tgz#f5f8fbb18a7d6d50b21f641f649ebb522cfe24f7" 1225 | dependencies: 1226 | strip-bom "^3.0.0" 1227 | 1228 | define-properties@^1.1.2: 1229 | version "1.1.2" 1230 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 1231 | dependencies: 1232 | foreach "^2.0.5" 1233 | object-keys "^1.0.8" 1234 | 1235 | define-property@^0.2.5: 1236 | version "0.2.5" 1237 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 1238 | dependencies: 1239 | is-descriptor "^0.1.0" 1240 | 1241 | define-property@^1.0.0: 1242 | version "1.0.0" 1243 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 1244 | dependencies: 1245 | is-descriptor "^1.0.0" 1246 | 1247 | define-property@^2.0.2: 1248 | version "2.0.2" 1249 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 1250 | dependencies: 1251 | is-descriptor "^1.0.2" 1252 | isobject "^3.0.1" 1253 | 1254 | del@^2.0.2: 1255 | version "2.2.2" 1256 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 1257 | dependencies: 1258 | globby "^5.0.0" 1259 | is-path-cwd "^1.0.0" 1260 | is-path-in-cwd "^1.0.0" 1261 | object-assign "^4.0.1" 1262 | pify "^2.0.0" 1263 | pinkie-promise "^2.0.0" 1264 | rimraf "^2.2.8" 1265 | 1266 | delayed-stream@~1.0.0: 1267 | version "1.0.0" 1268 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1269 | 1270 | delegates@^1.0.0: 1271 | version "1.0.0" 1272 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1273 | 1274 | detect-indent@^4.0.0: 1275 | version "4.0.0" 1276 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1277 | dependencies: 1278 | repeating "^2.0.0" 1279 | 1280 | detect-libc@^1.0.2: 1281 | version "1.0.3" 1282 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 1283 | 1284 | detect-newline@^2.1.0: 1285 | version "2.1.0" 1286 | resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2" 1287 | 1288 | diff@^3.2.0: 1289 | version "3.5.0" 1290 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" 1291 | 1292 | doctrine@1.5.0: 1293 | version "1.5.0" 1294 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 1295 | dependencies: 1296 | esutils "^2.0.2" 1297 | isarray "^1.0.0" 1298 | 1299 | doctrine@^2.1.0: 1300 | version "2.1.0" 1301 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 1302 | dependencies: 1303 | esutils "^2.0.2" 1304 | 1305 | domexception@^1.0.0: 1306 | version "1.0.1" 1307 | resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90" 1308 | dependencies: 1309 | webidl-conversions "^4.0.2" 1310 | 1311 | ecc-jsbn@~0.1.1: 1312 | version "0.1.1" 1313 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1314 | dependencies: 1315 | jsbn "~0.1.0" 1316 | 1317 | electron-to-chromium@^1.3.47: 1318 | version "1.3.48" 1319 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.48.tgz#d3b0d8593814044e092ece2108fc3ac9aea4b900" 1320 | 1321 | emoji-regex@^6.1.0: 1322 | version "6.5.1" 1323 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-6.5.1.tgz#9baea929b155565c11ea41c6626eaa65cef992c2" 1324 | 1325 | encoding@^0.1.11: 1326 | version "0.1.12" 1327 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 1328 | dependencies: 1329 | iconv-lite "~0.4.13" 1330 | 1331 | error-ex@^1.2.0, error-ex@^1.3.1: 1332 | version "1.3.1" 1333 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1334 | dependencies: 1335 | is-arrayish "^0.2.1" 1336 | 1337 | es-abstract@^1.5.1, es-abstract@^1.7.0: 1338 | version "1.12.0" 1339 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.12.0.tgz#9dbbdd27c6856f0001421ca18782d786bf8a6165" 1340 | dependencies: 1341 | es-to-primitive "^1.1.1" 1342 | function-bind "^1.1.1" 1343 | has "^1.0.1" 1344 | is-callable "^1.1.3" 1345 | is-regex "^1.0.4" 1346 | 1347 | es-to-primitive@^1.1.1: 1348 | version "1.1.1" 1349 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 1350 | dependencies: 1351 | is-callable "^1.1.1" 1352 | is-date-object "^1.0.1" 1353 | is-symbol "^1.0.1" 1354 | 1355 | es6-promise@^4.0.3: 1356 | version "4.2.4" 1357 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.2.4.tgz#dc4221c2b16518760bd8c39a52d8f356fc00ed29" 1358 | 1359 | es6-promisify@^5.0.0: 1360 | version "5.0.0" 1361 | resolved "https://registry.yarnpkg.com/es6-promisify/-/es6-promisify-5.0.0.tgz#5109d62f3e56ea967c4b63505aef08291c8a5203" 1362 | dependencies: 1363 | es6-promise "^4.0.3" 1364 | 1365 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1366 | version "1.0.5" 1367 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1368 | 1369 | escodegen@^1.9.0: 1370 | version "1.10.0" 1371 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.10.0.tgz#f647395de22519fbd0d928ffcf1d17e0dec2603e" 1372 | dependencies: 1373 | esprima "^3.1.3" 1374 | estraverse "^4.2.0" 1375 | esutils "^2.0.2" 1376 | optionator "^0.8.1" 1377 | optionalDependencies: 1378 | source-map "~0.6.1" 1379 | 1380 | eslint-config-airbnb-base@^12.1.0: 1381 | version "12.1.0" 1382 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-12.1.0.tgz#386441e54a12ccd957b0a92564a4bafebd747944" 1383 | dependencies: 1384 | eslint-restricted-globals "^0.1.1" 1385 | 1386 | eslint-config-airbnb@^16.1.0: 1387 | version "16.1.0" 1388 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb/-/eslint-config-airbnb-16.1.0.tgz#2546bfb02cc9fe92284bf1723ccf2e87bc45ca46" 1389 | dependencies: 1390 | eslint-config-airbnb-base "^12.1.0" 1391 | 1392 | eslint-config-prettier@^2.7.0: 1393 | version "2.9.0" 1394 | resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-2.9.0.tgz#5ecd65174d486c22dff389fe036febf502d468a3" 1395 | dependencies: 1396 | get-stdin "^5.0.1" 1397 | 1398 | eslint-import-resolver-node@^0.3.1: 1399 | version "0.3.2" 1400 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.2.tgz#58f15fb839b8d0576ca980413476aab2472db66a" 1401 | dependencies: 1402 | debug "^2.6.9" 1403 | resolve "^1.5.0" 1404 | 1405 | eslint-module-utils@^2.2.0: 1406 | version "2.2.0" 1407 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.2.0.tgz#b270362cd88b1a48ad308976ce7fa54e98411746" 1408 | dependencies: 1409 | debug "^2.6.8" 1410 | pkg-dir "^1.0.0" 1411 | 1412 | eslint-plugin-import@^2.8.0: 1413 | version "2.12.0" 1414 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.12.0.tgz#dad31781292d6664b25317fd049d2e2b2f02205d" 1415 | dependencies: 1416 | contains-path "^0.1.0" 1417 | debug "^2.6.8" 1418 | doctrine "1.5.0" 1419 | eslint-import-resolver-node "^0.3.1" 1420 | eslint-module-utils "^2.2.0" 1421 | has "^1.0.1" 1422 | lodash "^4.17.4" 1423 | minimatch "^3.0.3" 1424 | read-pkg-up "^2.0.0" 1425 | resolve "^1.6.0" 1426 | 1427 | eslint-plugin-jsx-a11y@^6.0.2: 1428 | version "6.0.3" 1429 | resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.0.3.tgz#54583d1ae442483162e040e13cc31865465100e5" 1430 | dependencies: 1431 | aria-query "^0.7.0" 1432 | array-includes "^3.0.3" 1433 | ast-types-flow "0.0.7" 1434 | axobject-query "^0.1.0" 1435 | damerau-levenshtein "^1.0.0" 1436 | emoji-regex "^6.1.0" 1437 | jsx-ast-utils "^2.0.0" 1438 | 1439 | eslint-plugin-prettier@^2.3.1: 1440 | version "2.6.0" 1441 | resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-2.6.0.tgz#33e4e228bdb06142d03c560ce04ec23f6c767dd7" 1442 | dependencies: 1443 | fast-diff "^1.1.1" 1444 | jest-docblock "^21.0.0" 1445 | 1446 | eslint-plugin-react@^7.5.1: 1447 | version "7.9.1" 1448 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.9.1.tgz#101aadd15e7c7b431ed025303ac7b421a8e3dc15" 1449 | dependencies: 1450 | doctrine "^2.1.0" 1451 | has "^1.0.2" 1452 | jsx-ast-utils "^2.0.1" 1453 | prop-types "^15.6.1" 1454 | 1455 | eslint-restricted-globals@^0.1.1: 1456 | version "0.1.1" 1457 | resolved "https://registry.yarnpkg.com/eslint-restricted-globals/-/eslint-restricted-globals-0.1.1.tgz#35f0d5cbc64c2e3ed62e93b4b1a7af05ba7ed4d7" 1458 | 1459 | eslint-scope@^3.7.1: 1460 | version "3.7.1" 1461 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" 1462 | dependencies: 1463 | esrecurse "^4.1.0" 1464 | estraverse "^4.1.1" 1465 | 1466 | eslint-visitor-keys@^1.0.0: 1467 | version "1.0.0" 1468 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d" 1469 | 1470 | eslint@^4.11.0: 1471 | version "4.19.1" 1472 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.19.1.tgz#32d1d653e1d90408854bfb296f076ec7e186a300" 1473 | dependencies: 1474 | ajv "^5.3.0" 1475 | babel-code-frame "^6.22.0" 1476 | chalk "^2.1.0" 1477 | concat-stream "^1.6.0" 1478 | cross-spawn "^5.1.0" 1479 | debug "^3.1.0" 1480 | doctrine "^2.1.0" 1481 | eslint-scope "^3.7.1" 1482 | eslint-visitor-keys "^1.0.0" 1483 | espree "^3.5.4" 1484 | esquery "^1.0.0" 1485 | esutils "^2.0.2" 1486 | file-entry-cache "^2.0.0" 1487 | functional-red-black-tree "^1.0.1" 1488 | glob "^7.1.2" 1489 | globals "^11.0.1" 1490 | ignore "^3.3.3" 1491 | imurmurhash "^0.1.4" 1492 | inquirer "^3.0.6" 1493 | is-resolvable "^1.0.0" 1494 | js-yaml "^3.9.1" 1495 | json-stable-stringify-without-jsonify "^1.0.1" 1496 | levn "^0.3.0" 1497 | lodash "^4.17.4" 1498 | minimatch "^3.0.2" 1499 | mkdirp "^0.5.1" 1500 | natural-compare "^1.4.0" 1501 | optionator "^0.8.2" 1502 | path-is-inside "^1.0.2" 1503 | pluralize "^7.0.0" 1504 | progress "^2.0.0" 1505 | regexpp "^1.0.1" 1506 | require-uncached "^1.0.3" 1507 | semver "^5.3.0" 1508 | strip-ansi "^4.0.0" 1509 | strip-json-comments "~2.0.1" 1510 | table "4.0.2" 1511 | text-table "~0.2.0" 1512 | 1513 | espree@^3.5.4: 1514 | version "3.5.4" 1515 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.4.tgz#b0f447187c8a8bed944b815a660bddf5deb5d1a7" 1516 | dependencies: 1517 | acorn "^5.5.0" 1518 | acorn-jsx "^3.0.0" 1519 | 1520 | esprima@^3.1.3: 1521 | version "3.1.3" 1522 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1523 | 1524 | esprima@^4.0.0: 1525 | version "4.0.0" 1526 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 1527 | 1528 | esquery@^1.0.0: 1529 | version "1.0.1" 1530 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708" 1531 | dependencies: 1532 | estraverse "^4.0.0" 1533 | 1534 | esrecurse@^4.1.0: 1535 | version "4.2.1" 1536 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" 1537 | dependencies: 1538 | estraverse "^4.1.0" 1539 | 1540 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: 1541 | version "4.2.0" 1542 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1543 | 1544 | esutils@^2.0.2: 1545 | version "2.0.2" 1546 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1547 | 1548 | exec-sh@^0.2.0: 1549 | version "0.2.1" 1550 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.1.tgz#163b98a6e89e6b65b47c2a28d215bc1f63989c38" 1551 | dependencies: 1552 | merge "^1.1.3" 1553 | 1554 | execa@^0.7.0: 1555 | version "0.7.0" 1556 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1557 | dependencies: 1558 | cross-spawn "^5.0.1" 1559 | get-stream "^3.0.0" 1560 | is-stream "^1.1.0" 1561 | npm-run-path "^2.0.0" 1562 | p-finally "^1.0.0" 1563 | signal-exit "^3.0.0" 1564 | strip-eof "^1.0.0" 1565 | 1566 | execa@^0.9.0: 1567 | version "0.9.0" 1568 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.9.0.tgz#adb7ce62cf985071f60580deb4a88b9e34712d01" 1569 | dependencies: 1570 | cross-spawn "^5.0.1" 1571 | get-stream "^3.0.0" 1572 | is-stream "^1.1.0" 1573 | npm-run-path "^2.0.0" 1574 | p-finally "^1.0.0" 1575 | signal-exit "^3.0.0" 1576 | strip-eof "^1.0.0" 1577 | 1578 | exit@^0.1.2: 1579 | version "0.1.2" 1580 | resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" 1581 | 1582 | expand-brackets@^0.1.4: 1583 | version "0.1.5" 1584 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1585 | dependencies: 1586 | is-posix-bracket "^0.1.0" 1587 | 1588 | expand-brackets@^2.1.4: 1589 | version "2.1.4" 1590 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 1591 | dependencies: 1592 | debug "^2.3.3" 1593 | define-property "^0.2.5" 1594 | extend-shallow "^2.0.1" 1595 | posix-character-classes "^0.1.0" 1596 | regex-not "^1.0.0" 1597 | snapdragon "^0.8.1" 1598 | to-regex "^3.0.1" 1599 | 1600 | expand-range@^1.8.1: 1601 | version "1.8.2" 1602 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1603 | dependencies: 1604 | fill-range "^2.1.0" 1605 | 1606 | expect@^23.1.0: 1607 | version "23.1.0" 1608 | resolved "https://registry.yarnpkg.com/expect/-/expect-23.1.0.tgz#bfdfd57a2a20170d875999ee9787cc71f01c205f" 1609 | dependencies: 1610 | ansi-styles "^3.2.0" 1611 | jest-diff "^23.0.1" 1612 | jest-get-type "^22.1.0" 1613 | jest-matcher-utils "^23.0.1" 1614 | jest-message-util "^23.1.0" 1615 | jest-regex-util "^23.0.0" 1616 | 1617 | extend-shallow@^2.0.1: 1618 | version "2.0.1" 1619 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 1620 | dependencies: 1621 | is-extendable "^0.1.0" 1622 | 1623 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 1624 | version "3.0.2" 1625 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 1626 | dependencies: 1627 | assign-symbols "^1.0.0" 1628 | is-extendable "^1.0.1" 1629 | 1630 | extend@~3.0.1: 1631 | version "3.0.1" 1632 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1633 | 1634 | external-editor@^2.0.4: 1635 | version "2.2.0" 1636 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.2.0.tgz#045511cfd8d133f3846673d1047c154e214ad3d5" 1637 | dependencies: 1638 | chardet "^0.4.0" 1639 | iconv-lite "^0.4.17" 1640 | tmp "^0.0.33" 1641 | 1642 | extglob@^0.3.1: 1643 | version "0.3.2" 1644 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1645 | dependencies: 1646 | is-extglob "^1.0.0" 1647 | 1648 | extglob@^2.0.4: 1649 | version "2.0.4" 1650 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 1651 | dependencies: 1652 | array-unique "^0.3.2" 1653 | define-property "^1.0.0" 1654 | expand-brackets "^2.1.4" 1655 | extend-shallow "^2.0.1" 1656 | fragment-cache "^0.2.1" 1657 | regex-not "^1.0.0" 1658 | snapdragon "^0.8.1" 1659 | to-regex "^3.0.1" 1660 | 1661 | extsprintf@1.3.0: 1662 | version "1.3.0" 1663 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1664 | 1665 | extsprintf@^1.2.0: 1666 | version "1.4.0" 1667 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 1668 | 1669 | fast-deep-equal@^1.0.0: 1670 | version "1.1.0" 1671 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614" 1672 | 1673 | fast-diff@^1.1.1: 1674 | version "1.1.2" 1675 | resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.1.2.tgz#4b62c42b8e03de3f848460b639079920695d0154" 1676 | 1677 | fast-json-stable-stringify@^2.0.0: 1678 | version "2.0.0" 1679 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1680 | 1681 | fast-levenshtein@~2.0.4: 1682 | version "2.0.6" 1683 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1684 | 1685 | fb-watchman@^2.0.0: 1686 | version "2.0.0" 1687 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 1688 | dependencies: 1689 | bser "^2.0.0" 1690 | 1691 | fbjs@^0.8.16: 1692 | version "0.8.17" 1693 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.17.tgz#c4d598ead6949112653d6588b01a5cdcd9f90fdd" 1694 | dependencies: 1695 | core-js "^1.0.0" 1696 | isomorphic-fetch "^2.1.1" 1697 | loose-envify "^1.0.0" 1698 | object-assign "^4.1.0" 1699 | promise "^7.1.1" 1700 | setimmediate "^1.0.5" 1701 | ua-parser-js "^0.7.18" 1702 | 1703 | figures@^2.0.0: 1704 | version "2.0.0" 1705 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1706 | dependencies: 1707 | escape-string-regexp "^1.0.5" 1708 | 1709 | file-entry-cache@^2.0.0: 1710 | version "2.0.0" 1711 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1712 | dependencies: 1713 | flat-cache "^1.2.1" 1714 | object-assign "^4.0.1" 1715 | 1716 | filename-regex@^2.0.0: 1717 | version "2.0.1" 1718 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1719 | 1720 | fileset@^2.0.2: 1721 | version "2.0.3" 1722 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 1723 | dependencies: 1724 | glob "^7.0.3" 1725 | minimatch "^3.0.3" 1726 | 1727 | fill-range@^2.1.0: 1728 | version "2.2.4" 1729 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565" 1730 | dependencies: 1731 | is-number "^2.1.0" 1732 | isobject "^2.0.0" 1733 | randomatic "^3.0.0" 1734 | repeat-element "^1.1.2" 1735 | repeat-string "^1.5.2" 1736 | 1737 | fill-range@^4.0.0: 1738 | version "4.0.0" 1739 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 1740 | dependencies: 1741 | extend-shallow "^2.0.1" 1742 | is-number "^3.0.0" 1743 | repeat-string "^1.6.1" 1744 | to-regex-range "^2.1.0" 1745 | 1746 | find-up@^1.0.0: 1747 | version "1.1.2" 1748 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1749 | dependencies: 1750 | path-exists "^2.0.0" 1751 | pinkie-promise "^2.0.0" 1752 | 1753 | find-up@^2.0.0, find-up@^2.1.0: 1754 | version "2.1.0" 1755 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1756 | dependencies: 1757 | locate-path "^2.0.0" 1758 | 1759 | flat-cache@^1.2.1: 1760 | version "1.3.0" 1761 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.0.tgz#d3030b32b38154f4e3b7e9c709f490f7ef97c481" 1762 | dependencies: 1763 | circular-json "^0.3.1" 1764 | del "^2.0.2" 1765 | graceful-fs "^4.1.2" 1766 | write "^0.2.1" 1767 | 1768 | for-in@^1.0.1, for-in@^1.0.2: 1769 | version "1.0.2" 1770 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1771 | 1772 | for-own@^0.1.4: 1773 | version "0.1.5" 1774 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1775 | dependencies: 1776 | for-in "^1.0.1" 1777 | 1778 | foreach@^2.0.5: 1779 | version "2.0.5" 1780 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1781 | 1782 | forever-agent@~0.6.1: 1783 | version "0.6.1" 1784 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1785 | 1786 | form-data@~2.3.1: 1787 | version "2.3.2" 1788 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.2.tgz#4970498be604c20c005d4f5c23aecd21d6b49099" 1789 | dependencies: 1790 | asynckit "^0.4.0" 1791 | combined-stream "1.0.6" 1792 | mime-types "^2.1.12" 1793 | 1794 | fragment-cache@^0.2.1: 1795 | version "0.2.1" 1796 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 1797 | dependencies: 1798 | map-cache "^0.2.2" 1799 | 1800 | fs-minipass@^1.2.5: 1801 | version "1.2.5" 1802 | resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d" 1803 | dependencies: 1804 | minipass "^2.2.1" 1805 | 1806 | fs-readdir-recursive@^1.0.0: 1807 | version "1.1.0" 1808 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27" 1809 | 1810 | fs.realpath@^1.0.0: 1811 | version "1.0.0" 1812 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1813 | 1814 | fsevents@^1.0.0, fsevents@^1.2.3: 1815 | version "1.2.4" 1816 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.4.tgz#f41dcb1af2582af3692da36fc55cbd8e1041c426" 1817 | dependencies: 1818 | nan "^2.9.2" 1819 | node-pre-gyp "^0.10.0" 1820 | 1821 | function-bind@^1.1.1: 1822 | version "1.1.1" 1823 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1824 | 1825 | functional-red-black-tree@^1.0.1: 1826 | version "1.0.1" 1827 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 1828 | 1829 | gauge@~2.7.3: 1830 | version "2.7.4" 1831 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1832 | dependencies: 1833 | aproba "^1.0.3" 1834 | console-control-strings "^1.0.0" 1835 | has-unicode "^2.0.0" 1836 | object-assign "^4.1.0" 1837 | signal-exit "^3.0.0" 1838 | string-width "^1.0.1" 1839 | strip-ansi "^3.0.1" 1840 | wide-align "^1.1.0" 1841 | 1842 | get-caller-file@^1.0.1: 1843 | version "1.0.2" 1844 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1845 | 1846 | get-stdin@^5.0.1: 1847 | version "5.0.1" 1848 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" 1849 | 1850 | get-stream@^3.0.0: 1851 | version "3.0.0" 1852 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1853 | 1854 | get-value@^2.0.3, get-value@^2.0.6: 1855 | version "2.0.6" 1856 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 1857 | 1858 | getpass@^0.1.1: 1859 | version "0.1.7" 1860 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1861 | dependencies: 1862 | assert-plus "^1.0.0" 1863 | 1864 | glob-base@^0.3.0: 1865 | version "0.3.0" 1866 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1867 | dependencies: 1868 | glob-parent "^2.0.0" 1869 | is-glob "^2.0.0" 1870 | 1871 | glob-parent@^2.0.0: 1872 | version "2.0.0" 1873 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1874 | dependencies: 1875 | is-glob "^2.0.0" 1876 | 1877 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2: 1878 | version "7.1.2" 1879 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1880 | dependencies: 1881 | fs.realpath "^1.0.0" 1882 | inflight "^1.0.4" 1883 | inherits "2" 1884 | minimatch "^3.0.4" 1885 | once "^1.3.0" 1886 | path-is-absolute "^1.0.0" 1887 | 1888 | globals@^11.0.1: 1889 | version "11.5.0" 1890 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.5.0.tgz#6bc840de6771173b191f13d3a9c94d441ee92642" 1891 | 1892 | globals@^9.18.0: 1893 | version "9.18.0" 1894 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1895 | 1896 | globby@^5.0.0: 1897 | version "5.0.0" 1898 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1899 | dependencies: 1900 | array-union "^1.0.1" 1901 | arrify "^1.0.0" 1902 | glob "^7.0.3" 1903 | object-assign "^4.0.1" 1904 | pify "^2.0.0" 1905 | pinkie-promise "^2.0.0" 1906 | 1907 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1908 | version "4.1.11" 1909 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1910 | 1911 | growly@^1.3.0: 1912 | version "1.3.0" 1913 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1914 | 1915 | handlebars@^4.0.3: 1916 | version "4.0.11" 1917 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.11.tgz#630a35dfe0294bc281edae6ffc5d329fc7982dcc" 1918 | dependencies: 1919 | async "^1.4.0" 1920 | optimist "^0.6.1" 1921 | source-map "^0.4.4" 1922 | optionalDependencies: 1923 | uglify-js "^2.6" 1924 | 1925 | har-schema@^2.0.0: 1926 | version "2.0.0" 1927 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 1928 | 1929 | har-validator@~5.0.3: 1930 | version "5.0.3" 1931 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd" 1932 | dependencies: 1933 | ajv "^5.1.0" 1934 | har-schema "^2.0.0" 1935 | 1936 | has-ansi@^2.0.0: 1937 | version "2.0.0" 1938 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1939 | dependencies: 1940 | ansi-regex "^2.0.0" 1941 | 1942 | has-flag@^1.0.0: 1943 | version "1.0.0" 1944 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1945 | 1946 | has-flag@^3.0.0: 1947 | version "3.0.0" 1948 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1949 | 1950 | has-unicode@^2.0.0: 1951 | version "2.0.1" 1952 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1953 | 1954 | has-value@^0.3.1: 1955 | version "0.3.1" 1956 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 1957 | dependencies: 1958 | get-value "^2.0.3" 1959 | has-values "^0.1.4" 1960 | isobject "^2.0.0" 1961 | 1962 | has-value@^1.0.0: 1963 | version "1.0.0" 1964 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 1965 | dependencies: 1966 | get-value "^2.0.6" 1967 | has-values "^1.0.0" 1968 | isobject "^3.0.0" 1969 | 1970 | has-values@^0.1.4: 1971 | version "0.1.4" 1972 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 1973 | 1974 | has-values@^1.0.0: 1975 | version "1.0.0" 1976 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 1977 | dependencies: 1978 | is-number "^3.0.0" 1979 | kind-of "^4.0.0" 1980 | 1981 | has@^1.0.1, has@^1.0.2: 1982 | version "1.0.3" 1983 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1984 | dependencies: 1985 | function-bind "^1.1.1" 1986 | 1987 | hoek@4.x.x: 1988 | version "4.2.1" 1989 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.1.tgz#9634502aa12c445dd5a7c5734b572bb8738aacbb" 1990 | 1991 | hoek@5.x.x: 1992 | version "5.0.3" 1993 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-5.0.3.tgz#b71d40d943d0a95da01956b547f83c4a5b4a34ac" 1994 | 1995 | home-or-tmp@^2.0.0: 1996 | version "2.0.0" 1997 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1998 | dependencies: 1999 | os-homedir "^1.0.0" 2000 | os-tmpdir "^1.0.1" 2001 | 2002 | hosted-git-info@^2.1.4: 2003 | version "2.6.0" 2004 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.6.0.tgz#23235b29ab230c576aab0d4f13fc046b0b038222" 2005 | 2006 | html-encoding-sniffer@^1.0.2: 2007 | version "1.0.2" 2008 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8" 2009 | dependencies: 2010 | whatwg-encoding "^1.0.1" 2011 | 2012 | http-signature@~1.2.0: 2013 | version "1.2.0" 2014 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 2015 | dependencies: 2016 | assert-plus "^1.0.0" 2017 | jsprim "^1.2.2" 2018 | sshpk "^1.7.0" 2019 | 2020 | https-proxy-agent@^2.1.0: 2021 | version "2.2.1" 2022 | resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-2.2.1.tgz#51552970fa04d723e04c56d04178c3f92592bbc0" 2023 | dependencies: 2024 | agent-base "^4.1.0" 2025 | debug "^3.1.0" 2026 | 2027 | husky@^0.15.0-rc.8: 2028 | version "0.15.0-rc.13" 2029 | resolved "https://registry.yarnpkg.com/husky/-/husky-0.15.0-rc.13.tgz#a27550b7b51d2f472e284b48fc9257a6d6b3f681" 2030 | dependencies: 2031 | cosmiconfig "^4.0.0" 2032 | execa "^0.9.0" 2033 | is-ci "^1.1.0" 2034 | pkg-dir "^2.0.0" 2035 | pupa "^1.0.0" 2036 | read-pkg "^3.0.0" 2037 | run-node "^0.2.0" 2038 | slash "^1.0.0" 2039 | 2040 | iconv-lite@0.4.19: 2041 | version "0.4.19" 2042 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 2043 | 2044 | iconv-lite@^0.4.17, iconv-lite@^0.4.4, iconv-lite@~0.4.13: 2045 | version "0.4.23" 2046 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.23.tgz#297871f63be507adcfbfca715d0cd0eed84e9a63" 2047 | dependencies: 2048 | safer-buffer ">= 2.1.2 < 3" 2049 | 2050 | ignore-walk@^3.0.1: 2051 | version "3.0.1" 2052 | resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" 2053 | dependencies: 2054 | minimatch "^3.0.4" 2055 | 2056 | ignore@^3.3.3: 2057 | version "3.3.8" 2058 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.8.tgz#3f8e9c35d38708a3a7e0e9abb6c73e7ee7707b2b" 2059 | 2060 | import-local@^1.0.0: 2061 | version "1.0.0" 2062 | resolved "https://registry.yarnpkg.com/import-local/-/import-local-1.0.0.tgz#5e4ffdc03f4fe6c009c6729beb29631c2f8227bc" 2063 | dependencies: 2064 | pkg-dir "^2.0.0" 2065 | resolve-cwd "^2.0.0" 2066 | 2067 | imurmurhash@^0.1.4: 2068 | version "0.1.4" 2069 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 2070 | 2071 | inflight@^1.0.4: 2072 | version "1.0.6" 2073 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 2074 | dependencies: 2075 | once "^1.3.0" 2076 | wrappy "1" 2077 | 2078 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.3: 2079 | version "2.0.3" 2080 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 2081 | 2082 | ini@~1.3.0: 2083 | version "1.3.5" 2084 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 2085 | 2086 | inquirer@^3.0.6, inquirer@^3.3.0: 2087 | version "3.3.0" 2088 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" 2089 | dependencies: 2090 | ansi-escapes "^3.0.0" 2091 | chalk "^2.0.0" 2092 | cli-cursor "^2.1.0" 2093 | cli-width "^2.0.0" 2094 | external-editor "^2.0.4" 2095 | figures "^2.0.0" 2096 | lodash "^4.3.0" 2097 | mute-stream "0.0.7" 2098 | run-async "^2.2.0" 2099 | rx-lite "^4.0.8" 2100 | rx-lite-aggregates "^4.0.8" 2101 | string-width "^2.1.0" 2102 | strip-ansi "^4.0.0" 2103 | through "^2.3.6" 2104 | 2105 | invariant@^2.2.2: 2106 | version "2.2.4" 2107 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" 2108 | dependencies: 2109 | loose-envify "^1.0.0" 2110 | 2111 | invert-kv@^1.0.0: 2112 | version "1.0.0" 2113 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 2114 | 2115 | is-accessor-descriptor@^0.1.6: 2116 | version "0.1.6" 2117 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 2118 | dependencies: 2119 | kind-of "^3.0.2" 2120 | 2121 | is-accessor-descriptor@^1.0.0: 2122 | version "1.0.0" 2123 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 2124 | dependencies: 2125 | kind-of "^6.0.0" 2126 | 2127 | is-arrayish@^0.2.1: 2128 | version "0.2.1" 2129 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 2130 | 2131 | is-binary-path@^1.0.0: 2132 | version "1.0.1" 2133 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 2134 | dependencies: 2135 | binary-extensions "^1.0.0" 2136 | 2137 | is-buffer@^1.1.5: 2138 | version "1.1.6" 2139 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 2140 | 2141 | is-builtin-module@^1.0.0: 2142 | version "1.0.0" 2143 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 2144 | dependencies: 2145 | builtin-modules "^1.0.0" 2146 | 2147 | is-callable@^1.1.1, is-callable@^1.1.3: 2148 | version "1.1.3" 2149 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 2150 | 2151 | is-ci@^1.0.10, is-ci@^1.1.0: 2152 | version "1.1.0" 2153 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.1.0.tgz#247e4162e7860cebbdaf30b774d6b0ac7dcfe7a5" 2154 | dependencies: 2155 | ci-info "^1.0.0" 2156 | 2157 | is-data-descriptor@^0.1.4: 2158 | version "0.1.4" 2159 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 2160 | dependencies: 2161 | kind-of "^3.0.2" 2162 | 2163 | is-data-descriptor@^1.0.0: 2164 | version "1.0.0" 2165 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 2166 | dependencies: 2167 | kind-of "^6.0.0" 2168 | 2169 | is-date-object@^1.0.1: 2170 | version "1.0.1" 2171 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 2172 | 2173 | is-descriptor@^0.1.0: 2174 | version "0.1.6" 2175 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 2176 | dependencies: 2177 | is-accessor-descriptor "^0.1.6" 2178 | is-data-descriptor "^0.1.4" 2179 | kind-of "^5.0.0" 2180 | 2181 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 2182 | version "1.0.2" 2183 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 2184 | dependencies: 2185 | is-accessor-descriptor "^1.0.0" 2186 | is-data-descriptor "^1.0.0" 2187 | kind-of "^6.0.2" 2188 | 2189 | is-directory@^0.3.1: 2190 | version "0.3.1" 2191 | resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" 2192 | 2193 | is-dotfile@^1.0.0: 2194 | version "1.0.3" 2195 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 2196 | 2197 | is-equal-shallow@^0.1.3: 2198 | version "0.1.3" 2199 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 2200 | dependencies: 2201 | is-primitive "^2.0.0" 2202 | 2203 | is-extendable@^0.1.0, is-extendable@^0.1.1: 2204 | version "0.1.1" 2205 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 2206 | 2207 | is-extendable@^1.0.1: 2208 | version "1.0.1" 2209 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 2210 | dependencies: 2211 | is-plain-object "^2.0.4" 2212 | 2213 | is-extglob@^1.0.0: 2214 | version "1.0.0" 2215 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 2216 | 2217 | is-finite@^1.0.0: 2218 | version "1.0.2" 2219 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 2220 | dependencies: 2221 | number-is-nan "^1.0.0" 2222 | 2223 | is-fullwidth-code-point@^1.0.0: 2224 | version "1.0.0" 2225 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 2226 | dependencies: 2227 | number-is-nan "^1.0.0" 2228 | 2229 | is-fullwidth-code-point@^2.0.0: 2230 | version "2.0.0" 2231 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 2232 | 2233 | is-generator-fn@^1.0.0: 2234 | version "1.0.0" 2235 | resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-1.0.0.tgz#969d49e1bb3329f6bb7f09089be26578b2ddd46a" 2236 | 2237 | is-glob@^2.0.0, is-glob@^2.0.1: 2238 | version "2.0.1" 2239 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 2240 | dependencies: 2241 | is-extglob "^1.0.0" 2242 | 2243 | is-number@^2.1.0: 2244 | version "2.1.0" 2245 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 2246 | dependencies: 2247 | kind-of "^3.0.2" 2248 | 2249 | is-number@^3.0.0: 2250 | version "3.0.0" 2251 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 2252 | dependencies: 2253 | kind-of "^3.0.2" 2254 | 2255 | is-number@^4.0.0: 2256 | version "4.0.0" 2257 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" 2258 | 2259 | is-odd@^2.0.0: 2260 | version "2.0.0" 2261 | resolved "https://registry.yarnpkg.com/is-odd/-/is-odd-2.0.0.tgz#7646624671fd7ea558ccd9a2795182f2958f1b24" 2262 | dependencies: 2263 | is-number "^4.0.0" 2264 | 2265 | is-path-cwd@^1.0.0: 2266 | version "1.0.0" 2267 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 2268 | 2269 | is-path-in-cwd@^1.0.0: 2270 | version "1.0.1" 2271 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz#5ac48b345ef675339bd6c7a48a912110b241cf52" 2272 | dependencies: 2273 | is-path-inside "^1.0.0" 2274 | 2275 | is-path-inside@^1.0.0: 2276 | version "1.0.1" 2277 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" 2278 | dependencies: 2279 | path-is-inside "^1.0.1" 2280 | 2281 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: 2282 | version "2.0.4" 2283 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 2284 | dependencies: 2285 | isobject "^3.0.1" 2286 | 2287 | is-posix-bracket@^0.1.0: 2288 | version "0.1.1" 2289 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 2290 | 2291 | is-primitive@^2.0.0: 2292 | version "2.0.0" 2293 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 2294 | 2295 | is-promise@^2.1.0: 2296 | version "2.1.0" 2297 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 2298 | 2299 | is-regex@^1.0.4: 2300 | version "1.0.4" 2301 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 2302 | dependencies: 2303 | has "^1.0.1" 2304 | 2305 | is-resolvable@^1.0.0: 2306 | version "1.1.0" 2307 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" 2308 | 2309 | is-stream@^1.0.1, is-stream@^1.1.0: 2310 | version "1.1.0" 2311 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2312 | 2313 | is-symbol@^1.0.1: 2314 | version "1.0.1" 2315 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 2316 | 2317 | is-typedarray@~1.0.0: 2318 | version "1.0.0" 2319 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2320 | 2321 | is-utf8@^0.2.0: 2322 | version "0.2.1" 2323 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 2324 | 2325 | is-windows@^1.0.2: 2326 | version "1.0.2" 2327 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 2328 | 2329 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 2330 | version "1.0.0" 2331 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2332 | 2333 | isemail@3.x.x: 2334 | version "3.1.2" 2335 | resolved "https://registry.yarnpkg.com/isemail/-/isemail-3.1.2.tgz#937cf919002077999a73ea8b1951d590e84e01dd" 2336 | dependencies: 2337 | punycode "2.x.x" 2338 | 2339 | isexe@^2.0.0: 2340 | version "2.0.0" 2341 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2342 | 2343 | isobject@^2.0.0: 2344 | version "2.1.0" 2345 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2346 | dependencies: 2347 | isarray "1.0.0" 2348 | 2349 | isobject@^3.0.0, isobject@^3.0.1: 2350 | version "3.0.1" 2351 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 2352 | 2353 | isomorphic-fetch@^2.1.1: 2354 | version "2.2.1" 2355 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" 2356 | dependencies: 2357 | node-fetch "^1.0.1" 2358 | whatwg-fetch ">=0.10.0" 2359 | 2360 | isstream@~0.1.2: 2361 | version "0.1.2" 2362 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2363 | 2364 | istanbul-api@^1.3.1: 2365 | version "1.3.1" 2366 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.3.1.tgz#4c3b05d18c0016d1022e079b98dc82c40f488954" 2367 | dependencies: 2368 | async "^2.1.4" 2369 | compare-versions "^3.1.0" 2370 | fileset "^2.0.2" 2371 | istanbul-lib-coverage "^1.2.0" 2372 | istanbul-lib-hook "^1.2.0" 2373 | istanbul-lib-instrument "^1.10.1" 2374 | istanbul-lib-report "^1.1.4" 2375 | istanbul-lib-source-maps "^1.2.4" 2376 | istanbul-reports "^1.3.0" 2377 | js-yaml "^3.7.0" 2378 | mkdirp "^0.5.1" 2379 | once "^1.4.0" 2380 | 2381 | istanbul-lib-coverage@^1.2.0: 2382 | version "1.2.0" 2383 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.2.0.tgz#f7d8f2e42b97e37fe796114cb0f9d68b5e3a4341" 2384 | 2385 | istanbul-lib-hook@^1.2.0: 2386 | version "1.2.1" 2387 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.2.1.tgz#f614ec45287b2a8fc4f07f5660af787575601805" 2388 | dependencies: 2389 | append-transform "^1.0.0" 2390 | 2391 | istanbul-lib-instrument@^1.10.1: 2392 | version "1.10.1" 2393 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.10.1.tgz#724b4b6caceba8692d3f1f9d0727e279c401af7b" 2394 | dependencies: 2395 | babel-generator "^6.18.0" 2396 | babel-template "^6.16.0" 2397 | babel-traverse "^6.18.0" 2398 | babel-types "^6.18.0" 2399 | babylon "^6.18.0" 2400 | istanbul-lib-coverage "^1.2.0" 2401 | semver "^5.3.0" 2402 | 2403 | istanbul-lib-report@^1.1.4: 2404 | version "1.1.4" 2405 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.4.tgz#e886cdf505c4ebbd8e099e4396a90d0a28e2acb5" 2406 | dependencies: 2407 | istanbul-lib-coverage "^1.2.0" 2408 | mkdirp "^0.5.1" 2409 | path-parse "^1.0.5" 2410 | supports-color "^3.1.2" 2411 | 2412 | istanbul-lib-source-maps@^1.2.4: 2413 | version "1.2.5" 2414 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.5.tgz#ffe6be4e7ab86d3603e4290d54990b14506fc9b1" 2415 | dependencies: 2416 | debug "^3.1.0" 2417 | istanbul-lib-coverage "^1.2.0" 2418 | mkdirp "^0.5.1" 2419 | rimraf "^2.6.1" 2420 | source-map "^0.5.3" 2421 | 2422 | istanbul-reports@^1.3.0: 2423 | version "1.3.0" 2424 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.3.0.tgz#2f322e81e1d9520767597dca3c20a0cce89a3554" 2425 | dependencies: 2426 | handlebars "^4.0.3" 2427 | 2428 | jest-changed-files@^23.0.1: 2429 | version "23.0.1" 2430 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-23.0.1.tgz#f79572d0720844ea5df84c2a448e862c2254f60c" 2431 | dependencies: 2432 | throat "^4.0.0" 2433 | 2434 | jest-cli@^23.1.0: 2435 | version "23.1.0" 2436 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-23.1.0.tgz#eb8bdd4ce0d15250892e31ad9b69bc99d2a8f6bf" 2437 | dependencies: 2438 | ansi-escapes "^3.0.0" 2439 | chalk "^2.0.1" 2440 | exit "^0.1.2" 2441 | glob "^7.1.2" 2442 | graceful-fs "^4.1.11" 2443 | import-local "^1.0.0" 2444 | is-ci "^1.0.10" 2445 | istanbul-api "^1.3.1" 2446 | istanbul-lib-coverage "^1.2.0" 2447 | istanbul-lib-instrument "^1.10.1" 2448 | istanbul-lib-source-maps "^1.2.4" 2449 | jest-changed-files "^23.0.1" 2450 | jest-config "^23.1.0" 2451 | jest-environment-jsdom "^23.1.0" 2452 | jest-get-type "^22.1.0" 2453 | jest-haste-map "^23.1.0" 2454 | jest-message-util "^23.1.0" 2455 | jest-regex-util "^23.0.0" 2456 | jest-resolve-dependencies "^23.0.1" 2457 | jest-runner "^23.1.0" 2458 | jest-runtime "^23.1.0" 2459 | jest-snapshot "^23.0.1" 2460 | jest-util "^23.1.0" 2461 | jest-validate "^23.0.1" 2462 | jest-watcher "^23.1.0" 2463 | jest-worker "^23.0.1" 2464 | micromatch "^2.3.11" 2465 | node-notifier "^5.2.1" 2466 | realpath-native "^1.0.0" 2467 | rimraf "^2.5.4" 2468 | slash "^1.0.0" 2469 | string-length "^2.0.0" 2470 | strip-ansi "^4.0.0" 2471 | which "^1.2.12" 2472 | yargs "^11.0.0" 2473 | 2474 | jest-config@^23.1.0: 2475 | version "23.1.0" 2476 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-23.1.0.tgz#708ca0f431d356ee424fb4895d3308006bdd8241" 2477 | dependencies: 2478 | babel-core "^6.0.0" 2479 | babel-jest "^23.0.1" 2480 | chalk "^2.0.1" 2481 | glob "^7.1.1" 2482 | jest-environment-jsdom "^23.1.0" 2483 | jest-environment-node "^23.1.0" 2484 | jest-get-type "^22.1.0" 2485 | jest-jasmine2 "^23.1.0" 2486 | jest-regex-util "^23.0.0" 2487 | jest-resolve "^23.1.0" 2488 | jest-util "^23.1.0" 2489 | jest-validate "^23.0.1" 2490 | pretty-format "^23.0.1" 2491 | 2492 | jest-diff@^23.0.1: 2493 | version "23.0.1" 2494 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-23.0.1.tgz#3d49137cee12c320a4b4d2b4a6fa6e82d491a16a" 2495 | dependencies: 2496 | chalk "^2.0.1" 2497 | diff "^3.2.0" 2498 | jest-get-type "^22.1.0" 2499 | pretty-format "^23.0.1" 2500 | 2501 | jest-docblock@^21.0.0: 2502 | version "21.2.0" 2503 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-21.2.0.tgz#51529c3b30d5fd159da60c27ceedc195faf8d414" 2504 | 2505 | jest-docblock@^23.0.1: 2506 | version "23.0.1" 2507 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-23.0.1.tgz#deddd18333be5dc2415260a04ef3fce9276b5725" 2508 | dependencies: 2509 | detect-newline "^2.1.0" 2510 | 2511 | jest-each@^23.1.0: 2512 | version "23.1.0" 2513 | resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-23.1.0.tgz#16146b592c354867a5ae5e13cdf15c6c65b696c6" 2514 | dependencies: 2515 | chalk "^2.0.1" 2516 | pretty-format "^23.0.1" 2517 | 2518 | jest-environment-jsdom@^23.1.0: 2519 | version "23.1.0" 2520 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-23.1.0.tgz#85929914e23bed3577dac9755f4106d0697c479c" 2521 | dependencies: 2522 | jest-mock "^23.1.0" 2523 | jest-util "^23.1.0" 2524 | jsdom "^11.5.1" 2525 | 2526 | jest-environment-node@^23.1.0: 2527 | version "23.1.0" 2528 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-23.1.0.tgz#452c0bf949cfcbbacda1e1762eeed70bc784c7d5" 2529 | dependencies: 2530 | jest-mock "^23.1.0" 2531 | jest-util "^23.1.0" 2532 | 2533 | jest-get-type@^22.1.0: 2534 | version "22.4.3" 2535 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-22.4.3.tgz#e3a8504d8479342dd4420236b322869f18900ce4" 2536 | 2537 | jest-haste-map@^23.1.0: 2538 | version "23.1.0" 2539 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-23.1.0.tgz#18e6c7d5a8d27136f91b7d9852f85de0c7074c49" 2540 | dependencies: 2541 | fb-watchman "^2.0.0" 2542 | graceful-fs "^4.1.11" 2543 | jest-docblock "^23.0.1" 2544 | jest-serializer "^23.0.1" 2545 | jest-worker "^23.0.1" 2546 | micromatch "^2.3.11" 2547 | sane "^2.0.0" 2548 | 2549 | jest-jasmine2@^23.1.0: 2550 | version "23.1.0" 2551 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-23.1.0.tgz#4afab31729b654ddcd2b074add849396f13b30b8" 2552 | dependencies: 2553 | chalk "^2.0.1" 2554 | co "^4.6.0" 2555 | expect "^23.1.0" 2556 | is-generator-fn "^1.0.0" 2557 | jest-diff "^23.0.1" 2558 | jest-each "^23.1.0" 2559 | jest-matcher-utils "^23.0.1" 2560 | jest-message-util "^23.1.0" 2561 | jest-snapshot "^23.0.1" 2562 | jest-util "^23.1.0" 2563 | pretty-format "^23.0.1" 2564 | 2565 | jest-leak-detector@^23.0.1: 2566 | version "23.0.1" 2567 | resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-23.0.1.tgz#9dba07505ac3495c39d3ec09ac1e564599e861a0" 2568 | dependencies: 2569 | pretty-format "^23.0.1" 2570 | 2571 | jest-matcher-utils@^23.0.1: 2572 | version "23.0.1" 2573 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-23.0.1.tgz#0c6c0daedf9833c2a7f36236069efecb4c3f6e5f" 2574 | dependencies: 2575 | chalk "^2.0.1" 2576 | jest-get-type "^22.1.0" 2577 | pretty-format "^23.0.1" 2578 | 2579 | jest-message-util@^23.1.0: 2580 | version "23.1.0" 2581 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-23.1.0.tgz#9a809ba487ecac5ce511d4e698ee3b5ee2461ea9" 2582 | dependencies: 2583 | "@babel/code-frame" "^7.0.0-beta.35" 2584 | chalk "^2.0.1" 2585 | micromatch "^2.3.11" 2586 | slash "^1.0.0" 2587 | stack-utils "^1.0.1" 2588 | 2589 | jest-mock@^23.1.0: 2590 | version "23.1.0" 2591 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-23.1.0.tgz#a381c31b121ab1f60c462a2dadb7b86dcccac487" 2592 | 2593 | jest-regex-util@^23.0.0: 2594 | version "23.0.0" 2595 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-23.0.0.tgz#dd5c1fde0c46f4371314cf10f7a751a23f4e8f76" 2596 | 2597 | jest-resolve-dependencies@^23.0.1: 2598 | version "23.0.1" 2599 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-23.0.1.tgz#d01a10ddad9152c4cecdf5eac2b88571c4b6a64d" 2600 | dependencies: 2601 | jest-regex-util "^23.0.0" 2602 | jest-snapshot "^23.0.1" 2603 | 2604 | jest-resolve@^23.1.0: 2605 | version "23.1.0" 2606 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-23.1.0.tgz#b9e316eecebd6f00bc50a3960d1527bae65792d2" 2607 | dependencies: 2608 | browser-resolve "^1.11.2" 2609 | chalk "^2.0.1" 2610 | realpath-native "^1.0.0" 2611 | 2612 | jest-runner@^23.1.0: 2613 | version "23.1.0" 2614 | resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-23.1.0.tgz#fa20a933fff731a5432b3561e7f6426594fa29b5" 2615 | dependencies: 2616 | exit "^0.1.2" 2617 | graceful-fs "^4.1.11" 2618 | jest-config "^23.1.0" 2619 | jest-docblock "^23.0.1" 2620 | jest-haste-map "^23.1.0" 2621 | jest-jasmine2 "^23.1.0" 2622 | jest-leak-detector "^23.0.1" 2623 | jest-message-util "^23.1.0" 2624 | jest-runtime "^23.1.0" 2625 | jest-util "^23.1.0" 2626 | jest-worker "^23.0.1" 2627 | source-map-support "^0.5.6" 2628 | throat "^4.0.0" 2629 | 2630 | jest-runtime@^23.1.0: 2631 | version "23.1.0" 2632 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-23.1.0.tgz#b4ae0e87259ecacfd4a884b639db07cf4dd620af" 2633 | dependencies: 2634 | babel-core "^6.0.0" 2635 | babel-plugin-istanbul "^4.1.6" 2636 | chalk "^2.0.1" 2637 | convert-source-map "^1.4.0" 2638 | exit "^0.1.2" 2639 | fast-json-stable-stringify "^2.0.0" 2640 | graceful-fs "^4.1.11" 2641 | jest-config "^23.1.0" 2642 | jest-haste-map "^23.1.0" 2643 | jest-message-util "^23.1.0" 2644 | jest-regex-util "^23.0.0" 2645 | jest-resolve "^23.1.0" 2646 | jest-snapshot "^23.0.1" 2647 | jest-util "^23.1.0" 2648 | jest-validate "^23.0.1" 2649 | micromatch "^2.3.11" 2650 | realpath-native "^1.0.0" 2651 | slash "^1.0.0" 2652 | strip-bom "3.0.0" 2653 | write-file-atomic "^2.1.0" 2654 | yargs "^11.0.0" 2655 | 2656 | jest-serializer@^23.0.1: 2657 | version "23.0.1" 2658 | resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-23.0.1.tgz#a3776aeb311e90fe83fab9e533e85102bd164165" 2659 | 2660 | jest-snapshot@^23.0.1: 2661 | version "23.0.1" 2662 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-23.0.1.tgz#6674fa19b9eb69a99cabecd415bddc42d6af3e7e" 2663 | dependencies: 2664 | chalk "^2.0.1" 2665 | jest-diff "^23.0.1" 2666 | jest-matcher-utils "^23.0.1" 2667 | mkdirp "^0.5.1" 2668 | natural-compare "^1.4.0" 2669 | pretty-format "^23.0.1" 2670 | 2671 | jest-util@^23.1.0: 2672 | version "23.1.0" 2673 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-23.1.0.tgz#c0251baf34644c6dd2fea78a962f4263ac55772d" 2674 | dependencies: 2675 | callsites "^2.0.0" 2676 | chalk "^2.0.1" 2677 | graceful-fs "^4.1.11" 2678 | is-ci "^1.0.10" 2679 | jest-message-util "^23.1.0" 2680 | mkdirp "^0.5.1" 2681 | slash "^1.0.0" 2682 | source-map "^0.6.0" 2683 | 2684 | jest-validate@^23.0.1: 2685 | version "23.0.1" 2686 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-23.0.1.tgz#cd9f01a89d26bb885f12a8667715e9c865a5754f" 2687 | dependencies: 2688 | chalk "^2.0.1" 2689 | jest-get-type "^22.1.0" 2690 | leven "^2.1.0" 2691 | pretty-format "^23.0.1" 2692 | 2693 | jest-watcher@^23.1.0: 2694 | version "23.1.0" 2695 | resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-23.1.0.tgz#a8d5842e38d9fb4afff823df6abb42a58ae6cdbd" 2696 | dependencies: 2697 | ansi-escapes "^3.0.0" 2698 | chalk "^2.0.1" 2699 | string-length "^2.0.0" 2700 | 2701 | jest-worker@^23.0.1: 2702 | version "23.0.1" 2703 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-23.0.1.tgz#9e649dd963ff4046026f91c4017f039a6aa4a7bc" 2704 | dependencies: 2705 | merge-stream "^1.0.1" 2706 | 2707 | jest@^23.1.0: 2708 | version "23.1.0" 2709 | resolved "https://registry.yarnpkg.com/jest/-/jest-23.1.0.tgz#bbb7f893100a11a742dd8bd0d047a54b0968ad1a" 2710 | dependencies: 2711 | import-local "^1.0.0" 2712 | jest-cli "^23.1.0" 2713 | 2714 | joi@^13.4.0: 2715 | version "13.4.0" 2716 | resolved "https://registry.yarnpkg.com/joi/-/joi-13.4.0.tgz#afc359ee3d8bc5f9b9ba6cdc31b46d44af14cecc" 2717 | dependencies: 2718 | hoek "5.x.x" 2719 | isemail "3.x.x" 2720 | topo "3.x.x" 2721 | 2722 | js-tokens@^3.0.0, js-tokens@^3.0.2: 2723 | version "3.0.2" 2724 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 2725 | 2726 | js-yaml@^3.7.0, js-yaml@^3.9.0, js-yaml@^3.9.1: 2727 | version "3.12.0" 2728 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.0.tgz#eaed656ec8344f10f527c6bfa1b6e2244de167d1" 2729 | dependencies: 2730 | argparse "^1.0.7" 2731 | esprima "^4.0.0" 2732 | 2733 | jsbn@~0.1.0: 2734 | version "0.1.1" 2735 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2736 | 2737 | jsdom@^11.5.1: 2738 | version "11.11.0" 2739 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-11.11.0.tgz#df486efad41aee96c59ad7a190e2449c7eb1110e" 2740 | dependencies: 2741 | abab "^1.0.4" 2742 | acorn "^5.3.0" 2743 | acorn-globals "^4.1.0" 2744 | array-equal "^1.0.0" 2745 | cssom ">= 0.3.2 < 0.4.0" 2746 | cssstyle ">= 0.3.1 < 0.4.0" 2747 | data-urls "^1.0.0" 2748 | domexception "^1.0.0" 2749 | escodegen "^1.9.0" 2750 | html-encoding-sniffer "^1.0.2" 2751 | left-pad "^1.2.0" 2752 | nwsapi "^2.0.0" 2753 | parse5 "4.0.0" 2754 | pn "^1.1.0" 2755 | request "^2.83.0" 2756 | request-promise-native "^1.0.5" 2757 | sax "^1.2.4" 2758 | symbol-tree "^3.2.2" 2759 | tough-cookie "^2.3.3" 2760 | w3c-hr-time "^1.0.1" 2761 | webidl-conversions "^4.0.2" 2762 | whatwg-encoding "^1.0.3" 2763 | whatwg-mimetype "^2.1.0" 2764 | whatwg-url "^6.4.1" 2765 | ws "^4.0.0" 2766 | xml-name-validator "^3.0.0" 2767 | 2768 | jsesc@^1.3.0: 2769 | version "1.3.0" 2770 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2771 | 2772 | jsesc@~0.5.0: 2773 | version "0.5.0" 2774 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2775 | 2776 | json-parse-better-errors@^1.0.1: 2777 | version "1.0.2" 2778 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" 2779 | 2780 | json-schema-traverse@^0.3.0: 2781 | version "0.3.1" 2782 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 2783 | 2784 | json-schema@0.2.3: 2785 | version "0.2.3" 2786 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2787 | 2788 | json-stable-stringify-without-jsonify@^1.0.1: 2789 | version "1.0.1" 2790 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 2791 | 2792 | json-stringify-safe@~5.0.1: 2793 | version "5.0.1" 2794 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2795 | 2796 | json5@^0.5.1: 2797 | version "0.5.1" 2798 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2799 | 2800 | jsprim@^1.2.2: 2801 | version "1.4.1" 2802 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 2803 | dependencies: 2804 | assert-plus "1.0.0" 2805 | extsprintf "1.3.0" 2806 | json-schema "0.2.3" 2807 | verror "1.10.0" 2808 | 2809 | jsx-ast-utils@^2.0.0, jsx-ast-utils@^2.0.1: 2810 | version "2.0.1" 2811 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.0.1.tgz#e801b1b39985e20fffc87b40e3748080e2dcac7f" 2812 | dependencies: 2813 | array-includes "^3.0.3" 2814 | 2815 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 2816 | version "3.2.2" 2817 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2818 | dependencies: 2819 | is-buffer "^1.1.5" 2820 | 2821 | kind-of@^4.0.0: 2822 | version "4.0.0" 2823 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2824 | dependencies: 2825 | is-buffer "^1.1.5" 2826 | 2827 | kind-of@^5.0.0: 2828 | version "5.1.0" 2829 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 2830 | 2831 | kind-of@^6.0.0, kind-of@^6.0.2: 2832 | version "6.0.2" 2833 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 2834 | 2835 | lazy-cache@^1.0.3: 2836 | version "1.0.4" 2837 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2838 | 2839 | lcid@^1.0.0: 2840 | version "1.0.0" 2841 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2842 | dependencies: 2843 | invert-kv "^1.0.0" 2844 | 2845 | left-pad@^1.2.0: 2846 | version "1.3.0" 2847 | resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.3.0.tgz#5b8a3a7765dfe001261dde915589e782f8c94d1e" 2848 | 2849 | leven@^2.1.0: 2850 | version "2.1.0" 2851 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 2852 | 2853 | levn@^0.3.0, levn@~0.3.0: 2854 | version "0.3.0" 2855 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2856 | dependencies: 2857 | prelude-ls "~1.1.2" 2858 | type-check "~0.3.2" 2859 | 2860 | load-json-file@^1.0.0: 2861 | version "1.1.0" 2862 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2863 | dependencies: 2864 | graceful-fs "^4.1.2" 2865 | parse-json "^2.2.0" 2866 | pify "^2.0.0" 2867 | pinkie-promise "^2.0.0" 2868 | strip-bom "^2.0.0" 2869 | 2870 | load-json-file@^2.0.0: 2871 | version "2.0.0" 2872 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 2873 | dependencies: 2874 | graceful-fs "^4.1.2" 2875 | parse-json "^2.2.0" 2876 | pify "^2.0.0" 2877 | strip-bom "^3.0.0" 2878 | 2879 | load-json-file@^4.0.0: 2880 | version "4.0.0" 2881 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" 2882 | dependencies: 2883 | graceful-fs "^4.1.2" 2884 | parse-json "^4.0.0" 2885 | pify "^3.0.0" 2886 | strip-bom "^3.0.0" 2887 | 2888 | locate-path@^2.0.0: 2889 | version "2.0.0" 2890 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2891 | dependencies: 2892 | p-locate "^2.0.0" 2893 | path-exists "^3.0.0" 2894 | 2895 | lodash.sortby@^4.7.0: 2896 | version "4.7.0" 2897 | resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" 2898 | 2899 | lodash@^3.10.1: 2900 | version "3.10.1" 2901 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6" 2902 | 2903 | lodash@^4.13.1, lodash@^4.17.10, lodash@^4.17.4, lodash@^4.3.0: 2904 | version "4.17.10" 2905 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7" 2906 | 2907 | longest@^1.0.1: 2908 | version "1.0.1" 2909 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2910 | 2911 | loose-envify@^1.0.0, loose-envify@^1.3.1: 2912 | version "1.3.1" 2913 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2914 | dependencies: 2915 | js-tokens "^3.0.0" 2916 | 2917 | lru-cache@^4.0.1: 2918 | version "4.1.3" 2919 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.3.tgz#a1175cf3496dfc8436c156c334b4955992bce69c" 2920 | dependencies: 2921 | pseudomap "^1.0.2" 2922 | yallist "^2.1.2" 2923 | 2924 | makeerror@1.0.x: 2925 | version "1.0.11" 2926 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 2927 | dependencies: 2928 | tmpl "1.0.x" 2929 | 2930 | map-cache@^0.2.2: 2931 | version "0.2.2" 2932 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 2933 | 2934 | map-visit@^1.0.0: 2935 | version "1.0.0" 2936 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 2937 | dependencies: 2938 | object-visit "^1.0.0" 2939 | 2940 | math-random@^1.0.1: 2941 | version "1.0.1" 2942 | resolved "https://registry.yarnpkg.com/math-random/-/math-random-1.0.1.tgz#8b3aac588b8a66e4975e3cdea67f7bb329601fac" 2943 | 2944 | mem@^1.1.0: 2945 | version "1.1.0" 2946 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 2947 | dependencies: 2948 | mimic-fn "^1.0.0" 2949 | 2950 | merge-stream@^1.0.1: 2951 | version "1.0.1" 2952 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1" 2953 | dependencies: 2954 | readable-stream "^2.0.1" 2955 | 2956 | merge@^1.1.3: 2957 | version "1.2.0" 2958 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 2959 | 2960 | micromatch@^2.1.5, micromatch@^2.3.11: 2961 | version "2.3.11" 2962 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2963 | dependencies: 2964 | arr-diff "^2.0.0" 2965 | array-unique "^0.2.1" 2966 | braces "^1.8.2" 2967 | expand-brackets "^0.1.4" 2968 | extglob "^0.3.1" 2969 | filename-regex "^2.0.0" 2970 | is-extglob "^1.0.0" 2971 | is-glob "^2.0.1" 2972 | kind-of "^3.0.2" 2973 | normalize-path "^2.0.1" 2974 | object.omit "^2.0.0" 2975 | parse-glob "^3.0.4" 2976 | regex-cache "^0.4.2" 2977 | 2978 | micromatch@^3.1.4, micromatch@^3.1.8: 2979 | version "3.1.10" 2980 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 2981 | dependencies: 2982 | arr-diff "^4.0.0" 2983 | array-unique "^0.3.2" 2984 | braces "^2.3.1" 2985 | define-property "^2.0.2" 2986 | extend-shallow "^3.0.2" 2987 | extglob "^2.0.4" 2988 | fragment-cache "^0.2.1" 2989 | kind-of "^6.0.2" 2990 | nanomatch "^1.2.9" 2991 | object.pick "^1.3.0" 2992 | regex-not "^1.0.0" 2993 | snapdragon "^0.8.1" 2994 | to-regex "^3.0.2" 2995 | 2996 | mime-db@~1.33.0: 2997 | version "1.33.0" 2998 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.33.0.tgz#a3492050a5cb9b63450541e39d9788d2272783db" 2999 | 3000 | mime-types@^2.1.12, mime-types@~2.1.17: 3001 | version "2.1.18" 3002 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.18.tgz#6f323f60a83d11146f831ff11fd66e2fe5503bb8" 3003 | dependencies: 3004 | mime-db "~1.33.0" 3005 | 3006 | mimic-fn@^1.0.0: 3007 | version "1.2.0" 3008 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 3009 | 3010 | minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 3011 | version "3.0.4" 3012 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 3013 | dependencies: 3014 | brace-expansion "^1.1.7" 3015 | 3016 | minimist@0.0.8: 3017 | version "0.0.8" 3018 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 3019 | 3020 | minimist@^1.1.1, minimist@^1.2.0: 3021 | version "1.2.0" 3022 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 3023 | 3024 | minimist@~0.0.1: 3025 | version "0.0.10" 3026 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 3027 | 3028 | minipass@^2.2.1, minipass@^2.3.3: 3029 | version "2.3.3" 3030 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.3.tgz#a7dcc8b7b833f5d368759cce544dccb55f50f233" 3031 | dependencies: 3032 | safe-buffer "^5.1.2" 3033 | yallist "^3.0.0" 3034 | 3035 | minizlib@^1.1.0: 3036 | version "1.1.0" 3037 | resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.1.0.tgz#11e13658ce46bc3a70a267aac58359d1e0c29ceb" 3038 | dependencies: 3039 | minipass "^2.2.1" 3040 | 3041 | mixin-deep@^1.2.0: 3042 | version "1.3.1" 3043 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe" 3044 | dependencies: 3045 | for-in "^1.0.2" 3046 | is-extendable "^1.0.1" 3047 | 3048 | mkdirp@^0.5.0, mkdirp@^0.5.1: 3049 | version "0.5.1" 3050 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 3051 | dependencies: 3052 | minimist "0.0.8" 3053 | 3054 | ms@2.0.0: 3055 | version "2.0.0" 3056 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 3057 | 3058 | mute-stream@0.0.7: 3059 | version "0.0.7" 3060 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 3061 | 3062 | nan@^2.9.2: 3063 | version "2.10.0" 3064 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.10.0.tgz#96d0cd610ebd58d4b4de9cc0c6828cda99c7548f" 3065 | 3066 | nanomatch@^1.2.9: 3067 | version "1.2.9" 3068 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.9.tgz#879f7150cb2dab7a471259066c104eee6e0fa7c2" 3069 | dependencies: 3070 | arr-diff "^4.0.0" 3071 | array-unique "^0.3.2" 3072 | define-property "^2.0.2" 3073 | extend-shallow "^3.0.2" 3074 | fragment-cache "^0.2.1" 3075 | is-odd "^2.0.0" 3076 | is-windows "^1.0.2" 3077 | kind-of "^6.0.2" 3078 | object.pick "^1.3.0" 3079 | regex-not "^1.0.0" 3080 | snapdragon "^0.8.1" 3081 | to-regex "^3.0.1" 3082 | 3083 | natural-compare@^1.4.0: 3084 | version "1.4.0" 3085 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 3086 | 3087 | needle@^2.2.0: 3088 | version "2.2.1" 3089 | resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.1.tgz#b5e325bd3aae8c2678902fa296f729455d1d3a7d" 3090 | dependencies: 3091 | debug "^2.1.2" 3092 | iconv-lite "^0.4.4" 3093 | sax "^1.2.4" 3094 | 3095 | node-fetch@^1.0.1: 3096 | version "1.7.3" 3097 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef" 3098 | dependencies: 3099 | encoding "^0.1.11" 3100 | is-stream "^1.0.1" 3101 | 3102 | node-int64@^0.4.0: 3103 | version "0.4.0" 3104 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 3105 | 3106 | node-notifier@^5.2.1: 3107 | version "5.2.1" 3108 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.2.1.tgz#fa313dd08f5517db0e2502e5758d664ac69f9dea" 3109 | dependencies: 3110 | growly "^1.3.0" 3111 | semver "^5.4.1" 3112 | shellwords "^0.1.1" 3113 | which "^1.3.0" 3114 | 3115 | node-pre-gyp@^0.10.0: 3116 | version "0.10.0" 3117 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.10.0.tgz#6e4ef5bb5c5203c6552448828c852c40111aac46" 3118 | dependencies: 3119 | detect-libc "^1.0.2" 3120 | mkdirp "^0.5.1" 3121 | needle "^2.2.0" 3122 | nopt "^4.0.1" 3123 | npm-packlist "^1.1.6" 3124 | npmlog "^4.0.2" 3125 | rc "^1.1.7" 3126 | rimraf "^2.6.1" 3127 | semver "^5.3.0" 3128 | tar "^4" 3129 | 3130 | nodesecurity-npm-utils@^6.0.0: 3131 | version "6.0.0" 3132 | resolved "https://registry.yarnpkg.com/nodesecurity-npm-utils/-/nodesecurity-npm-utils-6.0.0.tgz#5fb5974008c0c97a5c01844faa8fd3fc5520806c" 3133 | 3134 | nopt@^4.0.1: 3135 | version "4.0.1" 3136 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 3137 | dependencies: 3138 | abbrev "1" 3139 | osenv "^0.1.4" 3140 | 3141 | normalize-package-data@^2.3.2: 3142 | version "2.4.0" 3143 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 3144 | dependencies: 3145 | hosted-git-info "^2.1.4" 3146 | is-builtin-module "^1.0.0" 3147 | semver "2 || 3 || 4 || 5" 3148 | validate-npm-package-license "^3.0.1" 3149 | 3150 | normalize-path@^2.0.0, normalize-path@^2.0.1, normalize-path@^2.1.1: 3151 | version "2.1.1" 3152 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 3153 | dependencies: 3154 | remove-trailing-separator "^1.0.1" 3155 | 3156 | npm-bundled@^1.0.1: 3157 | version "1.0.3" 3158 | resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.3.tgz#7e71703d973af3370a9591bafe3a63aca0be2308" 3159 | 3160 | npm-packlist@^1.1.6: 3161 | version "1.1.10" 3162 | resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.1.10.tgz#1039db9e985727e464df066f4cf0ab6ef85c398a" 3163 | dependencies: 3164 | ignore-walk "^3.0.1" 3165 | npm-bundled "^1.0.1" 3166 | 3167 | npm-run-path@^2.0.0: 3168 | version "2.0.2" 3169 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 3170 | dependencies: 3171 | path-key "^2.0.0" 3172 | 3173 | npmlog@^4.0.2: 3174 | version "4.1.2" 3175 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 3176 | dependencies: 3177 | are-we-there-yet "~1.1.2" 3178 | console-control-strings "~1.1.0" 3179 | gauge "~2.7.3" 3180 | set-blocking "~2.0.0" 3181 | 3182 | nsp@^3.2.1: 3183 | version "3.2.1" 3184 | resolved "https://registry.yarnpkg.com/nsp/-/nsp-3.2.1.tgz#0f540f8e85851e4ad370b14d5001098046dedfd1" 3185 | dependencies: 3186 | chalk "^2.1.0" 3187 | cli-table2 "^0.2.0" 3188 | cvss "^1.0.2" 3189 | https-proxy-agent "^2.1.0" 3190 | inquirer "^3.3.0" 3191 | nodesecurity-npm-utils "^6.0.0" 3192 | semver "^5.4.1" 3193 | wreck "^12.5.1" 3194 | yargs "^9.0.1" 3195 | 3196 | number-is-nan@^1.0.0: 3197 | version "1.0.1" 3198 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 3199 | 3200 | nwsapi@^2.0.0: 3201 | version "2.0.3" 3202 | resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.0.3.tgz#3f4010d6c943f34018d3dfb5f2fbc0de90476959" 3203 | 3204 | oauth-sign@~0.8.2: 3205 | version "0.8.2" 3206 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 3207 | 3208 | object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: 3209 | version "4.1.1" 3210 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 3211 | 3212 | object-copy@^0.1.0: 3213 | version "0.1.0" 3214 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 3215 | dependencies: 3216 | copy-descriptor "^0.1.0" 3217 | define-property "^0.2.5" 3218 | kind-of "^3.0.3" 3219 | 3220 | object-keys@^1.0.8: 3221 | version "1.0.11" 3222 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 3223 | 3224 | object-visit@^1.0.0: 3225 | version "1.0.1" 3226 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 3227 | dependencies: 3228 | isobject "^3.0.0" 3229 | 3230 | object.getownpropertydescriptors@^2.0.3: 3231 | version "2.0.3" 3232 | resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16" 3233 | dependencies: 3234 | define-properties "^1.1.2" 3235 | es-abstract "^1.5.1" 3236 | 3237 | object.omit@^2.0.0: 3238 | version "2.0.1" 3239 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 3240 | dependencies: 3241 | for-own "^0.1.4" 3242 | is-extendable "^0.1.1" 3243 | 3244 | object.pick@^1.3.0: 3245 | version "1.3.0" 3246 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 3247 | dependencies: 3248 | isobject "^3.0.1" 3249 | 3250 | once@^1.3.0, once@^1.4.0: 3251 | version "1.4.0" 3252 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 3253 | dependencies: 3254 | wrappy "1" 3255 | 3256 | onetime@^2.0.0: 3257 | version "2.0.1" 3258 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 3259 | dependencies: 3260 | mimic-fn "^1.0.0" 3261 | 3262 | optimist@^0.6.1: 3263 | version "0.6.1" 3264 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 3265 | dependencies: 3266 | minimist "~0.0.1" 3267 | wordwrap "~0.0.2" 3268 | 3269 | optionator@^0.8.1, optionator@^0.8.2: 3270 | version "0.8.2" 3271 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 3272 | dependencies: 3273 | deep-is "~0.1.3" 3274 | fast-levenshtein "~2.0.4" 3275 | levn "~0.3.0" 3276 | prelude-ls "~1.1.2" 3277 | type-check "~0.3.2" 3278 | wordwrap "~1.0.0" 3279 | 3280 | os-homedir@^1.0.0: 3281 | version "1.0.2" 3282 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 3283 | 3284 | os-locale@^2.0.0: 3285 | version "2.1.0" 3286 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 3287 | dependencies: 3288 | execa "^0.7.0" 3289 | lcid "^1.0.0" 3290 | mem "^1.1.0" 3291 | 3292 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.2: 3293 | version "1.0.2" 3294 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 3295 | 3296 | osenv@^0.1.4: 3297 | version "0.1.5" 3298 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 3299 | dependencies: 3300 | os-homedir "^1.0.0" 3301 | os-tmpdir "^1.0.0" 3302 | 3303 | output-file-sync@^1.1.2: 3304 | version "1.1.2" 3305 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 3306 | dependencies: 3307 | graceful-fs "^4.1.4" 3308 | mkdirp "^0.5.1" 3309 | object-assign "^4.1.0" 3310 | 3311 | p-finally@^1.0.0: 3312 | version "1.0.0" 3313 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 3314 | 3315 | p-limit@^1.1.0: 3316 | version "1.3.0" 3317 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" 3318 | dependencies: 3319 | p-try "^1.0.0" 3320 | 3321 | p-locate@^2.0.0: 3322 | version "2.0.0" 3323 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 3324 | dependencies: 3325 | p-limit "^1.1.0" 3326 | 3327 | p-try@^1.0.0: 3328 | version "1.0.0" 3329 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 3330 | 3331 | parse-glob@^3.0.4: 3332 | version "3.0.4" 3333 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 3334 | dependencies: 3335 | glob-base "^0.3.0" 3336 | is-dotfile "^1.0.0" 3337 | is-extglob "^1.0.0" 3338 | is-glob "^2.0.0" 3339 | 3340 | parse-json@^2.2.0: 3341 | version "2.2.0" 3342 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 3343 | dependencies: 3344 | error-ex "^1.2.0" 3345 | 3346 | parse-json@^4.0.0: 3347 | version "4.0.0" 3348 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" 3349 | dependencies: 3350 | error-ex "^1.3.1" 3351 | json-parse-better-errors "^1.0.1" 3352 | 3353 | parse5@4.0.0: 3354 | version "4.0.0" 3355 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608" 3356 | 3357 | pascalcase@^0.1.1: 3358 | version "0.1.1" 3359 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 3360 | 3361 | path-exists@^2.0.0: 3362 | version "2.1.0" 3363 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 3364 | dependencies: 3365 | pinkie-promise "^2.0.0" 3366 | 3367 | path-exists@^3.0.0: 3368 | version "3.0.0" 3369 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 3370 | 3371 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 3372 | version "1.0.1" 3373 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 3374 | 3375 | path-is-inside@^1.0.1, path-is-inside@^1.0.2: 3376 | version "1.0.2" 3377 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 3378 | 3379 | path-key@^2.0.0: 3380 | version "2.0.1" 3381 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 3382 | 3383 | path-parse@^1.0.5: 3384 | version "1.0.5" 3385 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 3386 | 3387 | path-type@^1.0.0: 3388 | version "1.1.0" 3389 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 3390 | dependencies: 3391 | graceful-fs "^4.1.2" 3392 | pify "^2.0.0" 3393 | pinkie-promise "^2.0.0" 3394 | 3395 | path-type@^2.0.0: 3396 | version "2.0.0" 3397 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 3398 | dependencies: 3399 | pify "^2.0.0" 3400 | 3401 | path-type@^3.0.0: 3402 | version "3.0.0" 3403 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" 3404 | dependencies: 3405 | pify "^3.0.0" 3406 | 3407 | performance-now@^2.1.0: 3408 | version "2.1.0" 3409 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 3410 | 3411 | pify@^2.0.0: 3412 | version "2.3.0" 3413 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 3414 | 3415 | pify@^3.0.0: 3416 | version "3.0.0" 3417 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 3418 | 3419 | pinkie-promise@^2.0.0: 3420 | version "2.0.1" 3421 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 3422 | dependencies: 3423 | pinkie "^2.0.0" 3424 | 3425 | pinkie@^2.0.0: 3426 | version "2.0.4" 3427 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 3428 | 3429 | pkg-dir@^1.0.0: 3430 | version "1.0.0" 3431 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 3432 | dependencies: 3433 | find-up "^1.0.0" 3434 | 3435 | pkg-dir@^2.0.0: 3436 | version "2.0.0" 3437 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" 3438 | dependencies: 3439 | find-up "^2.1.0" 3440 | 3441 | pluralize@^7.0.0: 3442 | version "7.0.0" 3443 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777" 3444 | 3445 | pn@^1.1.0: 3446 | version "1.1.0" 3447 | resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb" 3448 | 3449 | posix-character-classes@^0.1.0: 3450 | version "0.1.1" 3451 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 3452 | 3453 | prelude-ls@~1.1.2: 3454 | version "1.1.2" 3455 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 3456 | 3457 | preserve@^0.2.0: 3458 | version "0.2.0" 3459 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 3460 | 3461 | prettier@^1.13.5: 3462 | version "1.13.5" 3463 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.13.5.tgz#7ae2076998c8edce79d63834e9b7b09fead6bfd0" 3464 | 3465 | pretty-format@^23.0.1: 3466 | version "23.0.1" 3467 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-23.0.1.tgz#d61d065268e4c759083bccbca27a01ad7c7601f4" 3468 | dependencies: 3469 | ansi-regex "^3.0.0" 3470 | ansi-styles "^3.2.0" 3471 | 3472 | private@^0.1.6, private@^0.1.8: 3473 | version "0.1.8" 3474 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 3475 | 3476 | process-nextick-args@~2.0.0: 3477 | version "2.0.0" 3478 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 3479 | 3480 | progress@^2.0.0: 3481 | version "2.0.0" 3482 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" 3483 | 3484 | promise@^7.1.1: 3485 | version "7.3.1" 3486 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" 3487 | dependencies: 3488 | asap "~2.0.3" 3489 | 3490 | prop-types@^15.6.1: 3491 | version "15.6.1" 3492 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.6.1.tgz#36644453564255ddda391191fb3a125cbdf654ca" 3493 | dependencies: 3494 | fbjs "^0.8.16" 3495 | loose-envify "^1.3.1" 3496 | object-assign "^4.1.1" 3497 | 3498 | pseudomap@^1.0.2: 3499 | version "1.0.2" 3500 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 3501 | 3502 | psl@^1.1.24: 3503 | version "1.1.28" 3504 | resolved "https://registry.yarnpkg.com/psl/-/psl-1.1.28.tgz#4fb6ceb08a1e2214d4fd4de0ca22dae13740bc7b" 3505 | 3506 | punycode@2.x.x, punycode@^2.1.0: 3507 | version "2.1.1" 3508 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 3509 | 3510 | punycode@^1.4.1: 3511 | version "1.4.1" 3512 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 3513 | 3514 | pupa@^1.0.0: 3515 | version "1.0.0" 3516 | resolved "https://registry.yarnpkg.com/pupa/-/pupa-1.0.0.tgz#9a9568a5af7e657b8462a6e9d5328743560ceff6" 3517 | 3518 | qs@~6.5.1: 3519 | version "6.5.2" 3520 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" 3521 | 3522 | ramda-adjunct@^2.5.0: 3523 | version "2.9.0" 3524 | resolved "https://registry.yarnpkg.com/ramda-adjunct/-/ramda-adjunct-2.9.0.tgz#1d9b149f987c0bec77fa34caa19cc7b9b9b55021" 3525 | 3526 | ramda@^0.25.0: 3527 | version "0.25.0" 3528 | resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.25.0.tgz#8fdf68231cffa90bc2f9460390a0cb74a29b29a9" 3529 | 3530 | randomatic@^3.0.0: 3531 | version "3.0.0" 3532 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-3.0.0.tgz#d35490030eb4f7578de292ce6dfb04a91a128923" 3533 | dependencies: 3534 | is-number "^4.0.0" 3535 | kind-of "^6.0.0" 3536 | math-random "^1.0.1" 3537 | 3538 | rc@^1.1.7: 3539 | version "1.2.8" 3540 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 3541 | dependencies: 3542 | deep-extend "^0.6.0" 3543 | ini "~1.3.0" 3544 | minimist "^1.2.0" 3545 | strip-json-comments "~2.0.1" 3546 | 3547 | read-pkg-up@^1.0.1: 3548 | version "1.0.1" 3549 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 3550 | dependencies: 3551 | find-up "^1.0.0" 3552 | read-pkg "^1.0.0" 3553 | 3554 | read-pkg-up@^2.0.0: 3555 | version "2.0.0" 3556 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 3557 | dependencies: 3558 | find-up "^2.0.0" 3559 | read-pkg "^2.0.0" 3560 | 3561 | read-pkg@^1.0.0: 3562 | version "1.1.0" 3563 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 3564 | dependencies: 3565 | load-json-file "^1.0.0" 3566 | normalize-package-data "^2.3.2" 3567 | path-type "^1.0.0" 3568 | 3569 | read-pkg@^2.0.0: 3570 | version "2.0.0" 3571 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 3572 | dependencies: 3573 | load-json-file "^2.0.0" 3574 | normalize-package-data "^2.3.2" 3575 | path-type "^2.0.0" 3576 | 3577 | read-pkg@^3.0.0: 3578 | version "3.0.0" 3579 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" 3580 | dependencies: 3581 | load-json-file "^4.0.0" 3582 | normalize-package-data "^2.3.2" 3583 | path-type "^3.0.0" 3584 | 3585 | readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.2.2: 3586 | version "2.3.6" 3587 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 3588 | dependencies: 3589 | core-util-is "~1.0.0" 3590 | inherits "~2.0.3" 3591 | isarray "~1.0.0" 3592 | process-nextick-args "~2.0.0" 3593 | safe-buffer "~5.1.1" 3594 | string_decoder "~1.1.1" 3595 | util-deprecate "~1.0.1" 3596 | 3597 | readdirp@^2.0.0: 3598 | version "2.1.0" 3599 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 3600 | dependencies: 3601 | graceful-fs "^4.1.2" 3602 | minimatch "^3.0.2" 3603 | readable-stream "^2.0.2" 3604 | set-immediate-shim "^1.0.1" 3605 | 3606 | realpath-native@^1.0.0: 3607 | version "1.0.0" 3608 | resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.0.0.tgz#7885721a83b43bd5327609f0ddecb2482305fdf0" 3609 | dependencies: 3610 | util.promisify "^1.0.0" 3611 | 3612 | regenerate@^1.2.1: 3613 | version "1.4.0" 3614 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" 3615 | 3616 | regenerator-runtime@^0.10.5: 3617 | version "0.10.5" 3618 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 3619 | 3620 | regenerator-runtime@^0.11.0: 3621 | version "0.11.1" 3622 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 3623 | 3624 | regenerator-transform@^0.10.0: 3625 | version "0.10.1" 3626 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 3627 | dependencies: 3628 | babel-runtime "^6.18.0" 3629 | babel-types "^6.19.0" 3630 | private "^0.1.6" 3631 | 3632 | regex-cache@^0.4.2: 3633 | version "0.4.4" 3634 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 3635 | dependencies: 3636 | is-equal-shallow "^0.1.3" 3637 | 3638 | regex-not@^1.0.0, regex-not@^1.0.2: 3639 | version "1.0.2" 3640 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 3641 | dependencies: 3642 | extend-shallow "^3.0.2" 3643 | safe-regex "^1.1.0" 3644 | 3645 | regexpp@^1.0.1: 3646 | version "1.1.0" 3647 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-1.1.0.tgz#0e3516dd0b7904f413d2d4193dce4618c3a689ab" 3648 | 3649 | regexpu-core@^2.0.0: 3650 | version "2.0.0" 3651 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 3652 | dependencies: 3653 | regenerate "^1.2.1" 3654 | regjsgen "^0.2.0" 3655 | regjsparser "^0.1.4" 3656 | 3657 | regjsgen@^0.2.0: 3658 | version "0.2.0" 3659 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 3660 | 3661 | regjsparser@^0.1.4: 3662 | version "0.1.5" 3663 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 3664 | dependencies: 3665 | jsesc "~0.5.0" 3666 | 3667 | remove-trailing-separator@^1.0.1: 3668 | version "1.1.0" 3669 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 3670 | 3671 | repeat-element@^1.1.2: 3672 | version "1.1.2" 3673 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 3674 | 3675 | repeat-string@^1.5.2, repeat-string@^1.6.1: 3676 | version "1.6.1" 3677 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3678 | 3679 | repeating@^2.0.0: 3680 | version "2.0.1" 3681 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 3682 | dependencies: 3683 | is-finite "^1.0.0" 3684 | 3685 | request-promise-core@1.1.1: 3686 | version "1.1.1" 3687 | resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.1.tgz#3eee00b2c5aa83239cfb04c5700da36f81cd08b6" 3688 | dependencies: 3689 | lodash "^4.13.1" 3690 | 3691 | request-promise-native@^1.0.5: 3692 | version "1.0.5" 3693 | resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.5.tgz#5281770f68e0c9719e5163fd3fab482215f4fda5" 3694 | dependencies: 3695 | request-promise-core "1.1.1" 3696 | stealthy-require "^1.1.0" 3697 | tough-cookie ">=2.3.3" 3698 | 3699 | request@^2.81.0, request@^2.83.0: 3700 | version "2.87.0" 3701 | resolved "https://registry.yarnpkg.com/request/-/request-2.87.0.tgz#32f00235cd08d482b4d0d68db93a829c0ed5756e" 3702 | dependencies: 3703 | aws-sign2 "~0.7.0" 3704 | aws4 "^1.6.0" 3705 | caseless "~0.12.0" 3706 | combined-stream "~1.0.5" 3707 | extend "~3.0.1" 3708 | forever-agent "~0.6.1" 3709 | form-data "~2.3.1" 3710 | har-validator "~5.0.3" 3711 | http-signature "~1.2.0" 3712 | is-typedarray "~1.0.0" 3713 | isstream "~0.1.2" 3714 | json-stringify-safe "~5.0.1" 3715 | mime-types "~2.1.17" 3716 | oauth-sign "~0.8.2" 3717 | performance-now "^2.1.0" 3718 | qs "~6.5.1" 3719 | safe-buffer "^5.1.1" 3720 | tough-cookie "~2.3.3" 3721 | tunnel-agent "^0.6.0" 3722 | uuid "^3.1.0" 3723 | 3724 | require-directory@^2.1.1: 3725 | version "2.1.1" 3726 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3727 | 3728 | require-from-string@^2.0.1: 3729 | version "2.0.2" 3730 | resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" 3731 | 3732 | require-main-filename@^1.0.1: 3733 | version "1.0.1" 3734 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3735 | 3736 | require-uncached@^1.0.3: 3737 | version "1.0.3" 3738 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 3739 | dependencies: 3740 | caller-path "^0.1.0" 3741 | resolve-from "^1.0.0" 3742 | 3743 | resolve-cwd@^2.0.0: 3744 | version "2.0.0" 3745 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a" 3746 | dependencies: 3747 | resolve-from "^3.0.0" 3748 | 3749 | resolve-from@^1.0.0: 3750 | version "1.0.1" 3751 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 3752 | 3753 | resolve-from@^3.0.0: 3754 | version "3.0.0" 3755 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" 3756 | 3757 | resolve-url@^0.2.1: 3758 | version "0.2.1" 3759 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 3760 | 3761 | resolve@1.1.7: 3762 | version "1.1.7" 3763 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 3764 | 3765 | resolve@^1.5.0, resolve@^1.6.0: 3766 | version "1.7.1" 3767 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.7.1.tgz#aadd656374fd298aee895bc026b8297418677fd3" 3768 | dependencies: 3769 | path-parse "^1.0.5" 3770 | 3771 | restore-cursor@^2.0.0: 3772 | version "2.0.0" 3773 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 3774 | dependencies: 3775 | onetime "^2.0.0" 3776 | signal-exit "^3.0.2" 3777 | 3778 | ret@~0.1.10: 3779 | version "0.1.15" 3780 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 3781 | 3782 | right-align@^0.1.1: 3783 | version "0.1.3" 3784 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3785 | dependencies: 3786 | align-text "^0.1.1" 3787 | 3788 | rimraf@^2.2.8, rimraf@^2.5.4, rimraf@^2.6.1: 3789 | version "2.6.2" 3790 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 3791 | dependencies: 3792 | glob "^7.0.5" 3793 | 3794 | rsvp@^3.3.3: 3795 | version "3.6.2" 3796 | resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-3.6.2.tgz#2e96491599a96cde1b515d5674a8f7a91452926a" 3797 | 3798 | run-async@^2.2.0: 3799 | version "2.3.0" 3800 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 3801 | dependencies: 3802 | is-promise "^2.1.0" 3803 | 3804 | run-node@^0.2.0: 3805 | version "0.2.0" 3806 | resolved "https://registry.yarnpkg.com/run-node/-/run-node-0.2.0.tgz#b26e942e94205dedbe532cddf0fd1dbd56649af6" 3807 | 3808 | rx-lite-aggregates@^4.0.8: 3809 | version "4.0.8" 3810 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 3811 | dependencies: 3812 | rx-lite "*" 3813 | 3814 | rx-lite@*, rx-lite@^4.0.8: 3815 | version "4.0.8" 3816 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 3817 | 3818 | safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 3819 | version "5.1.2" 3820 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 3821 | 3822 | safe-regex@^1.1.0: 3823 | version "1.1.0" 3824 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 3825 | dependencies: 3826 | ret "~0.1.10" 3827 | 3828 | "safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2: 3829 | version "2.1.2" 3830 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 3831 | 3832 | sane@^2.0.0: 3833 | version "2.5.2" 3834 | resolved "https://registry.yarnpkg.com/sane/-/sane-2.5.2.tgz#b4dc1861c21b427e929507a3e751e2a2cb8ab3fa" 3835 | dependencies: 3836 | anymatch "^2.0.0" 3837 | capture-exit "^1.2.0" 3838 | exec-sh "^0.2.0" 3839 | fb-watchman "^2.0.0" 3840 | micromatch "^3.1.4" 3841 | minimist "^1.1.1" 3842 | walker "~1.0.5" 3843 | watch "~0.18.0" 3844 | optionalDependencies: 3845 | fsevents "^1.2.3" 3846 | 3847 | sax@^1.2.4: 3848 | version "1.2.4" 3849 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 3850 | 3851 | "semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1: 3852 | version "5.5.0" 3853 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 3854 | 3855 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3856 | version "2.0.0" 3857 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3858 | 3859 | set-immediate-shim@^1.0.1: 3860 | version "1.0.1" 3861 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3862 | 3863 | set-value@^0.4.3: 3864 | version "0.4.3" 3865 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" 3866 | dependencies: 3867 | extend-shallow "^2.0.1" 3868 | is-extendable "^0.1.1" 3869 | is-plain-object "^2.0.1" 3870 | to-object-path "^0.3.0" 3871 | 3872 | set-value@^2.0.0: 3873 | version "2.0.0" 3874 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" 3875 | dependencies: 3876 | extend-shallow "^2.0.1" 3877 | is-extendable "^0.1.1" 3878 | is-plain-object "^2.0.3" 3879 | split-string "^3.0.1" 3880 | 3881 | setimmediate@^1.0.5: 3882 | version "1.0.5" 3883 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 3884 | 3885 | shebang-command@^1.2.0: 3886 | version "1.2.0" 3887 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 3888 | dependencies: 3889 | shebang-regex "^1.0.0" 3890 | 3891 | shebang-regex@^1.0.0: 3892 | version "1.0.0" 3893 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3894 | 3895 | shellwords@^0.1.1: 3896 | version "0.1.1" 3897 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" 3898 | 3899 | signal-exit@^3.0.0, signal-exit@^3.0.2: 3900 | version "3.0.2" 3901 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3902 | 3903 | slash@^1.0.0: 3904 | version "1.0.0" 3905 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3906 | 3907 | slice-ansi@1.0.0: 3908 | version "1.0.0" 3909 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d" 3910 | dependencies: 3911 | is-fullwidth-code-point "^2.0.0" 3912 | 3913 | snapdragon-node@^2.0.1: 3914 | version "2.1.1" 3915 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 3916 | dependencies: 3917 | define-property "^1.0.0" 3918 | isobject "^3.0.0" 3919 | snapdragon-util "^3.0.1" 3920 | 3921 | snapdragon-util@^3.0.1: 3922 | version "3.0.1" 3923 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 3924 | dependencies: 3925 | kind-of "^3.2.0" 3926 | 3927 | snapdragon@^0.8.1: 3928 | version "0.8.2" 3929 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" 3930 | dependencies: 3931 | base "^0.11.1" 3932 | debug "^2.2.0" 3933 | define-property "^0.2.5" 3934 | extend-shallow "^2.0.1" 3935 | map-cache "^0.2.2" 3936 | source-map "^0.5.6" 3937 | source-map-resolve "^0.5.0" 3938 | use "^3.1.0" 3939 | 3940 | source-map-resolve@^0.5.0: 3941 | version "0.5.2" 3942 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" 3943 | dependencies: 3944 | atob "^2.1.1" 3945 | decode-uri-component "^0.2.0" 3946 | resolve-url "^0.2.1" 3947 | source-map-url "^0.4.0" 3948 | urix "^0.1.0" 3949 | 3950 | source-map-support@^0.4.15: 3951 | version "0.4.18" 3952 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 3953 | dependencies: 3954 | source-map "^0.5.6" 3955 | 3956 | source-map-support@^0.5.6: 3957 | version "0.5.6" 3958 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.6.tgz#4435cee46b1aab62b8e8610ce60f788091c51c13" 3959 | dependencies: 3960 | buffer-from "^1.0.0" 3961 | source-map "^0.6.0" 3962 | 3963 | source-map-url@^0.4.0: 3964 | version "0.4.0" 3965 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 3966 | 3967 | source-map@^0.4.4: 3968 | version "0.4.4" 3969 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 3970 | dependencies: 3971 | amdefine ">=0.0.4" 3972 | 3973 | source-map@^0.5.3, source-map@^0.5.6, source-map@^0.5.7, source-map@~0.5.1: 3974 | version "0.5.7" 3975 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 3976 | 3977 | source-map@^0.6.0, source-map@~0.6.1: 3978 | version "0.6.1" 3979 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 3980 | 3981 | spdx-correct@^3.0.0: 3982 | version "3.0.0" 3983 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.0.0.tgz#05a5b4d7153a195bc92c3c425b69f3b2a9524c82" 3984 | dependencies: 3985 | spdx-expression-parse "^3.0.0" 3986 | spdx-license-ids "^3.0.0" 3987 | 3988 | spdx-exceptions@^2.1.0: 3989 | version "2.1.0" 3990 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.1.0.tgz#2c7ae61056c714a5b9b9b2b2af7d311ef5c78fe9" 3991 | 3992 | spdx-expression-parse@^3.0.0: 3993 | version "3.0.0" 3994 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" 3995 | dependencies: 3996 | spdx-exceptions "^2.1.0" 3997 | spdx-license-ids "^3.0.0" 3998 | 3999 | spdx-license-ids@^3.0.0: 4000 | version "3.0.0" 4001 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.0.tgz#7a7cd28470cc6d3a1cfe6d66886f6bc430d3ac87" 4002 | 4003 | split-string@^3.0.1, split-string@^3.0.2: 4004 | version "3.1.0" 4005 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 4006 | dependencies: 4007 | extend-shallow "^3.0.0" 4008 | 4009 | sprintf-js@~1.0.2: 4010 | version "1.0.3" 4011 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 4012 | 4013 | sshpk@^1.7.0: 4014 | version "1.14.2" 4015 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.14.2.tgz#c6fc61648a3d9c4e764fd3fcdf4ea105e492ba98" 4016 | dependencies: 4017 | asn1 "~0.2.3" 4018 | assert-plus "^1.0.0" 4019 | dashdash "^1.12.0" 4020 | getpass "^0.1.1" 4021 | safer-buffer "^2.0.2" 4022 | optionalDependencies: 4023 | bcrypt-pbkdf "^1.0.0" 4024 | ecc-jsbn "~0.1.1" 4025 | jsbn "~0.1.0" 4026 | tweetnacl "~0.14.0" 4027 | 4028 | stack-utils@^1.0.1: 4029 | version "1.0.1" 4030 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.1.tgz#d4f33ab54e8e38778b0ca5cfd3b3afb12db68620" 4031 | 4032 | static-extend@^0.1.1: 4033 | version "0.1.2" 4034 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 4035 | dependencies: 4036 | define-property "^0.2.5" 4037 | object-copy "^0.1.0" 4038 | 4039 | stealthy-require@^1.1.0: 4040 | version "1.1.1" 4041 | resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" 4042 | 4043 | string-length@^2.0.0: 4044 | version "2.0.0" 4045 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed" 4046 | dependencies: 4047 | astral-regex "^1.0.0" 4048 | strip-ansi "^4.0.0" 4049 | 4050 | string-width@^1.0.1: 4051 | version "1.0.2" 4052 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 4053 | dependencies: 4054 | code-point-at "^1.0.0" 4055 | is-fullwidth-code-point "^1.0.0" 4056 | strip-ansi "^3.0.0" 4057 | 4058 | "string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1: 4059 | version "2.1.1" 4060 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 4061 | dependencies: 4062 | is-fullwidth-code-point "^2.0.0" 4063 | strip-ansi "^4.0.0" 4064 | 4065 | string_decoder@~1.1.1: 4066 | version "1.1.1" 4067 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 4068 | dependencies: 4069 | safe-buffer "~5.1.0" 4070 | 4071 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 4072 | version "3.0.1" 4073 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 4074 | dependencies: 4075 | ansi-regex "^2.0.0" 4076 | 4077 | strip-ansi@^4.0.0: 4078 | version "4.0.0" 4079 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 4080 | dependencies: 4081 | ansi-regex "^3.0.0" 4082 | 4083 | strip-bom@3.0.0, strip-bom@^3.0.0: 4084 | version "3.0.0" 4085 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 4086 | 4087 | strip-bom@^2.0.0: 4088 | version "2.0.0" 4089 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 4090 | dependencies: 4091 | is-utf8 "^0.2.0" 4092 | 4093 | strip-eof@^1.0.0: 4094 | version "1.0.0" 4095 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 4096 | 4097 | strip-json-comments@~2.0.1: 4098 | version "2.0.1" 4099 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 4100 | 4101 | supports-color@^2.0.0: 4102 | version "2.0.0" 4103 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 4104 | 4105 | supports-color@^3.1.2: 4106 | version "3.2.3" 4107 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 4108 | dependencies: 4109 | has-flag "^1.0.0" 4110 | 4111 | supports-color@^5.3.0: 4112 | version "5.4.0" 4113 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.4.0.tgz#1c6b337402c2137605efe19f10fec390f6faab54" 4114 | dependencies: 4115 | has-flag "^3.0.0" 4116 | 4117 | symbol-tree@^3.2.2: 4118 | version "3.2.2" 4119 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 4120 | 4121 | table@4.0.2: 4122 | version "4.0.2" 4123 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36" 4124 | dependencies: 4125 | ajv "^5.2.3" 4126 | ajv-keywords "^2.1.0" 4127 | chalk "^2.1.0" 4128 | lodash "^4.17.4" 4129 | slice-ansi "1.0.0" 4130 | string-width "^2.1.1" 4131 | 4132 | tar@^4: 4133 | version "4.4.4" 4134 | resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.4.tgz#ec8409fae9f665a4355cc3b4087d0820232bb8cd" 4135 | dependencies: 4136 | chownr "^1.0.1" 4137 | fs-minipass "^1.2.5" 4138 | minipass "^2.3.3" 4139 | minizlib "^1.1.0" 4140 | mkdirp "^0.5.0" 4141 | safe-buffer "^5.1.2" 4142 | yallist "^3.0.2" 4143 | 4144 | test-exclude@^4.2.1: 4145 | version "4.2.1" 4146 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.2.1.tgz#dfa222f03480bca69207ca728b37d74b45f724fa" 4147 | dependencies: 4148 | arrify "^1.0.1" 4149 | micromatch "^3.1.8" 4150 | object-assign "^4.1.0" 4151 | read-pkg-up "^1.0.1" 4152 | require-main-filename "^1.0.1" 4153 | 4154 | text-table@~0.2.0: 4155 | version "0.2.0" 4156 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 4157 | 4158 | throat@^4.0.0: 4159 | version "4.1.0" 4160 | resolved "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a" 4161 | 4162 | through@^2.3.6: 4163 | version "2.3.8" 4164 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 4165 | 4166 | tmp@^0.0.33: 4167 | version "0.0.33" 4168 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 4169 | dependencies: 4170 | os-tmpdir "~1.0.2" 4171 | 4172 | tmpl@1.0.x: 4173 | version "1.0.4" 4174 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 4175 | 4176 | to-fast-properties@^1.0.3: 4177 | version "1.0.3" 4178 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 4179 | 4180 | to-object-path@^0.3.0: 4181 | version "0.3.0" 4182 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 4183 | dependencies: 4184 | kind-of "^3.0.2" 4185 | 4186 | to-regex-range@^2.1.0: 4187 | version "2.1.1" 4188 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 4189 | dependencies: 4190 | is-number "^3.0.0" 4191 | repeat-string "^1.6.1" 4192 | 4193 | to-regex@^3.0.1, to-regex@^3.0.2: 4194 | version "3.0.2" 4195 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 4196 | dependencies: 4197 | define-property "^2.0.2" 4198 | extend-shallow "^3.0.2" 4199 | regex-not "^1.0.2" 4200 | safe-regex "^1.1.0" 4201 | 4202 | topo@3.x.x: 4203 | version "3.0.0" 4204 | resolved "https://registry.yarnpkg.com/topo/-/topo-3.0.0.tgz#37e48c330efeac784538e0acd3e62ca5e231fe7a" 4205 | dependencies: 4206 | hoek "5.x.x" 4207 | 4208 | tough-cookie@>=2.3.3, tough-cookie@^2.3.3: 4209 | version "2.4.2" 4210 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.4.2.tgz#aa9133154518b494efab98a58247bfc38818c00c" 4211 | dependencies: 4212 | psl "^1.1.24" 4213 | punycode "^1.4.1" 4214 | 4215 | tough-cookie@~2.3.3: 4216 | version "2.3.4" 4217 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655" 4218 | dependencies: 4219 | punycode "^1.4.1" 4220 | 4221 | tr46@^1.0.1: 4222 | version "1.0.1" 4223 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" 4224 | dependencies: 4225 | punycode "^2.1.0" 4226 | 4227 | trim-right@^1.0.1: 4228 | version "1.0.1" 4229 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 4230 | 4231 | tunnel-agent@^0.6.0: 4232 | version "0.6.0" 4233 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 4234 | dependencies: 4235 | safe-buffer "^5.0.1" 4236 | 4237 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 4238 | version "0.14.5" 4239 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 4240 | 4241 | type-check@~0.3.2: 4242 | version "0.3.2" 4243 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 4244 | dependencies: 4245 | prelude-ls "~1.1.2" 4246 | 4247 | typedarray@^0.0.6: 4248 | version "0.0.6" 4249 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 4250 | 4251 | ua-parser-js@^0.7.18: 4252 | version "0.7.18" 4253 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.18.tgz#a7bfd92f56edfb117083b69e31d2aa8882d4b1ed" 4254 | 4255 | uglify-js@^2.6: 4256 | version "2.8.29" 4257 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 4258 | dependencies: 4259 | source-map "~0.5.1" 4260 | yargs "~3.10.0" 4261 | optionalDependencies: 4262 | uglify-to-browserify "~1.0.0" 4263 | 4264 | uglify-to-browserify@~1.0.0: 4265 | version "1.0.2" 4266 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 4267 | 4268 | union-value@^1.0.0: 4269 | version "1.0.0" 4270 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" 4271 | dependencies: 4272 | arr-union "^3.1.0" 4273 | get-value "^2.0.6" 4274 | is-extendable "^0.1.1" 4275 | set-value "^0.4.3" 4276 | 4277 | unset-value@^1.0.0: 4278 | version "1.0.0" 4279 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 4280 | dependencies: 4281 | has-value "^0.3.1" 4282 | isobject "^3.0.0" 4283 | 4284 | urix@^0.1.0: 4285 | version "0.1.0" 4286 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 4287 | 4288 | urlgrey@0.4.4: 4289 | version "0.4.4" 4290 | resolved "https://registry.yarnpkg.com/urlgrey/-/urlgrey-0.4.4.tgz#892fe95960805e85519f1cd4389f2cb4cbb7652f" 4291 | 4292 | use@^3.1.0: 4293 | version "3.1.0" 4294 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.0.tgz#14716bf03fdfefd03040aef58d8b4b85f3a7c544" 4295 | dependencies: 4296 | kind-of "^6.0.2" 4297 | 4298 | user-home@^1.1.1: 4299 | version "1.1.1" 4300 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 4301 | 4302 | util-deprecate@~1.0.1: 4303 | version "1.0.2" 4304 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 4305 | 4306 | util.promisify@^1.0.0: 4307 | version "1.0.0" 4308 | resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" 4309 | dependencies: 4310 | define-properties "^1.1.2" 4311 | object.getownpropertydescriptors "^2.0.3" 4312 | 4313 | uuid@^3.1.0: 4314 | version "3.2.1" 4315 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14" 4316 | 4317 | v8flags@^2.1.1: 4318 | version "2.1.1" 4319 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 4320 | dependencies: 4321 | user-home "^1.1.1" 4322 | 4323 | validate-npm-package-license@^3.0.1: 4324 | version "3.0.3" 4325 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.3.tgz#81643bcbef1bdfecd4623793dc4648948ba98338" 4326 | dependencies: 4327 | spdx-correct "^3.0.0" 4328 | spdx-expression-parse "^3.0.0" 4329 | 4330 | verror@1.10.0: 4331 | version "1.10.0" 4332 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 4333 | dependencies: 4334 | assert-plus "^1.0.0" 4335 | core-util-is "1.0.2" 4336 | extsprintf "^1.2.0" 4337 | 4338 | w3c-hr-time@^1.0.1: 4339 | version "1.0.1" 4340 | resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz#82ac2bff63d950ea9e3189a58a65625fedf19045" 4341 | dependencies: 4342 | browser-process-hrtime "^0.1.2" 4343 | 4344 | walker@~1.0.5: 4345 | version "1.0.7" 4346 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 4347 | dependencies: 4348 | makeerror "1.0.x" 4349 | 4350 | watch@~0.18.0: 4351 | version "0.18.0" 4352 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.18.0.tgz#28095476c6df7c90c963138990c0a5423eb4b986" 4353 | dependencies: 4354 | exec-sh "^0.2.0" 4355 | minimist "^1.2.0" 4356 | 4357 | webidl-conversions@^4.0.2: 4358 | version "4.0.2" 4359 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" 4360 | 4361 | whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.3: 4362 | version "1.0.3" 4363 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.3.tgz#57c235bc8657e914d24e1a397d3c82daee0a6ba3" 4364 | dependencies: 4365 | iconv-lite "0.4.19" 4366 | 4367 | whatwg-fetch@>=0.10.0: 4368 | version "2.0.4" 4369 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz#dde6a5df315f9d39991aa17621853d720b85566f" 4370 | 4371 | whatwg-mimetype@^2.0.0, whatwg-mimetype@^2.1.0: 4372 | version "2.1.0" 4373 | resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.1.0.tgz#f0f21d76cbba72362eb609dbed2a30cd17fcc7d4" 4374 | 4375 | whatwg-url@^6.4.0, whatwg-url@^6.4.1: 4376 | version "6.5.0" 4377 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-6.5.0.tgz#f2df02bff176fd65070df74ad5ccbb5a199965a8" 4378 | dependencies: 4379 | lodash.sortby "^4.7.0" 4380 | tr46 "^1.0.1" 4381 | webidl-conversions "^4.0.2" 4382 | 4383 | which-module@^2.0.0: 4384 | version "2.0.0" 4385 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 4386 | 4387 | which@^1.2.12, which@^1.2.9, which@^1.3.0: 4388 | version "1.3.1" 4389 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 4390 | dependencies: 4391 | isexe "^2.0.0" 4392 | 4393 | wide-align@^1.1.0: 4394 | version "1.1.3" 4395 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" 4396 | dependencies: 4397 | string-width "^1.0.2 || 2" 4398 | 4399 | window-size@0.1.0: 4400 | version "0.1.0" 4401 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 4402 | 4403 | wordwrap@0.0.2: 4404 | version "0.0.2" 4405 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 4406 | 4407 | wordwrap@~0.0.2: 4408 | version "0.0.3" 4409 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 4410 | 4411 | wordwrap@~1.0.0: 4412 | version "1.0.0" 4413 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 4414 | 4415 | wrap-ansi@^2.0.0: 4416 | version "2.1.0" 4417 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 4418 | dependencies: 4419 | string-width "^1.0.1" 4420 | strip-ansi "^3.0.1" 4421 | 4422 | wrappy@1: 4423 | version "1.0.2" 4424 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 4425 | 4426 | wreck@^12.5.1: 4427 | version "12.5.1" 4428 | resolved "https://registry.yarnpkg.com/wreck/-/wreck-12.5.1.tgz#cd2ffce167449e1f0242ed9cf80552e20fb6902a" 4429 | dependencies: 4430 | boom "5.x.x" 4431 | hoek "4.x.x" 4432 | 4433 | write-file-atomic@^2.1.0: 4434 | version "2.3.0" 4435 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" 4436 | dependencies: 4437 | graceful-fs "^4.1.11" 4438 | imurmurhash "^0.1.4" 4439 | signal-exit "^3.0.2" 4440 | 4441 | write@^0.2.1: 4442 | version "0.2.1" 4443 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 4444 | dependencies: 4445 | mkdirp "^0.5.1" 4446 | 4447 | ws@^4.0.0: 4448 | version "4.1.0" 4449 | resolved "https://registry.yarnpkg.com/ws/-/ws-4.1.0.tgz#a979b5d7d4da68bf54efe0408967c324869a7289" 4450 | dependencies: 4451 | async-limiter "~1.0.0" 4452 | safe-buffer "~5.1.0" 4453 | 4454 | xml-name-validator@^3.0.0: 4455 | version "3.0.0" 4456 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" 4457 | 4458 | y18n@^3.2.1: 4459 | version "3.2.1" 4460 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 4461 | 4462 | yallist@^2.1.2: 4463 | version "2.1.2" 4464 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 4465 | 4466 | yallist@^3.0.0, yallist@^3.0.2: 4467 | version "3.0.2" 4468 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.2.tgz#8452b4bb7e83c7c188d8041c1a837c773d6d8bb9" 4469 | 4470 | yargs-parser@^7.0.0: 4471 | version "7.0.0" 4472 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" 4473 | dependencies: 4474 | camelcase "^4.1.0" 4475 | 4476 | yargs-parser@^9.0.2: 4477 | version "9.0.2" 4478 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-9.0.2.tgz#9ccf6a43460fe4ed40a9bb68f48d43b8a68cc077" 4479 | dependencies: 4480 | camelcase "^4.1.0" 4481 | 4482 | yargs@^11.0.0: 4483 | version "11.0.0" 4484 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-11.0.0.tgz#c052931006c5eee74610e5fc0354bedfd08a201b" 4485 | dependencies: 4486 | cliui "^4.0.0" 4487 | decamelize "^1.1.1" 4488 | find-up "^2.1.0" 4489 | get-caller-file "^1.0.1" 4490 | os-locale "^2.0.0" 4491 | require-directory "^2.1.1" 4492 | require-main-filename "^1.0.1" 4493 | set-blocking "^2.0.0" 4494 | string-width "^2.0.0" 4495 | which-module "^2.0.0" 4496 | y18n "^3.2.1" 4497 | yargs-parser "^9.0.2" 4498 | 4499 | yargs@^9.0.1: 4500 | version "9.0.1" 4501 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-9.0.1.tgz#52acc23feecac34042078ee78c0c007f5085db4c" 4502 | dependencies: 4503 | camelcase "^4.1.0" 4504 | cliui "^3.2.0" 4505 | decamelize "^1.1.1" 4506 | get-caller-file "^1.0.1" 4507 | os-locale "^2.0.0" 4508 | read-pkg-up "^2.0.0" 4509 | require-directory "^2.1.1" 4510 | require-main-filename "^1.0.1" 4511 | set-blocking "^2.0.0" 4512 | string-width "^2.0.0" 4513 | which-module "^2.0.0" 4514 | y18n "^3.2.1" 4515 | yargs-parser "^7.0.0" 4516 | 4517 | yargs@~3.10.0: 4518 | version "3.10.0" 4519 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 4520 | dependencies: 4521 | camelcase "^1.0.2" 4522 | cliui "^2.1.0" 4523 | decamelize "^1.0.0" 4524 | window-size "0.1.0" 4525 | --------------------------------------------------------------------------------