├── .babelrc ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .travis.yml ├── README.md ├── package.json ├── src ├── index.js └── pagination.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["env"], 3 | "plugins": [ 4 | "syntax-object-rest-spread", 5 | "transform-object-rest-spread", 6 | [ 7 | "transform-builtin-extend", 8 | { 9 | "globals": [ 10 | "Error", 11 | "Array" 12 | ] 13 | } 14 | ] 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | lib 3 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "parser": "babel-eslint", 3 | "extends": "eslint:recommended", 4 | "plugins": ["prettier"], 5 | "env": { 6 | "browser": true, 7 | "node": true, 8 | "es6": true, 9 | "jest": true 10 | }, 11 | "extends": [ 12 | "plugin:import/errors", 13 | "plugin:import/warnings", 14 | "eslint:recommended", 15 | "prettier" 16 | ], 17 | "rules": { 18 | "no-console": ["warn", { "allow": ["warn", "error"] }], 19 | "no-unused-vars": [ 20 | "error", 21 | { "vars": "all", "args": "none", "ignoreRestSiblings": true } 22 | ] 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | lib/ 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | dist: trusty 2 | language: node_js 3 | node_js: 4 | - 'node' 5 | sudo: false 6 | addons: 7 | apt: 8 | packages: 9 | - xvfb 10 | cache: 11 | yarn: true 12 | install: 13 | - export DISPLAY=':99.0' 14 | - Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 & 15 | - yarn 16 | script: 17 | - yarn test 18 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # micro-api-client 2 | 3 | [![Build Status](https://travis-ci.org/netlify/micro-api-client.svg?branch=master)](https://travis-ci.org/netlify/micro-api-client) 4 | 5 | Small library for talking to micro REST APIs (not related to Netlify's main API). 6 | 7 | ## Installation 8 | 9 | ``` 10 | yarn add micro-api-client 11 | ``` 12 | 13 | ## Usage 14 | 15 | ```js 16 | import API, { getPagination } from 'micro-api-client' 17 | 18 | const api = new API("/some/api/endpoint"); 19 | api 20 | .request("foo") 21 | .then(response => console.log(response)) 22 | .catch(err => console.error(err)); 23 | ``` 24 | 25 | ### API 26 | 27 | ### `api = new API(apiURL, [opts])` 28 | 29 | Create a new `micro-api-client` instance. `apiURL` can be a full or relative URL. Optional `opts` include: 30 | 31 | ```js 32 | { 33 | defaultHeaders: { 34 | } // header values to include in every request. 35 | } 36 | ``` 37 | 38 | ### `api.request(path, [opts])` 39 | 40 | Make a request to the `apiURL` at the given `path`. Optional `opts` are passed to the [`fetch`](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API/Using_Fetch) API: 41 | 42 | ```js 43 | // Default options 44 | { 45 | headers: {} // Optional headers object. Overrides defaultHeaders 46 | credentials: "same-origin" // set fetch credentials option 47 | "Content-Type": "application/json" // set Content-Type fetch option 48 | } 49 | ``` 50 | 51 | Returns a promise with the `response`. If the `contentType` is JSON, it will be checked for pagination and return either the parsed JSON object or a paginated JSON object: 52 | 53 | ```js 54 | // See src/pagination.js 55 | { 56 | pagination: { 57 | last, 58 | next, 59 | prev, 60 | first, 61 | current, 62 | total 63 | }, 64 | items: json 65 | } 66 | ``` 67 | 68 | If an error occurs during the request, the promise may be rejected with an `HTTPError`, `TextHTTPError`, or `JSONHTTPError`. 69 | 70 | ### `class HTTPError extends Error` 71 | 72 | Additional error properties from Error 73 | 74 | ```js 75 | { 76 | stack, // stack trace of error 77 | status // status code of response 78 | } 79 | ``` 80 | 81 | ### `class TextHTTPError extends HTTPError` 82 | 83 | Additional error properties from HTTPError 84 | 85 | ```js 86 | { 87 | data // data of text response 88 | } 89 | ``` 90 | 91 | ### `class JSONHTTPError extends HTTPError` 92 | 93 | Additional error properties from HTTPError 94 | 95 | ```js 96 | { 97 | json // json of a JSON response 98 | } 99 | ``` 100 | 101 | ### `pagination = getPagination(response)` 102 | 103 | Returns a pagination object that `micro-api-client` uses internally. 104 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "micro-api-client", 3 | "description": "Micro REST API client", 4 | "version": "3.3.0", 5 | "author": "Mathias Biilmann Christensen", 6 | "bugs": "https://github.com/netlify/micro-api-client/issues", 7 | "devDependencies": { 8 | "babel-cli": "^6.8.0", 9 | "babel-eslint": "^8.2.1", 10 | "babel-plugin-syntax-object-rest-spread": "^6.8.0", 11 | "babel-plugin-transform-builtin-extend": "^1.1.2", 12 | "babel-plugin-transform-object-rest-spread": "^6.8.0", 13 | "babel-preset-env": "^1.6.1", 14 | "eslint": "^4.15.0", 15 | "eslint-config-prettier": "^2.3.0", 16 | "eslint-plugin-import": "^2.8.0", 17 | "eslint-plugin-prettier": "^2.1.2", 18 | "prettier": "^1.10.1" 19 | }, 20 | "files": [ 21 | "lib" 22 | ], 23 | "homepage": "https://github.com/netlify/micro-api-client", 24 | "keywords": [ 25 | "api", 26 | "fetch", 27 | "netlify" 28 | ], 29 | "license": "ISC", 30 | "main": "lib/index.js", 31 | "repository": { 32 | "type": "git", 33 | "url": "git+https://github.com/netlify/micro-api-client.git" 34 | }, 35 | "scripts": { 36 | "compile": "babel src -d lib", 37 | "format": "eslint . --fix && prettier --write 'src/**/*.js'", 38 | "prepublish": "npm run compile", 39 | "prettier-preview": "prettier --list-different 'src/**/*.js'", 40 | "test": "eslint ." 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import { getPagination } from "./pagination"; 2 | export { getPagination } from "./pagination"; 3 | 4 | export class HTTPError extends Error { 5 | constructor(response) { 6 | super(response.statusText); 7 | this.name = this.constructor.name; 8 | if (typeof Error.captureStackTrace === "function") { 9 | Error.captureStackTrace(this, this.constructor); 10 | } else { 11 | this.stack = new Error(response.statusText).stack; 12 | } 13 | this.status = response.status; 14 | } 15 | } 16 | 17 | export class TextHTTPError extends HTTPError { 18 | constructor(response, data) { 19 | super(response); 20 | this.data = data; 21 | } 22 | } 23 | 24 | export class JSONHTTPError extends HTTPError { 25 | constructor(response, json) { 26 | super(response); 27 | this.json = json; 28 | } 29 | } 30 | 31 | export default class API { 32 | constructor(apiURL = '', options) { 33 | this.apiURL = apiURL; 34 | if (this.apiURL.match(/\/[^\/]?/)) { // eslint-disable-line no-useless-escape 35 | this._sameOrigin = true; 36 | } 37 | this.defaultHeaders = (options && options.defaultHeaders) || {}; 38 | } 39 | 40 | headers(headers = {}) { 41 | return { 42 | ...this.defaultHeaders, 43 | "Content-Type": "application/json", 44 | ...headers 45 | }; 46 | } 47 | 48 | parseJsonResponse(response) { 49 | return response.json().then(json => { 50 | if (!response.ok) { 51 | return Promise.reject(new JSONHTTPError(response, json)); 52 | } 53 | 54 | const pagination = getPagination(response); 55 | return pagination ? { pagination, items: json } : json; 56 | }); 57 | } 58 | 59 | request(path, options = {}) { 60 | const headers = this.headers(options.headers || {}); 61 | if (this._sameOrigin) { 62 | options.credentials = options.credentials || "same-origin"; 63 | } 64 | return fetch(this.apiURL + path, { ...options, headers }).then(response => { 65 | const contentType = response.headers.get("Content-Type"); 66 | if (contentType && contentType.match(/json/)) { 67 | return this.parseJsonResponse(response); 68 | } 69 | 70 | if (!response.ok) { 71 | return response.text().then(data => { 72 | return Promise.reject(new TextHTTPError(response, data)); 73 | }); 74 | } 75 | return response.text().then(data => { 76 | data; 77 | }); 78 | }); 79 | } 80 | } 81 | -------------------------------------------------------------------------------- /src/pagination.js: -------------------------------------------------------------------------------- 1 | export function getPagination(response) { 2 | let links = response.headers.get("Link"); 3 | const pagination = {}; 4 | //var link, url, rel, m, page; 5 | if (links == null) { 6 | return null; 7 | } 8 | links = links.split(","); 9 | const total = response.headers.get("X-Total-Count"); 10 | 11 | for (let i = 0, len = links.length; i < len; i++) { 12 | const link = links[i].replace(/(^\s*|\s*$)/, ""); 13 | const [url, rel] = link.split(";"); 14 | const m = url.match(/page=(\d+)/); 15 | const page = m && parseInt(m[1], 10); 16 | if (rel.match(/last/)) { 17 | pagination.last = page; 18 | } else if (rel.match(/next/)) { 19 | pagination.next = page; 20 | } else if (rel.match(/prev/)) { 21 | pagination.prev = page; 22 | } else if (rel.match(/first/)) { 23 | pagination.first = page; 24 | } 25 | } 26 | 27 | pagination.last = Math.max( 28 | pagination.last || 0, 29 | (pagination.prev && pagination.prev + 1) || 0 30 | ); 31 | pagination.current = pagination.next 32 | ? pagination.next - 1 33 | : pagination.last || 1; 34 | pagination.total = total ? parseInt(total, 10) : null; 35 | 36 | return pagination; 37 | } 38 | -------------------------------------------------------------------------------- /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.36": 6 | version "7.0.0-beta.36" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0-beta.36.tgz#2349d7ec04b3a06945ae173280ef8579b63728e4" 8 | dependencies: 9 | chalk "^2.0.0" 10 | esutils "^2.0.2" 11 | js-tokens "^3.0.0" 12 | 13 | "@babel/helper-function-name@7.0.0-beta.36": 14 | version "7.0.0-beta.36" 15 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.0.0-beta.36.tgz#366e3bc35147721b69009f803907c4d53212e88d" 16 | dependencies: 17 | "@babel/helper-get-function-arity" "7.0.0-beta.36" 18 | "@babel/template" "7.0.0-beta.36" 19 | "@babel/types" "7.0.0-beta.36" 20 | 21 | "@babel/helper-get-function-arity@7.0.0-beta.36": 22 | version "7.0.0-beta.36" 23 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0-beta.36.tgz#f5383bac9a96b274828b10d98900e84ee43e32b8" 24 | dependencies: 25 | "@babel/types" "7.0.0-beta.36" 26 | 27 | "@babel/template@7.0.0-beta.36": 28 | version "7.0.0-beta.36" 29 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.0.0-beta.36.tgz#02e903de5d68bd7899bce3c5b5447e59529abb00" 30 | dependencies: 31 | "@babel/code-frame" "7.0.0-beta.36" 32 | "@babel/types" "7.0.0-beta.36" 33 | babylon "7.0.0-beta.36" 34 | lodash "^4.2.0" 35 | 36 | "@babel/traverse@7.0.0-beta.36": 37 | version "7.0.0-beta.36" 38 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.0.0-beta.36.tgz#1dc6f8750e89b6b979de5fe44aa993b1a2192261" 39 | dependencies: 40 | "@babel/code-frame" "7.0.0-beta.36" 41 | "@babel/helper-function-name" "7.0.0-beta.36" 42 | "@babel/types" "7.0.0-beta.36" 43 | babylon "7.0.0-beta.36" 44 | debug "^3.0.1" 45 | globals "^11.1.0" 46 | invariant "^2.2.0" 47 | lodash "^4.2.0" 48 | 49 | "@babel/types@7.0.0-beta.36": 50 | version "7.0.0-beta.36" 51 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.0.0-beta.36.tgz#64f2004353de42adb72f9ebb4665fc35b5499d23" 52 | dependencies: 53 | esutils "^2.0.2" 54 | lodash "^4.2.0" 55 | to-fast-properties "^2.0.0" 56 | 57 | abbrev@1: 58 | version "1.1.1" 59 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 60 | 61 | acorn-jsx@^3.0.0: 62 | version "3.0.1" 63 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 64 | dependencies: 65 | acorn "^3.0.4" 66 | 67 | acorn@^3.0.4: 68 | version "3.3.0" 69 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 70 | 71 | acorn@^5.2.1: 72 | version "5.3.0" 73 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.3.0.tgz#7446d39459c54fb49a80e6ee6478149b940ec822" 74 | 75 | ajv-keywords@^2.1.0: 76 | version "2.1.1" 77 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762" 78 | 79 | ajv@^4.9.1: 80 | version "4.11.8" 81 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 82 | dependencies: 83 | co "^4.6.0" 84 | json-stable-stringify "^1.0.1" 85 | 86 | ajv@^5.2.3, ajv@^5.3.0: 87 | version "5.5.2" 88 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 89 | dependencies: 90 | co "^4.6.0" 91 | fast-deep-equal "^1.0.0" 92 | fast-json-stable-stringify "^2.0.0" 93 | json-schema-traverse "^0.3.0" 94 | 95 | ansi-escapes@^3.0.0: 96 | version "3.0.0" 97 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92" 98 | 99 | ansi-regex@^2.0.0: 100 | version "2.1.1" 101 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 102 | 103 | ansi-regex@^3.0.0: 104 | version "3.0.0" 105 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 106 | 107 | ansi-styles@^2.2.1: 108 | version "2.2.1" 109 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 110 | 111 | ansi-styles@^3.1.0: 112 | version "3.2.0" 113 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 114 | dependencies: 115 | color-convert "^1.9.0" 116 | 117 | anymatch@^1.3.0: 118 | version "1.3.2" 119 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 120 | dependencies: 121 | micromatch "^2.1.5" 122 | normalize-path "^2.0.0" 123 | 124 | aproba@^1.0.3: 125 | version "1.2.0" 126 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 127 | 128 | are-we-there-yet@~1.1.2: 129 | version "1.1.4" 130 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 131 | dependencies: 132 | delegates "^1.0.0" 133 | readable-stream "^2.0.6" 134 | 135 | argparse@^1.0.7: 136 | version "1.0.9" 137 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 138 | dependencies: 139 | sprintf-js "~1.0.2" 140 | 141 | arr-diff@^2.0.0: 142 | version "2.0.0" 143 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 144 | dependencies: 145 | arr-flatten "^1.0.1" 146 | 147 | arr-flatten@^1.0.1: 148 | version "1.1.0" 149 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 150 | 151 | array-union@^1.0.1: 152 | version "1.0.2" 153 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 154 | dependencies: 155 | array-uniq "^1.0.1" 156 | 157 | array-uniq@^1.0.1: 158 | version "1.0.3" 159 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 160 | 161 | array-unique@^0.2.1: 162 | version "0.2.1" 163 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 164 | 165 | arrify@^1.0.0: 166 | version "1.0.1" 167 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 168 | 169 | asn1@~0.2.3: 170 | version "0.2.3" 171 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 172 | 173 | assert-plus@1.0.0, assert-plus@^1.0.0: 174 | version "1.0.0" 175 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 176 | 177 | assert-plus@^0.2.0: 178 | version "0.2.0" 179 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 180 | 181 | async-each@^1.0.0: 182 | version "1.0.1" 183 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 184 | 185 | asynckit@^0.4.0: 186 | version "0.4.0" 187 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 188 | 189 | aws-sign2@~0.6.0: 190 | version "0.6.0" 191 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 192 | 193 | aws4@^1.2.1: 194 | version "1.6.0" 195 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 196 | 197 | babel-cli@^6.8.0: 198 | version "6.26.0" 199 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.26.0.tgz#502ab54874d7db88ad00b887a06383ce03d002f1" 200 | dependencies: 201 | babel-core "^6.26.0" 202 | babel-polyfill "^6.26.0" 203 | babel-register "^6.26.0" 204 | babel-runtime "^6.26.0" 205 | commander "^2.11.0" 206 | convert-source-map "^1.5.0" 207 | fs-readdir-recursive "^1.0.0" 208 | glob "^7.1.2" 209 | lodash "^4.17.4" 210 | output-file-sync "^1.1.2" 211 | path-is-absolute "^1.0.1" 212 | slash "^1.0.0" 213 | source-map "^0.5.6" 214 | v8flags "^2.1.1" 215 | optionalDependencies: 216 | chokidar "^1.6.1" 217 | 218 | babel-code-frame@^6.22.0, babel-code-frame@^6.26.0: 219 | version "6.26.0" 220 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 221 | dependencies: 222 | chalk "^1.1.3" 223 | esutils "^2.0.2" 224 | js-tokens "^3.0.2" 225 | 226 | babel-core@^6.26.0: 227 | version "6.26.0" 228 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 229 | dependencies: 230 | babel-code-frame "^6.26.0" 231 | babel-generator "^6.26.0" 232 | babel-helpers "^6.24.1" 233 | babel-messages "^6.23.0" 234 | babel-register "^6.26.0" 235 | babel-runtime "^6.26.0" 236 | babel-template "^6.26.0" 237 | babel-traverse "^6.26.0" 238 | babel-types "^6.26.0" 239 | babylon "^6.18.0" 240 | convert-source-map "^1.5.0" 241 | debug "^2.6.8" 242 | json5 "^0.5.1" 243 | lodash "^4.17.4" 244 | minimatch "^3.0.4" 245 | path-is-absolute "^1.0.1" 246 | private "^0.1.7" 247 | slash "^1.0.0" 248 | source-map "^0.5.6" 249 | 250 | babel-eslint@^8.2.1: 251 | version "8.2.1" 252 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-8.2.1.tgz#136888f3c109edc65376c23ebf494f36a3e03951" 253 | dependencies: 254 | "@babel/code-frame" "7.0.0-beta.36" 255 | "@babel/traverse" "7.0.0-beta.36" 256 | "@babel/types" "7.0.0-beta.36" 257 | babylon "7.0.0-beta.36" 258 | eslint-scope "~3.7.1" 259 | eslint-visitor-keys "^1.0.0" 260 | 261 | babel-generator@^6.26.0: 262 | version "6.26.0" 263 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" 264 | dependencies: 265 | babel-messages "^6.23.0" 266 | babel-runtime "^6.26.0" 267 | babel-types "^6.26.0" 268 | detect-indent "^4.0.0" 269 | jsesc "^1.3.0" 270 | lodash "^4.17.4" 271 | source-map "^0.5.6" 272 | trim-right "^1.0.1" 273 | 274 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 275 | version "6.24.1" 276 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 277 | dependencies: 278 | babel-helper-explode-assignable-expression "^6.24.1" 279 | babel-runtime "^6.22.0" 280 | babel-types "^6.24.1" 281 | 282 | babel-helper-call-delegate@^6.24.1: 283 | version "6.24.1" 284 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 285 | dependencies: 286 | babel-helper-hoist-variables "^6.24.1" 287 | babel-runtime "^6.22.0" 288 | babel-traverse "^6.24.1" 289 | babel-types "^6.24.1" 290 | 291 | babel-helper-define-map@^6.24.1: 292 | version "6.26.0" 293 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 294 | dependencies: 295 | babel-helper-function-name "^6.24.1" 296 | babel-runtime "^6.26.0" 297 | babel-types "^6.26.0" 298 | lodash "^4.17.4" 299 | 300 | babel-helper-explode-assignable-expression@^6.24.1: 301 | version "6.24.1" 302 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 303 | dependencies: 304 | babel-runtime "^6.22.0" 305 | babel-traverse "^6.24.1" 306 | babel-types "^6.24.1" 307 | 308 | babel-helper-function-name@^6.24.1: 309 | version "6.24.1" 310 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 311 | dependencies: 312 | babel-helper-get-function-arity "^6.24.1" 313 | babel-runtime "^6.22.0" 314 | babel-template "^6.24.1" 315 | babel-traverse "^6.24.1" 316 | babel-types "^6.24.1" 317 | 318 | babel-helper-get-function-arity@^6.24.1: 319 | version "6.24.1" 320 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 321 | dependencies: 322 | babel-runtime "^6.22.0" 323 | babel-types "^6.24.1" 324 | 325 | babel-helper-hoist-variables@^6.24.1: 326 | version "6.24.1" 327 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 328 | dependencies: 329 | babel-runtime "^6.22.0" 330 | babel-types "^6.24.1" 331 | 332 | babel-helper-optimise-call-expression@^6.24.1: 333 | version "6.24.1" 334 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 335 | dependencies: 336 | babel-runtime "^6.22.0" 337 | babel-types "^6.24.1" 338 | 339 | babel-helper-regex@^6.24.1: 340 | version "6.26.0" 341 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 342 | dependencies: 343 | babel-runtime "^6.26.0" 344 | babel-types "^6.26.0" 345 | lodash "^4.17.4" 346 | 347 | babel-helper-remap-async-to-generator@^6.24.1: 348 | version "6.24.1" 349 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 350 | dependencies: 351 | babel-helper-function-name "^6.24.1" 352 | babel-runtime "^6.22.0" 353 | babel-template "^6.24.1" 354 | babel-traverse "^6.24.1" 355 | babel-types "^6.24.1" 356 | 357 | babel-helper-replace-supers@^6.24.1: 358 | version "6.24.1" 359 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 360 | dependencies: 361 | babel-helper-optimise-call-expression "^6.24.1" 362 | babel-messages "^6.23.0" 363 | babel-runtime "^6.22.0" 364 | babel-template "^6.24.1" 365 | babel-traverse "^6.24.1" 366 | babel-types "^6.24.1" 367 | 368 | babel-helpers@^6.24.1: 369 | version "6.24.1" 370 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 371 | dependencies: 372 | babel-runtime "^6.22.0" 373 | babel-template "^6.24.1" 374 | 375 | babel-messages@^6.23.0: 376 | version "6.23.0" 377 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 378 | dependencies: 379 | babel-runtime "^6.22.0" 380 | 381 | babel-plugin-check-es2015-constants@^6.22.0: 382 | version "6.22.0" 383 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 384 | dependencies: 385 | babel-runtime "^6.22.0" 386 | 387 | babel-plugin-syntax-async-functions@^6.8.0: 388 | version "6.13.0" 389 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 390 | 391 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 392 | version "6.13.0" 393 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 394 | 395 | babel-plugin-syntax-object-rest-spread@^6.8.0: 396 | version "6.13.0" 397 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 398 | 399 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 400 | version "6.22.0" 401 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 402 | 403 | babel-plugin-transform-async-to-generator@^6.22.0: 404 | version "6.24.1" 405 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 406 | dependencies: 407 | babel-helper-remap-async-to-generator "^6.24.1" 408 | babel-plugin-syntax-async-functions "^6.8.0" 409 | babel-runtime "^6.22.0" 410 | 411 | babel-plugin-transform-builtin-extend@^1.1.2: 412 | version "1.1.2" 413 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-builtin-extend/-/babel-plugin-transform-builtin-extend-1.1.2.tgz#5e96fecf58b8fa1ed74efcad88475b2af3c9116e" 414 | dependencies: 415 | babel-runtime "^6.2.0" 416 | babel-template "^6.3.0" 417 | 418 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 419 | version "6.22.0" 420 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 421 | dependencies: 422 | babel-runtime "^6.22.0" 423 | 424 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 425 | version "6.22.0" 426 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 427 | dependencies: 428 | babel-runtime "^6.22.0" 429 | 430 | babel-plugin-transform-es2015-block-scoping@^6.23.0: 431 | version "6.26.0" 432 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 433 | dependencies: 434 | babel-runtime "^6.26.0" 435 | babel-template "^6.26.0" 436 | babel-traverse "^6.26.0" 437 | babel-types "^6.26.0" 438 | lodash "^4.17.4" 439 | 440 | babel-plugin-transform-es2015-classes@^6.23.0: 441 | version "6.24.1" 442 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 443 | dependencies: 444 | babel-helper-define-map "^6.24.1" 445 | babel-helper-function-name "^6.24.1" 446 | babel-helper-optimise-call-expression "^6.24.1" 447 | babel-helper-replace-supers "^6.24.1" 448 | babel-messages "^6.23.0" 449 | babel-runtime "^6.22.0" 450 | babel-template "^6.24.1" 451 | babel-traverse "^6.24.1" 452 | babel-types "^6.24.1" 453 | 454 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 455 | version "6.24.1" 456 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 457 | dependencies: 458 | babel-runtime "^6.22.0" 459 | babel-template "^6.24.1" 460 | 461 | babel-plugin-transform-es2015-destructuring@^6.23.0: 462 | version "6.23.0" 463 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 464 | dependencies: 465 | babel-runtime "^6.22.0" 466 | 467 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 468 | version "6.24.1" 469 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 470 | dependencies: 471 | babel-runtime "^6.22.0" 472 | babel-types "^6.24.1" 473 | 474 | babel-plugin-transform-es2015-for-of@^6.23.0: 475 | version "6.23.0" 476 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 477 | dependencies: 478 | babel-runtime "^6.22.0" 479 | 480 | babel-plugin-transform-es2015-function-name@^6.22.0: 481 | version "6.24.1" 482 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 483 | dependencies: 484 | babel-helper-function-name "^6.24.1" 485 | babel-runtime "^6.22.0" 486 | babel-types "^6.24.1" 487 | 488 | babel-plugin-transform-es2015-literals@^6.22.0: 489 | version "6.22.0" 490 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 491 | dependencies: 492 | babel-runtime "^6.22.0" 493 | 494 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: 495 | version "6.24.1" 496 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 497 | dependencies: 498 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 499 | babel-runtime "^6.22.0" 500 | babel-template "^6.24.1" 501 | 502 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 503 | version "6.26.0" 504 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" 505 | dependencies: 506 | babel-plugin-transform-strict-mode "^6.24.1" 507 | babel-runtime "^6.26.0" 508 | babel-template "^6.26.0" 509 | babel-types "^6.26.0" 510 | 511 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0: 512 | version "6.24.1" 513 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 514 | dependencies: 515 | babel-helper-hoist-variables "^6.24.1" 516 | babel-runtime "^6.22.0" 517 | babel-template "^6.24.1" 518 | 519 | babel-plugin-transform-es2015-modules-umd@^6.23.0: 520 | version "6.24.1" 521 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 522 | dependencies: 523 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 524 | babel-runtime "^6.22.0" 525 | babel-template "^6.24.1" 526 | 527 | babel-plugin-transform-es2015-object-super@^6.22.0: 528 | version "6.24.1" 529 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 530 | dependencies: 531 | babel-helper-replace-supers "^6.24.1" 532 | babel-runtime "^6.22.0" 533 | 534 | babel-plugin-transform-es2015-parameters@^6.23.0: 535 | version "6.24.1" 536 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 537 | dependencies: 538 | babel-helper-call-delegate "^6.24.1" 539 | babel-helper-get-function-arity "^6.24.1" 540 | babel-runtime "^6.22.0" 541 | babel-template "^6.24.1" 542 | babel-traverse "^6.24.1" 543 | babel-types "^6.24.1" 544 | 545 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 546 | version "6.24.1" 547 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 548 | dependencies: 549 | babel-runtime "^6.22.0" 550 | babel-types "^6.24.1" 551 | 552 | babel-plugin-transform-es2015-spread@^6.22.0: 553 | version "6.22.0" 554 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 555 | dependencies: 556 | babel-runtime "^6.22.0" 557 | 558 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 559 | version "6.24.1" 560 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 561 | dependencies: 562 | babel-helper-regex "^6.24.1" 563 | babel-runtime "^6.22.0" 564 | babel-types "^6.24.1" 565 | 566 | babel-plugin-transform-es2015-template-literals@^6.22.0: 567 | version "6.22.0" 568 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 569 | dependencies: 570 | babel-runtime "^6.22.0" 571 | 572 | babel-plugin-transform-es2015-typeof-symbol@^6.23.0: 573 | version "6.23.0" 574 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 575 | dependencies: 576 | babel-runtime "^6.22.0" 577 | 578 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 579 | version "6.24.1" 580 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 581 | dependencies: 582 | babel-helper-regex "^6.24.1" 583 | babel-runtime "^6.22.0" 584 | regexpu-core "^2.0.0" 585 | 586 | babel-plugin-transform-exponentiation-operator@^6.22.0: 587 | version "6.24.1" 588 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 589 | dependencies: 590 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 591 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 592 | babel-runtime "^6.22.0" 593 | 594 | babel-plugin-transform-object-rest-spread@^6.8.0: 595 | version "6.26.0" 596 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06" 597 | dependencies: 598 | babel-plugin-syntax-object-rest-spread "^6.8.0" 599 | babel-runtime "^6.26.0" 600 | 601 | babel-plugin-transform-regenerator@^6.22.0: 602 | version "6.26.0" 603 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 604 | dependencies: 605 | regenerator-transform "^0.10.0" 606 | 607 | babel-plugin-transform-strict-mode@^6.24.1: 608 | version "6.24.1" 609 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 610 | dependencies: 611 | babel-runtime "^6.22.0" 612 | babel-types "^6.24.1" 613 | 614 | babel-polyfill@^6.26.0: 615 | version "6.26.0" 616 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" 617 | dependencies: 618 | babel-runtime "^6.26.0" 619 | core-js "^2.5.0" 620 | regenerator-runtime "^0.10.5" 621 | 622 | babel-preset-env@^1.6.1: 623 | version "1.6.1" 624 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.6.1.tgz#a18b564cc9b9afdf4aae57ae3c1b0d99188e6f48" 625 | dependencies: 626 | babel-plugin-check-es2015-constants "^6.22.0" 627 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 628 | babel-plugin-transform-async-to-generator "^6.22.0" 629 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 630 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 631 | babel-plugin-transform-es2015-block-scoping "^6.23.0" 632 | babel-plugin-transform-es2015-classes "^6.23.0" 633 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 634 | babel-plugin-transform-es2015-destructuring "^6.23.0" 635 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 636 | babel-plugin-transform-es2015-for-of "^6.23.0" 637 | babel-plugin-transform-es2015-function-name "^6.22.0" 638 | babel-plugin-transform-es2015-literals "^6.22.0" 639 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 640 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0" 641 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0" 642 | babel-plugin-transform-es2015-modules-umd "^6.23.0" 643 | babel-plugin-transform-es2015-object-super "^6.22.0" 644 | babel-plugin-transform-es2015-parameters "^6.23.0" 645 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 646 | babel-plugin-transform-es2015-spread "^6.22.0" 647 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 648 | babel-plugin-transform-es2015-template-literals "^6.22.0" 649 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0" 650 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 651 | babel-plugin-transform-exponentiation-operator "^6.22.0" 652 | babel-plugin-transform-regenerator "^6.22.0" 653 | browserslist "^2.1.2" 654 | invariant "^2.2.2" 655 | semver "^5.3.0" 656 | 657 | babel-register@^6.26.0: 658 | version "6.26.0" 659 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 660 | dependencies: 661 | babel-core "^6.26.0" 662 | babel-runtime "^6.26.0" 663 | core-js "^2.5.0" 664 | home-or-tmp "^2.0.0" 665 | lodash "^4.17.4" 666 | mkdirp "^0.5.1" 667 | source-map-support "^0.4.15" 668 | 669 | babel-runtime@^6.18.0, babel-runtime@^6.2.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 670 | version "6.26.0" 671 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 672 | dependencies: 673 | core-js "^2.4.0" 674 | regenerator-runtime "^0.11.0" 675 | 676 | babel-template@^6.24.1, babel-template@^6.26.0, babel-template@^6.3.0: 677 | version "6.26.0" 678 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 679 | dependencies: 680 | babel-runtime "^6.26.0" 681 | babel-traverse "^6.26.0" 682 | babel-types "^6.26.0" 683 | babylon "^6.18.0" 684 | lodash "^4.17.4" 685 | 686 | babel-traverse@^6.24.1, babel-traverse@^6.26.0: 687 | version "6.26.0" 688 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 689 | dependencies: 690 | babel-code-frame "^6.26.0" 691 | babel-messages "^6.23.0" 692 | babel-runtime "^6.26.0" 693 | babel-types "^6.26.0" 694 | babylon "^6.18.0" 695 | debug "^2.6.8" 696 | globals "^9.18.0" 697 | invariant "^2.2.2" 698 | lodash "^4.17.4" 699 | 700 | babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: 701 | version "6.26.0" 702 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 703 | dependencies: 704 | babel-runtime "^6.26.0" 705 | esutils "^2.0.2" 706 | lodash "^4.17.4" 707 | to-fast-properties "^1.0.3" 708 | 709 | babylon@7.0.0-beta.36: 710 | version "7.0.0-beta.36" 711 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-7.0.0-beta.36.tgz#3a3683ba6a9a1e02b0aa507c8e63435e39305b9e" 712 | 713 | babylon@^6.18.0: 714 | version "6.18.0" 715 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 716 | 717 | balanced-match@^1.0.0: 718 | version "1.0.0" 719 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 720 | 721 | bcrypt-pbkdf@^1.0.0: 722 | version "1.0.1" 723 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 724 | dependencies: 725 | tweetnacl "^0.14.3" 726 | 727 | binary-extensions@^1.0.0: 728 | version "1.11.0" 729 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 730 | 731 | block-stream@*: 732 | version "0.0.9" 733 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 734 | dependencies: 735 | inherits "~2.0.0" 736 | 737 | boom@2.x.x: 738 | version "2.10.1" 739 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 740 | dependencies: 741 | hoek "2.x.x" 742 | 743 | brace-expansion@^1.1.7: 744 | version "1.1.8" 745 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 746 | dependencies: 747 | balanced-match "^1.0.0" 748 | concat-map "0.0.1" 749 | 750 | braces@^1.8.2: 751 | version "1.8.5" 752 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 753 | dependencies: 754 | expand-range "^1.8.1" 755 | preserve "^0.2.0" 756 | repeat-element "^1.1.2" 757 | 758 | browserslist@^2.1.2: 759 | version "2.11.0" 760 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.11.0.tgz#50350d6873a82ebe0f3ae5483658c571ae5f9d7d" 761 | dependencies: 762 | caniuse-lite "^1.0.30000784" 763 | electron-to-chromium "^1.3.30" 764 | 765 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 766 | version "1.1.1" 767 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 768 | 769 | caller-path@^0.1.0: 770 | version "0.1.0" 771 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 772 | dependencies: 773 | callsites "^0.2.0" 774 | 775 | callsites@^0.2.0: 776 | version "0.2.0" 777 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 778 | 779 | caniuse-lite@^1.0.30000784: 780 | version "1.0.30000789" 781 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000789.tgz#2e3d937b267133f63635ef7f441fac66360fc889" 782 | 783 | caseless@~0.12.0: 784 | version "0.12.0" 785 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 786 | 787 | chalk@^1.1.3: 788 | version "1.1.3" 789 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 790 | dependencies: 791 | ansi-styles "^2.2.1" 792 | escape-string-regexp "^1.0.2" 793 | has-ansi "^2.0.0" 794 | strip-ansi "^3.0.0" 795 | supports-color "^2.0.0" 796 | 797 | chalk@^2.0.0, chalk@^2.1.0: 798 | version "2.3.0" 799 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba" 800 | dependencies: 801 | ansi-styles "^3.1.0" 802 | escape-string-regexp "^1.0.5" 803 | supports-color "^4.0.0" 804 | 805 | chardet@^0.4.0: 806 | version "0.4.2" 807 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2" 808 | 809 | chokidar@^1.6.1: 810 | version "1.7.0" 811 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 812 | dependencies: 813 | anymatch "^1.3.0" 814 | async-each "^1.0.0" 815 | glob-parent "^2.0.0" 816 | inherits "^2.0.1" 817 | is-binary-path "^1.0.0" 818 | is-glob "^2.0.0" 819 | path-is-absolute "^1.0.0" 820 | readdirp "^2.0.0" 821 | optionalDependencies: 822 | fsevents "^1.0.0" 823 | 824 | circular-json@^0.3.1: 825 | version "0.3.3" 826 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" 827 | 828 | cli-cursor@^2.1.0: 829 | version "2.1.0" 830 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 831 | dependencies: 832 | restore-cursor "^2.0.0" 833 | 834 | cli-width@^2.0.0: 835 | version "2.2.0" 836 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 837 | 838 | co@^4.6.0: 839 | version "4.6.0" 840 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 841 | 842 | code-point-at@^1.0.0: 843 | version "1.1.0" 844 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 845 | 846 | color-convert@^1.9.0: 847 | version "1.9.1" 848 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" 849 | dependencies: 850 | color-name "^1.1.1" 851 | 852 | color-name@^1.1.1: 853 | version "1.1.3" 854 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 855 | 856 | combined-stream@^1.0.5, combined-stream@~1.0.5: 857 | version "1.0.5" 858 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 859 | dependencies: 860 | delayed-stream "~1.0.0" 861 | 862 | commander@^2.11.0: 863 | version "2.12.2" 864 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.12.2.tgz#0f5946c427ed9ec0d91a46bb9def53e54650e555" 865 | 866 | concat-map@0.0.1: 867 | version "0.0.1" 868 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 869 | 870 | concat-stream@^1.6.0: 871 | version "1.6.0" 872 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 873 | dependencies: 874 | inherits "^2.0.3" 875 | readable-stream "^2.2.2" 876 | typedarray "^0.0.6" 877 | 878 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 879 | version "1.1.0" 880 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 881 | 882 | contains-path@^0.1.0: 883 | version "0.1.0" 884 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 885 | 886 | convert-source-map@^1.5.0: 887 | version "1.5.1" 888 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 889 | 890 | core-js@^2.4.0, core-js@^2.5.0: 891 | version "2.5.3" 892 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.3.tgz#8acc38345824f16d8365b7c9b4259168e8ed603e" 893 | 894 | core-util-is@1.0.2, core-util-is@~1.0.0: 895 | version "1.0.2" 896 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 897 | 898 | cross-spawn@^5.1.0: 899 | version "5.1.0" 900 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 901 | dependencies: 902 | lru-cache "^4.0.1" 903 | shebang-command "^1.2.0" 904 | which "^1.2.9" 905 | 906 | cryptiles@2.x.x: 907 | version "2.0.5" 908 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 909 | dependencies: 910 | boom "2.x.x" 911 | 912 | dashdash@^1.12.0: 913 | version "1.14.1" 914 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 915 | dependencies: 916 | assert-plus "^1.0.0" 917 | 918 | debug@^2.2.0, debug@^2.6.8, debug@^2.6.9: 919 | version "2.6.9" 920 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 921 | dependencies: 922 | ms "2.0.0" 923 | 924 | debug@^3.0.1, debug@^3.1.0: 925 | version "3.1.0" 926 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 927 | dependencies: 928 | ms "2.0.0" 929 | 930 | deep-extend@~0.4.0: 931 | version "0.4.2" 932 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 933 | 934 | deep-is@~0.1.3: 935 | version "0.1.3" 936 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 937 | 938 | del@^2.0.2: 939 | version "2.2.2" 940 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 941 | dependencies: 942 | globby "^5.0.0" 943 | is-path-cwd "^1.0.0" 944 | is-path-in-cwd "^1.0.0" 945 | object-assign "^4.0.1" 946 | pify "^2.0.0" 947 | pinkie-promise "^2.0.0" 948 | rimraf "^2.2.8" 949 | 950 | delayed-stream@~1.0.0: 951 | version "1.0.0" 952 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 953 | 954 | delegates@^1.0.0: 955 | version "1.0.0" 956 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 957 | 958 | detect-indent@^4.0.0: 959 | version "4.0.0" 960 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 961 | dependencies: 962 | repeating "^2.0.0" 963 | 964 | detect-libc@^1.0.2: 965 | version "1.0.3" 966 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 967 | 968 | doctrine@1.5.0: 969 | version "1.5.0" 970 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 971 | dependencies: 972 | esutils "^2.0.2" 973 | isarray "^1.0.0" 974 | 975 | doctrine@^2.0.2: 976 | version "2.1.0" 977 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 978 | dependencies: 979 | esutils "^2.0.2" 980 | 981 | ecc-jsbn@~0.1.1: 982 | version "0.1.1" 983 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 984 | dependencies: 985 | jsbn "~0.1.0" 986 | 987 | electron-releases@^2.1.0: 988 | version "2.1.0" 989 | resolved "https://registry.yarnpkg.com/electron-releases/-/electron-releases-2.1.0.tgz#c5614bf811f176ce3c836e368a0625782341fd4e" 990 | 991 | electron-to-chromium@^1.3.30: 992 | version "1.3.30" 993 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.30.tgz#9666f532a64586651fc56a72513692e820d06a80" 994 | dependencies: 995 | electron-releases "^2.1.0" 996 | 997 | error-ex@^1.2.0: 998 | version "1.3.1" 999 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1000 | dependencies: 1001 | is-arrayish "^0.2.1" 1002 | 1003 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1004 | version "1.0.5" 1005 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1006 | 1007 | eslint-config-prettier@^2.3.0: 1008 | version "2.9.0" 1009 | resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-2.9.0.tgz#5ecd65174d486c22dff389fe036febf502d468a3" 1010 | dependencies: 1011 | get-stdin "^5.0.1" 1012 | 1013 | eslint-import-resolver-node@^0.3.1: 1014 | version "0.3.2" 1015 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.2.tgz#58f15fb839b8d0576ca980413476aab2472db66a" 1016 | dependencies: 1017 | debug "^2.6.9" 1018 | resolve "^1.5.0" 1019 | 1020 | eslint-module-utils@^2.1.1: 1021 | version "2.1.1" 1022 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.1.1.tgz#abaec824177613b8a95b299639e1b6facf473449" 1023 | dependencies: 1024 | debug "^2.6.8" 1025 | pkg-dir "^1.0.0" 1026 | 1027 | eslint-plugin-import@^2.8.0: 1028 | version "2.8.0" 1029 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.8.0.tgz#fa1b6ef31fcb3c501c09859c1b86f1fc5b986894" 1030 | dependencies: 1031 | builtin-modules "^1.1.1" 1032 | contains-path "^0.1.0" 1033 | debug "^2.6.8" 1034 | doctrine "1.5.0" 1035 | eslint-import-resolver-node "^0.3.1" 1036 | eslint-module-utils "^2.1.1" 1037 | has "^1.0.1" 1038 | lodash.cond "^4.3.0" 1039 | minimatch "^3.0.3" 1040 | read-pkg-up "^2.0.0" 1041 | 1042 | eslint-plugin-prettier@^2.1.2: 1043 | version "2.4.0" 1044 | resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-2.4.0.tgz#85cab0775c6d5e3344ef01e78d960f166fb93aae" 1045 | dependencies: 1046 | fast-diff "^1.1.1" 1047 | jest-docblock "^21.0.0" 1048 | 1049 | eslint-scope@^3.7.1, eslint-scope@~3.7.1: 1050 | version "3.7.1" 1051 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" 1052 | dependencies: 1053 | esrecurse "^4.1.0" 1054 | estraverse "^4.1.1" 1055 | 1056 | eslint-visitor-keys@^1.0.0: 1057 | version "1.0.0" 1058 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d" 1059 | 1060 | eslint@^4.15.0: 1061 | version "4.15.0" 1062 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.15.0.tgz#89ab38c12713eec3d13afac14e4a89e75ef08145" 1063 | dependencies: 1064 | ajv "^5.3.0" 1065 | babel-code-frame "^6.22.0" 1066 | chalk "^2.1.0" 1067 | concat-stream "^1.6.0" 1068 | cross-spawn "^5.1.0" 1069 | debug "^3.1.0" 1070 | doctrine "^2.0.2" 1071 | eslint-scope "^3.7.1" 1072 | eslint-visitor-keys "^1.0.0" 1073 | espree "^3.5.2" 1074 | esquery "^1.0.0" 1075 | esutils "^2.0.2" 1076 | file-entry-cache "^2.0.0" 1077 | functional-red-black-tree "^1.0.1" 1078 | glob "^7.1.2" 1079 | globals "^11.0.1" 1080 | ignore "^3.3.3" 1081 | imurmurhash "^0.1.4" 1082 | inquirer "^3.0.6" 1083 | is-resolvable "^1.0.0" 1084 | js-yaml "^3.9.1" 1085 | json-stable-stringify-without-jsonify "^1.0.1" 1086 | levn "^0.3.0" 1087 | lodash "^4.17.4" 1088 | minimatch "^3.0.2" 1089 | mkdirp "^0.5.1" 1090 | natural-compare "^1.4.0" 1091 | optionator "^0.8.2" 1092 | path-is-inside "^1.0.2" 1093 | pluralize "^7.0.0" 1094 | progress "^2.0.0" 1095 | require-uncached "^1.0.3" 1096 | semver "^5.3.0" 1097 | strip-ansi "^4.0.0" 1098 | strip-json-comments "~2.0.1" 1099 | table "^4.0.1" 1100 | text-table "~0.2.0" 1101 | 1102 | espree@^3.5.2: 1103 | version "3.5.2" 1104 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.2.tgz#756ada8b979e9dcfcdb30aad8d1a9304a905e1ca" 1105 | dependencies: 1106 | acorn "^5.2.1" 1107 | acorn-jsx "^3.0.0" 1108 | 1109 | esprima@^4.0.0: 1110 | version "4.0.0" 1111 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 1112 | 1113 | esquery@^1.0.0: 1114 | version "1.0.0" 1115 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 1116 | dependencies: 1117 | estraverse "^4.0.0" 1118 | 1119 | esrecurse@^4.1.0: 1120 | version "4.2.0" 1121 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163" 1122 | dependencies: 1123 | estraverse "^4.1.0" 1124 | object-assign "^4.0.1" 1125 | 1126 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1: 1127 | version "4.2.0" 1128 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1129 | 1130 | esutils@^2.0.2: 1131 | version "2.0.2" 1132 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1133 | 1134 | expand-brackets@^0.1.4: 1135 | version "0.1.5" 1136 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1137 | dependencies: 1138 | is-posix-bracket "^0.1.0" 1139 | 1140 | expand-range@^1.8.1: 1141 | version "1.8.2" 1142 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1143 | dependencies: 1144 | fill-range "^2.1.0" 1145 | 1146 | extend@~3.0.0: 1147 | version "3.0.1" 1148 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1149 | 1150 | external-editor@^2.0.4: 1151 | version "2.1.0" 1152 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.1.0.tgz#3d026a21b7f95b5726387d4200ac160d372c3b48" 1153 | dependencies: 1154 | chardet "^0.4.0" 1155 | iconv-lite "^0.4.17" 1156 | tmp "^0.0.33" 1157 | 1158 | extglob@^0.3.1: 1159 | version "0.3.2" 1160 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1161 | dependencies: 1162 | is-extglob "^1.0.0" 1163 | 1164 | extsprintf@1.3.0: 1165 | version "1.3.0" 1166 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1167 | 1168 | extsprintf@^1.2.0: 1169 | version "1.4.0" 1170 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 1171 | 1172 | fast-deep-equal@^1.0.0: 1173 | version "1.0.0" 1174 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 1175 | 1176 | fast-diff@^1.1.1: 1177 | version "1.1.2" 1178 | resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.1.2.tgz#4b62c42b8e03de3f848460b639079920695d0154" 1179 | 1180 | fast-json-stable-stringify@^2.0.0: 1181 | version "2.0.0" 1182 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1183 | 1184 | fast-levenshtein@~2.0.4: 1185 | version "2.0.6" 1186 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1187 | 1188 | figures@^2.0.0: 1189 | version "2.0.0" 1190 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1191 | dependencies: 1192 | escape-string-regexp "^1.0.5" 1193 | 1194 | file-entry-cache@^2.0.0: 1195 | version "2.0.0" 1196 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1197 | dependencies: 1198 | flat-cache "^1.2.1" 1199 | object-assign "^4.0.1" 1200 | 1201 | filename-regex@^2.0.0: 1202 | version "2.0.1" 1203 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1204 | 1205 | fill-range@^2.1.0: 1206 | version "2.2.3" 1207 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1208 | dependencies: 1209 | is-number "^2.1.0" 1210 | isobject "^2.0.0" 1211 | randomatic "^1.1.3" 1212 | repeat-element "^1.1.2" 1213 | repeat-string "^1.5.2" 1214 | 1215 | find-up@^1.0.0: 1216 | version "1.1.2" 1217 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1218 | dependencies: 1219 | path-exists "^2.0.0" 1220 | pinkie-promise "^2.0.0" 1221 | 1222 | find-up@^2.0.0: 1223 | version "2.1.0" 1224 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1225 | dependencies: 1226 | locate-path "^2.0.0" 1227 | 1228 | flat-cache@^1.2.1: 1229 | version "1.3.0" 1230 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.0.tgz#d3030b32b38154f4e3b7e9c709f490f7ef97c481" 1231 | dependencies: 1232 | circular-json "^0.3.1" 1233 | del "^2.0.2" 1234 | graceful-fs "^4.1.2" 1235 | write "^0.2.1" 1236 | 1237 | for-in@^1.0.1: 1238 | version "1.0.2" 1239 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1240 | 1241 | for-own@^0.1.4: 1242 | version "0.1.5" 1243 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1244 | dependencies: 1245 | for-in "^1.0.1" 1246 | 1247 | forever-agent@~0.6.1: 1248 | version "0.6.1" 1249 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1250 | 1251 | form-data@~2.1.1: 1252 | version "2.1.4" 1253 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1254 | dependencies: 1255 | asynckit "^0.4.0" 1256 | combined-stream "^1.0.5" 1257 | mime-types "^2.1.12" 1258 | 1259 | fs-readdir-recursive@^1.0.0: 1260 | version "1.1.0" 1261 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27" 1262 | 1263 | fs.realpath@^1.0.0: 1264 | version "1.0.0" 1265 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1266 | 1267 | fsevents@^1.0.0: 1268 | version "1.1.3" 1269 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8" 1270 | dependencies: 1271 | nan "^2.3.0" 1272 | node-pre-gyp "^0.6.39" 1273 | 1274 | fstream-ignore@^1.0.5: 1275 | version "1.0.5" 1276 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1277 | dependencies: 1278 | fstream "^1.0.0" 1279 | inherits "2" 1280 | minimatch "^3.0.0" 1281 | 1282 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1283 | version "1.0.11" 1284 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1285 | dependencies: 1286 | graceful-fs "^4.1.2" 1287 | inherits "~2.0.0" 1288 | mkdirp ">=0.5 0" 1289 | rimraf "2" 1290 | 1291 | function-bind@^1.0.2: 1292 | version "1.1.1" 1293 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1294 | 1295 | functional-red-black-tree@^1.0.1: 1296 | version "1.0.1" 1297 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 1298 | 1299 | gauge@~2.7.3: 1300 | version "2.7.4" 1301 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1302 | dependencies: 1303 | aproba "^1.0.3" 1304 | console-control-strings "^1.0.0" 1305 | has-unicode "^2.0.0" 1306 | object-assign "^4.1.0" 1307 | signal-exit "^3.0.0" 1308 | string-width "^1.0.1" 1309 | strip-ansi "^3.0.1" 1310 | wide-align "^1.1.0" 1311 | 1312 | get-stdin@^5.0.1: 1313 | version "5.0.1" 1314 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" 1315 | 1316 | getpass@^0.1.1: 1317 | version "0.1.7" 1318 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1319 | dependencies: 1320 | assert-plus "^1.0.0" 1321 | 1322 | glob-base@^0.3.0: 1323 | version "0.3.0" 1324 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1325 | dependencies: 1326 | glob-parent "^2.0.0" 1327 | is-glob "^2.0.0" 1328 | 1329 | glob-parent@^2.0.0: 1330 | version "2.0.0" 1331 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1332 | dependencies: 1333 | is-glob "^2.0.0" 1334 | 1335 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.2: 1336 | version "7.1.2" 1337 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1338 | dependencies: 1339 | fs.realpath "^1.0.0" 1340 | inflight "^1.0.4" 1341 | inherits "2" 1342 | minimatch "^3.0.4" 1343 | once "^1.3.0" 1344 | path-is-absolute "^1.0.0" 1345 | 1346 | globals@^11.0.1, globals@^11.1.0: 1347 | version "11.1.0" 1348 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.1.0.tgz#632644457f5f0e3ae711807183700ebf2e4633e4" 1349 | 1350 | globals@^9.18.0: 1351 | version "9.18.0" 1352 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1353 | 1354 | globby@^5.0.0: 1355 | version "5.0.0" 1356 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1357 | dependencies: 1358 | array-union "^1.0.1" 1359 | arrify "^1.0.0" 1360 | glob "^7.0.3" 1361 | object-assign "^4.0.1" 1362 | pify "^2.0.0" 1363 | pinkie-promise "^2.0.0" 1364 | 1365 | graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1366 | version "4.1.11" 1367 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1368 | 1369 | har-schema@^1.0.5: 1370 | version "1.0.5" 1371 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1372 | 1373 | har-validator@~4.2.1: 1374 | version "4.2.1" 1375 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1376 | dependencies: 1377 | ajv "^4.9.1" 1378 | har-schema "^1.0.5" 1379 | 1380 | has-ansi@^2.0.0: 1381 | version "2.0.0" 1382 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1383 | dependencies: 1384 | ansi-regex "^2.0.0" 1385 | 1386 | has-flag@^2.0.0: 1387 | version "2.0.0" 1388 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1389 | 1390 | has-unicode@^2.0.0: 1391 | version "2.0.1" 1392 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1393 | 1394 | has@^1.0.1: 1395 | version "1.0.1" 1396 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1397 | dependencies: 1398 | function-bind "^1.0.2" 1399 | 1400 | hawk@3.1.3, hawk@~3.1.3: 1401 | version "3.1.3" 1402 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1403 | dependencies: 1404 | boom "2.x.x" 1405 | cryptiles "2.x.x" 1406 | hoek "2.x.x" 1407 | sntp "1.x.x" 1408 | 1409 | hoek@2.x.x: 1410 | version "2.16.3" 1411 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1412 | 1413 | home-or-tmp@^2.0.0: 1414 | version "2.0.0" 1415 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1416 | dependencies: 1417 | os-homedir "^1.0.0" 1418 | os-tmpdir "^1.0.1" 1419 | 1420 | hosted-git-info@^2.1.4: 1421 | version "2.5.0" 1422 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 1423 | 1424 | http-signature@~1.1.0: 1425 | version "1.1.1" 1426 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1427 | dependencies: 1428 | assert-plus "^0.2.0" 1429 | jsprim "^1.2.2" 1430 | sshpk "^1.7.0" 1431 | 1432 | iconv-lite@^0.4.17: 1433 | version "0.4.19" 1434 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 1435 | 1436 | ignore@^3.3.3: 1437 | version "3.3.7" 1438 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.7.tgz#612289bfb3c220e186a58118618d5be8c1bab021" 1439 | 1440 | imurmurhash@^0.1.4: 1441 | version "0.1.4" 1442 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1443 | 1444 | inflight@^1.0.4: 1445 | version "1.0.6" 1446 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1447 | dependencies: 1448 | once "^1.3.0" 1449 | wrappy "1" 1450 | 1451 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.3: 1452 | version "2.0.3" 1453 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1454 | 1455 | ini@~1.3.0: 1456 | version "1.3.5" 1457 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1458 | 1459 | inquirer@^3.0.6: 1460 | version "3.3.0" 1461 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" 1462 | dependencies: 1463 | ansi-escapes "^3.0.0" 1464 | chalk "^2.0.0" 1465 | cli-cursor "^2.1.0" 1466 | cli-width "^2.0.0" 1467 | external-editor "^2.0.4" 1468 | figures "^2.0.0" 1469 | lodash "^4.3.0" 1470 | mute-stream "0.0.7" 1471 | run-async "^2.2.0" 1472 | rx-lite "^4.0.8" 1473 | rx-lite-aggregates "^4.0.8" 1474 | string-width "^2.1.0" 1475 | strip-ansi "^4.0.0" 1476 | through "^2.3.6" 1477 | 1478 | invariant@^2.2.0, invariant@^2.2.2: 1479 | version "2.2.2" 1480 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1481 | dependencies: 1482 | loose-envify "^1.0.0" 1483 | 1484 | is-arrayish@^0.2.1: 1485 | version "0.2.1" 1486 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1487 | 1488 | is-binary-path@^1.0.0: 1489 | version "1.0.1" 1490 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1491 | dependencies: 1492 | binary-extensions "^1.0.0" 1493 | 1494 | is-buffer@^1.1.5: 1495 | version "1.1.6" 1496 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1497 | 1498 | is-builtin-module@^1.0.0: 1499 | version "1.0.0" 1500 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1501 | dependencies: 1502 | builtin-modules "^1.0.0" 1503 | 1504 | is-dotfile@^1.0.0: 1505 | version "1.0.3" 1506 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1507 | 1508 | is-equal-shallow@^0.1.3: 1509 | version "0.1.3" 1510 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1511 | dependencies: 1512 | is-primitive "^2.0.0" 1513 | 1514 | is-extendable@^0.1.1: 1515 | version "0.1.1" 1516 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1517 | 1518 | is-extglob@^1.0.0: 1519 | version "1.0.0" 1520 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1521 | 1522 | is-finite@^1.0.0: 1523 | version "1.0.2" 1524 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1525 | dependencies: 1526 | number-is-nan "^1.0.0" 1527 | 1528 | is-fullwidth-code-point@^1.0.0: 1529 | version "1.0.0" 1530 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1531 | dependencies: 1532 | number-is-nan "^1.0.0" 1533 | 1534 | is-fullwidth-code-point@^2.0.0: 1535 | version "2.0.0" 1536 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1537 | 1538 | is-glob@^2.0.0, is-glob@^2.0.1: 1539 | version "2.0.1" 1540 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1541 | dependencies: 1542 | is-extglob "^1.0.0" 1543 | 1544 | is-number@^2.1.0: 1545 | version "2.1.0" 1546 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1547 | dependencies: 1548 | kind-of "^3.0.2" 1549 | 1550 | is-number@^3.0.0: 1551 | version "3.0.0" 1552 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1553 | dependencies: 1554 | kind-of "^3.0.2" 1555 | 1556 | is-path-cwd@^1.0.0: 1557 | version "1.0.0" 1558 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1559 | 1560 | is-path-in-cwd@^1.0.0: 1561 | version "1.0.0" 1562 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 1563 | dependencies: 1564 | is-path-inside "^1.0.0" 1565 | 1566 | is-path-inside@^1.0.0: 1567 | version "1.0.1" 1568 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" 1569 | dependencies: 1570 | path-is-inside "^1.0.1" 1571 | 1572 | is-posix-bracket@^0.1.0: 1573 | version "0.1.1" 1574 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1575 | 1576 | is-primitive@^2.0.0: 1577 | version "2.0.0" 1578 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1579 | 1580 | is-promise@^2.1.0: 1581 | version "2.1.0" 1582 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1583 | 1584 | is-resolvable@^1.0.0: 1585 | version "1.0.1" 1586 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.1.tgz#acca1cd36dbe44b974b924321555a70ba03b1cf4" 1587 | 1588 | is-typedarray@~1.0.0: 1589 | version "1.0.0" 1590 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1591 | 1592 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1593 | version "1.0.0" 1594 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1595 | 1596 | isexe@^2.0.0: 1597 | version "2.0.0" 1598 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1599 | 1600 | isobject@^2.0.0: 1601 | version "2.1.0" 1602 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1603 | dependencies: 1604 | isarray "1.0.0" 1605 | 1606 | isstream@~0.1.2: 1607 | version "0.1.2" 1608 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1609 | 1610 | jest-docblock@^21.0.0: 1611 | version "21.2.0" 1612 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-21.2.0.tgz#51529c3b30d5fd159da60c27ceedc195faf8d414" 1613 | 1614 | js-tokens@^3.0.0, js-tokens@^3.0.2: 1615 | version "3.0.2" 1616 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1617 | 1618 | js-yaml@^3.9.1: 1619 | version "3.10.0" 1620 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" 1621 | dependencies: 1622 | argparse "^1.0.7" 1623 | esprima "^4.0.0" 1624 | 1625 | jsbn@~0.1.0: 1626 | version "0.1.1" 1627 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1628 | 1629 | jsesc@^1.3.0: 1630 | version "1.3.0" 1631 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1632 | 1633 | jsesc@~0.5.0: 1634 | version "0.5.0" 1635 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1636 | 1637 | json-schema-traverse@^0.3.0: 1638 | version "0.3.1" 1639 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 1640 | 1641 | json-schema@0.2.3: 1642 | version "0.2.3" 1643 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1644 | 1645 | json-stable-stringify-without-jsonify@^1.0.1: 1646 | version "1.0.1" 1647 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 1648 | 1649 | json-stable-stringify@^1.0.1: 1650 | version "1.0.1" 1651 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1652 | dependencies: 1653 | jsonify "~0.0.0" 1654 | 1655 | json-stringify-safe@~5.0.1: 1656 | version "5.0.1" 1657 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1658 | 1659 | json5@^0.5.1: 1660 | version "0.5.1" 1661 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1662 | 1663 | jsonify@~0.0.0: 1664 | version "0.0.0" 1665 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1666 | 1667 | jsprim@^1.2.2: 1668 | version "1.4.1" 1669 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1670 | dependencies: 1671 | assert-plus "1.0.0" 1672 | extsprintf "1.3.0" 1673 | json-schema "0.2.3" 1674 | verror "1.10.0" 1675 | 1676 | kind-of@^3.0.2: 1677 | version "3.2.2" 1678 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1679 | dependencies: 1680 | is-buffer "^1.1.5" 1681 | 1682 | kind-of@^4.0.0: 1683 | version "4.0.0" 1684 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1685 | dependencies: 1686 | is-buffer "^1.1.5" 1687 | 1688 | levn@^0.3.0, levn@~0.3.0: 1689 | version "0.3.0" 1690 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1691 | dependencies: 1692 | prelude-ls "~1.1.2" 1693 | type-check "~0.3.2" 1694 | 1695 | load-json-file@^2.0.0: 1696 | version "2.0.0" 1697 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 1698 | dependencies: 1699 | graceful-fs "^4.1.2" 1700 | parse-json "^2.2.0" 1701 | pify "^2.0.0" 1702 | strip-bom "^3.0.0" 1703 | 1704 | locate-path@^2.0.0: 1705 | version "2.0.0" 1706 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1707 | dependencies: 1708 | p-locate "^2.0.0" 1709 | path-exists "^3.0.0" 1710 | 1711 | lodash.cond@^4.3.0: 1712 | version "4.5.2" 1713 | resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5" 1714 | 1715 | lodash@^4.17.4, lodash@^4.2.0, lodash@^4.3.0: 1716 | version "4.17.4" 1717 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1718 | 1719 | loose-envify@^1.0.0: 1720 | version "1.3.1" 1721 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1722 | dependencies: 1723 | js-tokens "^3.0.0" 1724 | 1725 | lru-cache@^4.0.1: 1726 | version "4.1.1" 1727 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 1728 | dependencies: 1729 | pseudomap "^1.0.2" 1730 | yallist "^2.1.2" 1731 | 1732 | micromatch@^2.1.5: 1733 | version "2.3.11" 1734 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1735 | dependencies: 1736 | arr-diff "^2.0.0" 1737 | array-unique "^0.2.1" 1738 | braces "^1.8.2" 1739 | expand-brackets "^0.1.4" 1740 | extglob "^0.3.1" 1741 | filename-regex "^2.0.0" 1742 | is-extglob "^1.0.0" 1743 | is-glob "^2.0.1" 1744 | kind-of "^3.0.2" 1745 | normalize-path "^2.0.1" 1746 | object.omit "^2.0.0" 1747 | parse-glob "^3.0.4" 1748 | regex-cache "^0.4.2" 1749 | 1750 | mime-db@~1.30.0: 1751 | version "1.30.0" 1752 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 1753 | 1754 | mime-types@^2.1.12, mime-types@~2.1.7: 1755 | version "2.1.17" 1756 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 1757 | dependencies: 1758 | mime-db "~1.30.0" 1759 | 1760 | mimic-fn@^1.0.0: 1761 | version "1.1.0" 1762 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 1763 | 1764 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 1765 | version "3.0.4" 1766 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1767 | dependencies: 1768 | brace-expansion "^1.1.7" 1769 | 1770 | minimist@0.0.8: 1771 | version "0.0.8" 1772 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1773 | 1774 | minimist@^1.2.0: 1775 | version "1.2.0" 1776 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1777 | 1778 | "mkdirp@>=0.5 0", mkdirp@^0.5.1: 1779 | version "0.5.1" 1780 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1781 | dependencies: 1782 | minimist "0.0.8" 1783 | 1784 | ms@2.0.0: 1785 | version "2.0.0" 1786 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1787 | 1788 | mute-stream@0.0.7: 1789 | version "0.0.7" 1790 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 1791 | 1792 | nan@^2.3.0: 1793 | version "2.8.0" 1794 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.8.0.tgz#ed715f3fe9de02b57a5e6252d90a96675e1f085a" 1795 | 1796 | natural-compare@^1.4.0: 1797 | version "1.4.0" 1798 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1799 | 1800 | node-pre-gyp@^0.6.39: 1801 | version "0.6.39" 1802 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" 1803 | dependencies: 1804 | detect-libc "^1.0.2" 1805 | hawk "3.1.3" 1806 | mkdirp "^0.5.1" 1807 | nopt "^4.0.1" 1808 | npmlog "^4.0.2" 1809 | rc "^1.1.7" 1810 | request "2.81.0" 1811 | rimraf "^2.6.1" 1812 | semver "^5.3.0" 1813 | tar "^2.2.1" 1814 | tar-pack "^3.4.0" 1815 | 1816 | nopt@^4.0.1: 1817 | version "4.0.1" 1818 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1819 | dependencies: 1820 | abbrev "1" 1821 | osenv "^0.1.4" 1822 | 1823 | normalize-package-data@^2.3.2: 1824 | version "2.4.0" 1825 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 1826 | dependencies: 1827 | hosted-git-info "^2.1.4" 1828 | is-builtin-module "^1.0.0" 1829 | semver "2 || 3 || 4 || 5" 1830 | validate-npm-package-license "^3.0.1" 1831 | 1832 | normalize-path@^2.0.0, normalize-path@^2.0.1: 1833 | version "2.1.1" 1834 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1835 | dependencies: 1836 | remove-trailing-separator "^1.0.1" 1837 | 1838 | npmlog@^4.0.2: 1839 | version "4.1.2" 1840 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 1841 | dependencies: 1842 | are-we-there-yet "~1.1.2" 1843 | console-control-strings "~1.1.0" 1844 | gauge "~2.7.3" 1845 | set-blocking "~2.0.0" 1846 | 1847 | number-is-nan@^1.0.0: 1848 | version "1.0.1" 1849 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1850 | 1851 | oauth-sign@~0.8.1: 1852 | version "0.8.2" 1853 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1854 | 1855 | object-assign@^4.0.1, object-assign@^4.1.0: 1856 | version "4.1.1" 1857 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1858 | 1859 | object.omit@^2.0.0: 1860 | version "2.0.1" 1861 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1862 | dependencies: 1863 | for-own "^0.1.4" 1864 | is-extendable "^0.1.1" 1865 | 1866 | once@^1.3.0, once@^1.3.3: 1867 | version "1.4.0" 1868 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1869 | dependencies: 1870 | wrappy "1" 1871 | 1872 | onetime@^2.0.0: 1873 | version "2.0.1" 1874 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 1875 | dependencies: 1876 | mimic-fn "^1.0.0" 1877 | 1878 | optionator@^0.8.2: 1879 | version "0.8.2" 1880 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 1881 | dependencies: 1882 | deep-is "~0.1.3" 1883 | fast-levenshtein "~2.0.4" 1884 | levn "~0.3.0" 1885 | prelude-ls "~1.1.2" 1886 | type-check "~0.3.2" 1887 | wordwrap "~1.0.0" 1888 | 1889 | os-homedir@^1.0.0: 1890 | version "1.0.2" 1891 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1892 | 1893 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.2: 1894 | version "1.0.2" 1895 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1896 | 1897 | osenv@^0.1.4: 1898 | version "0.1.4" 1899 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 1900 | dependencies: 1901 | os-homedir "^1.0.0" 1902 | os-tmpdir "^1.0.0" 1903 | 1904 | output-file-sync@^1.1.2: 1905 | version "1.1.2" 1906 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 1907 | dependencies: 1908 | graceful-fs "^4.1.4" 1909 | mkdirp "^0.5.1" 1910 | object-assign "^4.1.0" 1911 | 1912 | p-limit@^1.1.0: 1913 | version "1.2.0" 1914 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.2.0.tgz#0e92b6bedcb59f022c13d0f1949dc82d15909f1c" 1915 | dependencies: 1916 | p-try "^1.0.0" 1917 | 1918 | p-locate@^2.0.0: 1919 | version "2.0.0" 1920 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1921 | dependencies: 1922 | p-limit "^1.1.0" 1923 | 1924 | p-try@^1.0.0: 1925 | version "1.0.0" 1926 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 1927 | 1928 | parse-glob@^3.0.4: 1929 | version "3.0.4" 1930 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1931 | dependencies: 1932 | glob-base "^0.3.0" 1933 | is-dotfile "^1.0.0" 1934 | is-extglob "^1.0.0" 1935 | is-glob "^2.0.0" 1936 | 1937 | parse-json@^2.2.0: 1938 | version "2.2.0" 1939 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1940 | dependencies: 1941 | error-ex "^1.2.0" 1942 | 1943 | path-exists@^2.0.0: 1944 | version "2.1.0" 1945 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1946 | dependencies: 1947 | pinkie-promise "^2.0.0" 1948 | 1949 | path-exists@^3.0.0: 1950 | version "3.0.0" 1951 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1952 | 1953 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 1954 | version "1.0.1" 1955 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1956 | 1957 | path-is-inside@^1.0.1, path-is-inside@^1.0.2: 1958 | version "1.0.2" 1959 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 1960 | 1961 | path-parse@^1.0.5: 1962 | version "1.0.5" 1963 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 1964 | 1965 | path-type@^2.0.0: 1966 | version "2.0.0" 1967 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 1968 | dependencies: 1969 | pify "^2.0.0" 1970 | 1971 | performance-now@^0.2.0: 1972 | version "0.2.0" 1973 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 1974 | 1975 | pify@^2.0.0: 1976 | version "2.3.0" 1977 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1978 | 1979 | pinkie-promise@^2.0.0: 1980 | version "2.0.1" 1981 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1982 | dependencies: 1983 | pinkie "^2.0.0" 1984 | 1985 | pinkie@^2.0.0: 1986 | version "2.0.4" 1987 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1988 | 1989 | pkg-dir@^1.0.0: 1990 | version "1.0.0" 1991 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 1992 | dependencies: 1993 | find-up "^1.0.0" 1994 | 1995 | pluralize@^7.0.0: 1996 | version "7.0.0" 1997 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777" 1998 | 1999 | prelude-ls@~1.1.2: 2000 | version "1.1.2" 2001 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2002 | 2003 | preserve@^0.2.0: 2004 | version "0.2.0" 2005 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2006 | 2007 | prettier@^1.10.1: 2008 | version "1.10.1" 2009 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.10.1.tgz#01423fea6957ea23618d37d339ef0e7f7c967fc6" 2010 | 2011 | private@^0.1.6, private@^0.1.7: 2012 | version "0.1.8" 2013 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 2014 | 2015 | process-nextick-args@~1.0.6: 2016 | version "1.0.7" 2017 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2018 | 2019 | progress@^2.0.0: 2020 | version "2.0.0" 2021 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" 2022 | 2023 | pseudomap@^1.0.2: 2024 | version "1.0.2" 2025 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2026 | 2027 | punycode@^1.4.1: 2028 | version "1.4.1" 2029 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2030 | 2031 | qs@~6.4.0: 2032 | version "6.4.0" 2033 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2034 | 2035 | randomatic@^1.1.3: 2036 | version "1.1.7" 2037 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 2038 | dependencies: 2039 | is-number "^3.0.0" 2040 | kind-of "^4.0.0" 2041 | 2042 | rc@^1.1.7: 2043 | version "1.2.3" 2044 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.3.tgz#51575a900f8dd68381c710b4712c2154c3e2035b" 2045 | dependencies: 2046 | deep-extend "~0.4.0" 2047 | ini "~1.3.0" 2048 | minimist "^1.2.0" 2049 | strip-json-comments "~2.0.1" 2050 | 2051 | read-pkg-up@^2.0.0: 2052 | version "2.0.0" 2053 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 2054 | dependencies: 2055 | find-up "^2.0.0" 2056 | read-pkg "^2.0.0" 2057 | 2058 | read-pkg@^2.0.0: 2059 | version "2.0.0" 2060 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 2061 | dependencies: 2062 | load-json-file "^2.0.0" 2063 | normalize-package-data "^2.3.2" 2064 | path-type "^2.0.0" 2065 | 2066 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.2: 2067 | version "2.3.3" 2068 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 2069 | dependencies: 2070 | core-util-is "~1.0.0" 2071 | inherits "~2.0.3" 2072 | isarray "~1.0.0" 2073 | process-nextick-args "~1.0.6" 2074 | safe-buffer "~5.1.1" 2075 | string_decoder "~1.0.3" 2076 | util-deprecate "~1.0.1" 2077 | 2078 | readdirp@^2.0.0: 2079 | version "2.1.0" 2080 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2081 | dependencies: 2082 | graceful-fs "^4.1.2" 2083 | minimatch "^3.0.2" 2084 | readable-stream "^2.0.2" 2085 | set-immediate-shim "^1.0.1" 2086 | 2087 | regenerate@^1.2.1: 2088 | version "1.3.3" 2089 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f" 2090 | 2091 | regenerator-runtime@^0.10.5: 2092 | version "0.10.5" 2093 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 2094 | 2095 | regenerator-runtime@^0.11.0: 2096 | version "0.11.1" 2097 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 2098 | 2099 | regenerator-transform@^0.10.0: 2100 | version "0.10.1" 2101 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 2102 | dependencies: 2103 | babel-runtime "^6.18.0" 2104 | babel-types "^6.19.0" 2105 | private "^0.1.6" 2106 | 2107 | regex-cache@^0.4.2: 2108 | version "0.4.4" 2109 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 2110 | dependencies: 2111 | is-equal-shallow "^0.1.3" 2112 | 2113 | regexpu-core@^2.0.0: 2114 | version "2.0.0" 2115 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2116 | dependencies: 2117 | regenerate "^1.2.1" 2118 | regjsgen "^0.2.0" 2119 | regjsparser "^0.1.4" 2120 | 2121 | regjsgen@^0.2.0: 2122 | version "0.2.0" 2123 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2124 | 2125 | regjsparser@^0.1.4: 2126 | version "0.1.5" 2127 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2128 | dependencies: 2129 | jsesc "~0.5.0" 2130 | 2131 | remove-trailing-separator@^1.0.1: 2132 | version "1.1.0" 2133 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2134 | 2135 | repeat-element@^1.1.2: 2136 | version "1.1.2" 2137 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2138 | 2139 | repeat-string@^1.5.2: 2140 | version "1.6.1" 2141 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2142 | 2143 | repeating@^2.0.0: 2144 | version "2.0.1" 2145 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2146 | dependencies: 2147 | is-finite "^1.0.0" 2148 | 2149 | request@2.81.0: 2150 | version "2.81.0" 2151 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2152 | dependencies: 2153 | aws-sign2 "~0.6.0" 2154 | aws4 "^1.2.1" 2155 | caseless "~0.12.0" 2156 | combined-stream "~1.0.5" 2157 | extend "~3.0.0" 2158 | forever-agent "~0.6.1" 2159 | form-data "~2.1.1" 2160 | har-validator "~4.2.1" 2161 | hawk "~3.1.3" 2162 | http-signature "~1.1.0" 2163 | is-typedarray "~1.0.0" 2164 | isstream "~0.1.2" 2165 | json-stringify-safe "~5.0.1" 2166 | mime-types "~2.1.7" 2167 | oauth-sign "~0.8.1" 2168 | performance-now "^0.2.0" 2169 | qs "~6.4.0" 2170 | safe-buffer "^5.0.1" 2171 | stringstream "~0.0.4" 2172 | tough-cookie "~2.3.0" 2173 | tunnel-agent "^0.6.0" 2174 | uuid "^3.0.0" 2175 | 2176 | require-uncached@^1.0.3: 2177 | version "1.0.3" 2178 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 2179 | dependencies: 2180 | caller-path "^0.1.0" 2181 | resolve-from "^1.0.0" 2182 | 2183 | resolve-from@^1.0.0: 2184 | version "1.0.1" 2185 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 2186 | 2187 | resolve@^1.5.0: 2188 | version "1.5.0" 2189 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.5.0.tgz#1f09acce796c9a762579f31b2c1cc4c3cddf9f36" 2190 | dependencies: 2191 | path-parse "^1.0.5" 2192 | 2193 | restore-cursor@^2.0.0: 2194 | version "2.0.0" 2195 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 2196 | dependencies: 2197 | onetime "^2.0.0" 2198 | signal-exit "^3.0.2" 2199 | 2200 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1: 2201 | version "2.6.2" 2202 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2203 | dependencies: 2204 | glob "^7.0.5" 2205 | 2206 | run-async@^2.2.0: 2207 | version "2.3.0" 2208 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 2209 | dependencies: 2210 | is-promise "^2.1.0" 2211 | 2212 | rx-lite-aggregates@^4.0.8: 2213 | version "4.0.8" 2214 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 2215 | dependencies: 2216 | rx-lite "*" 2217 | 2218 | rx-lite@*, rx-lite@^4.0.8: 2219 | version "4.0.8" 2220 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 2221 | 2222 | safe-buffer@^5.0.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2223 | version "5.1.1" 2224 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2225 | 2226 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 2227 | version "5.4.1" 2228 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 2229 | 2230 | set-blocking@~2.0.0: 2231 | version "2.0.0" 2232 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2233 | 2234 | set-immediate-shim@^1.0.1: 2235 | version "1.0.1" 2236 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2237 | 2238 | shebang-command@^1.2.0: 2239 | version "1.2.0" 2240 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2241 | dependencies: 2242 | shebang-regex "^1.0.0" 2243 | 2244 | shebang-regex@^1.0.0: 2245 | version "1.0.0" 2246 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2247 | 2248 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2249 | version "3.0.2" 2250 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2251 | 2252 | slash@^1.0.0: 2253 | version "1.0.0" 2254 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2255 | 2256 | slice-ansi@1.0.0: 2257 | version "1.0.0" 2258 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d" 2259 | dependencies: 2260 | is-fullwidth-code-point "^2.0.0" 2261 | 2262 | sntp@1.x.x: 2263 | version "1.0.9" 2264 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2265 | dependencies: 2266 | hoek "2.x.x" 2267 | 2268 | source-map-support@^0.4.15: 2269 | version "0.4.18" 2270 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 2271 | dependencies: 2272 | source-map "^0.5.6" 2273 | 2274 | source-map@^0.5.6: 2275 | version "0.5.7" 2276 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2277 | 2278 | spdx-correct@~1.0.0: 2279 | version "1.0.2" 2280 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2281 | dependencies: 2282 | spdx-license-ids "^1.0.2" 2283 | 2284 | spdx-expression-parse@~1.0.0: 2285 | version "1.0.4" 2286 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2287 | 2288 | spdx-license-ids@^1.0.2: 2289 | version "1.2.2" 2290 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2291 | 2292 | sprintf-js@~1.0.2: 2293 | version "1.0.3" 2294 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2295 | 2296 | sshpk@^1.7.0: 2297 | version "1.13.1" 2298 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 2299 | dependencies: 2300 | asn1 "~0.2.3" 2301 | assert-plus "^1.0.0" 2302 | dashdash "^1.12.0" 2303 | getpass "^0.1.1" 2304 | optionalDependencies: 2305 | bcrypt-pbkdf "^1.0.0" 2306 | ecc-jsbn "~0.1.1" 2307 | jsbn "~0.1.0" 2308 | tweetnacl "~0.14.0" 2309 | 2310 | string-width@^1.0.1, string-width@^1.0.2: 2311 | version "1.0.2" 2312 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2313 | dependencies: 2314 | code-point-at "^1.0.0" 2315 | is-fullwidth-code-point "^1.0.0" 2316 | strip-ansi "^3.0.0" 2317 | 2318 | string-width@^2.1.0, string-width@^2.1.1: 2319 | version "2.1.1" 2320 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 2321 | dependencies: 2322 | is-fullwidth-code-point "^2.0.0" 2323 | strip-ansi "^4.0.0" 2324 | 2325 | string_decoder@~1.0.3: 2326 | version "1.0.3" 2327 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 2328 | dependencies: 2329 | safe-buffer "~5.1.0" 2330 | 2331 | stringstream@~0.0.4: 2332 | version "0.0.5" 2333 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2334 | 2335 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2336 | version "3.0.1" 2337 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2338 | dependencies: 2339 | ansi-regex "^2.0.0" 2340 | 2341 | strip-ansi@^4.0.0: 2342 | version "4.0.0" 2343 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 2344 | dependencies: 2345 | ansi-regex "^3.0.0" 2346 | 2347 | strip-bom@^3.0.0: 2348 | version "3.0.0" 2349 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2350 | 2351 | strip-json-comments@~2.0.1: 2352 | version "2.0.1" 2353 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2354 | 2355 | supports-color@^2.0.0: 2356 | version "2.0.0" 2357 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2358 | 2359 | supports-color@^4.0.0: 2360 | version "4.5.0" 2361 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" 2362 | dependencies: 2363 | has-flag "^2.0.0" 2364 | 2365 | table@^4.0.1: 2366 | version "4.0.2" 2367 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36" 2368 | dependencies: 2369 | ajv "^5.2.3" 2370 | ajv-keywords "^2.1.0" 2371 | chalk "^2.1.0" 2372 | lodash "^4.17.4" 2373 | slice-ansi "1.0.0" 2374 | string-width "^2.1.1" 2375 | 2376 | tar-pack@^3.4.0: 2377 | version "3.4.1" 2378 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" 2379 | dependencies: 2380 | debug "^2.2.0" 2381 | fstream "^1.0.10" 2382 | fstream-ignore "^1.0.5" 2383 | once "^1.3.3" 2384 | readable-stream "^2.1.4" 2385 | rimraf "^2.5.1" 2386 | tar "^2.2.1" 2387 | uid-number "^0.0.6" 2388 | 2389 | tar@^2.2.1: 2390 | version "2.2.1" 2391 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 2392 | dependencies: 2393 | block-stream "*" 2394 | fstream "^1.0.2" 2395 | inherits "2" 2396 | 2397 | text-table@~0.2.0: 2398 | version "0.2.0" 2399 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 2400 | 2401 | through@^2.3.6: 2402 | version "2.3.8" 2403 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 2404 | 2405 | tmp@^0.0.33: 2406 | version "0.0.33" 2407 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 2408 | dependencies: 2409 | os-tmpdir "~1.0.2" 2410 | 2411 | to-fast-properties@^1.0.3: 2412 | version "1.0.3" 2413 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 2414 | 2415 | to-fast-properties@^2.0.0: 2416 | version "2.0.0" 2417 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 2418 | 2419 | tough-cookie@~2.3.0: 2420 | version "2.3.3" 2421 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 2422 | dependencies: 2423 | punycode "^1.4.1" 2424 | 2425 | trim-right@^1.0.1: 2426 | version "1.0.1" 2427 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2428 | 2429 | tunnel-agent@^0.6.0: 2430 | version "0.6.0" 2431 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2432 | dependencies: 2433 | safe-buffer "^5.0.1" 2434 | 2435 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2436 | version "0.14.5" 2437 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2438 | 2439 | type-check@~0.3.2: 2440 | version "0.3.2" 2441 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 2442 | dependencies: 2443 | prelude-ls "~1.1.2" 2444 | 2445 | typedarray@^0.0.6: 2446 | version "0.0.6" 2447 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 2448 | 2449 | uid-number@^0.0.6: 2450 | version "0.0.6" 2451 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 2452 | 2453 | user-home@^1.1.1: 2454 | version "1.1.1" 2455 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 2456 | 2457 | util-deprecate@~1.0.1: 2458 | version "1.0.2" 2459 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2460 | 2461 | uuid@^3.0.0: 2462 | version "3.1.0" 2463 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 2464 | 2465 | v8flags@^2.1.1: 2466 | version "2.1.1" 2467 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 2468 | dependencies: 2469 | user-home "^1.1.1" 2470 | 2471 | validate-npm-package-license@^3.0.1: 2472 | version "3.0.1" 2473 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 2474 | dependencies: 2475 | spdx-correct "~1.0.0" 2476 | spdx-expression-parse "~1.0.0" 2477 | 2478 | verror@1.10.0: 2479 | version "1.10.0" 2480 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 2481 | dependencies: 2482 | assert-plus "^1.0.0" 2483 | core-util-is "1.0.2" 2484 | extsprintf "^1.2.0" 2485 | 2486 | which@^1.2.9: 2487 | version "1.3.0" 2488 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 2489 | dependencies: 2490 | isexe "^2.0.0" 2491 | 2492 | wide-align@^1.1.0: 2493 | version "1.1.2" 2494 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 2495 | dependencies: 2496 | string-width "^1.0.2" 2497 | 2498 | wordwrap@~1.0.0: 2499 | version "1.0.0" 2500 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 2501 | 2502 | wrappy@1: 2503 | version "1.0.2" 2504 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2505 | 2506 | write@^0.2.1: 2507 | version "0.2.1" 2508 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 2509 | dependencies: 2510 | mkdirp "^0.5.1" 2511 | 2512 | yallist@^2.1.2: 2513 | version "2.1.2" 2514 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 2515 | --------------------------------------------------------------------------------