├── .gitignore ├── .prettierrc ├── .travis.yml ├── CHANGELOG.md ├── README.md ├── __tests__ ├── __snapshots__ │ ├── createSerializer.js.snap │ └── index.js.snap ├── createSerializer.js └── index.js ├── bin ├── publish.sh └── release-branch.sh ├── createSerializer.js ├── index.js ├── package.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true, 3 | "trailingComma": "es5" 4 | } 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 'stable' 4 | notifications: 5 | email: false 6 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | 2 | # [7.1.0](https://github.com/rayrutjes/jest-serializer-html/compare/v7.0.0...v7.1.0) (2021-07-13) 3 | 4 | 5 | ### Features 6 | 7 | * add createSerializer ([#19](https://github.com/rayrutjes/jest-serializer-html/issues/19)) ([7ed2a4c](https://github.com/rayrutjes/jest-serializer-html/commit/7ed2a4c)) 8 | 9 | 10 | 11 | 12 | # [7.0.0](https://github.com/rayrutjes/jest-serializer-html/compare/v6.0.0...v7.0.0) (2019-04-28) 13 | 14 | 15 | ### Features 16 | 17 | * trim diffed HTML output ([#17](https://github.com/rayrutjes/jest-serializer-html/issues/17)) ([aa47789](https://github.com/rayrutjes/jest-serializer-html/commit/aa47789)) 18 | 19 | 20 | 21 | 22 | # [6.0.0](https://github.com/rayrutjes/jest-serializer-html/compare/v5.0.0...v6.0.0) (2018-12-31) 23 | 24 | 25 | ### Features 26 | 27 | * better handling of whitespaces ([0bf9273](https://github.com/rayrutjes/jest-serializer-html/commit/0bf9273)) 28 | 29 | 30 | 31 | 32 | # [5.0.0](https://github.com/rayrutjes/jest-serializer-html/compare/v4.0.1...v5.0.0) (2018-01-03) 33 | 34 | 35 | ### Features 36 | 37 | * remove HTML comments ([20c1322](https://github.com/rayrutjes/jest-serializer-html/commit/20c1322)), closes [#11](https://github.com/rayrutjes/jest-serializer-html/issues/11) 38 | 39 | 40 | 41 | 42 | ## [4.0.1](https://github.com/rayrutjes/jest-serializer-html/compare/v4.0.0...v4.0.1) (2017-10-18) 43 | 44 | 45 | ### Bug Fixes 46 | 47 | * better detect HTML by trimming string before checking for < ([aabe2e1](https://github.com/rayrutjes/jest-serializer-html/commit/aabe2e1)) 48 | 49 | 50 | 51 | 52 | # [4.0.0](https://github.com/rayrutjes/jest-serializer-html/compare/v3.0.0...v4.0.0) (2017-05-18) 53 | 54 | 55 | ### Features 56 | 57 | * **formatting:** upgrade diffable-html dependency to benefit from directive and comments outputting ([ad30c8c](https://github.com/rayrutjes/jest-serializer-html/commit/ad30c8c)) 58 | 59 | 60 | 61 | 62 | # [3.0.0](https://github.com/rayrutjes/jest-serializer-html/compare/v2.0.0...v3.0.0) (2017-04-18) 63 | 64 | 65 | ### Features 66 | 67 | * **html-format:** better default HTML formatting that ameliorates diff readability ([3470ddd](https://github.com/rayrutjes/jest-serializer-html/commit/3470ddd)) 68 | 69 | 70 | 71 | 72 | # [2.0.0](https://github.com/rayrutjes/jest-serializer-html/compare/v1.0.2...v2.0.0) (2017-04-17) 73 | 74 | 75 | ### Features 76 | 77 | * **html-format:** fix indent size to 2 spaces by default ([40598cb](https://github.com/rayrutjes/jest-serializer-html/commit/40598cb)) 78 | * **html-format:** force each tag attribute to be on its own line ([28f861b](https://github.com/rayrutjes/jest-serializer-html/commit/28f861b)) 79 | 80 | 81 | 82 | 83 | ## [1.0.2](https://github.com/rayrutjes/jest-serializer-html/compare/v1.0.1...v1.0.2) (2017-04-16) 84 | 85 | 86 | 87 | 88 | ## [1.0.1](https://github.com/rayrutjes/jest-serializer-html/compare/1.0.0...v1.0.1) (2017-04-16) 89 | 90 | 91 | 92 | 93 | # 1.0.0 (2017-04-14) 94 | 95 | 96 | 97 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # A Jest snapshot serializer that beautifies HTML. 2 | 3 | [![NPM version](https://badge.fury.io/js/jest-serializer-html.svg)](https://npmjs.org/package/jest-serializer-html) 4 | [![Build Status](https://travis-ci.org/rayrutjes/jest-serializer-html.svg?branch=master)](https://travis-ci.org/rayrutjes/jest-serializer-html) 5 | 6 | When using this Jest serializer, it will turn any string starting with '<' to nicely indented HTML in the snapshot. 7 | 8 | This serializer is based on [diffable-html](https://github.com/rayrutjes/diffable-html) which is an opinionated HTML formatter that will ease readability of diffs in case of failing snapshot tests. 9 | 10 | ## Install 11 | 12 | Add the package as a dev-dependency: 13 | 14 | ```bash 15 | # With npm 16 | npm install --save-dev jest-serializer-html 17 | 18 | # With yarn 19 | yarn add --dev jest-serializer-html 20 | ``` 21 | 22 | Update package.json to [let Jest know about the serializer](https://facebook.github.io/jest/docs/configuration.html#snapshotserializers-array-string): 23 | 24 | ```json 25 | "jest": { 26 | "snapshotSerializers": ["jest-serializer-html"] 27 | } 28 | ``` 29 | 30 | ## Vanilla JS Example 31 | 32 | ```js 33 | test('should beautify HTML', () => { 34 | expect('').toMatchSnapshot(); 35 | }); 36 | ``` 37 | 38 | Will output: 39 | 40 | ```js 41 | exports[`should beautify HTML 1`] = ` 42 | 49 | `; 50 | ``` 51 | 52 | ## Vue.js component output example 53 | 54 | ```js 55 | import Vue from 'vue'; 56 | const Hello = { 57 | props: { 58 | msg: { 59 | type: String, 60 | default: 'World' 61 | } 62 | }, 63 | template: ` 64 |

Hello ${ msg }!

65 | 66 | ` 67 | }; 68 | 69 | test('should beautify HTML', () => { 70 | const Component = Vue.extend(Hello); 71 | const vm = new Component({ 72 | propsData: { 73 | msg: 'You' 74 | } 75 | }); 76 | 77 | vm.$mount(); 78 | 79 | expect(vm.$el.outerHTML).toMatchSnapshot(); 80 | }); 81 | ``` 82 | 83 | Will output: 84 | 85 | ```js 86 | exports[`should beautify HTML 1`] = ` 87 |

88 | Hello You! 89 |

