├── .all-contributorsrc
├── .gitattributes
├── .github
├── ISSUE_TEMPLATE.md
└── PULL_REQUEST_TEMPLATE.md
├── .gitignore
├── .travis.yml
├── CHANGELOG.md
├── CONTRIBUTING.md
├── LICENSE
├── README.md
├── __tests__
├── index.js
└── lint.js
├── api
├── details.js
├── hello.js
└── lint-title.js
├── now.json
├── other
├── CODE_OF_CONDUCT.md
├── MAINTAINING.md
├── USERS.md
└── manual-releases.md
├── package.json
├── src
├── cli.js
├── default-commitlint.config.js
├── github.js
├── index.js
├── jest.config.js
├── lighthouse.commitlint.config.js
├── lint.js
├── server.js
└── view-details.js
└── yarn.lock
/.all-contributorsrc:
--------------------------------------------------------------------------------
1 | {
2 | "projectName": "commitlintbot",
3 | "projectOwner": "kentcdodds",
4 | "files": [
5 | "README.md"
6 | ],
7 | "imageSize": 100,
8 | "commit": false,
9 | "contributors": [
10 | {
11 | "login": "kentcdodds",
12 | "name": "Kent C. Dodds",
13 | "avatar_url": "https://avatars.githubusercontent.com/u/1500684?v=3",
14 | "profile": "https://kentcdodds.com",
15 | "contributions": [
16 | "code",
17 | "doc",
18 | "infra",
19 | "test"
20 | ]
21 | }
22 | ]
23 | }
24 |
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | * text=auto
2 | *.js text eol=lf
3 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE.md:
--------------------------------------------------------------------------------
1 |
13 |
14 | - `commitlintbot` version:
15 | - `node` version:
16 | - `npm` (or `yarn`) version:
17 |
18 | Relevant code or config
19 |
20 | ```javascript
21 |
22 | ```
23 |
24 | What you did:
25 |
26 |
27 |
28 | What happened:
29 |
30 |
31 |
32 | Reproduction repository:
33 |
34 |
38 |
39 | Problem description:
40 |
41 |
42 |
43 | Suggested solution:
44 |
--------------------------------------------------------------------------------
/.github/PULL_REQUEST_TEMPLATE.md:
--------------------------------------------------------------------------------
1 |
16 |
17 |
18 | **What**:
19 |
20 |
21 | **Why**:
22 |
23 |
24 | **How**:
25 |
26 |
27 | **Checklist**:
28 |
29 |
30 | - [ ] Documentation
31 | - [ ] Tests
32 | - [ ] Ready to be merged
33 | - [ ] Added myself to contributors table
34 |
35 |
36 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | secretstuff
2 | SECRETCODE
3 | node_modules
4 | coverage
5 | other
6 | .DS_Store
7 | .eslintcache
8 |
9 | package-lock.json
10 |
11 | .now
12 | .env
--------------------------------------------------------------------------------
/.travis.yml:
--------------------------------------------------------------------------------
1 | sudo: false
2 | language: node_js
3 | cache:
4 | directories:
5 | - ~/.npm
6 | notifications:
7 | email: false
8 | node_js: '8'
9 | install: npm install
10 | script: npm run test
11 | branches:
12 | only: master
13 |
--------------------------------------------------------------------------------
/CHANGELOG.md:
--------------------------------------------------------------------------------
1 | # CHANGELOG
2 |
3 | The changelog is automatically updated using [semantic-release](https://github.com/semantic-release/semantic-release).
4 | You can see it on the [releases page](../../releases).
5 |
--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 | # Contributing
2 |
3 | Thanks for being willing to contribute!
4 |
5 | **Working on your first Pull Request?** You can learn how from this *free* series
6 | [How to Contribute to an Open Source Project on GitHub][egghead]
7 |
8 | ## Project setup
9 |
10 | 1. Fork and clone the repo
11 | 2. `$ npm install` to install dependencies
12 | 3. `$ npm run validate` to validate you've got it working
13 | 4. Create a branch for your PR
14 |
15 | > Tip: Keep your `master` branch pointing at the original repository and make
16 | > pull requests from branches on your fork. To do this, run:
17 | >
18 | > ```
19 | > git remote add upstream https://github.com/kentcdodds/commitlintbot.git
20 | > git fetch upstream
21 | > git branch --set-upstream-to=upstream/master master
22 | > ```
23 | >
24 | > This will add the original repository as a "remote" called "upstream,"
25 | > Then fetch the git information from that remote, then set your local `master`
26 | > branch to use the upstream master branch whenever you run `git pull`.
27 | > Then you can make all of your pull request branches based on this `master`
28 | > branch. Whenever you want to update your version of `master`, do a regular
29 | > `git pull`.
30 |
31 | ## Add yourself as a contributor
32 |
33 | This project follows the [all contributors][all-contributors] specification.
34 | To add yourself to the table of contributors on the `README.md`, please use the
35 | automated script as part of your PR:
36 |
37 | ```console
38 | npm run add-contributor
39 | ```
40 |
41 | Follow the prompt and commit `.all-contributorsrc` and `README.md` in the PR.
42 | If you've already added yourself to the list and are making
43 | a new type of contribution, you can run it again and select the added
44 | contribution type.
45 |
46 | ## Committing and Pushing changes
47 |
48 | Please make sure to run the tests before you commit your changes. You can run
49 | `npm run test:update` which will update any snapshots that need updating.
50 | Make sure to include those changes (if they exist) in your commit.
51 |
52 | ### opt into git hooks
53 |
54 | There are git hooks set up with this project that are automatically installed
55 | when you install dependencies. They're really handy, but are turned off by
56 | default (so as to not hinder new contributors). You can opt into these by
57 | creating a file called `.opt-in` at the root of the project and putting this
58 | inside:
59 |
60 | ```
61 | pre-commit
62 | ```
63 |
64 | ## Help needed
65 |
66 | Please checkout the [the open issues][issues]
67 |
68 | Also, please watch the repo and respond to questions/bug reports/feature
69 | requests! Thanks!
70 |
71 | [egghead]: https://egghead.io/series/how-to-contribute-to-an-open-source-project-on-github
72 | [all-contributors]: https://github.com/kentcdodds/all-contributors
73 | [issues]: https://github.com/kentcdodds/commitlintbot/issues
74 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 | Copyright (c) 2017 Kent C. Dodds
3 |
4 | Permission is hereby granted, free of charge, to any person obtaining a copy
5 | of this software and associated documentation files (the "Software"), to deal
6 | in the Software without restriction, including without limitation the rights
7 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 | copies of the Software, and to permit persons to whom the Software is
9 | furnished to do so, subject to the following conditions:
10 |
11 | The above copyright notice and this permission notice shall be included in all
12 | copies or substantial portions of the Software.
13 |
14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20 | SOFTWARE.
21 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 |
commitlintbot
3 |
4 |
Runs commitlint against your projects PRs
5 |
6 |
7 |
8 |
9 | [![Build Status][build-badge]][build]
10 |
11 | [![version][version-badge]][package]
12 | [![downloads][downloads-badge]][npmtrends]
13 | [![MIT License][license-badge]][LICENSE]
14 |
15 | [](#contributors)
16 | [![PRs Welcome][prs-badge]][prs]
17 | [![Code of Conduct][coc-badge]][coc]
18 |
19 | [![Watch on GitHub][github-watch-badge]][github-watch]
20 | [![Star on GitHub][github-star-badge]][github-star]
21 | [![Tweet][twitter-badge]][twitter]
22 |
23 |
24 |
25 |
26 | ## The problem
27 |
28 | You use [conventional-changelog](http://conventionalcommits.org/), but you squash pull requests (PRs). So you want PR titles to match the same semantics as your conventional changelog requirements. _(If you want a bot to lint against your commit messages instead of the PR title, then check out [ahmed-taj/commitlint-bot](https://github.com/ahmed-taj/commitlint-bot)!)_
29 |
30 | ## This solution
31 |
32 | commitlintbot is a bot that will update your pull request's commit status based on your PR's title satisfying the requirements of your conventional-changelog configuration. It runs on now.sh, and receives github webhooks and updates a commit status via the Github API.
33 |
34 |
35 | 
36 | 
37 |
38 |
39 | ## Configuration
40 | * A [default commitlint config](./default-commitlint.config.js) will be applied.
41 | - However if you have a `commitlint.config.js` in the root of the repo, that will be used instead. The other config formats (.commitlintrc.js, .commitlintrc.json, .commitlintrc.yml) are **not** supported.
42 | * Additionally, if you have a `.cz-config.js` in the root of your repo, that will be used to enforce your custom scopes & types.
43 |
44 |
45 | ## Installation
46 |
47 | * Setup webhook.
48 | * `https://commitlintbot2.vercel.app/api/lint-title`
49 | * `application/json`
50 | * Secret... not implemented. :|
51 | * Choose individual events: `Pull request`
52 | * Add.
53 | * If you want to use this in an organization and the org has fairly locked down permissions, org owners will need to approve the use of the app (via OAuth client_id): https://github.com/settings/connections/applications/e3737bbd21bc66fb0a18
54 |
55 | Now, things should be pretty automatic.
56 |
57 | ## Troubleshooting
58 |
59 | The responses of the webhook should be minimally helpful:
60 |
61 | 
62 |
63 |
64 | ## Dev
65 |
66 | ### getting a magical oauth token to use so the icon is the app not me
67 |
68 | 1. https://github.com/login/oauth/authorize?client_id=e3737bbd21bc66fb0a18&login=GoogleChrome&scope=repo:status%20public_repo
69 | 2. grab the `code` that's in the URL afterwards.
70 | 3. https://developer.github.com/apps/building-oauth-apps/authorizing-oauth-apps/#2-users-are-redirected-back-to-your-site-by-github
71 | * use postman or whatever to post those in the body
72 |
73 |
74 | ## LICENSE
75 |
76 | MIT
77 |
78 | [npm]: https://www.npmjs.com/
79 | [node]: https://nodejs.org
80 | [build-badge]: https://img.shields.io/travis/paulirish/commitlintbot/master.svg?style=flat-square
81 | [build]: https://travis-ci.org/paulirish/commitlintbot
82 | [coverage-badge]: https://img.shields.io/codecov/c/github/paulirish/commitlintbot.svg?style=flat-square
83 | [coverage]: https://codecov.io/github/paulirish/commitlintbot
84 | [version-badge]: https://img.shields.io/npm/v/commitlintbot.svg?style=flat-square
85 | [package]: https://www.npmjs.com/package/commitlintbot
86 | [downloads-badge]: https://img.shields.io/npm/dm/commitlintbot.svg?style=flat-square
87 | [npmtrends]: http://www.npmtrends.com/commitlintbot
88 | [license-badge]: https://img.shields.io/npm/l/commitlintbot.svg?style=flat-square
89 | [license]: https://github.com/paulirish/commitlintbot/blob/master/LICENSE
90 | [prs-badge]: https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square
91 | [prs]: http://makeapullrequest.com
92 | [donate-badge]: https://img.shields.io/badge/$-support-green.svg?style=flat-square
93 | [coc-badge]: https://img.shields.io/badge/code%20of-conduct-ff69b4.svg?style=flat-square
94 | [coc]: https://github.com/paulirish/commitlintbot/blob/master/other/CODE_OF_CONDUCT.md
95 | [github-watch-badge]: https://img.shields.io/github/watchers/paulirish/commitlintbot.svg?style=social
96 | [github-watch]: https://github.com/paulirish/commitlintbot/watchers
97 | [github-star-badge]: https://img.shields.io/github/stars/paulirish/commitlintbot.svg?style=social
98 | [github-star]: https://github.com/paulirish/commitlintbot/stargazers
99 | [twitter]: https://twitter.com/intent/tweet?text=Check%20out%20commitlintbot%20by%20%40paulirish%20https%3A%2F%2Fgithub.com%2Fpaulirish%2Fcommitlintbot%20%F0%9F%91%8D
100 | [twitter-badge]: https://img.shields.io/twitter/url/https/github.com/paulirish/commitlintbot.svg?style=social
101 | [emojis]: https://github.com/paulirish/all-contributors#emoji-key
102 | [all-contributors]: https://github.com/paulirish/all-contributors
103 |
--------------------------------------------------------------------------------
/__tests__/index.js:
--------------------------------------------------------------------------------
1 | const commitlintbot = require('../src/index');
2 |
3 | test.skip('commitlint should not throw', async () => {
4 | const prData = {
5 | "repo": "paulirish/hello-world",
6 | "srcRepo": "paulirish/hello-world",
7 | "sha": "0b1071e273a63bdaa3b477aeafbb585247de3cbb",
8 | "pr": 7
9 | };
10 |
11 | expect(commitlintbot).toBeDefined();
12 |
13 | const fullRun = await commitlintbot(prData);
14 | expect(fullRun).toBeUndefined();
15 | })
16 |
--------------------------------------------------------------------------------
/__tests__/lint.js:
--------------------------------------------------------------------------------
1 | const lint = require('../src/lint');
2 |
3 | test('commitlint should work', async () => {
4 |
5 | expect(lint).toBeDefined();
6 |
7 | let ret = await lint('fix: ok');
8 | expect(ret.reportObj.valid).toEqual(true);
9 |
10 | ret = await lint('no type or message because no colon');
11 | expect(ret.reportObj.valid).toEqual(false);
12 | expect(ret.reportObj.errors.length).toEqual(2);
13 |
14 | ret = await lint('nondefaulttype: wont work');
15 | expect(ret.reportObj.valid).toEqual(false);
16 | expect(ret.reportObj.errors.length).toEqual(1);
17 | });
18 |
19 | // todo add tests for handling czConfig
20 |
--------------------------------------------------------------------------------
/api/details.js:
--------------------------------------------------------------------------------
1 |
2 |
3 | const viewDetails = require('../src/server').viewDetails;
4 |
5 | export default viewDetails;
6 |
--------------------------------------------------------------------------------
/api/hello.js:
--------------------------------------------------------------------------------
1 |
2 | module.exports = (req, res) => {
3 | const { name = 'World' } = req.query
4 | res.send(`Hello ${name}!`)
5 | }
6 |
--------------------------------------------------------------------------------
/api/lint-title.js:
--------------------------------------------------------------------------------
1 |
2 |
3 | import {indexPOST} from '../src/server.js';
4 |
5 | export default indexPOST;
6 |
7 |
--------------------------------------------------------------------------------
/now.json:
--------------------------------------------------------------------------------
1 | {
2 | "version": 2,
3 | "scope": "paulirish",
4 | "alias": "commitlintbot2",
5 | "files": [
6 | "src",
7 | "api",
8 | "yarn.lock",
9 | ".gitignore",
10 | ".gitattributes"
11 | ],
12 | "env": {
13 | "ghtoken":"@ghtoken"
14 | }
15 | }
--------------------------------------------------------------------------------
/other/CODE_OF_CONDUCT.md:
--------------------------------------------------------------------------------
1 | # Contributor Covenant Code of Conduct
2 |
3 | ## Our Pledge
4 |
5 | In the interest of fostering an open and welcoming environment, we as
6 | contributors and maintainers pledge to making participation in our project and
7 | our community a harassment-free experience for everyone, regardless of age, body
8 | size, disability, ethnicity, gender identity and expression, level of experience,
9 | nationality, personal appearance, race, religion, or sexual identity and
10 | orientation.
11 |
12 | ## Our Standards
13 |
14 | Examples of behavior that contributes to creating a positive environment
15 | include:
16 |
17 | * Using welcoming and inclusive language
18 | * Being respectful of differing viewpoints and experiences
19 | * Gracefully accepting constructive criticism
20 | * Focusing on what is best for the community
21 | * Showing empathy towards other community members
22 |
23 | Examples of unacceptable behavior by participants include:
24 |
25 | * The use of sexualized language or imagery and unwelcome sexual attention or
26 | advances
27 | * Trolling, insulting/derogatory comments, and personal or political attacks
28 | * Public or private harassment
29 | * Publishing others' private information, such as a physical or electronic
30 | address, without explicit permission
31 | * Other conduct which could reasonably be considered inappropriate in a
32 | professional setting
33 |
34 | ## Our Responsibilities
35 |
36 | Project maintainers are responsible for clarifying the standards of acceptable
37 | behavior and are expected to take appropriate and fair corrective action in
38 | response to any instances of unacceptable behavior.
39 |
40 | Project maintainers have the right and responsibility to remove, edit, or
41 | reject comments, commits, code, wiki edits, issues, and other contributions
42 | that are not aligned to this Code of Conduct, or to ban temporarily or
43 | permanently any contributor for other behaviors that they deem inappropriate,
44 | threatening, offensive, or harmful.
45 |
46 | ## Scope
47 |
48 | This Code of Conduct applies both within project spaces and in public spaces
49 | when an individual is representing the project or its community. Examples of
50 | representing a project or community include using an official project e-mail
51 | address, posting via an official social media account, or acting as an appointed
52 | representative at an online or offline event. Representation of a project may be
53 | further defined and clarified by project maintainers.
54 |
55 | ## Enforcement
56 |
57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be
58 | reported by contacting the project team at kent+coc@doddsfamily.us. All
59 | complaints will be reviewed and investigated and will result in a response that
60 | is deemed necessary and appropriate to the circumstances. The project team is
61 | obligated to maintain confidentiality with regard to the reporter of an incident.
62 | Further details of specific enforcement policies may be posted separately.
63 |
64 | Project maintainers who do not follow or enforce the Code of Conduct in good
65 | faith may face temporary or permanent repercussions as determined by other
66 | members of the project's leadership.
67 |
68 | ## Attribution
69 |
70 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71 | available at [http://contributor-covenant.org/version/1/4][version]
72 |
73 | [homepage]: http://contributor-covenant.org
74 | [version]: http://contributor-covenant.org/version/1/4/
75 |
--------------------------------------------------------------------------------
/other/MAINTAINING.md:
--------------------------------------------------------------------------------
1 | # Maintaining
2 |
3 | This is documentation for maintainers of this project.
4 |
5 | ## Code of Conduct
6 |
7 | Please review, understand, and be an example of it. Violations of the code of conduct are
8 | taken seriously, even (especially) for maintainers.
9 |
10 | ## Issues
11 |
12 | We want to support and build the community. We do that best by helping people learn to solve
13 | their own problems. We have an issue template and hopefully most folks follow it. If it's
14 | not clear what the issue is, invite them to create a minimal reproduction of what they're trying
15 | to accomplish or the bug they think they've found.
16 |
17 | Once it's determined that a code change is necessary, point people to
18 | [makeapullrequest.com](http://makeapullrequest.com) and invite them to make a pull request.
19 | If they're the one who needs the feature, they're the one who can build it. If they need
20 | some hand holding and you have time to lend a hand, please do so. It's an investment into
21 | another human being, and an investment into a potential maintainer.
22 |
23 | Remember that this is open source, so the code is not yours, it's ours. If someone needs a change
24 | in the codebase, you don't have to make it happen yourself. Commit as much time to the project
25 | as you want/need to. Nobody can ask any more of you than that.
26 |
27 | ## Pull Requests
28 |
29 | As a maintainer, you're fine to make your branches on the main repo or on your own fork. Either
30 | way is fine.
31 |
32 | When we receive a pull request, a travis build is kicked off automatically (see the `.travis.yml`
33 | for what runs in the travis build). We avoid merging anything that breaks the travis build.
34 |
35 | Please review PRs and focus on the code rather than the individual. You never know when this is
36 | someone's first ever PR and we want their experience to be as positive as possible, so be
37 | uplifting and constructive.
38 |
39 | When you merge the pull request, 99% of the time you should use the
40 | [Squash and merge](https://help.github.com/articles/merging-a-pull-request/) feature. This keeps
41 | our git history clean, but more importantly, this allows us to make any necessary changes to the
42 | commit message so we release what we want to release. See the next section on Releases for more
43 | about that.
44 |
45 | ## Release
46 |
47 | Our releases are automatic. They happen whenever code lands into `master`. A travis build gets
48 | kicked off and if it's successful, a tool called
49 | [`semantic-release`](https://github.com/semantic-release/semantic-release) is used to
50 | automatically publish a new release to npm as well as a changelog to GitHub. It is only able to
51 | determine the version and whether a release is necessary by the git commit messages. With this
52 | in mind, **please brush up on [the commit message convention][commit] which drives our releases.**
53 |
54 | > One important note about this: Please make sure that commit messages do NOT contain the words
55 | > "BREAKING CHANGE" in them unless we want to push a major version. I've been burned by this
56 | > more than once where someone will include "BREAKING CHANGE: None" and it will end up releasing
57 | > a new major version. Not a huge deal honestly, but kind of annoying...
58 |
59 | ## Thanks!
60 |
61 | Thank you so much for helping to maintain this project!
62 |
63 | [commit]: https://github.com/conventional-changelog-archived-repos/conventional-changelog-angular/blob/ed32559941719a130bb0327f886d6a32a8cbc2ba/convention.md
64 |
--------------------------------------------------------------------------------
/other/USERS.md:
--------------------------------------------------------------------------------
1 | # Users
2 |
3 | If you or your company uses this project, add your name to this list! Eventually
4 | we may have a website to showcase these (wanna build it!?)
5 |
6 | > No users have been added yet!
7 |
8 |
13 |
--------------------------------------------------------------------------------
/other/manual-releases.md:
--------------------------------------------------------------------------------
1 | # manual-releases
2 |
3 | This project has an automated release set up. So things are only released when there are
4 | useful changes in the code that justify a release. But sometimes things get messed up one way or another
5 | and we need to trigger the release ourselves. When this happens, simply bump the number below and commit
6 | that with the following commit message based on your needs:
7 |
8 | **Major**
9 |
10 | ```
11 | fix(release): manually release a major version
12 |
13 | There was an issue with a major release, so this manual-releases.md
14 | change is to release a new major version.
15 |
16 | Reference: #
17 |
18 | BREAKING CHANGE:
19 | ```
20 |
21 | **Minor**
22 |
23 | ```
24 | feat(release): manually release a minor version
25 |
26 | There was an issue with a minor release, so this manual-releases.md
27 | change is to release a new minor version.
28 |
29 | Reference: #
30 | ```
31 |
32 | **Patch**
33 |
34 | ```
35 | fix(release): manually release a patch version
36 |
37 | There was an issue with a patch release, so this manual-releases.md
38 | change is to release a new patch version.
39 |
40 | Reference: #
41 | ```
42 |
43 | The number of times we've had to do a manual release is: 0
44 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "commitlintbot",
3 | "version": "0.2.2",
4 | "description": "Runs commitlint against your projects PRs",
5 | "main": "src/index.js",
6 | "engines": {
7 | "node": "> 4",
8 | "npm": "> 3"
9 | },
10 | "scripts": {
11 | "test": "jest",
12 | "demo": "node src/lint.js \"feat: awesome feature\""
13 | },
14 | "files": [
15 | "dist"
16 | ],
17 | "keywords": [],
18 | "license": "MIT",
19 | "dependencies": {
20 | "@commitlint/core": "^8.3.5",
21 | "@now/node": "^1.4.1",
22 | "axios": "0.15.3",
23 | "body-parser": "^1.15.2",
24 | "commitlint-config-cz": "^0.13.0",
25 | "express": "^4.14.0",
26 | "github-build": "^1.2.0",
27 | "marked": "^0.3.19",
28 | "promise-queue": "^2.2.3",
29 | "raven": "^2.2.1",
30 | "require-from-string": "^2.0.1"
31 | },
32 | "devDependencies": {
33 | "jest-cli": "^21.2.1"
34 | },
35 | "repository": {
36 | "type": "git",
37 | "url": "https://github.com/paulirish/commitlintbot.git"
38 | },
39 | "bugs": {
40 | "url": "https://github.com/paulirish/commitlintbot/issues"
41 | },
42 | "homepage": "https://github.com/paulirish/commitlintbot#readme"
43 | }
44 |
--------------------------------------------------------------------------------
/src/cli.js:
--------------------------------------------------------------------------------
1 | const commitlintbot = require('./');
2 |
3 | /*
4 | Running
5 |
6 | env (cat .env) node src/cli.js "feat: awesome feature"
7 | gls src/* | entr env (cat .env) node src/cli.js "feat: awesome feature"
8 |
9 | options:
10 | --report reports to github status check
11 | */
12 |
13 | (async function() {
14 | const commitmsg = process.argv[2];
15 |
16 | const {clintConfig, czConfig} = getLHConfigPlaceholders();
17 |
18 | const cliRunData = {
19 | title: commitmsg,
20 | clintConfig,
21 | czConfig,
22 | };
23 | const prData = {
24 | repo: 'GoogleChrome/lighthouse',
25 | srcRepo: 'GoogleChrome/lighthouse',
26 | sha: 'dba63a60d774d9f6fa1ef0974495bec96af2235c',
27 | pr: '10361',
28 | };
29 | const opts = {
30 | reportStatus: process.argv.includes('--report'),
31 | };
32 |
33 | await commitlintbot(prData, cliRunData, opts);
34 | })();
35 |
36 | function getLHConfigPlaceholders() {
37 | const clintConfig = {
38 | extends: ['cz'],
39 | rules: {
40 | 'body-leading-blank': [1, 'always'],
41 | 'body-tense': [1, 'always', ['present-imperative']],
42 | 'footer-leading-blank': [1, 'always'],
43 | 'footer-tense': [1, 'always', ['present-imperative']],
44 | 'header-max-length': [2, 'always', 80],
45 | // 'lang': [0, 'always', 'eng'],
46 | 'scope-case': [2, 'always', 'lowerCase'],
47 | 'scope-empty': [0, 'never'],
48 | 'subject-case': [1, 'always', 'lowerCase'],
49 | 'subject-empty': [0, 'never'],
50 | 'subject-full-stop': [2, 'never', '.'],
51 | // 'subject-tense': [1, 'always', ['present-imperative']],
52 | 'type-case': [2, 'always', 'lowerCase'],
53 | 'type-empty': [2, 'never'],
54 | // The scope-enum : defined in the cz-config
55 | // The 'type-enum': defined in the cz-config
56 | },
57 | };
58 | const czConfig = {
59 | allowBreakingChanges: ['core'],
60 | allowCustomScopes: true,
61 | scopes: [],
62 | types: [
63 | {value: 'new_audit', name: 'new_audit: A new audit'},
64 | {value: 'core', name: 'core: Driver, gather, (non-new) audits, LHR JSON, etc'},
65 | {value: 'tests', name: 'tests: Tests, smokehouse, etc'},
66 | {value: 'i18n', name: 'i18n: Internationalization'},
67 | {value: 'docs', name: 'docs: Documentation'},
68 | {value: 'deps', name: 'deps: Dependency bumps only'},
69 | {value: 'report', name: 'report: Report, UI, renderers'},
70 | {value: 'cli', name: 'cli: CLI stuff'},
71 | {value: 'clients', name: 'clients: Extension, DevTools, or LR stuff'},
72 | {value: 'misc', name: 'misc: Something else entirely'},
73 | ],
74 | };
75 | return {clintConfig, czConfig};
76 | }
77 |
--------------------------------------------------------------------------------
/src/default-commitlint.config.js:
--------------------------------------------------------------------------------
1 | // This is exactly the same as @commitlint/config-angular (so far)
2 | const types = [
3 | 'build',
4 | 'ci',
5 | 'docs',
6 | 'feat',
7 | 'fix',
8 | 'perf',
9 | 'refactor',
10 | 'revert',
11 | 'style',
12 | 'test'
13 | ];
14 |
15 | module.exports = module.exports = {
16 | rules: {
17 | 'body-leading-blank': [1, 'always'],
18 | 'footer-leading-blank': [1, 'always'],
19 | 'header-max-length': [2, 'always', 72],
20 | 'scope-case': [2, 'always', 'lower-case'],
21 | 'subject-case': [
22 | 2,
23 | 'never',
24 | ['sentence-case', 'start-case', 'pascal-case', 'upper-case']
25 | ],
26 | 'subject-empty': [2, 'never'],
27 | 'subject-full-stop': [2, 'never', '.'],
28 | 'type-case': [2, 'always', 'lower-case'],
29 | 'type-empty': [2, 'never'],
30 | 'type-enum': [2, 'always', types]
31 | }
32 | };
--------------------------------------------------------------------------------
/src/github.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 |
3 | const axios = require('axios');
4 |
5 | function api(data, repo, suffix) {
6 | const url = `https://api.github.com/repos/${repo}/${suffix}`;
7 | console.log('>> GH API: ', url);
8 |
9 | return axios({
10 | method: 'GET',
11 | url: url,
12 | responseType: 'json',
13 | headers: {Authorization: `token ${data.token}`}
14 | })
15 | .then(ret => ret.data)
16 | .catch(err => {
17 | const response = err.response || {status: 500};
18 |
19 | return Promise.reject({
20 | status: response.status,
21 | error: response.data || {}
22 | });
23 | });
24 | }
25 |
26 | const getPRTitle = async data => {
27 | const payload = await api(data, data.repo, `pulls/${data.pr}`).catch(err => {
28 | console.warn('getPRTItle', err.status);
29 | throw new Error(`Failed to fetch title from Github API: ${err.status} ${err.error.message} ${err.error.documentation_url}`);
30 | });
31 | return payload && payload.title;
32 | };
33 |
34 | const getFileContents = async (data, path) => {
35 | const payload = await api(data, data.srcRepo, `contents/${path}?ref=${data.sha}`).catch(err =>
36 | console.warn('getFileContents', err.status, path)
37 | );
38 | return payload ? Buffer.from(payload.content, 'base64').toString('utf8') : undefined;
39 | };
40 |
41 | module.exports = {
42 | getPRTitle,
43 | getFileContents,
44 | };
45 |
--------------------------------------------------------------------------------
/src/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 |
3 | const Raven = require('raven');
4 |
5 | Raven.config(
6 | 'https://7b0de65a1e1f43a1bfc3ff0048b3a0eb:1491617418f048cdb1da1b9179575fbc@sentry.io/235838'
7 | ).install();
8 |
9 | const CommitStatus = require('github-build');
10 | const requireFromString = require('require-from-string');
11 | const {getPRTitle, getFileContents} = require('./github.js');
12 | const {generateURL} = require('./view-details.js');
13 |
14 | const lint = require('./lint');
15 |
16 | const MAXIMUM_STATUS_LENGTH = 140;
17 | const czConfigFilename = `.cz-config.js`;
18 | const clintConfigFilename = 'commitlint.config.js';
19 |
20 | const baseGithubData = {
21 | token: process.env.ghtoken, // (github oauth token: https://developer.github.com/v3/oauth)
22 | label: 'pr title lint'
23 | };
24 |
25 | async function gatherGithubData(githubData) {
26 | const apiFetches = [
27 | getPRTitle(githubData),
28 | getFileContents(githubData, clintConfigFilename),
29 | getFileContents(githubData, czConfigFilename)
30 | ];
31 | let [title, clintConfigContent, czConfigContent] = await Promise.all(apiFetches);
32 |
33 | // requireFromString: js file string => object
34 | const clintConfig = clintConfigContent && requireFromString(clintConfigContent);
35 | const czConfig = requireFromString(czConfigContent);
36 |
37 | return {title, clintConfig, czConfig}
38 | }
39 |
40 | const defaultOpts = {reportStatus: true};
41 |
42 | async function main(prData, cliRunData = false, opts = defaultOpts) {
43 | try {
44 | let status;
45 | const githubData = Object.assign({}, baseGithubData, prData);
46 |
47 | status = opts.reportStatus ? new CommitStatus(githubData) : new MockCommitStatus();
48 | await status.start('Linting the pull request title...').catch(handleCommitStatusFailure);
49 |
50 | // Allow CLI use for local testing :p
51 | const {title, clintConfig, czConfig} = await (!cliRunData ?
52 | gatherGithubData(githubData) :
53 | Promise.resolve(cliRunData));
54 |
55 | const {report, reportObj} = await lint(title, clintConfig, czConfig);
56 |
57 |
58 | opts.reportStatus && console.log('🌏 Reporting real status to GitHub: ', `https://api.github.com/repos/${prData.repo}/statuses/${prData.sha}`);
59 |
60 | // Set status to passing
61 | if (reportObj.valid === true) {
62 | console.log(`> 🖋✅ _Passing_ (https://github.com/${githubData.repo}/pull/${githubData.pr})`);
63 | return status
64 | .pass('PR title is good to go, boss', generateURL(title, report))
65 | .catch(handleCommitStatusFailure);
66 | }
67 |
68 | // Set status to failing
69 | console.log(`> 🖋❌ _Failing_ (https://github.com/${githubData.repo}/pull/${githubData.pr})`);
70 |
71 | const flatReport = report.join('.\n');
72 | console.log(flatReport);
73 | const failureMsg = flatReport.slice(0, MAXIMUM_STATUS_LENGTH);
74 | return status.fail(failureMsg, generateURL(title, report)).catch(handleCommitStatusFailure);
75 | } catch (err) {
76 | console.error('⚠️ Runtime failure', err);
77 | Raven.captureException(err);
78 | // Set status to error
79 | return status.error(err).catch(handleCommitStatusFailure);
80 | }
81 |
82 | function handleCommitStatusFailure({status, error}) {
83 | console.warn('Failed to set commit status API via github-build', status, error);
84 | return {status, data: {error}};
85 | }
86 | }
87 |
88 | module.exports = main;
89 |
90 |
91 |
92 | class MockCommitStatus {
93 | start (_) { return Promise.resolve(); }
94 | pass (_) { return Promise.resolve(); }
95 | fail (_) { return Promise.resolve(); }
96 | error (_) { return Promise.resolve(); }
97 | }
--------------------------------------------------------------------------------
/src/jest.config.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 |
3 | module.exports = {
4 | globals: {
5 | ghtoken: process.env.ghtoken,
6 | },
7 | };
8 |
--------------------------------------------------------------------------------
/src/lighthouse.commitlint.config.js:
--------------------------------------------------------------------------------
1 | /**
2 | * @license Copyright 2017 Google Inc. All Rights Reserved.
3 | * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
4 | * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
5 | */
6 | 'use strict';
7 |
8 | module.exports = {
9 | extends: ['cz'],
10 | rules: {
11 | 'body-leading-blank': [1, 'always'],
12 | 'body-tense': [1, 'always', ['present-imperative']],
13 | 'footer-leading-blank': [1, 'always'],
14 | 'footer-tense': [1, 'always', ['present-imperative']],
15 | 'header-max-length': [2, 'always', 80],
16 | 'lang': [0, 'always', 'eng'],
17 | 'scope-case': [2, 'always', 'lowerCase'],
18 | 'scope-empty': [0, 'never'],
19 | 'subject-case': [1, 'always', 'lowerCase'],
20 | 'subject-empty': [0, 'never'],
21 | 'subject-full-stop': [2, 'never', '.'],
22 | 'subject-tense': [1, 'always', ['present-imperative']],
23 | 'type-case': [2, 'always', 'lowerCase'],
24 | 'type-empty': [2, 'never'],
25 | // The scope-enum : defined in the cz-config
26 | // The 'type-enum': defined in the cz-config
27 | },
28 | };
29 |
--------------------------------------------------------------------------------
/src/lint.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 |
3 | const commitlint = require('@commitlint/core');
4 | const mergeCZWithBaseConfig = require('commitlint-config-cz/lib/config').get;
5 | const defaultClintConfig = require('./default-commitlint.config');
6 |
7 | async function lint(prTitle, clintConfig = {}, czConfig) {
8 | console.log(`> Linting: ${prTitle}`);
9 |
10 | // Use provided commitlint.config or fallback to our local preset
11 | const baseConfig = clintConfig || defaultClintConfig;
12 | baseConfig.extends = baseConfig.extends || [];
13 |
14 | let mergedConfig;
15 | if (czConfig) {
16 | // Hack because clint has this CRAZY FUCKING module loader if it sees an .extends prop
17 | const index = baseConfig.extends.indexOf('cz');
18 | index > -1 && baseConfig.extends.splice(index, 1);
19 |
20 | // Hack because of some weird expectation inside of commitlint-config-cz/lib/config').get;
21 | if (czConfig.scopes.length && !baseConfig.rules['scope-enum']) {
22 | baseConfig.rules['scope-enum'] = [2, 'always'];
23 | }
24 | if (czConfig.types.length && !baseConfig.rules['type-enum']) {
25 | baseConfig.rules['type-enum'] = [2, 'always'];
26 | }
27 |
28 | mergedConfig = mergeCZWithBaseConfig(czConfig, baseConfig);
29 | } else {
30 | mergedConfig = baseConfig;
31 | }
32 |
33 | // HACK remove deprecated rules. Can be removed after existing PRs
34 | for (const deprecatedRule of ['body-tense', 'footer-tense', 'lang', 'subject-tense']) {
35 | delete mergedConfig.rules[deprecatedRule];
36 | }
37 |
38 | const opts = await commitlint.load(mergedConfig);
39 | try {
40 | const reportObj = await commitlint.lint(prTitle, opts.rules);
41 | let report = await commitlint.format.formatResult(reportObj, {color: false});
42 | // drop weird helpURL https://github.com/conventional-changelog/commitlint/blob/master/docs/reference-api.md#usage
43 | report = report.slice(0, report.length - 2);
44 | return {reportObj, report};
45 | } catch (e) {
46 | return {
47 | reportObj: {
48 | valid: false,
49 | errors: [e.message],
50 | warnings: [],
51 | },
52 | report: [e.message]
53 | }
54 | }
55 | }
56 |
57 | module.exports = lint;
--------------------------------------------------------------------------------
/src/server.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 |
3 | const bodyParser = require('body-parser');
4 | const server = require('express')();
5 | const Queue = require('promise-queue');
6 | const Raven = require('raven');
7 |
8 | const {version} = require('../package.json');
9 | const commitlintbot = require('./');
10 | const viewDetails = require('./view-details');
11 |
12 | const log = console;
13 | const PORT = process.env.PORT || 3000;
14 | const queue = new Queue(1, process.env.STAGE_CI_MAX_QUEUE || 100);
15 |
16 | // github's webhook MUST use `application/json`
17 | // server.use(bodyParser.json());
18 |
19 | const indexGET = (request, response) => {
20 | response.json({version, queue});
21 | };
22 |
23 | const indexPOST = (request, response) => {
24 | let prData;
25 | try {
26 | const {headers, body} = request;
27 |
28 | const xGithubEvent = headers['x-github-event'];
29 | const contentType = headers['content-type'];
30 |
31 | if (contentType !== 'application/json')
32 | return response.status(400).send('Must set content type to `application/json`');
33 | if (!xGithubEvent) return response.status(403).send('Not a x-github-event POST');
34 |
35 | console.log('\n\n> Received webhook: ', body.repository.full_name, xGithubEvent);
36 | // 'ping' sent when a repo first registers the webhook
37 | if (xGithubEvent === 'ping') return response.sendStatus(200);
38 | if (xGithubEvent !== 'pull_request')
39 | return response.status(400).send('Unexpected non-pull_request webhook');
40 |
41 | if (!body.repository) {
42 | console.log('body', body);
43 | console.log('headers', headers);
44 | throw new Error('Missing repository metadata.');
45 | }
46 |
47 | // pull out required info
48 | prData = {
49 | repo: body.repository.full_name,
50 | srcRepo: body.pull_request.head.repo.full_name,
51 | sha: body.pull_request.head.sha,
52 | pr: body.number,
53 | };
54 | } catch (err) {
55 | console.error('⚠️ early server caught error', err);
56 | Raven.captureException(err);
57 | return response.status(500).send(err);
58 | }
59 |
60 | queue.add(async _ => {
61 | log.info(`> Calling commitlint bot with received webhook data`);
62 | try {
63 | const {status, data} = await commitlintbot(prData);
64 | // Some status API call failure
65 | if (data.error) {
66 | if (status === 404)
67 | return response
68 | .status(403)
69 | .send(
70 | 'Organization permissions for commitlintbot not Allowed. See https://github.com/paulirish/commitlintbot#installation '
71 | );
72 | return response.status(403).send(data.error);
73 | }
74 | response.status(200).send('Successful commitlintbot run');
75 | console.log(`> Succcessful commitlint bot run. (GH Status API statuscode: ${status})`);
76 | } catch (err) {
77 | response.status(500).send(err);
78 | Raven.captureException(err);
79 | console.error('⚠️ server caught error', err, err.stack);
80 | }
81 | log.info('> Done!');
82 | });
83 | };
84 |
85 |
86 | module.exports = {
87 | indexGET,
88 | indexPOST,
89 | viewDetails,
90 | }
--------------------------------------------------------------------------------
/src/view-details.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 |
3 | const marked = require('marked');
4 |
5 | module.exports = (request, response) => {
6 | const {query} = request;
7 | if (Object.keys(query).length === 0 || !query.msg) return response.status(204);
8 |
9 | const markdown = decodeURIComponent(query.msg)
10 | .replace(/✖/g, '❌')
11 | .replace(/✔/g, '✅')
12 | .replace(/⚠/g, '⚠️');
13 |
14 | const html = marked(markdown);
15 | console.log(html);
16 | return response.status(200).send(`${getPageTemplate()} ${html}`);
17 | };
18 |
19 | function getPageTemplate() {
20 | return `
21 |
22 | PR Lint Details
23 |
24 |
57 |
58 |
59 | `;
60 | }
61 |
62 | function generateURL(prTitle, reportArr) {
63 | const outputStr = `
64 | ### Pull request title
65 | > ${prTitle}
66 |
67 | ### Expected format
68 | > \`\${type}(\${optional-scope}): \${subject}\`
69 |
70 | ### Commitlint results
71 |
72 | * ${reportArr.join('\n* ')}
73 |
74 | [Full docs of commitlint rules](https://github.com/marionebl/commitlint/blob/master/docs/reference-rules.md)
75 | `;
76 |
77 | return `https://commitlintbot2.now.sh/api/details?msg=${encodeURIComponent(outputStr)}`;
78 | }
79 | module.exports.generateURL = generateURL;
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@commitlint/core@^8.3.5":
6 | version "8.3.5"
7 | resolved "https://registry.yarnpkg.com/@commitlint/core/-/core-8.3.5.tgz#00689ad817489263c71aad65875841961bce688d"
8 | integrity sha512-UjfNA95fXZW20dmNJ8upBfH/Br7RPQro3osatmE9l9EZBv0xzHS5Cc4TzXMwe32xxHCqIEUtPFedxAHgELVHmg==
9 | dependencies:
10 | "@commitlint/format" "^8.3.4"
11 | "@commitlint/lint" "^8.3.5"
12 | "@commitlint/load" "^8.3.5"
13 | "@commitlint/read" "^8.3.4"
14 |
15 | "@commitlint/ensure@^8.3.4":
16 | version "8.3.4"
17 | resolved "https://registry.yarnpkg.com/@commitlint/ensure/-/ensure-8.3.4.tgz#6931677e4ca0fde71686ae3b7a367261647a341d"
18 | integrity sha512-8NW77VxviLhD16O3EUd02lApMFnrHexq10YS4F4NftNoErKbKaJ0YYedktk2boKrtNRf/gQHY/Qf65edPx4ipw==
19 | dependencies:
20 | lodash "4.17.15"
21 |
22 | "@commitlint/execute-rule@^8.3.4":
23 | version "8.3.4"
24 | resolved "https://registry.yarnpkg.com/@commitlint/execute-rule/-/execute-rule-8.3.4.tgz#1b63f0713b197889d90b76f9eea1abc010d256b1"
25 | integrity sha512-f4HigYjeIBn9f7OuNv5zh2y5vWaAhNFrfeul8CRJDy82l3Y+09lxOTGxfF3uMXKrZq4LmuK6qvvRCZ8mUrVvzQ==
26 |
27 | "@commitlint/format@^8.3.4":
28 | version "8.3.4"
29 | resolved "https://registry.yarnpkg.com/@commitlint/format/-/format-8.3.4.tgz#7cd1f0ba5a3289c8d14d7dac29ee1fc1597fe1d9"
30 | integrity sha512-809wlQ/ND6CLZON+w2Rb3YM2TLNDfU2xyyqpZeqzf2reJNpySMSUAeaO/fNDJSOKIsOsR3bI01rGu6hv28k+Nw==
31 | dependencies:
32 | chalk "^2.0.1"
33 |
34 | "@commitlint/is-ignored@^8.3.5":
35 | version "8.3.5"
36 | resolved "https://registry.yarnpkg.com/@commitlint/is-ignored/-/is-ignored-8.3.5.tgz#e6f59496e1b1ce58020d519cd578ad0f43169199"
37 | integrity sha512-Zo+8a6gJLFDTqyNRx53wQi/XTiz8mncvmWf/4oRG+6WRcBfjSSHY7KPVj5Y6UaLy2EgZ0WQ2Tt6RdTDeQiQplA==
38 | dependencies:
39 | semver "6.3.0"
40 |
41 | "@commitlint/lint@^8.3.5":
42 | version "8.3.5"
43 | resolved "https://registry.yarnpkg.com/@commitlint/lint/-/lint-8.3.5.tgz#627e75adb1cc803cc723e33cc2ba4aa27cbb9f0c"
44 | integrity sha512-02AkI0a6PU6rzqUvuDkSi6rDQ2hUgkq9GpmdJqfai5bDbxx2939mK4ZO+7apbIh4H6Pae7EpYi7ffxuJgm+3hQ==
45 | dependencies:
46 | "@commitlint/is-ignored" "^8.3.5"
47 | "@commitlint/parse" "^8.3.4"
48 | "@commitlint/rules" "^8.3.4"
49 | babel-runtime "^6.23.0"
50 | lodash "4.17.15"
51 |
52 | "@commitlint/load@^8.3.5":
53 | version "8.3.5"
54 | resolved "https://registry.yarnpkg.com/@commitlint/load/-/load-8.3.5.tgz#3f059225ede92166ba94cf4c48e3d67c8b08b18a"
55 | integrity sha512-poF7R1CtQvIXRmVIe63FjSQmN9KDqjRtU5A6hxqXBga87yB2VUJzic85TV6PcQc+wStk52cjrMI+g0zFx+Zxrw==
56 | dependencies:
57 | "@commitlint/execute-rule" "^8.3.4"
58 | "@commitlint/resolve-extends" "^8.3.5"
59 | babel-runtime "^6.23.0"
60 | chalk "2.4.2"
61 | cosmiconfig "^5.2.0"
62 | lodash "4.17.15"
63 | resolve-from "^5.0.0"
64 |
65 | "@commitlint/message@^8.3.4":
66 | version "8.3.4"
67 | resolved "https://registry.yarnpkg.com/@commitlint/message/-/message-8.3.4.tgz#b4e50d14aa6e15a5ad0767b952a7953f3681d768"
68 | integrity sha512-nEj5tknoOKXqBsaQtCtgPcsAaf5VCg3+fWhss4Vmtq40633xLq0irkdDdMEsYIx8rGR0XPBTukqzln9kAWCkcA==
69 |
70 | "@commitlint/parse@^8.3.4":
71 | version "8.3.4"
72 | resolved "https://registry.yarnpkg.com/@commitlint/parse/-/parse-8.3.4.tgz#d741f8b9104b35d0f4c10938165b20cbf167f81e"
73 | integrity sha512-b3uQvpUQWC20EBfKSfMRnyx5Wc4Cn778bVeVOFErF/cXQK725L1bYFvPnEjQO/GT8yGVzq2wtLaoEqjm1NJ/Bw==
74 | dependencies:
75 | conventional-changelog-angular "^1.3.3"
76 | conventional-commits-parser "^3.0.0"
77 | lodash "^4.17.11"
78 |
79 | "@commitlint/read@^8.3.4":
80 | version "8.3.4"
81 | resolved "https://registry.yarnpkg.com/@commitlint/read/-/read-8.3.4.tgz#81a34283d8cd7b2acdf57829a91761e9c7791455"
82 | integrity sha512-FKv1kHPrvcAG5j+OSbd41IWexsbLhfIXpxVC/YwQZO+FR0EHmygxQNYs66r+GnhD1EfYJYM4WQIqd5bJRx6OIw==
83 | dependencies:
84 | "@commitlint/top-level" "^8.3.4"
85 | "@marionebl/sander" "^0.6.0"
86 | babel-runtime "^6.23.0"
87 | git-raw-commits "^2.0.0"
88 |
89 | "@commitlint/resolve-extends@^8.3.5":
90 | version "8.3.5"
91 | resolved "https://registry.yarnpkg.com/@commitlint/resolve-extends/-/resolve-extends-8.3.5.tgz#8fff800f292ac217ae30b1862f5f9a84b278310a"
92 | integrity sha512-nHhFAK29qiXNe6oH6uG5wqBnCR+BQnxlBW/q5fjtxIaQALgfoNLHwLS9exzbIRFqwJckpR6yMCfgMbmbAOtklQ==
93 | dependencies:
94 | import-fresh "^3.0.0"
95 | lodash "4.17.15"
96 | resolve-from "^5.0.0"
97 | resolve-global "^1.0.0"
98 |
99 | "@commitlint/rules@^8.3.4":
100 | version "8.3.4"
101 | resolved "https://registry.yarnpkg.com/@commitlint/rules/-/rules-8.3.4.tgz#41da7e16c6b89af268fe81c87a158c1fd2ac82b1"
102 | integrity sha512-xuC9dlqD5xgAoDFgnbs578cJySvwOSkMLQyZADb1xD5n7BNcUJfP8WjT9W1Aw8K3Wf8+Ym/ysr9FZHXInLeaRg==
103 | dependencies:
104 | "@commitlint/ensure" "^8.3.4"
105 | "@commitlint/message" "^8.3.4"
106 | "@commitlint/to-lines" "^8.3.4"
107 | babel-runtime "^6.23.0"
108 |
109 | "@commitlint/to-lines@^8.3.4":
110 | version "8.3.4"
111 | resolved "https://registry.yarnpkg.com/@commitlint/to-lines/-/to-lines-8.3.4.tgz#ce24963b6d86dbe51d88d5e3028ab28f38562e2e"
112 | integrity sha512-5AvcdwRsMIVq0lrzXTwpbbG5fKRTWcHkhn/hCXJJ9pm1JidsnidS1y0RGkb3O50TEHGewhXwNoavxW9VToscUA==
113 |
114 | "@commitlint/top-level@^8.3.4":
115 | version "8.3.4"
116 | resolved "https://registry.yarnpkg.com/@commitlint/top-level/-/top-level-8.3.4.tgz#803fc6e8f5be5efa5f3551761acfca961f1d8685"
117 | integrity sha512-nOaeLBbAqSZNpKgEtO6NAxmui1G8ZvLG+0wb4rvv6mWhPDzK1GNZkCd8FUZPahCoJ1iHDoatw7F8BbJLg4nDjg==
118 | dependencies:
119 | find-up "^4.0.0"
120 |
121 | "@marionebl/sander@^0.6.0":
122 | version "0.6.1"
123 | resolved "https://registry.yarnpkg.com/@marionebl/sander/-/sander-0.6.1.tgz#1958965874f24bc51be48875feb50d642fc41f7b"
124 | dependencies:
125 | graceful-fs "^4.1.3"
126 | mkdirp "^0.5.1"
127 | rimraf "^2.5.2"
128 |
129 | "@now/node@^1.4.1":
130 | version "1.4.1"
131 | resolved "https://registry.yarnpkg.com/@now/node/-/node-1.4.1.tgz#a07e22abb34d892e77fef1471f35518ddb39dbfc"
132 | integrity sha512-EjP/pdBMKsEMCGQ1OLLmBGnjA3QZG1erYTrMqmDVqypeQsY1UUFTY4h1C4d6WNq33qk/nMxpcJzuAhxt+nLQyg==
133 | dependencies:
134 | "@types/node" "*"
135 |
136 | "@types/node@*":
137 | version "13.7.4"
138 | resolved "https://registry.yarnpkg.com/@types/node/-/node-13.7.4.tgz#76c3cb3a12909510f52e5dc04a6298cdf9504ffd"
139 | integrity sha512-oVeL12C6gQS/GAExndigSaLxTrKpQPxewx9bOcwfvJiJge4rr7wNaph4J+ns5hrmIV2as5qxqN8YKthn9qh0jw==
140 |
141 | JSONStream@^1.0.4:
142 | version "1.3.1"
143 | resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.1.tgz#707f761e01dae9e16f1bcf93703b78c70966579a"
144 | dependencies:
145 | jsonparse "^1.2.0"
146 | through ">=2.2.7 <3"
147 |
148 | abab@^1.0.3:
149 | version "1.0.4"
150 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.4.tgz#5faad9c2c07f60dd76770f71cf025b62a63cfd4e"
151 |
152 | abbrev@1:
153 | version "1.1.1"
154 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
155 |
156 | accepts@~1.3.4:
157 | version "1.3.4"
158 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.4.tgz#86246758c7dd6d21a6474ff084a4740ec05eb21f"
159 | dependencies:
160 | mime-types "~2.1.16"
161 | negotiator "0.6.1"
162 |
163 | acorn-globals@^3.1.0:
164 | version "3.1.0"
165 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf"
166 | dependencies:
167 | acorn "^4.0.4"
168 |
169 | acorn@^4.0.4:
170 | version "4.0.13"
171 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787"
172 |
173 | ajv@^4.9.1:
174 | version "4.11.8"
175 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536"
176 | dependencies:
177 | co "^4.6.0"
178 | json-stable-stringify "^1.0.1"
179 |
180 | ajv@^5.1.0:
181 | version "5.3.0"
182 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.3.0.tgz#4414ff74a50879c208ee5fdc826e32c303549eda"
183 | dependencies:
184 | co "^4.6.0"
185 | fast-deep-equal "^1.0.0"
186 | fast-json-stable-stringify "^2.0.0"
187 | json-schema-traverse "^0.3.0"
188 |
189 | align-text@^0.1.1, align-text@^0.1.3:
190 | version "0.1.4"
191 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117"
192 | dependencies:
193 | kind-of "^3.0.2"
194 | longest "^1.0.1"
195 | repeat-string "^1.5.2"
196 |
197 | amdefine@>=0.0.4:
198 | version "1.0.1"
199 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5"
200 |
201 | ansi-escapes@^3.0.0:
202 | version "3.0.0"
203 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92"
204 |
205 | ansi-regex@^2.0.0:
206 | version "2.1.1"
207 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
208 |
209 | ansi-regex@^3.0.0:
210 | version "3.0.0"
211 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
212 |
213 | ansi-styles@^2.2.1:
214 | version "2.2.1"
215 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
216 |
217 | ansi-styles@^3.1.0, ansi-styles@^3.2.0:
218 | version "3.2.0"
219 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88"
220 | dependencies:
221 | color-convert "^1.9.0"
222 |
223 | ansi-styles@^3.2.1:
224 | version "3.2.1"
225 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
226 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
227 | dependencies:
228 | color-convert "^1.9.0"
229 |
230 | anymatch@^1.3.0:
231 | version "1.3.2"
232 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a"
233 | dependencies:
234 | micromatch "^2.1.5"
235 | normalize-path "^2.0.0"
236 |
237 | app-root-path@~3.0.0:
238 | version "3.0.0"
239 | resolved "https://registry.yarnpkg.com/app-root-path/-/app-root-path-3.0.0.tgz#210b6f43873227e18a4b810a032283311555d5ad"
240 | integrity sha512-qMcx+Gy2UZynHjOHOIXPNvpf+9cjvk3cWrBBK7zg4gH9+clobJRb9NGzcT7mQTcV/6Gm/1WelUtqxVXnNlrwcw==
241 |
242 | append-transform@^0.4.0:
243 | version "0.4.0"
244 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991"
245 | dependencies:
246 | default-require-extensions "^1.0.0"
247 |
248 | aproba@^1.0.3:
249 | version "1.2.0"
250 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
251 |
252 | are-we-there-yet@~1.1.2:
253 | version "1.1.4"
254 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d"
255 | dependencies:
256 | delegates "^1.0.0"
257 | readable-stream "^2.0.6"
258 |
259 | argparse@^1.0.7:
260 | version "1.0.9"
261 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86"
262 | dependencies:
263 | sprintf-js "~1.0.2"
264 |
265 | arr-diff@^2.0.0:
266 | version "2.0.0"
267 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf"
268 | dependencies:
269 | arr-flatten "^1.0.1"
270 |
271 | arr-flatten@^1.0.1:
272 | version "1.1.0"
273 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
274 |
275 | array-equal@^1.0.0:
276 | version "1.0.0"
277 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93"
278 |
279 | array-find-index@^1.0.1:
280 | version "1.0.2"
281 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1"
282 |
283 | array-flatten@1.1.1:
284 | version "1.1.1"
285 | resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2"
286 |
287 | array-ify@^1.0.0:
288 | version "1.0.0"
289 | resolved "https://registry.yarnpkg.com/array-ify/-/array-ify-1.0.0.tgz#9e528762b4a9066ad163a6962a364418e9626ece"
290 |
291 | array-unique@^0.2.1:
292 | version "0.2.1"
293 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53"
294 |
295 | arrify@^1.0.1:
296 | version "1.0.1"
297 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
298 |
299 | asn1@~0.2.3:
300 | version "0.2.3"
301 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
302 |
303 | assert-plus@1.0.0, assert-plus@^1.0.0:
304 | version "1.0.0"
305 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
306 |
307 | assert-plus@^0.2.0:
308 | version "0.2.0"
309 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234"
310 |
311 | astral-regex@^1.0.0:
312 | version "1.0.0"
313 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9"
314 |
315 | async@^1.4.0:
316 | version "1.5.2"
317 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a"
318 |
319 | async@^2.1.4:
320 | version "2.5.0"
321 | resolved "https://registry.yarnpkg.com/async/-/async-2.5.0.tgz#843190fd6b7357a0b9e1c956edddd5ec8462b54d"
322 | dependencies:
323 | lodash "^4.14.0"
324 |
325 | asynckit@^0.4.0:
326 | version "0.4.0"
327 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
328 |
329 | aws-sign2@~0.6.0:
330 | version "0.6.0"
331 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f"
332 |
333 | aws-sign2@~0.7.0:
334 | version "0.7.0"
335 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"
336 |
337 | aws4@^1.2.1, aws4@^1.6.0:
338 | version "1.6.0"
339 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e"
340 |
341 | axios@0.15.3:
342 | version "0.15.3"
343 | resolved "https://registry.yarnpkg.com/axios/-/axios-0.15.3.tgz#2c9d638b2e191a08ea1d6cc988eadd6ba5bdc053"
344 | dependencies:
345 | follow-redirects "1.0.0"
346 |
347 | babel-code-frame@^6.26.0:
348 | version "6.26.0"
349 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"
350 | dependencies:
351 | chalk "^1.1.3"
352 | esutils "^2.0.2"
353 | js-tokens "^3.0.2"
354 |
355 | babel-core@^6.0.0, babel-core@^6.26.0:
356 | version "6.26.0"
357 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8"
358 | dependencies:
359 | babel-code-frame "^6.26.0"
360 | babel-generator "^6.26.0"
361 | babel-helpers "^6.24.1"
362 | babel-messages "^6.23.0"
363 | babel-register "^6.26.0"
364 | babel-runtime "^6.26.0"
365 | babel-template "^6.26.0"
366 | babel-traverse "^6.26.0"
367 | babel-types "^6.26.0"
368 | babylon "^6.18.0"
369 | convert-source-map "^1.5.0"
370 | debug "^2.6.8"
371 | json5 "^0.5.1"
372 | lodash "^4.17.4"
373 | minimatch "^3.0.4"
374 | path-is-absolute "^1.0.1"
375 | private "^0.1.7"
376 | slash "^1.0.0"
377 | source-map "^0.5.6"
378 |
379 | babel-generator@^6.18.0, babel-generator@^6.26.0:
380 | version "6.26.0"
381 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5"
382 | dependencies:
383 | babel-messages "^6.23.0"
384 | babel-runtime "^6.26.0"
385 | babel-types "^6.26.0"
386 | detect-indent "^4.0.0"
387 | jsesc "^1.3.0"
388 | lodash "^4.17.4"
389 | source-map "^0.5.6"
390 | trim-right "^1.0.1"
391 |
392 | babel-helpers@^6.24.1:
393 | version "6.24.1"
394 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2"
395 | dependencies:
396 | babel-runtime "^6.22.0"
397 | babel-template "^6.24.1"
398 |
399 | babel-jest@^21.2.0:
400 | version "21.2.0"
401 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-21.2.0.tgz#2ce059519a9374a2c46f2455b6fbef5ad75d863e"
402 | dependencies:
403 | babel-plugin-istanbul "^4.0.0"
404 | babel-preset-jest "^21.2.0"
405 |
406 | babel-messages@^6.23.0:
407 | version "6.23.0"
408 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e"
409 | dependencies:
410 | babel-runtime "^6.22.0"
411 |
412 | babel-plugin-istanbul@^4.0.0:
413 | version "4.1.5"
414 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.5.tgz#6760cdd977f411d3e175bb064f2bc327d99b2b6e"
415 | dependencies:
416 | find-up "^2.1.0"
417 | istanbul-lib-instrument "^1.7.5"
418 | test-exclude "^4.1.1"
419 |
420 | babel-plugin-jest-hoist@^21.2.0:
421 | version "21.2.0"
422 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-21.2.0.tgz#2cef637259bd4b628a6cace039de5fcd14dbb006"
423 |
424 | babel-plugin-syntax-object-rest-spread@^6.13.0:
425 | version "6.13.0"
426 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5"
427 |
428 | babel-preset-jest@^21.2.0:
429 | version "21.2.0"
430 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-21.2.0.tgz#ff9d2bce08abd98e8a36d9a8a5189b9173b85638"
431 | dependencies:
432 | babel-plugin-jest-hoist "^21.2.0"
433 | babel-plugin-syntax-object-rest-spread "^6.13.0"
434 |
435 | babel-register@^6.26.0:
436 | version "6.26.0"
437 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071"
438 | dependencies:
439 | babel-core "^6.26.0"
440 | babel-runtime "^6.26.0"
441 | core-js "^2.5.0"
442 | home-or-tmp "^2.0.0"
443 | lodash "^4.17.4"
444 | mkdirp "^0.5.1"
445 | source-map-support "^0.4.15"
446 |
447 | babel-runtime@^6.22.0, babel-runtime@^6.23.0, babel-runtime@^6.26.0:
448 | version "6.26.0"
449 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
450 | dependencies:
451 | core-js "^2.4.0"
452 | regenerator-runtime "^0.11.0"
453 |
454 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0:
455 | version "6.26.0"
456 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02"
457 | dependencies:
458 | babel-runtime "^6.26.0"
459 | babel-traverse "^6.26.0"
460 | babel-types "^6.26.0"
461 | babylon "^6.18.0"
462 | lodash "^4.17.4"
463 |
464 | babel-traverse@^6.18.0, babel-traverse@^6.26.0:
465 | version "6.26.0"
466 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee"
467 | dependencies:
468 | babel-code-frame "^6.26.0"
469 | babel-messages "^6.23.0"
470 | babel-runtime "^6.26.0"
471 | babel-types "^6.26.0"
472 | babylon "^6.18.0"
473 | debug "^2.6.8"
474 | globals "^9.18.0"
475 | invariant "^2.2.2"
476 | lodash "^4.17.4"
477 |
478 | babel-types@^6.18.0, babel-types@^6.26.0:
479 | version "6.26.0"
480 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497"
481 | dependencies:
482 | babel-runtime "^6.26.0"
483 | esutils "^2.0.2"
484 | lodash "^4.17.4"
485 | to-fast-properties "^1.0.3"
486 |
487 | babylon@^6.18.0:
488 | version "6.18.0"
489 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3"
490 |
491 | balanced-match@^1.0.0:
492 | version "1.0.0"
493 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
494 |
495 | bcrypt-pbkdf@^1.0.0:
496 | version "1.0.1"
497 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d"
498 | dependencies:
499 | tweetnacl "^0.14.3"
500 |
501 | block-stream@*:
502 | version "0.0.9"
503 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a"
504 | dependencies:
505 | inherits "~2.0.0"
506 |
507 | body-parser@1.18.2, body-parser@^1.15.2:
508 | version "1.18.2"
509 | resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.18.2.tgz#87678a19d84b47d859b83199bd59bce222b10454"
510 | dependencies:
511 | bytes "3.0.0"
512 | content-type "~1.0.4"
513 | debug "2.6.9"
514 | depd "~1.1.1"
515 | http-errors "~1.6.2"
516 | iconv-lite "0.4.19"
517 | on-finished "~2.3.0"
518 | qs "6.5.1"
519 | raw-body "2.3.2"
520 | type-is "~1.6.15"
521 |
522 | boom@2.x.x:
523 | version "2.10.1"
524 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f"
525 | dependencies:
526 | hoek "2.x.x"
527 |
528 | boom@4.x.x:
529 | version "4.3.1"
530 | resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31"
531 | dependencies:
532 | hoek "4.x.x"
533 |
534 | boom@5.x.x:
535 | version "5.2.0"
536 | resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02"
537 | dependencies:
538 | hoek "4.x.x"
539 |
540 | brace-expansion@^1.1.7:
541 | version "1.1.8"
542 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292"
543 | dependencies:
544 | balanced-match "^1.0.0"
545 | concat-map "0.0.1"
546 |
547 | braces@^1.8.2:
548 | version "1.8.5"
549 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7"
550 | dependencies:
551 | expand-range "^1.8.1"
552 | preserve "^0.2.0"
553 | repeat-element "^1.1.2"
554 |
555 | browser-resolve@^1.11.2:
556 | version "1.11.2"
557 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce"
558 | dependencies:
559 | resolve "1.1.7"
560 |
561 | bser@^2.0.0:
562 | version "2.0.0"
563 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719"
564 | dependencies:
565 | node-int64 "^0.4.0"
566 |
567 | builtin-modules@^1.0.0:
568 | version "1.1.1"
569 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
570 |
571 | bytes@3.0.0:
572 | version "3.0.0"
573 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048"
574 |
575 | caller-callsite@^2.0.0:
576 | version "2.0.0"
577 | resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134"
578 | integrity sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=
579 | dependencies:
580 | callsites "^2.0.0"
581 |
582 | caller-path@^2.0.0:
583 | version "2.0.0"
584 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4"
585 | integrity sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=
586 | dependencies:
587 | caller-callsite "^2.0.0"
588 |
589 | callsites@^2.0.0:
590 | version "2.0.0"
591 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50"
592 |
593 | callsites@^3.0.0:
594 | version "3.1.0"
595 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
596 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
597 |
598 | camelcase-keys@^4.0.0:
599 | version "4.2.0"
600 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-4.2.0.tgz#a2aa5fb1af688758259c32c141426d78923b9b77"
601 | integrity sha1-oqpfsa9oh1glnDLBQUJteJI7m3c=
602 | dependencies:
603 | camelcase "^4.1.0"
604 | map-obj "^2.0.0"
605 | quick-lru "^1.0.0"
606 |
607 | camelcase@^1.0.2:
608 | version "1.2.1"
609 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39"
610 |
611 | camelcase@^4.1.0:
612 | version "4.1.0"
613 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd"
614 |
615 | caseless@~0.12.0:
616 | version "0.12.0"
617 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
618 |
619 | center-align@^0.1.1:
620 | version "0.1.3"
621 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad"
622 | dependencies:
623 | align-text "^0.1.3"
624 | lazy-cache "^1.0.3"
625 |
626 | chalk@2.4.2:
627 | version "2.4.2"
628 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
629 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
630 | dependencies:
631 | ansi-styles "^3.2.1"
632 | escape-string-regexp "^1.0.5"
633 | supports-color "^5.3.0"
634 |
635 | chalk@^1.1.3:
636 | version "1.1.3"
637 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
638 | dependencies:
639 | ansi-styles "^2.2.1"
640 | escape-string-regexp "^1.0.2"
641 | has-ansi "^2.0.0"
642 | strip-ansi "^3.0.0"
643 | supports-color "^2.0.0"
644 |
645 | chalk@^2.0.1:
646 | version "2.1.0"
647 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.1.0.tgz#ac5becf14fa21b99c6c92ca7a7d7cfd5b17e743e"
648 | dependencies:
649 | ansi-styles "^3.1.0"
650 | escape-string-regexp "^1.0.5"
651 | supports-color "^4.0.0"
652 |
653 | ci-info@^1.0.0:
654 | version "1.1.1"
655 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.1.tgz#47b44df118c48d2597b56d342e7e25791060171a"
656 |
657 | cliui@^2.1.0:
658 | version "2.1.0"
659 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1"
660 | dependencies:
661 | center-align "^0.1.1"
662 | right-align "^0.1.1"
663 | wordwrap "0.0.2"
664 |
665 | cliui@^3.2.0:
666 | version "3.2.0"
667 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d"
668 | dependencies:
669 | string-width "^1.0.1"
670 | strip-ansi "^3.0.1"
671 | wrap-ansi "^2.0.0"
672 |
673 | co@^4.6.0:
674 | version "4.6.0"
675 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
676 |
677 | code-point-at@^1.0.0:
678 | version "1.1.0"
679 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
680 |
681 | color-convert@^1.9.0:
682 | version "1.9.0"
683 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a"
684 | dependencies:
685 | color-name "^1.1.1"
686 |
687 | color-name@^1.1.1:
688 | version "1.1.3"
689 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
690 |
691 | combined-stream@^1.0.5, combined-stream@~1.0.5:
692 | version "1.0.5"
693 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009"
694 | dependencies:
695 | delayed-stream "~1.0.0"
696 |
697 | commitlint-config-cz@^0.13.0:
698 | version "0.13.0"
699 | resolved "https://registry.yarnpkg.com/commitlint-config-cz/-/commitlint-config-cz-0.13.0.tgz#fe81642faba74a06a038a21aafacc86caad39a8a"
700 | integrity sha512-c1nuNhuH3UG76ToLq/7YFi7vRBVdzlUHnXpoHyAypGsABjzzg7RzORVGpeGlCLj8U/SRrPCZpv6NJfXoS7AaxQ==
701 | dependencies:
702 | app-root-path "~3.0.0"
703 | lodash.clonedeep "~4.5.0"
704 |
705 | compare-func@^1.3.1:
706 | version "1.3.2"
707 | resolved "https://registry.yarnpkg.com/compare-func/-/compare-func-1.3.2.tgz#99dd0ba457e1f9bc722b12c08ec33eeab31fa648"
708 | dependencies:
709 | array-ify "^1.0.0"
710 | dot-prop "^3.0.0"
711 |
712 | concat-map@0.0.1:
713 | version "0.0.1"
714 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
715 |
716 | console-control-strings@^1.0.0, console-control-strings@~1.1.0:
717 | version "1.1.0"
718 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
719 |
720 | content-disposition@0.5.2:
721 | version "0.5.2"
722 | resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4"
723 |
724 | content-type-parser@^1.0.1:
725 | version "1.0.2"
726 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.2.tgz#caabe80623e63638b2502fd4c7f12ff4ce2352e7"
727 |
728 | content-type@~1.0.4:
729 | version "1.0.4"
730 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b"
731 |
732 | conventional-changelog-angular@^1.3.3:
733 | version "1.5.1"
734 | resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-1.5.1.tgz#974e73aa1c39c392e4364f2952bd9a62904e9ea3"
735 | dependencies:
736 | compare-func "^1.3.1"
737 | q "^1.4.1"
738 |
739 | conventional-commits-parser@^3.0.0:
740 | version "3.0.8"
741 | resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-3.0.8.tgz#23310a9bda6c93c874224375e72b09fb275fe710"
742 | integrity sha512-YcBSGkZbYp7d+Cr3NWUeXbPDFUN6g3SaSIzOybi8bjHL5IJ5225OSCxJJ4LgziyEJ7AaJtE9L2/EU6H7Nt/DDQ==
743 | dependencies:
744 | JSONStream "^1.0.4"
745 | is-text-path "^1.0.1"
746 | lodash "^4.17.15"
747 | meow "^5.0.0"
748 | split2 "^2.0.0"
749 | through2 "^3.0.0"
750 | trim-off-newlines "^1.0.0"
751 |
752 | convert-source-map@^1.4.0, convert-source-map@^1.5.0:
753 | version "1.5.0"
754 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5"
755 |
756 | cookie-signature@1.0.6:
757 | version "1.0.6"
758 | resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c"
759 |
760 | cookie@0.3.1:
761 | version "0.3.1"
762 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb"
763 |
764 | core-js@^2.4.0, core-js@^2.5.0:
765 | version "2.5.1"
766 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.1.tgz#ae6874dc66937789b80754ff5428df66819ca50b"
767 |
768 | core-util-is@1.0.2, core-util-is@~1.0.0:
769 | version "1.0.2"
770 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
771 |
772 | cosmiconfig@^5.2.0:
773 | version "5.2.1"
774 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a"
775 | integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==
776 | dependencies:
777 | import-fresh "^2.0.0"
778 | is-directory "^0.3.1"
779 | js-yaml "^3.13.1"
780 | parse-json "^4.0.0"
781 |
782 | cross-spawn@^5.0.1:
783 | version "5.1.0"
784 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449"
785 | dependencies:
786 | lru-cache "^4.0.1"
787 | shebang-command "^1.2.0"
788 | which "^1.2.9"
789 |
790 | cryptiles@2.x.x:
791 | version "2.0.5"
792 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8"
793 | dependencies:
794 | boom "2.x.x"
795 |
796 | cryptiles@3.x.x:
797 | version "3.1.2"
798 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe"
799 | dependencies:
800 | boom "5.x.x"
801 |
802 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0":
803 | version "0.3.2"
804 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b"
805 |
806 | "cssstyle@>= 0.2.37 < 0.3.0":
807 | version "0.2.37"
808 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54"
809 | dependencies:
810 | cssom "0.3.x"
811 |
812 | currently-unhandled@^0.4.1:
813 | version "0.4.1"
814 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea"
815 | dependencies:
816 | array-find-index "^1.0.1"
817 |
818 | dargs@^4.0.1:
819 | version "4.1.0"
820 | resolved "https://registry.yarnpkg.com/dargs/-/dargs-4.1.0.tgz#03a9dbb4b5c2f139bf14ae53f0b8a2a6a86f4e17"
821 | dependencies:
822 | number-is-nan "^1.0.0"
823 |
824 | dashdash@^1.12.0:
825 | version "1.14.1"
826 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
827 | dependencies:
828 | assert-plus "^1.0.0"
829 |
830 | debug@2.6.9, debug@^2.2.0, debug@^2.6.8:
831 | version "2.6.9"
832 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
833 | dependencies:
834 | ms "2.0.0"
835 |
836 | debug@^3.1.0:
837 | version "3.1.0"
838 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261"
839 | dependencies:
840 | ms "2.0.0"
841 |
842 | decamelize-keys@^1.0.0:
843 | version "1.1.0"
844 | resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.0.tgz#d171a87933252807eb3cb61dc1c1445d078df2d9"
845 | integrity sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk=
846 | dependencies:
847 | decamelize "^1.1.0"
848 | map-obj "^1.0.0"
849 |
850 | decamelize@^1.0.0, decamelize@^1.1.0, decamelize@^1.1.1:
851 | version "1.2.0"
852 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
853 |
854 | deep-extend@~0.4.0:
855 | version "0.4.2"
856 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f"
857 |
858 | deep-is@~0.1.3:
859 | version "0.1.3"
860 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
861 |
862 | default-require-extensions@^1.0.0:
863 | version "1.0.0"
864 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8"
865 | dependencies:
866 | strip-bom "^2.0.0"
867 |
868 | delayed-stream@~1.0.0:
869 | version "1.0.0"
870 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
871 |
872 | delegates@^1.0.0:
873 | version "1.0.0"
874 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
875 |
876 | depd@1.1.1, depd@~1.1.1:
877 | version "1.1.1"
878 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.1.tgz#5783b4e1c459f06fa5ca27f991f3d06e7a310359"
879 |
880 | destroy@~1.0.4:
881 | version "1.0.4"
882 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80"
883 |
884 | detect-indent@^4.0.0:
885 | version "4.0.0"
886 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208"
887 | dependencies:
888 | repeating "^2.0.0"
889 |
890 | diff@^3.2.0:
891 | version "3.4.0"
892 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.4.0.tgz#b1d85507daf3964828de54b37d0d73ba67dda56c"
893 |
894 | dot-prop@^3.0.0:
895 | version "3.0.0"
896 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-3.0.0.tgz#1b708af094a49c9a0e7dbcad790aba539dac1177"
897 | dependencies:
898 | is-obj "^1.0.0"
899 |
900 | ecc-jsbn@~0.1.1:
901 | version "0.1.1"
902 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505"
903 | dependencies:
904 | jsbn "~0.1.0"
905 |
906 | ee-first@1.1.1:
907 | version "1.1.1"
908 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
909 |
910 | encodeurl@~1.0.1:
911 | version "1.0.1"
912 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20"
913 |
914 | errno@^0.1.4:
915 | version "0.1.4"
916 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d"
917 | dependencies:
918 | prr "~0.0.0"
919 |
920 | error-ex@^1.2.0, error-ex@^1.3.1:
921 | version "1.3.1"
922 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc"
923 | dependencies:
924 | is-arrayish "^0.2.1"
925 |
926 | escape-html@~1.0.3:
927 | version "1.0.3"
928 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
929 |
930 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
931 | version "1.0.5"
932 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
933 |
934 | escodegen@^1.6.1:
935 | version "1.9.0"
936 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.9.0.tgz#9811a2f265dc1cd3894420ee3717064b632b8852"
937 | dependencies:
938 | esprima "^3.1.3"
939 | estraverse "^4.2.0"
940 | esutils "^2.0.2"
941 | optionator "^0.8.1"
942 | optionalDependencies:
943 | source-map "~0.5.6"
944 |
945 | esprima@^3.1.3:
946 | version "3.1.3"
947 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633"
948 |
949 | esprima@^4.0.0:
950 | version "4.0.0"
951 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804"
952 |
953 | estraverse@^4.2.0:
954 | version "4.2.0"
955 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13"
956 |
957 | esutils@^2.0.2:
958 | version "2.0.2"
959 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
960 |
961 | etag@~1.8.1:
962 | version "1.8.1"
963 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887"
964 |
965 | exec-sh@^0.2.0:
966 | version "0.2.1"
967 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.1.tgz#163b98a6e89e6b65b47c2a28d215bc1f63989c38"
968 | dependencies:
969 | merge "^1.1.3"
970 |
971 | execa@^0.7.0:
972 | version "0.7.0"
973 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777"
974 | dependencies:
975 | cross-spawn "^5.0.1"
976 | get-stream "^3.0.0"
977 | is-stream "^1.1.0"
978 | npm-run-path "^2.0.0"
979 | p-finally "^1.0.0"
980 | signal-exit "^3.0.0"
981 | strip-eof "^1.0.0"
982 |
983 | expand-brackets@^0.1.4:
984 | version "0.1.5"
985 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b"
986 | dependencies:
987 | is-posix-bracket "^0.1.0"
988 |
989 | expand-range@^1.8.1:
990 | version "1.8.2"
991 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337"
992 | dependencies:
993 | fill-range "^2.1.0"
994 |
995 | expect@^21.2.1:
996 | version "21.2.1"
997 | resolved "https://registry.yarnpkg.com/expect/-/expect-21.2.1.tgz#003ac2ac7005c3c29e73b38a272d4afadd6d1d7b"
998 | dependencies:
999 | ansi-styles "^3.2.0"
1000 | jest-diff "^21.2.1"
1001 | jest-get-type "^21.2.0"
1002 | jest-matcher-utils "^21.2.1"
1003 | jest-message-util "^21.2.1"
1004 | jest-regex-util "^21.2.0"
1005 |
1006 | express@^4.14.0:
1007 | version "4.16.1"
1008 | resolved "https://registry.yarnpkg.com/express/-/express-4.16.1.tgz#6b33b560183c9b253b7b62144df33a4654ac9ed0"
1009 | dependencies:
1010 | accepts "~1.3.4"
1011 | array-flatten "1.1.1"
1012 | body-parser "1.18.2"
1013 | content-disposition "0.5.2"
1014 | content-type "~1.0.4"
1015 | cookie "0.3.1"
1016 | cookie-signature "1.0.6"
1017 | debug "2.6.9"
1018 | depd "~1.1.1"
1019 | encodeurl "~1.0.1"
1020 | escape-html "~1.0.3"
1021 | etag "~1.8.1"
1022 | finalhandler "1.1.0"
1023 | fresh "0.5.2"
1024 | merge-descriptors "1.0.1"
1025 | methods "~1.1.2"
1026 | on-finished "~2.3.0"
1027 | parseurl "~1.3.2"
1028 | path-to-regexp "0.1.7"
1029 | proxy-addr "~2.0.2"
1030 | qs "6.5.1"
1031 | range-parser "~1.2.0"
1032 | safe-buffer "5.1.1"
1033 | send "0.16.1"
1034 | serve-static "1.13.1"
1035 | setprototypeof "1.1.0"
1036 | statuses "~1.3.1"
1037 | type-is "~1.6.15"
1038 | utils-merge "1.0.1"
1039 | vary "~1.1.2"
1040 |
1041 | extend@~3.0.0, extend@~3.0.1:
1042 | version "3.0.1"
1043 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444"
1044 |
1045 | extglob@^0.3.1:
1046 | version "0.3.2"
1047 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1"
1048 | dependencies:
1049 | is-extglob "^1.0.0"
1050 |
1051 | extsprintf@1.3.0, extsprintf@^1.2.0:
1052 | version "1.3.0"
1053 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05"
1054 |
1055 | fast-deep-equal@^1.0.0:
1056 | version "1.0.0"
1057 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff"
1058 |
1059 | fast-json-stable-stringify@^2.0.0:
1060 | version "2.0.0"
1061 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2"
1062 |
1063 | fast-levenshtein@~2.0.4:
1064 | version "2.0.6"
1065 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
1066 |
1067 | fb-watchman@^2.0.0:
1068 | version "2.0.0"
1069 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58"
1070 | dependencies:
1071 | bser "^2.0.0"
1072 |
1073 | filename-regex@^2.0.0:
1074 | version "2.0.1"
1075 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26"
1076 |
1077 | fileset@^2.0.2:
1078 | version "2.0.3"
1079 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0"
1080 | dependencies:
1081 | glob "^7.0.3"
1082 | minimatch "^3.0.3"
1083 |
1084 | fill-range@^2.1.0:
1085 | version "2.2.3"
1086 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723"
1087 | dependencies:
1088 | is-number "^2.1.0"
1089 | isobject "^2.0.0"
1090 | randomatic "^1.1.3"
1091 | repeat-element "^1.1.2"
1092 | repeat-string "^1.5.2"
1093 |
1094 | finalhandler@1.1.0:
1095 | version "1.1.0"
1096 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.0.tgz#ce0b6855b45853e791b2fcc680046d88253dd7f5"
1097 | dependencies:
1098 | debug "2.6.9"
1099 | encodeurl "~1.0.1"
1100 | escape-html "~1.0.3"
1101 | on-finished "~2.3.0"
1102 | parseurl "~1.3.2"
1103 | statuses "~1.3.1"
1104 | unpipe "~1.0.0"
1105 |
1106 | find-up@^1.0.0:
1107 | version "1.1.2"
1108 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"
1109 | dependencies:
1110 | path-exists "^2.0.0"
1111 | pinkie-promise "^2.0.0"
1112 |
1113 | find-up@^2.0.0, find-up@^2.1.0:
1114 | version "2.1.0"
1115 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
1116 | dependencies:
1117 | locate-path "^2.0.0"
1118 |
1119 | find-up@^4.0.0:
1120 | version "4.1.0"
1121 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19"
1122 | integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==
1123 | dependencies:
1124 | locate-path "^5.0.0"
1125 | path-exists "^4.0.0"
1126 |
1127 | follow-redirects@1.0.0:
1128 | version "1.0.0"
1129 | resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.0.0.tgz#8e34298cbd2e176f254effec75a1c78cc849fd37"
1130 | dependencies:
1131 | debug "^2.2.0"
1132 |
1133 | for-in@^1.0.1:
1134 | version "1.0.2"
1135 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
1136 |
1137 | for-own@^0.1.4:
1138 | version "0.1.5"
1139 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce"
1140 | dependencies:
1141 | for-in "^1.0.1"
1142 |
1143 | forever-agent@~0.6.1:
1144 | version "0.6.1"
1145 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
1146 |
1147 | form-data@~2.1.1:
1148 | version "2.1.4"
1149 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1"
1150 | dependencies:
1151 | asynckit "^0.4.0"
1152 | combined-stream "^1.0.5"
1153 | mime-types "^2.1.12"
1154 |
1155 | form-data@~2.3.1:
1156 | version "2.3.1"
1157 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.1.tgz#6fb94fbd71885306d73d15cc497fe4cc4ecd44bf"
1158 | dependencies:
1159 | asynckit "^0.4.0"
1160 | combined-stream "^1.0.5"
1161 | mime-types "^2.1.12"
1162 |
1163 | forwarded@~0.1.2:
1164 | version "0.1.2"
1165 | resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84"
1166 |
1167 | fresh@0.5.2:
1168 | version "0.5.2"
1169 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7"
1170 |
1171 | fs.realpath@^1.0.0:
1172 | version "1.0.0"
1173 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
1174 |
1175 | fsevents@^1.1.1:
1176 | version "1.1.2"
1177 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4"
1178 | dependencies:
1179 | nan "^2.3.0"
1180 | node-pre-gyp "^0.6.36"
1181 |
1182 | fstream-ignore@^1.0.5:
1183 | version "1.0.5"
1184 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105"
1185 | dependencies:
1186 | fstream "^1.0.0"
1187 | inherits "2"
1188 | minimatch "^3.0.0"
1189 |
1190 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2:
1191 | version "1.0.11"
1192 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171"
1193 | dependencies:
1194 | graceful-fs "^4.1.2"
1195 | inherits "~2.0.0"
1196 | mkdirp ">=0.5 0"
1197 | rimraf "2"
1198 |
1199 | gauge@~2.7.3:
1200 | version "2.7.4"
1201 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
1202 | dependencies:
1203 | aproba "^1.0.3"
1204 | console-control-strings "^1.0.0"
1205 | has-unicode "^2.0.0"
1206 | object-assign "^4.1.0"
1207 | signal-exit "^3.0.0"
1208 | string-width "^1.0.1"
1209 | strip-ansi "^3.0.1"
1210 | wide-align "^1.1.0"
1211 |
1212 | get-caller-file@^1.0.1:
1213 | version "1.0.2"
1214 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5"
1215 |
1216 | get-stream@^3.0.0:
1217 | version "3.0.0"
1218 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14"
1219 |
1220 | getpass@^0.1.1:
1221 | version "0.1.7"
1222 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa"
1223 | dependencies:
1224 | assert-plus "^1.0.0"
1225 |
1226 | git-raw-commits@^2.0.0:
1227 | version "2.0.3"
1228 | resolved "https://registry.yarnpkg.com/git-raw-commits/-/git-raw-commits-2.0.3.tgz#f040e67b8445962d4d168903a9e84c4240c17655"
1229 | integrity sha512-SoSsFL5lnixVzctGEi2uykjA7B5I0AhO9x6kdzvGRHbxsa6JSEgrgy1esRKsfOKE1cgyOJ/KDR2Trxu157sb8w==
1230 | dependencies:
1231 | dargs "^4.0.1"
1232 | lodash.template "^4.0.2"
1233 | meow "^5.0.0"
1234 | split2 "^2.0.0"
1235 | through2 "^3.0.0"
1236 |
1237 | github-build@^1.2.0:
1238 | version "1.2.0"
1239 | resolved "https://registry.yarnpkg.com/github-build/-/github-build-1.2.0.tgz#b0bdb705ae4088218577e863c1a301030211051f"
1240 | dependencies:
1241 | axios "0.15.3"
1242 |
1243 | glob-base@^0.3.0:
1244 | version "0.3.0"
1245 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"
1246 | dependencies:
1247 | glob-parent "^2.0.0"
1248 | is-glob "^2.0.0"
1249 |
1250 | glob-parent@^2.0.0:
1251 | version "2.0.0"
1252 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28"
1253 | dependencies:
1254 | is-glob "^2.0.0"
1255 |
1256 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2:
1257 | version "7.1.2"
1258 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15"
1259 | dependencies:
1260 | fs.realpath "^1.0.0"
1261 | inflight "^1.0.4"
1262 | inherits "2"
1263 | minimatch "^3.0.4"
1264 | once "^1.3.0"
1265 | path-is-absolute "^1.0.0"
1266 |
1267 | global-dirs@^0.1.1:
1268 | version "0.1.1"
1269 | resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445"
1270 | integrity sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU=
1271 | dependencies:
1272 | ini "^1.3.4"
1273 |
1274 | globals@^9.18.0:
1275 | version "9.18.0"
1276 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a"
1277 |
1278 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.3:
1279 | version "4.1.11"
1280 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
1281 |
1282 | growly@^1.3.0:
1283 | version "1.3.0"
1284 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081"
1285 |
1286 | handlebars@^4.0.3:
1287 | version "4.0.11"
1288 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.11.tgz#630a35dfe0294bc281edae6ffc5d329fc7982dcc"
1289 | dependencies:
1290 | async "^1.4.0"
1291 | optimist "^0.6.1"
1292 | source-map "^0.4.4"
1293 | optionalDependencies:
1294 | uglify-js "^2.6"
1295 |
1296 | har-schema@^1.0.5:
1297 | version "1.0.5"
1298 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e"
1299 |
1300 | har-schema@^2.0.0:
1301 | version "2.0.0"
1302 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92"
1303 |
1304 | har-validator@~4.2.1:
1305 | version "4.2.1"
1306 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a"
1307 | dependencies:
1308 | ajv "^4.9.1"
1309 | har-schema "^1.0.5"
1310 |
1311 | har-validator@~5.0.3:
1312 | version "5.0.3"
1313 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd"
1314 | dependencies:
1315 | ajv "^5.1.0"
1316 | har-schema "^2.0.0"
1317 |
1318 | has-ansi@^2.0.0:
1319 | version "2.0.0"
1320 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
1321 | dependencies:
1322 | ansi-regex "^2.0.0"
1323 |
1324 | has-flag@^1.0.0:
1325 | version "1.0.0"
1326 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa"
1327 |
1328 | has-flag@^2.0.0:
1329 | version "2.0.0"
1330 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51"
1331 |
1332 | has-flag@^3.0.0:
1333 | version "3.0.0"
1334 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
1335 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
1336 |
1337 | has-unicode@^2.0.0:
1338 | version "2.0.1"
1339 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
1340 |
1341 | hawk@3.1.3, hawk@~3.1.3:
1342 | version "3.1.3"
1343 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4"
1344 | dependencies:
1345 | boom "2.x.x"
1346 | cryptiles "2.x.x"
1347 | hoek "2.x.x"
1348 | sntp "1.x.x"
1349 |
1350 | hawk@~6.0.2:
1351 | version "6.0.2"
1352 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038"
1353 | dependencies:
1354 | boom "4.x.x"
1355 | cryptiles "3.x.x"
1356 | hoek "4.x.x"
1357 | sntp "2.x.x"
1358 |
1359 | hoek@2.x.x:
1360 | version "2.16.3"
1361 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed"
1362 |
1363 | hoek@4.x.x:
1364 | version "4.2.0"
1365 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.0.tgz#72d9d0754f7fe25ca2d01ad8f8f9a9449a89526d"
1366 |
1367 | home-or-tmp@^2.0.0:
1368 | version "2.0.0"
1369 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8"
1370 | dependencies:
1371 | os-homedir "^1.0.0"
1372 | os-tmpdir "^1.0.1"
1373 |
1374 | hosted-git-info@^2.1.4:
1375 | version "2.5.0"
1376 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c"
1377 |
1378 | html-encoding-sniffer@^1.0.1:
1379 | version "1.0.2"
1380 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8"
1381 | dependencies:
1382 | whatwg-encoding "^1.0.1"
1383 |
1384 | http-errors@1.6.2, http-errors@~1.6.2:
1385 | version "1.6.2"
1386 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.2.tgz#0a002cc85707192a7e7946ceedc11155f60ec736"
1387 | dependencies:
1388 | depd "1.1.1"
1389 | inherits "2.0.3"
1390 | setprototypeof "1.0.3"
1391 | statuses ">= 1.3.1 < 2"
1392 |
1393 | http-signature@~1.1.0:
1394 | version "1.1.1"
1395 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf"
1396 | dependencies:
1397 | assert-plus "^0.2.0"
1398 | jsprim "^1.2.2"
1399 | sshpk "^1.7.0"
1400 |
1401 | http-signature@~1.2.0:
1402 | version "1.2.0"
1403 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1"
1404 | dependencies:
1405 | assert-plus "^1.0.0"
1406 | jsprim "^1.2.2"
1407 | sshpk "^1.7.0"
1408 |
1409 | iconv-lite@0.4.13:
1410 | version "0.4.13"
1411 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2"
1412 |
1413 | iconv-lite@0.4.19:
1414 | version "0.4.19"
1415 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b"
1416 |
1417 | import-fresh@^2.0.0:
1418 | version "2.0.0"
1419 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546"
1420 | integrity sha1-2BNVwVYS04bGH53dOSLUMEgipUY=
1421 | dependencies:
1422 | caller-path "^2.0.0"
1423 | resolve-from "^3.0.0"
1424 |
1425 | import-fresh@^3.0.0:
1426 | version "3.2.1"
1427 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.1.tgz#633ff618506e793af5ac91bf48b72677e15cbe66"
1428 | integrity sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==
1429 | dependencies:
1430 | parent-module "^1.0.0"
1431 | resolve-from "^4.0.0"
1432 |
1433 | imurmurhash@^0.1.4:
1434 | version "0.1.4"
1435 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
1436 |
1437 | indent-string@^3.0.0:
1438 | version "3.2.0"
1439 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289"
1440 | integrity sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok=
1441 |
1442 | inflight@^1.0.4:
1443 | version "1.0.6"
1444 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
1445 | dependencies:
1446 | once "^1.3.0"
1447 | wrappy "1"
1448 |
1449 | inherits@2, inherits@2.0.3, inherits@~2.0.0, inherits@~2.0.3:
1450 | version "2.0.3"
1451 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
1452 |
1453 | inherits@^2.0.3:
1454 | version "2.0.4"
1455 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
1456 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
1457 |
1458 | ini@^1.3.4:
1459 | version "1.3.5"
1460 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927"
1461 | integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==
1462 |
1463 | ini@~1.3.0:
1464 | version "1.3.4"
1465 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e"
1466 |
1467 | invariant@^2.2.2:
1468 | version "2.2.2"
1469 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360"
1470 | dependencies:
1471 | loose-envify "^1.0.0"
1472 |
1473 | invert-kv@^1.0.0:
1474 | version "1.0.0"
1475 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"
1476 |
1477 | ipaddr.js@1.5.2:
1478 | version "1.5.2"
1479 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.5.2.tgz#d4b505bde9946987ccf0fc58d9010ff9607e3fa0"
1480 |
1481 | is-arrayish@^0.2.1:
1482 | version "0.2.1"
1483 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
1484 |
1485 | is-buffer@^1.1.5:
1486 | version "1.1.6"
1487 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
1488 |
1489 | is-builtin-module@^1.0.0:
1490 | version "1.0.0"
1491 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe"
1492 | dependencies:
1493 | builtin-modules "^1.0.0"
1494 |
1495 | is-ci@^1.0.10:
1496 | version "1.0.10"
1497 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e"
1498 | dependencies:
1499 | ci-info "^1.0.0"
1500 |
1501 | is-directory@^0.3.1:
1502 | version "0.3.1"
1503 | resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1"
1504 |
1505 | is-dotfile@^1.0.0:
1506 | version "1.0.3"
1507 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1"
1508 |
1509 | is-equal-shallow@^0.1.3:
1510 | version "0.1.3"
1511 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534"
1512 | dependencies:
1513 | is-primitive "^2.0.0"
1514 |
1515 | is-extendable@^0.1.1:
1516 | version "0.1.1"
1517 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
1518 |
1519 | is-extglob@^1.0.0:
1520 | version "1.0.0"
1521 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
1522 |
1523 | is-finite@^1.0.0:
1524 | version "1.0.2"
1525 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa"
1526 | dependencies:
1527 | number-is-nan "^1.0.0"
1528 |
1529 | is-fullwidth-code-point@^1.0.0:
1530 | version "1.0.0"
1531 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
1532 | dependencies:
1533 | number-is-nan "^1.0.0"
1534 |
1535 | is-fullwidth-code-point@^2.0.0:
1536 | version "2.0.0"
1537 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
1538 |
1539 | is-glob@^2.0.0, is-glob@^2.0.1:
1540 | version "2.0.1"
1541 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863"
1542 | dependencies:
1543 | is-extglob "^1.0.0"
1544 |
1545 | is-number@^2.1.0:
1546 | version "2.1.0"
1547 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f"
1548 | dependencies:
1549 | kind-of "^3.0.2"
1550 |
1551 | is-number@^3.0.0:
1552 | version "3.0.0"
1553 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
1554 | dependencies:
1555 | kind-of "^3.0.2"
1556 |
1557 | is-obj@^1.0.0:
1558 | version "1.0.1"
1559 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"
1560 |
1561 | is-plain-obj@^1.1.0:
1562 | version "1.1.0"
1563 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e"
1564 | integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4=
1565 |
1566 | is-posix-bracket@^0.1.0:
1567 | version "0.1.1"
1568 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"
1569 |
1570 | is-primitive@^2.0.0:
1571 | version "2.0.0"
1572 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575"
1573 |
1574 | is-stream@^1.1.0:
1575 | version "1.1.0"
1576 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
1577 |
1578 | is-text-path@^1.0.1:
1579 | version "1.0.1"
1580 | resolved "https://registry.yarnpkg.com/is-text-path/-/is-text-path-1.0.1.tgz#4e1aa0fb51bfbcb3e92688001397202c1775b66e"
1581 | integrity sha1-Thqg+1G/vLPpJogAE5cgLBd1tm4=
1582 | dependencies:
1583 | text-extensions "^1.0.0"
1584 |
1585 | is-typedarray@~1.0.0:
1586 | version "1.0.0"
1587 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
1588 |
1589 | is-utf8@^0.2.0:
1590 | version "0.2.1"
1591 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72"
1592 |
1593 | isarray@1.0.0, isarray@~1.0.0:
1594 | version "1.0.0"
1595 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
1596 |
1597 | isexe@^2.0.0:
1598 | version "2.0.0"
1599 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
1600 |
1601 | isobject@^2.0.0:
1602 | version "2.1.0"
1603 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
1604 | dependencies:
1605 | isarray "1.0.0"
1606 |
1607 | isstream@~0.1.2:
1608 | version "0.1.2"
1609 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
1610 |
1611 | istanbul-api@^1.1.1:
1612 | version "1.2.1"
1613 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.2.1.tgz#0c60a0515eb11c7d65c6b50bba2c6e999acd8620"
1614 | dependencies:
1615 | async "^2.1.4"
1616 | fileset "^2.0.2"
1617 | istanbul-lib-coverage "^1.1.1"
1618 | istanbul-lib-hook "^1.1.0"
1619 | istanbul-lib-instrument "^1.9.1"
1620 | istanbul-lib-report "^1.1.2"
1621 | istanbul-lib-source-maps "^1.2.2"
1622 | istanbul-reports "^1.1.3"
1623 | js-yaml "^3.7.0"
1624 | mkdirp "^0.5.1"
1625 | once "^1.4.0"
1626 |
1627 | istanbul-lib-coverage@^1.0.1, istanbul-lib-coverage@^1.1.1:
1628 | version "1.1.1"
1629 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da"
1630 |
1631 | istanbul-lib-hook@^1.1.0:
1632 | version "1.1.0"
1633 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.1.0.tgz#8538d970372cb3716d53e55523dd54b557a8d89b"
1634 | dependencies:
1635 | append-transform "^0.4.0"
1636 |
1637 | istanbul-lib-instrument@^1.4.2, istanbul-lib-instrument@^1.7.5, istanbul-lib-instrument@^1.9.1:
1638 | version "1.9.1"
1639 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.9.1.tgz#250b30b3531e5d3251299fdd64b0b2c9db6b558e"
1640 | dependencies:
1641 | babel-generator "^6.18.0"
1642 | babel-template "^6.16.0"
1643 | babel-traverse "^6.18.0"
1644 | babel-types "^6.18.0"
1645 | babylon "^6.18.0"
1646 | istanbul-lib-coverage "^1.1.1"
1647 | semver "^5.3.0"
1648 |
1649 | istanbul-lib-report@^1.1.2:
1650 | version "1.1.2"
1651 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.2.tgz#922be27c13b9511b979bd1587359f69798c1d425"
1652 | dependencies:
1653 | istanbul-lib-coverage "^1.1.1"
1654 | mkdirp "^0.5.1"
1655 | path-parse "^1.0.5"
1656 | supports-color "^3.1.2"
1657 |
1658 | istanbul-lib-source-maps@^1.1.0, istanbul-lib-source-maps@^1.2.2:
1659 | version "1.2.2"
1660 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.2.tgz#750578602435f28a0c04ee6d7d9e0f2960e62c1c"
1661 | dependencies:
1662 | debug "^3.1.0"
1663 | istanbul-lib-coverage "^1.1.1"
1664 | mkdirp "^0.5.1"
1665 | rimraf "^2.6.1"
1666 | source-map "^0.5.3"
1667 |
1668 | istanbul-reports@^1.1.3:
1669 | version "1.1.3"
1670 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.3.tgz#3b9e1e8defb6d18b1d425da8e8b32c5a163f2d10"
1671 | dependencies:
1672 | handlebars "^4.0.3"
1673 |
1674 | jest-changed-files@^21.2.0:
1675 | version "21.2.0"
1676 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-21.2.0.tgz#5dbeecad42f5d88b482334902ce1cba6d9798d29"
1677 | dependencies:
1678 | throat "^4.0.0"
1679 |
1680 | jest-cli@^21.2.1:
1681 | version "21.2.1"
1682 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-21.2.1.tgz#9c528b6629d651911138d228bdb033c157ec8c00"
1683 | dependencies:
1684 | ansi-escapes "^3.0.0"
1685 | chalk "^2.0.1"
1686 | glob "^7.1.2"
1687 | graceful-fs "^4.1.11"
1688 | is-ci "^1.0.10"
1689 | istanbul-api "^1.1.1"
1690 | istanbul-lib-coverage "^1.0.1"
1691 | istanbul-lib-instrument "^1.4.2"
1692 | istanbul-lib-source-maps "^1.1.0"
1693 | jest-changed-files "^21.2.0"
1694 | jest-config "^21.2.1"
1695 | jest-environment-jsdom "^21.2.1"
1696 | jest-haste-map "^21.2.0"
1697 | jest-message-util "^21.2.1"
1698 | jest-regex-util "^21.2.0"
1699 | jest-resolve-dependencies "^21.2.0"
1700 | jest-runner "^21.2.1"
1701 | jest-runtime "^21.2.1"
1702 | jest-snapshot "^21.2.1"
1703 | jest-util "^21.2.1"
1704 | micromatch "^2.3.11"
1705 | node-notifier "^5.0.2"
1706 | pify "^3.0.0"
1707 | slash "^1.0.0"
1708 | string-length "^2.0.0"
1709 | strip-ansi "^4.0.0"
1710 | which "^1.2.12"
1711 | worker-farm "^1.3.1"
1712 | yargs "^9.0.0"
1713 |
1714 | jest-config@^21.2.1:
1715 | version "21.2.1"
1716 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-21.2.1.tgz#c7586c79ead0bcc1f38c401e55f964f13bf2a480"
1717 | dependencies:
1718 | chalk "^2.0.1"
1719 | glob "^7.1.1"
1720 | jest-environment-jsdom "^21.2.1"
1721 | jest-environment-node "^21.2.1"
1722 | jest-get-type "^21.2.0"
1723 | jest-jasmine2 "^21.2.1"
1724 | jest-regex-util "^21.2.0"
1725 | jest-resolve "^21.2.0"
1726 | jest-util "^21.2.1"
1727 | jest-validate "^21.2.1"
1728 | pretty-format "^21.2.1"
1729 |
1730 | jest-diff@^21.2.1:
1731 | version "21.2.1"
1732 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-21.2.1.tgz#46cccb6cab2d02ce98bc314011764bb95b065b4f"
1733 | dependencies:
1734 | chalk "^2.0.1"
1735 | diff "^3.2.0"
1736 | jest-get-type "^21.2.0"
1737 | pretty-format "^21.2.1"
1738 |
1739 | jest-docblock@^21.2.0:
1740 | version "21.2.0"
1741 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-21.2.0.tgz#51529c3b30d5fd159da60c27ceedc195faf8d414"
1742 |
1743 | jest-environment-jsdom@^21.2.1:
1744 | version "21.2.1"
1745 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-21.2.1.tgz#38d9980c8259b2a608ec232deee6289a60d9d5b4"
1746 | dependencies:
1747 | jest-mock "^21.2.0"
1748 | jest-util "^21.2.1"
1749 | jsdom "^9.12.0"
1750 |
1751 | jest-environment-node@^21.2.1:
1752 | version "21.2.1"
1753 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-21.2.1.tgz#98c67df5663c7fbe20f6e792ac2272c740d3b8c8"
1754 | dependencies:
1755 | jest-mock "^21.2.0"
1756 | jest-util "^21.2.1"
1757 |
1758 | jest-get-type@^21.2.0:
1759 | version "21.2.0"
1760 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-21.2.0.tgz#f6376ab9db4b60d81e39f30749c6c466f40d4a23"
1761 |
1762 | jest-haste-map@^21.2.0:
1763 | version "21.2.0"
1764 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-21.2.0.tgz#1363f0a8bb4338f24f001806571eff7a4b2ff3d8"
1765 | dependencies:
1766 | fb-watchman "^2.0.0"
1767 | graceful-fs "^4.1.11"
1768 | jest-docblock "^21.2.0"
1769 | micromatch "^2.3.11"
1770 | sane "^2.0.0"
1771 | worker-farm "^1.3.1"
1772 |
1773 | jest-jasmine2@^21.2.1:
1774 | version "21.2.1"
1775 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-21.2.1.tgz#9cc6fc108accfa97efebce10c4308548a4ea7592"
1776 | dependencies:
1777 | chalk "^2.0.1"
1778 | expect "^21.2.1"
1779 | graceful-fs "^4.1.11"
1780 | jest-diff "^21.2.1"
1781 | jest-matcher-utils "^21.2.1"
1782 | jest-message-util "^21.2.1"
1783 | jest-snapshot "^21.2.1"
1784 | p-cancelable "^0.3.0"
1785 |
1786 | jest-matcher-utils@^21.2.1:
1787 | version "21.2.1"
1788 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-21.2.1.tgz#72c826eaba41a093ac2b4565f865eb8475de0f64"
1789 | dependencies:
1790 | chalk "^2.0.1"
1791 | jest-get-type "^21.2.0"
1792 | pretty-format "^21.2.1"
1793 |
1794 | jest-message-util@^21.2.1:
1795 | version "21.2.1"
1796 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-21.2.1.tgz#bfe5d4692c84c827d1dcf41823795558f0a1acbe"
1797 | dependencies:
1798 | chalk "^2.0.1"
1799 | micromatch "^2.3.11"
1800 | slash "^1.0.0"
1801 |
1802 | jest-mock@^21.2.0:
1803 | version "21.2.0"
1804 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-21.2.0.tgz#7eb0770e7317968165f61ea2a7281131534b3c0f"
1805 |
1806 | jest-regex-util@^21.2.0:
1807 | version "21.2.0"
1808 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-21.2.0.tgz#1b1e33e63143babc3e0f2e6c9b5ba1eb34b2d530"
1809 |
1810 | jest-resolve-dependencies@^21.2.0:
1811 | version "21.2.0"
1812 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-21.2.0.tgz#9e231e371e1a736a1ad4e4b9a843bc72bfe03d09"
1813 | dependencies:
1814 | jest-regex-util "^21.2.0"
1815 |
1816 | jest-resolve@^21.2.0:
1817 | version "21.2.0"
1818 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-21.2.0.tgz#068913ad2ba6a20218e5fd32471f3874005de3a6"
1819 | dependencies:
1820 | browser-resolve "^1.11.2"
1821 | chalk "^2.0.1"
1822 | is-builtin-module "^1.0.0"
1823 |
1824 | jest-runner@^21.2.1:
1825 | version "21.2.1"
1826 | resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-21.2.1.tgz#194732e3e518bfb3d7cbfc0fd5871246c7e1a467"
1827 | dependencies:
1828 | jest-config "^21.2.1"
1829 | jest-docblock "^21.2.0"
1830 | jest-haste-map "^21.2.0"
1831 | jest-jasmine2 "^21.2.1"
1832 | jest-message-util "^21.2.1"
1833 | jest-runtime "^21.2.1"
1834 | jest-util "^21.2.1"
1835 | pify "^3.0.0"
1836 | throat "^4.0.0"
1837 | worker-farm "^1.3.1"
1838 |
1839 | jest-runtime@^21.2.1:
1840 | version "21.2.1"
1841 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-21.2.1.tgz#99dce15309c670442eee2ebe1ff53a3cbdbbb73e"
1842 | dependencies:
1843 | babel-core "^6.0.0"
1844 | babel-jest "^21.2.0"
1845 | babel-plugin-istanbul "^4.0.0"
1846 | chalk "^2.0.1"
1847 | convert-source-map "^1.4.0"
1848 | graceful-fs "^4.1.11"
1849 | jest-config "^21.2.1"
1850 | jest-haste-map "^21.2.0"
1851 | jest-regex-util "^21.2.0"
1852 | jest-resolve "^21.2.0"
1853 | jest-util "^21.2.1"
1854 | json-stable-stringify "^1.0.1"
1855 | micromatch "^2.3.11"
1856 | slash "^1.0.0"
1857 | strip-bom "3.0.0"
1858 | write-file-atomic "^2.1.0"
1859 | yargs "^9.0.0"
1860 |
1861 | jest-snapshot@^21.2.1:
1862 | version "21.2.1"
1863 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-21.2.1.tgz#29e49f16202416e47343e757e5eff948c07fd7b0"
1864 | dependencies:
1865 | chalk "^2.0.1"
1866 | jest-diff "^21.2.1"
1867 | jest-matcher-utils "^21.2.1"
1868 | mkdirp "^0.5.1"
1869 | natural-compare "^1.4.0"
1870 | pretty-format "^21.2.1"
1871 |
1872 | jest-util@^21.2.1:
1873 | version "21.2.1"
1874 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-21.2.1.tgz#a274b2f726b0897494d694a6c3d6a61ab819bb78"
1875 | dependencies:
1876 | callsites "^2.0.0"
1877 | chalk "^2.0.1"
1878 | graceful-fs "^4.1.11"
1879 | jest-message-util "^21.2.1"
1880 | jest-mock "^21.2.0"
1881 | jest-validate "^21.2.1"
1882 | mkdirp "^0.5.1"
1883 |
1884 | jest-validate@^21.2.1:
1885 | version "21.2.1"
1886 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-21.2.1.tgz#cc0cbca653cd54937ba4f2a111796774530dd3c7"
1887 | dependencies:
1888 | chalk "^2.0.1"
1889 | jest-get-type "^21.2.0"
1890 | leven "^2.1.0"
1891 | pretty-format "^21.2.1"
1892 |
1893 | js-tokens@^3.0.0, js-tokens@^3.0.2:
1894 | version "3.0.2"
1895 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
1896 |
1897 | js-yaml@^3.13.1:
1898 | version "3.13.1"
1899 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847"
1900 | integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==
1901 | dependencies:
1902 | argparse "^1.0.7"
1903 | esprima "^4.0.0"
1904 |
1905 | js-yaml@^3.7.0:
1906 | version "3.10.0"
1907 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc"
1908 | dependencies:
1909 | argparse "^1.0.7"
1910 | esprima "^4.0.0"
1911 |
1912 | jsbn@~0.1.0:
1913 | version "0.1.1"
1914 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
1915 |
1916 | jsdom@^9.12.0:
1917 | version "9.12.0"
1918 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4"
1919 | dependencies:
1920 | abab "^1.0.3"
1921 | acorn "^4.0.4"
1922 | acorn-globals "^3.1.0"
1923 | array-equal "^1.0.0"
1924 | content-type-parser "^1.0.1"
1925 | cssom ">= 0.3.2 < 0.4.0"
1926 | cssstyle ">= 0.2.37 < 0.3.0"
1927 | escodegen "^1.6.1"
1928 | html-encoding-sniffer "^1.0.1"
1929 | nwmatcher ">= 1.3.9 < 2.0.0"
1930 | parse5 "^1.5.1"
1931 | request "^2.79.0"
1932 | sax "^1.2.1"
1933 | symbol-tree "^3.2.1"
1934 | tough-cookie "^2.3.2"
1935 | webidl-conversions "^4.0.0"
1936 | whatwg-encoding "^1.0.1"
1937 | whatwg-url "^4.3.0"
1938 | xml-name-validator "^2.0.1"
1939 |
1940 | jsesc@^1.3.0:
1941 | version "1.3.0"
1942 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b"
1943 |
1944 | json-parse-better-errors@^1.0.1:
1945 | version "1.0.2"
1946 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9"
1947 | integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==
1948 |
1949 | json-schema-traverse@^0.3.0:
1950 | version "0.3.1"
1951 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340"
1952 |
1953 | json-schema@0.2.3:
1954 | version "0.2.3"
1955 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
1956 |
1957 | json-stable-stringify@^1.0.1:
1958 | version "1.0.1"
1959 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af"
1960 | dependencies:
1961 | jsonify "~0.0.0"
1962 |
1963 | json-stringify-safe@~5.0.1:
1964 | version "5.0.1"
1965 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
1966 |
1967 | json5@^0.5.1:
1968 | version "0.5.1"
1969 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
1970 |
1971 | jsonify@~0.0.0:
1972 | version "0.0.0"
1973 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
1974 |
1975 | jsonparse@^1.2.0:
1976 | version "1.3.1"
1977 | resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280"
1978 |
1979 | jsprim@^1.2.2:
1980 | version "1.4.1"
1981 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"
1982 | dependencies:
1983 | assert-plus "1.0.0"
1984 | extsprintf "1.3.0"
1985 | json-schema "0.2.3"
1986 | verror "1.10.0"
1987 |
1988 | kind-of@^3.0.2:
1989 | version "3.2.2"
1990 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
1991 | dependencies:
1992 | is-buffer "^1.1.5"
1993 |
1994 | kind-of@^4.0.0:
1995 | version "4.0.0"
1996 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57"
1997 | dependencies:
1998 | is-buffer "^1.1.5"
1999 |
2000 | lazy-cache@^1.0.3:
2001 | version "1.0.4"
2002 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"
2003 |
2004 | lcid@^1.0.0:
2005 | version "1.0.0"
2006 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835"
2007 | dependencies:
2008 | invert-kv "^1.0.0"
2009 |
2010 | leven@^2.1.0:
2011 | version "2.1.0"
2012 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580"
2013 |
2014 | levn@~0.3.0:
2015 | version "0.3.0"
2016 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
2017 | dependencies:
2018 | prelude-ls "~1.1.2"
2019 | type-check "~0.3.2"
2020 |
2021 | load-json-file@^1.0.0:
2022 | version "1.1.0"
2023 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0"
2024 | dependencies:
2025 | graceful-fs "^4.1.2"
2026 | parse-json "^2.2.0"
2027 | pify "^2.0.0"
2028 | pinkie-promise "^2.0.0"
2029 | strip-bom "^2.0.0"
2030 |
2031 | load-json-file@^2.0.0:
2032 | version "2.0.0"
2033 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8"
2034 | dependencies:
2035 | graceful-fs "^4.1.2"
2036 | parse-json "^2.2.0"
2037 | pify "^2.0.0"
2038 | strip-bom "^3.0.0"
2039 |
2040 | load-json-file@^4.0.0:
2041 | version "4.0.0"
2042 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b"
2043 | integrity sha1-L19Fq5HjMhYjT9U62rZo607AmTs=
2044 | dependencies:
2045 | graceful-fs "^4.1.2"
2046 | parse-json "^4.0.0"
2047 | pify "^3.0.0"
2048 | strip-bom "^3.0.0"
2049 |
2050 | locate-path@^2.0.0:
2051 | version "2.0.0"
2052 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
2053 | dependencies:
2054 | p-locate "^2.0.0"
2055 | path-exists "^3.0.0"
2056 |
2057 | locate-path@^5.0.0:
2058 | version "5.0.0"
2059 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0"
2060 | integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==
2061 | dependencies:
2062 | p-locate "^4.1.0"
2063 |
2064 | lodash._reinterpolate@~3.0.0:
2065 | version "3.0.0"
2066 | resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d"
2067 |
2068 | lodash.clonedeep@~4.5.0:
2069 | version "4.5.0"
2070 | resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef"
2071 |
2072 | lodash.template@^4.0.2:
2073 | version "4.4.0"
2074 | resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.4.0.tgz#e73a0385c8355591746e020b99679c690e68fba0"
2075 | dependencies:
2076 | lodash._reinterpolate "~3.0.0"
2077 | lodash.templatesettings "^4.0.0"
2078 |
2079 | lodash.templatesettings@^4.0.0:
2080 | version "4.1.0"
2081 | resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-4.1.0.tgz#2b4d4e95ba440d915ff08bc899e4553666713316"
2082 | dependencies:
2083 | lodash._reinterpolate "~3.0.0"
2084 |
2085 | lodash@4.17.15, lodash@^4.17.11, lodash@^4.17.15:
2086 | version "4.17.15"
2087 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548"
2088 | integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==
2089 |
2090 | lodash@^4.14.0, lodash@^4.17.4:
2091 | version "4.17.4"
2092 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae"
2093 |
2094 | longest@^1.0.1:
2095 | version "1.0.1"
2096 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097"
2097 |
2098 | loose-envify@^1.0.0:
2099 | version "1.3.1"
2100 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848"
2101 | dependencies:
2102 | js-tokens "^3.0.0"
2103 |
2104 | loud-rejection@^1.0.0:
2105 | version "1.6.0"
2106 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f"
2107 | dependencies:
2108 | currently-unhandled "^0.4.1"
2109 | signal-exit "^3.0.0"
2110 |
2111 | lru-cache@^4.0.1:
2112 | version "4.1.1"
2113 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55"
2114 | dependencies:
2115 | pseudomap "^1.0.2"
2116 | yallist "^2.1.2"
2117 |
2118 | lsmod@1.0.0:
2119 | version "1.0.0"
2120 | resolved "https://registry.yarnpkg.com/lsmod/-/lsmod-1.0.0.tgz#9a00f76dca36eb23fa05350afe1b585d4299e64b"
2121 |
2122 | makeerror@1.0.x:
2123 | version "1.0.11"
2124 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c"
2125 | dependencies:
2126 | tmpl "1.0.x"
2127 |
2128 | map-obj@^1.0.0:
2129 | version "1.0.1"
2130 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d"
2131 |
2132 | map-obj@^2.0.0:
2133 | version "2.0.0"
2134 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-2.0.0.tgz#a65cd29087a92598b8791257a523e021222ac1f9"
2135 | integrity sha1-plzSkIepJZi4eRJXpSPgISIqwfk=
2136 |
2137 | marked@^0.3.19:
2138 | version "0.3.19"
2139 | resolved "https://registry.yarnpkg.com/marked/-/marked-0.3.19.tgz#5d47f709c4c9fc3c216b6d46127280f40b39d790"
2140 |
2141 | media-typer@0.3.0:
2142 | version "0.3.0"
2143 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748"
2144 |
2145 | mem@^1.1.0:
2146 | version "1.1.0"
2147 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76"
2148 | dependencies:
2149 | mimic-fn "^1.0.0"
2150 |
2151 | meow@^5.0.0:
2152 | version "5.0.0"
2153 | resolved "https://registry.yarnpkg.com/meow/-/meow-5.0.0.tgz#dfc73d63a9afc714a5e371760eb5c88b91078aa4"
2154 | integrity sha512-CbTqYU17ABaLefO8vCU153ZZlprKYWDljcndKKDCFcYQITzWCXZAVk4QMFZPgvzrnUQ3uItnIE/LoUOwrT15Ig==
2155 | dependencies:
2156 | camelcase-keys "^4.0.0"
2157 | decamelize-keys "^1.0.0"
2158 | loud-rejection "^1.0.0"
2159 | minimist-options "^3.0.1"
2160 | normalize-package-data "^2.3.4"
2161 | read-pkg-up "^3.0.0"
2162 | redent "^2.0.0"
2163 | trim-newlines "^2.0.0"
2164 | yargs-parser "^10.0.0"
2165 |
2166 | merge-descriptors@1.0.1:
2167 | version "1.0.1"
2168 | resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61"
2169 |
2170 | merge@^1.1.3:
2171 | version "1.2.0"
2172 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da"
2173 |
2174 | methods@~1.1.2:
2175 | version "1.1.2"
2176 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee"
2177 |
2178 | micromatch@^2.1.5, micromatch@^2.3.11:
2179 | version "2.3.11"
2180 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565"
2181 | dependencies:
2182 | arr-diff "^2.0.0"
2183 | array-unique "^0.2.1"
2184 | braces "^1.8.2"
2185 | expand-brackets "^0.1.4"
2186 | extglob "^0.3.1"
2187 | filename-regex "^2.0.0"
2188 | is-extglob "^1.0.0"
2189 | is-glob "^2.0.1"
2190 | kind-of "^3.0.2"
2191 | normalize-path "^2.0.1"
2192 | object.omit "^2.0.0"
2193 | parse-glob "^3.0.4"
2194 | regex-cache "^0.4.2"
2195 |
2196 | mime-db@~1.30.0:
2197 | version "1.30.0"
2198 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01"
2199 |
2200 | mime-types@^2.1.12, mime-types@~2.1.15, mime-types@~2.1.16, mime-types@~2.1.17, mime-types@~2.1.7:
2201 | version "2.1.17"
2202 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a"
2203 | dependencies:
2204 | mime-db "~1.30.0"
2205 |
2206 | mime@1.4.1:
2207 | version "1.4.1"
2208 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.4.1.tgz#121f9ebc49e3766f311a76e1fa1c8003c4b03aa6"
2209 |
2210 | mimic-fn@^1.0.0:
2211 | version "1.1.0"
2212 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18"
2213 |
2214 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4:
2215 | version "3.0.4"
2216 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
2217 | dependencies:
2218 | brace-expansion "^1.1.7"
2219 |
2220 | minimist-options@^3.0.1:
2221 | version "3.0.2"
2222 | resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-3.0.2.tgz#fba4c8191339e13ecf4d61beb03f070103f3d954"
2223 | integrity sha512-FyBrT/d0d4+uiZRbqznPXqw3IpZZG3gl3wKWiX784FycUKVwBt0uLBFkQrtE4tZOrgo78nZp2jnKz3L65T5LdQ==
2224 | dependencies:
2225 | arrify "^1.0.1"
2226 | is-plain-obj "^1.1.0"
2227 |
2228 | minimist@0.0.8:
2229 | version "0.0.8"
2230 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
2231 |
2232 | minimist@^1.1.1, minimist@^1.2.0:
2233 | version "1.2.0"
2234 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
2235 |
2236 | minimist@~0.0.1:
2237 | version "0.0.10"
2238 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf"
2239 |
2240 | "mkdirp@>=0.5 0", mkdirp@^0.5.1:
2241 | version "0.5.1"
2242 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
2243 | dependencies:
2244 | minimist "0.0.8"
2245 |
2246 | ms@2.0.0:
2247 | version "2.0.0"
2248 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
2249 |
2250 | nan@^2.3.0:
2251 | version "2.7.0"
2252 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.7.0.tgz#d95bf721ec877e08db276ed3fc6eb78f9083ad46"
2253 |
2254 | natural-compare@^1.4.0:
2255 | version "1.4.0"
2256 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
2257 |
2258 | negotiator@0.6.1:
2259 | version "0.6.1"
2260 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9"
2261 |
2262 | node-int64@^0.4.0:
2263 | version "0.4.0"
2264 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b"
2265 |
2266 | node-notifier@^5.0.2:
2267 | version "5.1.2"
2268 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff"
2269 | dependencies:
2270 | growly "^1.3.0"
2271 | semver "^5.3.0"
2272 | shellwords "^0.1.0"
2273 | which "^1.2.12"
2274 |
2275 | node-pre-gyp@^0.6.36:
2276 | version "0.6.38"
2277 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.38.tgz#e92a20f83416415bb4086f6d1fb78b3da73d113d"
2278 | dependencies:
2279 | hawk "3.1.3"
2280 | mkdirp "^0.5.1"
2281 | nopt "^4.0.1"
2282 | npmlog "^4.0.2"
2283 | rc "^1.1.7"
2284 | request "2.81.0"
2285 | rimraf "^2.6.1"
2286 | semver "^5.3.0"
2287 | tar "^2.2.1"
2288 | tar-pack "^3.4.0"
2289 |
2290 | nopt@^4.0.1:
2291 | version "4.0.1"
2292 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d"
2293 | dependencies:
2294 | abbrev "1"
2295 | osenv "^0.1.4"
2296 |
2297 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4:
2298 | version "2.4.0"
2299 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f"
2300 | dependencies:
2301 | hosted-git-info "^2.1.4"
2302 | is-builtin-module "^1.0.0"
2303 | semver "2 || 3 || 4 || 5"
2304 | validate-npm-package-license "^3.0.1"
2305 |
2306 | normalize-path@^2.0.0, normalize-path@^2.0.1:
2307 | version "2.1.1"
2308 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
2309 | dependencies:
2310 | remove-trailing-separator "^1.0.1"
2311 |
2312 | npm-run-path@^2.0.0:
2313 | version "2.0.2"
2314 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
2315 | dependencies:
2316 | path-key "^2.0.0"
2317 |
2318 | npmlog@^4.0.2:
2319 | version "4.1.2"
2320 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
2321 | dependencies:
2322 | are-we-there-yet "~1.1.2"
2323 | console-control-strings "~1.1.0"
2324 | gauge "~2.7.3"
2325 | set-blocking "~2.0.0"
2326 |
2327 | number-is-nan@^1.0.0:
2328 | version "1.0.1"
2329 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
2330 |
2331 | "nwmatcher@>= 1.3.9 < 2.0.0":
2332 | version "1.4.3"
2333 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.3.tgz#64348e3b3d80f035b40ac11563d278f8b72db89c"
2334 |
2335 | oauth-sign@~0.8.1, oauth-sign@~0.8.2:
2336 | version "0.8.2"
2337 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"
2338 |
2339 | object-assign@^4.1.0:
2340 | version "4.1.1"
2341 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
2342 |
2343 | object.omit@^2.0.0:
2344 | version "2.0.1"
2345 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"
2346 | dependencies:
2347 | for-own "^0.1.4"
2348 | is-extendable "^0.1.1"
2349 |
2350 | on-finished@~2.3.0:
2351 | version "2.3.0"
2352 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947"
2353 | dependencies:
2354 | ee-first "1.1.1"
2355 |
2356 | once@^1.3.0, once@^1.3.3, once@^1.4.0:
2357 | version "1.4.0"
2358 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
2359 | dependencies:
2360 | wrappy "1"
2361 |
2362 | optimist@^0.6.1:
2363 | version "0.6.1"
2364 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686"
2365 | dependencies:
2366 | minimist "~0.0.1"
2367 | wordwrap "~0.0.2"
2368 |
2369 | optionator@^0.8.1:
2370 | version "0.8.2"
2371 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64"
2372 | dependencies:
2373 | deep-is "~0.1.3"
2374 | fast-levenshtein "~2.0.4"
2375 | levn "~0.3.0"
2376 | prelude-ls "~1.1.2"
2377 | type-check "~0.3.2"
2378 | wordwrap "~1.0.0"
2379 |
2380 | os-homedir@^1.0.0:
2381 | version "1.0.2"
2382 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
2383 |
2384 | os-locale@^2.0.0:
2385 | version "2.1.0"
2386 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2"
2387 | dependencies:
2388 | execa "^0.7.0"
2389 | lcid "^1.0.0"
2390 | mem "^1.1.0"
2391 |
2392 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1:
2393 | version "1.0.2"
2394 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
2395 |
2396 | osenv@^0.1.4:
2397 | version "0.1.4"
2398 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644"
2399 | dependencies:
2400 | os-homedir "^1.0.0"
2401 | os-tmpdir "^1.0.0"
2402 |
2403 | p-cancelable@^0.3.0:
2404 | version "0.3.0"
2405 | resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-0.3.0.tgz#b9e123800bcebb7ac13a479be195b507b98d30fa"
2406 |
2407 | p-finally@^1.0.0:
2408 | version "1.0.0"
2409 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
2410 |
2411 | p-limit@^1.1.0:
2412 | version "1.1.0"
2413 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc"
2414 |
2415 | p-limit@^2.2.0:
2416 | version "2.2.2"
2417 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.2.tgz#61279b67721f5287aa1c13a9a7fbbc48c9291b1e"
2418 | integrity sha512-WGR+xHecKTr7EbUEhyLSh5Dube9JtdiG78ufaeLxTgpudf/20KqyMioIUZJAezlTIi6evxuoUs9YXc11cU+yzQ==
2419 | dependencies:
2420 | p-try "^2.0.0"
2421 |
2422 | p-locate@^2.0.0:
2423 | version "2.0.0"
2424 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
2425 | dependencies:
2426 | p-limit "^1.1.0"
2427 |
2428 | p-locate@^4.1.0:
2429 | version "4.1.0"
2430 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07"
2431 | integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==
2432 | dependencies:
2433 | p-limit "^2.2.0"
2434 |
2435 | p-try@^2.0.0:
2436 | version "2.2.0"
2437 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
2438 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
2439 |
2440 | parent-module@^1.0.0:
2441 | version "1.0.1"
2442 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
2443 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
2444 | dependencies:
2445 | callsites "^3.0.0"
2446 |
2447 | parse-glob@^3.0.4:
2448 | version "3.0.4"
2449 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c"
2450 | dependencies:
2451 | glob-base "^0.3.0"
2452 | is-dotfile "^1.0.0"
2453 | is-extglob "^1.0.0"
2454 | is-glob "^2.0.0"
2455 |
2456 | parse-json@^2.2.0:
2457 | version "2.2.0"
2458 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
2459 | dependencies:
2460 | error-ex "^1.2.0"
2461 |
2462 | parse-json@^4.0.0:
2463 | version "4.0.0"
2464 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0"
2465 | integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=
2466 | dependencies:
2467 | error-ex "^1.3.1"
2468 | json-parse-better-errors "^1.0.1"
2469 |
2470 | parse5@^1.5.1:
2471 | version "1.5.1"
2472 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94"
2473 |
2474 | parseurl@~1.3.2:
2475 | version "1.3.2"
2476 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.2.tgz#fc289d4ed8993119460c156253262cdc8de65bf3"
2477 |
2478 | path-exists@^2.0.0:
2479 | version "2.1.0"
2480 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b"
2481 | dependencies:
2482 | pinkie-promise "^2.0.0"
2483 |
2484 | path-exists@^3.0.0:
2485 | version "3.0.0"
2486 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
2487 |
2488 | path-exists@^4.0.0:
2489 | version "4.0.0"
2490 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3"
2491 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==
2492 |
2493 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1:
2494 | version "1.0.1"
2495 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
2496 |
2497 | path-key@^2.0.0:
2498 | version "2.0.1"
2499 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
2500 |
2501 | path-parse@^1.0.5:
2502 | version "1.0.5"
2503 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1"
2504 |
2505 | path-to-regexp@0.1.7:
2506 | version "0.1.7"
2507 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c"
2508 |
2509 | path-type@^1.0.0:
2510 | version "1.1.0"
2511 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441"
2512 | dependencies:
2513 | graceful-fs "^4.1.2"
2514 | pify "^2.0.0"
2515 | pinkie-promise "^2.0.0"
2516 |
2517 | path-type@^2.0.0:
2518 | version "2.0.0"
2519 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73"
2520 | dependencies:
2521 | pify "^2.0.0"
2522 |
2523 | path-type@^3.0.0:
2524 | version "3.0.0"
2525 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f"
2526 | integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==
2527 | dependencies:
2528 | pify "^3.0.0"
2529 |
2530 | performance-now@^0.2.0:
2531 | version "0.2.0"
2532 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5"
2533 |
2534 | performance-now@^2.1.0:
2535 | version "2.1.0"
2536 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"
2537 |
2538 | pify@^2.0.0:
2539 | version "2.3.0"
2540 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
2541 |
2542 | pify@^3.0.0:
2543 | version "3.0.0"
2544 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"
2545 |
2546 | pinkie-promise@^2.0.0:
2547 | version "2.0.1"
2548 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
2549 | dependencies:
2550 | pinkie "^2.0.0"
2551 |
2552 | pinkie@^2.0.0:
2553 | version "2.0.4"
2554 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
2555 |
2556 | prelude-ls@~1.1.2:
2557 | version "1.1.2"
2558 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
2559 |
2560 | preserve@^0.2.0:
2561 | version "0.2.0"
2562 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
2563 |
2564 | pretty-format@^21.2.1:
2565 | version "21.2.1"
2566 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-21.2.1.tgz#ae5407f3cf21066cd011aa1ba5fce7b6a2eddb36"
2567 | dependencies:
2568 | ansi-regex "^3.0.0"
2569 | ansi-styles "^3.2.0"
2570 |
2571 | private@^0.1.7:
2572 | version "0.1.8"
2573 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff"
2574 |
2575 | process-nextick-args@~1.0.6:
2576 | version "1.0.7"
2577 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3"
2578 |
2579 | promise-queue@^2.2.3:
2580 | version "2.2.3"
2581 | resolved "https://registry.yarnpkg.com/promise-queue/-/promise-queue-2.2.3.tgz#8534d76bf4673c3baa3a82bba01bd295cc30f14f"
2582 |
2583 | proxy-addr@~2.0.2:
2584 | version "2.0.2"
2585 | resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.2.tgz#6571504f47bb988ec8180253f85dd7e14952bdec"
2586 | dependencies:
2587 | forwarded "~0.1.2"
2588 | ipaddr.js "1.5.2"
2589 |
2590 | prr@~0.0.0:
2591 | version "0.0.0"
2592 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a"
2593 |
2594 | pseudomap@^1.0.2:
2595 | version "1.0.2"
2596 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
2597 |
2598 | punycode@^1.4.1:
2599 | version "1.4.1"
2600 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
2601 |
2602 | q@^1.4.1:
2603 | version "1.5.0"
2604 | resolved "https://registry.yarnpkg.com/q/-/q-1.5.0.tgz#dd01bac9d06d30e6f219aecb8253ee9ebdc308f1"
2605 |
2606 | qs@6.5.1, qs@~6.5.1:
2607 | version "6.5.1"
2608 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8"
2609 |
2610 | qs@~6.4.0:
2611 | version "6.4.0"
2612 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233"
2613 |
2614 | quick-lru@^1.0.0:
2615 | version "1.1.0"
2616 | resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-1.1.0.tgz#4360b17c61136ad38078397ff11416e186dcfbb8"
2617 | integrity sha1-Q2CxfGETatOAeDl/8RQW4Ybc+7g=
2618 |
2619 | randomatic@^1.1.3:
2620 | version "1.1.7"
2621 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c"
2622 | dependencies:
2623 | is-number "^3.0.0"
2624 | kind-of "^4.0.0"
2625 |
2626 | range-parser@~1.2.0:
2627 | version "1.2.0"
2628 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e"
2629 |
2630 | raven@^2.2.1:
2631 | version "2.2.1"
2632 | resolved "https://registry.yarnpkg.com/raven/-/raven-2.2.1.tgz#57c7fbe68a80147ec527def3d7c01575cf948fe3"
2633 | dependencies:
2634 | cookie "0.3.1"
2635 | lsmod "1.0.0"
2636 | stack-trace "0.0.9"
2637 | timed-out "4.0.1"
2638 | uuid "3.0.0"
2639 |
2640 | raw-body@2.3.2:
2641 | version "2.3.2"
2642 | resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.3.2.tgz#bcd60c77d3eb93cde0050295c3f379389bc88f89"
2643 | dependencies:
2644 | bytes "3.0.0"
2645 | http-errors "1.6.2"
2646 | iconv-lite "0.4.19"
2647 | unpipe "1.0.0"
2648 |
2649 | rc@^1.1.7:
2650 | version "1.2.2"
2651 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.2.tgz#d8ce9cb57e8d64d9c7badd9876c7c34cbe3c7077"
2652 | dependencies:
2653 | deep-extend "~0.4.0"
2654 | ini "~1.3.0"
2655 | minimist "^1.2.0"
2656 | strip-json-comments "~2.0.1"
2657 |
2658 | read-pkg-up@^1.0.1:
2659 | version "1.0.1"
2660 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02"
2661 | dependencies:
2662 | find-up "^1.0.0"
2663 | read-pkg "^1.0.0"
2664 |
2665 | read-pkg-up@^2.0.0:
2666 | version "2.0.0"
2667 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be"
2668 | dependencies:
2669 | find-up "^2.0.0"
2670 | read-pkg "^2.0.0"
2671 |
2672 | read-pkg-up@^3.0.0:
2673 | version "3.0.0"
2674 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-3.0.0.tgz#3ed496685dba0f8fe118d0691dc51f4a1ff96f07"
2675 | integrity sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc=
2676 | dependencies:
2677 | find-up "^2.0.0"
2678 | read-pkg "^3.0.0"
2679 |
2680 | read-pkg@^1.0.0:
2681 | version "1.1.0"
2682 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28"
2683 | dependencies:
2684 | load-json-file "^1.0.0"
2685 | normalize-package-data "^2.3.2"
2686 | path-type "^1.0.0"
2687 |
2688 | read-pkg@^2.0.0:
2689 | version "2.0.0"
2690 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8"
2691 | dependencies:
2692 | load-json-file "^2.0.0"
2693 | normalize-package-data "^2.3.2"
2694 | path-type "^2.0.0"
2695 |
2696 | read-pkg@^3.0.0:
2697 | version "3.0.0"
2698 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389"
2699 | integrity sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=
2700 | dependencies:
2701 | load-json-file "^4.0.0"
2702 | normalize-package-data "^2.3.2"
2703 | path-type "^3.0.0"
2704 |
2705 | "readable-stream@2 || 3":
2706 | version "3.6.0"
2707 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198"
2708 | integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==
2709 | dependencies:
2710 | inherits "^2.0.3"
2711 | string_decoder "^1.1.1"
2712 | util-deprecate "^1.0.1"
2713 |
2714 | readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.1.5:
2715 | version "2.3.3"
2716 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c"
2717 | dependencies:
2718 | core-util-is "~1.0.0"
2719 | inherits "~2.0.3"
2720 | isarray "~1.0.0"
2721 | process-nextick-args "~1.0.6"
2722 | safe-buffer "~5.1.1"
2723 | string_decoder "~1.0.3"
2724 | util-deprecate "~1.0.1"
2725 |
2726 | redent@^2.0.0:
2727 | version "2.0.0"
2728 | resolved "https://registry.yarnpkg.com/redent/-/redent-2.0.0.tgz#c1b2007b42d57eb1389079b3c8333639d5e1ccaa"
2729 | integrity sha1-wbIAe0LVfrE4kHmzyDM2OdXhzKo=
2730 | dependencies:
2731 | indent-string "^3.0.0"
2732 | strip-indent "^2.0.0"
2733 |
2734 | regenerator-runtime@^0.11.0:
2735 | version "0.11.0"
2736 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1"
2737 |
2738 | regex-cache@^0.4.2:
2739 | version "0.4.4"
2740 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd"
2741 | dependencies:
2742 | is-equal-shallow "^0.1.3"
2743 |
2744 | remove-trailing-separator@^1.0.1:
2745 | version "1.1.0"
2746 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
2747 |
2748 | repeat-element@^1.1.2:
2749 | version "1.1.2"
2750 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a"
2751 |
2752 | repeat-string@^1.5.2:
2753 | version "1.6.1"
2754 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
2755 |
2756 | repeating@^2.0.0:
2757 | version "2.0.1"
2758 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda"
2759 | dependencies:
2760 | is-finite "^1.0.0"
2761 |
2762 | request@2.81.0:
2763 | version "2.81.0"
2764 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0"
2765 | dependencies:
2766 | aws-sign2 "~0.6.0"
2767 | aws4 "^1.2.1"
2768 | caseless "~0.12.0"
2769 | combined-stream "~1.0.5"
2770 | extend "~3.0.0"
2771 | forever-agent "~0.6.1"
2772 | form-data "~2.1.1"
2773 | har-validator "~4.2.1"
2774 | hawk "~3.1.3"
2775 | http-signature "~1.1.0"
2776 | is-typedarray "~1.0.0"
2777 | isstream "~0.1.2"
2778 | json-stringify-safe "~5.0.1"
2779 | mime-types "~2.1.7"
2780 | oauth-sign "~0.8.1"
2781 | performance-now "^0.2.0"
2782 | qs "~6.4.0"
2783 | safe-buffer "^5.0.1"
2784 | stringstream "~0.0.4"
2785 | tough-cookie "~2.3.0"
2786 | tunnel-agent "^0.6.0"
2787 | uuid "^3.0.0"
2788 |
2789 | request@^2.79.0:
2790 | version "2.83.0"
2791 | resolved "https://registry.yarnpkg.com/request/-/request-2.83.0.tgz#ca0b65da02ed62935887808e6f510381034e3356"
2792 | dependencies:
2793 | aws-sign2 "~0.7.0"
2794 | aws4 "^1.6.0"
2795 | caseless "~0.12.0"
2796 | combined-stream "~1.0.5"
2797 | extend "~3.0.1"
2798 | forever-agent "~0.6.1"
2799 | form-data "~2.3.1"
2800 | har-validator "~5.0.3"
2801 | hawk "~6.0.2"
2802 | http-signature "~1.2.0"
2803 | is-typedarray "~1.0.0"
2804 | isstream "~0.1.2"
2805 | json-stringify-safe "~5.0.1"
2806 | mime-types "~2.1.17"
2807 | oauth-sign "~0.8.2"
2808 | performance-now "^2.1.0"
2809 | qs "~6.5.1"
2810 | safe-buffer "^5.1.1"
2811 | stringstream "~0.0.5"
2812 | tough-cookie "~2.3.3"
2813 | tunnel-agent "^0.6.0"
2814 | uuid "^3.1.0"
2815 |
2816 | require-directory@^2.1.1:
2817 | version "2.1.1"
2818 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
2819 |
2820 | require-from-string@^2.0.1:
2821 | version "2.0.1"
2822 | resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.1.tgz#c545233e9d7da6616e9d59adfb39fc9f588676ff"
2823 |
2824 | require-main-filename@^1.0.1:
2825 | version "1.0.1"
2826 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1"
2827 |
2828 | resolve-from@^3.0.0:
2829 | version "3.0.0"
2830 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748"
2831 |
2832 | resolve-from@^4.0.0:
2833 | version "4.0.0"
2834 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
2835 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
2836 |
2837 | resolve-from@^5.0.0:
2838 | version "5.0.0"
2839 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69"
2840 | integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==
2841 |
2842 | resolve-global@^1.0.0:
2843 | version "1.0.0"
2844 | resolved "https://registry.yarnpkg.com/resolve-global/-/resolve-global-1.0.0.tgz#a2a79df4af2ca3f49bf77ef9ddacd322dad19255"
2845 | integrity sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==
2846 | dependencies:
2847 | global-dirs "^0.1.1"
2848 |
2849 | resolve@1.1.7:
2850 | version "1.1.7"
2851 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b"
2852 |
2853 | right-align@^0.1.1:
2854 | version "0.1.3"
2855 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef"
2856 | dependencies:
2857 | align-text "^0.1.1"
2858 |
2859 | rimraf@2, rimraf@^2.5.1, rimraf@^2.5.2, rimraf@^2.6.1:
2860 | version "2.6.2"
2861 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36"
2862 | dependencies:
2863 | glob "^7.0.5"
2864 |
2865 | safe-buffer@5.1.1, safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
2866 | version "5.1.1"
2867 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853"
2868 |
2869 | safe-buffer@~5.2.0:
2870 | version "5.2.0"
2871 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.0.tgz#b74daec49b1148f88c64b68d49b1e815c1f2f519"
2872 | integrity sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg==
2873 |
2874 | sane@^2.0.0:
2875 | version "2.2.0"
2876 | resolved "https://registry.yarnpkg.com/sane/-/sane-2.2.0.tgz#d6d2e2fcab00e3d283c93b912b7c3a20846f1d56"
2877 | dependencies:
2878 | anymatch "^1.3.0"
2879 | exec-sh "^0.2.0"
2880 | fb-watchman "^2.0.0"
2881 | minimatch "^3.0.2"
2882 | minimist "^1.1.1"
2883 | walker "~1.0.5"
2884 | watch "~0.18.0"
2885 | optionalDependencies:
2886 | fsevents "^1.1.1"
2887 |
2888 | sax@^1.2.1:
2889 | version "1.2.4"
2890 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
2891 |
2892 | "semver@2 || 3 || 4 || 5", semver@^5.3.0:
2893 | version "5.4.1"
2894 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e"
2895 |
2896 | semver@6.3.0:
2897 | version "6.3.0"
2898 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
2899 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
2900 |
2901 | send@0.16.1:
2902 | version "0.16.1"
2903 | resolved "https://registry.yarnpkg.com/send/-/send-0.16.1.tgz#a70e1ca21d1382c11d0d9f6231deb281080d7ab3"
2904 | dependencies:
2905 | debug "2.6.9"
2906 | depd "~1.1.1"
2907 | destroy "~1.0.4"
2908 | encodeurl "~1.0.1"
2909 | escape-html "~1.0.3"
2910 | etag "~1.8.1"
2911 | fresh "0.5.2"
2912 | http-errors "~1.6.2"
2913 | mime "1.4.1"
2914 | ms "2.0.0"
2915 | on-finished "~2.3.0"
2916 | range-parser "~1.2.0"
2917 | statuses "~1.3.1"
2918 |
2919 | serve-static@1.13.1:
2920 | version "1.13.1"
2921 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.13.1.tgz#4c57d53404a761d8f2e7c1e8a18a47dbf278a719"
2922 | dependencies:
2923 | encodeurl "~1.0.1"
2924 | escape-html "~1.0.3"
2925 | parseurl "~1.3.2"
2926 | send "0.16.1"
2927 |
2928 | set-blocking@^2.0.0, set-blocking@~2.0.0:
2929 | version "2.0.0"
2930 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
2931 |
2932 | setprototypeof@1.0.3:
2933 | version "1.0.3"
2934 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.3.tgz#66567e37043eeb4f04d91bd658c0cbefb55b8e04"
2935 |
2936 | setprototypeof@1.1.0:
2937 | version "1.1.0"
2938 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656"
2939 |
2940 | shebang-command@^1.2.0:
2941 | version "1.2.0"
2942 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
2943 | dependencies:
2944 | shebang-regex "^1.0.0"
2945 |
2946 | shebang-regex@^1.0.0:
2947 | version "1.0.0"
2948 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
2949 |
2950 | shellwords@^0.1.0:
2951 | version "0.1.1"
2952 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b"
2953 |
2954 | signal-exit@^3.0.0, signal-exit@^3.0.2:
2955 | version "3.0.2"
2956 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
2957 |
2958 | slash@^1.0.0:
2959 | version "1.0.0"
2960 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"
2961 |
2962 | sntp@1.x.x:
2963 | version "1.0.9"
2964 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198"
2965 | dependencies:
2966 | hoek "2.x.x"
2967 |
2968 | sntp@2.x.x:
2969 | version "2.1.0"
2970 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.1.0.tgz#2c6cec14fedc2222739caf9b5c3d85d1cc5a2cc8"
2971 | dependencies:
2972 | hoek "4.x.x"
2973 |
2974 | source-map-support@^0.4.15:
2975 | version "0.4.18"
2976 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f"
2977 | dependencies:
2978 | source-map "^0.5.6"
2979 |
2980 | source-map@^0.4.4:
2981 | version "0.4.4"
2982 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b"
2983 | dependencies:
2984 | amdefine ">=0.0.4"
2985 |
2986 | source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1, source-map@~0.5.6:
2987 | version "0.5.7"
2988 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
2989 |
2990 | spdx-correct@~1.0.0:
2991 | version "1.0.2"
2992 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40"
2993 | dependencies:
2994 | spdx-license-ids "^1.0.2"
2995 |
2996 | spdx-expression-parse@~1.0.0:
2997 | version "1.0.4"
2998 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c"
2999 |
3000 | spdx-license-ids@^1.0.2:
3001 | version "1.2.2"
3002 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57"
3003 |
3004 | split2@^2.0.0:
3005 | version "2.2.0"
3006 | resolved "https://registry.yarnpkg.com/split2/-/split2-2.2.0.tgz#186b2575bcf83e85b7d18465756238ee4ee42493"
3007 | dependencies:
3008 | through2 "^2.0.2"
3009 |
3010 | sprintf-js@~1.0.2:
3011 | version "1.0.3"
3012 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
3013 |
3014 | sshpk@^1.7.0:
3015 | version "1.13.1"
3016 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3"
3017 | dependencies:
3018 | asn1 "~0.2.3"
3019 | assert-plus "^1.0.0"
3020 | dashdash "^1.12.0"
3021 | getpass "^0.1.1"
3022 | optionalDependencies:
3023 | bcrypt-pbkdf "^1.0.0"
3024 | ecc-jsbn "~0.1.1"
3025 | jsbn "~0.1.0"
3026 | tweetnacl "~0.14.0"
3027 |
3028 | stack-trace@0.0.9:
3029 | version "0.0.9"
3030 | resolved "https://registry.yarnpkg.com/stack-trace/-/stack-trace-0.0.9.tgz#a8f6eaeca90674c333e7c43953f275b451510695"
3031 |
3032 | "statuses@>= 1.3.1 < 2", statuses@~1.3.1:
3033 | version "1.3.1"
3034 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e"
3035 |
3036 | string-length@^2.0.0:
3037 | version "2.0.0"
3038 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed"
3039 | dependencies:
3040 | astral-regex "^1.0.0"
3041 | strip-ansi "^4.0.0"
3042 |
3043 | string-width@^1.0.1, string-width@^1.0.2:
3044 | version "1.0.2"
3045 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
3046 | dependencies:
3047 | code-point-at "^1.0.0"
3048 | is-fullwidth-code-point "^1.0.0"
3049 | strip-ansi "^3.0.0"
3050 |
3051 | string-width@^2.0.0:
3052 | version "2.1.1"
3053 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
3054 | dependencies:
3055 | is-fullwidth-code-point "^2.0.0"
3056 | strip-ansi "^4.0.0"
3057 |
3058 | string_decoder@^1.1.1:
3059 | version "1.3.0"
3060 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e"
3061 | integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==
3062 | dependencies:
3063 | safe-buffer "~5.2.0"
3064 |
3065 | string_decoder@~1.0.3:
3066 | version "1.0.3"
3067 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab"
3068 | dependencies:
3069 | safe-buffer "~5.1.0"
3070 |
3071 | stringstream@~0.0.4, stringstream@~0.0.5:
3072 | version "0.0.5"
3073 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878"
3074 |
3075 | strip-ansi@^3.0.0, strip-ansi@^3.0.1:
3076 | version "3.0.1"
3077 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
3078 | dependencies:
3079 | ansi-regex "^2.0.0"
3080 |
3081 | strip-ansi@^4.0.0:
3082 | version "4.0.0"
3083 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
3084 | dependencies:
3085 | ansi-regex "^3.0.0"
3086 |
3087 | strip-bom@3.0.0, strip-bom@^3.0.0:
3088 | version "3.0.0"
3089 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
3090 |
3091 | strip-bom@^2.0.0:
3092 | version "2.0.0"
3093 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e"
3094 | dependencies:
3095 | is-utf8 "^0.2.0"
3096 |
3097 | strip-eof@^1.0.0:
3098 | version "1.0.0"
3099 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
3100 |
3101 | strip-indent@^2.0.0:
3102 | version "2.0.0"
3103 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68"
3104 | integrity sha1-XvjbKV0B5u1sv3qrlpmNeCJSe2g=
3105 |
3106 | strip-json-comments@~2.0.1:
3107 | version "2.0.1"
3108 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
3109 |
3110 | supports-color@^2.0.0:
3111 | version "2.0.0"
3112 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
3113 |
3114 | supports-color@^3.1.2:
3115 | version "3.2.3"
3116 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6"
3117 | dependencies:
3118 | has-flag "^1.0.0"
3119 |
3120 | supports-color@^4.0.0:
3121 | version "4.4.0"
3122 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.4.0.tgz#883f7ddabc165142b2a61427f3352ded195d1a3e"
3123 | dependencies:
3124 | has-flag "^2.0.0"
3125 |
3126 | supports-color@^5.3.0:
3127 | version "5.5.0"
3128 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
3129 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
3130 | dependencies:
3131 | has-flag "^3.0.0"
3132 |
3133 | symbol-tree@^3.2.1:
3134 | version "3.2.2"
3135 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6"
3136 |
3137 | tar-pack@^3.4.0:
3138 | version "3.4.1"
3139 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f"
3140 | dependencies:
3141 | debug "^2.2.0"
3142 | fstream "^1.0.10"
3143 | fstream-ignore "^1.0.5"
3144 | once "^1.3.3"
3145 | readable-stream "^2.1.4"
3146 | rimraf "^2.5.1"
3147 | tar "^2.2.1"
3148 | uid-number "^0.0.6"
3149 |
3150 | tar@^2.2.1:
3151 | version "2.2.1"
3152 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1"
3153 | dependencies:
3154 | block-stream "*"
3155 | fstream "^1.0.2"
3156 | inherits "2"
3157 |
3158 | test-exclude@^4.1.1:
3159 | version "4.1.1"
3160 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.1.tgz#4d84964b0966b0087ecc334a2ce002d3d9341e26"
3161 | dependencies:
3162 | arrify "^1.0.1"
3163 | micromatch "^2.3.11"
3164 | object-assign "^4.1.0"
3165 | read-pkg-up "^1.0.1"
3166 | require-main-filename "^1.0.1"
3167 |
3168 | text-extensions@^1.0.0:
3169 | version "1.7.0"
3170 | resolved "https://registry.yarnpkg.com/text-extensions/-/text-extensions-1.7.0.tgz#faaaba2625ed746d568a23e4d0aacd9bf08a8b39"
3171 |
3172 | throat@^4.0.0:
3173 | version "4.1.0"
3174 | resolved "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a"
3175 |
3176 | through2@^2.0.2:
3177 | version "2.0.3"
3178 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be"
3179 | dependencies:
3180 | readable-stream "^2.1.5"
3181 | xtend "~4.0.1"
3182 |
3183 | through2@^3.0.0:
3184 | version "3.0.1"
3185 | resolved "https://registry.yarnpkg.com/through2/-/through2-3.0.1.tgz#39276e713c3302edf9e388dd9c812dd3b825bd5a"
3186 | integrity sha512-M96dvTalPT3YbYLaKaCuwu+j06D/8Jfib0o/PxbVt6Amhv3dUAtW6rTV1jPgJSBG83I/e04Y6xkVdVhSRhi0ww==
3187 | dependencies:
3188 | readable-stream "2 || 3"
3189 |
3190 | "through@>=2.2.7 <3":
3191 | version "2.3.8"
3192 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
3193 |
3194 | timed-out@4.0.1:
3195 | version "4.0.1"
3196 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f"
3197 |
3198 | tmpl@1.0.x:
3199 | version "1.0.4"
3200 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1"
3201 |
3202 | to-fast-properties@^1.0.3:
3203 | version "1.0.3"
3204 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47"
3205 |
3206 | tough-cookie@^2.3.2, tough-cookie@~2.3.0, tough-cookie@~2.3.3:
3207 | version "2.3.3"
3208 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561"
3209 | dependencies:
3210 | punycode "^1.4.1"
3211 |
3212 | tr46@~0.0.3:
3213 | version "0.0.3"
3214 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a"
3215 |
3216 | trim-newlines@^2.0.0:
3217 | version "2.0.0"
3218 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-2.0.0.tgz#b403d0b91be50c331dfc4b82eeceb22c3de16d20"
3219 | integrity sha1-tAPQuRvlDDMd/EuC7s6yLD3hbSA=
3220 |
3221 | trim-off-newlines@^1.0.0:
3222 | version "1.0.1"
3223 | resolved "https://registry.yarnpkg.com/trim-off-newlines/-/trim-off-newlines-1.0.1.tgz#9f9ba9d9efa8764c387698bcbfeb2c848f11adb3"
3224 |
3225 | trim-right@^1.0.1:
3226 | version "1.0.1"
3227 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003"
3228 |
3229 | tunnel-agent@^0.6.0:
3230 | version "0.6.0"
3231 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
3232 | dependencies:
3233 | safe-buffer "^5.0.1"
3234 |
3235 | tweetnacl@^0.14.3, tweetnacl@~0.14.0:
3236 | version "0.14.5"
3237 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
3238 |
3239 | type-check@~0.3.2:
3240 | version "0.3.2"
3241 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
3242 | dependencies:
3243 | prelude-ls "~1.1.2"
3244 |
3245 | type-is@~1.6.15:
3246 | version "1.6.15"
3247 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.15.tgz#cab10fb4909e441c82842eafe1ad646c81804410"
3248 | dependencies:
3249 | media-typer "0.3.0"
3250 | mime-types "~2.1.15"
3251 |
3252 | uglify-js@^2.6:
3253 | version "2.8.29"
3254 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd"
3255 | dependencies:
3256 | source-map "~0.5.1"
3257 | yargs "~3.10.0"
3258 | optionalDependencies:
3259 | uglify-to-browserify "~1.0.0"
3260 |
3261 | uglify-to-browserify@~1.0.0:
3262 | version "1.0.2"
3263 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7"
3264 |
3265 | uid-number@^0.0.6:
3266 | version "0.0.6"
3267 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81"
3268 |
3269 | unpipe@1.0.0, unpipe@~1.0.0:
3270 | version "1.0.0"
3271 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
3272 |
3273 | util-deprecate@^1.0.1, util-deprecate@~1.0.1:
3274 | version "1.0.2"
3275 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
3276 |
3277 | utils-merge@1.0.1:
3278 | version "1.0.1"
3279 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713"
3280 |
3281 | uuid@3.0.0:
3282 | version "3.0.0"
3283 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.0.tgz#6728fc0459c450d796a99c31837569bdf672d728"
3284 |
3285 | uuid@^3.0.0, uuid@^3.1.0:
3286 | version "3.1.0"
3287 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04"
3288 |
3289 | validate-npm-package-license@^3.0.1:
3290 | version "3.0.1"
3291 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc"
3292 | dependencies:
3293 | spdx-correct "~1.0.0"
3294 | spdx-expression-parse "~1.0.0"
3295 |
3296 | vary@~1.1.2:
3297 | version "1.1.2"
3298 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc"
3299 |
3300 | verror@1.10.0:
3301 | version "1.10.0"
3302 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400"
3303 | dependencies:
3304 | assert-plus "^1.0.0"
3305 | core-util-is "1.0.2"
3306 | extsprintf "^1.2.0"
3307 |
3308 | walker@~1.0.5:
3309 | version "1.0.7"
3310 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb"
3311 | dependencies:
3312 | makeerror "1.0.x"
3313 |
3314 | watch@~0.18.0:
3315 | version "0.18.0"
3316 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.18.0.tgz#28095476c6df7c90c963138990c0a5423eb4b986"
3317 | dependencies:
3318 | exec-sh "^0.2.0"
3319 | minimist "^1.2.0"
3320 |
3321 | webidl-conversions@^3.0.0:
3322 | version "3.0.1"
3323 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871"
3324 |
3325 | webidl-conversions@^4.0.0:
3326 | version "4.0.2"
3327 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad"
3328 |
3329 | whatwg-encoding@^1.0.1:
3330 | version "1.0.2"
3331 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.2.tgz#bd68ad169c3cf55080562257714bf012e668a165"
3332 | dependencies:
3333 | iconv-lite "0.4.13"
3334 |
3335 | whatwg-url@^4.3.0:
3336 | version "4.8.0"
3337 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.8.0.tgz#d2981aa9148c1e00a41c5a6131166ab4683bbcc0"
3338 | dependencies:
3339 | tr46 "~0.0.3"
3340 | webidl-conversions "^3.0.0"
3341 |
3342 | which-module@^2.0.0:
3343 | version "2.0.0"
3344 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
3345 |
3346 | which@^1.2.12, which@^1.2.9:
3347 | version "1.3.0"
3348 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a"
3349 | dependencies:
3350 | isexe "^2.0.0"
3351 |
3352 | wide-align@^1.1.0:
3353 | version "1.1.2"
3354 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710"
3355 | dependencies:
3356 | string-width "^1.0.2"
3357 |
3358 | window-size@0.1.0:
3359 | version "0.1.0"
3360 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d"
3361 |
3362 | wordwrap@0.0.2:
3363 | version "0.0.2"
3364 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f"
3365 |
3366 | wordwrap@~0.0.2:
3367 | version "0.0.3"
3368 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107"
3369 |
3370 | wordwrap@~1.0.0:
3371 | version "1.0.0"
3372 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
3373 |
3374 | worker-farm@^1.3.1:
3375 | version "1.5.0"
3376 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.5.0.tgz#adfdf0cd40581465ed0a1f648f9735722afd5c8d"
3377 | dependencies:
3378 | errno "^0.1.4"
3379 | xtend "^4.0.1"
3380 |
3381 | wrap-ansi@^2.0.0:
3382 | version "2.1.0"
3383 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85"
3384 | dependencies:
3385 | string-width "^1.0.1"
3386 | strip-ansi "^3.0.1"
3387 |
3388 | wrappy@1:
3389 | version "1.0.2"
3390 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
3391 |
3392 | write-file-atomic@^2.1.0:
3393 | version "2.3.0"
3394 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab"
3395 | dependencies:
3396 | graceful-fs "^4.1.11"
3397 | imurmurhash "^0.1.4"
3398 | signal-exit "^3.0.2"
3399 |
3400 | xml-name-validator@^2.0.1:
3401 | version "2.0.1"
3402 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635"
3403 |
3404 | xtend@^4.0.1, xtend@~4.0.1:
3405 | version "4.0.1"
3406 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af"
3407 |
3408 | y18n@^3.2.1:
3409 | version "3.2.1"
3410 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41"
3411 |
3412 | yallist@^2.1.2:
3413 | version "2.1.2"
3414 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
3415 |
3416 | yargs-parser@^10.0.0:
3417 | version "10.1.0"
3418 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-10.1.0.tgz#7202265b89f7e9e9f2e5765e0fe735a905edbaa8"
3419 | integrity sha512-VCIyR1wJoEBZUqk5PA+oOBF6ypbwh5aNB3I50guxAL/quggdfs4TtNHQrSazFA3fYZ+tEqfs0zIGlv0c/rgjbQ==
3420 | dependencies:
3421 | camelcase "^4.1.0"
3422 |
3423 | yargs-parser@^7.0.0:
3424 | version "7.0.0"
3425 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9"
3426 | dependencies:
3427 | camelcase "^4.1.0"
3428 |
3429 | yargs@^9.0.0:
3430 | version "9.0.1"
3431 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-9.0.1.tgz#52acc23feecac34042078ee78c0c007f5085db4c"
3432 | dependencies:
3433 | camelcase "^4.1.0"
3434 | cliui "^3.2.0"
3435 | decamelize "^1.1.1"
3436 | get-caller-file "^1.0.1"
3437 | os-locale "^2.0.0"
3438 | read-pkg-up "^2.0.0"
3439 | require-directory "^2.1.1"
3440 | require-main-filename "^1.0.1"
3441 | set-blocking "^2.0.0"
3442 | string-width "^2.0.0"
3443 | which-module "^2.0.0"
3444 | y18n "^3.2.1"
3445 | yargs-parser "^7.0.0"
3446 |
3447 | yargs@~3.10.0:
3448 | version "3.10.0"
3449 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1"
3450 | dependencies:
3451 | camelcase "^1.0.2"
3452 | cliui "^2.1.0"
3453 | decamelize "^1.0.0"
3454 | window-size "0.1.0"
3455 |
--------------------------------------------------------------------------------