├── .chglog
├── CHANGELOG.tpl.md
└── config.yml
├── .circleci
└── config.yml
├── .editorconfig
├── .eslintrc.js
├── .gitignore
├── .npmignore
├── CHANGELOG.md
├── LICENSE
├── README.md
├── bin
└── index.js
├── docs
└── assets
│ ├── example-issue.png
│ └── overview.png
├── lib
├── YarnOutdatedNotifier.js
├── __tests__
│ ├── YarnOutdatedNotifier.test.js
│ └── utils.test.js
├── template.hbs
└── utils.js
├── package.json
└── yarn.lock
/.chglog/CHANGELOG.tpl.md:
--------------------------------------------------------------------------------
1 | ## CHANGELOG
2 |
3 | {{range .Versions}}
4 |
5 | ## {{if .Tag.Previous}}[{{.Tag.Name}}]({{$.Info.RepositoryURL}}/compare/{{.Tag.Previous.Name}}...{{.Tag.Name}}){{else}}{{.Tag.Name}}{{end}} ({{datetime "2006-01-02" .Tag.Date}})
6 | {{range .CommitGroups}}
7 | ### {{.Title}}
8 | {{range .Commits}}
9 | * {{.Subject}}{{end}}
10 | {{end}}{{if .RevertCommits}}
11 | ### Reverts
12 | {{range .RevertCommits}}
13 | * {{.Revert.Header}}{{end}}
14 | {{end}}{{range .NoteGroups}}
15 | ### {{.Title}}
16 | {{range .Notes}}
17 | {{.Body}}
18 | {{end}}
19 | {{end}}
20 | {{end}}
--------------------------------------------------------------------------------
/.chglog/config.yml:
--------------------------------------------------------------------------------
1 | style: github
2 | template: CHANGELOG.tpl.md
3 | info:
4 | title: CHANGELOG
5 | repository_url: https://github.com/cats-oss/yarn-outdated-notifier
6 | options:
7 | commits:
8 | filters:
9 | Type:
10 | - feat
11 | - fix
12 | - perf
13 | - refactor
14 | commit_groups:
15 | title_maps:
16 | feat: Features
17 | fix: Bug Fixes
18 | perf: Performance Improvements
19 | refactor: Code Refactoring
20 | header:
21 | pattern: "^(\\w*)\\:\\s(.*)$"
22 | pattern_maps:
23 | - Type
24 | - Subject
25 | notes:
26 | keywords:
27 | - BREAKING CHANGE
--------------------------------------------------------------------------------
/.circleci/config.yml:
--------------------------------------------------------------------------------
1 | version: 2
2 |
3 | references:
4 | container_config: &container_config
5 | docker:
6 | - image: circleci/node:9.3
7 | working_directory: ~/repo
8 |
9 | yarn_cache_config: &yarn_cache_config
10 | key: dependencies-{{.Branch}}-{{checksum "yarn.lock"}}-{{checksum "package.json"}}
11 | paths:
12 | - node_modules
13 |
14 | restore_cache: &restore_cache
15 | restore_cache:
16 | <<: *yarn_cache_config
17 | name: Restore Yarn Cache
18 |
19 | save_cache: &save_cache
20 | save_cache:
21 | <<: *yarn_cache_config
22 | name: Save Yarn Cache
23 |
24 | deps: &deps
25 | run:
26 | name: Install dependencies
27 | command: yarn install
28 |
29 | jobs:
30 | test:
31 | <<: *container_config
32 | steps:
33 | - checkout
34 | - *restore_cache
35 | - *deps
36 | - *save_cache
37 | - run: yarn test
38 |
39 | workflows:
40 | version: 2
41 |
42 | testing:
43 | jobs:
44 | - test
45 |
--------------------------------------------------------------------------------
/.editorconfig:
--------------------------------------------------------------------------------
1 | root = true
2 |
3 | [*]
4 | end_of_line = lf
5 | insert_final_newline = false
6 | charset = utf-8
7 | indent_style = space
8 | indent_size = 2
9 |
10 | [*.md]
11 | trim_trailing_whitespace = false
12 |
--------------------------------------------------------------------------------
/.eslintrc.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | extends: [
3 | 'airbnb-base',
4 | 'plugin:jest/recommended',
5 | ],
6 | plugins: [
7 | 'jest',
8 | ],
9 | env: {
10 | 'jest/globals': true,
11 | },
12 | rules: {
13 | },
14 | };
15 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 |
2 | # Created by https://www.gitignore.io/api/osx,macos,node
3 |
4 | ### macOS ###
5 | *.DS_Store
6 | .AppleDouble
7 | .LSOverride
8 |
9 | # Icon must end with two \r
10 | Icon
11 |
12 | # Thumbnails
13 | ._*
14 |
15 | # Files that might appear in the root of a volume
16 | .DocumentRevisions-V100
17 | .fseventsd
18 | .Spotlight-V100
19 | .TemporaryItems
20 | .Trashes
21 | .VolumeIcon.icns
22 | .com.apple.timemachine.donotpresent
23 |
24 | # Directories potentially created on remote AFP share
25 | .AppleDB
26 | .AppleDesktop
27 | Network Trash Folder
28 | Temporary Items
29 | .apdisk
30 |
31 | ### Node ###
32 | # Logs
33 | logs
34 | *.log
35 | npm-debug.log*
36 | yarn-debug.log*
37 | yarn-error.log*
38 |
39 | # Runtime data
40 | pids
41 | *.pid
42 | *.seed
43 | *.pid.lock
44 |
45 | # Directory for instrumented libs generated by jscoverage/JSCover
46 | lib-cov
47 |
48 | # Coverage directory used by tools like istanbul
49 | coverage
50 |
51 | # nyc test coverage
52 | .nyc_output
53 |
54 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
55 | .grunt
56 |
57 | # Bower dependency directory (https://bower.io/)
58 | bower_components
59 |
60 | # node-waf configuration
61 | .lock-wscript
62 |
63 | # Compiled binary addons (http://nodejs.org/api/addons.html)
64 | build/Release
65 |
66 | # Dependency directories
67 | node_modules/
68 | jspm_packages/
69 |
70 | # Typescript v1 declaration files
71 | typings/
72 |
73 | # Optional npm cache directory
74 | .npm
75 |
76 | # Optional eslint cache
77 | .eslintcache
78 |
79 | # Optional REPL history
80 | .node_repl_history
81 |
82 | # Output of 'npm pack'
83 | *.tgz
84 |
85 | # Yarn Integrity file
86 | .yarn-integrity
87 |
88 | # dotenv environment variables file
89 | .env
90 |
91 |
92 | ### OSX ###
93 |
94 | # Icon must end with two \r
95 |
96 | # Thumbnails
97 |
98 | # Files that might appear in the root of a volume
99 |
100 | # Directories potentially created on remote AFP share
101 |
102 |
103 | # End of https://www.gitignore.io/api/osx,macos,node
104 |
--------------------------------------------------------------------------------
/.npmignore:
--------------------------------------------------------------------------------
1 | .circleci
2 |
--------------------------------------------------------------------------------
/CHANGELOG.md:
--------------------------------------------------------------------------------
1 | ## CHANGELOG
2 |
3 |
4 |
5 | ## [1.1.0](https://github.com/cats-oss/yarn-outdated-notifier/compare/1.0.1...1.1.0) (2019-02-28)
6 |
7 | ### Features
8 |
9 | * Allow override of address for GitHub enterprise url. Thank you [@TimFretwell](https://github.com/TimFretwell) :tada:
10 |
11 |
12 |
13 | ## [1.0.1](https://github.com/cats-oss/yarn-outdated-notifier/compare/0.0.2...1.0.1) (2018-12-25)
14 |
15 | ### Bug Fixes
16 |
17 | * add test cases about specifying labels / assignees
18 | * changes to pass test in any environments
19 | * follow interfaces of Github API v3
20 |
21 |
22 |
23 | ## [0.0.2](https://github.com/cats-oss/yarn-outdated-notifier/compare/0.0.1...0.0.2) (2018-03-14)
24 |
25 | ### Bug Fixes
26 |
27 | * Fix failure of long JSON buffer
28 |
29 |
30 |
31 | ## 0.0.1 (2018-03-01)
32 |
33 | ### Features
34 |
35 | * First implement
36 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2018 Cyberagent, Inc.
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in
13 | all copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | THE SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # :rocket: yarn-outdated-notifier
2 |
3 | [](https://www.npmjs.com/package/yarn-outdated-notifier)
4 | [](https://circleci.com/gh/cats-oss/yarn-outdated-notifier)
5 |
6 | > Add link to CHANGELOG the result of `$ yarn outdated`, and notify to GitHub Issue.
7 |
8 |
9 |
10 |
11 | ## Example Issue
12 |
13 | 
14 |
15 | > **Issue URL:** https://github.com/tsuyoshiwada/yarn-outdated-notifier-with-circleci/issues/2
16 |
17 |
18 |
19 |
20 | ## Motivation
21 |
22 | 
23 |
24 | `yarn-outdated-notifier` will help you update the npm package on which you depend.
25 |
26 |
27 | ### 1. Keeping fresh package
28 |
29 | `yarn` has a useful toolset for updating npm packages like `yarn outdated` and `yarn upgrade-interactive`.
30 | Utilize these tool sets to visualize packages that need updating and register them to GitHub Issue.
31 |
32 |
33 | ### 2. Understand the changes
34 |
35 | The problem with updating the npm package is that unintended changes destroy the project.
36 | By checking CHANGELOG prepared by each package, it is possible to solve this problem to a certain extent.
37 |
38 | Therefore, `yarn-outdated-notifier` adds a link to CHANGELOG to the result of `yarn outdated` and notifies.
39 |
40 |
41 | ---
42 |
43 |
44 | Since CircleCI and TravisCI have the function of cron, you can use it to make periodic package update notifications :tada:
45 |
46 |
47 |
48 |
49 | ## Installation
50 |
51 | ```bash
52 | $ yarn add -D yarn-outdated-notifier
53 | ```
54 |
55 |
56 |
57 |
58 | ## Usage
59 |
60 | Please access the page of [Personal access tokens](https://github.com/settings/tokens) and issue a token. You need the scope of `repo`.
61 |
62 | By passing the issued token to the `--api-token` option and executing the command, we will inform GitHub's Issue of the result of `$ yarn outdated`.
63 |
64 | ```bash
65 | $ yarn outdated-notifier --help
66 |
67 | Add link to CHANGELOG the result of `$ yarn outdated`, and notify to GitHub Issue.
68 |
69 | USAGE:
70 | $ outdated-notifier [options]
71 |
72 | OPTIONS:
73 | --api-token API token for GitHub (required)
74 | --github-api-url provide url for GitHub enterprise (default: "api.github.com")
75 | --owner, -o repository owner name (default: "git config --get remote.origin.url" infomation)
76 | --repository, -r repository name (default: "git config --get remote.origin.url" infomation)
77 | --title, -t issue title for GitHub
78 | --labels, -l issue labels name for GitHub
79 | --assignees, -a issue assignees name for GitHub
80 | --excludes, -e path to yaml file which specify package names to exclude
81 | --changelogs, -c path to yaml file which specify changelog uris for the packages
82 | --template path to the template to use for notification
83 | --dry-run do not register on issue, output contents to stdout
84 | --help, -h show help
85 | --version, -v print the version
86 |
87 | EXAMPLES:
88 | $ yarn outdated-notifier --api-token
89 | $ yarn outdated-notifier --api-token --labels "label_name" --assignees "assignee_name"
90 | $ yarn outdated-notifier --api-token --template "./template.hbs"
91 | $ yarn outdated-notifier --api-token --changelogs "./changelogs.yml"
92 | $ yarn outdated-notifier --api-token --changelogs "./changelogs.yml" --excludes "./excludes.yml"
93 | ```
94 |
95 |
96 | ### Prepare the CHANGELOG link
97 |
98 | Please create a YAML file with the package name and the link to CHANGELOG in the format shown below and specify it in the `--changelogs` option. (e.g. `changelogs.yml`)
99 |
100 | ```yaml
101 | react: https://github.com/facebook/react/blob/master/CHANGELOG.md
102 | lodash: https://github.com/lodash/lodash/wiki/Changelog
103 | moment: https://github.com/moment/moment/blob/develop/CHANGELOG.md
104 | ...
105 | ```
106 |
107 |
108 |
109 |
110 | ## Thanks
111 |
112 | * [yarnpkg/yarn](https://github.com/yarnpkg/yarn)
113 | * [masawada/yarn-outdated-formatter][yarn-outdated-formatter]
114 |
115 |
116 |
117 |
118 | ## Contribute
119 |
120 | 1. Fork it!
121 | 1. Create your feature branch: `git checkout -b my-new-feature`
122 | 1. Commit your changes: `git commit -am 'Add some feature'`
123 | 1. Push to the branch: `git push origin my-new-feature`
124 | 1. Submit a pull request :love_letter:
125 |
126 | Bugs, feature requests and comments are more than welcome in the [issues](https://github.com/cats-oss/yarn-outdated-notifier/issues).
127 |
128 |
129 |
130 |
131 | ## License
132 |
133 | [MIT © Cyberagent, Inc](./LICENSE)
134 |
135 |
136 |
137 |
138 | [yarn-outdated-formatter]: https://github.com/masawada/yarn-outdated-formatter
139 |
--------------------------------------------------------------------------------
/bin/index.js:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env node
2 |
3 | const meow = require('meow');
4 | const chalk = require('chalk');
5 | const YarnOutdatedNotifier = require('../lib/YarnOutdatedNotifier');
6 |
7 | const Status = {
8 | OK: 0,
9 | ERROR: 1,
10 | };
11 |
12 | const cli = meow(`
13 | ${chalk.yellow('USAGE:')}
14 | $ outdated-notifier [options]
15 |
16 | ${chalk.yellow('OPTIONS:')}
17 | --api-token API token for GitHub (required)
18 | --github-api-url provide url for GitHub enterprise (default: "api.github.com")
19 | --owner, -o repository owner name (default: "git config --get remote.origin.url" infomation)
20 | --repository, -r repository name (default: "git config --get remote.origin.url" infomation)
21 | --title, -t issue title for GitHub
22 | --labels, -l issue labels name for GitHub
23 | --assignees, -a issue assignees name for GitHub
24 | --excludes, -e path to yaml file which specify package names to exclude
25 | --changelogs, -c path to yaml file which specify changelog uris for the packages
26 | --template path to the template to use for notification
27 | --dry-run do not register on issue, output contents to stdout
28 | --help, -h show help
29 | --version, -v print the version
30 |
31 | ${chalk.yellow('EXAMPLES:')}
32 | $ yarn outdated-notifier --api-token
33 | $ yarn outdated-notifier --api-token --labels "label_name" --assignees "assignee_name"
34 | $ yarn outdated-notifier --api-token --template "./template.hbs"
35 | $ yarn outdated-notifier --api-token --changelogs "./changelogs.yml"
36 | $ yarn outdated-notifier --api-token --changelogs "./changelogs.yml" --excludes "./excludes.yml"
37 |
38 | `, {
39 | flags: {
40 | apiToken: {
41 | type: 'string',
42 | },
43 | githubApiUrl: {
44 | type: 'string',
45 | },
46 | owner: {
47 | type: 'string',
48 | alias: 'o',
49 | },
50 | repository: {
51 | type: 'string',
52 | alias: 'r',
53 | },
54 | title: {
55 | type: 'string',
56 | alias: 't',
57 | },
58 | labels: {
59 | type: 'string',
60 | alias: 'l',
61 | },
62 | assignees: {
63 | type: 'string',
64 | alias: 'a',
65 | },
66 | excludes: {
67 | type: 'string',
68 | alias: 'e',
69 | },
70 | changelogs: {
71 | type: 'string',
72 | alias: 'c',
73 | },
74 | template: {
75 | type: 'string',
76 | },
77 | dryRun: {
78 | type: 'boolean',
79 | },
80 | help: {
81 | alias: 'h',
82 | },
83 | version: {
84 | alias: 'v',
85 | },
86 | },
87 | });
88 |
89 | (async () => {
90 | try {
91 | const notifier = new YarnOutdatedNotifier(cli.flags, {
92 | workingDir: process.cwd(),
93 | stdout: process.stdout,
94 | stderr: process.stderr,
95 | });
96 |
97 | await notifier.notify();
98 | process.exit(Status.OK);
99 | } catch (e) {
100 | process.stdout.write(`${chalk.white.bgRed.bold(' ERROR ')} ${chalk.red(e.message)}\n`);
101 | process.exit(Status.ERROR);
102 | }
103 | })();
104 |
--------------------------------------------------------------------------------
/docs/assets/example-issue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cats-oss/yarn-outdated-notifier/cb5d9e8b99df4ea1a95fcfb947cd2f8d63bd1322/docs/assets/example-issue.png
--------------------------------------------------------------------------------
/docs/assets/overview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cats-oss/yarn-outdated-notifier/cb5d9e8b99df4ea1a95fcfb947cd2f8d63bd1322/docs/assets/overview.png
--------------------------------------------------------------------------------
/lib/YarnOutdatedNotifier.js:
--------------------------------------------------------------------------------
1 | const path = require('path');
2 | const fs = require('fs');
3 | const { exec, execSync, spawn } = require('child_process');
4 | const chalk = require('chalk');
5 | const emoji = require('node-emoji');
6 | const humanizeDuration = require('humanize-duration');
7 | const request = require('request');
8 | const Handlebars = require('handlebars');
9 | const {
10 | canExecYarn,
11 | formatDate,
12 | getRepositoryInfo,
13 | normalizePackages,
14 | packageTable,
15 | } = require('./utils');
16 |
17 | class YarnOutdatedNotifier {
18 | constructor(options) {
19 | this.options = {
20 | apiToken: '',
21 | title: '[{{date}}] Yarn Outdated Notifier',
22 | labels: '',
23 | assignees: '',
24 | excludes: '',
25 | changelogs: '',
26 | githubApiUrl: 'api.github.com',
27 | template: path.join(__dirname, 'template.hbs'),
28 | dryRun: false,
29 | ...getRepositoryInfo(),
30 | ...options,
31 | };
32 |
33 | this.options.labels = this.options.labels ? this.options.labels.split(',').map(s => s.trim()) : [];
34 | this.options.assignees = this.options.assignees ? this.options.assignees.split(',').map(s => s.trim()) : [];
35 |
36 | this.validate();
37 | }
38 |
39 | validate() {
40 | const {
41 | apiToken,
42 | owner,
43 | repository,
44 | excludes,
45 | changelogs,
46 | template,
47 | dryRun,
48 | } = this.options;
49 |
50 | const required = (value, msg) => {
51 | if (!value) {
52 | throw new Error(msg);
53 | }
54 | };
55 |
56 | const existsFile = (p) => {
57 | if (!p) {
58 | return;
59 | }
60 |
61 | if (!fs.existsSync(p)) {
62 | throw new Error(`"${p}" does not exist`);
63 | }
64 | };
65 |
66 | if (!canExecYarn()) {
67 | throw new Error('"yarn-outdated-notifier" requires "yarn" to be installed.');
68 | }
69 |
70 | if (!dryRun) {
71 | required(apiToken, 'API Token (--api-token) is required');
72 | }
73 |
74 | required(owner, 'Repository owner name (--owner) is required');
75 | required(repository, 'Repository name (--repository) is required');
76 |
77 | existsFile(excludes);
78 | existsFile(changelogs);
79 | existsFile(template);
80 | }
81 |
82 | async notify() {
83 | const { dryRun } = this.options;
84 | const start = Date.now();
85 |
86 | const json = await this.exec();
87 |
88 | if (!dryRun) {
89 | process.stdout.write(`${emoji.get('mag')} Checking for outdated packages ...\n`);
90 | }
91 |
92 | if (!json) {
93 | process.stdout.write(`${chalk.green('All packages are Fresh!')}\n`);
94 | return;
95 | }
96 |
97 | const content = this.build(json);
98 |
99 | if (dryRun) {
100 | process.stdout.write(`${content}\n`);
101 | } else {
102 | process.stdout.write(`${emoji.get('hourglass')} Submitting to GitHub issue ...\n`);
103 |
104 | const issue = await this.post(content);
105 | const time = humanizeDuration(Date.now() - start);
106 |
107 | process.stdout.write(`${emoji.get('rocket')} ${chalk.green('success')} Submitted to "${chalk.bold(`${issue.title} #${issue.number}`)}"\n`);
108 | process.stdout.write(` > ${chalk.cyan(issue.html_url)}\n\n`);
109 | process.stdout.write(`${emoji.get('sparkles')} Done ${chalk.bold(time)}\n`);
110 | }
111 | }
112 |
113 | exec() {
114 | const { changelogs, excludes } = this.options;
115 | const encoding = 'utf8';
116 |
117 | return new Promise((resolve, reject) => {
118 | const bin = execSync('yarn bin', { encoding }).toString().trim();
119 |
120 | exec('yarn outdated --json', { encoding }, (error, stdout) => {
121 | if (!stdout) {
122 | resolve('');
123 | return;
124 | }
125 |
126 | const formatter = spawn(path.join(bin, 'format-yarn-outdated'), [
127 | '--format', 'json',
128 | ...(changelogs ? ['--changelogs', changelogs] : []),
129 | ...(excludes ? ['--excludes', excludes] : []),
130 | ]);
131 |
132 | let buf = '';
133 |
134 | formatter.stdout.on('data', (data) => {
135 | buf += data.toString();
136 | });
137 |
138 | formatter.stdout.on('end', () => {
139 | resolve(JSON.parse(buf));
140 | });
141 |
142 | formatter.on('error', (err) => {
143 | reject(err);
144 | });
145 |
146 | formatter.stdin.write(stdout);
147 | formatter.stdin.end();
148 | });
149 | });
150 | }
151 |
152 | build(json) {
153 | const { template: templatePath, changelogs, excludes } = this.options;
154 | const template = fs.readFileSync(templatePath, { encoding: 'utf8' });
155 | const tpl = Handlebars.compile(template);
156 |
157 | const outdated = {};
158 | let all = [];
159 |
160 | Object.keys(json).forEach((key) => {
161 | const packages = normalizePackages(json[key]);
162 |
163 | outdated[key] = {
164 | packages,
165 | table: packageTable(packages),
166 | };
167 |
168 | all = [...all, ...packages];
169 | });
170 |
171 | const markdown = tpl({
172 | meta: {
173 | owner: this.options.owner,
174 | repository: this.options.repository,
175 | githubApiUrl: this.options.githubApiUrl,
176 | changelogs: changelogs ? path.basename(changelogs) : '',
177 | excludes: excludes ? path.basename(excludes) : '',
178 | template: templatePath ? path.basename(templatePath) : '',
179 | },
180 | needsChangelog: all.filter(pkg => !pkg.changelog),
181 | outdated,
182 | all,
183 | });
184 |
185 | return markdown;
186 | }
187 |
188 | post(body) {
189 | const {
190 | apiToken,
191 | owner,
192 | repository,
193 | githubApiUrl,
194 | title: titleTemplate,
195 | labels,
196 | assignees,
197 | } = this.options;
198 |
199 | const titleTpl = Handlebars.compile(titleTemplate);
200 | const title = titleTpl({
201 | date: formatDate(new Date()),
202 | labels,
203 | assignees,
204 | });
205 |
206 | return new Promise((resolve, reject) => {
207 | const opts = {
208 | method: 'POST',
209 | url: `https://${githubApiUrl}/repos/${owner}/${repository}/issues`,
210 | headers: {
211 | 'Content-Type': 'application/json',
212 | 'User-Agent': `${owner}/${repository}:yarn-outdated-notifier`,
213 | Authorization: `token ${apiToken}`,
214 | },
215 | json: true,
216 | body: {
217 | title,
218 | body,
219 | labels,
220 | assignees,
221 | },
222 | };
223 |
224 | request(opts, (err, res, resBody) => {
225 | if (err) {
226 | reject(err);
227 | } else if (res.statusCode < 200 || res.statusCode >= 300) {
228 | if (res.body && res.body.message) {
229 | reject(new Error(res.body.message));
230 | } else {
231 | reject(new Error('An unknown network error occurred'));
232 | }
233 | } else {
234 | resolve(resBody);
235 | }
236 | });
237 | });
238 | }
239 | }
240 |
241 | module.exports = YarnOutdatedNotifier;
242 |
--------------------------------------------------------------------------------
/lib/__tests__/YarnOutdatedNotifier.test.js:
--------------------------------------------------------------------------------
1 | const YarnOutdatedNotifier = require('../YarnOutdatedNotifier');
2 |
3 | const factory = options => (
4 | new YarnOutdatedNotifier({
5 | ...options,
6 | apiToken: 'test-token',
7 | })
8 | );
9 |
10 | describe('YarnOutdatedNotifier', () => {
11 | test('Should be throw error', () => {
12 | expect(() => {
13 | new YarnOutdatedNotifier(); // eslint-disable-line no-new
14 | }).toThrow();
15 | });
16 |
17 | test('Should be create instance', () => {
18 | expect(() => {
19 | factory();
20 | }).not.toThrow();
21 | });
22 |
23 | test('Should be labels is empty array by default', () => {
24 | const notifier = factory();
25 | expect(notifier.options.assignees).toEqual([]);
26 | });
27 |
28 | test('Should be labels is array contains specified data', () => {
29 | const notifier = factory({
30 | labels: 'bug,help-wanted',
31 | });
32 | expect(notifier.options.labels).toEqual(['bug', 'help-wanted']);
33 | });
34 |
35 | test('Should be assignees is empty array by default', () => {
36 | const notifier = factory();
37 | expect(notifier.options.assignees).toEqual([]);
38 | });
39 |
40 | test('Should be assignees is array contains specified data', () => {
41 | const notifier = factory({
42 | assignees: 'cats-oss,januswel',
43 | });
44 | expect(notifier.options.assignees).toEqual(['cats-oss', 'januswel']);
45 | });
46 |
47 | // TODO: More tests ...
48 | });
49 |
--------------------------------------------------------------------------------
/lib/__tests__/utils.test.js:
--------------------------------------------------------------------------------
1 | const {
2 | formatDate,
3 | getRepositoryInfo,
4 | normalizePackages,
5 | packageTable,
6 | } = require('../utils');
7 |
8 | describe('Utilities', () => {
9 | test('formatDate()', () => {
10 | expect(formatDate(new Date(2018, 0, 1))).toEqual('2018-01-01');
11 | expect(formatDate(new Date(2020, 11, 22))).toEqual('2020-12-22');
12 | });
13 |
14 | test('getRepositoryInfo()', () => {
15 | const repositoryInfo = getRepositoryInfo();
16 | expect(repositoryInfo.owner.length).toBeGreaterThan(0);
17 | expect(repositoryInfo.repository).toBe('yarn-outdated-notifier');
18 | });
19 |
20 | test('normalizePackages()', () => {
21 | expect(normalizePackages([
22 | [
23 | 'name',
24 | '0.0.0',
25 | '0.0.1',
26 | '0.0.2',
27 | 'type',
28 | 'url',
29 | 'changelog',
30 | ],
31 | ])).toEqual([
32 | {
33 | name: 'name',
34 | current: '0.0.0',
35 | wanted: '0.0.1',
36 | latest: '0.0.2',
37 | workspace: '',
38 | type: 'type',
39 | url: 'url',
40 | changelog: 'changelog',
41 | },
42 | ]);
43 |
44 | expect(normalizePackages([
45 | [
46 | 'name',
47 | '0.0.0',
48 | '0.0.1',
49 | '0.0.2',
50 | 'workspace',
51 | 'type',
52 | 'url',
53 | 'changelog',
54 | ],
55 | ])).toEqual([
56 | {
57 | name: 'name',
58 | current: '0.0.0',
59 | wanted: '0.0.1',
60 | latest: '0.0.2',
61 | workspace: 'workspace',
62 | type: 'type',
63 | url: 'url',
64 | changelog: 'changelog',
65 | },
66 | ]);
67 | });
68 |
69 | test('packageTable', () => {
70 | expect(packageTable([
71 | {
72 | name: 'name1',
73 | current: '0.0.0',
74 | wanted: '0.0.1',
75 | latest: '0.0.2',
76 | workspace: '',
77 | type: 'type1',
78 | url: 'url1',
79 | changelog: 'changelog1',
80 | },
81 | {
82 | name: 'name2',
83 | current: '1.0.0',
84 | wanted: '1.0.1',
85 | latest: '1.0.2',
86 | workspace: '',
87 | type: 'type2',
88 | url: 'url2',
89 | changelog: 'changelog2',
90 | },
91 | ])).toEqual(`| Package | Current | Wanted | Latest | Type | CHANGELOG |
92 | |:----|:----|:----|:----|:----|:----|
93 | | [name1](url1) | \`0.0.0\` | \`0.0.1\` | \`0.0.2\` | \`type1\` | changelog1 |
94 | | [name2](url2) | \`1.0.0\` | \`1.0.1\` | \`1.0.2\` | \`type2\` | changelog2 |`);
95 |
96 | expect(packageTable([
97 | {
98 | name: 'name1',
99 | current: '0.0.0',
100 | wanted: '0.0.1',
101 | latest: '0.0.2',
102 | workspace: 'workspace1',
103 | type: 'type1',
104 | url: 'url1',
105 | changelog: 'changelog1',
106 | },
107 | {
108 | name: 'name2',
109 | current: '1.0.0',
110 | wanted: '1.0.1',
111 | latest: '1.0.2',
112 | workspace: 'workspace2',
113 | type: 'type2',
114 | url: 'url2',
115 | changelog: 'changelog2',
116 | },
117 | ])).toEqual(`| Package | Current | Wanted | Latest | Workspace | Type | CHANGELOG |
118 | |:----|:----|:----|:----|:----|:----|:----|
119 | | [name1](url1) | \`0.0.0\` | \`0.0.1\` | \`0.0.2\` | \`workspace1\` | \`type1\` | changelog1 |
120 | | [name2](url2) | \`1.0.0\` | \`1.0.1\` | \`1.0.2\` | \`workspace2\` | \`type2\` | changelog2 |`);
121 | });
122 | });
123 |
--------------------------------------------------------------------------------
/lib/template.hbs:
--------------------------------------------------------------------------------
1 | ## :recycle: Hi, It's time to update the npm package!
2 |
3 | **{{all.length}} npm packages** are outdated.
4 | Let's begin maintenance to maintain a fresh package!
5 | {{#if needsChangelog}}
6 |
7 |
8 | ## :no_entry_sign: Needs maintenance {{#if meta.changelogs}}`{{meta.changelogs}}`{{else}}changelog list (`--changelogs`){{/if}}
9 |
10 | CHANGELOG was not found in **{{needsChangelog.length}}/{{all.length}} packages**.
11 |
12 | {{#if meta.changelogs}}
13 | Together with maintenance work,
14 | let's add a link to CHANGELOG as much as possible to `{{meta.changelogs}}`.
15 | {{else}}
16 | Let's add a link to CHANGELOG using the `--changelogs` option.
17 | {{/if}}
18 |
19 | ---
20 |
21 |
22 | Packages
23 |
24 | {{#each needsChangelog as |pkg|}}
25 | - {{pkg.name}}
26 | {{/each}}
27 |
28 |
29 | {{/if}}
30 |
31 | ---
32 | {{#if outdated.major.packages}}
33 |
34 |
35 | ## :warning: Major ({{outdated.major.packages.length}} packages)
36 |
37 | {{{outdated.major.table}}}
38 | {{/if}}
39 | {{#if outdated.minor.packages}}
40 |
41 |
42 | ## :zap: Minor ({{outdated.minor.packages.length}} packages)
43 |
44 | {{{outdated.minor.table}}}
45 | {{/if}}
46 | {{#if outdated.patch.packages}}
47 |
48 |
49 | ## :beginner: Patch ({{outdated.patch.packages.length}} packages)
50 |
51 | {{{outdated.patch.table}}}
52 | {{/if}}
53 |
--------------------------------------------------------------------------------
/lib/utils.js:
--------------------------------------------------------------------------------
1 | const url = require('url');
2 | const { execSync } = require('child_process');
3 | const parseGitUrl = require('github-url-from-git');
4 |
5 | exports.canExecYarn = () => {
6 | try {
7 | const res = execSync('which yarn', { encoding: 'utf8' });
8 | return res.trim() !== '';
9 | } catch (e) {
10 | return false;
11 | }
12 | };
13 |
14 | exports.formatDate = (date) => {
15 | const pad = s => s.padStart(2, '0');
16 | const year = date.getFullYear();
17 | const month = pad(`${date.getMonth() + 1}`);
18 | const day = pad(`${date.getDate()}`);
19 | return `${year}-${month}-${day}`;
20 | };
21 |
22 | exports.getRepositoryInfo = () => {
23 | const info = {
24 | owner: '',
25 | repository: '',
26 | };
27 |
28 | try {
29 | const gitUrl = execSync('git config --get remote.origin.url', { encoding: 'utf8' }).toString().trim();
30 | const { pathname } = url.parse(parseGitUrl(gitUrl));
31 | const [owner, repository] = pathname.replace(/^\/|\/$/, '').split('/');
32 | info.owner = owner;
33 | info.repository = repository;
34 | } catch (e) {} // eslint-disable-line no-empty
35 |
36 | return info;
37 | };
38 |
39 | exports.normalizePackages = packages => (
40 | packages.map((pkg) => {
41 | const hasWorkspace = pkg.length >= 8;
42 |
43 | return {
44 | name: pkg[0],
45 | current: pkg[1],
46 | wanted: pkg[2],
47 | latest: pkg[3],
48 | workspace: hasWorkspace ? pkg[4] : '',
49 | type: hasWorkspace ? pkg[5] : pkg[4],
50 | url: hasWorkspace ? pkg[6] : pkg[5],
51 | changelog: hasWorkspace ? pkg[7] : pkg[6],
52 | };
53 | })
54 | );
55 |
56 | exports.packageTable = (packages) => {
57 | if (packages.length === 0) {
58 | return '';
59 | }
60 |
61 | const hasWorkspace = !!packages[0].workspace;
62 |
63 | const result = [];
64 |
65 | const headers = [
66 | 'Package',
67 | 'Current',
68 | 'Wanted',
69 | 'Latest',
70 | ...(hasWorkspace ? ['Workspace'] : []),
71 | 'Type',
72 | 'CHANGELOG',
73 | ];
74 |
75 | result.push(`| ${headers.join(' | ')} |`);
76 | result.push(`|${(new Array(headers.length)).fill(':----').join('|')}|`);
77 |
78 | packages.forEach((pkg) => {
79 | const arr = [
80 | `[${pkg.name}](${pkg.url})`,
81 | `\`${pkg.current}\``,
82 | `\`${pkg.wanted}\``,
83 | `\`${pkg.latest}\``,
84 | ...(hasWorkspace ? [`\`${pkg.workspace}\``] : []),
85 | `\`${pkg.type}\``,
86 | pkg.changelog || '-',
87 | ];
88 |
89 | result.push(`| ${arr.join(' | ')} |`);
90 | });
91 |
92 | return result.join('\n');
93 | };
94 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "yarn-outdated-notifier",
3 | "version": "1.1.0",
4 | "description": "Add link to CHANGELOG the result of `$ yarn outdated`, and notify to GitHub Issue.",
5 | "bin": {
6 | "outdated-notifier": "bin/index.js"
7 | },
8 | "scripts": {
9 | "test": "yarn test:lint && yarn test:unit",
10 | "test:lint": "eslint \"lib/**/*.js\" .eslintrc.js --no-ignore",
11 | "test:unit": "jest",
12 | "test:watch": "yarn test:unit --watch"
13 | },
14 | "repository": {
15 | "type": "git",
16 | "url": "git+https://github.com/cats-oss/yarn-outdated-notifier.git"
17 | },
18 | "keywords": [
19 | "yarn",
20 | "outdated",
21 | "notifier",
22 | "package-maintenance",
23 | "changelog"
24 | ],
25 | "author": "CyberAgent, Inc",
26 | "license": "MIT",
27 | "bugs": {
28 | "url": "https://github.com/cats-oss/yarn-outdated-notifier/issues"
29 | },
30 | "homepage": "https://github.com/cats-oss/yarn-outdated-notifier#readme",
31 | "devDependencies": {
32 | "eslint": "^4.18.1",
33 | "eslint-config-airbnb-base": "^12.1.0",
34 | "eslint-plugin-import": "^2.9.0",
35 | "eslint-plugin-jest": "^21.12.2",
36 | "jest": "^22.4.2"
37 | },
38 | "dependencies": {
39 | "chalk": "^2.3.1",
40 | "github-url-from-git": "^1.5.0",
41 | "handlebars": "^4.0.11",
42 | "humanize-duration": "^3.12.1",
43 | "meow": "^4.0.0",
44 | "node-emoji": "^1.8.1",
45 | "request": "^2.83.0",
46 | "yarn-outdated-formatter": "^2.0.0"
47 | }
48 | }
49 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@babel/code-frame@^7.0.0-beta.35":
6 | version "7.0.0-beta.40"
7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0-beta.40.tgz#37e2b0cf7c56026b4b21d3927cadf81adec32ac6"
8 | dependencies:
9 | "@babel/highlight" "7.0.0-beta.40"
10 |
11 | "@babel/highlight@7.0.0-beta.40":
12 | version "7.0.0-beta.40"
13 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0-beta.40.tgz#b43d67d76bf46e1d10d227f68cddcd263786b255"
14 | dependencies:
15 | chalk "^2.0.0"
16 | esutils "^2.0.2"
17 | js-tokens "^3.0.0"
18 |
19 | abab@^1.0.4:
20 | version "1.0.4"
21 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.4.tgz#5faad9c2c07f60dd76770f71cf025b62a63cfd4e"
22 |
23 | abbrev@1:
24 | version "1.1.1"
25 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
26 |
27 | acorn-globals@^4.1.0:
28 | version "4.1.0"
29 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.1.0.tgz#ab716025dbe17c54d3ef81d32ece2b2d99fe2538"
30 | dependencies:
31 | acorn "^5.0.0"
32 |
33 | acorn-jsx@^3.0.0:
34 | version "3.0.1"
35 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b"
36 | dependencies:
37 | acorn "^3.0.4"
38 |
39 | acorn@^3.0.4:
40 | version "3.3.0"
41 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a"
42 |
43 | acorn@^5.0.0, acorn@^5.3.0, acorn@^5.4.0:
44 | version "5.5.0"
45 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.5.0.tgz#1abb587fbf051f94e3de20e6b26ef910b1828298"
46 |
47 | ajv-keywords@^3.0.0:
48 | version "3.1.0"
49 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.1.0.tgz#ac2b27939c543e95d2c06e7f7f5c27be4aa543be"
50 |
51 | ajv@^4.9.1:
52 | version "4.11.8"
53 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536"
54 | dependencies:
55 | co "^4.6.0"
56 | json-stable-stringify "^1.0.1"
57 |
58 | ajv@^5.1.0, ajv@^5.3.0:
59 | version "5.5.2"
60 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965"
61 | dependencies:
62 | co "^4.6.0"
63 | fast-deep-equal "^1.0.0"
64 | fast-json-stable-stringify "^2.0.0"
65 | json-schema-traverse "^0.3.0"
66 |
67 | ajv@^6.0.1:
68 | version "6.2.0"
69 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.2.0.tgz#afac295bbaa0152449e522742e4547c1ae9328d2"
70 | dependencies:
71 | fast-deep-equal "^1.0.0"
72 | fast-json-stable-stringify "^2.0.0"
73 | json-schema-traverse "^0.3.0"
74 |
75 | align-text@^0.1.1, align-text@^0.1.3:
76 | version "0.1.4"
77 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117"
78 | dependencies:
79 | kind-of "^3.0.2"
80 | longest "^1.0.1"
81 | repeat-string "^1.5.2"
82 |
83 | amdefine@>=0.0.4:
84 | version "1.0.1"
85 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5"
86 |
87 | ansi-escapes@^3.0.0:
88 | version "3.0.0"
89 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92"
90 |
91 | ansi-regex@^2.0.0:
92 | version "2.1.1"
93 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
94 |
95 | ansi-regex@^3.0.0:
96 | version "3.0.0"
97 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
98 |
99 | ansi-styles@^2.2.1:
100 | version "2.2.1"
101 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
102 |
103 | ansi-styles@^3.2.0:
104 | version "3.2.0"
105 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88"
106 | dependencies:
107 | color-convert "^1.9.0"
108 |
109 | anymatch@^1.3.0:
110 | version "1.3.2"
111 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a"
112 | dependencies:
113 | micromatch "^2.1.5"
114 | normalize-path "^2.0.0"
115 |
116 | append-transform@^0.4.0:
117 | version "0.4.0"
118 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991"
119 | dependencies:
120 | default-require-extensions "^1.0.0"
121 |
122 | aproba@^1.0.3:
123 | version "1.2.0"
124 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
125 |
126 | are-we-there-yet@~1.1.2:
127 | version "1.1.4"
128 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d"
129 | dependencies:
130 | delegates "^1.0.0"
131 | readable-stream "^2.0.6"
132 |
133 | argparse@^1.0.7:
134 | version "1.0.10"
135 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
136 | dependencies:
137 | sprintf-js "~1.0.2"
138 |
139 | arr-diff@^2.0.0:
140 | version "2.0.0"
141 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf"
142 | dependencies:
143 | arr-flatten "^1.0.1"
144 |
145 | arr-flatten@^1.0.1:
146 | version "1.1.0"
147 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
148 |
149 | array-equal@^1.0.0:
150 | version "1.0.0"
151 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93"
152 |
153 | array-find-index@^1.0.1:
154 | version "1.0.2"
155 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1"
156 |
157 | array-union@^1.0.1:
158 | version "1.0.2"
159 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
160 | dependencies:
161 | array-uniq "^1.0.1"
162 |
163 | array-uniq@^1.0.1:
164 | version "1.0.3"
165 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
166 |
167 | array-unique@^0.2.1:
168 | version "0.2.1"
169 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53"
170 |
171 | arrify@^1.0.0, arrify@^1.0.1:
172 | version "1.0.1"
173 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
174 |
175 | asn1@~0.2.3:
176 | version "0.2.3"
177 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
178 |
179 | assert-plus@1.0.0, assert-plus@^1.0.0:
180 | version "1.0.0"
181 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
182 |
183 | assert-plus@^0.2.0:
184 | version "0.2.0"
185 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234"
186 |
187 | astral-regex@^1.0.0:
188 | version "1.0.0"
189 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9"
190 |
191 | async-limiter@~1.0.0:
192 | version "1.0.0"
193 | resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8"
194 |
195 | async@^1.4.0:
196 | version "1.5.2"
197 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a"
198 |
199 | async@^2.1.4:
200 | version "2.6.0"
201 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.0.tgz#61a29abb6fcc026fea77e56d1c6ec53a795951f4"
202 | dependencies:
203 | lodash "^4.14.0"
204 |
205 | asynckit@^0.4.0:
206 | version "0.4.0"
207 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
208 |
209 | aws-sign2@~0.6.0:
210 | version "0.6.0"
211 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f"
212 |
213 | aws-sign2@~0.7.0:
214 | version "0.7.0"
215 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"
216 |
217 | aws4@^1.2.1, aws4@^1.6.0:
218 | version "1.6.0"
219 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e"
220 |
221 | babel-code-frame@^6.22.0, babel-code-frame@^6.26.0:
222 | version "6.26.0"
223 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"
224 | dependencies:
225 | chalk "^1.1.3"
226 | esutils "^2.0.2"
227 | js-tokens "^3.0.2"
228 |
229 | babel-core@^6.0.0, babel-core@^6.26.0:
230 | version "6.26.0"
231 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8"
232 | dependencies:
233 | babel-code-frame "^6.26.0"
234 | babel-generator "^6.26.0"
235 | babel-helpers "^6.24.1"
236 | babel-messages "^6.23.0"
237 | babel-register "^6.26.0"
238 | babel-runtime "^6.26.0"
239 | babel-template "^6.26.0"
240 | babel-traverse "^6.26.0"
241 | babel-types "^6.26.0"
242 | babylon "^6.18.0"
243 | convert-source-map "^1.5.0"
244 | debug "^2.6.8"
245 | json5 "^0.5.1"
246 | lodash "^4.17.4"
247 | minimatch "^3.0.4"
248 | path-is-absolute "^1.0.1"
249 | private "^0.1.7"
250 | slash "^1.0.0"
251 | source-map "^0.5.6"
252 |
253 | babel-generator@^6.18.0, babel-generator@^6.26.0:
254 | version "6.26.1"
255 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90"
256 | dependencies:
257 | babel-messages "^6.23.0"
258 | babel-runtime "^6.26.0"
259 | babel-types "^6.26.0"
260 | detect-indent "^4.0.0"
261 | jsesc "^1.3.0"
262 | lodash "^4.17.4"
263 | source-map "^0.5.7"
264 | trim-right "^1.0.1"
265 |
266 | babel-helpers@^6.24.1:
267 | version "6.24.1"
268 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2"
269 | dependencies:
270 | babel-runtime "^6.22.0"
271 | babel-template "^6.24.1"
272 |
273 | babel-jest@^22.4.1:
274 | version "22.4.1"
275 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-22.4.1.tgz#ff53ebca45957347f27ff4666a31499fbb4c4ddd"
276 | dependencies:
277 | babel-plugin-istanbul "^4.1.5"
278 | babel-preset-jest "^22.4.1"
279 |
280 | babel-messages@^6.23.0:
281 | version "6.23.0"
282 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e"
283 | dependencies:
284 | babel-runtime "^6.22.0"
285 |
286 | babel-plugin-istanbul@^4.1.5:
287 | version "4.1.5"
288 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.5.tgz#6760cdd977f411d3e175bb064f2bc327d99b2b6e"
289 | dependencies:
290 | find-up "^2.1.0"
291 | istanbul-lib-instrument "^1.7.5"
292 | test-exclude "^4.1.1"
293 |
294 | babel-plugin-jest-hoist@^22.4.1:
295 | version "22.4.1"
296 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-22.4.1.tgz#d712fe5da8b6965f3191dacddbefdbdf4fb66d63"
297 |
298 | babel-plugin-syntax-object-rest-spread@^6.13.0:
299 | version "6.13.0"
300 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5"
301 |
302 | babel-preset-jest@^22.4.1:
303 | version "22.4.1"
304 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-22.4.1.tgz#efa2e5f5334242a9457a068452d7d09735db172a"
305 | dependencies:
306 | babel-plugin-jest-hoist "^22.4.1"
307 | babel-plugin-syntax-object-rest-spread "^6.13.0"
308 |
309 | babel-register@^6.26.0:
310 | version "6.26.0"
311 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071"
312 | dependencies:
313 | babel-core "^6.26.0"
314 | babel-runtime "^6.26.0"
315 | core-js "^2.5.0"
316 | home-or-tmp "^2.0.0"
317 | lodash "^4.17.4"
318 | mkdirp "^0.5.1"
319 | source-map-support "^0.4.15"
320 |
321 | babel-runtime@^6.22.0, babel-runtime@^6.26.0:
322 | version "6.26.0"
323 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
324 | dependencies:
325 | core-js "^2.4.0"
326 | regenerator-runtime "^0.11.0"
327 |
328 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0:
329 | version "6.26.0"
330 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02"
331 | dependencies:
332 | babel-runtime "^6.26.0"
333 | babel-traverse "^6.26.0"
334 | babel-types "^6.26.0"
335 | babylon "^6.18.0"
336 | lodash "^4.17.4"
337 |
338 | babel-traverse@^6.18.0, babel-traverse@^6.26.0:
339 | version "6.26.0"
340 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee"
341 | dependencies:
342 | babel-code-frame "^6.26.0"
343 | babel-messages "^6.23.0"
344 | babel-runtime "^6.26.0"
345 | babel-types "^6.26.0"
346 | babylon "^6.18.0"
347 | debug "^2.6.8"
348 | globals "^9.18.0"
349 | invariant "^2.2.2"
350 | lodash "^4.17.4"
351 |
352 | babel-types@^6.18.0, babel-types@^6.26.0:
353 | version "6.26.0"
354 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497"
355 | dependencies:
356 | babel-runtime "^6.26.0"
357 | esutils "^2.0.2"
358 | lodash "^4.17.4"
359 | to-fast-properties "^1.0.3"
360 |
361 | babylon@^6.18.0:
362 | version "6.18.0"
363 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3"
364 |
365 | balanced-match@^1.0.0:
366 | version "1.0.0"
367 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
368 |
369 | bcrypt-pbkdf@^1.0.0:
370 | version "1.0.1"
371 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d"
372 | dependencies:
373 | tweetnacl "^0.14.3"
374 |
375 | block-stream@*:
376 | version "0.0.9"
377 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a"
378 | dependencies:
379 | inherits "~2.0.0"
380 |
381 | boom@2.x.x:
382 | version "2.10.1"
383 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f"
384 | dependencies:
385 | hoek "2.x.x"
386 |
387 | boom@4.x.x:
388 | version "4.3.1"
389 | resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31"
390 | dependencies:
391 | hoek "4.x.x"
392 |
393 | boom@5.x.x:
394 | version "5.2.0"
395 | resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02"
396 | dependencies:
397 | hoek "4.x.x"
398 |
399 | brace-expansion@^1.1.7:
400 | version "1.1.11"
401 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
402 | dependencies:
403 | balanced-match "^1.0.0"
404 | concat-map "0.0.1"
405 |
406 | braces@^1.8.2:
407 | version "1.8.5"
408 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7"
409 | dependencies:
410 | expand-range "^1.8.1"
411 | preserve "^0.2.0"
412 | repeat-element "^1.1.2"
413 |
414 | browser-process-hrtime@^0.1.2:
415 | version "0.1.2"
416 | resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-0.1.2.tgz#425d68a58d3447f02a04aa894187fce8af8b7b8e"
417 |
418 | browser-resolve@^1.11.2:
419 | version "1.11.2"
420 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce"
421 | dependencies:
422 | resolve "1.1.7"
423 |
424 | bser@^2.0.0:
425 | version "2.0.0"
426 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719"
427 | dependencies:
428 | node-int64 "^0.4.0"
429 |
430 | builtin-modules@^1.0.0, builtin-modules@^1.1.1:
431 | version "1.1.1"
432 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
433 |
434 | caller-path@^0.1.0:
435 | version "0.1.0"
436 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f"
437 | dependencies:
438 | callsites "^0.2.0"
439 |
440 | callsites@^0.2.0:
441 | version "0.2.0"
442 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca"
443 |
444 | callsites@^2.0.0:
445 | version "2.0.0"
446 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50"
447 |
448 | camelcase-keys@^2.0.0:
449 | version "2.1.0"
450 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7"
451 | dependencies:
452 | camelcase "^2.0.0"
453 | map-obj "^1.0.0"
454 |
455 | camelcase-keys@^4.0.0:
456 | version "4.2.0"
457 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-4.2.0.tgz#a2aa5fb1af688758259c32c141426d78923b9b77"
458 | dependencies:
459 | camelcase "^4.1.0"
460 | map-obj "^2.0.0"
461 | quick-lru "^1.0.0"
462 |
463 | camelcase@^1.0.2:
464 | version "1.2.1"
465 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39"
466 |
467 | camelcase@^2.0.0:
468 | version "2.1.1"
469 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f"
470 |
471 | camelcase@^4.1.0:
472 | version "4.1.0"
473 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd"
474 |
475 | caseless@~0.12.0:
476 | version "0.12.0"
477 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
478 |
479 | center-align@^0.1.1:
480 | version "0.1.3"
481 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad"
482 | dependencies:
483 | align-text "^0.1.3"
484 | lazy-cache "^1.0.3"
485 |
486 | chalk@^1.1.3:
487 | version "1.1.3"
488 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
489 | dependencies:
490 | ansi-styles "^2.2.1"
491 | escape-string-regexp "^1.0.2"
492 | has-ansi "^2.0.0"
493 | strip-ansi "^3.0.0"
494 | supports-color "^2.0.0"
495 |
496 | chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.1:
497 | version "2.3.1"
498 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.1.tgz#523fe2678aec7b04e8041909292fe8b17059b796"
499 | dependencies:
500 | ansi-styles "^3.2.0"
501 | escape-string-regexp "^1.0.5"
502 | supports-color "^5.2.0"
503 |
504 | chardet@^0.4.0:
505 | version "0.4.2"
506 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2"
507 |
508 | ci-info@^1.0.0:
509 | version "1.1.2"
510 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.2.tgz#03561259db48d0474c8bdc90f5b47b068b6bbfb4"
511 |
512 | circular-json@^0.3.1:
513 | version "0.3.3"
514 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66"
515 |
516 | cli-cursor@^2.1.0:
517 | version "2.1.0"
518 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5"
519 | dependencies:
520 | restore-cursor "^2.0.0"
521 |
522 | cli-width@^2.0.0:
523 | version "2.2.0"
524 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639"
525 |
526 | cliui@^2.1.0:
527 | version "2.1.0"
528 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1"
529 | dependencies:
530 | center-align "^0.1.1"
531 | right-align "^0.1.1"
532 | wordwrap "0.0.2"
533 |
534 | cliui@^4.0.0:
535 | version "4.0.0"
536 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.0.0.tgz#743d4650e05f36d1ed2575b59638d87322bfbbcc"
537 | dependencies:
538 | string-width "^2.1.1"
539 | strip-ansi "^4.0.0"
540 | wrap-ansi "^2.0.0"
541 |
542 | co@^4.6.0:
543 | version "4.6.0"
544 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
545 |
546 | code-point-at@^1.0.0:
547 | version "1.1.0"
548 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
549 |
550 | color-convert@^1.9.0:
551 | version "1.9.1"
552 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed"
553 | dependencies:
554 | color-name "^1.1.1"
555 |
556 | color-name@^1.1.1:
557 | version "1.1.3"
558 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
559 |
560 | combined-stream@1.0.6, combined-stream@^1.0.5, combined-stream@~1.0.5:
561 | version "1.0.6"
562 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818"
563 | dependencies:
564 | delayed-stream "~1.0.0"
565 |
566 | concat-map@0.0.1:
567 | version "0.0.1"
568 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
569 |
570 | concat-stream@^1.6.0:
571 | version "1.6.0"
572 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7"
573 | dependencies:
574 | inherits "^2.0.3"
575 | readable-stream "^2.2.2"
576 | typedarray "^0.0.6"
577 |
578 | console-control-strings@^1.0.0, console-control-strings@~1.1.0:
579 | version "1.1.0"
580 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
581 |
582 | contains-path@^0.1.0:
583 | version "0.1.0"
584 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a"
585 |
586 | content-type-parser@^1.0.2:
587 | version "1.0.2"
588 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.2.tgz#caabe80623e63638b2502fd4c7f12ff4ce2352e7"
589 |
590 | convert-source-map@^1.4.0, convert-source-map@^1.5.0:
591 | version "1.5.1"
592 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5"
593 |
594 | core-js@^2.4.0, core-js@^2.5.0:
595 | version "2.5.3"
596 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.3.tgz#8acc38345824f16d8365b7c9b4259168e8ed603e"
597 |
598 | core-util-is@1.0.2, core-util-is@~1.0.0:
599 | version "1.0.2"
600 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
601 |
602 | cross-spawn@^5.0.1, cross-spawn@^5.1.0:
603 | version "5.1.0"
604 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449"
605 | dependencies:
606 | lru-cache "^4.0.1"
607 | shebang-command "^1.2.0"
608 | which "^1.2.9"
609 |
610 | cryptiles@2.x.x:
611 | version "2.0.5"
612 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8"
613 | dependencies:
614 | boom "2.x.x"
615 |
616 | cryptiles@3.x.x:
617 | version "3.1.2"
618 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe"
619 | dependencies:
620 | boom "5.x.x"
621 |
622 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0":
623 | version "0.3.2"
624 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b"
625 |
626 | "cssstyle@>= 0.2.37 < 0.3.0":
627 | version "0.2.37"
628 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54"
629 | dependencies:
630 | cssom "0.3.x"
631 |
632 | currently-unhandled@^0.4.1:
633 | version "0.4.1"
634 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea"
635 | dependencies:
636 | array-find-index "^1.0.1"
637 |
638 | dashdash@^1.12.0:
639 | version "1.14.1"
640 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
641 | dependencies:
642 | assert-plus "^1.0.0"
643 |
644 | debug@^2.2.0, debug@^2.6.8, debug@^2.6.9:
645 | version "2.6.9"
646 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
647 | dependencies:
648 | ms "2.0.0"
649 |
650 | debug@^3.1.0:
651 | version "3.1.0"
652 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261"
653 | dependencies:
654 | ms "2.0.0"
655 |
656 | decamelize-keys@^1.0.0:
657 | version "1.1.0"
658 | resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.0.tgz#d171a87933252807eb3cb61dc1c1445d078df2d9"
659 | dependencies:
660 | decamelize "^1.1.0"
661 | map-obj "^1.0.0"
662 |
663 | decamelize@^1.0.0, decamelize@^1.1.0, decamelize@^1.1.1, decamelize@^1.1.2:
664 | version "1.2.0"
665 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
666 |
667 | deep-extend@~0.4.0:
668 | version "0.4.2"
669 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f"
670 |
671 | deep-is@~0.1.3:
672 | version "0.1.3"
673 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
674 |
675 | default-require-extensions@^1.0.0:
676 | version "1.0.0"
677 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8"
678 | dependencies:
679 | strip-bom "^2.0.0"
680 |
681 | define-properties@^1.1.2:
682 | version "1.1.2"
683 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94"
684 | dependencies:
685 | foreach "^2.0.5"
686 | object-keys "^1.0.8"
687 |
688 | del@^2.0.2:
689 | version "2.2.2"
690 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8"
691 | dependencies:
692 | globby "^5.0.0"
693 | is-path-cwd "^1.0.0"
694 | is-path-in-cwd "^1.0.0"
695 | object-assign "^4.0.1"
696 | pify "^2.0.0"
697 | pinkie-promise "^2.0.0"
698 | rimraf "^2.2.8"
699 |
700 | delayed-stream@~1.0.0:
701 | version "1.0.0"
702 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
703 |
704 | delegates@^1.0.0:
705 | version "1.0.0"
706 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
707 |
708 | detect-indent@^4.0.0:
709 | version "4.0.0"
710 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208"
711 | dependencies:
712 | repeating "^2.0.0"
713 |
714 | detect-libc@^1.0.2:
715 | version "1.0.3"
716 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"
717 |
718 | detect-newline@^2.1.0:
719 | version "2.1.0"
720 | resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2"
721 |
722 | diff@^3.2.0:
723 | version "3.4.0"
724 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.4.0.tgz#b1d85507daf3964828de54b37d0d73ba67dda56c"
725 |
726 | doctrine@1.5.0:
727 | version "1.5.0"
728 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa"
729 | dependencies:
730 | esutils "^2.0.2"
731 | isarray "^1.0.0"
732 |
733 | doctrine@^2.1.0:
734 | version "2.1.0"
735 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d"
736 | dependencies:
737 | esutils "^2.0.2"
738 |
739 | domexception@^1.0.0:
740 | version "1.0.1"
741 | resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90"
742 | dependencies:
743 | webidl-conversions "^4.0.2"
744 |
745 | ecc-jsbn@~0.1.1:
746 | version "0.1.1"
747 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505"
748 | dependencies:
749 | jsbn "~0.1.0"
750 |
751 | error-ex@^1.2.0, error-ex@^1.3.1:
752 | version "1.3.1"
753 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc"
754 | dependencies:
755 | is-arrayish "^0.2.1"
756 |
757 | es-abstract@^1.5.1:
758 | version "1.10.0"
759 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.10.0.tgz#1ecb36c197842a00d8ee4c2dfd8646bb97d60864"
760 | dependencies:
761 | es-to-primitive "^1.1.1"
762 | function-bind "^1.1.1"
763 | has "^1.0.1"
764 | is-callable "^1.1.3"
765 | is-regex "^1.0.4"
766 |
767 | es-to-primitive@^1.1.1:
768 | version "1.1.1"
769 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d"
770 | dependencies:
771 | is-callable "^1.1.1"
772 | is-date-object "^1.0.1"
773 | is-symbol "^1.0.1"
774 |
775 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
776 | version "1.0.5"
777 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
778 |
779 | escodegen@^1.9.0:
780 | version "1.9.1"
781 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.9.1.tgz#dbae17ef96c8e4bedb1356f4504fa4cc2f7cb7e2"
782 | dependencies:
783 | esprima "^3.1.3"
784 | estraverse "^4.2.0"
785 | esutils "^2.0.2"
786 | optionator "^0.8.1"
787 | optionalDependencies:
788 | source-map "~0.6.1"
789 |
790 | eslint-config-airbnb-base@^12.1.0:
791 | version "12.1.0"
792 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-12.1.0.tgz#386441e54a12ccd957b0a92564a4bafebd747944"
793 | dependencies:
794 | eslint-restricted-globals "^0.1.1"
795 |
796 | eslint-import-resolver-node@^0.3.1:
797 | version "0.3.2"
798 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.2.tgz#58f15fb839b8d0576ca980413476aab2472db66a"
799 | dependencies:
800 | debug "^2.6.9"
801 | resolve "^1.5.0"
802 |
803 | eslint-module-utils@^2.1.1:
804 | version "2.1.1"
805 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.1.1.tgz#abaec824177613b8a95b299639e1b6facf473449"
806 | dependencies:
807 | debug "^2.6.8"
808 | pkg-dir "^1.0.0"
809 |
810 | eslint-plugin-import@^2.9.0:
811 | version "2.9.0"
812 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.9.0.tgz#26002efbfca5989b7288ac047508bd24f217b169"
813 | dependencies:
814 | builtin-modules "^1.1.1"
815 | contains-path "^0.1.0"
816 | debug "^2.6.8"
817 | doctrine "1.5.0"
818 | eslint-import-resolver-node "^0.3.1"
819 | eslint-module-utils "^2.1.1"
820 | has "^1.0.1"
821 | lodash "^4.17.4"
822 | minimatch "^3.0.3"
823 | read-pkg-up "^2.0.0"
824 |
825 | eslint-plugin-jest@^21.12.2:
826 | version "21.12.2"
827 | resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-21.12.2.tgz#325f7c6a5078aed51ea087c33c26792337b5ba37"
828 |
829 | eslint-restricted-globals@^0.1.1:
830 | version "0.1.1"
831 | resolved "https://registry.yarnpkg.com/eslint-restricted-globals/-/eslint-restricted-globals-0.1.1.tgz#35f0d5cbc64c2e3ed62e93b4b1a7af05ba7ed4d7"
832 |
833 | eslint-scope@^3.7.1:
834 | version "3.7.1"
835 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8"
836 | dependencies:
837 | esrecurse "^4.1.0"
838 | estraverse "^4.1.1"
839 |
840 | eslint-visitor-keys@^1.0.0:
841 | version "1.0.0"
842 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d"
843 |
844 | eslint@^4.18.1:
845 | version "4.18.1"
846 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.18.1.tgz#b9138440cb1e98b2f44a0d578c6ecf8eae6150b0"
847 | dependencies:
848 | ajv "^5.3.0"
849 | babel-code-frame "^6.22.0"
850 | chalk "^2.1.0"
851 | concat-stream "^1.6.0"
852 | cross-spawn "^5.1.0"
853 | debug "^3.1.0"
854 | doctrine "^2.1.0"
855 | eslint-scope "^3.7.1"
856 | eslint-visitor-keys "^1.0.0"
857 | espree "^3.5.2"
858 | esquery "^1.0.0"
859 | esutils "^2.0.2"
860 | file-entry-cache "^2.0.0"
861 | functional-red-black-tree "^1.0.1"
862 | glob "^7.1.2"
863 | globals "^11.0.1"
864 | ignore "^3.3.3"
865 | imurmurhash "^0.1.4"
866 | inquirer "^3.0.6"
867 | is-resolvable "^1.0.0"
868 | js-yaml "^3.9.1"
869 | json-stable-stringify-without-jsonify "^1.0.1"
870 | levn "^0.3.0"
871 | lodash "^4.17.4"
872 | minimatch "^3.0.2"
873 | mkdirp "^0.5.1"
874 | natural-compare "^1.4.0"
875 | optionator "^0.8.2"
876 | path-is-inside "^1.0.2"
877 | pluralize "^7.0.0"
878 | progress "^2.0.0"
879 | require-uncached "^1.0.3"
880 | semver "^5.3.0"
881 | strip-ansi "^4.0.0"
882 | strip-json-comments "~2.0.1"
883 | table "^4.0.1"
884 | text-table "~0.2.0"
885 |
886 | espree@^3.5.2:
887 | version "3.5.3"
888 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.3.tgz#931e0af64e7fbbed26b050a29daad1fc64799fa6"
889 | dependencies:
890 | acorn "^5.4.0"
891 | acorn-jsx "^3.0.0"
892 |
893 | esprima@^3.1.3:
894 | version "3.1.3"
895 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633"
896 |
897 | esprima@^4.0.0:
898 | version "4.0.0"
899 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804"
900 |
901 | esquery@^1.0.0:
902 | version "1.0.0"
903 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa"
904 | dependencies:
905 | estraverse "^4.0.0"
906 |
907 | esrecurse@^4.1.0:
908 | version "4.2.1"
909 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf"
910 | dependencies:
911 | estraverse "^4.1.0"
912 |
913 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0:
914 | version "4.2.0"
915 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13"
916 |
917 | esutils@^2.0.2:
918 | version "2.0.2"
919 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
920 |
921 | exec-sh@^0.2.0:
922 | version "0.2.1"
923 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.1.tgz#163b98a6e89e6b65b47c2a28d215bc1f63989c38"
924 | dependencies:
925 | merge "^1.1.3"
926 |
927 | execa@^0.7.0:
928 | version "0.7.0"
929 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777"
930 | dependencies:
931 | cross-spawn "^5.0.1"
932 | get-stream "^3.0.0"
933 | is-stream "^1.1.0"
934 | npm-run-path "^2.0.0"
935 | p-finally "^1.0.0"
936 | signal-exit "^3.0.0"
937 | strip-eof "^1.0.0"
938 |
939 | exit@^0.1.2:
940 | version "0.1.2"
941 | resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c"
942 |
943 | expand-brackets@^0.1.4:
944 | version "0.1.5"
945 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b"
946 | dependencies:
947 | is-posix-bracket "^0.1.0"
948 |
949 | expand-range@^1.8.1:
950 | version "1.8.2"
951 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337"
952 | dependencies:
953 | fill-range "^2.1.0"
954 |
955 | expect@^22.4.0:
956 | version "22.4.0"
957 | resolved "https://registry.yarnpkg.com/expect/-/expect-22.4.0.tgz#371edf1ae15b83b5bf5ec34b42f1584660a36c16"
958 | dependencies:
959 | ansi-styles "^3.2.0"
960 | jest-diff "^22.4.0"
961 | jest-get-type "^22.1.0"
962 | jest-matcher-utils "^22.4.0"
963 | jest-message-util "^22.4.0"
964 | jest-regex-util "^22.1.0"
965 |
966 | extend@~3.0.0, extend@~3.0.1:
967 | version "3.0.1"
968 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444"
969 |
970 | external-editor@^2.0.4:
971 | version "2.1.0"
972 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.1.0.tgz#3d026a21b7f95b5726387d4200ac160d372c3b48"
973 | dependencies:
974 | chardet "^0.4.0"
975 | iconv-lite "^0.4.17"
976 | tmp "^0.0.33"
977 |
978 | extglob@^0.3.1:
979 | version "0.3.2"
980 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1"
981 | dependencies:
982 | is-extglob "^1.0.0"
983 |
984 | extsprintf@1.3.0:
985 | version "1.3.0"
986 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05"
987 |
988 | extsprintf@^1.2.0:
989 | version "1.4.0"
990 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f"
991 |
992 | fast-deep-equal@^1.0.0:
993 | version "1.1.0"
994 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614"
995 |
996 | fast-json-stable-stringify@^2.0.0:
997 | version "2.0.0"
998 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2"
999 |
1000 | fast-levenshtein@~2.0.4:
1001 | version "2.0.6"
1002 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
1003 |
1004 | fb-watchman@^2.0.0:
1005 | version "2.0.0"
1006 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58"
1007 | dependencies:
1008 | bser "^2.0.0"
1009 |
1010 | figures@^2.0.0:
1011 | version "2.0.0"
1012 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962"
1013 | dependencies:
1014 | escape-string-regexp "^1.0.5"
1015 |
1016 | file-entry-cache@^2.0.0:
1017 | version "2.0.0"
1018 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361"
1019 | dependencies:
1020 | flat-cache "^1.2.1"
1021 | object-assign "^4.0.1"
1022 |
1023 | filename-regex@^2.0.0:
1024 | version "2.0.1"
1025 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26"
1026 |
1027 | fileset@^2.0.2:
1028 | version "2.0.3"
1029 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0"
1030 | dependencies:
1031 | glob "^7.0.3"
1032 | minimatch "^3.0.3"
1033 |
1034 | fill-range@^2.1.0:
1035 | version "2.2.3"
1036 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723"
1037 | dependencies:
1038 | is-number "^2.1.0"
1039 | isobject "^2.0.0"
1040 | randomatic "^1.1.3"
1041 | repeat-element "^1.1.2"
1042 | repeat-string "^1.5.2"
1043 |
1044 | find-up@^1.0.0:
1045 | version "1.1.2"
1046 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"
1047 | dependencies:
1048 | path-exists "^2.0.0"
1049 | pinkie-promise "^2.0.0"
1050 |
1051 | find-up@^2.0.0, find-up@^2.1.0:
1052 | version "2.1.0"
1053 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
1054 | dependencies:
1055 | locate-path "^2.0.0"
1056 |
1057 | flat-cache@^1.2.1:
1058 | version "1.3.0"
1059 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.0.tgz#d3030b32b38154f4e3b7e9c709f490f7ef97c481"
1060 | dependencies:
1061 | circular-json "^0.3.1"
1062 | del "^2.0.2"
1063 | graceful-fs "^4.1.2"
1064 | write "^0.2.1"
1065 |
1066 | for-in@^1.0.1:
1067 | version "1.0.2"
1068 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
1069 |
1070 | for-own@^0.1.4:
1071 | version "0.1.5"
1072 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce"
1073 | dependencies:
1074 | for-in "^1.0.1"
1075 |
1076 | foreach@^2.0.5:
1077 | version "2.0.5"
1078 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99"
1079 |
1080 | forever-agent@~0.6.1:
1081 | version "0.6.1"
1082 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
1083 |
1084 | form-data@~2.1.1:
1085 | version "2.1.4"
1086 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1"
1087 | dependencies:
1088 | asynckit "^0.4.0"
1089 | combined-stream "^1.0.5"
1090 | mime-types "^2.1.12"
1091 |
1092 | form-data@~2.3.1:
1093 | version "2.3.2"
1094 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.2.tgz#4970498be604c20c005d4f5c23aecd21d6b49099"
1095 | dependencies:
1096 | asynckit "^0.4.0"
1097 | combined-stream "1.0.6"
1098 | mime-types "^2.1.12"
1099 |
1100 | fs.realpath@^1.0.0:
1101 | version "1.0.0"
1102 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
1103 |
1104 | fsevents@^1.1.1:
1105 | version "1.1.3"
1106 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8"
1107 | dependencies:
1108 | nan "^2.3.0"
1109 | node-pre-gyp "^0.6.39"
1110 |
1111 | fstream-ignore@^1.0.5:
1112 | version "1.0.5"
1113 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105"
1114 | dependencies:
1115 | fstream "^1.0.0"
1116 | inherits "2"
1117 | minimatch "^3.0.0"
1118 |
1119 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2:
1120 | version "1.0.11"
1121 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171"
1122 | dependencies:
1123 | graceful-fs "^4.1.2"
1124 | inherits "~2.0.0"
1125 | mkdirp ">=0.5 0"
1126 | rimraf "2"
1127 |
1128 | function-bind@^1.0.2, function-bind@^1.1.1:
1129 | version "1.1.1"
1130 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
1131 |
1132 | functional-red-black-tree@^1.0.1:
1133 | version "1.0.1"
1134 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
1135 |
1136 | gauge@~2.7.3:
1137 | version "2.7.4"
1138 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
1139 | dependencies:
1140 | aproba "^1.0.3"
1141 | console-control-strings "^1.0.0"
1142 | has-unicode "^2.0.0"
1143 | object-assign "^4.1.0"
1144 | signal-exit "^3.0.0"
1145 | string-width "^1.0.1"
1146 | strip-ansi "^3.0.1"
1147 | wide-align "^1.1.0"
1148 |
1149 | get-caller-file@^1.0.1:
1150 | version "1.0.2"
1151 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5"
1152 |
1153 | get-stdin@^4.0.1:
1154 | version "4.0.1"
1155 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe"
1156 |
1157 | get-stream@^3.0.0:
1158 | version "3.0.0"
1159 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14"
1160 |
1161 | getpass@^0.1.1:
1162 | version "0.1.7"
1163 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa"
1164 | dependencies:
1165 | assert-plus "^1.0.0"
1166 |
1167 | github-url-from-git@^1.5.0:
1168 | version "1.5.0"
1169 | resolved "https://registry.yarnpkg.com/github-url-from-git/-/github-url-from-git-1.5.0.tgz#f985fedcc0a9aa579dc88d7aff068d55cc6251a0"
1170 |
1171 | glob-base@^0.3.0:
1172 | version "0.3.0"
1173 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"
1174 | dependencies:
1175 | glob-parent "^2.0.0"
1176 | is-glob "^2.0.0"
1177 |
1178 | glob-parent@^2.0.0:
1179 | version "2.0.0"
1180 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28"
1181 | dependencies:
1182 | is-glob "^2.0.0"
1183 |
1184 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2:
1185 | version "7.1.2"
1186 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15"
1187 | dependencies:
1188 | fs.realpath "^1.0.0"
1189 | inflight "^1.0.4"
1190 | inherits "2"
1191 | minimatch "^3.0.4"
1192 | once "^1.3.0"
1193 | path-is-absolute "^1.0.0"
1194 |
1195 | globals@^11.0.1:
1196 | version "11.3.0"
1197 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.3.0.tgz#e04fdb7b9796d8adac9c8f64c14837b2313378b0"
1198 |
1199 | globals@^9.18.0:
1200 | version "9.18.0"
1201 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a"
1202 |
1203 | globby@^5.0.0:
1204 | version "5.0.0"
1205 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d"
1206 | dependencies:
1207 | array-union "^1.0.1"
1208 | arrify "^1.0.0"
1209 | glob "^7.0.3"
1210 | object-assign "^4.0.1"
1211 | pify "^2.0.0"
1212 | pinkie-promise "^2.0.0"
1213 |
1214 | graceful-fs@^4.1.11, graceful-fs@^4.1.2:
1215 | version "4.1.11"
1216 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
1217 |
1218 | growly@^1.3.0:
1219 | version "1.3.0"
1220 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081"
1221 |
1222 | handlebars@^4.0.11, handlebars@^4.0.3:
1223 | version "4.0.11"
1224 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.11.tgz#630a35dfe0294bc281edae6ffc5d329fc7982dcc"
1225 | dependencies:
1226 | async "^1.4.0"
1227 | optimist "^0.6.1"
1228 | source-map "^0.4.4"
1229 | optionalDependencies:
1230 | uglify-js "^2.6"
1231 |
1232 | har-schema@^1.0.5:
1233 | version "1.0.5"
1234 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e"
1235 |
1236 | har-schema@^2.0.0:
1237 | version "2.0.0"
1238 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92"
1239 |
1240 | har-validator@~4.2.1:
1241 | version "4.2.1"
1242 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a"
1243 | dependencies:
1244 | ajv "^4.9.1"
1245 | har-schema "^1.0.5"
1246 |
1247 | har-validator@~5.0.3:
1248 | version "5.0.3"
1249 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd"
1250 | dependencies:
1251 | ajv "^5.1.0"
1252 | har-schema "^2.0.0"
1253 |
1254 | has-ansi@^2.0.0:
1255 | version "2.0.0"
1256 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
1257 | dependencies:
1258 | ansi-regex "^2.0.0"
1259 |
1260 | has-flag@^1.0.0:
1261 | version "1.0.0"
1262 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa"
1263 |
1264 | has-flag@^3.0.0:
1265 | version "3.0.0"
1266 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
1267 |
1268 | has-unicode@^2.0.0:
1269 | version "2.0.1"
1270 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
1271 |
1272 | has@^1.0.1:
1273 | version "1.0.1"
1274 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28"
1275 | dependencies:
1276 | function-bind "^1.0.2"
1277 |
1278 | hawk@3.1.3, hawk@~3.1.3:
1279 | version "3.1.3"
1280 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4"
1281 | dependencies:
1282 | boom "2.x.x"
1283 | cryptiles "2.x.x"
1284 | hoek "2.x.x"
1285 | sntp "1.x.x"
1286 |
1287 | hawk@~6.0.2:
1288 | version "6.0.2"
1289 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038"
1290 | dependencies:
1291 | boom "4.x.x"
1292 | cryptiles "3.x.x"
1293 | hoek "4.x.x"
1294 | sntp "2.x.x"
1295 |
1296 | hoek@2.x.x:
1297 | version "2.16.3"
1298 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed"
1299 |
1300 | hoek@4.x.x:
1301 | version "4.2.1"
1302 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.1.tgz#9634502aa12c445dd5a7c5734b572bb8738aacbb"
1303 |
1304 | home-or-tmp@^2.0.0:
1305 | version "2.0.0"
1306 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8"
1307 | dependencies:
1308 | os-homedir "^1.0.0"
1309 | os-tmpdir "^1.0.1"
1310 |
1311 | hosted-git-info@^2.1.4:
1312 | version "2.5.0"
1313 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c"
1314 |
1315 | html-encoding-sniffer@^1.0.2:
1316 | version "1.0.2"
1317 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8"
1318 | dependencies:
1319 | whatwg-encoding "^1.0.1"
1320 |
1321 | http-signature@~1.1.0:
1322 | version "1.1.1"
1323 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf"
1324 | dependencies:
1325 | assert-plus "^0.2.0"
1326 | jsprim "^1.2.2"
1327 | sshpk "^1.7.0"
1328 |
1329 | http-signature@~1.2.0:
1330 | version "1.2.0"
1331 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1"
1332 | dependencies:
1333 | assert-plus "^1.0.0"
1334 | jsprim "^1.2.2"
1335 | sshpk "^1.7.0"
1336 |
1337 | humanize-duration@^3.12.1:
1338 | version "3.12.1"
1339 | resolved "https://registry.yarnpkg.com/humanize-duration/-/humanize-duration-3.12.1.tgz#e9a531519d001ee600b6400fc353fed4fa3b235f"
1340 |
1341 | iconv-lite@0.4.19, iconv-lite@^0.4.17:
1342 | version "0.4.19"
1343 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b"
1344 |
1345 | ignore@^3.3.3:
1346 | version "3.3.7"
1347 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.7.tgz#612289bfb3c220e186a58118618d5be8c1bab021"
1348 |
1349 | import-local@^1.0.0:
1350 | version "1.0.0"
1351 | resolved "https://registry.yarnpkg.com/import-local/-/import-local-1.0.0.tgz#5e4ffdc03f4fe6c009c6729beb29631c2f8227bc"
1352 | dependencies:
1353 | pkg-dir "^2.0.0"
1354 | resolve-cwd "^2.0.0"
1355 |
1356 | imurmurhash@^0.1.4:
1357 | version "0.1.4"
1358 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
1359 |
1360 | indent-string@^2.1.0:
1361 | version "2.1.0"
1362 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80"
1363 | dependencies:
1364 | repeating "^2.0.0"
1365 |
1366 | indent-string@^3.0.0:
1367 | version "3.2.0"
1368 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289"
1369 |
1370 | inflight@^1.0.4:
1371 | version "1.0.6"
1372 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
1373 | dependencies:
1374 | once "^1.3.0"
1375 | wrappy "1"
1376 |
1377 | inherits@2, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.3:
1378 | version "2.0.3"
1379 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
1380 |
1381 | ini@~1.3.0:
1382 | version "1.3.5"
1383 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927"
1384 |
1385 | inquirer@^3.0.6:
1386 | version "3.3.0"
1387 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9"
1388 | dependencies:
1389 | ansi-escapes "^3.0.0"
1390 | chalk "^2.0.0"
1391 | cli-cursor "^2.1.0"
1392 | cli-width "^2.0.0"
1393 | external-editor "^2.0.4"
1394 | figures "^2.0.0"
1395 | lodash "^4.3.0"
1396 | mute-stream "0.0.7"
1397 | run-async "^2.2.0"
1398 | rx-lite "^4.0.8"
1399 | rx-lite-aggregates "^4.0.8"
1400 | string-width "^2.1.0"
1401 | strip-ansi "^4.0.0"
1402 | through "^2.3.6"
1403 |
1404 | invariant@^2.2.2:
1405 | version "2.2.3"
1406 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.3.tgz#1a827dfde7dcbd7c323f0ca826be8fa7c5e9d688"
1407 | dependencies:
1408 | loose-envify "^1.0.0"
1409 |
1410 | invert-kv@^1.0.0:
1411 | version "1.0.0"
1412 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"
1413 |
1414 | is-arrayish@^0.2.1:
1415 | version "0.2.1"
1416 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
1417 |
1418 | is-buffer@^1.1.5:
1419 | version "1.1.6"
1420 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
1421 |
1422 | is-builtin-module@^1.0.0:
1423 | version "1.0.0"
1424 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe"
1425 | dependencies:
1426 | builtin-modules "^1.0.0"
1427 |
1428 | is-callable@^1.1.1, is-callable@^1.1.3:
1429 | version "1.1.3"
1430 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2"
1431 |
1432 | is-ci@^1.0.10:
1433 | version "1.1.0"
1434 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.1.0.tgz#247e4162e7860cebbdaf30b774d6b0ac7dcfe7a5"
1435 | dependencies:
1436 | ci-info "^1.0.0"
1437 |
1438 | is-date-object@^1.0.1:
1439 | version "1.0.1"
1440 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16"
1441 |
1442 | is-dotfile@^1.0.0:
1443 | version "1.0.3"
1444 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1"
1445 |
1446 | is-equal-shallow@^0.1.3:
1447 | version "0.1.3"
1448 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534"
1449 | dependencies:
1450 | is-primitive "^2.0.0"
1451 |
1452 | is-extendable@^0.1.1:
1453 | version "0.1.1"
1454 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
1455 |
1456 | is-extglob@^1.0.0:
1457 | version "1.0.0"
1458 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
1459 |
1460 | is-finite@^1.0.0:
1461 | version "1.0.2"
1462 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa"
1463 | dependencies:
1464 | number-is-nan "^1.0.0"
1465 |
1466 | is-fullwidth-code-point@^1.0.0:
1467 | version "1.0.0"
1468 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
1469 | dependencies:
1470 | number-is-nan "^1.0.0"
1471 |
1472 | is-fullwidth-code-point@^2.0.0:
1473 | version "2.0.0"
1474 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
1475 |
1476 | is-generator-fn@^1.0.0:
1477 | version "1.0.0"
1478 | resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-1.0.0.tgz#969d49e1bb3329f6bb7f09089be26578b2ddd46a"
1479 |
1480 | is-glob@^2.0.0, is-glob@^2.0.1:
1481 | version "2.0.1"
1482 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863"
1483 | dependencies:
1484 | is-extglob "^1.0.0"
1485 |
1486 | is-number@^2.1.0:
1487 | version "2.1.0"
1488 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f"
1489 | dependencies:
1490 | kind-of "^3.0.2"
1491 |
1492 | is-number@^3.0.0:
1493 | version "3.0.0"
1494 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
1495 | dependencies:
1496 | kind-of "^3.0.2"
1497 |
1498 | is-path-cwd@^1.0.0:
1499 | version "1.0.0"
1500 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d"
1501 |
1502 | is-path-in-cwd@^1.0.0:
1503 | version "1.0.0"
1504 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc"
1505 | dependencies:
1506 | is-path-inside "^1.0.0"
1507 |
1508 | is-path-inside@^1.0.0:
1509 | version "1.0.1"
1510 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036"
1511 | dependencies:
1512 | path-is-inside "^1.0.1"
1513 |
1514 | is-plain-obj@^1.1.0:
1515 | version "1.1.0"
1516 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e"
1517 |
1518 | is-posix-bracket@^0.1.0:
1519 | version "0.1.1"
1520 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"
1521 |
1522 | is-primitive@^2.0.0:
1523 | version "2.0.0"
1524 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575"
1525 |
1526 | is-promise@^2.1.0:
1527 | version "2.1.0"
1528 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa"
1529 |
1530 | is-regex@^1.0.4:
1531 | version "1.0.4"
1532 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491"
1533 | dependencies:
1534 | has "^1.0.1"
1535 |
1536 | is-resolvable@^1.0.0:
1537 | version "1.1.0"
1538 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88"
1539 |
1540 | is-stream@^1.1.0:
1541 | version "1.1.0"
1542 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
1543 |
1544 | is-symbol@^1.0.1:
1545 | version "1.0.1"
1546 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572"
1547 |
1548 | is-typedarray@~1.0.0:
1549 | version "1.0.0"
1550 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
1551 |
1552 | is-utf8@^0.2.0:
1553 | version "0.2.1"
1554 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72"
1555 |
1556 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0:
1557 | version "1.0.0"
1558 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
1559 |
1560 | isexe@^2.0.0:
1561 | version "2.0.0"
1562 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
1563 |
1564 | isobject@^2.0.0:
1565 | version "2.1.0"
1566 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
1567 | dependencies:
1568 | isarray "1.0.0"
1569 |
1570 | isstream@~0.1.2:
1571 | version "0.1.2"
1572 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
1573 |
1574 | istanbul-api@^1.1.14:
1575 | version "1.2.2"
1576 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.2.2.tgz#e17cd519dd5ec4141197f246fdf380b75487f3b1"
1577 | dependencies:
1578 | async "^2.1.4"
1579 | fileset "^2.0.2"
1580 | istanbul-lib-coverage "^1.1.2"
1581 | istanbul-lib-hook "^1.1.0"
1582 | istanbul-lib-instrument "^1.9.2"
1583 | istanbul-lib-report "^1.1.3"
1584 | istanbul-lib-source-maps "^1.2.3"
1585 | istanbul-reports "^1.1.4"
1586 | js-yaml "^3.7.0"
1587 | mkdirp "^0.5.1"
1588 | once "^1.4.0"
1589 |
1590 | istanbul-lib-coverage@^1.1.1, istanbul-lib-coverage@^1.1.2:
1591 | version "1.1.2"
1592 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.2.tgz#4113c8ff6b7a40a1ef7350b01016331f63afde14"
1593 |
1594 | istanbul-lib-hook@^1.1.0:
1595 | version "1.1.0"
1596 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.1.0.tgz#8538d970372cb3716d53e55523dd54b557a8d89b"
1597 | dependencies:
1598 | append-transform "^0.4.0"
1599 |
1600 | istanbul-lib-instrument@^1.7.5, istanbul-lib-instrument@^1.8.0, istanbul-lib-instrument@^1.9.2:
1601 | version "1.9.2"
1602 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.9.2.tgz#84905bf47f7e0b401d6b840da7bad67086b4aab6"
1603 | dependencies:
1604 | babel-generator "^6.18.0"
1605 | babel-template "^6.16.0"
1606 | babel-traverse "^6.18.0"
1607 | babel-types "^6.18.0"
1608 | babylon "^6.18.0"
1609 | istanbul-lib-coverage "^1.1.2"
1610 | semver "^5.3.0"
1611 |
1612 | istanbul-lib-report@^1.1.3:
1613 | version "1.1.3"
1614 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.3.tgz#2df12188c0fa77990c0d2176d2d0ba3394188259"
1615 | dependencies:
1616 | istanbul-lib-coverage "^1.1.2"
1617 | mkdirp "^0.5.1"
1618 | path-parse "^1.0.5"
1619 | supports-color "^3.1.2"
1620 |
1621 | istanbul-lib-source-maps@^1.2.1, istanbul-lib-source-maps@^1.2.3:
1622 | version "1.2.3"
1623 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.3.tgz#20fb54b14e14b3fb6edb6aca3571fd2143db44e6"
1624 | dependencies:
1625 | debug "^3.1.0"
1626 | istanbul-lib-coverage "^1.1.2"
1627 | mkdirp "^0.5.1"
1628 | rimraf "^2.6.1"
1629 | source-map "^0.5.3"
1630 |
1631 | istanbul-reports@^1.1.4:
1632 | version "1.1.4"
1633 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.4.tgz#5ccba5e22b7b5a5d91d5e0a830f89be334bf97bd"
1634 | dependencies:
1635 | handlebars "^4.0.3"
1636 |
1637 | jest-changed-files@^22.2.0:
1638 | version "22.2.0"
1639 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-22.2.0.tgz#517610c4a8ca0925bdc88b0ca53bd678aa8d019e"
1640 | dependencies:
1641 | throat "^4.0.0"
1642 |
1643 | jest-cli@^22.4.2:
1644 | version "22.4.2"
1645 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-22.4.2.tgz#e6546dc651e13d164481aa3e76e53ac4f4edab06"
1646 | dependencies:
1647 | ansi-escapes "^3.0.0"
1648 | chalk "^2.0.1"
1649 | exit "^0.1.2"
1650 | glob "^7.1.2"
1651 | graceful-fs "^4.1.11"
1652 | import-local "^1.0.0"
1653 | is-ci "^1.0.10"
1654 | istanbul-api "^1.1.14"
1655 | istanbul-lib-coverage "^1.1.1"
1656 | istanbul-lib-instrument "^1.8.0"
1657 | istanbul-lib-source-maps "^1.2.1"
1658 | jest-changed-files "^22.2.0"
1659 | jest-config "^22.4.2"
1660 | jest-environment-jsdom "^22.4.1"
1661 | jest-get-type "^22.1.0"
1662 | jest-haste-map "^22.4.2"
1663 | jest-message-util "^22.4.0"
1664 | jest-regex-util "^22.1.0"
1665 | jest-resolve-dependencies "^22.1.0"
1666 | jest-runner "^22.4.2"
1667 | jest-runtime "^22.4.2"
1668 | jest-snapshot "^22.4.0"
1669 | jest-util "^22.4.1"
1670 | jest-validate "^22.4.2"
1671 | jest-worker "^22.2.2"
1672 | micromatch "^2.3.11"
1673 | node-notifier "^5.2.1"
1674 | realpath-native "^1.0.0"
1675 | rimraf "^2.5.4"
1676 | slash "^1.0.0"
1677 | string-length "^2.0.0"
1678 | strip-ansi "^4.0.0"
1679 | which "^1.2.12"
1680 | yargs "^10.0.3"
1681 |
1682 | jest-config@^22.4.2:
1683 | version "22.4.2"
1684 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-22.4.2.tgz#580ba5819bf81a5e48f4fd470e8b81834f45c855"
1685 | dependencies:
1686 | chalk "^2.0.1"
1687 | glob "^7.1.1"
1688 | jest-environment-jsdom "^22.4.1"
1689 | jest-environment-node "^22.4.1"
1690 | jest-get-type "^22.1.0"
1691 | jest-jasmine2 "^22.4.2"
1692 | jest-regex-util "^22.1.0"
1693 | jest-resolve "^22.4.2"
1694 | jest-util "^22.4.1"
1695 | jest-validate "^22.4.2"
1696 | pretty-format "^22.4.0"
1697 |
1698 | jest-diff@^22.4.0:
1699 | version "22.4.0"
1700 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-22.4.0.tgz#384c2b78519ca44ca126382df53f134289232525"
1701 | dependencies:
1702 | chalk "^2.0.1"
1703 | diff "^3.2.0"
1704 | jest-get-type "^22.1.0"
1705 | pretty-format "^22.4.0"
1706 |
1707 | jest-docblock@^22.4.0:
1708 | version "22.4.0"
1709 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-22.4.0.tgz#dbf1877e2550070cfc4d9b07a55775a0483159b8"
1710 | dependencies:
1711 | detect-newline "^2.1.0"
1712 |
1713 | jest-environment-jsdom@^22.4.1:
1714 | version "22.4.1"
1715 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-22.4.1.tgz#754f408872441740100d3917e5ec40c74de6447f"
1716 | dependencies:
1717 | jest-mock "^22.2.0"
1718 | jest-util "^22.4.1"
1719 | jsdom "^11.5.1"
1720 |
1721 | jest-environment-node@^22.4.1:
1722 | version "22.4.1"
1723 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-22.4.1.tgz#418850eb654596b8d6e36c2021cbedbc23df8e16"
1724 | dependencies:
1725 | jest-mock "^22.2.0"
1726 | jest-util "^22.4.1"
1727 |
1728 | jest-get-type@^22.1.0:
1729 | version "22.1.0"
1730 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-22.1.0.tgz#4e90af298ed6181edc85d2da500dbd2753e0d5a9"
1731 |
1732 | jest-haste-map@^22.4.2:
1733 | version "22.4.2"
1734 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-22.4.2.tgz#a90178e66146d4378bb076345a949071f3b015b4"
1735 | dependencies:
1736 | fb-watchman "^2.0.0"
1737 | graceful-fs "^4.1.11"
1738 | jest-docblock "^22.4.0"
1739 | jest-serializer "^22.4.0"
1740 | jest-worker "^22.2.2"
1741 | micromatch "^2.3.11"
1742 | sane "^2.0.0"
1743 |
1744 | jest-jasmine2@^22.4.2:
1745 | version "22.4.2"
1746 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-22.4.2.tgz#dfd3d259579ed6f52510d8f1ab692808f0d40691"
1747 | dependencies:
1748 | chalk "^2.0.1"
1749 | co "^4.6.0"
1750 | expect "^22.4.0"
1751 | graceful-fs "^4.1.11"
1752 | is-generator-fn "^1.0.0"
1753 | jest-diff "^22.4.0"
1754 | jest-matcher-utils "^22.4.0"
1755 | jest-message-util "^22.4.0"
1756 | jest-snapshot "^22.4.0"
1757 | jest-util "^22.4.1"
1758 | source-map-support "^0.5.0"
1759 |
1760 | jest-leak-detector@^22.4.0:
1761 | version "22.4.0"
1762 | resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-22.4.0.tgz#64da77f05b001c96d2062226e079f89989c4aa2f"
1763 | dependencies:
1764 | pretty-format "^22.4.0"
1765 |
1766 | jest-matcher-utils@^22.4.0:
1767 | version "22.4.0"
1768 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-22.4.0.tgz#d55f5faf2270462736bdf7c7485ee931c9d4b6a1"
1769 | dependencies:
1770 | chalk "^2.0.1"
1771 | jest-get-type "^22.1.0"
1772 | pretty-format "^22.4.0"
1773 |
1774 | jest-message-util@^22.4.0:
1775 | version "22.4.0"
1776 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-22.4.0.tgz#e3d861df16d2fee60cb2bc8feac2188a42579642"
1777 | dependencies:
1778 | "@babel/code-frame" "^7.0.0-beta.35"
1779 | chalk "^2.0.1"
1780 | micromatch "^2.3.11"
1781 | slash "^1.0.0"
1782 | stack-utils "^1.0.1"
1783 |
1784 | jest-mock@^22.2.0:
1785 | version "22.2.0"
1786 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-22.2.0.tgz#444b3f9488a7473adae09bc8a77294afded397a7"
1787 |
1788 | jest-regex-util@^22.1.0:
1789 | version "22.1.0"
1790 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-22.1.0.tgz#5daf2fe270074b6da63e5d85f1c9acc866768f53"
1791 |
1792 | jest-resolve-dependencies@^22.1.0:
1793 | version "22.1.0"
1794 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-22.1.0.tgz#340e4139fb13315cd43abc054e6c06136be51e31"
1795 | dependencies:
1796 | jest-regex-util "^22.1.0"
1797 |
1798 | jest-resolve@^22.4.2:
1799 | version "22.4.2"
1800 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-22.4.2.tgz#25d88aa4147462c9c1c6a1ba16250d3794c24d00"
1801 | dependencies:
1802 | browser-resolve "^1.11.2"
1803 | chalk "^2.0.1"
1804 |
1805 | jest-runner@^22.4.2:
1806 | version "22.4.2"
1807 | resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-22.4.2.tgz#19390ea9d99f768973e16f95a1efa351c0017e87"
1808 | dependencies:
1809 | exit "^0.1.2"
1810 | jest-config "^22.4.2"
1811 | jest-docblock "^22.4.0"
1812 | jest-haste-map "^22.4.2"
1813 | jest-jasmine2 "^22.4.2"
1814 | jest-leak-detector "^22.4.0"
1815 | jest-message-util "^22.4.0"
1816 | jest-runtime "^22.4.2"
1817 | jest-util "^22.4.1"
1818 | jest-worker "^22.2.2"
1819 | throat "^4.0.0"
1820 |
1821 | jest-runtime@^22.4.2:
1822 | version "22.4.2"
1823 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-22.4.2.tgz#0de0444f65ce15ee4f2e0055133fc7c17b9168f3"
1824 | dependencies:
1825 | babel-core "^6.0.0"
1826 | babel-jest "^22.4.1"
1827 | babel-plugin-istanbul "^4.1.5"
1828 | chalk "^2.0.1"
1829 | convert-source-map "^1.4.0"
1830 | exit "^0.1.2"
1831 | graceful-fs "^4.1.11"
1832 | jest-config "^22.4.2"
1833 | jest-haste-map "^22.4.2"
1834 | jest-regex-util "^22.1.0"
1835 | jest-resolve "^22.4.2"
1836 | jest-util "^22.4.1"
1837 | jest-validate "^22.4.2"
1838 | json-stable-stringify "^1.0.1"
1839 | micromatch "^2.3.11"
1840 | realpath-native "^1.0.0"
1841 | slash "^1.0.0"
1842 | strip-bom "3.0.0"
1843 | write-file-atomic "^2.1.0"
1844 | yargs "^10.0.3"
1845 |
1846 | jest-serializer@^22.4.0:
1847 | version "22.4.0"
1848 | resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-22.4.0.tgz#b5d145b98c4b0d2c20ab686609adbb81fe23b566"
1849 |
1850 | jest-snapshot@^22.4.0:
1851 | version "22.4.0"
1852 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-22.4.0.tgz#03d3ce63f8fa7352388afc6a3c8b5ccc3a180ed7"
1853 | dependencies:
1854 | chalk "^2.0.1"
1855 | jest-diff "^22.4.0"
1856 | jest-matcher-utils "^22.4.0"
1857 | mkdirp "^0.5.1"
1858 | natural-compare "^1.4.0"
1859 | pretty-format "^22.4.0"
1860 |
1861 | jest-util@^22.4.1:
1862 | version "22.4.1"
1863 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-22.4.1.tgz#dd17c3bdb067f8e90591563ec0c42bf847dc249f"
1864 | dependencies:
1865 | callsites "^2.0.0"
1866 | chalk "^2.0.1"
1867 | graceful-fs "^4.1.11"
1868 | is-ci "^1.0.10"
1869 | jest-message-util "^22.4.0"
1870 | mkdirp "^0.5.1"
1871 | source-map "^0.6.0"
1872 |
1873 | jest-validate@^22.4.2:
1874 | version "22.4.2"
1875 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-22.4.2.tgz#e789a4e056173bf97fe797a2df2d52105c57d4f4"
1876 | dependencies:
1877 | chalk "^2.0.1"
1878 | jest-config "^22.4.2"
1879 | jest-get-type "^22.1.0"
1880 | leven "^2.1.0"
1881 | pretty-format "^22.4.0"
1882 |
1883 | jest-worker@^22.2.2:
1884 | version "22.2.2"
1885 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-22.2.2.tgz#c1f5dc39976884b81f68ec50cb8532b2cbab3390"
1886 | dependencies:
1887 | merge-stream "^1.0.1"
1888 |
1889 | jest@^22.4.2:
1890 | version "22.4.2"
1891 | resolved "https://registry.yarnpkg.com/jest/-/jest-22.4.2.tgz#34012834a49bf1bdd3bc783850ab44e4499afc20"
1892 | dependencies:
1893 | import-local "^1.0.0"
1894 | jest-cli "^22.4.2"
1895 |
1896 | js-tokens@^3.0.0, js-tokens@^3.0.2:
1897 | version "3.0.2"
1898 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
1899 |
1900 | js-yaml@^3.7.0, js-yaml@^3.8.4, js-yaml@^3.9.1:
1901 | version "3.10.0"
1902 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc"
1903 | dependencies:
1904 | argparse "^1.0.7"
1905 | esprima "^4.0.0"
1906 |
1907 | jsbn@~0.1.0:
1908 | version "0.1.1"
1909 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
1910 |
1911 | jsdom@^11.5.1:
1912 | version "11.6.2"
1913 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-11.6.2.tgz#25d1ef332d48adf77fc5221fe2619967923f16bb"
1914 | dependencies:
1915 | abab "^1.0.4"
1916 | acorn "^5.3.0"
1917 | acorn-globals "^4.1.0"
1918 | array-equal "^1.0.0"
1919 | browser-process-hrtime "^0.1.2"
1920 | content-type-parser "^1.0.2"
1921 | cssom ">= 0.3.2 < 0.4.0"
1922 | cssstyle ">= 0.2.37 < 0.3.0"
1923 | domexception "^1.0.0"
1924 | escodegen "^1.9.0"
1925 | html-encoding-sniffer "^1.0.2"
1926 | left-pad "^1.2.0"
1927 | nwmatcher "^1.4.3"
1928 | parse5 "4.0.0"
1929 | pn "^1.1.0"
1930 | request "^2.83.0"
1931 | request-promise-native "^1.0.5"
1932 | sax "^1.2.4"
1933 | symbol-tree "^3.2.2"
1934 | tough-cookie "^2.3.3"
1935 | w3c-hr-time "^1.0.1"
1936 | webidl-conversions "^4.0.2"
1937 | whatwg-encoding "^1.0.3"
1938 | whatwg-url "^6.4.0"
1939 | ws "^4.0.0"
1940 | xml-name-validator "^3.0.0"
1941 |
1942 | jsesc@^1.3.0:
1943 | version "1.3.0"
1944 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b"
1945 |
1946 | json-parse-better-errors@^1.0.1:
1947 | version "1.0.1"
1948 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.1.tgz#50183cd1b2d25275de069e9e71b467ac9eab973a"
1949 |
1950 | json-schema-traverse@^0.3.0:
1951 | version "0.3.1"
1952 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340"
1953 |
1954 | json-schema@0.2.3:
1955 | version "0.2.3"
1956 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
1957 |
1958 | json-stable-stringify-without-jsonify@^1.0.1:
1959 | version "1.0.1"
1960 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
1961 |
1962 | json-stable-stringify@^1.0.1:
1963 | version "1.0.1"
1964 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af"
1965 | dependencies:
1966 | jsonify "~0.0.0"
1967 |
1968 | json-stringify-safe@~5.0.1:
1969 | version "5.0.1"
1970 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
1971 |
1972 | json5@^0.5.1:
1973 | version "0.5.1"
1974 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
1975 |
1976 | jsonify@~0.0.0:
1977 | version "0.0.0"
1978 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
1979 |
1980 | jsprim@^1.2.2:
1981 | version "1.4.1"
1982 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"
1983 | dependencies:
1984 | assert-plus "1.0.0"
1985 | extsprintf "1.3.0"
1986 | json-schema "0.2.3"
1987 | verror "1.10.0"
1988 |
1989 | kind-of@^3.0.2:
1990 | version "3.2.2"
1991 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
1992 | dependencies:
1993 | is-buffer "^1.1.5"
1994 |
1995 | kind-of@^4.0.0:
1996 | version "4.0.0"
1997 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57"
1998 | dependencies:
1999 | is-buffer "^1.1.5"
2000 |
2001 | lazy-cache@^1.0.3:
2002 | version "1.0.4"
2003 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"
2004 |
2005 | lcid@^1.0.0:
2006 | version "1.0.0"
2007 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835"
2008 | dependencies:
2009 | invert-kv "^1.0.0"
2010 |
2011 | left-pad@^1.2.0:
2012 | version "1.2.0"
2013 | resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.2.0.tgz#d30a73c6b8201d8f7d8e7956ba9616087a68e0ee"
2014 |
2015 | leven@^2.1.0:
2016 | version "2.1.0"
2017 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580"
2018 |
2019 | levn@^0.3.0, levn@~0.3.0:
2020 | version "0.3.0"
2021 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
2022 | dependencies:
2023 | prelude-ls "~1.1.2"
2024 | type-check "~0.3.2"
2025 |
2026 | load-json-file@^1.0.0:
2027 | version "1.1.0"
2028 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0"
2029 | dependencies:
2030 | graceful-fs "^4.1.2"
2031 | parse-json "^2.2.0"
2032 | pify "^2.0.0"
2033 | pinkie-promise "^2.0.0"
2034 | strip-bom "^2.0.0"
2035 |
2036 | load-json-file@^2.0.0:
2037 | version "2.0.0"
2038 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8"
2039 | dependencies:
2040 | graceful-fs "^4.1.2"
2041 | parse-json "^2.2.0"
2042 | pify "^2.0.0"
2043 | strip-bom "^3.0.0"
2044 |
2045 | load-json-file@^4.0.0:
2046 | version "4.0.0"
2047 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b"
2048 | dependencies:
2049 | graceful-fs "^4.1.2"
2050 | parse-json "^4.0.0"
2051 | pify "^3.0.0"
2052 | strip-bom "^3.0.0"
2053 |
2054 | locate-path@^2.0.0:
2055 | version "2.0.0"
2056 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
2057 | dependencies:
2058 | p-locate "^2.0.0"
2059 | path-exists "^3.0.0"
2060 |
2061 | lodash.sortby@^4.7.0:
2062 | version "4.7.0"
2063 | resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438"
2064 |
2065 | lodash.toarray@^4.4.0:
2066 | version "4.4.0"
2067 | resolved "https://registry.yarnpkg.com/lodash.toarray/-/lodash.toarray-4.4.0.tgz#24c4bfcd6b2fba38bfd0594db1179d8e9b656561"
2068 |
2069 | lodash@^4.13.1, lodash@^4.14.0, lodash@^4.17.4, lodash@^4.3.0:
2070 | version "4.17.5"
2071 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.5.tgz#99a92d65c0272debe8c96b6057bc8fbfa3bed511"
2072 |
2073 | longest@^1.0.1:
2074 | version "1.0.1"
2075 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097"
2076 |
2077 | loose-envify@^1.0.0:
2078 | version "1.3.1"
2079 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848"
2080 | dependencies:
2081 | js-tokens "^3.0.0"
2082 |
2083 | loud-rejection@^1.0.0:
2084 | version "1.6.0"
2085 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f"
2086 | dependencies:
2087 | currently-unhandled "^0.4.1"
2088 | signal-exit "^3.0.0"
2089 |
2090 | lru-cache@^4.0.1:
2091 | version "4.1.1"
2092 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55"
2093 | dependencies:
2094 | pseudomap "^1.0.2"
2095 | yallist "^2.1.2"
2096 |
2097 | makeerror@1.0.x:
2098 | version "1.0.11"
2099 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c"
2100 | dependencies:
2101 | tmpl "1.0.x"
2102 |
2103 | map-obj@^1.0.0, map-obj@^1.0.1:
2104 | version "1.0.1"
2105 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d"
2106 |
2107 | map-obj@^2.0.0:
2108 | version "2.0.0"
2109 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-2.0.0.tgz#a65cd29087a92598b8791257a523e021222ac1f9"
2110 |
2111 | mem@^1.1.0:
2112 | version "1.1.0"
2113 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76"
2114 | dependencies:
2115 | mimic-fn "^1.0.0"
2116 |
2117 | meow@^3.7.0:
2118 | version "3.7.0"
2119 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb"
2120 | dependencies:
2121 | camelcase-keys "^2.0.0"
2122 | decamelize "^1.1.2"
2123 | loud-rejection "^1.0.0"
2124 | map-obj "^1.0.1"
2125 | minimist "^1.1.3"
2126 | normalize-package-data "^2.3.4"
2127 | object-assign "^4.0.1"
2128 | read-pkg-up "^1.0.1"
2129 | redent "^1.0.0"
2130 | trim-newlines "^1.0.0"
2131 |
2132 | meow@^4.0.0:
2133 | version "4.0.0"
2134 | resolved "https://registry.yarnpkg.com/meow/-/meow-4.0.0.tgz#fd5855dd008db5b92c552082db1c307cba20b29d"
2135 | dependencies:
2136 | camelcase-keys "^4.0.0"
2137 | decamelize-keys "^1.0.0"
2138 | loud-rejection "^1.0.0"
2139 | minimist "^1.1.3"
2140 | minimist-options "^3.0.1"
2141 | normalize-package-data "^2.3.4"
2142 | read-pkg-up "^3.0.0"
2143 | redent "^2.0.0"
2144 | trim-newlines "^2.0.0"
2145 |
2146 | merge-stream@^1.0.1:
2147 | version "1.0.1"
2148 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1"
2149 | dependencies:
2150 | readable-stream "^2.0.1"
2151 |
2152 | merge@^1.1.3:
2153 | version "1.2.0"
2154 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da"
2155 |
2156 | micromatch@^2.1.5, micromatch@^2.3.11:
2157 | version "2.3.11"
2158 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565"
2159 | dependencies:
2160 | arr-diff "^2.0.0"
2161 | array-unique "^0.2.1"
2162 | braces "^1.8.2"
2163 | expand-brackets "^0.1.4"
2164 | extglob "^0.3.1"
2165 | filename-regex "^2.0.0"
2166 | is-extglob "^1.0.0"
2167 | is-glob "^2.0.1"
2168 | kind-of "^3.0.2"
2169 | normalize-path "^2.0.1"
2170 | object.omit "^2.0.0"
2171 | parse-glob "^3.0.4"
2172 | regex-cache "^0.4.2"
2173 |
2174 | mime-db@~1.33.0:
2175 | version "1.33.0"
2176 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.33.0.tgz#a3492050a5cb9b63450541e39d9788d2272783db"
2177 |
2178 | mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.7:
2179 | version "2.1.18"
2180 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.18.tgz#6f323f60a83d11146f831ff11fd66e2fe5503bb8"
2181 | dependencies:
2182 | mime-db "~1.33.0"
2183 |
2184 | mimic-fn@^1.0.0:
2185 | version "1.2.0"
2186 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022"
2187 |
2188 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4:
2189 | version "3.0.4"
2190 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
2191 | dependencies:
2192 | brace-expansion "^1.1.7"
2193 |
2194 | minimist-options@^3.0.1:
2195 | version "3.0.2"
2196 | resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-3.0.2.tgz#fba4c8191339e13ecf4d61beb03f070103f3d954"
2197 | dependencies:
2198 | arrify "^1.0.1"
2199 | is-plain-obj "^1.1.0"
2200 |
2201 | minimist@0.0.8:
2202 | version "0.0.8"
2203 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
2204 |
2205 | minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0:
2206 | version "1.2.0"
2207 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
2208 |
2209 | minimist@~0.0.1:
2210 | version "0.0.10"
2211 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf"
2212 |
2213 | "mkdirp@>=0.5 0", mkdirp@^0.5.1:
2214 | version "0.5.1"
2215 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
2216 | dependencies:
2217 | minimist "0.0.8"
2218 |
2219 | ms@2.0.0:
2220 | version "2.0.0"
2221 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
2222 |
2223 | mute-stream@0.0.7:
2224 | version "0.0.7"
2225 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"
2226 |
2227 | nan@^2.3.0:
2228 | version "2.9.2"
2229 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.9.2.tgz#f564d75f5f8f36a6d9456cca7a6c4fe488ab7866"
2230 |
2231 | natural-compare@^1.4.0:
2232 | version "1.4.0"
2233 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
2234 |
2235 | node-emoji@^1.8.1:
2236 | version "1.8.1"
2237 | resolved "https://registry.yarnpkg.com/node-emoji/-/node-emoji-1.8.1.tgz#6eec6bfb07421e2148c75c6bba72421f8530a826"
2238 | dependencies:
2239 | lodash.toarray "^4.4.0"
2240 |
2241 | node-int64@^0.4.0:
2242 | version "0.4.0"
2243 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b"
2244 |
2245 | node-notifier@^5.2.1:
2246 | version "5.2.1"
2247 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.2.1.tgz#fa313dd08f5517db0e2502e5758d664ac69f9dea"
2248 | dependencies:
2249 | growly "^1.3.0"
2250 | semver "^5.4.1"
2251 | shellwords "^0.1.1"
2252 | which "^1.3.0"
2253 |
2254 | node-pre-gyp@^0.6.39:
2255 | version "0.6.39"
2256 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649"
2257 | dependencies:
2258 | detect-libc "^1.0.2"
2259 | hawk "3.1.3"
2260 | mkdirp "^0.5.1"
2261 | nopt "^4.0.1"
2262 | npmlog "^4.0.2"
2263 | rc "^1.1.7"
2264 | request "2.81.0"
2265 | rimraf "^2.6.1"
2266 | semver "^5.3.0"
2267 | tar "^2.2.1"
2268 | tar-pack "^3.4.0"
2269 |
2270 | nopt@^4.0.1:
2271 | version "4.0.1"
2272 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d"
2273 | dependencies:
2274 | abbrev "1"
2275 | osenv "^0.1.4"
2276 |
2277 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4:
2278 | version "2.4.0"
2279 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f"
2280 | dependencies:
2281 | hosted-git-info "^2.1.4"
2282 | is-builtin-module "^1.0.0"
2283 | semver "2 || 3 || 4 || 5"
2284 | validate-npm-package-license "^3.0.1"
2285 |
2286 | normalize-path@^2.0.0, normalize-path@^2.0.1:
2287 | version "2.1.1"
2288 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
2289 | dependencies:
2290 | remove-trailing-separator "^1.0.1"
2291 |
2292 | npm-run-path@^2.0.0:
2293 | version "2.0.2"
2294 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
2295 | dependencies:
2296 | path-key "^2.0.0"
2297 |
2298 | npmlog@^4.0.2:
2299 | version "4.1.2"
2300 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
2301 | dependencies:
2302 | are-we-there-yet "~1.1.2"
2303 | console-control-strings "~1.1.0"
2304 | gauge "~2.7.3"
2305 | set-blocking "~2.0.0"
2306 |
2307 | number-is-nan@^1.0.0:
2308 | version "1.0.1"
2309 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
2310 |
2311 | nwmatcher@^1.4.3:
2312 | version "1.4.3"
2313 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.3.tgz#64348e3b3d80f035b40ac11563d278f8b72db89c"
2314 |
2315 | oauth-sign@~0.8.1, oauth-sign@~0.8.2:
2316 | version "0.8.2"
2317 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"
2318 |
2319 | object-assign@^4.0.1, object-assign@^4.1.0:
2320 | version "4.1.1"
2321 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
2322 |
2323 | object-keys@^1.0.8:
2324 | version "1.0.11"
2325 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d"
2326 |
2327 | object.getownpropertydescriptors@^2.0.3:
2328 | version "2.0.3"
2329 | resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16"
2330 | dependencies:
2331 | define-properties "^1.1.2"
2332 | es-abstract "^1.5.1"
2333 |
2334 | object.omit@^2.0.0:
2335 | version "2.0.1"
2336 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"
2337 | dependencies:
2338 | for-own "^0.1.4"
2339 | is-extendable "^0.1.1"
2340 |
2341 | once@^1.3.0, once@^1.3.3, once@^1.4.0:
2342 | version "1.4.0"
2343 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
2344 | dependencies:
2345 | wrappy "1"
2346 |
2347 | onetime@^2.0.0:
2348 | version "2.0.1"
2349 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4"
2350 | dependencies:
2351 | mimic-fn "^1.0.0"
2352 |
2353 | optimist@^0.6.1:
2354 | version "0.6.1"
2355 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686"
2356 | dependencies:
2357 | minimist "~0.0.1"
2358 | wordwrap "~0.0.2"
2359 |
2360 | optionator@^0.8.1, optionator@^0.8.2:
2361 | version "0.8.2"
2362 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64"
2363 | dependencies:
2364 | deep-is "~0.1.3"
2365 | fast-levenshtein "~2.0.4"
2366 | levn "~0.3.0"
2367 | prelude-ls "~1.1.2"
2368 | type-check "~0.3.2"
2369 | wordwrap "~1.0.0"
2370 |
2371 | os-homedir@^1.0.0:
2372 | version "1.0.2"
2373 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
2374 |
2375 | os-locale@^2.0.0:
2376 | version "2.1.0"
2377 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2"
2378 | dependencies:
2379 | execa "^0.7.0"
2380 | lcid "^1.0.0"
2381 | mem "^1.1.0"
2382 |
2383 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.2:
2384 | version "1.0.2"
2385 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
2386 |
2387 | osenv@^0.1.4:
2388 | version "0.1.5"
2389 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410"
2390 | dependencies:
2391 | os-homedir "^1.0.0"
2392 | os-tmpdir "^1.0.0"
2393 |
2394 | p-finally@^1.0.0:
2395 | version "1.0.0"
2396 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
2397 |
2398 | p-limit@^1.1.0:
2399 | version "1.2.0"
2400 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.2.0.tgz#0e92b6bedcb59f022c13d0f1949dc82d15909f1c"
2401 | dependencies:
2402 | p-try "^1.0.0"
2403 |
2404 | p-locate@^2.0.0:
2405 | version "2.0.0"
2406 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
2407 | dependencies:
2408 | p-limit "^1.1.0"
2409 |
2410 | p-try@^1.0.0:
2411 | version "1.0.0"
2412 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"
2413 |
2414 | parse-glob@^3.0.4:
2415 | version "3.0.4"
2416 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c"
2417 | dependencies:
2418 | glob-base "^0.3.0"
2419 | is-dotfile "^1.0.0"
2420 | is-extglob "^1.0.0"
2421 | is-glob "^2.0.0"
2422 |
2423 | parse-json@^2.2.0:
2424 | version "2.2.0"
2425 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
2426 | dependencies:
2427 | error-ex "^1.2.0"
2428 |
2429 | parse-json@^4.0.0:
2430 | version "4.0.0"
2431 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0"
2432 | dependencies:
2433 | error-ex "^1.3.1"
2434 | json-parse-better-errors "^1.0.1"
2435 |
2436 | parse5@4.0.0:
2437 | version "4.0.0"
2438 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608"
2439 |
2440 | path-exists@^2.0.0:
2441 | version "2.1.0"
2442 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b"
2443 | dependencies:
2444 | pinkie-promise "^2.0.0"
2445 |
2446 | path-exists@^3.0.0:
2447 | version "3.0.0"
2448 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
2449 |
2450 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1:
2451 | version "1.0.1"
2452 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
2453 |
2454 | path-is-inside@^1.0.1, path-is-inside@^1.0.2:
2455 | version "1.0.2"
2456 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53"
2457 |
2458 | path-key@^2.0.0:
2459 | version "2.0.1"
2460 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
2461 |
2462 | path-parse@^1.0.5:
2463 | version "1.0.5"
2464 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1"
2465 |
2466 | path-type@^1.0.0:
2467 | version "1.1.0"
2468 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441"
2469 | dependencies:
2470 | graceful-fs "^4.1.2"
2471 | pify "^2.0.0"
2472 | pinkie-promise "^2.0.0"
2473 |
2474 | path-type@^2.0.0:
2475 | version "2.0.0"
2476 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73"
2477 | dependencies:
2478 | pify "^2.0.0"
2479 |
2480 | path-type@^3.0.0:
2481 | version "3.0.0"
2482 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f"
2483 | dependencies:
2484 | pify "^3.0.0"
2485 |
2486 | performance-now@^0.2.0:
2487 | version "0.2.0"
2488 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5"
2489 |
2490 | performance-now@^2.1.0:
2491 | version "2.1.0"
2492 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"
2493 |
2494 | pify@^2.0.0:
2495 | version "2.3.0"
2496 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
2497 |
2498 | pify@^3.0.0:
2499 | version "3.0.0"
2500 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"
2501 |
2502 | pinkie-promise@^2.0.0:
2503 | version "2.0.1"
2504 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
2505 | dependencies:
2506 | pinkie "^2.0.0"
2507 |
2508 | pinkie@^2.0.0:
2509 | version "2.0.4"
2510 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
2511 |
2512 | pkg-dir@^1.0.0:
2513 | version "1.0.0"
2514 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4"
2515 | dependencies:
2516 | find-up "^1.0.0"
2517 |
2518 | pkg-dir@^2.0.0:
2519 | version "2.0.0"
2520 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b"
2521 | dependencies:
2522 | find-up "^2.1.0"
2523 |
2524 | pluralize@^7.0.0:
2525 | version "7.0.0"
2526 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777"
2527 |
2528 | pn@^1.1.0:
2529 | version "1.1.0"
2530 | resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb"
2531 |
2532 | prelude-ls@~1.1.2:
2533 | version "1.1.2"
2534 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
2535 |
2536 | preserve@^0.2.0:
2537 | version "0.2.0"
2538 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
2539 |
2540 | pretty-format@^22.4.0:
2541 | version "22.4.0"
2542 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-22.4.0.tgz#237b1f7e1c50ed03bc65c03ccc29d7c8bb7beb94"
2543 | dependencies:
2544 | ansi-regex "^3.0.0"
2545 | ansi-styles "^3.2.0"
2546 |
2547 | private@^0.1.7:
2548 | version "0.1.8"
2549 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff"
2550 |
2551 | process-nextick-args@~2.0.0:
2552 | version "2.0.0"
2553 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa"
2554 |
2555 | progress@^2.0.0:
2556 | version "2.0.0"
2557 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f"
2558 |
2559 | pseudomap@^1.0.2:
2560 | version "1.0.2"
2561 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
2562 |
2563 | punycode@^1.4.1:
2564 | version "1.4.1"
2565 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
2566 |
2567 | punycode@^2.1.0:
2568 | version "2.1.0"
2569 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.0.tgz#5f863edc89b96db09074bad7947bf09056ca4e7d"
2570 |
2571 | qs@~6.4.0:
2572 | version "6.4.0"
2573 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233"
2574 |
2575 | qs@~6.5.1:
2576 | version "6.5.1"
2577 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8"
2578 |
2579 | quick-lru@^1.0.0:
2580 | version "1.1.0"
2581 | resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-1.1.0.tgz#4360b17c61136ad38078397ff11416e186dcfbb8"
2582 |
2583 | randomatic@^1.1.3:
2584 | version "1.1.7"
2585 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c"
2586 | dependencies:
2587 | is-number "^3.0.0"
2588 | kind-of "^4.0.0"
2589 |
2590 | rc@^1.1.7:
2591 | version "1.2.5"
2592 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.5.tgz#275cd687f6e3b36cc756baa26dfee80a790301fd"
2593 | dependencies:
2594 | deep-extend "~0.4.0"
2595 | ini "~1.3.0"
2596 | minimist "^1.2.0"
2597 | strip-json-comments "~2.0.1"
2598 |
2599 | read-pkg-up@^1.0.1:
2600 | version "1.0.1"
2601 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02"
2602 | dependencies:
2603 | find-up "^1.0.0"
2604 | read-pkg "^1.0.0"
2605 |
2606 | read-pkg-up@^2.0.0:
2607 | version "2.0.0"
2608 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be"
2609 | dependencies:
2610 | find-up "^2.0.0"
2611 | read-pkg "^2.0.0"
2612 |
2613 | read-pkg-up@^3.0.0:
2614 | version "3.0.0"
2615 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-3.0.0.tgz#3ed496685dba0f8fe118d0691dc51f4a1ff96f07"
2616 | dependencies:
2617 | find-up "^2.0.0"
2618 | read-pkg "^3.0.0"
2619 |
2620 | read-pkg@^1.0.0:
2621 | version "1.1.0"
2622 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28"
2623 | dependencies:
2624 | load-json-file "^1.0.0"
2625 | normalize-package-data "^2.3.2"
2626 | path-type "^1.0.0"
2627 |
2628 | read-pkg@^2.0.0:
2629 | version "2.0.0"
2630 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8"
2631 | dependencies:
2632 | load-json-file "^2.0.0"
2633 | normalize-package-data "^2.3.2"
2634 | path-type "^2.0.0"
2635 |
2636 | read-pkg@^3.0.0:
2637 | version "3.0.0"
2638 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389"
2639 | dependencies:
2640 | load-json-file "^4.0.0"
2641 | normalize-package-data "^2.3.2"
2642 | path-type "^3.0.0"
2643 |
2644 | readable-stream@^2.0.1, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.2:
2645 | version "2.3.4"
2646 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.4.tgz#c946c3f47fa7d8eabc0b6150f4a12f69a4574071"
2647 | dependencies:
2648 | core-util-is "~1.0.0"
2649 | inherits "~2.0.3"
2650 | isarray "~1.0.0"
2651 | process-nextick-args "~2.0.0"
2652 | safe-buffer "~5.1.1"
2653 | string_decoder "~1.0.3"
2654 | util-deprecate "~1.0.1"
2655 |
2656 | realpath-native@^1.0.0:
2657 | version "1.0.0"
2658 | resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.0.0.tgz#7885721a83b43bd5327609f0ddecb2482305fdf0"
2659 | dependencies:
2660 | util.promisify "^1.0.0"
2661 |
2662 | redent@^1.0.0:
2663 | version "1.0.0"
2664 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde"
2665 | dependencies:
2666 | indent-string "^2.1.0"
2667 | strip-indent "^1.0.1"
2668 |
2669 | redent@^2.0.0:
2670 | version "2.0.0"
2671 | resolved "https://registry.yarnpkg.com/redent/-/redent-2.0.0.tgz#c1b2007b42d57eb1389079b3c8333639d5e1ccaa"
2672 | dependencies:
2673 | indent-string "^3.0.0"
2674 | strip-indent "^2.0.0"
2675 |
2676 | regenerator-runtime@^0.11.0:
2677 | version "0.11.1"
2678 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9"
2679 |
2680 | regex-cache@^0.4.2:
2681 | version "0.4.4"
2682 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd"
2683 | dependencies:
2684 | is-equal-shallow "^0.1.3"
2685 |
2686 | remove-trailing-separator@^1.0.1:
2687 | version "1.1.0"
2688 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
2689 |
2690 | repeat-element@^1.1.2:
2691 | version "1.1.2"
2692 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a"
2693 |
2694 | repeat-string@^1.5.2:
2695 | version "1.6.1"
2696 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
2697 |
2698 | repeating@^2.0.0:
2699 | version "2.0.1"
2700 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda"
2701 | dependencies:
2702 | is-finite "^1.0.0"
2703 |
2704 | request-promise-core@1.1.1:
2705 | version "1.1.1"
2706 | resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.1.tgz#3eee00b2c5aa83239cfb04c5700da36f81cd08b6"
2707 | dependencies:
2708 | lodash "^4.13.1"
2709 |
2710 | request-promise-native@^1.0.5:
2711 | version "1.0.5"
2712 | resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.5.tgz#5281770f68e0c9719e5163fd3fab482215f4fda5"
2713 | dependencies:
2714 | request-promise-core "1.1.1"
2715 | stealthy-require "^1.1.0"
2716 | tough-cookie ">=2.3.3"
2717 |
2718 | request@2.81.0:
2719 | version "2.81.0"
2720 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0"
2721 | dependencies:
2722 | aws-sign2 "~0.6.0"
2723 | aws4 "^1.2.1"
2724 | caseless "~0.12.0"
2725 | combined-stream "~1.0.5"
2726 | extend "~3.0.0"
2727 | forever-agent "~0.6.1"
2728 | form-data "~2.1.1"
2729 | har-validator "~4.2.1"
2730 | hawk "~3.1.3"
2731 | http-signature "~1.1.0"
2732 | is-typedarray "~1.0.0"
2733 | isstream "~0.1.2"
2734 | json-stringify-safe "~5.0.1"
2735 | mime-types "~2.1.7"
2736 | oauth-sign "~0.8.1"
2737 | performance-now "^0.2.0"
2738 | qs "~6.4.0"
2739 | safe-buffer "^5.0.1"
2740 | stringstream "~0.0.4"
2741 | tough-cookie "~2.3.0"
2742 | tunnel-agent "^0.6.0"
2743 | uuid "^3.0.0"
2744 |
2745 | request@^2.83.0:
2746 | version "2.83.0"
2747 | resolved "https://registry.yarnpkg.com/request/-/request-2.83.0.tgz#ca0b65da02ed62935887808e6f510381034e3356"
2748 | dependencies:
2749 | aws-sign2 "~0.7.0"
2750 | aws4 "^1.6.0"
2751 | caseless "~0.12.0"
2752 | combined-stream "~1.0.5"
2753 | extend "~3.0.1"
2754 | forever-agent "~0.6.1"
2755 | form-data "~2.3.1"
2756 | har-validator "~5.0.3"
2757 | hawk "~6.0.2"
2758 | http-signature "~1.2.0"
2759 | is-typedarray "~1.0.0"
2760 | isstream "~0.1.2"
2761 | json-stringify-safe "~5.0.1"
2762 | mime-types "~2.1.17"
2763 | oauth-sign "~0.8.2"
2764 | performance-now "^2.1.0"
2765 | qs "~6.5.1"
2766 | safe-buffer "^5.1.1"
2767 | stringstream "~0.0.5"
2768 | tough-cookie "~2.3.3"
2769 | tunnel-agent "^0.6.0"
2770 | uuid "^3.1.0"
2771 |
2772 | require-directory@^2.1.1:
2773 | version "2.1.1"
2774 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
2775 |
2776 | require-main-filename@^1.0.1:
2777 | version "1.0.1"
2778 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1"
2779 |
2780 | require-uncached@^1.0.3:
2781 | version "1.0.3"
2782 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3"
2783 | dependencies:
2784 | caller-path "^0.1.0"
2785 | resolve-from "^1.0.0"
2786 |
2787 | resolve-cwd@^2.0.0:
2788 | version "2.0.0"
2789 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a"
2790 | dependencies:
2791 | resolve-from "^3.0.0"
2792 |
2793 | resolve-from@^1.0.0:
2794 | version "1.0.1"
2795 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226"
2796 |
2797 | resolve-from@^3.0.0:
2798 | version "3.0.0"
2799 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748"
2800 |
2801 | resolve@1.1.7:
2802 | version "1.1.7"
2803 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b"
2804 |
2805 | resolve@^1.5.0:
2806 | version "1.5.0"
2807 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.5.0.tgz#1f09acce796c9a762579f31b2c1cc4c3cddf9f36"
2808 | dependencies:
2809 | path-parse "^1.0.5"
2810 |
2811 | restore-cursor@^2.0.0:
2812 | version "2.0.0"
2813 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf"
2814 | dependencies:
2815 | onetime "^2.0.0"
2816 | signal-exit "^3.0.2"
2817 |
2818 | right-align@^0.1.1:
2819 | version "0.1.3"
2820 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef"
2821 | dependencies:
2822 | align-text "^0.1.1"
2823 |
2824 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.5.4, rimraf@^2.6.1:
2825 | version "2.6.2"
2826 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36"
2827 | dependencies:
2828 | glob "^7.0.5"
2829 |
2830 | run-async@^2.2.0:
2831 | version "2.3.0"
2832 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0"
2833 | dependencies:
2834 | is-promise "^2.1.0"
2835 |
2836 | rx-lite-aggregates@^4.0.8:
2837 | version "4.0.8"
2838 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be"
2839 | dependencies:
2840 | rx-lite "*"
2841 |
2842 | rx-lite@*, rx-lite@^4.0.8:
2843 | version "4.0.8"
2844 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444"
2845 |
2846 | safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
2847 | version "5.1.1"
2848 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853"
2849 |
2850 | sane@^2.0.0:
2851 | version "2.4.1"
2852 | resolved "https://registry.yarnpkg.com/sane/-/sane-2.4.1.tgz#29f991208cf28636720efdc584293e7fd66663a5"
2853 | dependencies:
2854 | anymatch "^1.3.0"
2855 | exec-sh "^0.2.0"
2856 | fb-watchman "^2.0.0"
2857 | minimatch "^3.0.2"
2858 | minimist "^1.1.1"
2859 | walker "~1.0.5"
2860 | watch "~0.18.0"
2861 | optionalDependencies:
2862 | fsevents "^1.1.1"
2863 |
2864 | sax@^1.2.4:
2865 | version "1.2.4"
2866 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
2867 |
2868 | "semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1:
2869 | version "5.5.0"
2870 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab"
2871 |
2872 | set-blocking@^2.0.0, set-blocking@~2.0.0:
2873 | version "2.0.0"
2874 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
2875 |
2876 | shebang-command@^1.2.0:
2877 | version "1.2.0"
2878 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
2879 | dependencies:
2880 | shebang-regex "^1.0.0"
2881 |
2882 | shebang-regex@^1.0.0:
2883 | version "1.0.0"
2884 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
2885 |
2886 | shellwords@^0.1.1:
2887 | version "0.1.1"
2888 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b"
2889 |
2890 | signal-exit@^3.0.0, signal-exit@^3.0.2:
2891 | version "3.0.2"
2892 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
2893 |
2894 | slash@^1.0.0:
2895 | version "1.0.0"
2896 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"
2897 |
2898 | slice-ansi@1.0.0:
2899 | version "1.0.0"
2900 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d"
2901 | dependencies:
2902 | is-fullwidth-code-point "^2.0.0"
2903 |
2904 | sntp@1.x.x:
2905 | version "1.0.9"
2906 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198"
2907 | dependencies:
2908 | hoek "2.x.x"
2909 |
2910 | sntp@2.x.x:
2911 | version "2.1.0"
2912 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.1.0.tgz#2c6cec14fedc2222739caf9b5c3d85d1cc5a2cc8"
2913 | dependencies:
2914 | hoek "4.x.x"
2915 |
2916 | source-map-support@^0.4.15:
2917 | version "0.4.18"
2918 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f"
2919 | dependencies:
2920 | source-map "^0.5.6"
2921 |
2922 | source-map-support@^0.5.0:
2923 | version "0.5.3"
2924 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.3.tgz#2b3d5fff298cfa4d1afd7d4352d569e9a0158e76"
2925 | dependencies:
2926 | source-map "^0.6.0"
2927 |
2928 | source-map@^0.4.4:
2929 | version "0.4.4"
2930 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b"
2931 | dependencies:
2932 | amdefine ">=0.0.4"
2933 |
2934 | source-map@^0.5.3, source-map@^0.5.6, source-map@^0.5.7, source-map@~0.5.1:
2935 | version "0.5.7"
2936 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
2937 |
2938 | source-map@^0.6.0, source-map@~0.6.1:
2939 | version "0.6.1"
2940 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
2941 |
2942 | spdx-correct@^3.0.0:
2943 | version "3.0.0"
2944 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.0.0.tgz#05a5b4d7153a195bc92c3c425b69f3b2a9524c82"
2945 | dependencies:
2946 | spdx-expression-parse "^3.0.0"
2947 | spdx-license-ids "^3.0.0"
2948 |
2949 | spdx-exceptions@^2.1.0:
2950 | version "2.1.0"
2951 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.1.0.tgz#2c7ae61056c714a5b9b9b2b2af7d311ef5c78fe9"
2952 |
2953 | spdx-expression-parse@^3.0.0:
2954 | version "3.0.0"
2955 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0"
2956 | dependencies:
2957 | spdx-exceptions "^2.1.0"
2958 | spdx-license-ids "^3.0.0"
2959 |
2960 | spdx-license-ids@^3.0.0:
2961 | version "3.0.0"
2962 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.0.tgz#7a7cd28470cc6d3a1cfe6d66886f6bc430d3ac87"
2963 |
2964 | sprintf-js@~1.0.2:
2965 | version "1.0.3"
2966 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
2967 |
2968 | sshpk@^1.7.0:
2969 | version "1.13.1"
2970 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3"
2971 | dependencies:
2972 | asn1 "~0.2.3"
2973 | assert-plus "^1.0.0"
2974 | dashdash "^1.12.0"
2975 | getpass "^0.1.1"
2976 | optionalDependencies:
2977 | bcrypt-pbkdf "^1.0.0"
2978 | ecc-jsbn "~0.1.1"
2979 | jsbn "~0.1.0"
2980 | tweetnacl "~0.14.0"
2981 |
2982 | stack-utils@^1.0.1:
2983 | version "1.0.1"
2984 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.1.tgz#d4f33ab54e8e38778b0ca5cfd3b3afb12db68620"
2985 |
2986 | stealthy-require@^1.1.0:
2987 | version "1.1.1"
2988 | resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b"
2989 |
2990 | string-length@^2.0.0:
2991 | version "2.0.0"
2992 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed"
2993 | dependencies:
2994 | astral-regex "^1.0.0"
2995 | strip-ansi "^4.0.0"
2996 |
2997 | string-width@^1.0.1, string-width@^1.0.2:
2998 | version "1.0.2"
2999 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
3000 | dependencies:
3001 | code-point-at "^1.0.0"
3002 | is-fullwidth-code-point "^1.0.0"
3003 | strip-ansi "^3.0.0"
3004 |
3005 | string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1:
3006 | version "2.1.1"
3007 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
3008 | dependencies:
3009 | is-fullwidth-code-point "^2.0.0"
3010 | strip-ansi "^4.0.0"
3011 |
3012 | string_decoder@~1.0.3:
3013 | version "1.0.3"
3014 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab"
3015 | dependencies:
3016 | safe-buffer "~5.1.0"
3017 |
3018 | stringstream@~0.0.4, stringstream@~0.0.5:
3019 | version "0.0.5"
3020 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878"
3021 |
3022 | strip-ansi@^3.0.0, strip-ansi@^3.0.1:
3023 | version "3.0.1"
3024 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
3025 | dependencies:
3026 | ansi-regex "^2.0.0"
3027 |
3028 | strip-ansi@^4.0.0:
3029 | version "4.0.0"
3030 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
3031 | dependencies:
3032 | ansi-regex "^3.0.0"
3033 |
3034 | strip-bom@3.0.0, strip-bom@^3.0.0:
3035 | version "3.0.0"
3036 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
3037 |
3038 | strip-bom@^2.0.0:
3039 | version "2.0.0"
3040 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e"
3041 | dependencies:
3042 | is-utf8 "^0.2.0"
3043 |
3044 | strip-eof@^1.0.0:
3045 | version "1.0.0"
3046 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
3047 |
3048 | strip-indent@^1.0.1:
3049 | version "1.0.1"
3050 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2"
3051 | dependencies:
3052 | get-stdin "^4.0.1"
3053 |
3054 | strip-indent@^2.0.0:
3055 | version "2.0.0"
3056 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68"
3057 |
3058 | strip-json-comments@~2.0.1:
3059 | version "2.0.1"
3060 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
3061 |
3062 | supports-color@^2.0.0:
3063 | version "2.0.0"
3064 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
3065 |
3066 | supports-color@^3.1.2:
3067 | version "3.2.3"
3068 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6"
3069 | dependencies:
3070 | has-flag "^1.0.0"
3071 |
3072 | supports-color@^5.2.0:
3073 | version "5.2.0"
3074 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.2.0.tgz#b0d5333b1184dd3666cbe5aa0b45c5ac7ac17a4a"
3075 | dependencies:
3076 | has-flag "^3.0.0"
3077 |
3078 | symbol-tree@^3.2.2:
3079 | version "3.2.2"
3080 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6"
3081 |
3082 | table@^4.0.1:
3083 | version "4.0.3"
3084 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.3.tgz#00b5e2b602f1794b9acaf9ca908a76386a7813bc"
3085 | dependencies:
3086 | ajv "^6.0.1"
3087 | ajv-keywords "^3.0.0"
3088 | chalk "^2.1.0"
3089 | lodash "^4.17.4"
3090 | slice-ansi "1.0.0"
3091 | string-width "^2.1.1"
3092 |
3093 | tar-pack@^3.4.0:
3094 | version "3.4.1"
3095 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f"
3096 | dependencies:
3097 | debug "^2.2.0"
3098 | fstream "^1.0.10"
3099 | fstream-ignore "^1.0.5"
3100 | once "^1.3.3"
3101 | readable-stream "^2.1.4"
3102 | rimraf "^2.5.1"
3103 | tar "^2.2.1"
3104 | uid-number "^0.0.6"
3105 |
3106 | tar@^2.2.1:
3107 | version "2.2.1"
3108 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1"
3109 | dependencies:
3110 | block-stream "*"
3111 | fstream "^1.0.2"
3112 | inherits "2"
3113 |
3114 | test-exclude@^4.1.1:
3115 | version "4.2.0"
3116 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.2.0.tgz#07e3613609a362c74516a717515e13322ab45b3c"
3117 | dependencies:
3118 | arrify "^1.0.1"
3119 | micromatch "^2.3.11"
3120 | object-assign "^4.1.0"
3121 | read-pkg-up "^1.0.1"
3122 | require-main-filename "^1.0.1"
3123 |
3124 | text-table@~0.2.0:
3125 | version "0.2.0"
3126 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
3127 |
3128 | throat@^4.0.0:
3129 | version "4.1.0"
3130 | resolved "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a"
3131 |
3132 | through@^2.3.6:
3133 | version "2.3.8"
3134 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
3135 |
3136 | tmp@^0.0.33:
3137 | version "0.0.33"
3138 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9"
3139 | dependencies:
3140 | os-tmpdir "~1.0.2"
3141 |
3142 | tmpl@1.0.x:
3143 | version "1.0.4"
3144 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1"
3145 |
3146 | to-fast-properties@^1.0.3:
3147 | version "1.0.3"
3148 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47"
3149 |
3150 | tough-cookie@>=2.3.3, tough-cookie@^2.3.3, tough-cookie@~2.3.0, tough-cookie@~2.3.3:
3151 | version "2.3.4"
3152 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655"
3153 | dependencies:
3154 | punycode "^1.4.1"
3155 |
3156 | tr46@^1.0.0:
3157 | version "1.0.1"
3158 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09"
3159 | dependencies:
3160 | punycode "^2.1.0"
3161 |
3162 | trim-newlines@^1.0.0:
3163 | version "1.0.0"
3164 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613"
3165 |
3166 | trim-newlines@^2.0.0:
3167 | version "2.0.0"
3168 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-2.0.0.tgz#b403d0b91be50c331dfc4b82eeceb22c3de16d20"
3169 |
3170 | trim-right@^1.0.1:
3171 | version "1.0.1"
3172 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003"
3173 |
3174 | tunnel-agent@^0.6.0:
3175 | version "0.6.0"
3176 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
3177 | dependencies:
3178 | safe-buffer "^5.0.1"
3179 |
3180 | tweetnacl@^0.14.3, tweetnacl@~0.14.0:
3181 | version "0.14.5"
3182 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
3183 |
3184 | type-check@~0.3.2:
3185 | version "0.3.2"
3186 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
3187 | dependencies:
3188 | prelude-ls "~1.1.2"
3189 |
3190 | typedarray@^0.0.6:
3191 | version "0.0.6"
3192 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
3193 |
3194 | uglify-js@^2.6:
3195 | version "2.8.29"
3196 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd"
3197 | dependencies:
3198 | source-map "~0.5.1"
3199 | yargs "~3.10.0"
3200 | optionalDependencies:
3201 | uglify-to-browserify "~1.0.0"
3202 |
3203 | uglify-to-browserify@~1.0.0:
3204 | version "1.0.2"
3205 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7"
3206 |
3207 | uid-number@^0.0.6:
3208 | version "0.0.6"
3209 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81"
3210 |
3211 | util-deprecate@~1.0.1:
3212 | version "1.0.2"
3213 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
3214 |
3215 | util.promisify@^1.0.0:
3216 | version "1.0.0"
3217 | resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030"
3218 | dependencies:
3219 | define-properties "^1.1.2"
3220 | object.getownpropertydescriptors "^2.0.3"
3221 |
3222 | uuid@^3.0.0, uuid@^3.1.0:
3223 | version "3.2.1"
3224 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14"
3225 |
3226 | validate-npm-package-license@^3.0.1:
3227 | version "3.0.3"
3228 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.3.tgz#81643bcbef1bdfecd4623793dc4648948ba98338"
3229 | dependencies:
3230 | spdx-correct "^3.0.0"
3231 | spdx-expression-parse "^3.0.0"
3232 |
3233 | verror@1.10.0:
3234 | version "1.10.0"
3235 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400"
3236 | dependencies:
3237 | assert-plus "^1.0.0"
3238 | core-util-is "1.0.2"
3239 | extsprintf "^1.2.0"
3240 |
3241 | w3c-hr-time@^1.0.1:
3242 | version "1.0.1"
3243 | resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz#82ac2bff63d950ea9e3189a58a65625fedf19045"
3244 | dependencies:
3245 | browser-process-hrtime "^0.1.2"
3246 |
3247 | walker@~1.0.5:
3248 | version "1.0.7"
3249 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb"
3250 | dependencies:
3251 | makeerror "1.0.x"
3252 |
3253 | watch@~0.18.0:
3254 | version "0.18.0"
3255 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.18.0.tgz#28095476c6df7c90c963138990c0a5423eb4b986"
3256 | dependencies:
3257 | exec-sh "^0.2.0"
3258 | minimist "^1.2.0"
3259 |
3260 | webidl-conversions@^4.0.1, webidl-conversions@^4.0.2:
3261 | version "4.0.2"
3262 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad"
3263 |
3264 | whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.3:
3265 | version "1.0.3"
3266 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.3.tgz#57c235bc8657e914d24e1a397d3c82daee0a6ba3"
3267 | dependencies:
3268 | iconv-lite "0.4.19"
3269 |
3270 | whatwg-url@^6.4.0:
3271 | version "6.4.0"
3272 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-6.4.0.tgz#08fdf2b9e872783a7a1f6216260a1d66cc722e08"
3273 | dependencies:
3274 | lodash.sortby "^4.7.0"
3275 | tr46 "^1.0.0"
3276 | webidl-conversions "^4.0.1"
3277 |
3278 | which-module@^2.0.0:
3279 | version "2.0.0"
3280 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
3281 |
3282 | which@^1.2.12, which@^1.2.9, which@^1.3.0:
3283 | version "1.3.0"
3284 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a"
3285 | dependencies:
3286 | isexe "^2.0.0"
3287 |
3288 | wide-align@^1.1.0:
3289 | version "1.1.2"
3290 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710"
3291 | dependencies:
3292 | string-width "^1.0.2"
3293 |
3294 | window-size@0.1.0:
3295 | version "0.1.0"
3296 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d"
3297 |
3298 | wordwrap@0.0.2:
3299 | version "0.0.2"
3300 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f"
3301 |
3302 | wordwrap@~0.0.2:
3303 | version "0.0.3"
3304 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107"
3305 |
3306 | wordwrap@~1.0.0:
3307 | version "1.0.0"
3308 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
3309 |
3310 | wrap-ansi@^2.0.0:
3311 | version "2.1.0"
3312 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85"
3313 | dependencies:
3314 | string-width "^1.0.1"
3315 | strip-ansi "^3.0.1"
3316 |
3317 | wrappy@1:
3318 | version "1.0.2"
3319 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
3320 |
3321 | write-file-atomic@^2.1.0:
3322 | version "2.3.0"
3323 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab"
3324 | dependencies:
3325 | graceful-fs "^4.1.11"
3326 | imurmurhash "^0.1.4"
3327 | signal-exit "^3.0.2"
3328 |
3329 | write@^0.2.1:
3330 | version "0.2.1"
3331 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757"
3332 | dependencies:
3333 | mkdirp "^0.5.1"
3334 |
3335 | ws@^4.0.0:
3336 | version "4.1.0"
3337 | resolved "https://registry.yarnpkg.com/ws/-/ws-4.1.0.tgz#a979b5d7d4da68bf54efe0408967c324869a7289"
3338 | dependencies:
3339 | async-limiter "~1.0.0"
3340 | safe-buffer "~5.1.0"
3341 |
3342 | xml-name-validator@^3.0.0:
3343 | version "3.0.0"
3344 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a"
3345 |
3346 | y18n@^3.2.1:
3347 | version "3.2.1"
3348 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41"
3349 |
3350 | yallist@^2.1.2:
3351 | version "2.1.2"
3352 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
3353 |
3354 | yargs-parser@^8.1.0:
3355 | version "8.1.0"
3356 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-8.1.0.tgz#f1376a33b6629a5d063782944da732631e966950"
3357 | dependencies:
3358 | camelcase "^4.1.0"
3359 |
3360 | yargs@^10.0.3:
3361 | version "10.1.2"
3362 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-10.1.2.tgz#454d074c2b16a51a43e2fb7807e4f9de69ccb5c5"
3363 | dependencies:
3364 | cliui "^4.0.0"
3365 | decamelize "^1.1.1"
3366 | find-up "^2.1.0"
3367 | get-caller-file "^1.0.1"
3368 | os-locale "^2.0.0"
3369 | require-directory "^2.1.1"
3370 | require-main-filename "^1.0.1"
3371 | set-blocking "^2.0.0"
3372 | string-width "^2.0.0"
3373 | which-module "^2.0.0"
3374 | y18n "^3.2.1"
3375 | yargs-parser "^8.1.0"
3376 |
3377 | yargs@~3.10.0:
3378 | version "3.10.0"
3379 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1"
3380 | dependencies:
3381 | camelcase "^1.0.2"
3382 | cliui "^2.1.0"
3383 | decamelize "^1.0.0"
3384 | window-size "0.1.0"
3385 |
3386 | yarn-outdated-formatter@^2.0.0:
3387 | version "2.0.0"
3388 | resolved "https://registry.yarnpkg.com/yarn-outdated-formatter/-/yarn-outdated-formatter-2.0.0.tgz#43578a204d85036f86ae2bdfd293e5c6e410be3b"
3389 | dependencies:
3390 | js-yaml "^3.8.4"
3391 | meow "^3.7.0"
3392 | semver "^5.3.0"
3393 |
--------------------------------------------------------------------------------