90 | 99 | `; 100 | ``` 101 | 102 | You can read more about the [HTML formatting here](https://github.com/rayrutjes/diffable-html#readme). 103 | 104 | ## Special thanks 105 | 106 | This package was inspired by the amazing post here: [Jest for all: Episode 1 — Vue.js](https://hackernoon.com/jest-for-all-episode-1-vue-js-d616bccbe186) by [Cristian Carlesso](https://hackernoon.com/@kentaromiura_the_js_guy). 107 | -------------------------------------------------------------------------------- /__tests__/__snapshots__/createSerializer.js.snap: -------------------------------------------------------------------------------- 1 | // Jest Snapshot v1, https://goo.gl/fbAQLP 2 | 3 | exports[`sorts attributes 1`] = ` 4 | 8 | `; 9 | -------------------------------------------------------------------------------- /__tests__/__snapshots__/index.js.snap: -------------------------------------------------------------------------------- 1 | // Jest Snapshot v1, https://goo.gl/fbAQLP 2 | 3 | exports[`should beautify HTML 1`] = ` 4 | 211 | `; 212 | 213 | exports[`should only act on HTML strings 1`] = `"Some text without any tags."`; 214 | 215 | exports[`should only act on HTML strings 2`] = `Object {}`; 216 | -------------------------------------------------------------------------------- /__tests__/createSerializer.js: -------------------------------------------------------------------------------- 1 | var createSerializer = require('../createSerializer'); 2 | 3 | test('sorts attributes', () => { 4 | const serializer = createSerializer({ 5 | print: { sortAttributes: (names) => names.sort() }, 6 | }); 7 | 8 | expect( 9 | serializer.print(``) 10 | ).toMatchSnapshot(); 11 | }); 12 | -------------------------------------------------------------------------------- /__tests__/index.js: -------------------------------------------------------------------------------- 1 | const html = ``; 56 | 57 | 58 | test('should beautify HTML', () => { 59 | expect(html).toMatchSnapshot(); 60 | }); 61 | 62 | test('should only act on HTML strings', () => { 63 | expect('Some text without any tags.').toMatchSnapshot(); 64 | expect({}).toMatchSnapshot(); 65 | }); 66 | -------------------------------------------------------------------------------- /bin/publish.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -eu 4 | 5 | readonly CURRENT_BRANCH=$(git rev-parse --abbrev-ref HEAD) 6 | if [ "$CURRENT_BRANCH" != master ]; then 7 | echo "You must be on 'master' branch to publish a release, aborting..." 8 | exit 1 9 | fi 10 | 11 | if ! git diff-index --quiet HEAD --; then 12 | echo "Working tree is not clean, aborting..." 13 | exit 1 14 | fi 15 | 16 | if ! yarn; then 17 | echo "Failed to install yarn dependencies, aborting..." 18 | exit 1 19 | fi 20 | 21 | if ! yarn test; then 22 | echo "Tests failed, aborting..." 23 | exit 1 24 | fi 25 | 26 | readonly PACKAGE_VERSION=$(< package.json grep version \ 27 | | head -1 \ 28 | | awk -F: '{ print $2 }' \ 29 | | sed 's/[",]//g' \ 30 | | tr -d '[:space:]') 31 | 32 | npm publish 33 | 34 | git tag "v$PACKAGE_VERSION" 35 | 36 | git push --tags 37 | 38 | echo "Pushed package to npm, and also pushed 'v$PACKAGE_VERSION' tag to git repository." 39 | -------------------------------------------------------------------------------- /bin/release-branch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -eu 4 | 5 | readonly CURRENT_BRANCH=$(git rev-parse --abbrev-ref HEAD) 6 | if [ "$CURRENT_BRANCH" != master ]; then 7 | echo "You must be on 'master' branch to publish a release, aborting..." 8 | exit 1 9 | fi 10 | 11 | if ! git diff-index --quiet HEAD --; then 12 | echo "Working tree is not clean, aborting..." 13 | exit 1 14 | fi 15 | 16 | if ! yarn; then 17 | echo "Failed to install yarn dependencies, aborting..." 18 | exit 1 19 | fi 20 | 21 | if ! yarn test; then 22 | echo "Tests failed, aborting..." 23 | exit 1 24 | fi 25 | 26 | yarn run changelog:unreleased 27 | 28 | # Only update the package.json version 29 | # We need to update changelog before tagging 30 | # And publishing. 31 | yarn version --no-git-tag-version 32 | 33 | if ! yarn run changelog; then 34 | echo "Failed to update changelog, aborting..." 35 | exit 1 36 | fi 37 | 38 | readonly PACKAGE_VERSION=$(< package.json grep version \ 39 | | head -1 \ 40 | | awk -F: '{ print $2 }' \ 41 | | sed 's/[",]//g' \ 42 | | tr -d '[:space:]') 43 | 44 | 45 | git checkout -b "chore/release-$PACKAGE_VERSION" 46 | 47 | # Gives user a chance to review and eventually abort. 48 | git add --patch 49 | 50 | git commit --message="chore(release): v$PACKAGE_VERSION" 51 | 52 | git push origin HEAD 53 | 54 | echo "Your release branch 'chore/release-$PACKAGE_VERSION' is now ready for review..." 55 | 56 | git open > /dev/null 2>&1 || echo "Install https://github.com/paulirish/git-open so that next times it opens the browser at the repository URL." 57 | -------------------------------------------------------------------------------- /createSerializer.js: -------------------------------------------------------------------------------- 1 | var toDiffableHtml = require('diffable-html'); 2 | 3 | module.exports = function (options = {}) { 4 | return { 5 | test(object) { 6 | if (typeof object !== 'string') { 7 | return false; 8 | } 9 | 10 | const trimmed = object.trim(); 11 | return ( 12 | trimmed.length > 2 && 13 | trimmed[0] === '<' && 14 | trimmed[trimmed.length - 1] === '>' 15 | ); 16 | }, 17 | print(val) { 18 | return toDiffableHtml(val, options.print).trim(); 19 | }, 20 | }; 21 | }; 22 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | var createSerializer = require('./createSerializer'); 2 | 3 | module.exports = createSerializer(); 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jest-serializer-html", 3 | "version": "7.1.0", 4 | "description": "Jest snapshot serializer that beautifies HTML.", 5 | "main": "index.js", 6 | "author": "Raymond RUTJES (https://github.com/rayrutjes/)", 7 | "license": "MIT", 8 | "scripts": { 9 | "test": "jest --verbose", 10 | "test:update": "jest --verbose --updateSnapshot", 11 | "changelog": "conventional-changelog --preset angular --infile CHANGELOG.md --same-file", 12 | "changelog:unreleased": "conventional-changelog --preset angular --output-unreleased" 13 | }, 14 | "files": [ 15 | "index.js", 16 | "createSerializer.js" 17 | ], 18 | "repository": { 19 | "type": "git", 20 | "url": "git+https://github.com/rayrutjes/jest-serializer-html.git" 21 | }, 22 | "keywords": [ 23 | "jest", 24 | "snapshot", 25 | "serializer", 26 | "html", 27 | "snapshotSerializer", 28 | "string", 29 | "vue", 30 | "vue.js", 31 | "test", 32 | "beautifier", 33 | "js-beautify" 34 | ], 35 | "bugs": { 36 | "url": "https://github.com/rayrutjes/jest-serializer-html/issues" 37 | }, 38 | "homepage": "https://github.com/rayrutjes/jest-serializer-html#readme", 39 | "dependencies": { 40 | "diffable-html": "^4.1.0" 41 | }, 42 | "devDependencies": { 43 | "conventional-changelog-cli": "^1.3.4", 44 | "jest": "^19.0.2" 45 | }, 46 | "jest": { 47 | "snapshotSerializers": [ 48 | "./index.js" 49 | ] 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | JSONStream@^1.0.4: 6 | version "1.3.2" 7 | resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.2.tgz#c102371b6ec3a7cf3b847ca00c20bb0fce4c6dea" 8 | dependencies: 9 | jsonparse "^1.2.0" 10 | through ">=2.2.7 <3" 11 | 12 | abab@^1.0.3: 13 | version "1.0.4" 14 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.4.tgz#5faad9c2c07f60dd76770f71cf025b62a63cfd4e" 15 | 16 | acorn-globals@^3.1.0: 17 | version "3.1.0" 18 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" 19 | dependencies: 20 | acorn "^4.0.4" 21 | 22 | acorn@^4.0.4: 23 | version "4.0.13" 24 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 25 | 26 | add-stream@^1.0.0: 27 | version "1.0.0" 28 | resolved "https://registry.yarnpkg.com/add-stream/-/add-stream-1.0.0.tgz#6a7990437ca736d5e1288db92bd3266d5f5cb2aa" 29 | 30 | ajv@^5.1.0: 31 | version "5.5.2" 32 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 33 | dependencies: 34 | co "^4.6.0" 35 | fast-deep-equal "^1.0.0" 36 | fast-json-stable-stringify "^2.0.0" 37 | json-schema-traverse "^0.3.0" 38 | 39 | align-text@^0.1.1, align-text@^0.1.3: 40 | version "0.1.4" 41 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 42 | dependencies: 43 | kind-of "^3.0.2" 44 | longest "^1.0.1" 45 | repeat-string "^1.5.2" 46 | 47 | amdefine@>=0.0.4: 48 | version "1.0.1" 49 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 50 | 51 | ansi-escapes@^1.4.0: 52 | version "1.4.0" 53 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 54 | 55 | ansi-regex@^2.0.0: 56 | version "2.1.1" 57 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 58 | 59 | ansi-styles@^2.2.1: 60 | version "2.2.1" 61 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 62 | 63 | ansi-styles@^3.0.0: 64 | version "3.2.0" 65 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 66 | dependencies: 67 | color-convert "^1.9.0" 68 | 69 | anymatch@^1.3.0: 70 | version "1.3.2" 71 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 72 | dependencies: 73 | micromatch "^2.1.5" 74 | normalize-path "^2.0.0" 75 | 76 | append-transform@^0.4.0: 77 | version "0.4.0" 78 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 79 | dependencies: 80 | default-require-extensions "^1.0.0" 81 | 82 | argparse@^1.0.7: 83 | version "1.0.9" 84 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 85 | dependencies: 86 | sprintf-js "~1.0.2" 87 | 88 | arr-diff@^2.0.0: 89 | version "2.0.0" 90 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 91 | dependencies: 92 | arr-flatten "^1.0.1" 93 | 94 | arr-flatten@^1.0.1: 95 | version "1.1.0" 96 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 97 | 98 | array-equal@^1.0.0: 99 | version "1.0.0" 100 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 101 | 102 | array-find-index@^1.0.1: 103 | version "1.0.2" 104 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 105 | 106 | array-ify@^1.0.0: 107 | version "1.0.0" 108 | resolved "https://registry.yarnpkg.com/array-ify/-/array-ify-1.0.0.tgz#9e528762b4a9066ad163a6962a364418e9626ece" 109 | 110 | array-unique@^0.2.1: 111 | version "0.2.1" 112 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 113 | 114 | arrify@^1.0.1: 115 | version "1.0.1" 116 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 117 | 118 | asn1@~0.2.3: 119 | version "0.2.3" 120 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 121 | 122 | assert-plus@1.0.0, assert-plus@^1.0.0: 123 | version "1.0.0" 124 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 125 | 126 | async@^1.4.0: 127 | version "1.5.2" 128 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 129 | 130 | async@^2.1.4: 131 | version "2.6.0" 132 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.0.tgz#61a29abb6fcc026fea77e56d1c6ec53a795951f4" 133 | dependencies: 134 | lodash "^4.14.0" 135 | 136 | asynckit@^0.4.0: 137 | version "0.4.0" 138 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 139 | 140 | aws-sign2@~0.7.0: 141 | version "0.7.0" 142 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 143 | 144 | aws4@^1.6.0: 145 | version "1.6.0" 146 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 147 | 148 | babel-code-frame@^6.26.0: 149 | version "6.26.0" 150 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 151 | dependencies: 152 | chalk "^1.1.3" 153 | esutils "^2.0.2" 154 | js-tokens "^3.0.2" 155 | 156 | babel-core@^6.0.0, babel-core@^6.26.0: 157 | version "6.26.0" 158 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 159 | dependencies: 160 | babel-code-frame "^6.26.0" 161 | babel-generator "^6.26.0" 162 | babel-helpers "^6.24.1" 163 | babel-messages "^6.23.0" 164 | babel-register "^6.26.0" 165 | babel-runtime "^6.26.0" 166 | babel-template "^6.26.0" 167 | babel-traverse "^6.26.0" 168 | babel-types "^6.26.0" 169 | babylon "^6.18.0" 170 | convert-source-map "^1.5.0" 171 | debug "^2.6.8" 172 | json5 "^0.5.1" 173 | lodash "^4.17.4" 174 | minimatch "^3.0.4" 175 | path-is-absolute "^1.0.1" 176 | private "^0.1.7" 177 | slash "^1.0.0" 178 | source-map "^0.5.6" 179 | 180 | babel-generator@^6.18.0, babel-generator@^6.26.0: 181 | version "6.26.0" 182 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" 183 | dependencies: 184 | babel-messages "^6.23.0" 185 | babel-runtime "^6.26.0" 186 | babel-types "^6.26.0" 187 | detect-indent "^4.0.0" 188 | jsesc "^1.3.0" 189 | lodash "^4.17.4" 190 | source-map "^0.5.6" 191 | trim-right "^1.0.1" 192 | 193 | babel-helpers@^6.24.1: 194 | version "6.24.1" 195 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 196 | dependencies: 197 | babel-runtime "^6.22.0" 198 | babel-template "^6.24.1" 199 | 200 | babel-jest@^19.0.0: 201 | version "19.0.0" 202 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-19.0.0.tgz#59323ced99a3a84d359da219ca881074ffc6ce3f" 203 | dependencies: 204 | babel-core "^6.0.0" 205 | babel-plugin-istanbul "^4.0.0" 206 | babel-preset-jest "^19.0.0" 207 | 208 | babel-messages@^6.23.0: 209 | version "6.23.0" 210 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 211 | dependencies: 212 | babel-runtime "^6.22.0" 213 | 214 | babel-plugin-istanbul@^4.0.0: 215 | version "4.1.5" 216 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.5.tgz#6760cdd977f411d3e175bb064f2bc327d99b2b6e" 217 | dependencies: 218 | find-up "^2.1.0" 219 | istanbul-lib-instrument "^1.7.5" 220 | test-exclude "^4.1.1" 221 | 222 | babel-plugin-jest-hoist@^19.0.0: 223 | version "19.0.0" 224 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-19.0.0.tgz#4ae2a04ea612a6e73651f3fde52c178991304bea" 225 | 226 | babel-preset-jest@^19.0.0: 227 | version "19.0.0" 228 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-19.0.0.tgz#22d67201d02324a195811288eb38294bb3cac396" 229 | dependencies: 230 | babel-plugin-jest-hoist "^19.0.0" 231 | 232 | babel-register@^6.26.0: 233 | version "6.26.0" 234 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 235 | dependencies: 236 | babel-core "^6.26.0" 237 | babel-runtime "^6.26.0" 238 | core-js "^2.5.0" 239 | home-or-tmp "^2.0.0" 240 | lodash "^4.17.4" 241 | mkdirp "^0.5.1" 242 | source-map-support "^0.4.15" 243 | 244 | babel-runtime@^6.22.0, babel-runtime@^6.26.0: 245 | version "6.26.0" 246 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 247 | dependencies: 248 | core-js "^2.4.0" 249 | regenerator-runtime "^0.11.0" 250 | 251 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0: 252 | version "6.26.0" 253 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 254 | dependencies: 255 | babel-runtime "^6.26.0" 256 | babel-traverse "^6.26.0" 257 | babel-types "^6.26.0" 258 | babylon "^6.18.0" 259 | lodash "^4.17.4" 260 | 261 | babel-traverse@^6.18.0, babel-traverse@^6.26.0: 262 | version "6.26.0" 263 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 264 | dependencies: 265 | babel-code-frame "^6.26.0" 266 | babel-messages "^6.23.0" 267 | babel-runtime "^6.26.0" 268 | babel-types "^6.26.0" 269 | babylon "^6.18.0" 270 | debug "^2.6.8" 271 | globals "^9.18.0" 272 | invariant "^2.2.2" 273 | lodash "^4.17.4" 274 | 275 | babel-types@^6.18.0, babel-types@^6.26.0: 276 | version "6.26.0" 277 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 278 | dependencies: 279 | babel-runtime "^6.26.0" 280 | esutils "^2.0.2" 281 | lodash "^4.17.4" 282 | to-fast-properties "^1.0.3" 283 | 284 | babylon@^6.18.0: 285 | version "6.18.0" 286 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 287 | 288 | balanced-match@^1.0.0: 289 | version "1.0.0" 290 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 291 | 292 | bcrypt-pbkdf@^1.0.0: 293 | version "1.0.1" 294 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 295 | dependencies: 296 | tweetnacl "^0.14.3" 297 | 298 | boom@4.x.x: 299 | version "4.3.1" 300 | resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31" 301 | dependencies: 302 | hoek "4.x.x" 303 | 304 | boom@5.x.x: 305 | version "5.2.0" 306 | resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02" 307 | dependencies: 308 | hoek "4.x.x" 309 | 310 | brace-expansion@^1.1.7: 311 | version "1.1.8" 312 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 313 | dependencies: 314 | balanced-match "^1.0.0" 315 | concat-map "0.0.1" 316 | 317 | braces@^1.8.2: 318 | version "1.8.5" 319 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 320 | dependencies: 321 | expand-range "^1.8.1" 322 | preserve "^0.2.0" 323 | repeat-element "^1.1.2" 324 | 325 | browser-resolve@^1.11.2: 326 | version "1.11.2" 327 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 328 | dependencies: 329 | resolve "1.1.7" 330 | 331 | bser@1.0.2: 332 | version "1.0.2" 333 | resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" 334 | dependencies: 335 | node-int64 "^0.4.0" 336 | 337 | bser@^2.0.0: 338 | version "2.0.0" 339 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 340 | dependencies: 341 | node-int64 "^0.4.0" 342 | 343 | builtin-modules@^1.0.0: 344 | version "1.1.1" 345 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 346 | 347 | callsites@^2.0.0: 348 | version "2.0.0" 349 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 350 | 351 | camelcase-keys@^2.0.0: 352 | version "2.1.0" 353 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 354 | dependencies: 355 | camelcase "^2.0.0" 356 | map-obj "^1.0.0" 357 | 358 | camelcase@^1.0.2: 359 | version "1.2.1" 360 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 361 | 362 | camelcase@^2.0.0: 363 | version "2.1.1" 364 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 365 | 366 | camelcase@^3.0.0: 367 | version "3.0.0" 368 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 369 | 370 | caseless@~0.12.0: 371 | version "0.12.0" 372 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 373 | 374 | center-align@^0.1.1: 375 | version "0.1.3" 376 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 377 | dependencies: 378 | align-text "^0.1.3" 379 | lazy-cache "^1.0.3" 380 | 381 | chalk@^1.1.1, chalk@^1.1.3: 382 | version "1.1.3" 383 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 384 | dependencies: 385 | ansi-styles "^2.2.1" 386 | escape-string-regexp "^1.0.2" 387 | has-ansi "^2.0.0" 388 | strip-ansi "^3.0.0" 389 | supports-color "^2.0.0" 390 | 391 | ci-info@^1.0.0: 392 | version "1.1.2" 393 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.2.tgz#03561259db48d0474c8bdc90f5b47b068b6bbfb4" 394 | 395 | cliui@^2.1.0: 396 | version "2.1.0" 397 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 398 | dependencies: 399 | center-align "^0.1.1" 400 | right-align "^0.1.1" 401 | wordwrap "0.0.2" 402 | 403 | cliui@^3.2.0: 404 | version "3.2.0" 405 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 406 | dependencies: 407 | string-width "^1.0.1" 408 | strip-ansi "^3.0.1" 409 | wrap-ansi "^2.0.0" 410 | 411 | co@^4.6.0: 412 | version "4.6.0" 413 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 414 | 415 | code-point-at@^1.0.0: 416 | version "1.1.0" 417 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 418 | 419 | color-convert@^1.9.0: 420 | version "1.9.1" 421 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" 422 | dependencies: 423 | color-name "^1.1.1" 424 | 425 | color-name@^1.1.1: 426 | version "1.1.3" 427 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 428 | 429 | combined-stream@^1.0.5, combined-stream@~1.0.5: 430 | version "1.0.5" 431 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 432 | dependencies: 433 | delayed-stream "~1.0.0" 434 | 435 | compare-func@^1.3.1: 436 | version "1.3.2" 437 | resolved "https://registry.yarnpkg.com/compare-func/-/compare-func-1.3.2.tgz#99dd0ba457e1f9bc722b12c08ec33eeab31fa648" 438 | dependencies: 439 | array-ify "^1.0.0" 440 | dot-prop "^3.0.0" 441 | 442 | concat-map@0.0.1: 443 | version "0.0.1" 444 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 445 | 446 | content-type-parser@^1.0.1: 447 | version "1.0.2" 448 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.2.tgz#caabe80623e63638b2502fd4c7f12ff4ce2352e7" 449 | 450 | conventional-changelog-angular@^1.5.2: 451 | version "1.6.0" 452 | resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-1.6.0.tgz#0a26a071f2c9fcfcf2b86ba0cfbf6e6301b75bfa" 453 | dependencies: 454 | compare-func "^1.3.1" 455 | q "^1.4.1" 456 | 457 | conventional-changelog-atom@^0.1.2: 458 | version "0.1.2" 459 | resolved "https://registry.yarnpkg.com/conventional-changelog-atom/-/conventional-changelog-atom-0.1.2.tgz#12595ad5267a6937c34cf900281b1c65198a4c63" 460 | dependencies: 461 | q "^1.4.1" 462 | 463 | conventional-changelog-cli@^1.3.4: 464 | version "1.3.5" 465 | resolved "https://registry.yarnpkg.com/conventional-changelog-cli/-/conventional-changelog-cli-1.3.5.tgz#46c51496216b7406588883defa6fac589e9bb31e" 466 | dependencies: 467 | add-stream "^1.0.0" 468 | conventional-changelog "^1.1.7" 469 | lodash "^4.1.0" 470 | meow "^3.7.0" 471 | tempfile "^1.1.1" 472 | 473 | conventional-changelog-codemirror@^0.2.1: 474 | version "0.2.1" 475 | resolved "https://registry.yarnpkg.com/conventional-changelog-codemirror/-/conventional-changelog-codemirror-0.2.1.tgz#299a4f7147baf350e6c8158fc54954a291c5cc09" 476 | dependencies: 477 | q "^1.4.1" 478 | 479 | conventional-changelog-core@^1.9.3: 480 | version "1.9.5" 481 | resolved "https://registry.yarnpkg.com/conventional-changelog-core/-/conventional-changelog-core-1.9.5.tgz#5db7566dad7c0cb75daf47fbb2976f7bf9928c1d" 482 | dependencies: 483 | conventional-changelog-writer "^2.0.3" 484 | conventional-commits-parser "^2.1.0" 485 | dateformat "^1.0.12" 486 | get-pkg-repo "^1.0.0" 487 | git-raw-commits "^1.3.0" 488 | git-remote-origin-url "^2.0.0" 489 | git-semver-tags "^1.2.3" 490 | lodash "^4.0.0" 491 | normalize-package-data "^2.3.5" 492 | q "^1.4.1" 493 | read-pkg "^1.1.0" 494 | read-pkg-up "^1.0.1" 495 | through2 "^2.0.0" 496 | 497 | conventional-changelog-ember@^0.2.9: 498 | version "0.2.10" 499 | resolved "https://registry.yarnpkg.com/conventional-changelog-ember/-/conventional-changelog-ember-0.2.10.tgz#dcd6e4cdc2e6c2b58653cf4d2cb1656a60421929" 500 | dependencies: 501 | q "^1.4.1" 502 | 503 | conventional-changelog-eslint@^0.2.1: 504 | version "0.2.1" 505 | resolved "https://registry.yarnpkg.com/conventional-changelog-eslint/-/conventional-changelog-eslint-0.2.1.tgz#2c2a11beb216f80649ba72834180293b687c0662" 506 | dependencies: 507 | q "^1.4.1" 508 | 509 | conventional-changelog-express@^0.2.1: 510 | version "0.2.1" 511 | resolved "https://registry.yarnpkg.com/conventional-changelog-express/-/conventional-changelog-express-0.2.1.tgz#838d9e1e6c9099703b150b9c19aa2d781742bd6c" 512 | dependencies: 513 | q "^1.4.1" 514 | 515 | conventional-changelog-jquery@^0.1.0: 516 | version "0.1.0" 517 | resolved "https://registry.yarnpkg.com/conventional-changelog-jquery/-/conventional-changelog-jquery-0.1.0.tgz#0208397162e3846986e71273b6c79c5b5f80f510" 518 | dependencies: 519 | q "^1.4.1" 520 | 521 | conventional-changelog-jscs@^0.1.0: 522 | version "0.1.0" 523 | resolved "https://registry.yarnpkg.com/conventional-changelog-jscs/-/conventional-changelog-jscs-0.1.0.tgz#0479eb443cc7d72c58bf0bcf0ef1d444a92f0e5c" 524 | dependencies: 525 | q "^1.4.1" 526 | 527 | conventional-changelog-jshint@^0.2.1: 528 | version "0.2.1" 529 | resolved "https://registry.yarnpkg.com/conventional-changelog-jshint/-/conventional-changelog-jshint-0.2.1.tgz#86139bb3ac99899f2b177e9617e09b37d99bcf3a" 530 | dependencies: 531 | compare-func "^1.3.1" 532 | q "^1.4.1" 533 | 534 | conventional-changelog-writer@^2.0.3: 535 | version "2.0.3" 536 | resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-2.0.3.tgz#073b0c39f1cc8fc0fd9b1566e93833f51489c81c" 537 | dependencies: 538 | compare-func "^1.3.1" 539 | conventional-commits-filter "^1.1.1" 540 | dateformat "^1.0.11" 541 | handlebars "^4.0.2" 542 | json-stringify-safe "^5.0.1" 543 | lodash "^4.0.0" 544 | meow "^3.3.0" 545 | semver "^5.0.1" 546 | split "^1.0.0" 547 | through2 "^2.0.0" 548 | 549 | conventional-changelog@^1.1.7: 550 | version "1.1.7" 551 | resolved "https://registry.yarnpkg.com/conventional-changelog/-/conventional-changelog-1.1.7.tgz#9151a62b1d8edb2d82711dabf5b7cf71041f82b1" 552 | dependencies: 553 | conventional-changelog-angular "^1.5.2" 554 | conventional-changelog-atom "^0.1.2" 555 | conventional-changelog-codemirror "^0.2.1" 556 | conventional-changelog-core "^1.9.3" 557 | conventional-changelog-ember "^0.2.9" 558 | conventional-changelog-eslint "^0.2.1" 559 | conventional-changelog-express "^0.2.1" 560 | conventional-changelog-jquery "^0.1.0" 561 | conventional-changelog-jscs "^0.1.0" 562 | conventional-changelog-jshint "^0.2.1" 563 | 564 | conventional-commits-filter@^1.1.1: 565 | version "1.1.1" 566 | resolved "https://registry.yarnpkg.com/conventional-commits-filter/-/conventional-commits-filter-1.1.1.tgz#72172319c0c88328a015b30686b55527b3a5e54a" 567 | dependencies: 568 | is-subset "^0.1.1" 569 | modify-values "^1.0.0" 570 | 571 | conventional-commits-parser@^2.1.0: 572 | version "2.1.0" 573 | resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-2.1.0.tgz#9b4b7c91124bf2a1a9a2cc1c72760d382cbbb229" 574 | dependencies: 575 | JSONStream "^1.0.4" 576 | is-text-path "^1.0.0" 577 | lodash "^4.2.1" 578 | meow "^3.3.0" 579 | split2 "^2.0.0" 580 | through2 "^2.0.0" 581 | trim-off-newlines "^1.0.0" 582 | 583 | convert-source-map@^1.5.0: 584 | version "1.5.1" 585 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 586 | 587 | core-js@^2.4.0, core-js@^2.5.0: 588 | version "2.5.3" 589 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.3.tgz#8acc38345824f16d8365b7c9b4259168e8ed603e" 590 | 591 | core-util-is@1.0.2, core-util-is@~1.0.0: 592 | version "1.0.2" 593 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 594 | 595 | cryptiles@3.x.x: 596 | version "3.1.2" 597 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe" 598 | dependencies: 599 | boom "5.x.x" 600 | 601 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 602 | version "0.3.2" 603 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 604 | 605 | "cssstyle@>= 0.2.37 < 0.3.0": 606 | version "0.2.37" 607 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 608 | dependencies: 609 | cssom "0.3.x" 610 | 611 | currently-unhandled@^0.4.1: 612 | version "0.4.1" 613 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 614 | dependencies: 615 | array-find-index "^1.0.1" 616 | 617 | dargs@^4.0.1: 618 | version "4.1.0" 619 | resolved "https://registry.yarnpkg.com/dargs/-/dargs-4.1.0.tgz#03a9dbb4b5c2f139bf14ae53f0b8a2a6a86f4e17" 620 | dependencies: 621 | number-is-nan "^1.0.0" 622 | 623 | dashdash@^1.12.0: 624 | version "1.14.1" 625 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 626 | dependencies: 627 | assert-plus "^1.0.0" 628 | 629 | dateformat@^1.0.11, dateformat@^1.0.12: 630 | version "1.0.12" 631 | resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-1.0.12.tgz#9f124b67594c937ff706932e4a642cca8dbbfee9" 632 | dependencies: 633 | get-stdin "^4.0.1" 634 | meow "^3.3.0" 635 | 636 | debug@^2.6.8: 637 | version "2.6.9" 638 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 639 | dependencies: 640 | ms "2.0.0" 641 | 642 | debug@^3.1.0: 643 | version "3.1.0" 644 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 645 | dependencies: 646 | ms "2.0.0" 647 | 648 | decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: 649 | version "1.2.0" 650 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 651 | 652 | deep-is@~0.1.3: 653 | version "0.1.3" 654 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 655 | 656 | default-require-extensions@^1.0.0: 657 | version "1.0.0" 658 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 659 | dependencies: 660 | strip-bom "^2.0.0" 661 | 662 | delayed-stream@~1.0.0: 663 | version "1.0.0" 664 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 665 | 666 | detect-indent@^4.0.0: 667 | version "4.0.0" 668 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 669 | dependencies: 670 | repeating "^2.0.0" 671 | 672 | diff@^3.0.0: 673 | version "3.4.0" 674 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.4.0.tgz#b1d85507daf3964828de54b37d0d73ba67dda56c" 675 | 676 | diffable-html@^4.1.0: 677 | version "4.1.0" 678 | resolved "https://registry.yarnpkg.com/diffable-html/-/diffable-html-4.1.0.tgz#e7a2d1de187c4e23a59751b4e4c17483a058c696" 679 | integrity sha512-++kyNek+YBLH8cLXS+iTj/Hiy2s5qkRJEJ8kgu/WHbFrVY2vz9xPFUT+fii2zGF0m1CaojDlQJjkfrCt7YWM1g== 680 | dependencies: 681 | htmlparser2 "^3.9.2" 682 | 683 | dom-serializer@0: 684 | version "0.1.0" 685 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82" 686 | dependencies: 687 | domelementtype "~1.1.1" 688 | entities "~1.1.1" 689 | 690 | domelementtype@1, domelementtype@^1.3.0: 691 | version "1.3.0" 692 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.0.tgz#b17aed82e8ab59e52dd9c19b1756e0fc187204c2" 693 | 694 | domelementtype@~1.1.1: 695 | version "1.1.3" 696 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.1.3.tgz#bd28773e2642881aec51544924299c5cd822185b" 697 | 698 | domhandler@^2.3.0: 699 | version "2.4.1" 700 | resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.4.1.tgz#892e47000a99be55bbf3774ffea0561d8879c259" 701 | dependencies: 702 | domelementtype "1" 703 | 704 | domutils@^1.5.1: 705 | version "1.6.2" 706 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.6.2.tgz#1958cc0b4c9426e9ed367fb1c8e854891b0fa3ff" 707 | dependencies: 708 | dom-serializer "0" 709 | domelementtype "1" 710 | 711 | dot-prop@^3.0.0: 712 | version "3.0.0" 713 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-3.0.0.tgz#1b708af094a49c9a0e7dbcad790aba539dac1177" 714 | dependencies: 715 | is-obj "^1.0.0" 716 | 717 | ecc-jsbn@~0.1.1: 718 | version "0.1.1" 719 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 720 | dependencies: 721 | jsbn "~0.1.0" 722 | 723 | entities@^1.1.1, entities@~1.1.1: 724 | version "1.1.1" 725 | resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0" 726 | 727 | errno@^0.1.4: 728 | version "0.1.6" 729 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.6.tgz#c386ce8a6283f14fc09563b71560908c9bf53026" 730 | dependencies: 731 | prr "~1.0.1" 732 | 733 | error-ex@^1.2.0: 734 | version "1.3.1" 735 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 736 | dependencies: 737 | is-arrayish "^0.2.1" 738 | 739 | escape-string-regexp@^1.0.2: 740 | version "1.0.5" 741 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 742 | 743 | escodegen@^1.6.1: 744 | version "1.9.0" 745 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.9.0.tgz#9811a2f265dc1cd3894420ee3717064b632b8852" 746 | dependencies: 747 | esprima "^3.1.3" 748 | estraverse "^4.2.0" 749 | esutils "^2.0.2" 750 | optionator "^0.8.1" 751 | optionalDependencies: 752 | source-map "~0.5.6" 753 | 754 | esprima@^3.1.3: 755 | version "3.1.3" 756 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 757 | 758 | esprima@^4.0.0: 759 | version "4.0.0" 760 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 761 | 762 | estraverse@^4.2.0: 763 | version "4.2.0" 764 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 765 | 766 | esutils@^2.0.2: 767 | version "2.0.2" 768 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 769 | 770 | exec-sh@^0.2.0: 771 | version "0.2.1" 772 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.1.tgz#163b98a6e89e6b65b47c2a28d215bc1f63989c38" 773 | dependencies: 774 | merge "^1.1.3" 775 | 776 | expand-brackets@^0.1.4: 777 | version "0.1.5" 778 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 779 | dependencies: 780 | is-posix-bracket "^0.1.0" 781 | 782 | expand-range@^1.8.1: 783 | version "1.8.2" 784 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 785 | dependencies: 786 | fill-range "^2.1.0" 787 | 788 | extend@~3.0.1: 789 | version "3.0.1" 790 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 791 | 792 | extglob@^0.3.1: 793 | version "0.3.2" 794 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 795 | dependencies: 796 | is-extglob "^1.0.0" 797 | 798 | extsprintf@1.3.0: 799 | version "1.3.0" 800 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 801 | 802 | extsprintf@^1.2.0: 803 | version "1.4.0" 804 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 805 | 806 | fast-deep-equal@^1.0.0: 807 | version "1.0.0" 808 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 809 | 810 | fast-json-stable-stringify@^2.0.0: 811 | version "2.0.0" 812 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 813 | 814 | fast-levenshtein@~2.0.4: 815 | version "2.0.6" 816 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 817 | 818 | fb-watchman@^1.8.0: 819 | version "1.9.2" 820 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-1.9.2.tgz#a24cf47827f82d38fb59a69ad70b76e3b6ae7383" 821 | dependencies: 822 | bser "1.0.2" 823 | 824 | fb-watchman@^2.0.0: 825 | version "2.0.0" 826 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 827 | dependencies: 828 | bser "^2.0.0" 829 | 830 | filename-regex@^2.0.0: 831 | version "2.0.1" 832 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 833 | 834 | fileset@^2.0.2: 835 | version "2.0.3" 836 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 837 | dependencies: 838 | glob "^7.0.3" 839 | minimatch "^3.0.3" 840 | 841 | fill-range@^2.1.0: 842 | version "2.2.3" 843 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 844 | dependencies: 845 | is-number "^2.1.0" 846 | isobject "^2.0.0" 847 | randomatic "^1.1.3" 848 | repeat-element "^1.1.2" 849 | repeat-string "^1.5.2" 850 | 851 | find-up@^1.0.0: 852 | version "1.1.2" 853 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 854 | dependencies: 855 | path-exists "^2.0.0" 856 | pinkie-promise "^2.0.0" 857 | 858 | find-up@^2.1.0: 859 | version "2.1.0" 860 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 861 | dependencies: 862 | locate-path "^2.0.0" 863 | 864 | for-in@^1.0.1: 865 | version "1.0.2" 866 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 867 | 868 | for-own@^0.1.4: 869 | version "0.1.5" 870 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 871 | dependencies: 872 | for-in "^1.0.1" 873 | 874 | forever-agent@~0.6.1: 875 | version "0.6.1" 876 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 877 | 878 | form-data@~2.3.1: 879 | version "2.3.1" 880 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.1.tgz#6fb94fbd71885306d73d15cc497fe4cc4ecd44bf" 881 | dependencies: 882 | asynckit "^0.4.0" 883 | combined-stream "^1.0.5" 884 | mime-types "^2.1.12" 885 | 886 | fs.realpath@^1.0.0: 887 | version "1.0.0" 888 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 889 | 890 | get-caller-file@^1.0.1: 891 | version "1.0.2" 892 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 893 | 894 | get-pkg-repo@^1.0.0: 895 | version "1.4.0" 896 | resolved "https://registry.yarnpkg.com/get-pkg-repo/-/get-pkg-repo-1.4.0.tgz#c73b489c06d80cc5536c2c853f9e05232056972d" 897 | dependencies: 898 | hosted-git-info "^2.1.4" 899 | meow "^3.3.0" 900 | normalize-package-data "^2.3.0" 901 | parse-github-repo-url "^1.3.0" 902 | through2 "^2.0.0" 903 | 904 | get-stdin@^4.0.1: 905 | version "4.0.1" 906 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 907 | 908 | getpass@^0.1.1: 909 | version "0.1.7" 910 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 911 | dependencies: 912 | assert-plus "^1.0.0" 913 | 914 | git-raw-commits@^1.3.0: 915 | version "1.3.0" 916 | resolved "https://registry.yarnpkg.com/git-raw-commits/-/git-raw-commits-1.3.0.tgz#0bc8596e90d5ffe736f7f5546bd2d12f73abaac6" 917 | dependencies: 918 | dargs "^4.0.1" 919 | lodash.template "^4.0.2" 920 | meow "^3.3.0" 921 | split2 "^2.0.0" 922 | through2 "^2.0.0" 923 | 924 | git-remote-origin-url@^2.0.0: 925 | version "2.0.0" 926 | resolved "https://registry.yarnpkg.com/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz#5282659dae2107145a11126112ad3216ec5fa65f" 927 | dependencies: 928 | gitconfiglocal "^1.0.0" 929 | pify "^2.3.0" 930 | 931 | git-semver-tags@^1.2.3: 932 | version "1.2.3" 933 | resolved "https://registry.yarnpkg.com/git-semver-tags/-/git-semver-tags-1.2.3.tgz#188b453882bf9d7a23afd31baba537dab7388d5d" 934 | dependencies: 935 | meow "^3.3.0" 936 | semver "^5.0.1" 937 | 938 | gitconfiglocal@^1.0.0: 939 | version "1.0.0" 940 | resolved "https://registry.yarnpkg.com/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz#41d045f3851a5ea88f03f24ca1c6178114464b9b" 941 | dependencies: 942 | ini "^1.3.2" 943 | 944 | glob-base@^0.3.0: 945 | version "0.3.0" 946 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 947 | dependencies: 948 | glob-parent "^2.0.0" 949 | is-glob "^2.0.0" 950 | 951 | glob-parent@^2.0.0: 952 | version "2.0.0" 953 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 954 | dependencies: 955 | is-glob "^2.0.0" 956 | 957 | glob@^7.0.3, glob@^7.0.5: 958 | version "7.1.2" 959 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 960 | dependencies: 961 | fs.realpath "^1.0.0" 962 | inflight "^1.0.4" 963 | inherits "2" 964 | minimatch "^3.0.4" 965 | once "^1.3.0" 966 | path-is-absolute "^1.0.0" 967 | 968 | globals@^9.18.0: 969 | version "9.18.0" 970 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 971 | 972 | graceful-fs@^4.1.2, graceful-fs@^4.1.6: 973 | version "4.1.11" 974 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 975 | 976 | growly@^1.3.0: 977 | version "1.3.0" 978 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 979 | 980 | handlebars@^4.0.2, handlebars@^4.0.3: 981 | version "4.0.11" 982 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.11.tgz#630a35dfe0294bc281edae6ffc5d329fc7982dcc" 983 | dependencies: 984 | async "^1.4.0" 985 | optimist "^0.6.1" 986 | source-map "^0.4.4" 987 | optionalDependencies: 988 | uglify-js "^2.6" 989 | 990 | har-schema@^2.0.0: 991 | version "2.0.0" 992 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 993 | 994 | har-validator@~5.0.3: 995 | version "5.0.3" 996 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd" 997 | dependencies: 998 | ajv "^5.1.0" 999 | har-schema "^2.0.0" 1000 | 1001 | has-ansi@^2.0.0: 1002 | version "2.0.0" 1003 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1004 | dependencies: 1005 | ansi-regex "^2.0.0" 1006 | 1007 | has-flag@^1.0.0: 1008 | version "1.0.0" 1009 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1010 | 1011 | hawk@~6.0.2: 1012 | version "6.0.2" 1013 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038" 1014 | dependencies: 1015 | boom "4.x.x" 1016 | cryptiles "3.x.x" 1017 | hoek "4.x.x" 1018 | sntp "2.x.x" 1019 | 1020 | hoek@4.x.x: 1021 | version "4.2.0" 1022 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.0.tgz#72d9d0754f7fe25ca2d01ad8f8f9a9449a89526d" 1023 | 1024 | home-or-tmp@^2.0.0: 1025 | version "2.0.0" 1026 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1027 | dependencies: 1028 | os-homedir "^1.0.0" 1029 | os-tmpdir "^1.0.1" 1030 | 1031 | hosted-git-info@^2.1.4: 1032 | version "2.5.0" 1033 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 1034 | 1035 | html-encoding-sniffer@^1.0.1: 1036 | version "1.0.2" 1037 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8" 1038 | dependencies: 1039 | whatwg-encoding "^1.0.1" 1040 | 1041 | htmlparser2@^3.9.2: 1042 | version "3.9.2" 1043 | resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.9.2.tgz#1bdf87acca0f3f9e53fa4fcceb0f4b4cbb00b338" 1044 | dependencies: 1045 | domelementtype "^1.3.0" 1046 | domhandler "^2.3.0" 1047 | domutils "^1.5.1" 1048 | entities "^1.1.1" 1049 | inherits "^2.0.1" 1050 | readable-stream "^2.0.2" 1051 | 1052 | http-signature@~1.2.0: 1053 | version "1.2.0" 1054 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 1055 | dependencies: 1056 | assert-plus "^1.0.0" 1057 | jsprim "^1.2.2" 1058 | sshpk "^1.7.0" 1059 | 1060 | iconv-lite@0.4.19: 1061 | version "0.4.19" 1062 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 1063 | 1064 | indent-string@^2.1.0: 1065 | version "2.1.0" 1066 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 1067 | dependencies: 1068 | repeating "^2.0.0" 1069 | 1070 | inflight@^1.0.4: 1071 | version "1.0.6" 1072 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1073 | dependencies: 1074 | once "^1.3.0" 1075 | wrappy "1" 1076 | 1077 | inherits@2, inherits@^2.0.1, inherits@~2.0.3: 1078 | version "2.0.3" 1079 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1080 | 1081 | ini@^1.3.2: 1082 | version "1.3.5" 1083 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1084 | 1085 | invariant@^2.2.2: 1086 | version "2.2.2" 1087 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1088 | dependencies: 1089 | loose-envify "^1.0.0" 1090 | 1091 | invert-kv@^1.0.0: 1092 | version "1.0.0" 1093 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1094 | 1095 | is-arrayish@^0.2.1: 1096 | version "0.2.1" 1097 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1098 | 1099 | is-buffer@^1.1.5: 1100 | version "1.1.6" 1101 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1102 | 1103 | is-builtin-module@^1.0.0: 1104 | version "1.0.0" 1105 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1106 | dependencies: 1107 | builtin-modules "^1.0.0" 1108 | 1109 | is-ci@^1.0.9: 1110 | version "1.0.10" 1111 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 1112 | dependencies: 1113 | ci-info "^1.0.0" 1114 | 1115 | is-dotfile@^1.0.0: 1116 | version "1.0.3" 1117 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1118 | 1119 | is-equal-shallow@^0.1.3: 1120 | version "0.1.3" 1121 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1122 | dependencies: 1123 | is-primitive "^2.0.0" 1124 | 1125 | is-extendable@^0.1.1: 1126 | version "0.1.1" 1127 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1128 | 1129 | is-extglob@^1.0.0: 1130 | version "1.0.0" 1131 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1132 | 1133 | is-finite@^1.0.0: 1134 | version "1.0.2" 1135 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1136 | dependencies: 1137 | number-is-nan "^1.0.0" 1138 | 1139 | is-fullwidth-code-point@^1.0.0: 1140 | version "1.0.0" 1141 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1142 | dependencies: 1143 | number-is-nan "^1.0.0" 1144 | 1145 | is-glob@^2.0.0, is-glob@^2.0.1: 1146 | version "2.0.1" 1147 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1148 | dependencies: 1149 | is-extglob "^1.0.0" 1150 | 1151 | is-number@^2.1.0: 1152 | version "2.1.0" 1153 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1154 | dependencies: 1155 | kind-of "^3.0.2" 1156 | 1157 | is-number@^3.0.0: 1158 | version "3.0.0" 1159 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1160 | dependencies: 1161 | kind-of "^3.0.2" 1162 | 1163 | is-obj@^1.0.0: 1164 | version "1.0.1" 1165 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 1166 | 1167 | is-posix-bracket@^0.1.0: 1168 | version "0.1.1" 1169 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1170 | 1171 | is-primitive@^2.0.0: 1172 | version "2.0.0" 1173 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1174 | 1175 | is-subset@^0.1.1: 1176 | version "0.1.1" 1177 | resolved "https://registry.yarnpkg.com/is-subset/-/is-subset-0.1.1.tgz#8a59117d932de1de00f245fcdd39ce43f1e939a6" 1178 | 1179 | is-text-path@^1.0.0: 1180 | version "1.0.1" 1181 | resolved "https://registry.yarnpkg.com/is-text-path/-/is-text-path-1.0.1.tgz#4e1aa0fb51bfbcb3e92688001397202c1775b66e" 1182 | dependencies: 1183 | text-extensions "^1.0.0" 1184 | 1185 | is-typedarray@~1.0.0: 1186 | version "1.0.0" 1187 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1188 | 1189 | is-utf8@^0.2.0: 1190 | version "0.2.1" 1191 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1192 | 1193 | isarray@1.0.0, isarray@~1.0.0: 1194 | version "1.0.0" 1195 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1196 | 1197 | isexe@^2.0.0: 1198 | version "2.0.0" 1199 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1200 | 1201 | isobject@^2.0.0: 1202 | version "2.1.0" 1203 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1204 | dependencies: 1205 | isarray "1.0.0" 1206 | 1207 | isstream@~0.1.2: 1208 | version "0.1.2" 1209 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1210 | 1211 | istanbul-api@^1.1.0-alpha.1: 1212 | version "1.2.1" 1213 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.2.1.tgz#0c60a0515eb11c7d65c6b50bba2c6e999acd8620" 1214 | dependencies: 1215 | async "^2.1.4" 1216 | fileset "^2.0.2" 1217 | istanbul-lib-coverage "^1.1.1" 1218 | istanbul-lib-hook "^1.1.0" 1219 | istanbul-lib-instrument "^1.9.1" 1220 | istanbul-lib-report "^1.1.2" 1221 | istanbul-lib-source-maps "^1.2.2" 1222 | istanbul-reports "^1.1.3" 1223 | js-yaml "^3.7.0" 1224 | mkdirp "^0.5.1" 1225 | once "^1.4.0" 1226 | 1227 | istanbul-lib-coverage@^1.0.0, istanbul-lib-coverage@^1.1.1: 1228 | version "1.1.1" 1229 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da" 1230 | 1231 | istanbul-lib-hook@^1.1.0: 1232 | version "1.1.0" 1233 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.1.0.tgz#8538d970372cb3716d53e55523dd54b557a8d89b" 1234 | dependencies: 1235 | append-transform "^0.4.0" 1236 | 1237 | istanbul-lib-instrument@^1.1.1, istanbul-lib-instrument@^1.7.5, istanbul-lib-instrument@^1.9.1: 1238 | version "1.9.1" 1239 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.9.1.tgz#250b30b3531e5d3251299fdd64b0b2c9db6b558e" 1240 | dependencies: 1241 | babel-generator "^6.18.0" 1242 | babel-template "^6.16.0" 1243 | babel-traverse "^6.18.0" 1244 | babel-types "^6.18.0" 1245 | babylon "^6.18.0" 1246 | istanbul-lib-coverage "^1.1.1" 1247 | semver "^5.3.0" 1248 | 1249 | istanbul-lib-report@^1.1.2: 1250 | version "1.1.2" 1251 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.2.tgz#922be27c13b9511b979bd1587359f69798c1d425" 1252 | dependencies: 1253 | istanbul-lib-coverage "^1.1.1" 1254 | mkdirp "^0.5.1" 1255 | path-parse "^1.0.5" 1256 | supports-color "^3.1.2" 1257 | 1258 | istanbul-lib-source-maps@^1.2.2: 1259 | version "1.2.2" 1260 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.2.tgz#750578602435f28a0c04ee6d7d9e0f2960e62c1c" 1261 | dependencies: 1262 | debug "^3.1.0" 1263 | istanbul-lib-coverage "^1.1.1" 1264 | mkdirp "^0.5.1" 1265 | rimraf "^2.6.1" 1266 | source-map "^0.5.3" 1267 | 1268 | istanbul-reports@^1.1.3: 1269 | version "1.1.3" 1270 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.3.tgz#3b9e1e8defb6d18b1d425da8e8b32c5a163f2d10" 1271 | dependencies: 1272 | handlebars "^4.0.3" 1273 | 1274 | jest-changed-files@^19.0.2: 1275 | version "19.0.2" 1276 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-19.0.2.tgz#16c54c84c3270be408e06d2e8af3f3e37a885824" 1277 | 1278 | jest-cli@^19.0.2: 1279 | version "19.0.2" 1280 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-19.0.2.tgz#cc3620b62acac5f2d93a548cb6ef697d4ec85443" 1281 | dependencies: 1282 | ansi-escapes "^1.4.0" 1283 | callsites "^2.0.0" 1284 | chalk "^1.1.1" 1285 | graceful-fs "^4.1.6" 1286 | is-ci "^1.0.9" 1287 | istanbul-api "^1.1.0-alpha.1" 1288 | istanbul-lib-coverage "^1.0.0" 1289 | istanbul-lib-instrument "^1.1.1" 1290 | jest-changed-files "^19.0.2" 1291 | jest-config "^19.0.2" 1292 | jest-environment-jsdom "^19.0.2" 1293 | jest-haste-map "^19.0.0" 1294 | jest-jasmine2 "^19.0.2" 1295 | jest-message-util "^19.0.0" 1296 | jest-regex-util "^19.0.0" 1297 | jest-resolve-dependencies "^19.0.0" 1298 | jest-runtime "^19.0.2" 1299 | jest-snapshot "^19.0.2" 1300 | jest-util "^19.0.2" 1301 | micromatch "^2.3.11" 1302 | node-notifier "^5.0.1" 1303 | slash "^1.0.0" 1304 | string-length "^1.0.1" 1305 | throat "^3.0.0" 1306 | which "^1.1.1" 1307 | worker-farm "^1.3.1" 1308 | yargs "^6.3.0" 1309 | 1310 | jest-config@^19.0.2: 1311 | version "19.0.4" 1312 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-19.0.4.tgz#42980211d46417e91ca7abffd086c270234f73fd" 1313 | dependencies: 1314 | chalk "^1.1.1" 1315 | jest-environment-jsdom "^19.0.2" 1316 | jest-environment-node "^19.0.2" 1317 | jest-jasmine2 "^19.0.2" 1318 | jest-regex-util "^19.0.0" 1319 | jest-resolve "^19.0.2" 1320 | jest-validate "^19.0.2" 1321 | pretty-format "^19.0.0" 1322 | 1323 | jest-diff@^19.0.0: 1324 | version "19.0.0" 1325 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-19.0.0.tgz#d1563cfc56c8b60232988fbc05d4d16ed90f063c" 1326 | dependencies: 1327 | chalk "^1.1.3" 1328 | diff "^3.0.0" 1329 | jest-matcher-utils "^19.0.0" 1330 | pretty-format "^19.0.0" 1331 | 1332 | jest-environment-jsdom@^19.0.2: 1333 | version "19.0.2" 1334 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-19.0.2.tgz#ceda859c4a4b94ab35e4de7dab54b926f293e4a3" 1335 | dependencies: 1336 | jest-mock "^19.0.0" 1337 | jest-util "^19.0.2" 1338 | jsdom "^9.11.0" 1339 | 1340 | jest-environment-node@^19.0.2: 1341 | version "19.0.2" 1342 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-19.0.2.tgz#6e84079db87ed21d0c05e1f9669f207b116fe99b" 1343 | dependencies: 1344 | jest-mock "^19.0.0" 1345 | jest-util "^19.0.2" 1346 | 1347 | jest-file-exists@^19.0.0: 1348 | version "19.0.0" 1349 | resolved "https://registry.yarnpkg.com/jest-file-exists/-/jest-file-exists-19.0.0.tgz#cca2e587a11ec92e24cfeab3f8a94d657f3fceb8" 1350 | 1351 | jest-haste-map@^19.0.0: 1352 | version "19.0.2" 1353 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-19.0.2.tgz#286484c3a16e86da7872b0877c35dce30c3d6f07" 1354 | dependencies: 1355 | fb-watchman "^2.0.0" 1356 | graceful-fs "^4.1.6" 1357 | micromatch "^2.3.11" 1358 | sane "~1.5.0" 1359 | worker-farm "^1.3.1" 1360 | 1361 | jest-jasmine2@^19.0.2: 1362 | version "19.0.2" 1363 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-19.0.2.tgz#167991ac825981fb1a800af126e83afcca832c73" 1364 | dependencies: 1365 | graceful-fs "^4.1.6" 1366 | jest-matcher-utils "^19.0.0" 1367 | jest-matchers "^19.0.0" 1368 | jest-message-util "^19.0.0" 1369 | jest-snapshot "^19.0.2" 1370 | 1371 | jest-matcher-utils@^19.0.0: 1372 | version "19.0.0" 1373 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-19.0.0.tgz#5ecd9b63565d2b001f61fbf7ec4c7f537964564d" 1374 | dependencies: 1375 | chalk "^1.1.3" 1376 | pretty-format "^19.0.0" 1377 | 1378 | jest-matchers@^19.0.0: 1379 | version "19.0.0" 1380 | resolved "https://registry.yarnpkg.com/jest-matchers/-/jest-matchers-19.0.0.tgz#c74ecc6ebfec06f384767ba4d6fa4a42d6755754" 1381 | dependencies: 1382 | jest-diff "^19.0.0" 1383 | jest-matcher-utils "^19.0.0" 1384 | jest-message-util "^19.0.0" 1385 | jest-regex-util "^19.0.0" 1386 | 1387 | jest-message-util@^19.0.0: 1388 | version "19.0.0" 1389 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-19.0.0.tgz#721796b89c0e4d761606f9ba8cb828a3b6246416" 1390 | dependencies: 1391 | chalk "^1.1.1" 1392 | micromatch "^2.3.11" 1393 | 1394 | jest-mock@^19.0.0: 1395 | version "19.0.0" 1396 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-19.0.0.tgz#67038641e9607ab2ce08ec4a8cb83aabbc899d01" 1397 | 1398 | jest-regex-util@^19.0.0: 1399 | version "19.0.0" 1400 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-19.0.0.tgz#b7754587112aede1456510bb1f6afe74ef598691" 1401 | 1402 | jest-resolve-dependencies@^19.0.0: 1403 | version "19.0.0" 1404 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-19.0.0.tgz#a741ad1fa094140e64ecf2642a504f834ece22ee" 1405 | dependencies: 1406 | jest-file-exists "^19.0.0" 1407 | 1408 | jest-resolve@^19.0.2: 1409 | version "19.0.2" 1410 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-19.0.2.tgz#5793575de4f07aec32f7d7ff0c6c181963eefb3c" 1411 | dependencies: 1412 | browser-resolve "^1.11.2" 1413 | jest-haste-map "^19.0.0" 1414 | resolve "^1.2.0" 1415 | 1416 | jest-runtime@^19.0.2: 1417 | version "19.0.4" 1418 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-19.0.4.tgz#f167d9f1347752f2027361067926485349fcc245" 1419 | dependencies: 1420 | babel-core "^6.0.0" 1421 | babel-jest "^19.0.0" 1422 | babel-plugin-istanbul "^4.0.0" 1423 | chalk "^1.1.3" 1424 | graceful-fs "^4.1.6" 1425 | jest-config "^19.0.2" 1426 | jest-file-exists "^19.0.0" 1427 | jest-haste-map "^19.0.0" 1428 | jest-regex-util "^19.0.0" 1429 | jest-resolve "^19.0.2" 1430 | jest-util "^19.0.2" 1431 | json-stable-stringify "^1.0.1" 1432 | micromatch "^2.3.11" 1433 | strip-bom "3.0.0" 1434 | yargs "^6.3.0" 1435 | 1436 | jest-snapshot@^19.0.2: 1437 | version "19.0.2" 1438 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-19.0.2.tgz#9c1b216214f7187c38bfd5c70b1efab16b0ff50b" 1439 | dependencies: 1440 | chalk "^1.1.3" 1441 | jest-diff "^19.0.0" 1442 | jest-file-exists "^19.0.0" 1443 | jest-matcher-utils "^19.0.0" 1444 | jest-util "^19.0.2" 1445 | natural-compare "^1.4.0" 1446 | pretty-format "^19.0.0" 1447 | 1448 | jest-util@^19.0.2: 1449 | version "19.0.2" 1450 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-19.0.2.tgz#e0a0232a2ab9e6b2b53668bdb3534c2b5977ed41" 1451 | dependencies: 1452 | chalk "^1.1.1" 1453 | graceful-fs "^4.1.6" 1454 | jest-file-exists "^19.0.0" 1455 | jest-message-util "^19.0.0" 1456 | jest-mock "^19.0.0" 1457 | jest-validate "^19.0.2" 1458 | leven "^2.0.0" 1459 | mkdirp "^0.5.1" 1460 | 1461 | jest-validate@^19.0.2: 1462 | version "19.0.2" 1463 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-19.0.2.tgz#dc534df5f1278d5b63df32b14241d4dbf7244c0c" 1464 | dependencies: 1465 | chalk "^1.1.1" 1466 | jest-matcher-utils "^19.0.0" 1467 | leven "^2.0.0" 1468 | pretty-format "^19.0.0" 1469 | 1470 | jest@^19.0.2: 1471 | version "19.0.2" 1472 | resolved "https://registry.yarnpkg.com/jest/-/jest-19.0.2.tgz#b794faaf8ff461e7388f28beef559a54f20b2c10" 1473 | dependencies: 1474 | jest-cli "^19.0.2" 1475 | 1476 | js-tokens@^3.0.0, js-tokens@^3.0.2: 1477 | version "3.0.2" 1478 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1479 | 1480 | js-yaml@^3.7.0: 1481 | version "3.10.0" 1482 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" 1483 | dependencies: 1484 | argparse "^1.0.7" 1485 | esprima "^4.0.0" 1486 | 1487 | jsbn@~0.1.0: 1488 | version "0.1.1" 1489 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1490 | 1491 | jsdom@^9.11.0: 1492 | version "9.12.0" 1493 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 1494 | dependencies: 1495 | abab "^1.0.3" 1496 | acorn "^4.0.4" 1497 | acorn-globals "^3.1.0" 1498 | array-equal "^1.0.0" 1499 | content-type-parser "^1.0.1" 1500 | cssom ">= 0.3.2 < 0.4.0" 1501 | cssstyle ">= 0.2.37 < 0.3.0" 1502 | escodegen "^1.6.1" 1503 | html-encoding-sniffer "^1.0.1" 1504 | nwmatcher ">= 1.3.9 < 2.0.0" 1505 | parse5 "^1.5.1" 1506 | request "^2.79.0" 1507 | sax "^1.2.1" 1508 | symbol-tree "^3.2.1" 1509 | tough-cookie "^2.3.2" 1510 | webidl-conversions "^4.0.0" 1511 | whatwg-encoding "^1.0.1" 1512 | whatwg-url "^4.3.0" 1513 | xml-name-validator "^2.0.1" 1514 | 1515 | jsesc@^1.3.0: 1516 | version "1.3.0" 1517 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1518 | 1519 | json-schema-traverse@^0.3.0: 1520 | version "0.3.1" 1521 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 1522 | 1523 | json-schema@0.2.3: 1524 | version "0.2.3" 1525 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1526 | 1527 | json-stable-stringify@^1.0.1: 1528 | version "1.0.1" 1529 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1530 | dependencies: 1531 | jsonify "~0.0.0" 1532 | 1533 | json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.1: 1534 | version "5.0.1" 1535 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1536 | 1537 | json5@^0.5.1: 1538 | version "0.5.1" 1539 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1540 | 1541 | jsonify@~0.0.0: 1542 | version "0.0.0" 1543 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1544 | 1545 | jsonparse@^1.2.0: 1546 | version "1.3.1" 1547 | resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" 1548 | 1549 | jsprim@^1.2.2: 1550 | version "1.4.1" 1551 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1552 | dependencies: 1553 | assert-plus "1.0.0" 1554 | extsprintf "1.3.0" 1555 | json-schema "0.2.3" 1556 | verror "1.10.0" 1557 | 1558 | kind-of@^3.0.2: 1559 | version "3.2.2" 1560 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1561 | dependencies: 1562 | is-buffer "^1.1.5" 1563 | 1564 | kind-of@^4.0.0: 1565 | version "4.0.0" 1566 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1567 | dependencies: 1568 | is-buffer "^1.1.5" 1569 | 1570 | lazy-cache@^1.0.3: 1571 | version "1.0.4" 1572 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1573 | 1574 | lcid@^1.0.0: 1575 | version "1.0.0" 1576 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1577 | dependencies: 1578 | invert-kv "^1.0.0" 1579 | 1580 | leven@^2.0.0: 1581 | version "2.1.0" 1582 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 1583 | 1584 | levn@~0.3.0: 1585 | version "0.3.0" 1586 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1587 | dependencies: 1588 | prelude-ls "~1.1.2" 1589 | type-check "~0.3.2" 1590 | 1591 | load-json-file@^1.0.0: 1592 | version "1.1.0" 1593 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1594 | dependencies: 1595 | graceful-fs "^4.1.2" 1596 | parse-json "^2.2.0" 1597 | pify "^2.0.0" 1598 | pinkie-promise "^2.0.0" 1599 | strip-bom "^2.0.0" 1600 | 1601 | locate-path@^2.0.0: 1602 | version "2.0.0" 1603 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1604 | dependencies: 1605 | p-locate "^2.0.0" 1606 | path-exists "^3.0.0" 1607 | 1608 | lodash._reinterpolate@~3.0.0: 1609 | version "3.0.0" 1610 | resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" 1611 | 1612 | lodash.template@^4.0.2: 1613 | version "4.4.0" 1614 | resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.4.0.tgz#e73a0385c8355591746e020b99679c690e68fba0" 1615 | dependencies: 1616 | lodash._reinterpolate "~3.0.0" 1617 | lodash.templatesettings "^4.0.0" 1618 | 1619 | lodash.templatesettings@^4.0.0: 1620 | version "4.1.0" 1621 | resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-4.1.0.tgz#2b4d4e95ba440d915ff08bc899e4553666713316" 1622 | dependencies: 1623 | lodash._reinterpolate "~3.0.0" 1624 | 1625 | lodash@^4.0.0, lodash@^4.1.0, lodash@^4.14.0, lodash@^4.17.4, lodash@^4.2.1: 1626 | version "4.17.4" 1627 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1628 | 1629 | longest@^1.0.1: 1630 | version "1.0.1" 1631 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 1632 | 1633 | loose-envify@^1.0.0: 1634 | version "1.3.1" 1635 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1636 | dependencies: 1637 | js-tokens "^3.0.0" 1638 | 1639 | loud-rejection@^1.0.0: 1640 | version "1.6.0" 1641 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 1642 | dependencies: 1643 | currently-unhandled "^0.4.1" 1644 | signal-exit "^3.0.0" 1645 | 1646 | makeerror@1.0.x: 1647 | version "1.0.11" 1648 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 1649 | dependencies: 1650 | tmpl "1.0.x" 1651 | 1652 | map-obj@^1.0.0, map-obj@^1.0.1: 1653 | version "1.0.1" 1654 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 1655 | 1656 | meow@^3.3.0, meow@^3.7.0: 1657 | version "3.7.0" 1658 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 1659 | dependencies: 1660 | camelcase-keys "^2.0.0" 1661 | decamelize "^1.1.2" 1662 | loud-rejection "^1.0.0" 1663 | map-obj "^1.0.1" 1664 | minimist "^1.1.3" 1665 | normalize-package-data "^2.3.4" 1666 | object-assign "^4.0.1" 1667 | read-pkg-up "^1.0.1" 1668 | redent "^1.0.0" 1669 | trim-newlines "^1.0.0" 1670 | 1671 | merge@^1.1.3: 1672 | version "1.2.0" 1673 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 1674 | 1675 | micromatch@^2.1.5, micromatch@^2.3.11: 1676 | version "2.3.11" 1677 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1678 | dependencies: 1679 | arr-diff "^2.0.0" 1680 | array-unique "^0.2.1" 1681 | braces "^1.8.2" 1682 | expand-brackets "^0.1.4" 1683 | extglob "^0.3.1" 1684 | filename-regex "^2.0.0" 1685 | is-extglob "^1.0.0" 1686 | is-glob "^2.0.1" 1687 | kind-of "^3.0.2" 1688 | normalize-path "^2.0.1" 1689 | object.omit "^2.0.0" 1690 | parse-glob "^3.0.4" 1691 | regex-cache "^0.4.2" 1692 | 1693 | mime-db@~1.30.0: 1694 | version "1.30.0" 1695 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 1696 | 1697 | mime-types@^2.1.12, mime-types@~2.1.17: 1698 | version "2.1.17" 1699 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 1700 | dependencies: 1701 | mime-db "~1.30.0" 1702 | 1703 | minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 1704 | version "3.0.4" 1705 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1706 | dependencies: 1707 | brace-expansion "^1.1.7" 1708 | 1709 | minimist@0.0.8: 1710 | version "0.0.8" 1711 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1712 | 1713 | minimist@^1.1.1, minimist@^1.1.3: 1714 | version "1.2.0" 1715 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1716 | 1717 | minimist@~0.0.1: 1718 | version "0.0.10" 1719 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 1720 | 1721 | mkdirp@^0.5.1: 1722 | version "0.5.1" 1723 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1724 | dependencies: 1725 | minimist "0.0.8" 1726 | 1727 | modify-values@^1.0.0: 1728 | version "1.0.0" 1729 | resolved "https://registry.yarnpkg.com/modify-values/-/modify-values-1.0.0.tgz#e2b6cdeb9ce19f99317a53722f3dbf5df5eaaab2" 1730 | 1731 | ms@2.0.0: 1732 | version "2.0.0" 1733 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1734 | 1735 | natural-compare@^1.4.0: 1736 | version "1.4.0" 1737 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1738 | 1739 | node-int64@^0.4.0: 1740 | version "0.4.0" 1741 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 1742 | 1743 | node-notifier@^5.0.1: 1744 | version "5.1.2" 1745 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" 1746 | dependencies: 1747 | growly "^1.3.0" 1748 | semver "^5.3.0" 1749 | shellwords "^0.1.0" 1750 | which "^1.2.12" 1751 | 1752 | normalize-package-data@^2.3.0, normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, normalize-package-data@^2.3.5: 1753 | version "2.4.0" 1754 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 1755 | dependencies: 1756 | hosted-git-info "^2.1.4" 1757 | is-builtin-module "^1.0.0" 1758 | semver "2 || 3 || 4 || 5" 1759 | validate-npm-package-license "^3.0.1" 1760 | 1761 | normalize-path@^2.0.0, normalize-path@^2.0.1: 1762 | version "2.1.1" 1763 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1764 | dependencies: 1765 | remove-trailing-separator "^1.0.1" 1766 | 1767 | number-is-nan@^1.0.0: 1768 | version "1.0.1" 1769 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1770 | 1771 | "nwmatcher@>= 1.3.9 < 2.0.0": 1772 | version "1.4.3" 1773 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.3.tgz#64348e3b3d80f035b40ac11563d278f8b72db89c" 1774 | 1775 | oauth-sign@~0.8.2: 1776 | version "0.8.2" 1777 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1778 | 1779 | object-assign@^4.0.1, object-assign@^4.1.0: 1780 | version "4.1.1" 1781 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1782 | 1783 | object.omit@^2.0.0: 1784 | version "2.0.1" 1785 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1786 | dependencies: 1787 | for-own "^0.1.4" 1788 | is-extendable "^0.1.1" 1789 | 1790 | once@^1.3.0, once@^1.4.0: 1791 | version "1.4.0" 1792 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1793 | dependencies: 1794 | wrappy "1" 1795 | 1796 | optimist@^0.6.1: 1797 | version "0.6.1" 1798 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 1799 | dependencies: 1800 | minimist "~0.0.1" 1801 | wordwrap "~0.0.2" 1802 | 1803 | optionator@^0.8.1: 1804 | version "0.8.2" 1805 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 1806 | dependencies: 1807 | deep-is "~0.1.3" 1808 | fast-levenshtein "~2.0.4" 1809 | levn "~0.3.0" 1810 | prelude-ls "~1.1.2" 1811 | type-check "~0.3.2" 1812 | wordwrap "~1.0.0" 1813 | 1814 | os-homedir@^1.0.0: 1815 | version "1.0.2" 1816 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1817 | 1818 | os-locale@^1.4.0: 1819 | version "1.4.0" 1820 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 1821 | dependencies: 1822 | lcid "^1.0.0" 1823 | 1824 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 1825 | version "1.0.2" 1826 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1827 | 1828 | p-limit@^1.1.0: 1829 | version "1.1.0" 1830 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 1831 | 1832 | p-locate@^2.0.0: 1833 | version "2.0.0" 1834 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1835 | dependencies: 1836 | p-limit "^1.1.0" 1837 | 1838 | parse-github-repo-url@^1.3.0: 1839 | version "1.4.1" 1840 | resolved "https://registry.yarnpkg.com/parse-github-repo-url/-/parse-github-repo-url-1.4.1.tgz#9e7d8bb252a6cb6ba42595060b7bf6df3dbc1f50" 1841 | 1842 | parse-glob@^3.0.4: 1843 | version "3.0.4" 1844 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1845 | dependencies: 1846 | glob-base "^0.3.0" 1847 | is-dotfile "^1.0.0" 1848 | is-extglob "^1.0.0" 1849 | is-glob "^2.0.0" 1850 | 1851 | parse-json@^2.2.0: 1852 | version "2.2.0" 1853 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1854 | dependencies: 1855 | error-ex "^1.2.0" 1856 | 1857 | parse5@^1.5.1: 1858 | version "1.5.1" 1859 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 1860 | 1861 | path-exists@^2.0.0: 1862 | version "2.1.0" 1863 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1864 | dependencies: 1865 | pinkie-promise "^2.0.0" 1866 | 1867 | path-exists@^3.0.0: 1868 | version "3.0.0" 1869 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1870 | 1871 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 1872 | version "1.0.1" 1873 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1874 | 1875 | path-parse@^1.0.5: 1876 | version "1.0.5" 1877 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 1878 | 1879 | path-type@^1.0.0: 1880 | version "1.1.0" 1881 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 1882 | dependencies: 1883 | graceful-fs "^4.1.2" 1884 | pify "^2.0.0" 1885 | pinkie-promise "^2.0.0" 1886 | 1887 | performance-now@^2.1.0: 1888 | version "2.1.0" 1889 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 1890 | 1891 | pify@^2.0.0, pify@^2.3.0: 1892 | version "2.3.0" 1893 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1894 | 1895 | pinkie-promise@^2.0.0: 1896 | version "2.0.1" 1897 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1898 | dependencies: 1899 | pinkie "^2.0.0" 1900 | 1901 | pinkie@^2.0.0: 1902 | version "2.0.4" 1903 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1904 | 1905 | prelude-ls@~1.1.2: 1906 | version "1.1.2" 1907 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 1908 | 1909 | preserve@^0.2.0: 1910 | version "0.2.0" 1911 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1912 | 1913 | pretty-format@^19.0.0: 1914 | version "19.0.0" 1915 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-19.0.0.tgz#56530d32acb98a3fa4851c4e2b9d37b420684c84" 1916 | dependencies: 1917 | ansi-styles "^3.0.0" 1918 | 1919 | private@^0.1.7: 1920 | version "0.1.8" 1921 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 1922 | 1923 | process-nextick-args@~1.0.6: 1924 | version "1.0.7" 1925 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1926 | 1927 | prr@~1.0.1: 1928 | version "1.0.1" 1929 | resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" 1930 | 1931 | punycode@^1.4.1: 1932 | version "1.4.1" 1933 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1934 | 1935 | q@^1.4.1: 1936 | version "1.5.1" 1937 | resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" 1938 | 1939 | qs@~6.5.1: 1940 | version "6.5.1" 1941 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8" 1942 | 1943 | randomatic@^1.1.3: 1944 | version "1.1.7" 1945 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 1946 | dependencies: 1947 | is-number "^3.0.0" 1948 | kind-of "^4.0.0" 1949 | 1950 | read-pkg-up@^1.0.1: 1951 | version "1.0.1" 1952 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 1953 | dependencies: 1954 | find-up "^1.0.0" 1955 | read-pkg "^1.0.0" 1956 | 1957 | read-pkg@^1.0.0, read-pkg@^1.1.0: 1958 | version "1.1.0" 1959 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 1960 | dependencies: 1961 | load-json-file "^1.0.0" 1962 | normalize-package-data "^2.3.2" 1963 | path-type "^1.0.0" 1964 | 1965 | readable-stream@^2.0.2, readable-stream@^2.1.5: 1966 | version "2.3.3" 1967 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 1968 | dependencies: 1969 | core-util-is "~1.0.0" 1970 | inherits "~2.0.3" 1971 | isarray "~1.0.0" 1972 | process-nextick-args "~1.0.6" 1973 | safe-buffer "~5.1.1" 1974 | string_decoder "~1.0.3" 1975 | util-deprecate "~1.0.1" 1976 | 1977 | redent@^1.0.0: 1978 | version "1.0.0" 1979 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 1980 | dependencies: 1981 | indent-string "^2.1.0" 1982 | strip-indent "^1.0.1" 1983 | 1984 | regenerator-runtime@^0.11.0: 1985 | version "0.11.1" 1986 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 1987 | 1988 | regex-cache@^0.4.2: 1989 | version "0.4.4" 1990 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 1991 | dependencies: 1992 | is-equal-shallow "^0.1.3" 1993 | 1994 | remove-trailing-separator@^1.0.1: 1995 | version "1.1.0" 1996 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 1997 | 1998 | repeat-element@^1.1.2: 1999 | version "1.1.2" 2000 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2001 | 2002 | repeat-string@^1.5.2: 2003 | version "1.6.1" 2004 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2005 | 2006 | repeating@^2.0.0: 2007 | version "2.0.1" 2008 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2009 | dependencies: 2010 | is-finite "^1.0.0" 2011 | 2012 | request@^2.79.0: 2013 | version "2.83.0" 2014 | resolved "https://registry.yarnpkg.com/request/-/request-2.83.0.tgz#ca0b65da02ed62935887808e6f510381034e3356" 2015 | dependencies: 2016 | aws-sign2 "~0.7.0" 2017 | aws4 "^1.6.0" 2018 | caseless "~0.12.0" 2019 | combined-stream "~1.0.5" 2020 | extend "~3.0.1" 2021 | forever-agent "~0.6.1" 2022 | form-data "~2.3.1" 2023 | har-validator "~5.0.3" 2024 | hawk "~6.0.2" 2025 | http-signature "~1.2.0" 2026 | is-typedarray "~1.0.0" 2027 | isstream "~0.1.2" 2028 | json-stringify-safe "~5.0.1" 2029 | mime-types "~2.1.17" 2030 | oauth-sign "~0.8.2" 2031 | performance-now "^2.1.0" 2032 | qs "~6.5.1" 2033 | safe-buffer "^5.1.1" 2034 | stringstream "~0.0.5" 2035 | tough-cookie "~2.3.3" 2036 | tunnel-agent "^0.6.0" 2037 | uuid "^3.1.0" 2038 | 2039 | require-directory@^2.1.1: 2040 | version "2.1.1" 2041 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2042 | 2043 | require-main-filename@^1.0.1: 2044 | version "1.0.1" 2045 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2046 | 2047 | resolve@1.1.7: 2048 | version "1.1.7" 2049 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2050 | 2051 | resolve@^1.2.0: 2052 | version "1.5.0" 2053 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.5.0.tgz#1f09acce796c9a762579f31b2c1cc4c3cddf9f36" 2054 | dependencies: 2055 | path-parse "^1.0.5" 2056 | 2057 | right-align@^0.1.1: 2058 | version "0.1.3" 2059 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2060 | dependencies: 2061 | align-text "^0.1.1" 2062 | 2063 | rimraf@^2.6.1: 2064 | version "2.6.2" 2065 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2066 | dependencies: 2067 | glob "^7.0.5" 2068 | 2069 | safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2070 | version "5.1.1" 2071 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2072 | 2073 | sane@~1.5.0: 2074 | version "1.5.0" 2075 | resolved "https://registry.yarnpkg.com/sane/-/sane-1.5.0.tgz#a4adeae764d048621ecb27d5f9ecf513101939f3" 2076 | dependencies: 2077 | anymatch "^1.3.0" 2078 | exec-sh "^0.2.0" 2079 | fb-watchman "^1.8.0" 2080 | minimatch "^3.0.2" 2081 | minimist "^1.1.1" 2082 | walker "~1.0.5" 2083 | watch "~0.10.0" 2084 | 2085 | sax@^1.2.1: 2086 | version "1.2.4" 2087 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 2088 | 2089 | "semver@2 || 3 || 4 || 5", semver@^5.0.1, semver@^5.3.0: 2090 | version "5.4.1" 2091 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 2092 | 2093 | set-blocking@^2.0.0: 2094 | version "2.0.0" 2095 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2096 | 2097 | shellwords@^0.1.0: 2098 | version "0.1.1" 2099 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" 2100 | 2101 | signal-exit@^3.0.0: 2102 | version "3.0.2" 2103 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2104 | 2105 | slash@^1.0.0: 2106 | version "1.0.0" 2107 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2108 | 2109 | sntp@2.x.x: 2110 | version "2.1.0" 2111 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.1.0.tgz#2c6cec14fedc2222739caf9b5c3d85d1cc5a2cc8" 2112 | dependencies: 2113 | hoek "4.x.x" 2114 | 2115 | source-map-support@^0.4.15: 2116 | version "0.4.18" 2117 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 2118 | dependencies: 2119 | source-map "^0.5.6" 2120 | 2121 | source-map@^0.4.4: 2122 | version "0.4.4" 2123 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 2124 | dependencies: 2125 | amdefine ">=0.0.4" 2126 | 2127 | source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1, source-map@~0.5.6: 2128 | version "0.5.7" 2129 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2130 | 2131 | spdx-correct@~1.0.0: 2132 | version "1.0.2" 2133 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2134 | dependencies: 2135 | spdx-license-ids "^1.0.2" 2136 | 2137 | spdx-expression-parse@~1.0.0: 2138 | version "1.0.4" 2139 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2140 | 2141 | spdx-license-ids@^1.0.2: 2142 | version "1.2.2" 2143 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2144 | 2145 | split2@^2.0.0: 2146 | version "2.2.0" 2147 | resolved "https://registry.yarnpkg.com/split2/-/split2-2.2.0.tgz#186b2575bcf83e85b7d18465756238ee4ee42493" 2148 | dependencies: 2149 | through2 "^2.0.2" 2150 | 2151 | split@^1.0.0: 2152 | version "1.0.1" 2153 | resolved "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9" 2154 | dependencies: 2155 | through "2" 2156 | 2157 | sprintf-js@~1.0.2: 2158 | version "1.0.3" 2159 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2160 | 2161 | sshpk@^1.7.0: 2162 | version "1.13.1" 2163 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 2164 | dependencies: 2165 | asn1 "~0.2.3" 2166 | assert-plus "^1.0.0" 2167 | dashdash "^1.12.0" 2168 | getpass "^0.1.1" 2169 | optionalDependencies: 2170 | bcrypt-pbkdf "^1.0.0" 2171 | ecc-jsbn "~0.1.1" 2172 | jsbn "~0.1.0" 2173 | tweetnacl "~0.14.0" 2174 | 2175 | string-length@^1.0.1: 2176 | version "1.0.1" 2177 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" 2178 | dependencies: 2179 | strip-ansi "^3.0.0" 2180 | 2181 | string-width@^1.0.1, string-width@^1.0.2: 2182 | version "1.0.2" 2183 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2184 | dependencies: 2185 | code-point-at "^1.0.0" 2186 | is-fullwidth-code-point "^1.0.0" 2187 | strip-ansi "^3.0.0" 2188 | 2189 | string_decoder@~1.0.3: 2190 | version "1.0.3" 2191 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 2192 | dependencies: 2193 | safe-buffer "~5.1.0" 2194 | 2195 | stringstream@~0.0.5: 2196 | version "0.0.5" 2197 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2198 | 2199 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2200 | version "3.0.1" 2201 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2202 | dependencies: 2203 | ansi-regex "^2.0.0" 2204 | 2205 | strip-bom@3.0.0: 2206 | version "3.0.0" 2207 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2208 | 2209 | strip-bom@^2.0.0: 2210 | version "2.0.0" 2211 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2212 | dependencies: 2213 | is-utf8 "^0.2.0" 2214 | 2215 | strip-indent@^1.0.1: 2216 | version "1.0.1" 2217 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 2218 | dependencies: 2219 | get-stdin "^4.0.1" 2220 | 2221 | supports-color@^2.0.0: 2222 | version "2.0.0" 2223 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2224 | 2225 | supports-color@^3.1.2: 2226 | version "3.2.3" 2227 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 2228 | dependencies: 2229 | has-flag "^1.0.0" 2230 | 2231 | symbol-tree@^3.2.1: 2232 | version "3.2.2" 2233 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 2234 | 2235 | tempfile@^1.1.1: 2236 | version "1.1.1" 2237 | resolved "https://registry.yarnpkg.com/tempfile/-/tempfile-1.1.1.tgz#5bcc4eaecc4ab2c707d8bc11d99ccc9a2cb287f2" 2238 | dependencies: 2239 | os-tmpdir "^1.0.0" 2240 | uuid "^2.0.1" 2241 | 2242 | test-exclude@^4.1.1: 2243 | version "4.1.1" 2244 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.1.tgz#4d84964b0966b0087ecc334a2ce002d3d9341e26" 2245 | dependencies: 2246 | arrify "^1.0.1" 2247 | micromatch "^2.3.11" 2248 | object-assign "^4.1.0" 2249 | read-pkg-up "^1.0.1" 2250 | require-main-filename "^1.0.1" 2251 | 2252 | text-extensions@^1.0.0: 2253 | version "1.7.0" 2254 | resolved "https://registry.yarnpkg.com/text-extensions/-/text-extensions-1.7.0.tgz#faaaba2625ed746d568a23e4d0aacd9bf08a8b39" 2255 | 2256 | throat@^3.0.0: 2257 | version "3.2.0" 2258 | resolved "https://registry.yarnpkg.com/throat/-/throat-3.2.0.tgz#50cb0670edbc40237b9e347d7e1f88e4620af836" 2259 | 2260 | through2@^2.0.0, through2@^2.0.2: 2261 | version "2.0.3" 2262 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 2263 | dependencies: 2264 | readable-stream "^2.1.5" 2265 | xtend "~4.0.1" 2266 | 2267 | through@2, "through@>=2.2.7 <3": 2268 | version "2.3.8" 2269 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 2270 | 2271 | tmpl@1.0.x: 2272 | version "1.0.4" 2273 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 2274 | 2275 | to-fast-properties@^1.0.3: 2276 | version "1.0.3" 2277 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 2278 | 2279 | tough-cookie@^2.3.2, tough-cookie@~2.3.3: 2280 | version "2.3.3" 2281 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 2282 | dependencies: 2283 | punycode "^1.4.1" 2284 | 2285 | tr46@~0.0.3: 2286 | version "0.0.3" 2287 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 2288 | 2289 | trim-newlines@^1.0.0: 2290 | version "1.0.0" 2291 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 2292 | 2293 | trim-off-newlines@^1.0.0: 2294 | version "1.0.1" 2295 | resolved "https://registry.yarnpkg.com/trim-off-newlines/-/trim-off-newlines-1.0.1.tgz#9f9ba9d9efa8764c387698bcbfeb2c848f11adb3" 2296 | 2297 | trim-right@^1.0.1: 2298 | version "1.0.1" 2299 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2300 | 2301 | tunnel-agent@^0.6.0: 2302 | version "0.6.0" 2303 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2304 | dependencies: 2305 | safe-buffer "^5.0.1" 2306 | 2307 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2308 | version "0.14.5" 2309 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2310 | 2311 | type-check@~0.3.2: 2312 | version "0.3.2" 2313 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 2314 | dependencies: 2315 | prelude-ls "~1.1.2" 2316 | 2317 | uglify-js@^2.6: 2318 | version "2.8.29" 2319 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 2320 | dependencies: 2321 | source-map "~0.5.1" 2322 | yargs "~3.10.0" 2323 | optionalDependencies: 2324 | uglify-to-browserify "~1.0.0" 2325 | 2326 | uglify-to-browserify@~1.0.0: 2327 | version "1.0.2" 2328 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 2329 | 2330 | util-deprecate@~1.0.1: 2331 | version "1.0.2" 2332 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2333 | 2334 | uuid@^2.0.1: 2335 | version "2.0.3" 2336 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" 2337 | 2338 | uuid@^3.1.0: 2339 | version "3.1.0" 2340 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 2341 | 2342 | validate-npm-package-license@^3.0.1: 2343 | version "3.0.1" 2344 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 2345 | dependencies: 2346 | spdx-correct "~1.0.0" 2347 | spdx-expression-parse "~1.0.0" 2348 | 2349 | verror@1.10.0: 2350 | version "1.10.0" 2351 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 2352 | dependencies: 2353 | assert-plus "^1.0.0" 2354 | core-util-is "1.0.2" 2355 | extsprintf "^1.2.0" 2356 | 2357 | walker@~1.0.5: 2358 | version "1.0.7" 2359 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 2360 | dependencies: 2361 | makeerror "1.0.x" 2362 | 2363 | watch@~0.10.0: 2364 | version "0.10.0" 2365 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" 2366 | 2367 | webidl-conversions@^3.0.0: 2368 | version "3.0.1" 2369 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 2370 | 2371 | webidl-conversions@^4.0.0: 2372 | version "4.0.2" 2373 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" 2374 | 2375 | whatwg-encoding@^1.0.1: 2376 | version "1.0.3" 2377 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.3.tgz#57c235bc8657e914d24e1a397d3c82daee0a6ba3" 2378 | dependencies: 2379 | iconv-lite "0.4.19" 2380 | 2381 | whatwg-url@^4.3.0: 2382 | version "4.8.0" 2383 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.8.0.tgz#d2981aa9148c1e00a41c5a6131166ab4683bbcc0" 2384 | dependencies: 2385 | tr46 "~0.0.3" 2386 | webidl-conversions "^3.0.0" 2387 | 2388 | which-module@^1.0.0: 2389 | version "1.0.0" 2390 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 2391 | 2392 | which@^1.1.1, which@^1.2.12: 2393 | version "1.3.0" 2394 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 2395 | dependencies: 2396 | isexe "^2.0.0" 2397 | 2398 | window-size@0.1.0: 2399 | version "0.1.0" 2400 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 2401 | 2402 | wordwrap@0.0.2: 2403 | version "0.0.2" 2404 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 2405 | 2406 | wordwrap@~0.0.2: 2407 | version "0.0.3" 2408 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 2409 | 2410 | wordwrap@~1.0.0: 2411 | version "1.0.0" 2412 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 2413 | 2414 | worker-farm@^1.3.1: 2415 | version "1.5.2" 2416 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.5.2.tgz#32b312e5dc3d5d45d79ef44acc2587491cd729ae" 2417 | dependencies: 2418 | errno "^0.1.4" 2419 | xtend "^4.0.1" 2420 | 2421 | wrap-ansi@^2.0.0: 2422 | version "2.1.0" 2423 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 2424 | dependencies: 2425 | string-width "^1.0.1" 2426 | strip-ansi "^3.0.1" 2427 | 2428 | wrappy@1: 2429 | version "1.0.2" 2430 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2431 | 2432 | xml-name-validator@^2.0.1: 2433 | version "2.0.1" 2434 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 2435 | 2436 | xtend@^4.0.1, xtend@~4.0.1: 2437 | version "4.0.1" 2438 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2439 | 2440 | y18n@^3.2.1: 2441 | version "3.2.1" 2442 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 2443 | 2444 | yargs-parser@^4.2.0: 2445 | version "4.2.1" 2446 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" 2447 | dependencies: 2448 | camelcase "^3.0.0" 2449 | 2450 | yargs@^6.3.0: 2451 | version "6.6.0" 2452 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" 2453 | dependencies: 2454 | camelcase "^3.0.0" 2455 | cliui "^3.2.0" 2456 | decamelize "^1.1.1" 2457 | get-caller-file "^1.0.1" 2458 | os-locale "^1.4.0" 2459 | read-pkg-up "^1.0.1" 2460 | require-directory "^2.1.1" 2461 | require-main-filename "^1.0.1" 2462 | set-blocking "^2.0.0" 2463 | string-width "^1.0.2" 2464 | which-module "^1.0.0" 2465 | y18n "^3.2.1" 2466 | yargs-parser "^4.2.0" 2467 | 2468 | yargs@~3.10.0: 2469 | version "3.10.0" 2470 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 2471 | dependencies: 2472 | camelcase "^1.0.2" 2473 | cliui "^2.1.0" 2474 | decamelize "^1.0.0" 2475 | window-size "0.1.0" 2476 | --------------------------------------------------------------------------------