├── .circleci
└── config.yml
├── .github
├── ISSUE_TEMPLATE.md
└── PULL_REQUEST_TEMPLATE.md
├── .gitignore
├── CHANGELOG.md
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── LICENSE
├── README.md
├── package.json
├── src
├── index.spec.ts
├── index.ts
├── models
│ ├── context.ts
│ ├── error-type.ts
│ ├── http-method.ts
│ ├── http-request.ts
│ ├── http-response.ts
│ └── http-status-code.ts
├── tsconfig.es2015.json
└── tsconfig.es5.json
├── tools
└── build
│ ├── copy-resources.ts
│ ├── helpers.ts
│ └── rollup.ts
├── tsconfig.json
├── tslint.json
└── yarn.lock
/.circleci/config.yml:
--------------------------------------------------------------------------------
1 | version: 2
2 | jobs:
3 | build:
4 | docker:
5 | - image: circleci/node:8
6 | steps:
7 | - checkout
8 | - run: sudo npm install -g yarn@0
9 | - run: sudo yarn global add greenkeeper-lockfile@1
10 | - restore_cache:
11 | keys:
12 | - deps-{{ .Branch }}-{{ checksum "yarn.lock" }}
13 | - deps-
14 | - run: yarn
15 | - save_cache:
16 | key: deps-{{ .Branch }}-{{ checksum "yarn.lock" }}
17 | paths: 'node_modules'
18 | - run: yarn ci:before
19 | - run: yarn test:ci
20 | - run: yarn build
21 | - run: yarn ci:after
22 | - run: bash <(curl -s https://codecov.io/bash)
23 | - store_artifacts:
24 | path: coverage
25 | prefix: coverage
26 | - store_artifacts:
27 | path: dist
28 | prefix: dist
29 | - store_test_results:
30 | path: test-report.xml
31 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE.md:
--------------------------------------------------------------------------------
1 |
6 |
7 | **I'm submitting a ...** (check one with "x")
8 | ```
9 | [ ] Regression (a behavior that used to work and stopped working in a new release)
10 | [ ] Bug report
11 | [ ] Support request =>
12 | [ ] Feature request
13 | [ ] Documentation issue or request
14 | ```
15 |
16 | **Current behavior**
17 |
18 |
19 | **Expected/desired behavior**
20 |
21 |
22 | **Minimal reproduction of the problem with instructions**
23 |
27 |
28 | **What is the motivation / use case for changing the behavior?**
29 |
30 |
31 | **Environment**
32 | * **For Tooling issues:**
33 | - Node version: XX
34 | - Platform:
35 |
36 | * Others:
37 |
38 |
--------------------------------------------------------------------------------
/.github/PULL_REQUEST_TEMPLATE.md:
--------------------------------------------------------------------------------
1 | ** PR Checklist
2 | Please check if your PR fulfills the following requirements:
3 |
4 | - [ ] The commit message follows our guidelines: https://github.com/azure-seed/azure-functions-ts-essentials/blob/master/CONTRIBUTING.md#commit
5 | - [ ] Tests for the changes have been added (for bug fixes / features)
6 | - [ ] Docs have been added / updated (for bug fixes / features)
7 |
8 | ** PR Type
9 | What kind of change does this PR introduce?
10 |
11 |
12 | ```
13 | [ ] Bugfix
14 | [ ] Feature
15 | [ ] Code style update (formatting, local variables)
16 | [ ] Refactoring (no functional changes, no api changes)
17 | [ ] Build related changes
18 | [ ] CI related changes
19 | [ ] Documentation content changes
20 | [ ] Other... Please describe:
21 | ```
22 |
23 | ** What is the current behavior?
24 |
25 |
26 | Issue Number: N/A
27 |
28 | ** What is the new behavior?
29 |
30 | ** Does this PR introduce a breaking change?
31 | ```
32 | [ ] Yes
33 | [ ] No
34 | ```
35 |
36 |
37 |
38 | ** Other information
39 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # See http://help.github.com/ignore-files/ for more about ignoring files.
2 |
3 | # compiled output
4 | dist/
5 |
6 | # dependencies
7 | node_modules/
8 |
9 | # IDEs and editors
10 | .idea/
11 |
12 | # build tools
13 | coverage/
14 | test-report.xml
15 |
16 | # misc
17 | npm-debug.log
18 | yarn-error.log
19 |
--------------------------------------------------------------------------------
/CHANGELOG.md:
--------------------------------------------------------------------------------
1 | # Change Log
2 |
3 | All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4 |
5 |
6 | ## [1.3.2](https://github.com/azure-seed/azure-functions-ts-essentials/compare/v1.3.1...v1.3.2) (2018-05-15)
7 |
8 |
9 | * **build:** update deps
10 |
11 |
12 |
13 |
14 | ## [1.3.1](https://github.com/azure-seed/azure-functions-ts-essentials/compare/v1.3.0...v1.3.1) (2017-11-27)
15 |
16 | * **afte:** upgrade to TypeScript v2.6.2
17 |
18 |
19 |
20 |
21 | # [1.3.0](https://github.com/azure-seed/azure-functions-ts-essentials/compare/v1.2.0...v1.3.0) (2017-10-17)
22 |
23 |
24 | ### Features
25 |
26 | * **afte:** add error type ([#19](https://github.com/azure-seed/azure-functions-ts-essentials/issues/19)) ([9d9783d](https://github.com/azure-seed/azure-functions-ts-essentials/commit/9d9783d))
27 |
28 |
29 |
30 |
31 | # [1.2.0](https://github.com/azure-seed/azure-functions-ts-essentials/compare/v1.1.1...v1.2.0) (2017-10-09)
32 |
33 |
34 | ### Features
35 |
36 | * **afte:** add context object members ([#12](https://github.com/azure-seed/azure-functions-ts-essentials/issues/12)) ([5d72f0c](https://github.com/azure-seed/azure-functions-ts-essentials/commit/5d72f0c))
37 | * **afte:** add HTTP 422 unprocessable entity ([#15](https://github.com/azure-seed/azure-functions-ts-essentials/issues/15)) ([e2b99b8](https://github.com/azure-seed/azure-functions-ts-essentials/commit/e2b99b8))
38 | * **afte:** add http request object members ([#13](https://github.com/azure-seed/azure-functions-ts-essentials/issues/13)) ([79acf09](https://github.com/azure-seed/azure-functions-ts-essentials/commit/79acf09))
39 | * **afte:** add http response object members ([#14](https://github.com/azure-seed/azure-functions-ts-essentials/issues/14)) ([6b39149](https://github.com/azure-seed/azure-functions-ts-essentials/commit/6b39149))
40 |
41 |
42 |
43 |
44 | ## [1.1.1](https://github.com/fulls1z3/azure-functions-ts-essentials/compare/v1.1.0...v1.1.1) (2017-09-30)
45 |
46 |
47 | * **afte:** add jsdocs ([#6](https://github.com/fulls1z3/azure-functions-ts-essentials/issues/6)) ([71c4493](https://github.com/fulls1z3/azure-functions-ts-essentials/commit/71c4493))
48 |
49 |
50 | # [1.1.0](https://github.com/fulls1z3/azure-functions-ts-essentials/compare/v1.0.0...v1.1.0) (2017-09-29)
51 |
52 |
53 | ### Features
54 |
55 | * **afte:** add http methods and status codes ([#4](https://github.com/fulls1z3/azure-functions-ts-essentials/issues/4)) ([b33305e](https://github.com/fulls1z3/azure-functions-ts-essentials/commit/b33305e))
56 |
57 |
58 |
59 |
60 | # 1.0.0 (2017-09-26)
61 |
--------------------------------------------------------------------------------
/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 contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
6 |
7 | ## Our Standards
8 |
9 | Examples of behavior that contributes to creating a positive environment include:
10 |
11 | * Using welcoming and inclusive language
12 | * Being respectful of differing viewpoints and experiences
13 | * Gracefully accepting constructive criticism
14 | * Focusing on what is best for the community
15 | * Showing empathy towards other community members
16 |
17 | Examples of unacceptable behavior by participants include:
18 |
19 | * The use of sexualized language or imagery and unwelcome sexual attention or advances
20 | * Trolling, insulting/derogatory comments, and personal or political attacks
21 | * Public or private harassment
22 | * Publishing others' private information, such as a physical or electronic address, without explicit permission
23 | * Other conduct which could reasonably be considered inappropriate in a professional setting
24 |
25 | ## Our Responsibilities
26 |
27 | Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.
28 |
29 | Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
30 |
31 | ## Scope
32 |
33 | This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.
34 |
35 | ## Enforcement
36 |
37 | Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at **mail@buraktasci.com**. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
38 |
39 | Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
40 |
41 | ## Attribution
42 |
43 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]
44 |
45 | [homepage]: http://contributor-covenant.org
46 | [version]: http://contributor-covenant.org/version/1/4/
47 |
--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 | # Contributing to **`azure-seed/azure-functions-ts-essentials`**
2 |
3 | As a contributor, here are the guidelines we would like you to follow:
4 |
5 | - [Code of Conduct](#coc)
6 | - [Issues and Bugs](#issue)
7 | - [Feature requests](#feature)
8 | - [Submission guidelines](#submit)
9 | - [Coding rules](#rules)
10 | - [Commit message guidelines](#commit)
11 |
12 | ## Code of Conduct
13 | Help us keep **`azure-seed/azure-functions-ts-essentials`** open and inclusive. Please read and follow our [Code of Conduct][coc].
14 |
15 | ## Found a Bug?
16 | If you find a bug in the source code, you can help us by [submitting an issue](#submit-issue) to our [GitHub Repository][github].
17 |
18 | Even better, you can [submit a Pull Request](#submit-pr) with a fix.
19 |
20 | ## Missing a Feature?
21 | You can *request* a new feature by [submitting an issue](#submit-issue) to our GitHub Repository.
22 |
23 | If you would like to *implement* a new feature, please submit an issue with a proposal for your work first, to be sure that
24 | we can use it.
25 |
26 | Please consider what kind of change it is:
27 | * For a **Major Feature**, first open an issue and outline your proposal so that it can be discussed.
28 | This will also allow us to better coordinate our efforts, prevent duplication of work, and help you to craft the change
29 | so that it is successfully accepted into the project.
30 | * **Small Features** can be crafted and directly [submitted as a Pull Request](#submit-pr).
31 |
32 | ## Submission guidelines
33 | ### Submitting an Issue
34 | Before you submit an issue, please search the issue tracker, maybe an issue for your problem already exists and the discussion
35 | might inform you of workarounds readily available.
36 |
37 | We want to fix all the issues as soon as possible, but before fixing a bug we need to reproduce and confirm it. However,
38 | in order to reproduce bugs we need to ask you to provide a minimal reproduction scenario.
39 |
40 | Having a live, reproducible scenario gives us wealth of important information without going back & forth to you with additional
41 | questions like:
42 | - version used
43 | - 3rd-party libraries and their versions
44 | - and most importantly: a use-case that fails
45 |
46 | Unfortunately we are not able to investigate / fix bugs without a minimal reproduction, so if we don't hear back from you,
47 | we are going to close an issue that don't have enough info to be reproduced.
48 |
49 | You can file new issues by filling out our [new issue form](https://github.com/azure-seed/azure-functions-ts-essentials/issues/new).
50 |
51 | ### Submitting a Pull Request (PR)
52 | Before you submit your Pull Request (PR) consider the following guidelines:
53 |
54 | * Search [GitHub](https://github.com/azure-seed/azure-functions-ts-essentials/pulls) for an open or closed PR that relates to your submission.
55 | You don't want to duplicate effort.
56 | * Make your changes in a new git branch:
57 | ```shell
58 | git checkout -b my-fix-branch master
59 | ```
60 | * Create your patch, **including appropriate test cases**.
61 | * Follow our [Coding rules](#rules).
62 | * Run the full test suite and ensure that all tests pass.
63 | * Commit your changes using a descriptive commit message that follows our [commit message conventions](#commit).
64 | Adherence to these conventions is necessary because release notes are automatically generated from these messages.
65 | ```shell
66 | git commit -a
67 | ```
68 | Note: the optional commit `-a` command line option will automatically "add" and "rm" edited files.
69 | * Push your branch to GitHub:
70 | ```shell
71 | git push origin my-fix-branch
72 | ```
73 | * In GitHub, send a pull request to `azure-functions-ts-essentials:master`.
74 | * If we suggest changes then:
75 | * Make the required updates.
76 | * Re-run the test suites to ensure tests are still passing.
77 | * Rebase your branch and force push to your GitHub repository (this will update your Pull Request):
78 | ```shell
79 | git rebase master -i
80 | git push -f
81 | ```
82 | That's it, thanks for your contribution!
83 |
84 | #### After your pull request is merged
85 | After your pull request is merged, you can safely delete your branch and pull the changes from the main (upstream) repository:
86 | * Delete the remote branch on GitHub either through the GitHub web UI or your local shell as follows:
87 | ```shell
88 | git push origin --delete my-fix-branch
89 | ```
90 | * Check out the master branch:
91 | ```shell
92 | git checkout master -f
93 | ```
94 | * Delete the local branch:
95 | ```shell
96 | git branch -D my-fix-branch
97 | ```
98 | * Update your master with the latest upstream version:
99 | ```shell
100 | git pull --ff upstream master
101 | ```
102 |
103 | ## Coding rules
104 | To ensure consistency throughout the source code, keep these rules in mind as you are working:
105 | * All features or bug fixes **must be tested** by one or more specs (unit-tests).
106 | * All public API methods **must be documented**. (Details TBC).
107 | * We follow [fulls1z3's Backend TSLint rules][backend-tslint-rules].
108 |
109 | ## Commit message guidelines
110 | We have very precise rules over how our git commit messages can be formatted. This leads to **more readable messages** that
111 | are easy to follow when looking through the **project history**. But also, we use the git commit messages to **generate
112 | the **`azure-seed/azure-functions-ts-essentials`** change log**.
113 |
114 | ### Commit Message Format
115 | Each commit message consists of a **header**, a **body** and a **footer**. The header has a special format that includes
116 | a **type**, a **scope** (*when applicable*) and a **subject**:
117 | ```
118 | ():
119 |
120 |
121 |
122 |
123 | ```
124 |
125 | The **header** is mandatory and the **scope** of the header is optional.
126 |
127 | Any line of the commit message cannot be longer 100 characters. This allows the message to be easier to read on GitHub as
128 | well as in various git tools.
129 |
130 | Footer should contain a [closing reference to an issue](https://help.github.com/articles/closing-issues-via-commit-messages/)
131 | if any.
132 |
133 | Samples: (even more [samples](https://github.com/azure-seed/azure-functions-ts-essentials/commits/master))
134 | ```
135 | docs(changelog): update change log to alpha.4
136 | ```
137 | ```
138 | fix(release): need to depend on latest rxjs and zone.js
139 |
140 | The version in our package.json gets copied to the one we publish, and users need the latest of these.
141 | ```
142 |
143 | ### Revert
144 | If the commit reverts a previous commit, it should begin with `revert: `, followed by the header of the reverted commit.
145 | In the body it should say: `This reverts commit .`, where the hash is the SHA of the commit being reverted.
146 |
147 | ### Type
148 | Must be one of the following:
149 | * **build**: Changes that affect the build system or external dependencies (example scopes: gulp, npm, webpack)
150 | * **ci**: Changes to our CI configuration files and scripts (example scopes: Travis, Circle, etc)
151 | * **docs**: Documentation only changes
152 | * **feat**: A new feature
153 | * **fix**: A bug fix
154 | * **perf**: A code change that improves performance
155 | * **refactor**: A code change that neither fixes a bug nor adds a feature
156 | * **style**: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)
157 | * **test**: Adding missing tests or correcting existing tests
158 |
159 | ### Scope
160 | The scope should be the name of the project affected.
161 |
162 | The following is the list of supported scopes:
163 | * **afte** (*azure-functions-ts-essentials*)
164 |
165 | There are currently a few exceptions to the "use project name" rule:
166 |
167 | * **packaging**: used for changes that change the package layout (*e.g. package.json, bundles, path changes, etc.*)
168 | * **changelog**: used for updating the release notes in CHANGELOG.md
169 |
170 | ### Subject
171 | The subject contains succinct description of the change:
172 | * use the imperative, present tense: "change" not "changed" nor "changes"
173 | * don't capitalize first letter
174 | * no dot (.) at the end
175 |
176 | ### Body
177 | Just as in the **subject**, use the imperative, present tense: "change" not "changed" nor "changes". The body should include
178 | the motivation for the change and contrast this with previous behavior.
179 |
180 | ### Footer
181 | The footer should contain any information about **Breaking Changes** and is also the place to reference GitHub issues that
182 | this commit **Closes**.
183 |
184 | **Breaking Changes** should start with the word `BREAKING CHANGE:` with a space or two newlines. The rest of the commit
185 | message is then used for this.
186 |
187 | [coc]: https://github.com/azure-seed/azure-functions-ts-essentials/blob/master/CODE_OF_CONDUCT.md
188 | [github]: https://github.com/azure-seed/azure-functions-ts-essentials
189 | [backend-tslint-rules]: https://github.com/fulls1z3/backend-tslint-rules
190 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2018 Burak Tasci
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # azure-seed/azure-functions-ts-essentials [](https://www.npmjs.com/package/azure-functions-ts-essentials) [](https://www.npmjs.com/package/azure-functions-ts-essentials)
2 | Essential interfaces and tools for backend development on [Azure Functions] with [TypeScript]
3 |
4 | [](https://circleci.com/gh/azure-seed/azure-functions-ts-essentials)
5 | [](https://codecov.io/gh/azure-seed/azure-functions-ts-essentials)
6 | [](https://github.com/facebook/jest)
7 | [](https://conventionalcommits.org)
8 | [](https://greenkeeper.io/)
9 |
10 | > Please support this project by simply putting a Github star. Share this library with friends on Twitter and everywhere else you can.
11 |
12 | **NOTE**: This project is in experimental stage now, functionality is subject to slightly change.
13 |
14 | ## Prerequisites
15 | Please ensure that you are using **`Typescript v2.6.2`** or higher.
16 |
17 | ## Getting started
18 | ### Installation
19 | You can install **`azure-functions-ts-essentials`** using `npm`
20 |
21 | ```
22 | npm install azure-functions-ts-essentials --save
23 | ```
24 |
25 | ## Contributing
26 | If you want to file a bug, contribute some code, or improve documentation, please read up on the following contribution guidelines:
27 | - [Issue guidelines](CONTRIBUTING.md#submit)
28 | - [Contributing guidelines](CONTRIBUTING.md)
29 | - [Coding rules](CONTRIBUTING.md#rules)
30 | - [Change log](CHANGELOG.md)
31 |
32 | #### Thanks to
33 | - [JetBrains], for their support to this open source project with free [WebStorm] licenses.
34 |
35 | ## License
36 | The MIT License (MIT)
37 |
38 | Copyright (c) 2018 [Burak Tasci]
39 |
40 | [Azure Functions]: https://azure.microsoft.com/en-us/services/functions
41 | [TypeScript]: https://github.com/Microsoft/TypeScript
42 | [JetBrains]: https://www.jetbrains.com/community/opensource
43 | [WebStorm]: https://www.jetbrains.com/webstorm
44 | [Burak Tasci]: https://github.com/fulls1z3
45 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "azure-functions-ts-essentials",
3 | "version": "1.3.2",
4 | "description": "Essential interfaces and tools for backend development on Azure Functions with TypeScript",
5 | "repository": {
6 | "type": "git",
7 | "url": "https://github.com/azure-seed/azure-functions-ts-essentials.git"
8 | },
9 | "keywords": [
10 | "azure-functions",
11 | "azure"
12 | ],
13 | "author": {
14 | "name": "Burak Tasci",
15 | "email": "me@fulls1z3.com"
16 | },
17 | "license": "MIT",
18 | "bugs": {
19 | "url": "https://github.com/azure-seed/azure-functions-ts-essentials/issues"
20 | },
21 | "homepage": "https://github.com/azure-seed/azure-functions-ts-essentials#readme",
22 | "scripts": {
23 | "clean": "rimraf .cache dist",
24 | "build": "ts-node ./tools/build/rollup.ts && rimraf .temp",
25 | "ci:before": "greenkeeper-lockfile-update",
26 | "ci:after": "greenkeeper-lockfile-upload",
27 | "lint": "tslint -p ./tsconfig.json --force",
28 | "test": "jest --coverage --colors",
29 | "test:ci": "jest --ci --coverage --colors",
30 | "release": "standard-version"
31 | },
32 | "main": "./bundles/azure-functions-ts-essentials.umd.js",
33 | "module": "./azure-functions-ts-essentials.es5.js",
34 | "es2015": "./azure-functions-ts-essentials.js",
35 | "typings": "./index.d.ts",
36 | "devDependencies": {
37 | "@types/jest": "~22.2.3",
38 | "@types/node": "~10.0.9",
39 | "rimraf": "~2.6.2",
40 | "ts-node": "~6.0.3",
41 | "glob": "~7.1.2",
42 | "camelcase": "~5.0.0",
43 | "rollup": "~0.42.0",
44 | "rollup-plugin-node-resolve": "~3.3.0",
45 | "rollup-plugin-commonjs": "~8.3.0",
46 | "rollup-plugin-sourcemaps": "~0.4.2",
47 | "rollup-plugin-uglify": "~3.0.0",
48 | "jest": "~22.4.3",
49 | "jest-junit-reporter": "~1.1.0",
50 | "ts-jest": "~22.4.6",
51 | "standard-version": "~4.3.0",
52 | "tslint": "~5.10.0",
53 | "backend-tslint-rules": "1.3.0",
54 | "typescript": "~2.8.3"
55 | },
56 | "jest": {
57 | "transform": {
58 | "^.+\\.(ts|tsx)$": "/node_modules/ts-jest/preprocessor.js"
59 | },
60 | "testMatch": [
61 | "**/*.spec.ts"
62 | ],
63 | "moduleFileExtensions": [
64 | "ts",
65 | "js"
66 | ],
67 | "testResultsProcessor": "./node_modules/jest-junit-reporter",
68 | "cache": false,
69 | "silent": true
70 | },
71 | "greenkeeper": {
72 | "ignore": [
73 | "rollup",
74 | "rollup-plugin-commonjs"
75 | ]
76 | }
77 | }
78 |
--------------------------------------------------------------------------------
/src/index.spec.ts:
--------------------------------------------------------------------------------
1 | import { Context } from './models/context';
2 | import { HttpMethod } from './models/http-method';
3 | import { HttpRequest } from './models/http-request';
4 | import { HttpResponse } from './models/http-response';
5 | import { HttpStatusCode } from './models/http-status-code';
6 |
7 | function mock(context: Context, req: HttpRequest): any {
8 | let res: HttpResponse;
9 |
10 | if ((req.query && req.query.name) || (req.body && req.body.name))
11 | res = {
12 | status: HttpStatusCode.OK,
13 | body: `Hello ${(req.query && req.query.name) || req.body.name}`
14 | };
15 | else
16 | res = {
17 | status: HttpStatusCode.BadRequest,
18 | body: 'Please pass a name on the query string or in the request body.'
19 | };
20 |
21 | context.done(undefined, res);
22 | }
23 |
24 | const testData: { name: string } = {
25 | name: 'Azure'
26 | };
27 |
28 | describe('azure-functions-ts-essentials', () => {
29 | describe('mock', () => {
30 | it('should be able to return success code w/request body', () => {
31 | const mockContext: Context = {
32 | done: (err, response) => {
33 | expect(err).toBeUndefined();
34 |
35 | expect((response as HttpResponse).status).toEqual(HttpStatusCode.OK);
36 | expect((response as HttpResponse).body).toEqual(`Hello ${testData.name}`);
37 | }
38 | };
39 |
40 | const mockRequest: HttpRequest = {
41 | method: HttpMethod.Post,
42 | params: {},
43 | query: {},
44 | body: testData
45 | };
46 |
47 | mock(mockContext, mockRequest);
48 | });
49 |
50 | it('should be able to return success code w/request query', () => {
51 | const mockContext: Context = {
52 | done: (err, response) => {
53 | expect(err).toBeUndefined();
54 |
55 | expect((response as HttpResponse).status).toEqual(HttpStatusCode.OK);
56 | expect((response as HttpResponse).body).toEqual(`Hello ${testData.name}`);
57 | }
58 | };
59 |
60 | const mockRequest: HttpRequest = {
61 | method: HttpMethod.Get,
62 | params: {},
63 | query: testData,
64 | body: {}
65 | };
66 |
67 | mock(mockContext, mockRequest);
68 | });
69 |
70 | it('should not return success code w/o any input', () => {
71 | const mockContext: Context = {
72 | done: (err, response) => {
73 | expect(err).toBeUndefined();
74 |
75 | expect((response as HttpResponse).status).toEqual(HttpStatusCode.BadRequest);
76 | expect((response as HttpResponse).body).toEqual('Please pass a name on the query string or in the request body.');
77 | }
78 | };
79 |
80 | const mockRequest: HttpRequest = {
81 | method: HttpMethod.Get,
82 | params: {},
83 | query: {},
84 | body: {}
85 | };
86 |
87 | mock(mockContext, mockRequest);
88 | });
89 | });
90 | });
91 |
--------------------------------------------------------------------------------
/src/index.ts:
--------------------------------------------------------------------------------
1 | export { Context } from './models/context';
2 | export { ErrorType } from './models/error-type';
3 | export { HttpMethod } from './models/http-method';
4 | export { HttpRequest } from './models/http-request';
5 | export { HttpResponse } from './models/http-response';
6 | export { HttpStatusCode } from './models/http-status-code';
7 |
--------------------------------------------------------------------------------
/src/models/context.ts:
--------------------------------------------------------------------------------
1 | import { HttpRequest } from './http-request';
2 | import { HttpResponse } from './http-response';
3 |
4 | /**
5 | * Represents an HTTP context.
6 | */
7 | export interface Context {
8 | invocationId?: string;
9 | executionContext?: any;
10 | bindings?: any;
11 | req?: HttpRequest;
12 | bindingData?: any;
13 | res?: HttpResponse;
14 |
15 | /**
16 | * Allows writing to the streaming console logs.
17 | */
18 | log?: {
19 | (...message: Array): void,
20 | error(...message: Array): void,
21 | warn(...message: Array): void,
22 | info(...message: Array): void,
23 | verbose(...message: Array): void,
24 | metric(...message: Array): void
25 | };
26 |
27 | /**
28 | * Creates a new bound function.
29 | */
30 | bind?(...args: Array): void;
31 |
32 | /**
33 | * Informs the runtime that the function execution has finished.
34 | */
35 | done(err?: Error | undefined, propertyBag?: { [key: string]: any }): void;
36 | }
37 |
--------------------------------------------------------------------------------
/src/models/error-type.ts:
--------------------------------------------------------------------------------
1 | /**
2 | * Contains the values of error types due to a failure of an API request.
3 | */
4 | export enum ErrorType {
5 | /**
6 | * Represents that the resource does not exist.
7 | */
8 | Missing = 'missing',
9 | /**
10 | * Represents that a required field on a resource has not been set.
11 | */
12 | MissingField = 'missing_field',
13 | /**
14 | * Represents that the formatting of a field is invalid.
15 | */
16 | Invalid = 'invalid',
17 | /**
18 | * Represents that another resource has the same value as this field.
19 | */
20 | AlreadyExists = 'already_exists'
21 | }
22 |
--------------------------------------------------------------------------------
/src/models/http-method.ts:
--------------------------------------------------------------------------------
1 | /**
2 | * Contains the values of the essential HTTP methods.
3 | */
4 | export enum HttpMethod {
5 | /**
6 | * Represents an HTTP GET protocol method.
7 | */
8 | Get = 'GET',
9 | /**
10 | * Represents an HTTP POST protocol method that is used to post a new entity as an addition to a URI.
11 | */
12 | Post = 'POST',
13 | /**
14 | * Represents an HTTP DELETE protocol method.
15 | */
16 | Delete = 'DELETE',
17 | /**
18 | * Represents an HTTP HEAD protocol method.
19 | */
20 | Head = 'HEAD',
21 | /**
22 | * Represents an HTTP PATCH protocol method that is used to replace partially an entity identified by a URI.
23 | */
24 | Patch = 'PATCH',
25 | /**
26 | * Represents an HTTP PUT protocol method that is used to replace an entity identified by a URI.
27 | */
28 | Put = 'PUT',
29 | /**
30 | * Represents an HTTP OPTIONS protocol method.
31 | */
32 | Options = 'OPTIONS',
33 | /**
34 | * Represents an HTTP TRACE protocol method.
35 | */
36 | Trace = 'TRACE'
37 | }
38 |
--------------------------------------------------------------------------------
/src/models/http-request.ts:
--------------------------------------------------------------------------------
1 | import { HttpMethod } from './http-method';
2 |
3 | /**
4 | * Represents an HTTP request.
5 | */
6 | export interface HttpRequest {
7 | originalUrl?: string;
8 | method: HttpMethod;
9 | query?: { [key: string]: any; };
10 | headers?: { [key: string]: any; };
11 | body?: any;
12 | params?: { [key: string]: any; };
13 | rawBody?: any;
14 | }
15 |
--------------------------------------------------------------------------------
/src/models/http-response.ts:
--------------------------------------------------------------------------------
1 | import { HttpStatusCode } from './http-status-code';
2 |
3 | /**
4 | * Represents an HTTP response including the status code and data.
5 | */
6 | export interface HttpResponse {
7 | status: HttpStatusCode | number;
8 | body: any;
9 | headers?: {
10 | 'content-type'?: string;
11 | 'content-length'?: HttpStatusCode | number;
12 | 'content-disposition'?: string;
13 | 'content-encoding'?: string;
14 | 'content-language'?: string;
15 | 'content-range'?: string;
16 | 'content-location'?: string;
17 | 'content-md5'?: Buffer;
18 | 'expires'?: Date;
19 | 'last-modified'?: Date;
20 | [key: string]: any;
21 | };
22 | isRaw?: boolean;
23 | }
24 |
--------------------------------------------------------------------------------
/src/models/http-status-code.ts:
--------------------------------------------------------------------------------
1 | /**
2 | * Contains the values of status codes defined for HTTP.
3 | */
4 | export enum HttpStatusCode {
5 | /**
6 | * Indicates that the client can continue with its request.
7 | */
8 | Continue = 100,
9 | /**
10 | * Indicates that the protocol version or protocol is being changed.
11 | */
12 | SwitchingProtocols = 101,
13 | /**
14 | * Indicates that the request succeeded and that the requested information is in the response.
15 | */
16 | OK = 200,
17 | /**
18 | * Indicates that the request resulted in a new resource created before the response was sent.
19 | */
20 | Created = 201,
21 | /**
22 | * Indicates that the request has been accepted for further processing.
23 | */
24 | Accepted = 202,
25 | /**
26 | * Indicates that the returned meta information is from a cached copy instead of the origin server and therefore may be
27 | * incorrect.
28 | */
29 | NonAuthoritativeInformation = 203,
30 | /**
31 | * Indicates that the request has been successfully processed and that the response is intentionally blank.
32 | */
33 | NoContent = 204,
34 | /**
35 | * Indicates that the client should reset (not reload) the current resource.
36 | */
37 | ResetContent = 205,
38 | /**
39 | * Indicates that the response is a partial response as requested by a GET request that includes a byte range.
40 | */
41 | PartialContent = 206,
42 | /**
43 | * Indicates that the requested information has multiple representations.
44 | *
45 | * The default action is to treat this status as a redirect and follow the contents of the Location header associated
46 | * with this response.
47 | */
48 | MultipleChoices = 300,
49 | /**
50 | * Indicates that the requested information has multiple representations.
51 | *
52 | * The default action is to treat this status as a redirect and follow the contents of the Location header associated
53 | * with this response.
54 | */
55 | Ambiguous = 300,
56 | /**
57 | * Indicates that the requested information has been moved to the URI specified in the Location header.
58 | *
59 | * The default action when this status is received is to follow the Location header associated with the response.
60 | */
61 | MovedPermanently = 301,
62 | /**
63 | * Indicates that the requested information has been moved to the URI specified in the Location header.
64 | *
65 | * The default action when this status is received is to follow the Location header associated with the response.
66 | * When the original request method was POST, the redirected request will use the GET method.
67 | */
68 | Moved = 301,
69 | /**
70 | * Indicates that the requested information is located at the URI specified in the Location header.
71 | *
72 | * The default action when this status is received is to follow the Location header associated with the response.
73 | * When the original request method was POST, the redirected request will use the GET method.
74 | */
75 | Found = 302,
76 | /**
77 | * Indicates that the requested information is located at the URI specified in the Location header.
78 | *
79 | * The default action when this status is received is to follow the Location header associated with the response.
80 | * When the original request method was POST, the redirected request will use the GET method.
81 | */
82 | Redirect = 302,
83 | /**
84 | * Automatically redirects the client to the URI specified in the Location header as the result of a POST.
85 | *
86 | * The request to the resource specified by the Location header will be made with a GET.
87 | */
88 | SeeOther = 303,
89 | /**
90 | * Automatically redirects the client to the URI specified in the Location header as the result of a POST.
91 | *
92 | * The request to the resource specified by the Location header will be made with a GET.
93 | */
94 | RedirectMethod = 303,
95 | /**
96 | * Indicates that the client's cached copy is up to date.
97 | *
98 | * The contents of the resource are not transferred.
99 | */
100 | NotModified = 304,
101 | /**
102 | * Indicates that the request should use the proxy server at the URI specified in the Location header.
103 | */
104 | UseProxy = 305,
105 | /**
106 | * A proposed extension to the HTTP/1.1 specification that is not fully specified.
107 | */
108 | Unused = 306,
109 | /**
110 | * Indicates that the request information is located at the URI specified in the Location header.
111 | *
112 | * The default action when this status is received is to follow the Location header associated with the response.
113 | * When the original request method was POST, the redirected request will also use the POST method.
114 | */
115 | TemporaryRedirect = 307,
116 | /**
117 | * Indicates that the request information is located at the URI specified in the Location header.
118 | *
119 | * The default action when this status is received is to follow the Location header associated with the response.
120 | * When the original request method was POST, the redirected request will also use the POST method.
121 | */
122 | RedirectKeepVerb = 307,
123 | /**
124 | * Indicates that the request could not be understood by the server.
125 | *
126 | * The HTTP 400 (BadRequest) is sent when no other error is applicable, or if the exact error is unknown or does not
127 | * have its own error code.
128 | */
129 | BadRequest = 400,
130 | /**
131 | * Indicates that the requested resource requires authentication.
132 | *
133 | * The WWW-Authenticate header contains the details of how to perform the authentication.
134 | */
135 | Unauthorized = 401,
136 | /**
137 | * Reserved for future use.
138 | */
139 | PaymentRequired = 402,
140 | /**
141 | * Indicates that the server refuses to fulfill the request.
142 | */
143 | Forbidden = 403,
144 | /**
145 | * Indicates that the requested resource does not exist on the server.
146 | */
147 | NotFound = 404,
148 | /**
149 | * Indicates that the request method (POST or GET) is not allowed on the requested resource.
150 | */
151 | MethodNotAllowed = 405,
152 | /**
153 | * Indicates that the client has indicated with Accept headers that it will not accept any of the available
154 | * representations of the resource.
155 | */
156 | NotAcceptable = 406,
157 | /**
158 | * Indicates that the requested proxy requires authentication.
159 | *
160 | * The Proxy-authenticate header contains the details of how to perform the authentication.
161 | */
162 | ProxyAuthenticationRequired = 407,
163 | /**
164 | * Indicates that the client did not send a request within the time the server was expecting the request.
165 | */
166 | RequestTimeout = 408,
167 | /**
168 | * Indicates that the request could not be carried out because of a conflict on the server.
169 | */
170 | Conflict = 409,
171 | /**
172 | * Indicates that the requested resource is no longer available.
173 | */
174 | Gone = 410,
175 | /**
176 | * Indicates that the required Content-length header is missing.
177 | */
178 | LengthRequired = 411,
179 | /**
180 | * Indicates that a condition set for this request failed, and the request cannot be carried out.
181 | *
182 | * Conditions are set with conditional request headers like If-Match, If-None-Match, or If-Unmodified-Since.
183 | */
184 | PreconditionFailed = 412,
185 | /**
186 | * Indicates that the request is too large for the server to process.
187 | */
188 | RequestEntityTooLarge = 413,
189 | /**
190 | * Indicates that the URI is too long.
191 | */
192 | RequestUriTooLong = 414,
193 | /**
194 | * Indicates that the request is an unsupported type.
195 | */
196 | UnsupportedMediaType = 415,
197 | /**
198 | * Indicates that the range of data requested from the resource cannot be returned, either because the beginning of
199 | * the range is before the beginning of the resource, or the end of the range is after the end of the resource.
200 | */
201 | RequestedRangeNotSatisfiable = 416,
202 | /**
203 | * Indicates that an expectation given in an Expect header could not be met by the server.
204 | */
205 | ExpectationFailed = 417,
206 | /**
207 | * Indicates that the server understands the content type of the request and the request is syntactically correct, but
208 | * was unable to process the contained instructions (semantically erroneous).
209 | */
210 | UnprocessableEntity = 422,
211 | /**
212 | * Indicates that the client should switch to a different protocol such as TLS/1.0.
213 | */
214 | UpgradeRequired = 426,
215 | /**
216 | * Indicates that a generic error has occurred on the server.
217 | */
218 | InternalServerError = 500,
219 | /**
220 | * Indicates that the server does not support the requested function.
221 | */
222 | NotImplemented = 501,
223 | /**
224 | * Indicates that an intermediate proxy server received a bad response from another proxy or the origin server.
225 | */
226 | BadGateway = 502,
227 | /**
228 | * Indicates that the server is temporarily unavailable, usually due to high load or maintenance.
229 | */
230 | ServiceUnavailable = 503,
231 | /**
232 | * Indicates that an intermediate proxy server timed out while waiting for a response from another proxy or the origin
233 | * server.
234 | */
235 | GatewayTimeout = 504,
236 | /**
237 | * Indicates that the requested HTTP version is not supported by the server.
238 | */
239 | HttpVersionNotSupported = 505
240 | }
241 |
--------------------------------------------------------------------------------
/src/tsconfig.es2015.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "../../tsconfig.json",
3 | "compilerOptions": {
4 | "target": "es2015",
5 | "module": "es2015",
6 | "noImplicitAny": true,
7 | "sourceMap": true,
8 | "declaration": true,
9 | "removeComments": true,
10 | "stripInternal": true,
11 | "outDir": "../azure-functions-ts-essentials-es2015/",
12 | "rootDir": "./",
13 | "baseUrl": "",
14 | "typeRoots": ["../../node_modules/@types"],
15 | "types": ["node"]
16 | },
17 | "files": ["./index.ts"]
18 | }
19 |
--------------------------------------------------------------------------------
/src/tsconfig.es5.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "./tsconfig.es2015.json",
3 | "compilerOptions": {
4 | "target": "es5",
5 | "outDir": "../azure-functions-ts-essentials-es5/"
6 | },
7 | "files": ["./index.ts"]
8 | }
9 |
--------------------------------------------------------------------------------
/tools/build/copy-resources.ts:
--------------------------------------------------------------------------------
1 | import { readFile, writeFile } from 'fs';
2 | import * as path from 'path';
3 | import * as glob from 'glob';
4 |
5 | function promiseify(fn: any): any {
6 | return function(): any {
7 | const args = [].slice.call(arguments, 0);
8 |
9 | return new Promise((resolve, reject) => {
10 | // tslint:disable-next-line
11 | fn.apply(this, args.concat([(err: any, value: any) => {
12 | if (err)
13 | reject(err);
14 | else
15 | resolve(value);
16 | }]));
17 | });
18 | };
19 | }
20 |
21 | const readFileAsync = promiseify(readFile);
22 | const writeFileAsync = promiseify(writeFile);
23 |
24 | export const copyResources = (projectPath: string) => {
25 | const files = glob.sync('**/*.ts', {cwd: projectPath});
26 |
27 | return Promise.all(files
28 | .map((filePath: string) => {
29 | const fullFilePath = path.join(projectPath, filePath);
30 |
31 | return readFileAsync(fullFilePath, 'utf-8')
32 | .then((content: string) => writeFileAsync(fullFilePath, content))
33 | .catch((err: string) => {
34 | console.error('An error occured: ', err);
35 | });
36 | }));
37 | };
38 |
--------------------------------------------------------------------------------
/tools/build/helpers.ts:
--------------------------------------------------------------------------------
1 | import * as path from 'path';
2 |
3 | export const NODE_MODULES = 'node_modules';
4 |
5 | export function root(args: any = ''): string {
6 | const ROOT = path.resolve(__dirname, '../..');
7 | args = [].slice.call(arguments, 0);
8 |
9 | return path.join.apply(path, [ROOT].concat(args));
10 | }
11 |
--------------------------------------------------------------------------------
/tools/build/rollup.ts:
--------------------------------------------------------------------------------
1 | import { existsSync, mkdirSync, readFileSync, writeFileSync } from 'fs';
2 | import * as path from 'path';
3 | import * as glob from 'glob';
4 | import * as ts from 'typescript';
5 | import * as camelCase from 'camelcase';
6 | import * as rollup from 'rollup';
7 | import * as commonJs from 'rollup-plugin-commonjs';
8 | import * as sourceMaps from 'rollup-plugin-sourcemaps';
9 | import * as nodeResolve from 'rollup-plugin-node-resolve';
10 | import * as uglify from 'rollup-plugin-uglify';
11 |
12 | import { NODE_MODULES, root } from './helpers';
13 | import { copyResources } from './copy-resources';
14 |
15 | const packageName = 'azure-functions-ts-essentials';
16 | const compilationFolder = root('.temp');
17 | const globals = {};
18 | let external: Array = [];
19 |
20 | const recursiveMkDir = (dir: string) => {
21 | if (!existsSync(dir)) {
22 | recursiveMkDir(path.dirname(dir));
23 | mkdirSync(dir);
24 | }
25 | };
26 |
27 | const relativeCopy = (fileGlob: string, from: string, to: string) => {
28 | return new Promise((res, reject) => {
29 | glob(fileGlob, {
30 | cwd: from,
31 | nodir: true
32 | }, (err: string, files: Array) => {
33 | if (err)
34 | reject(err);
35 |
36 | for (const file of files) {
37 | if (file.indexOf(NODE_MODULES) >= 0)
38 | continue;
39 |
40 | const origin = path.join(from, file);
41 | const destination = path.join(to, file);
42 | const data = readFileSync(origin, 'utf-8');
43 |
44 | recursiveMkDir(path.dirname(destination));
45 | writeFileSync(destination, data);
46 | }
47 |
48 | res();
49 | });
50 | });
51 | };
52 |
53 | const reportDiagnostics = diagnostics => {
54 | diagnostics.forEach(diagnostic => {
55 | let message = 'Error';
56 |
57 | if (diagnostic.file) {
58 | const where = diagnostic.file.getLineAndCharacterOfPosition(diagnostic.start);
59 | message += ` ${diagnostic.file.fileName} ${where.line}, ${where.character} ${1}`;
60 | }
61 |
62 | message += `: ${ts.flattenDiagnosticMessageText(diagnostic.messageText, '\n')}`;
63 | // tslint:disable-next-line
64 | console.log(message);
65 | });
66 | };
67 |
68 | const parseConfig = project => {
69 | const configFileText = readFileSync(project).toString();
70 |
71 | const result = ts.parseConfigFileTextToJson(project, configFileText);
72 | const configObject = result.config;
73 |
74 | if (!configObject) {
75 | reportDiagnostics([result.error]);
76 | process.exit(1);
77 | }
78 |
79 | const configParseResult = ts.parseJsonConfigFileContent(configObject, ts.sys, path.dirname(project));
80 |
81 | if (configParseResult.errors.length > 0) {
82 | reportDiagnostics(configParseResult.errors);
83 | process.exit(1);
84 | }
85 |
86 | return configParseResult;
87 | };
88 |
89 | const tsc = (project: string) => {
90 | return new Promise(resolve => {
91 | const config = parseConfig(project);
92 |
93 | const program = ts.createProgram(config.fileNames, config.options);
94 | const emitResult = program.emit();
95 |
96 | reportDiagnostics(ts.getPreEmitDiagnostics(program).concat(emitResult.diagnostics));
97 |
98 | resolve(emitResult.emitSkipped ? 1 : 0);
99 | });
100 | };
101 |
102 | const build = () => {
103 | const paths = {
104 | src: root('src'),
105 | temp: path.join(compilationFolder, packageName),
106 | es2015: path.join(compilationFolder, `${packageName}-es2015`),
107 | es5: path.join(compilationFolder, `${packageName}-es5`),
108 | dist: root('dist')
109 | };
110 |
111 | external = external.concat(Object.keys(globals));
112 |
113 | return Promise.resolve()
114 | .then(() => relativeCopy('**/*', paths.src, paths.temp)
115 | .then(() => copyResources(paths.temp))
116 | // tslint:disable-next-line
117 | .then(() => console.log(`>>> ${packageName}: Copy succeeded`))
118 | )
119 | .then(() => tsc(`${paths.temp}/tsconfig.es2015.json`)
120 | .then(exitCode => new Promise((res, reject) => {
121 | exitCode === 0
122 | ? res()
123 | : reject();
124 | }))
125 | // tslint:disable-next-line
126 | .then(() => console.log(`>>> ${packageName}: ES2015 compilation succeeded`))
127 | )
128 | .then(() => tsc(`${paths.temp}/tsconfig.es5.json`)
129 | .then(exitCode => new Promise((res, reject) => {
130 | exitCode === 0
131 | ? res()
132 | : reject();
133 | }))
134 | // tslint:disable-next-line
135 | .then(() => console.log(`>>> ${packageName}: ES5 compilation succeeded`))
136 | )
137 | .then(() => Promise.resolve()
138 | .then(() => relativeCopy('**/*.d.ts', paths.es2015, paths.dist))
139 | // tslint:disable-next-line
140 | .then(() => console.log(`>>> ${packageName}: Typings copy succeeded`))
141 | )
142 | .then(() => {
143 | const es5Entry = path.join(paths.es5, 'index.js');
144 | const es2015Entry = path.join(paths.es2015, 'index.js');
145 | const rollupBaseConfig = {
146 | moduleName: camelCase(packageName),
147 | sourceMap: true,
148 | globals,
149 | external,
150 | plugins: [
151 | nodeResolve({
152 | module: true,
153 | jsnext: true
154 | }),
155 | commonJs(),
156 | sourceMaps()
157 | ]
158 | };
159 |
160 | const umdConfig = {
161 | ...rollupBaseConfig,
162 | entry: es5Entry,
163 | dest: path.join(paths.dist, 'bundles', `${packageName}.umd.js`),
164 | format: 'umd'
165 | };
166 |
167 | const minUmdConfig = {
168 | ...rollupBaseConfig,
169 | entry: es5Entry,
170 | dest: path.join(paths.dist, 'bundles', `${packageName}.umd.min.js`),
171 | format: 'umd',
172 | plugins: rollupBaseConfig.plugins.concat([uglify({})])
173 | };
174 |
175 | const es5config = {
176 | ...rollupBaseConfig,
177 | entry: es5Entry,
178 | dest: path.join(paths.dist, `${packageName}.es5.js`),
179 | format: 'es'
180 | };
181 |
182 | const es2015config = {
183 | ...rollupBaseConfig,
184 | entry: es2015Entry,
185 | dest: path.join(paths.dist, `${packageName}.js`),
186 | format: 'es'
187 | };
188 |
189 | const bundles = [
190 | umdConfig,
191 | minUmdConfig,
192 | es5config,
193 | es2015config
194 | ]
195 | .map(options => rollup.rollup(options)
196 | .then((bundle: any) => bundle.write(options)));
197 |
198 | return Promise.all(bundles)
199 | // tslint:disable-next-line
200 | .then(() => console.log(`>>> ${packageName}: All bundles generated successfully`));
201 | })
202 | .then(() => Promise.resolve()
203 | .then(() => relativeCopy('LICENSE', root(), paths.dist))
204 | .then(() => relativeCopy('package.json', root(), paths.dist))
205 | .then(() => relativeCopy('README.md', root(), paths.dist))
206 | // tslint:disable-next-line
207 | .then(() => console.log(`>>> ${packageName}: Package files copy succeeded`))
208 | // tslint:disable-next-line
209 | .then(() => console.log(`\n`))
210 | )
211 | .catch(e => {
212 | console.error(`>>> ${packageName}: Build failed, see below for errors\n`);
213 | console.error(e);
214 | process.exit(1);
215 | });
216 | };
217 |
218 | build();
219 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "es5",
4 | "module": "commonjs",
5 | "moduleResolution": "node",
6 | "emitDecoratorMetadata": true,
7 | "experimentalDecorators": true,
8 | "suppressImplicitAnyIndexErrors": true,
9 | "strictNullChecks": true,
10 | "lib": ["es2015"]
11 | },
12 | "awesomeTypescriptLoaderOptions": {
13 | "usePrecompiledFiles": true,
14 | "useWebpackText": true
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/tslint.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": [
3 | "backend-tslint-rules"
4 | ],
5 | "rules": {
6 | "no-implicit-dependencies": [true, "dev"],
7 | "no-bitwise": false
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@babel/code-frame@^7.0.0-beta.35":
6 | version "7.0.0-beta.38"
7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0-beta.38.tgz#c0af5930617e55e050336838e3a3670983b0b2b2"
8 | dependencies:
9 | chalk "^2.0.0"
10 | esutils "^2.0.2"
11 | js-tokens "^3.0.0"
12 |
13 | "@types/jest@~22.2.3":
14 | version "22.2.3"
15 | resolved "https://registry.yarnpkg.com/@types/jest/-/jest-22.2.3.tgz#0157c0316dc3722c43a7b71de3fdf3acbccef10d"
16 |
17 | "@types/node@~10.0.9":
18 | version "10.0.9"
19 | resolved "https://registry.yarnpkg.com/@types/node/-/node-10.0.9.tgz#7cb73a6ef9cf4e41e5354e114e824bfdfd96a6b4"
20 |
21 | JSONStream@^1.0.4:
22 | version "1.3.2"
23 | resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.2.tgz#c102371b6ec3a7cf3b847ca00c20bb0fce4c6dea"
24 | dependencies:
25 | jsonparse "^1.2.0"
26 | through ">=2.2.7 <3"
27 |
28 | abab@^1.0.4:
29 | version "1.0.4"
30 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.4.tgz#5faad9c2c07f60dd76770f71cf025b62a63cfd4e"
31 |
32 | abbrev@1:
33 | version "1.1.1"
34 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
35 |
36 | acorn-globals@^4.1.0:
37 | version "4.1.0"
38 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.1.0.tgz#ab716025dbe17c54d3ef81d32ece2b2d99fe2538"
39 | dependencies:
40 | acorn "^5.0.0"
41 |
42 | acorn@^5.0.0, acorn@^5.2.1, acorn@^5.3.0:
43 | version "5.3.0"
44 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.3.0.tgz#7446d39459c54fb49a80e6ee6478149b940ec822"
45 |
46 | ajv@^4.9.1:
47 | version "4.11.8"
48 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536"
49 | dependencies:
50 | co "^4.6.0"
51 | json-stable-stringify "^1.0.1"
52 |
53 | ajv@^5.1.0:
54 | version "5.5.2"
55 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965"
56 | dependencies:
57 | co "^4.6.0"
58 | fast-deep-equal "^1.0.0"
59 | fast-json-stable-stringify "^2.0.0"
60 | json-schema-traverse "^0.3.0"
61 |
62 | align-text@^0.1.1, align-text@^0.1.3:
63 | version "0.1.4"
64 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117"
65 | dependencies:
66 | kind-of "^3.0.2"
67 | longest "^1.0.1"
68 | repeat-string "^1.5.2"
69 |
70 | amdefine@>=0.0.4:
71 | version "1.0.1"
72 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5"
73 |
74 | ansi-escapes@^3.0.0:
75 | version "3.0.0"
76 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92"
77 |
78 | ansi-regex@^2.0.0:
79 | version "2.1.1"
80 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
81 |
82 | ansi-regex@^3.0.0:
83 | version "3.0.0"
84 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
85 |
86 | ansi-styles@^2.2.1:
87 | version "2.2.1"
88 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
89 |
90 | ansi-styles@^3.1.0, ansi-styles@^3.2.0:
91 | version "3.2.0"
92 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88"
93 | dependencies:
94 | color-convert "^1.9.0"
95 |
96 | anymatch@^1.3.0:
97 | version "1.3.2"
98 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a"
99 | dependencies:
100 | micromatch "^2.1.5"
101 | normalize-path "^2.0.0"
102 |
103 | append-transform@^0.4.0:
104 | version "0.4.0"
105 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991"
106 | dependencies:
107 | default-require-extensions "^1.0.0"
108 |
109 | aproba@^1.0.3:
110 | version "1.2.0"
111 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
112 |
113 | are-we-there-yet@~1.1.2:
114 | version "1.1.4"
115 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d"
116 | dependencies:
117 | delegates "^1.0.0"
118 | readable-stream "^2.0.6"
119 |
120 | argparse@^1.0.7:
121 | version "1.0.9"
122 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86"
123 | dependencies:
124 | sprintf-js "~1.0.2"
125 |
126 | arr-diff@^2.0.0:
127 | version "2.0.0"
128 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf"
129 | dependencies:
130 | arr-flatten "^1.0.1"
131 |
132 | arr-diff@^4.0.0:
133 | version "4.0.0"
134 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520"
135 |
136 | arr-flatten@^1.0.1, arr-flatten@^1.1.0:
137 | version "1.1.0"
138 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
139 |
140 | arr-union@^3.1.0:
141 | version "3.1.0"
142 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4"
143 |
144 | array-equal@^1.0.0:
145 | version "1.0.0"
146 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93"
147 |
148 | array-filter@~0.0.0:
149 | version "0.0.1"
150 | resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec"
151 |
152 | array-find-index@^1.0.1:
153 | version "1.0.2"
154 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1"
155 |
156 | array-ify@^1.0.0:
157 | version "1.0.0"
158 | resolved "https://registry.yarnpkg.com/array-ify/-/array-ify-1.0.0.tgz#9e528762b4a9066ad163a6962a364418e9626ece"
159 |
160 | array-map@~0.0.0:
161 | version "0.0.0"
162 | resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662"
163 |
164 | array-reduce@~0.0.0:
165 | version "0.0.0"
166 | resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b"
167 |
168 | array-unique@^0.2.1:
169 | version "0.2.1"
170 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53"
171 |
172 | array-unique@^0.3.2:
173 | version "0.3.2"
174 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
175 |
176 | arrify@^1.0.0, arrify@^1.0.1:
177 | version "1.0.1"
178 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
179 |
180 | asn1@~0.2.3:
181 | version "0.2.3"
182 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
183 |
184 | assert-plus@1.0.0, assert-plus@^1.0.0:
185 | version "1.0.0"
186 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
187 |
188 | assert-plus@^0.2.0:
189 | version "0.2.0"
190 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234"
191 |
192 | assign-symbols@^1.0.0:
193 | version "1.0.0"
194 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"
195 |
196 | astral-regex@^1.0.0:
197 | version "1.0.0"
198 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9"
199 |
200 | async-each@^1.0.0:
201 | version "1.0.1"
202 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d"
203 |
204 | async-limiter@~1.0.0:
205 | version "1.0.0"
206 | resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8"
207 |
208 | async@^1.4.0:
209 | version "1.5.2"
210 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a"
211 |
212 | async@^2.1.4:
213 | version "2.6.0"
214 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.0.tgz#61a29abb6fcc026fea77e56d1c6ec53a795951f4"
215 | dependencies:
216 | lodash "^4.14.0"
217 |
218 | asynckit@^0.4.0:
219 | version "0.4.0"
220 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
221 |
222 | atob@^2.0.0:
223 | version "2.0.3"
224 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.0.3.tgz#19c7a760473774468f20b2d2d03372ad7d4cbf5d"
225 |
226 | aws-sign2@~0.6.0:
227 | version "0.6.0"
228 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f"
229 |
230 | aws-sign2@~0.7.0:
231 | version "0.7.0"
232 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"
233 |
234 | aws4@^1.2.1, aws4@^1.6.0:
235 | version "1.6.0"
236 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e"
237 |
238 | babel-code-frame@^6.22.0, babel-code-frame@^6.26.0:
239 | version "6.26.0"
240 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"
241 | dependencies:
242 | chalk "^1.1.3"
243 | esutils "^2.0.2"
244 | js-tokens "^3.0.2"
245 |
246 | babel-core@^6.0.0, babel-core@^6.26.0:
247 | version "6.26.0"
248 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8"
249 | dependencies:
250 | babel-code-frame "^6.26.0"
251 | babel-generator "^6.26.0"
252 | babel-helpers "^6.24.1"
253 | babel-messages "^6.23.0"
254 | babel-register "^6.26.0"
255 | babel-runtime "^6.26.0"
256 | babel-template "^6.26.0"
257 | babel-traverse "^6.26.0"
258 | babel-types "^6.26.0"
259 | babylon "^6.18.0"
260 | convert-source-map "^1.5.0"
261 | debug "^2.6.8"
262 | json5 "^0.5.1"
263 | lodash "^4.17.4"
264 | minimatch "^3.0.4"
265 | path-is-absolute "^1.0.1"
266 | private "^0.1.7"
267 | slash "^1.0.0"
268 | source-map "^0.5.6"
269 |
270 | babel-core@^6.26.3:
271 | version "6.26.3"
272 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.3.tgz#b2e2f09e342d0f0c88e2f02e067794125e75c207"
273 | dependencies:
274 | babel-code-frame "^6.26.0"
275 | babel-generator "^6.26.0"
276 | babel-helpers "^6.24.1"
277 | babel-messages "^6.23.0"
278 | babel-register "^6.26.0"
279 | babel-runtime "^6.26.0"
280 | babel-template "^6.26.0"
281 | babel-traverse "^6.26.0"
282 | babel-types "^6.26.0"
283 | babylon "^6.18.0"
284 | convert-source-map "^1.5.1"
285 | debug "^2.6.9"
286 | json5 "^0.5.1"
287 | lodash "^4.17.4"
288 | minimatch "^3.0.4"
289 | path-is-absolute "^1.0.1"
290 | private "^0.1.8"
291 | slash "^1.0.0"
292 | source-map "^0.5.7"
293 |
294 | babel-generator@^6.18.0, babel-generator@^6.26.0:
295 | version "6.26.0"
296 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5"
297 | dependencies:
298 | babel-messages "^6.23.0"
299 | babel-runtime "^6.26.0"
300 | babel-types "^6.26.0"
301 | detect-indent "^4.0.0"
302 | jsesc "^1.3.0"
303 | lodash "^4.17.4"
304 | source-map "^0.5.6"
305 | trim-right "^1.0.1"
306 |
307 | babel-helpers@^6.24.1:
308 | version "6.24.1"
309 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2"
310 | dependencies:
311 | babel-runtime "^6.22.0"
312 | babel-template "^6.24.1"
313 |
314 | babel-jest@^22.4.3:
315 | version "22.4.3"
316 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-22.4.3.tgz#4b7a0b6041691bbd422ab49b3b73654a49a6627a"
317 | dependencies:
318 | babel-plugin-istanbul "^4.1.5"
319 | babel-preset-jest "^22.4.3"
320 |
321 | babel-messages@^6.23.0:
322 | version "6.23.0"
323 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e"
324 | dependencies:
325 | babel-runtime "^6.22.0"
326 |
327 | babel-plugin-istanbul@^4.1.5:
328 | version "4.1.5"
329 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.5.tgz#6760cdd977f411d3e175bb064f2bc327d99b2b6e"
330 | dependencies:
331 | find-up "^2.1.0"
332 | istanbul-lib-instrument "^1.7.5"
333 | test-exclude "^4.1.1"
334 |
335 | babel-plugin-istanbul@^4.1.6:
336 | version "4.1.6"
337 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.6.tgz#36c59b2192efce81c5b378321b74175add1c9a45"
338 | dependencies:
339 | babel-plugin-syntax-object-rest-spread "^6.13.0"
340 | find-up "^2.1.0"
341 | istanbul-lib-instrument "^1.10.1"
342 | test-exclude "^4.2.1"
343 |
344 | babel-plugin-jest-hoist@^22.4.3:
345 | version "22.4.3"
346 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-22.4.3.tgz#7d8bcccadc2667f96a0dcc6afe1891875ee6c14a"
347 |
348 | babel-plugin-syntax-object-rest-spread@^6.13.0:
349 | version "6.13.0"
350 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5"
351 |
352 | babel-plugin-transform-es2015-modules-commonjs@^6.26.2:
353 | version "6.26.2"
354 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz#58a793863a9e7ca870bdc5a881117ffac27db6f3"
355 | dependencies:
356 | babel-plugin-transform-strict-mode "^6.24.1"
357 | babel-runtime "^6.26.0"
358 | babel-template "^6.26.0"
359 | babel-types "^6.26.0"
360 |
361 | babel-plugin-transform-strict-mode@^6.24.1:
362 | version "6.24.1"
363 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758"
364 | dependencies:
365 | babel-runtime "^6.22.0"
366 | babel-types "^6.24.1"
367 |
368 | babel-preset-jest@^22.4.3:
369 | version "22.4.3"
370 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-22.4.3.tgz#e92eef9813b7026ab4ca675799f37419b5a44156"
371 | dependencies:
372 | babel-plugin-jest-hoist "^22.4.3"
373 | babel-plugin-syntax-object-rest-spread "^6.13.0"
374 |
375 | babel-register@^6.26.0:
376 | version "6.26.0"
377 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071"
378 | dependencies:
379 | babel-core "^6.26.0"
380 | babel-runtime "^6.26.0"
381 | core-js "^2.5.0"
382 | home-or-tmp "^2.0.0"
383 | lodash "^4.17.4"
384 | mkdirp "^0.5.1"
385 | source-map-support "^0.4.15"
386 |
387 | babel-runtime@^6.22.0, babel-runtime@^6.26.0, babel-runtime@^6.9.2:
388 | version "6.26.0"
389 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
390 | dependencies:
391 | core-js "^2.4.0"
392 | regenerator-runtime "^0.11.0"
393 |
394 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0:
395 | version "6.26.0"
396 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02"
397 | dependencies:
398 | babel-runtime "^6.26.0"
399 | babel-traverse "^6.26.0"
400 | babel-types "^6.26.0"
401 | babylon "^6.18.0"
402 | lodash "^4.17.4"
403 |
404 | babel-traverse@^6.18.0, babel-traverse@^6.26.0:
405 | version "6.26.0"
406 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee"
407 | dependencies:
408 | babel-code-frame "^6.26.0"
409 | babel-messages "^6.23.0"
410 | babel-runtime "^6.26.0"
411 | babel-types "^6.26.0"
412 | babylon "^6.18.0"
413 | debug "^2.6.8"
414 | globals "^9.18.0"
415 | invariant "^2.2.2"
416 | lodash "^4.17.4"
417 |
418 | babel-types@^6.18.0, babel-types@^6.24.1, babel-types@^6.26.0:
419 | version "6.26.0"
420 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497"
421 | dependencies:
422 | babel-runtime "^6.26.0"
423 | esutils "^2.0.2"
424 | lodash "^4.17.4"
425 | to-fast-properties "^1.0.3"
426 |
427 | babylon@^6.18.0:
428 | version "6.18.0"
429 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3"
430 |
431 | backend-tslint-rules@1.3.0:
432 | version "1.3.0"
433 | resolved "https://registry.yarnpkg.com/backend-tslint-rules/-/backend-tslint-rules-1.3.0.tgz#f003b7f0d4d62cdc7deea0d63886fc793fd69c3a"
434 |
435 | balanced-match@^1.0.0:
436 | version "1.0.0"
437 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
438 |
439 | base@^0.11.1:
440 | version "0.11.2"
441 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f"
442 | dependencies:
443 | cache-base "^1.0.1"
444 | class-utils "^0.3.5"
445 | component-emitter "^1.2.1"
446 | define-property "^1.0.0"
447 | isobject "^3.0.1"
448 | mixin-deep "^1.2.0"
449 | pascalcase "^0.1.1"
450 |
451 | bcrypt-pbkdf@^1.0.0:
452 | version "1.0.1"
453 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d"
454 | dependencies:
455 | tweetnacl "^0.14.3"
456 |
457 | binary-extensions@^1.0.0:
458 | version "1.11.0"
459 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205"
460 |
461 | block-stream@*:
462 | version "0.0.9"
463 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a"
464 | dependencies:
465 | inherits "~2.0.0"
466 |
467 | boom@2.x.x:
468 | version "2.10.1"
469 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f"
470 | dependencies:
471 | hoek "2.x.x"
472 |
473 | boom@4.x.x:
474 | version "4.3.1"
475 | resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31"
476 | dependencies:
477 | hoek "4.x.x"
478 |
479 | boom@5.x.x:
480 | version "5.2.0"
481 | resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02"
482 | dependencies:
483 | hoek "4.x.x"
484 |
485 | brace-expansion@^1.1.7:
486 | version "1.1.8"
487 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292"
488 | dependencies:
489 | balanced-match "^1.0.0"
490 | concat-map "0.0.1"
491 |
492 | braces@^1.8.2:
493 | version "1.8.5"
494 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7"
495 | dependencies:
496 | expand-range "^1.8.1"
497 | preserve "^0.2.0"
498 | repeat-element "^1.1.2"
499 |
500 | braces@^2.3.1:
501 | version "2.3.2"
502 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729"
503 | dependencies:
504 | arr-flatten "^1.1.0"
505 | array-unique "^0.3.2"
506 | extend-shallow "^2.0.1"
507 | fill-range "^4.0.0"
508 | isobject "^3.0.1"
509 | repeat-element "^1.1.2"
510 | snapdragon "^0.8.1"
511 | snapdragon-node "^2.0.1"
512 | split-string "^3.0.2"
513 | to-regex "^3.0.1"
514 |
515 | browser-process-hrtime@^0.1.2:
516 | version "0.1.2"
517 | resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-0.1.2.tgz#425d68a58d3447f02a04aa894187fce8af8b7b8e"
518 |
519 | browser-resolve@^1.11.2:
520 | version "1.11.2"
521 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce"
522 | dependencies:
523 | resolve "1.1.7"
524 |
525 | bser@^2.0.0:
526 | version "2.0.0"
527 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719"
528 | dependencies:
529 | node-int64 "^0.4.0"
530 |
531 | buffer-from@^1.0.0:
532 | version "1.0.0"
533 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.0.0.tgz#4cb8832d23612589b0406e9e2956c17f06fdf531"
534 |
535 | builtin-modules@^1.0.0, builtin-modules@^1.1.1:
536 | version "1.1.1"
537 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
538 |
539 | builtin-modules@^2.0.0:
540 | version "2.0.0"
541 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-2.0.0.tgz#60b7ef5ae6546bd7deefa74b08b62a43a232648e"
542 |
543 | cache-base@^1.0.1:
544 | version "1.0.1"
545 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2"
546 | dependencies:
547 | collection-visit "^1.0.0"
548 | component-emitter "^1.2.1"
549 | get-value "^2.0.6"
550 | has-value "^1.0.0"
551 | isobject "^3.0.1"
552 | set-value "^2.0.0"
553 | to-object-path "^0.3.0"
554 | union-value "^1.0.0"
555 | unset-value "^1.0.0"
556 |
557 | callsites@^2.0.0:
558 | version "2.0.0"
559 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50"
560 |
561 | camelcase-keys@^2.0.0:
562 | version "2.1.0"
563 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7"
564 | dependencies:
565 | camelcase "^2.0.0"
566 | map-obj "^1.0.0"
567 |
568 | camelcase@^1.0.2:
569 | version "1.2.1"
570 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39"
571 |
572 | camelcase@^2.0.0:
573 | version "2.1.1"
574 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f"
575 |
576 | camelcase@^4.1.0:
577 | version "4.1.0"
578 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd"
579 |
580 | camelcase@~5.0.0:
581 | version "5.0.0"
582 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.0.0.tgz#03295527d58bd3cd4aa75363f35b2e8d97be2f42"
583 |
584 | caseless@~0.12.0:
585 | version "0.12.0"
586 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
587 |
588 | center-align@^0.1.1:
589 | version "0.1.3"
590 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad"
591 | dependencies:
592 | align-text "^0.1.3"
593 | lazy-cache "^1.0.3"
594 |
595 | chalk@^1.1.3:
596 | version "1.1.3"
597 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
598 | dependencies:
599 | ansi-styles "^2.2.1"
600 | escape-string-regexp "^1.0.2"
601 | has-ansi "^2.0.0"
602 | strip-ansi "^3.0.0"
603 | supports-color "^2.0.0"
604 |
605 | chalk@^2.0.0, chalk@^2.0.1, chalk@^2.3.0:
606 | version "2.3.0"
607 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba"
608 | dependencies:
609 | ansi-styles "^3.1.0"
610 | escape-string-regexp "^1.0.5"
611 | supports-color "^4.0.0"
612 |
613 | chokidar@^1.6.0:
614 | version "1.7.0"
615 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468"
616 | dependencies:
617 | anymatch "^1.3.0"
618 | async-each "^1.0.0"
619 | glob-parent "^2.0.0"
620 | inherits "^2.0.1"
621 | is-binary-path "^1.0.0"
622 | is-glob "^2.0.0"
623 | path-is-absolute "^1.0.0"
624 | readdirp "^2.0.0"
625 | optionalDependencies:
626 | fsevents "^1.0.0"
627 |
628 | ci-info@^1.0.0:
629 | version "1.1.2"
630 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.2.tgz#03561259db48d0474c8bdc90f5b47b068b6bbfb4"
631 |
632 | class-utils@^0.3.5:
633 | version "0.3.6"
634 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463"
635 | dependencies:
636 | arr-union "^3.1.0"
637 | define-property "^0.2.5"
638 | isobject "^3.0.0"
639 | static-extend "^0.1.1"
640 |
641 | cliui@^2.1.0:
642 | version "2.1.0"
643 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1"
644 | dependencies:
645 | center-align "^0.1.1"
646 | right-align "^0.1.1"
647 | wordwrap "0.0.2"
648 |
649 | cliui@^3.2.0:
650 | version "3.2.0"
651 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d"
652 | dependencies:
653 | string-width "^1.0.1"
654 | strip-ansi "^3.0.1"
655 | wrap-ansi "^2.0.0"
656 |
657 | cliui@^4.0.0:
658 | version "4.0.0"
659 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.0.0.tgz#743d4650e05f36d1ed2575b59638d87322bfbbcc"
660 | dependencies:
661 | string-width "^2.1.1"
662 | strip-ansi "^4.0.0"
663 | wrap-ansi "^2.0.0"
664 |
665 | co@^4.6.0:
666 | version "4.6.0"
667 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
668 |
669 | code-point-at@^1.0.0:
670 | version "1.1.0"
671 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
672 |
673 | collection-visit@^1.0.0:
674 | version "1.0.0"
675 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0"
676 | dependencies:
677 | map-visit "^1.0.0"
678 | object-visit "^1.0.0"
679 |
680 | color-convert@^1.9.0:
681 | version "1.9.1"
682 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed"
683 | dependencies:
684 | color-name "^1.1.1"
685 |
686 | color-name@^1.1.1:
687 | version "1.1.3"
688 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
689 |
690 | combined-stream@^1.0.5, combined-stream@~1.0.5:
691 | version "1.0.5"
692 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009"
693 | dependencies:
694 | delayed-stream "~1.0.0"
695 |
696 | commander@^2.12.1, commander@~2.13.0:
697 | version "2.13.0"
698 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.13.0.tgz#6964bca67685df7c1f1430c584f07d7597885b9c"
699 |
700 | compare-func@^1.3.1:
701 | version "1.3.2"
702 | resolved "https://registry.yarnpkg.com/compare-func/-/compare-func-1.3.2.tgz#99dd0ba457e1f9bc722b12c08ec33eeab31fa648"
703 | dependencies:
704 | array-ify "^1.0.0"
705 | dot-prop "^3.0.0"
706 |
707 | component-emitter@^1.2.1:
708 | version "1.2.1"
709 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6"
710 |
711 | concat-map@0.0.1:
712 | version "0.0.1"
713 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
714 |
715 | concat-stream@^1.4.10:
716 | version "1.6.0"
717 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7"
718 | dependencies:
719 | inherits "^2.0.3"
720 | readable-stream "^2.2.2"
721 | typedarray "^0.0.6"
722 |
723 | console-control-strings@^1.0.0, console-control-strings@~1.1.0:
724 | version "1.1.0"
725 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
726 |
727 | content-type-parser@^1.0.2:
728 | version "1.0.2"
729 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.2.tgz#caabe80623e63638b2502fd4c7f12ff4ce2352e7"
730 |
731 | conventional-changelog-angular@^1.5.2:
732 | version "1.6.0"
733 | resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-1.6.0.tgz#0a26a071f2c9fcfcf2b86ba0cfbf6e6301b75bfa"
734 | dependencies:
735 | compare-func "^1.3.1"
736 | q "^1.4.1"
737 |
738 | conventional-changelog-atom@^0.1.2:
739 | version "0.1.2"
740 | resolved "https://registry.yarnpkg.com/conventional-changelog-atom/-/conventional-changelog-atom-0.1.2.tgz#12595ad5267a6937c34cf900281b1c65198a4c63"
741 | dependencies:
742 | q "^1.4.1"
743 |
744 | conventional-changelog-codemirror@^0.2.1:
745 | version "0.2.1"
746 | resolved "https://registry.yarnpkg.com/conventional-changelog-codemirror/-/conventional-changelog-codemirror-0.2.1.tgz#299a4f7147baf350e6c8158fc54954a291c5cc09"
747 | dependencies:
748 | q "^1.4.1"
749 |
750 | conventional-changelog-core@^1.9.3:
751 | version "1.9.5"
752 | resolved "https://registry.yarnpkg.com/conventional-changelog-core/-/conventional-changelog-core-1.9.5.tgz#5db7566dad7c0cb75daf47fbb2976f7bf9928c1d"
753 | dependencies:
754 | conventional-changelog-writer "^2.0.3"
755 | conventional-commits-parser "^2.1.0"
756 | dateformat "^1.0.12"
757 | get-pkg-repo "^1.0.0"
758 | git-raw-commits "^1.3.0"
759 | git-remote-origin-url "^2.0.0"
760 | git-semver-tags "^1.2.3"
761 | lodash "^4.0.0"
762 | normalize-package-data "^2.3.5"
763 | q "^1.4.1"
764 | read-pkg "^1.1.0"
765 | read-pkg-up "^1.0.1"
766 | through2 "^2.0.0"
767 |
768 | conventional-changelog-ember@^0.2.9:
769 | version "0.2.10"
770 | resolved "https://registry.yarnpkg.com/conventional-changelog-ember/-/conventional-changelog-ember-0.2.10.tgz#dcd6e4cdc2e6c2b58653cf4d2cb1656a60421929"
771 | dependencies:
772 | q "^1.4.1"
773 |
774 | conventional-changelog-eslint@^0.2.1:
775 | version "0.2.1"
776 | resolved "https://registry.yarnpkg.com/conventional-changelog-eslint/-/conventional-changelog-eslint-0.2.1.tgz#2c2a11beb216f80649ba72834180293b687c0662"
777 | dependencies:
778 | q "^1.4.1"
779 |
780 | conventional-changelog-express@^0.2.1:
781 | version "0.2.1"
782 | resolved "https://registry.yarnpkg.com/conventional-changelog-express/-/conventional-changelog-express-0.2.1.tgz#838d9e1e6c9099703b150b9c19aa2d781742bd6c"
783 | dependencies:
784 | q "^1.4.1"
785 |
786 | conventional-changelog-jquery@^0.1.0:
787 | version "0.1.0"
788 | resolved "https://registry.yarnpkg.com/conventional-changelog-jquery/-/conventional-changelog-jquery-0.1.0.tgz#0208397162e3846986e71273b6c79c5b5f80f510"
789 | dependencies:
790 | q "^1.4.1"
791 |
792 | conventional-changelog-jscs@^0.1.0:
793 | version "0.1.0"
794 | resolved "https://registry.yarnpkg.com/conventional-changelog-jscs/-/conventional-changelog-jscs-0.1.0.tgz#0479eb443cc7d72c58bf0bcf0ef1d444a92f0e5c"
795 | dependencies:
796 | q "^1.4.1"
797 |
798 | conventional-changelog-jshint@^0.2.1:
799 | version "0.2.1"
800 | resolved "https://registry.yarnpkg.com/conventional-changelog-jshint/-/conventional-changelog-jshint-0.2.1.tgz#86139bb3ac99899f2b177e9617e09b37d99bcf3a"
801 | dependencies:
802 | compare-func "^1.3.1"
803 | q "^1.4.1"
804 |
805 | conventional-changelog-writer@^2.0.3:
806 | version "2.0.3"
807 | resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-2.0.3.tgz#073b0c39f1cc8fc0fd9b1566e93833f51489c81c"
808 | dependencies:
809 | compare-func "^1.3.1"
810 | conventional-commits-filter "^1.1.1"
811 | dateformat "^1.0.11"
812 | handlebars "^4.0.2"
813 | json-stringify-safe "^5.0.1"
814 | lodash "^4.0.0"
815 | meow "^3.3.0"
816 | semver "^5.0.1"
817 | split "^1.0.0"
818 | through2 "^2.0.0"
819 |
820 | conventional-changelog@^1.1.0:
821 | version "1.1.7"
822 | resolved "https://registry.yarnpkg.com/conventional-changelog/-/conventional-changelog-1.1.7.tgz#9151a62b1d8edb2d82711dabf5b7cf71041f82b1"
823 | dependencies:
824 | conventional-changelog-angular "^1.5.2"
825 | conventional-changelog-atom "^0.1.2"
826 | conventional-changelog-codemirror "^0.2.1"
827 | conventional-changelog-core "^1.9.3"
828 | conventional-changelog-ember "^0.2.9"
829 | conventional-changelog-eslint "^0.2.1"
830 | conventional-changelog-express "^0.2.1"
831 | conventional-changelog-jquery "^0.1.0"
832 | conventional-changelog-jscs "^0.1.0"
833 | conventional-changelog-jshint "^0.2.1"
834 |
835 | conventional-commits-filter@^1.1.1:
836 | version "1.1.1"
837 | resolved "https://registry.yarnpkg.com/conventional-commits-filter/-/conventional-commits-filter-1.1.1.tgz#72172319c0c88328a015b30686b55527b3a5e54a"
838 | dependencies:
839 | is-subset "^0.1.1"
840 | modify-values "^1.0.0"
841 |
842 | conventional-commits-parser@^2.1.0:
843 | version "2.1.0"
844 | resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-2.1.0.tgz#9b4b7c91124bf2a1a9a2cc1c72760d382cbbb229"
845 | dependencies:
846 | JSONStream "^1.0.4"
847 | is-text-path "^1.0.0"
848 | lodash "^4.2.1"
849 | meow "^3.3.0"
850 | split2 "^2.0.0"
851 | through2 "^2.0.0"
852 | trim-off-newlines "^1.0.0"
853 |
854 | conventional-recommended-bump@^1.0.0:
855 | version "1.1.0"
856 | resolved "https://registry.yarnpkg.com/conventional-recommended-bump/-/conventional-recommended-bump-1.1.0.tgz#964d4fcc70fb5259d41fa9b39d3df6afdb87d253"
857 | dependencies:
858 | concat-stream "^1.4.10"
859 | conventional-commits-filter "^1.1.1"
860 | conventional-commits-parser "^2.1.0"
861 | git-raw-commits "^1.3.0"
862 | git-semver-tags "^1.2.3"
863 | meow "^3.3.0"
864 | object-assign "^4.0.1"
865 |
866 | convert-source-map@^1.4.0, convert-source-map@^1.5.0, convert-source-map@^1.5.1:
867 | version "1.5.1"
868 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5"
869 |
870 | copy-descriptor@^0.1.0:
871 | version "0.1.1"
872 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
873 |
874 | core-js@^2.4.0, core-js@^2.5.0:
875 | version "2.5.3"
876 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.3.tgz#8acc38345824f16d8365b7c9b4259168e8ed603e"
877 |
878 | core-util-is@1.0.2, core-util-is@~1.0.0:
879 | version "1.0.2"
880 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
881 |
882 | cpx@^1.5.0:
883 | version "1.5.0"
884 | resolved "https://registry.yarnpkg.com/cpx/-/cpx-1.5.0.tgz#185be018511d87270dedccc293171e37655ab88f"
885 | dependencies:
886 | babel-runtime "^6.9.2"
887 | chokidar "^1.6.0"
888 | duplexer "^0.1.1"
889 | glob "^7.0.5"
890 | glob2base "^0.0.12"
891 | minimatch "^3.0.2"
892 | mkdirp "^0.5.1"
893 | resolve "^1.1.7"
894 | safe-buffer "^5.0.1"
895 | shell-quote "^1.6.1"
896 | subarg "^1.0.0"
897 |
898 | cross-spawn@^5.0.1:
899 | version "5.1.0"
900 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449"
901 | dependencies:
902 | lru-cache "^4.0.1"
903 | shebang-command "^1.2.0"
904 | which "^1.2.9"
905 |
906 | cryptiles@2.x.x:
907 | version "2.0.5"
908 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8"
909 | dependencies:
910 | boom "2.x.x"
911 |
912 | cryptiles@3.x.x:
913 | version "3.1.2"
914 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe"
915 | dependencies:
916 | boom "5.x.x"
917 |
918 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0":
919 | version "0.3.2"
920 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b"
921 |
922 | "cssstyle@>= 0.2.37 < 0.3.0":
923 | version "0.2.37"
924 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54"
925 | dependencies:
926 | cssom "0.3.x"
927 |
928 | currently-unhandled@^0.4.1:
929 | version "0.4.1"
930 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea"
931 | dependencies:
932 | array-find-index "^1.0.1"
933 |
934 | dargs@^4.0.1:
935 | version "4.1.0"
936 | resolved "https://registry.yarnpkg.com/dargs/-/dargs-4.1.0.tgz#03a9dbb4b5c2f139bf14ae53f0b8a2a6a86f4e17"
937 | dependencies:
938 | number-is-nan "^1.0.0"
939 |
940 | dashdash@^1.12.0:
941 | version "1.14.1"
942 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
943 | dependencies:
944 | assert-plus "^1.0.0"
945 |
946 | dateformat@^1.0.11, dateformat@^1.0.12:
947 | version "1.0.12"
948 | resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-1.0.12.tgz#9f124b67594c937ff706932e4a642cca8dbbfee9"
949 | dependencies:
950 | get-stdin "^4.0.1"
951 | meow "^3.3.0"
952 |
953 | debug@^2.2.0, debug@^2.3.3, debug@^2.6.8, debug@^2.6.9:
954 | version "2.6.9"
955 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
956 | dependencies:
957 | ms "2.0.0"
958 |
959 | debug@^3.1.0:
960 | version "3.1.0"
961 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261"
962 | dependencies:
963 | ms "2.0.0"
964 |
965 | decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2:
966 | version "1.2.0"
967 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
968 |
969 | decode-uri-component@^0.2.0:
970 | version "0.2.0"
971 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545"
972 |
973 | deep-extend@~0.4.0:
974 | version "0.4.2"
975 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f"
976 |
977 | deep-is@~0.1.3:
978 | version "0.1.3"
979 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
980 |
981 | default-require-extensions@^1.0.0:
982 | version "1.0.0"
983 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8"
984 | dependencies:
985 | strip-bom "^2.0.0"
986 |
987 | define-properties@^1.1.2:
988 | version "1.1.2"
989 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94"
990 | dependencies:
991 | foreach "^2.0.5"
992 | object-keys "^1.0.8"
993 |
994 | define-property@^0.2.5:
995 | version "0.2.5"
996 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116"
997 | dependencies:
998 | is-descriptor "^0.1.0"
999 |
1000 | define-property@^1.0.0:
1001 | version "1.0.0"
1002 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6"
1003 | dependencies:
1004 | is-descriptor "^1.0.0"
1005 |
1006 | define-property@^2.0.2:
1007 | version "2.0.2"
1008 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d"
1009 | dependencies:
1010 | is-descriptor "^1.0.2"
1011 | isobject "^3.0.1"
1012 |
1013 | delayed-stream@~1.0.0:
1014 | version "1.0.0"
1015 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
1016 |
1017 | delegates@^1.0.0:
1018 | version "1.0.0"
1019 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
1020 |
1021 | detect-indent@^4.0.0:
1022 | version "4.0.0"
1023 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208"
1024 | dependencies:
1025 | repeating "^2.0.0"
1026 |
1027 | detect-libc@^1.0.2:
1028 | version "1.0.3"
1029 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"
1030 |
1031 | detect-newline@^2.1.0:
1032 | version "2.1.0"
1033 | resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2"
1034 |
1035 | diff@^3.1.0, diff@^3.2.0:
1036 | version "3.4.0"
1037 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.4.0.tgz#b1d85507daf3964828de54b37d0d73ba67dda56c"
1038 |
1039 | domexception@^1.0.0:
1040 | version "1.0.1"
1041 | resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90"
1042 | dependencies:
1043 | webidl-conversions "^4.0.2"
1044 |
1045 | dot-prop@^3.0.0:
1046 | version "3.0.0"
1047 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-3.0.0.tgz#1b708af094a49c9a0e7dbcad790aba539dac1177"
1048 | dependencies:
1049 | is-obj "^1.0.0"
1050 |
1051 | dotgitignore@^1.0.3:
1052 | version "1.0.3"
1053 | resolved "https://registry.yarnpkg.com/dotgitignore/-/dotgitignore-1.0.3.tgz#a442cbde7dc20dff51cdb849e4c5a64568c07923"
1054 | dependencies:
1055 | find-up "^2.1.0"
1056 | minimatch "^3.0.4"
1057 |
1058 | duplexer@^0.1.1:
1059 | version "0.1.1"
1060 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1"
1061 |
1062 | ecc-jsbn@~0.1.1:
1063 | version "0.1.1"
1064 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505"
1065 | dependencies:
1066 | jsbn "~0.1.0"
1067 |
1068 | error-ex@^1.2.0:
1069 | version "1.3.1"
1070 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc"
1071 | dependencies:
1072 | is-arrayish "^0.2.1"
1073 |
1074 | es-abstract@^1.5.1:
1075 | version "1.10.0"
1076 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.10.0.tgz#1ecb36c197842a00d8ee4c2dfd8646bb97d60864"
1077 | dependencies:
1078 | es-to-primitive "^1.1.1"
1079 | function-bind "^1.1.1"
1080 | has "^1.0.1"
1081 | is-callable "^1.1.3"
1082 | is-regex "^1.0.4"
1083 |
1084 | es-to-primitive@^1.1.1:
1085 | version "1.1.1"
1086 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d"
1087 | dependencies:
1088 | is-callable "^1.1.1"
1089 | is-date-object "^1.0.1"
1090 | is-symbol "^1.0.1"
1091 |
1092 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
1093 | version "1.0.5"
1094 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
1095 |
1096 | escodegen@^1.9.0:
1097 | version "1.9.0"
1098 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.9.0.tgz#9811a2f265dc1cd3894420ee3717064b632b8852"
1099 | dependencies:
1100 | esprima "^3.1.3"
1101 | estraverse "^4.2.0"
1102 | esutils "^2.0.2"
1103 | optionator "^0.8.1"
1104 | optionalDependencies:
1105 | source-map "~0.5.6"
1106 |
1107 | esprima@^3.1.3:
1108 | version "3.1.3"
1109 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633"
1110 |
1111 | esprima@^4.0.0:
1112 | version "4.0.0"
1113 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804"
1114 |
1115 | estraverse@^4.2.0:
1116 | version "4.2.0"
1117 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13"
1118 |
1119 | estree-walker@^0.3.0:
1120 | version "0.3.1"
1121 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.3.1.tgz#e6b1a51cf7292524e7237c312e5fe6660c1ce1aa"
1122 |
1123 | estree-walker@^0.5.0:
1124 | version "0.5.1"
1125 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.5.1.tgz#64fc375053abc6f57d73e9bd2f004644ad3c5854"
1126 |
1127 | esutils@^2.0.2:
1128 | version "2.0.2"
1129 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
1130 |
1131 | exec-sh@^0.2.0:
1132 | version "0.2.1"
1133 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.1.tgz#163b98a6e89e6b65b47c2a28d215bc1f63989c38"
1134 | dependencies:
1135 | merge "^1.1.3"
1136 |
1137 | execa@^0.7.0:
1138 | version "0.7.0"
1139 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777"
1140 | dependencies:
1141 | cross-spawn "^5.0.1"
1142 | get-stream "^3.0.0"
1143 | is-stream "^1.1.0"
1144 | npm-run-path "^2.0.0"
1145 | p-finally "^1.0.0"
1146 | signal-exit "^3.0.0"
1147 | strip-eof "^1.0.0"
1148 |
1149 | exit@^0.1.2:
1150 | version "0.1.2"
1151 | resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c"
1152 |
1153 | expand-brackets@^0.1.4:
1154 | version "0.1.5"
1155 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b"
1156 | dependencies:
1157 | is-posix-bracket "^0.1.0"
1158 |
1159 | expand-brackets@^2.1.4:
1160 | version "2.1.4"
1161 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622"
1162 | dependencies:
1163 | debug "^2.3.3"
1164 | define-property "^0.2.5"
1165 | extend-shallow "^2.0.1"
1166 | posix-character-classes "^0.1.0"
1167 | regex-not "^1.0.0"
1168 | snapdragon "^0.8.1"
1169 | to-regex "^3.0.1"
1170 |
1171 | expand-range@^1.8.1:
1172 | version "1.8.2"
1173 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337"
1174 | dependencies:
1175 | fill-range "^2.1.0"
1176 |
1177 | expect@^22.4.3:
1178 | version "22.4.3"
1179 | resolved "https://registry.yarnpkg.com/expect/-/expect-22.4.3.tgz#d5a29d0a0e1fb2153557caef2674d4547e914674"
1180 | dependencies:
1181 | ansi-styles "^3.2.0"
1182 | jest-diff "^22.4.3"
1183 | jest-get-type "^22.4.3"
1184 | jest-matcher-utils "^22.4.3"
1185 | jest-message-util "^22.4.3"
1186 | jest-regex-util "^22.4.3"
1187 |
1188 | extend-shallow@^2.0.1:
1189 | version "2.0.1"
1190 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f"
1191 | dependencies:
1192 | is-extendable "^0.1.0"
1193 |
1194 | extend-shallow@^3.0.0, extend-shallow@^3.0.2:
1195 | version "3.0.2"
1196 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8"
1197 | dependencies:
1198 | assign-symbols "^1.0.0"
1199 | is-extendable "^1.0.1"
1200 |
1201 | extend@~3.0.0, extend@~3.0.1:
1202 | version "3.0.1"
1203 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444"
1204 |
1205 | extglob@^0.3.1:
1206 | version "0.3.2"
1207 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1"
1208 | dependencies:
1209 | is-extglob "^1.0.0"
1210 |
1211 | extglob@^2.0.4:
1212 | version "2.0.4"
1213 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543"
1214 | dependencies:
1215 | array-unique "^0.3.2"
1216 | define-property "^1.0.0"
1217 | expand-brackets "^2.1.4"
1218 | extend-shallow "^2.0.1"
1219 | fragment-cache "^0.2.1"
1220 | regex-not "^1.0.0"
1221 | snapdragon "^0.8.1"
1222 | to-regex "^3.0.1"
1223 |
1224 | extsprintf@1.3.0:
1225 | version "1.3.0"
1226 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05"
1227 |
1228 | extsprintf@^1.2.0:
1229 | version "1.4.0"
1230 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f"
1231 |
1232 | fast-deep-equal@^1.0.0:
1233 | version "1.0.0"
1234 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff"
1235 |
1236 | fast-json-stable-stringify@^2.0.0:
1237 | version "2.0.0"
1238 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2"
1239 |
1240 | fast-levenshtein@~2.0.4:
1241 | version "2.0.6"
1242 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
1243 |
1244 | fb-watchman@^2.0.0:
1245 | version "2.0.0"
1246 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58"
1247 | dependencies:
1248 | bser "^2.0.0"
1249 |
1250 | figures@^1.5.0:
1251 | version "1.7.0"
1252 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e"
1253 | dependencies:
1254 | escape-string-regexp "^1.0.5"
1255 | object-assign "^4.1.0"
1256 |
1257 | filename-regex@^2.0.0:
1258 | version "2.0.1"
1259 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26"
1260 |
1261 | fileset@^2.0.2:
1262 | version "2.0.3"
1263 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0"
1264 | dependencies:
1265 | glob "^7.0.3"
1266 | minimatch "^3.0.3"
1267 |
1268 | fill-range@^2.1.0:
1269 | version "2.2.3"
1270 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723"
1271 | dependencies:
1272 | is-number "^2.1.0"
1273 | isobject "^2.0.0"
1274 | randomatic "^1.1.3"
1275 | repeat-element "^1.1.2"
1276 | repeat-string "^1.5.2"
1277 |
1278 | fill-range@^4.0.0:
1279 | version "4.0.0"
1280 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7"
1281 | dependencies:
1282 | extend-shallow "^2.0.1"
1283 | is-number "^3.0.0"
1284 | repeat-string "^1.6.1"
1285 | to-regex-range "^2.1.0"
1286 |
1287 | find-index@^0.1.1:
1288 | version "0.1.1"
1289 | resolved "https://registry.yarnpkg.com/find-index/-/find-index-0.1.1.tgz#675d358b2ca3892d795a1ab47232f8b6e2e0dde4"
1290 |
1291 | find-up@^1.0.0:
1292 | version "1.1.2"
1293 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"
1294 | dependencies:
1295 | path-exists "^2.0.0"
1296 | pinkie-promise "^2.0.0"
1297 |
1298 | find-up@^2.0.0, find-up@^2.1.0:
1299 | version "2.1.0"
1300 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
1301 | dependencies:
1302 | locate-path "^2.0.0"
1303 |
1304 | for-in@^1.0.1, for-in@^1.0.2:
1305 | version "1.0.2"
1306 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
1307 |
1308 | for-own@^0.1.4:
1309 | version "0.1.5"
1310 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce"
1311 | dependencies:
1312 | for-in "^1.0.1"
1313 |
1314 | foreach@^2.0.5:
1315 | version "2.0.5"
1316 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99"
1317 |
1318 | forever-agent@~0.6.1:
1319 | version "0.6.1"
1320 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
1321 |
1322 | form-data@~2.1.1:
1323 | version "2.1.4"
1324 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1"
1325 | dependencies:
1326 | asynckit "^0.4.0"
1327 | combined-stream "^1.0.5"
1328 | mime-types "^2.1.12"
1329 |
1330 | form-data@~2.3.1:
1331 | version "2.3.1"
1332 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.1.tgz#6fb94fbd71885306d73d15cc497fe4cc4ecd44bf"
1333 | dependencies:
1334 | asynckit "^0.4.0"
1335 | combined-stream "^1.0.5"
1336 | mime-types "^2.1.12"
1337 |
1338 | fragment-cache@^0.2.1:
1339 | version "0.2.1"
1340 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19"
1341 | dependencies:
1342 | map-cache "^0.2.2"
1343 |
1344 | fs-access@^1.0.0:
1345 | version "1.0.1"
1346 | resolved "https://registry.yarnpkg.com/fs-access/-/fs-access-1.0.1.tgz#d6a87f262271cefebec30c553407fb995da8777a"
1347 | dependencies:
1348 | null-check "^1.0.0"
1349 |
1350 | fs-extra@6.0.0:
1351 | version "6.0.0"
1352 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-6.0.0.tgz#0f0afb290bb3deb87978da816fcd3c7797f3a817"
1353 | dependencies:
1354 | graceful-fs "^4.1.2"
1355 | jsonfile "^4.0.0"
1356 | universalify "^0.1.0"
1357 |
1358 | fs.realpath@^1.0.0:
1359 | version "1.0.0"
1360 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
1361 |
1362 | fsevents@^1.0.0, fsevents@^1.1.1:
1363 | version "1.1.3"
1364 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8"
1365 | dependencies:
1366 | nan "^2.3.0"
1367 | node-pre-gyp "^0.6.39"
1368 |
1369 | fstream-ignore@^1.0.5:
1370 | version "1.0.5"
1371 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105"
1372 | dependencies:
1373 | fstream "^1.0.0"
1374 | inherits "2"
1375 | minimatch "^3.0.0"
1376 |
1377 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2:
1378 | version "1.0.11"
1379 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171"
1380 | dependencies:
1381 | graceful-fs "^4.1.2"
1382 | inherits "~2.0.0"
1383 | mkdirp ">=0.5 0"
1384 | rimraf "2"
1385 |
1386 | function-bind@^1.0.2, function-bind@^1.1.1:
1387 | version "1.1.1"
1388 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
1389 |
1390 | gauge@~2.7.3:
1391 | version "2.7.4"
1392 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
1393 | dependencies:
1394 | aproba "^1.0.3"
1395 | console-control-strings "^1.0.0"
1396 | has-unicode "^2.0.0"
1397 | object-assign "^4.1.0"
1398 | signal-exit "^3.0.0"
1399 | string-width "^1.0.1"
1400 | strip-ansi "^3.0.1"
1401 | wide-align "^1.1.0"
1402 |
1403 | get-caller-file@^1.0.1:
1404 | version "1.0.2"
1405 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5"
1406 |
1407 | get-pkg-repo@^1.0.0:
1408 | version "1.4.0"
1409 | resolved "https://registry.yarnpkg.com/get-pkg-repo/-/get-pkg-repo-1.4.0.tgz#c73b489c06d80cc5536c2c853f9e05232056972d"
1410 | dependencies:
1411 | hosted-git-info "^2.1.4"
1412 | meow "^3.3.0"
1413 | normalize-package-data "^2.3.0"
1414 | parse-github-repo-url "^1.3.0"
1415 | through2 "^2.0.0"
1416 |
1417 | get-stdin@^4.0.1:
1418 | version "4.0.1"
1419 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe"
1420 |
1421 | get-stream@^3.0.0:
1422 | version "3.0.0"
1423 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14"
1424 |
1425 | get-value@^2.0.3, get-value@^2.0.6:
1426 | version "2.0.6"
1427 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28"
1428 |
1429 | getpass@^0.1.1:
1430 | version "0.1.7"
1431 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa"
1432 | dependencies:
1433 | assert-plus "^1.0.0"
1434 |
1435 | git-raw-commits@^1.3.0:
1436 | version "1.3.0"
1437 | resolved "https://registry.yarnpkg.com/git-raw-commits/-/git-raw-commits-1.3.0.tgz#0bc8596e90d5ffe736f7f5546bd2d12f73abaac6"
1438 | dependencies:
1439 | dargs "^4.0.1"
1440 | lodash.template "^4.0.2"
1441 | meow "^3.3.0"
1442 | split2 "^2.0.0"
1443 | through2 "^2.0.0"
1444 |
1445 | git-remote-origin-url@^2.0.0:
1446 | version "2.0.0"
1447 | resolved "https://registry.yarnpkg.com/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz#5282659dae2107145a11126112ad3216ec5fa65f"
1448 | dependencies:
1449 | gitconfiglocal "^1.0.0"
1450 | pify "^2.3.0"
1451 |
1452 | git-semver-tags@^1.2.3:
1453 | version "1.2.3"
1454 | resolved "https://registry.yarnpkg.com/git-semver-tags/-/git-semver-tags-1.2.3.tgz#188b453882bf9d7a23afd31baba537dab7388d5d"
1455 | dependencies:
1456 | meow "^3.3.0"
1457 | semver "^5.0.1"
1458 |
1459 | gitconfiglocal@^1.0.0:
1460 | version "1.0.0"
1461 | resolved "https://registry.yarnpkg.com/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz#41d045f3851a5ea88f03f24ca1c6178114464b9b"
1462 | dependencies:
1463 | ini "^1.3.2"
1464 |
1465 | glob-base@^0.3.0:
1466 | version "0.3.0"
1467 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"
1468 | dependencies:
1469 | glob-parent "^2.0.0"
1470 | is-glob "^2.0.0"
1471 |
1472 | glob-parent@^2.0.0:
1473 | version "2.0.0"
1474 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28"
1475 | dependencies:
1476 | is-glob "^2.0.0"
1477 |
1478 | glob2base@^0.0.12:
1479 | version "0.0.12"
1480 | resolved "https://registry.yarnpkg.com/glob2base/-/glob2base-0.0.12.tgz#9d419b3e28f12e83a362164a277055922c9c0d56"
1481 | dependencies:
1482 | find-index "^0.1.1"
1483 |
1484 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2, glob@~7.1.2:
1485 | version "7.1.2"
1486 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15"
1487 | dependencies:
1488 | fs.realpath "^1.0.0"
1489 | inflight "^1.0.4"
1490 | inherits "2"
1491 | minimatch "^3.0.4"
1492 | once "^1.3.0"
1493 | path-is-absolute "^1.0.0"
1494 |
1495 | globals@^9.18.0:
1496 | version "9.18.0"
1497 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a"
1498 |
1499 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6:
1500 | version "4.1.11"
1501 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
1502 |
1503 | growly@^1.3.0:
1504 | version "1.3.0"
1505 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081"
1506 |
1507 | handlebars@^4.0.2, handlebars@^4.0.3:
1508 | version "4.0.11"
1509 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.11.tgz#630a35dfe0294bc281edae6ffc5d329fc7982dcc"
1510 | dependencies:
1511 | async "^1.4.0"
1512 | optimist "^0.6.1"
1513 | source-map "^0.4.4"
1514 | optionalDependencies:
1515 | uglify-js "^2.6"
1516 |
1517 | har-schema@^1.0.5:
1518 | version "1.0.5"
1519 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e"
1520 |
1521 | har-schema@^2.0.0:
1522 | version "2.0.0"
1523 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92"
1524 |
1525 | har-validator@~4.2.1:
1526 | version "4.2.1"
1527 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a"
1528 | dependencies:
1529 | ajv "^4.9.1"
1530 | har-schema "^1.0.5"
1531 |
1532 | har-validator@~5.0.3:
1533 | version "5.0.3"
1534 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd"
1535 | dependencies:
1536 | ajv "^5.1.0"
1537 | har-schema "^2.0.0"
1538 |
1539 | has-ansi@^2.0.0:
1540 | version "2.0.0"
1541 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
1542 | dependencies:
1543 | ansi-regex "^2.0.0"
1544 |
1545 | has-flag@^1.0.0:
1546 | version "1.0.0"
1547 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa"
1548 |
1549 | has-flag@^2.0.0:
1550 | version "2.0.0"
1551 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51"
1552 |
1553 | has-unicode@^2.0.0:
1554 | version "2.0.1"
1555 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
1556 |
1557 | has-value@^0.3.1:
1558 | version "0.3.1"
1559 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f"
1560 | dependencies:
1561 | get-value "^2.0.3"
1562 | has-values "^0.1.4"
1563 | isobject "^2.0.0"
1564 |
1565 | has-value@^1.0.0:
1566 | version "1.0.0"
1567 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177"
1568 | dependencies:
1569 | get-value "^2.0.6"
1570 | has-values "^1.0.0"
1571 | isobject "^3.0.0"
1572 |
1573 | has-values@^0.1.4:
1574 | version "0.1.4"
1575 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771"
1576 |
1577 | has-values@^1.0.0:
1578 | version "1.0.0"
1579 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f"
1580 | dependencies:
1581 | is-number "^3.0.0"
1582 | kind-of "^4.0.0"
1583 |
1584 | has@^1.0.1:
1585 | version "1.0.1"
1586 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28"
1587 | dependencies:
1588 | function-bind "^1.0.2"
1589 |
1590 | hawk@3.1.3, hawk@~3.1.3:
1591 | version "3.1.3"
1592 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4"
1593 | dependencies:
1594 | boom "2.x.x"
1595 | cryptiles "2.x.x"
1596 | hoek "2.x.x"
1597 | sntp "1.x.x"
1598 |
1599 | hawk@~6.0.2:
1600 | version "6.0.2"
1601 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038"
1602 | dependencies:
1603 | boom "4.x.x"
1604 | cryptiles "3.x.x"
1605 | hoek "4.x.x"
1606 | sntp "2.x.x"
1607 |
1608 | hoek@2.x.x:
1609 | version "2.16.3"
1610 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed"
1611 |
1612 | hoek@4.x.x:
1613 | version "4.2.0"
1614 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.0.tgz#72d9d0754f7fe25ca2d01ad8f8f9a9449a89526d"
1615 |
1616 | home-or-tmp@^2.0.0:
1617 | version "2.0.0"
1618 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8"
1619 | dependencies:
1620 | os-homedir "^1.0.0"
1621 | os-tmpdir "^1.0.1"
1622 |
1623 | hosted-git-info@^2.1.4:
1624 | version "2.5.0"
1625 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c"
1626 |
1627 | html-encoding-sniffer@^1.0.2:
1628 | version "1.0.2"
1629 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8"
1630 | dependencies:
1631 | whatwg-encoding "^1.0.1"
1632 |
1633 | http-signature@~1.1.0:
1634 | version "1.1.1"
1635 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf"
1636 | dependencies:
1637 | assert-plus "^0.2.0"
1638 | jsprim "^1.2.2"
1639 | sshpk "^1.7.0"
1640 |
1641 | http-signature@~1.2.0:
1642 | version "1.2.0"
1643 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1"
1644 | dependencies:
1645 | assert-plus "^1.0.0"
1646 | jsprim "^1.2.2"
1647 | sshpk "^1.7.0"
1648 |
1649 | iconv-lite@0.4.19:
1650 | version "0.4.19"
1651 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b"
1652 |
1653 | import-local@^1.0.0:
1654 | version "1.0.0"
1655 | resolved "https://registry.yarnpkg.com/import-local/-/import-local-1.0.0.tgz#5e4ffdc03f4fe6c009c6729beb29631c2f8227bc"
1656 | dependencies:
1657 | pkg-dir "^2.0.0"
1658 | resolve-cwd "^2.0.0"
1659 |
1660 | imurmurhash@^0.1.4:
1661 | version "0.1.4"
1662 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
1663 |
1664 | indent-string@^2.1.0:
1665 | version "2.1.0"
1666 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80"
1667 | dependencies:
1668 | repeating "^2.0.0"
1669 |
1670 | inflight@^1.0.4:
1671 | version "1.0.6"
1672 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
1673 | dependencies:
1674 | once "^1.3.0"
1675 | wrappy "1"
1676 |
1677 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.3:
1678 | version "2.0.3"
1679 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
1680 |
1681 | ini@^1.3.2, ini@~1.3.0:
1682 | version "1.3.5"
1683 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927"
1684 |
1685 | invariant@^2.2.2:
1686 | version "2.2.2"
1687 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360"
1688 | dependencies:
1689 | loose-envify "^1.0.0"
1690 |
1691 | invert-kv@^1.0.0:
1692 | version "1.0.0"
1693 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"
1694 |
1695 | is-accessor-descriptor@^0.1.6:
1696 | version "0.1.6"
1697 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6"
1698 | dependencies:
1699 | kind-of "^3.0.2"
1700 |
1701 | is-accessor-descriptor@^1.0.0:
1702 | version "1.0.0"
1703 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656"
1704 | dependencies:
1705 | kind-of "^6.0.0"
1706 |
1707 | is-arrayish@^0.2.1:
1708 | version "0.2.1"
1709 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
1710 |
1711 | is-binary-path@^1.0.0:
1712 | version "1.0.1"
1713 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
1714 | dependencies:
1715 | binary-extensions "^1.0.0"
1716 |
1717 | is-buffer@^1.1.5:
1718 | version "1.1.6"
1719 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
1720 |
1721 | is-builtin-module@^1.0.0:
1722 | version "1.0.0"
1723 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe"
1724 | dependencies:
1725 | builtin-modules "^1.0.0"
1726 |
1727 | is-callable@^1.1.1, is-callable@^1.1.3:
1728 | version "1.1.3"
1729 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2"
1730 |
1731 | is-ci@^1.0.10:
1732 | version "1.1.0"
1733 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.1.0.tgz#247e4162e7860cebbdaf30b774d6b0ac7dcfe7a5"
1734 | dependencies:
1735 | ci-info "^1.0.0"
1736 |
1737 | is-data-descriptor@^0.1.4:
1738 | version "0.1.4"
1739 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56"
1740 | dependencies:
1741 | kind-of "^3.0.2"
1742 |
1743 | is-data-descriptor@^1.0.0:
1744 | version "1.0.0"
1745 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7"
1746 | dependencies:
1747 | kind-of "^6.0.0"
1748 |
1749 | is-date-object@^1.0.1:
1750 | version "1.0.1"
1751 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16"
1752 |
1753 | is-descriptor@^0.1.0:
1754 | version "0.1.6"
1755 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca"
1756 | dependencies:
1757 | is-accessor-descriptor "^0.1.6"
1758 | is-data-descriptor "^0.1.4"
1759 | kind-of "^5.0.0"
1760 |
1761 | is-descriptor@^1.0.0, is-descriptor@^1.0.2:
1762 | version "1.0.2"
1763 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec"
1764 | dependencies:
1765 | is-accessor-descriptor "^1.0.0"
1766 | is-data-descriptor "^1.0.0"
1767 | kind-of "^6.0.2"
1768 |
1769 | is-dotfile@^1.0.0:
1770 | version "1.0.3"
1771 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1"
1772 |
1773 | is-equal-shallow@^0.1.3:
1774 | version "0.1.3"
1775 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534"
1776 | dependencies:
1777 | is-primitive "^2.0.0"
1778 |
1779 | is-extendable@^0.1.0, is-extendable@^0.1.1:
1780 | version "0.1.1"
1781 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
1782 |
1783 | is-extendable@^1.0.1:
1784 | version "1.0.1"
1785 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4"
1786 | dependencies:
1787 | is-plain-object "^2.0.4"
1788 |
1789 | is-extglob@^1.0.0:
1790 | version "1.0.0"
1791 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
1792 |
1793 | is-finite@^1.0.0:
1794 | version "1.0.2"
1795 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa"
1796 | dependencies:
1797 | number-is-nan "^1.0.0"
1798 |
1799 | is-fullwidth-code-point@^1.0.0:
1800 | version "1.0.0"
1801 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
1802 | dependencies:
1803 | number-is-nan "^1.0.0"
1804 |
1805 | is-fullwidth-code-point@^2.0.0:
1806 | version "2.0.0"
1807 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
1808 |
1809 | is-generator-fn@^1.0.0:
1810 | version "1.0.0"
1811 | resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-1.0.0.tgz#969d49e1bb3329f6bb7f09089be26578b2ddd46a"
1812 |
1813 | is-glob@^2.0.0, is-glob@^2.0.1:
1814 | version "2.0.1"
1815 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863"
1816 | dependencies:
1817 | is-extglob "^1.0.0"
1818 |
1819 | is-module@^1.0.0:
1820 | version "1.0.0"
1821 | resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591"
1822 |
1823 | is-number@^2.1.0:
1824 | version "2.1.0"
1825 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f"
1826 | dependencies:
1827 | kind-of "^3.0.2"
1828 |
1829 | is-number@^3.0.0:
1830 | version "3.0.0"
1831 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
1832 | dependencies:
1833 | kind-of "^3.0.2"
1834 |
1835 | is-number@^4.0.0:
1836 | version "4.0.0"
1837 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff"
1838 |
1839 | is-obj@^1.0.0:
1840 | version "1.0.1"
1841 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"
1842 |
1843 | is-odd@^2.0.0:
1844 | version "2.0.0"
1845 | resolved "https://registry.yarnpkg.com/is-odd/-/is-odd-2.0.0.tgz#7646624671fd7ea558ccd9a2795182f2958f1b24"
1846 | dependencies:
1847 | is-number "^4.0.0"
1848 |
1849 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4:
1850 | version "2.0.4"
1851 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677"
1852 | dependencies:
1853 | isobject "^3.0.1"
1854 |
1855 | is-posix-bracket@^0.1.0:
1856 | version "0.1.1"
1857 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"
1858 |
1859 | is-primitive@^2.0.0:
1860 | version "2.0.0"
1861 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575"
1862 |
1863 | is-regex@^1.0.4:
1864 | version "1.0.4"
1865 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491"
1866 | dependencies:
1867 | has "^1.0.1"
1868 |
1869 | is-stream@^1.1.0:
1870 | version "1.1.0"
1871 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
1872 |
1873 | is-subset@^0.1.1:
1874 | version "0.1.1"
1875 | resolved "https://registry.yarnpkg.com/is-subset/-/is-subset-0.1.1.tgz#8a59117d932de1de00f245fcdd39ce43f1e939a6"
1876 |
1877 | is-symbol@^1.0.1:
1878 | version "1.0.1"
1879 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572"
1880 |
1881 | is-text-path@^1.0.0:
1882 | version "1.0.1"
1883 | resolved "https://registry.yarnpkg.com/is-text-path/-/is-text-path-1.0.1.tgz#4e1aa0fb51bfbcb3e92688001397202c1775b66e"
1884 | dependencies:
1885 | text-extensions "^1.0.0"
1886 |
1887 | is-typedarray@~1.0.0:
1888 | version "1.0.0"
1889 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
1890 |
1891 | is-utf8@^0.2.0:
1892 | version "0.2.1"
1893 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72"
1894 |
1895 | is-windows@^1.0.2:
1896 | version "1.0.2"
1897 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d"
1898 |
1899 | isarray@1.0.0, isarray@~1.0.0:
1900 | version "1.0.0"
1901 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
1902 |
1903 | isexe@^2.0.0:
1904 | version "2.0.0"
1905 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
1906 |
1907 | isobject@^2.0.0:
1908 | version "2.1.0"
1909 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
1910 | dependencies:
1911 | isarray "1.0.0"
1912 |
1913 | isobject@^3.0.0, isobject@^3.0.1:
1914 | version "3.0.1"
1915 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
1916 |
1917 | isstream@~0.1.2:
1918 | version "0.1.2"
1919 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
1920 |
1921 | istanbul-api@^1.1.14:
1922 | version "1.2.1"
1923 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.2.1.tgz#0c60a0515eb11c7d65c6b50bba2c6e999acd8620"
1924 | dependencies:
1925 | async "^2.1.4"
1926 | fileset "^2.0.2"
1927 | istanbul-lib-coverage "^1.1.1"
1928 | istanbul-lib-hook "^1.1.0"
1929 | istanbul-lib-instrument "^1.9.1"
1930 | istanbul-lib-report "^1.1.2"
1931 | istanbul-lib-source-maps "^1.2.2"
1932 | istanbul-reports "^1.1.3"
1933 | js-yaml "^3.7.0"
1934 | mkdirp "^0.5.1"
1935 | once "^1.4.0"
1936 |
1937 | istanbul-lib-coverage@^1.1.1:
1938 | version "1.1.1"
1939 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da"
1940 |
1941 | istanbul-lib-coverage@^1.2.0:
1942 | version "1.2.0"
1943 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.2.0.tgz#f7d8f2e42b97e37fe796114cb0f9d68b5e3a4341"
1944 |
1945 | istanbul-lib-hook@^1.1.0:
1946 | version "1.1.0"
1947 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.1.0.tgz#8538d970372cb3716d53e55523dd54b557a8d89b"
1948 | dependencies:
1949 | append-transform "^0.4.0"
1950 |
1951 | istanbul-lib-instrument@^1.10.1:
1952 | version "1.10.1"
1953 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.10.1.tgz#724b4b6caceba8692d3f1f9d0727e279c401af7b"
1954 | dependencies:
1955 | babel-generator "^6.18.0"
1956 | babel-template "^6.16.0"
1957 | babel-traverse "^6.18.0"
1958 | babel-types "^6.18.0"
1959 | babylon "^6.18.0"
1960 | istanbul-lib-coverage "^1.2.0"
1961 | semver "^5.3.0"
1962 |
1963 | istanbul-lib-instrument@^1.7.5, istanbul-lib-instrument@^1.8.0, istanbul-lib-instrument@^1.9.1:
1964 | version "1.9.1"
1965 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.9.1.tgz#250b30b3531e5d3251299fdd64b0b2c9db6b558e"
1966 | dependencies:
1967 | babel-generator "^6.18.0"
1968 | babel-template "^6.16.0"
1969 | babel-traverse "^6.18.0"
1970 | babel-types "^6.18.0"
1971 | babylon "^6.18.0"
1972 | istanbul-lib-coverage "^1.1.1"
1973 | semver "^5.3.0"
1974 |
1975 | istanbul-lib-report@^1.1.2:
1976 | version "1.1.2"
1977 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.2.tgz#922be27c13b9511b979bd1587359f69798c1d425"
1978 | dependencies:
1979 | istanbul-lib-coverage "^1.1.1"
1980 | mkdirp "^0.5.1"
1981 | path-parse "^1.0.5"
1982 | supports-color "^3.1.2"
1983 |
1984 | istanbul-lib-source-maps@^1.2.1, istanbul-lib-source-maps@^1.2.2:
1985 | version "1.2.2"
1986 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.2.tgz#750578602435f28a0c04ee6d7d9e0f2960e62c1c"
1987 | dependencies:
1988 | debug "^3.1.0"
1989 | istanbul-lib-coverage "^1.1.1"
1990 | mkdirp "^0.5.1"
1991 | rimraf "^2.6.1"
1992 | source-map "^0.5.3"
1993 |
1994 | istanbul-reports@^1.1.3:
1995 | version "1.1.3"
1996 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.3.tgz#3b9e1e8defb6d18b1d425da8e8b32c5a163f2d10"
1997 | dependencies:
1998 | handlebars "^4.0.3"
1999 |
2000 | jest-changed-files@^22.4.3:
2001 | version "22.4.3"
2002 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-22.4.3.tgz#8882181e022c38bd46a2e4d18d44d19d90a90fb2"
2003 | dependencies:
2004 | throat "^4.0.0"
2005 |
2006 | jest-cli@^22.4.3:
2007 | version "22.4.3"
2008 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-22.4.3.tgz#bf16c4a5fb7edc3fa5b9bb7819e34139e88a72c7"
2009 | dependencies:
2010 | ansi-escapes "^3.0.0"
2011 | chalk "^2.0.1"
2012 | exit "^0.1.2"
2013 | glob "^7.1.2"
2014 | graceful-fs "^4.1.11"
2015 | import-local "^1.0.0"
2016 | is-ci "^1.0.10"
2017 | istanbul-api "^1.1.14"
2018 | istanbul-lib-coverage "^1.1.1"
2019 | istanbul-lib-instrument "^1.8.0"
2020 | istanbul-lib-source-maps "^1.2.1"
2021 | jest-changed-files "^22.4.3"
2022 | jest-config "^22.4.3"
2023 | jest-environment-jsdom "^22.4.3"
2024 | jest-get-type "^22.4.3"
2025 | jest-haste-map "^22.4.3"
2026 | jest-message-util "^22.4.3"
2027 | jest-regex-util "^22.4.3"
2028 | jest-resolve-dependencies "^22.4.3"
2029 | jest-runner "^22.4.3"
2030 | jest-runtime "^22.4.3"
2031 | jest-snapshot "^22.4.3"
2032 | jest-util "^22.4.3"
2033 | jest-validate "^22.4.3"
2034 | jest-worker "^22.4.3"
2035 | micromatch "^2.3.11"
2036 | node-notifier "^5.2.1"
2037 | realpath-native "^1.0.0"
2038 | rimraf "^2.5.4"
2039 | slash "^1.0.0"
2040 | string-length "^2.0.0"
2041 | strip-ansi "^4.0.0"
2042 | which "^1.2.12"
2043 | yargs "^10.0.3"
2044 |
2045 | jest-config@^22.4.3:
2046 | version "22.4.3"
2047 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-22.4.3.tgz#0e9d57db267839ea31309119b41dc2fa31b76403"
2048 | dependencies:
2049 | chalk "^2.0.1"
2050 | glob "^7.1.1"
2051 | jest-environment-jsdom "^22.4.3"
2052 | jest-environment-node "^22.4.3"
2053 | jest-get-type "^22.4.3"
2054 | jest-jasmine2 "^22.4.3"
2055 | jest-regex-util "^22.4.3"
2056 | jest-resolve "^22.4.3"
2057 | jest-util "^22.4.3"
2058 | jest-validate "^22.4.3"
2059 | pretty-format "^22.4.3"
2060 |
2061 | jest-diff@^22.4.3:
2062 | version "22.4.3"
2063 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-22.4.3.tgz#e18cc3feff0aeef159d02310f2686d4065378030"
2064 | dependencies:
2065 | chalk "^2.0.1"
2066 | diff "^3.2.0"
2067 | jest-get-type "^22.4.3"
2068 | pretty-format "^22.4.3"
2069 |
2070 | jest-docblock@^22.4.3:
2071 | version "22.4.3"
2072 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-22.4.3.tgz#50886f132b42b280c903c592373bb6e93bb68b19"
2073 | dependencies:
2074 | detect-newline "^2.1.0"
2075 |
2076 | jest-environment-jsdom@^22.4.3:
2077 | version "22.4.3"
2078 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-22.4.3.tgz#d67daa4155e33516aecdd35afd82d4abf0fa8a1e"
2079 | dependencies:
2080 | jest-mock "^22.4.3"
2081 | jest-util "^22.4.3"
2082 | jsdom "^11.5.1"
2083 |
2084 | jest-environment-node@^22.4.3:
2085 | version "22.4.3"
2086 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-22.4.3.tgz#54c4eaa374c83dd52a9da8759be14ebe1d0b9129"
2087 | dependencies:
2088 | jest-mock "^22.4.3"
2089 | jest-util "^22.4.3"
2090 |
2091 | jest-get-type@^22.4.3:
2092 | version "22.4.3"
2093 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-22.4.3.tgz#e3a8504d8479342dd4420236b322869f18900ce4"
2094 |
2095 | jest-haste-map@^22.4.3:
2096 | version "22.4.3"
2097 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-22.4.3.tgz#25842fa2ba350200767ac27f658d58b9d5c2e20b"
2098 | dependencies:
2099 | fb-watchman "^2.0.0"
2100 | graceful-fs "^4.1.11"
2101 | jest-docblock "^22.4.3"
2102 | jest-serializer "^22.4.3"
2103 | jest-worker "^22.4.3"
2104 | micromatch "^2.3.11"
2105 | sane "^2.0.0"
2106 |
2107 | jest-jasmine2@^22.4.3:
2108 | version "22.4.3"
2109 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-22.4.3.tgz#4daf64cd14c793da9db34a7c7b8dcfe52a745965"
2110 | dependencies:
2111 | chalk "^2.0.1"
2112 | co "^4.6.0"
2113 | expect "^22.4.3"
2114 | graceful-fs "^4.1.11"
2115 | is-generator-fn "^1.0.0"
2116 | jest-diff "^22.4.3"
2117 | jest-matcher-utils "^22.4.3"
2118 | jest-message-util "^22.4.3"
2119 | jest-snapshot "^22.4.3"
2120 | jest-util "^22.4.3"
2121 | source-map-support "^0.5.0"
2122 |
2123 | jest-junit-reporter@~1.1.0:
2124 | version "1.1.0"
2125 | resolved "https://registry.yarnpkg.com/jest-junit-reporter/-/jest-junit-reporter-1.1.0.tgz#88d6006ec13f82df40c47882c8640989cdcb1434"
2126 | dependencies:
2127 | xml "^1.0.1"
2128 |
2129 | jest-leak-detector@^22.4.3:
2130 | version "22.4.3"
2131 | resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-22.4.3.tgz#2b7b263103afae8c52b6b91241a2de40117e5b35"
2132 | dependencies:
2133 | pretty-format "^22.4.3"
2134 |
2135 | jest-matcher-utils@^22.4.3:
2136 | version "22.4.3"
2137 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-22.4.3.tgz#4632fe428ebc73ebc194d3c7b65d37b161f710ff"
2138 | dependencies:
2139 | chalk "^2.0.1"
2140 | jest-get-type "^22.4.3"
2141 | pretty-format "^22.4.3"
2142 |
2143 | jest-message-util@^22.4.3:
2144 | version "22.4.3"
2145 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-22.4.3.tgz#cf3d38aafe4befddbfc455e57d65d5239e399eb7"
2146 | dependencies:
2147 | "@babel/code-frame" "^7.0.0-beta.35"
2148 | chalk "^2.0.1"
2149 | micromatch "^2.3.11"
2150 | slash "^1.0.0"
2151 | stack-utils "^1.0.1"
2152 |
2153 | jest-mock@^22.4.3:
2154 | version "22.4.3"
2155 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-22.4.3.tgz#f63ba2f07a1511772cdc7979733397df770aabc7"
2156 |
2157 | jest-regex-util@^22.4.3:
2158 | version "22.4.3"
2159 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-22.4.3.tgz#a826eb191cdf22502198c5401a1fc04de9cef5af"
2160 |
2161 | jest-resolve-dependencies@^22.4.3:
2162 | version "22.4.3"
2163 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-22.4.3.tgz#e2256a5a846732dc3969cb72f3c9ad7725a8195e"
2164 | dependencies:
2165 | jest-regex-util "^22.4.3"
2166 |
2167 | jest-resolve@^22.4.3:
2168 | version "22.4.3"
2169 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-22.4.3.tgz#0ce9d438c8438229aa9b916968ec6b05c1abb4ea"
2170 | dependencies:
2171 | browser-resolve "^1.11.2"
2172 | chalk "^2.0.1"
2173 |
2174 | jest-runner@^22.4.3:
2175 | version "22.4.3"
2176 | resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-22.4.3.tgz#298ddd6a22b992c64401b4667702b325e50610c3"
2177 | dependencies:
2178 | exit "^0.1.2"
2179 | jest-config "^22.4.3"
2180 | jest-docblock "^22.4.3"
2181 | jest-haste-map "^22.4.3"
2182 | jest-jasmine2 "^22.4.3"
2183 | jest-leak-detector "^22.4.3"
2184 | jest-message-util "^22.4.3"
2185 | jest-runtime "^22.4.3"
2186 | jest-util "^22.4.3"
2187 | jest-worker "^22.4.3"
2188 | throat "^4.0.0"
2189 |
2190 | jest-runtime@^22.4.3:
2191 | version "22.4.3"
2192 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-22.4.3.tgz#b69926c34b851b920f666c93e86ba2912087e3d0"
2193 | dependencies:
2194 | babel-core "^6.0.0"
2195 | babel-jest "^22.4.3"
2196 | babel-plugin-istanbul "^4.1.5"
2197 | chalk "^2.0.1"
2198 | convert-source-map "^1.4.0"
2199 | exit "^0.1.2"
2200 | graceful-fs "^4.1.11"
2201 | jest-config "^22.4.3"
2202 | jest-haste-map "^22.4.3"
2203 | jest-regex-util "^22.4.3"
2204 | jest-resolve "^22.4.3"
2205 | jest-util "^22.4.3"
2206 | jest-validate "^22.4.3"
2207 | json-stable-stringify "^1.0.1"
2208 | micromatch "^2.3.11"
2209 | realpath-native "^1.0.0"
2210 | slash "^1.0.0"
2211 | strip-bom "3.0.0"
2212 | write-file-atomic "^2.1.0"
2213 | yargs "^10.0.3"
2214 |
2215 | jest-serializer@^22.4.3:
2216 | version "22.4.3"
2217 | resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-22.4.3.tgz#a679b81a7f111e4766235f4f0c46d230ee0f7436"
2218 |
2219 | jest-snapshot@^22.4.3:
2220 | version "22.4.3"
2221 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-22.4.3.tgz#b5c9b42846ffb9faccb76b841315ba67887362d2"
2222 | dependencies:
2223 | chalk "^2.0.1"
2224 | jest-diff "^22.4.3"
2225 | jest-matcher-utils "^22.4.3"
2226 | mkdirp "^0.5.1"
2227 | natural-compare "^1.4.0"
2228 | pretty-format "^22.4.3"
2229 |
2230 | jest-util@^22.4.3:
2231 | version "22.4.3"
2232 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-22.4.3.tgz#c70fec8eec487c37b10b0809dc064a7ecf6aafac"
2233 | dependencies:
2234 | callsites "^2.0.0"
2235 | chalk "^2.0.1"
2236 | graceful-fs "^4.1.11"
2237 | is-ci "^1.0.10"
2238 | jest-message-util "^22.4.3"
2239 | mkdirp "^0.5.1"
2240 | source-map "^0.6.0"
2241 |
2242 | jest-validate@^22.4.3:
2243 | version "22.4.3"
2244 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-22.4.3.tgz#0780954a5a7daaeec8d3c10834b9280865976b30"
2245 | dependencies:
2246 | chalk "^2.0.1"
2247 | jest-config "^22.4.3"
2248 | jest-get-type "^22.4.3"
2249 | leven "^2.1.0"
2250 | pretty-format "^22.4.3"
2251 |
2252 | jest-worker@^22.4.3:
2253 | version "22.4.3"
2254 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-22.4.3.tgz#5c421417cba1c0abf64bf56bd5fb7968d79dd40b"
2255 | dependencies:
2256 | merge-stream "^1.0.1"
2257 |
2258 | jest@~22.4.3:
2259 | version "22.4.3"
2260 | resolved "https://registry.yarnpkg.com/jest/-/jest-22.4.3.tgz#2261f4b117dc46d9a4a1a673d2150958dee92f16"
2261 | dependencies:
2262 | import-local "^1.0.0"
2263 | jest-cli "^22.4.3"
2264 |
2265 | js-tokens@^3.0.0, js-tokens@^3.0.2:
2266 | version "3.0.2"
2267 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
2268 |
2269 | js-yaml@^3.7.0:
2270 | version "3.10.0"
2271 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc"
2272 | dependencies:
2273 | argparse "^1.0.7"
2274 | esprima "^4.0.0"
2275 |
2276 | jsbn@~0.1.0:
2277 | version "0.1.1"
2278 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
2279 |
2280 | jsdom@^11.5.1:
2281 | version "11.6.0"
2282 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-11.6.0.tgz#7334781595ee8bdeea9742fc33fab5cdad6d195f"
2283 | dependencies:
2284 | abab "^1.0.4"
2285 | acorn "^5.3.0"
2286 | acorn-globals "^4.1.0"
2287 | array-equal "^1.0.0"
2288 | browser-process-hrtime "^0.1.2"
2289 | content-type-parser "^1.0.2"
2290 | cssom ">= 0.3.2 < 0.4.0"
2291 | cssstyle ">= 0.2.37 < 0.3.0"
2292 | domexception "^1.0.0"
2293 | escodegen "^1.9.0"
2294 | html-encoding-sniffer "^1.0.2"
2295 | left-pad "^1.2.0"
2296 | nwmatcher "^1.4.3"
2297 | parse5 "^4.0.0"
2298 | pn "^1.1.0"
2299 | request "^2.83.0"
2300 | request-promise-native "^1.0.5"
2301 | sax "^1.2.4"
2302 | symbol-tree "^3.2.2"
2303 | tough-cookie "^2.3.3"
2304 | w3c-hr-time "^1.0.1"
2305 | webidl-conversions "^4.0.2"
2306 | whatwg-encoding "^1.0.3"
2307 | whatwg-url "^6.4.0"
2308 | ws "^4.0.0"
2309 | xml-name-validator "^3.0.0"
2310 |
2311 | jsesc@^1.3.0:
2312 | version "1.3.0"
2313 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b"
2314 |
2315 | json-schema-traverse@^0.3.0:
2316 | version "0.3.1"
2317 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340"
2318 |
2319 | json-schema@0.2.3:
2320 | version "0.2.3"
2321 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
2322 |
2323 | json-stable-stringify@^1.0.1:
2324 | version "1.0.1"
2325 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af"
2326 | dependencies:
2327 | jsonify "~0.0.0"
2328 |
2329 | json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.1:
2330 | version "5.0.1"
2331 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
2332 |
2333 | json5@^0.5.1:
2334 | version "0.5.1"
2335 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
2336 |
2337 | jsonfile@^4.0.0:
2338 | version "4.0.0"
2339 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb"
2340 | optionalDependencies:
2341 | graceful-fs "^4.1.6"
2342 |
2343 | jsonify@~0.0.0:
2344 | version "0.0.0"
2345 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
2346 |
2347 | jsonparse@^1.2.0:
2348 | version "1.3.1"
2349 | resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280"
2350 |
2351 | jsprim@^1.2.2:
2352 | version "1.4.1"
2353 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"
2354 | dependencies:
2355 | assert-plus "1.0.0"
2356 | extsprintf "1.3.0"
2357 | json-schema "0.2.3"
2358 | verror "1.10.0"
2359 |
2360 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0:
2361 | version "3.2.2"
2362 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
2363 | dependencies:
2364 | is-buffer "^1.1.5"
2365 |
2366 | kind-of@^4.0.0:
2367 | version "4.0.0"
2368 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57"
2369 | dependencies:
2370 | is-buffer "^1.1.5"
2371 |
2372 | kind-of@^5.0.0:
2373 | version "5.1.0"
2374 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d"
2375 |
2376 | kind-of@^6.0.0, kind-of@^6.0.2:
2377 | version "6.0.2"
2378 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051"
2379 |
2380 | lazy-cache@^1.0.3:
2381 | version "1.0.4"
2382 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"
2383 |
2384 | lcid@^1.0.0:
2385 | version "1.0.0"
2386 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835"
2387 | dependencies:
2388 | invert-kv "^1.0.0"
2389 |
2390 | left-pad@^1.2.0:
2391 | version "1.2.0"
2392 | resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.2.0.tgz#d30a73c6b8201d8f7d8e7956ba9616087a68e0ee"
2393 |
2394 | leven@^2.1.0:
2395 | version "2.1.0"
2396 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580"
2397 |
2398 | levn@~0.3.0:
2399 | version "0.3.0"
2400 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
2401 | dependencies:
2402 | prelude-ls "~1.1.2"
2403 | type-check "~0.3.2"
2404 |
2405 | load-json-file@^1.0.0:
2406 | version "1.1.0"
2407 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0"
2408 | dependencies:
2409 | graceful-fs "^4.1.2"
2410 | parse-json "^2.2.0"
2411 | pify "^2.0.0"
2412 | pinkie-promise "^2.0.0"
2413 | strip-bom "^2.0.0"
2414 |
2415 | load-json-file@^2.0.0:
2416 | version "2.0.0"
2417 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8"
2418 | dependencies:
2419 | graceful-fs "^4.1.2"
2420 | parse-json "^2.2.0"
2421 | pify "^2.0.0"
2422 | strip-bom "^3.0.0"
2423 |
2424 | locate-path@^2.0.0:
2425 | version "2.0.0"
2426 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
2427 | dependencies:
2428 | p-locate "^2.0.0"
2429 | path-exists "^3.0.0"
2430 |
2431 | lodash._reinterpolate@~3.0.0:
2432 | version "3.0.0"
2433 | resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d"
2434 |
2435 | lodash.sortby@^4.7.0:
2436 | version "4.7.0"
2437 | resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438"
2438 |
2439 | lodash.template@^4.0.2:
2440 | version "4.4.0"
2441 | resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.4.0.tgz#e73a0385c8355591746e020b99679c690e68fba0"
2442 | dependencies:
2443 | lodash._reinterpolate "~3.0.0"
2444 | lodash.templatesettings "^4.0.0"
2445 |
2446 | lodash.templatesettings@^4.0.0:
2447 | version "4.1.0"
2448 | resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-4.1.0.tgz#2b4d4e95ba440d915ff08bc899e4553666713316"
2449 | dependencies:
2450 | lodash._reinterpolate "~3.0.0"
2451 |
2452 | lodash@^4.0.0, lodash@^4.13.1, lodash@^4.14.0, lodash@^4.17.4, lodash@^4.2.1:
2453 | version "4.17.4"
2454 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae"
2455 |
2456 | lodash@^4.17.10:
2457 | version "4.17.10"
2458 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7"
2459 |
2460 | longest@^1.0.1:
2461 | version "1.0.1"
2462 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097"
2463 |
2464 | loose-envify@^1.0.0:
2465 | version "1.3.1"
2466 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848"
2467 | dependencies:
2468 | js-tokens "^3.0.0"
2469 |
2470 | loud-rejection@^1.0.0:
2471 | version "1.6.0"
2472 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f"
2473 | dependencies:
2474 | currently-unhandled "^0.4.1"
2475 | signal-exit "^3.0.0"
2476 |
2477 | lru-cache@^4.0.1:
2478 | version "4.1.1"
2479 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55"
2480 | dependencies:
2481 | pseudomap "^1.0.2"
2482 | yallist "^2.1.2"
2483 |
2484 | magic-string@^0.22.4:
2485 | version "0.22.4"
2486 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.22.4.tgz#31039b4e40366395618c1d6cf8193c53917475ff"
2487 | dependencies:
2488 | vlq "^0.2.1"
2489 |
2490 | make-error@^1.1.1:
2491 | version "1.3.2"
2492 | resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.2.tgz#8762ffad2444dd8ff1f7c819629fa28e24fea1c4"
2493 |
2494 | makeerror@1.0.x:
2495 | version "1.0.11"
2496 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c"
2497 | dependencies:
2498 | tmpl "1.0.x"
2499 |
2500 | map-cache@^0.2.2:
2501 | version "0.2.2"
2502 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"
2503 |
2504 | map-obj@^1.0.0, map-obj@^1.0.1:
2505 | version "1.0.1"
2506 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d"
2507 |
2508 | map-visit@^1.0.0:
2509 | version "1.0.0"
2510 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"
2511 | dependencies:
2512 | object-visit "^1.0.0"
2513 |
2514 | mem@^1.1.0:
2515 | version "1.1.0"
2516 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76"
2517 | dependencies:
2518 | mimic-fn "^1.0.0"
2519 |
2520 | meow@^3.3.0:
2521 | version "3.7.0"
2522 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb"
2523 | dependencies:
2524 | camelcase-keys "^2.0.0"
2525 | decamelize "^1.1.2"
2526 | loud-rejection "^1.0.0"
2527 | map-obj "^1.0.1"
2528 | minimist "^1.1.3"
2529 | normalize-package-data "^2.3.4"
2530 | object-assign "^4.0.1"
2531 | read-pkg-up "^1.0.1"
2532 | redent "^1.0.0"
2533 | trim-newlines "^1.0.0"
2534 |
2535 | merge-stream@^1.0.1:
2536 | version "1.0.1"
2537 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1"
2538 | dependencies:
2539 | readable-stream "^2.0.1"
2540 |
2541 | merge@^1.1.3:
2542 | version "1.2.0"
2543 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da"
2544 |
2545 | micromatch@^2.1.5, micromatch@^2.3.11:
2546 | version "2.3.11"
2547 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565"
2548 | dependencies:
2549 | arr-diff "^2.0.0"
2550 | array-unique "^0.2.1"
2551 | braces "^1.8.2"
2552 | expand-brackets "^0.1.4"
2553 | extglob "^0.3.1"
2554 | filename-regex "^2.0.0"
2555 | is-extglob "^1.0.0"
2556 | is-glob "^2.0.1"
2557 | kind-of "^3.0.2"
2558 | normalize-path "^2.0.1"
2559 | object.omit "^2.0.0"
2560 | parse-glob "^3.0.4"
2561 | regex-cache "^0.4.2"
2562 |
2563 | micromatch@^3.1.8:
2564 | version "3.1.10"
2565 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23"
2566 | dependencies:
2567 | arr-diff "^4.0.0"
2568 | array-unique "^0.3.2"
2569 | braces "^2.3.1"
2570 | define-property "^2.0.2"
2571 | extend-shallow "^3.0.2"
2572 | extglob "^2.0.4"
2573 | fragment-cache "^0.2.1"
2574 | kind-of "^6.0.2"
2575 | nanomatch "^1.2.9"
2576 | object.pick "^1.3.0"
2577 | regex-not "^1.0.0"
2578 | snapdragon "^0.8.1"
2579 | to-regex "^3.0.2"
2580 |
2581 | mime-db@~1.30.0:
2582 | version "1.30.0"
2583 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01"
2584 |
2585 | mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.7:
2586 | version "2.1.17"
2587 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a"
2588 | dependencies:
2589 | mime-db "~1.30.0"
2590 |
2591 | mimic-fn@^1.0.0:
2592 | version "1.1.0"
2593 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18"
2594 |
2595 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4:
2596 | version "3.0.4"
2597 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
2598 | dependencies:
2599 | brace-expansion "^1.1.7"
2600 |
2601 | minimist@0.0.8:
2602 | version "0.0.8"
2603 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
2604 |
2605 | minimist@^1.1.0, minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0:
2606 | version "1.2.0"
2607 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
2608 |
2609 | minimist@~0.0.1:
2610 | version "0.0.10"
2611 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf"
2612 |
2613 | mixin-deep@^1.2.0:
2614 | version "1.3.1"
2615 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe"
2616 | dependencies:
2617 | for-in "^1.0.2"
2618 | is-extendable "^1.0.1"
2619 |
2620 | "mkdirp@>=0.5 0", mkdirp@^0.5.1:
2621 | version "0.5.1"
2622 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
2623 | dependencies:
2624 | minimist "0.0.8"
2625 |
2626 | modify-values@^1.0.0:
2627 | version "1.0.0"
2628 | resolved "https://registry.yarnpkg.com/modify-values/-/modify-values-1.0.0.tgz#e2b6cdeb9ce19f99317a53722f3dbf5df5eaaab2"
2629 |
2630 | ms@2.0.0:
2631 | version "2.0.0"
2632 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
2633 |
2634 | nan@^2.3.0:
2635 | version "2.8.0"
2636 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.8.0.tgz#ed715f3fe9de02b57a5e6252d90a96675e1f085a"
2637 |
2638 | nanomatch@^1.2.9:
2639 | version "1.2.9"
2640 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.9.tgz#879f7150cb2dab7a471259066c104eee6e0fa7c2"
2641 | dependencies:
2642 | arr-diff "^4.0.0"
2643 | array-unique "^0.3.2"
2644 | define-property "^2.0.2"
2645 | extend-shallow "^3.0.2"
2646 | fragment-cache "^0.2.1"
2647 | is-odd "^2.0.0"
2648 | is-windows "^1.0.2"
2649 | kind-of "^6.0.2"
2650 | object.pick "^1.3.0"
2651 | regex-not "^1.0.0"
2652 | snapdragon "^0.8.1"
2653 | to-regex "^3.0.1"
2654 |
2655 | natural-compare@^1.4.0:
2656 | version "1.4.0"
2657 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
2658 |
2659 | node-int64@^0.4.0:
2660 | version "0.4.0"
2661 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b"
2662 |
2663 | node-notifier@^5.2.1:
2664 | version "5.2.1"
2665 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.2.1.tgz#fa313dd08f5517db0e2502e5758d664ac69f9dea"
2666 | dependencies:
2667 | growly "^1.3.0"
2668 | semver "^5.4.1"
2669 | shellwords "^0.1.1"
2670 | which "^1.3.0"
2671 |
2672 | node-pre-gyp@^0.6.39:
2673 | version "0.6.39"
2674 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649"
2675 | dependencies:
2676 | detect-libc "^1.0.2"
2677 | hawk "3.1.3"
2678 | mkdirp "^0.5.1"
2679 | nopt "^4.0.1"
2680 | npmlog "^4.0.2"
2681 | rc "^1.1.7"
2682 | request "2.81.0"
2683 | rimraf "^2.6.1"
2684 | semver "^5.3.0"
2685 | tar "^2.2.1"
2686 | tar-pack "^3.4.0"
2687 |
2688 | nopt@^4.0.1:
2689 | version "4.0.1"
2690 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d"
2691 | dependencies:
2692 | abbrev "1"
2693 | osenv "^0.1.4"
2694 |
2695 | normalize-package-data@^2.3.0, normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, normalize-package-data@^2.3.5:
2696 | version "2.4.0"
2697 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f"
2698 | dependencies:
2699 | hosted-git-info "^2.1.4"
2700 | is-builtin-module "^1.0.0"
2701 | semver "2 || 3 || 4 || 5"
2702 | validate-npm-package-license "^3.0.1"
2703 |
2704 | normalize-path@^2.0.0, normalize-path@^2.0.1:
2705 | version "2.1.1"
2706 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
2707 | dependencies:
2708 | remove-trailing-separator "^1.0.1"
2709 |
2710 | npm-run-path@^2.0.0:
2711 | version "2.0.2"
2712 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
2713 | dependencies:
2714 | path-key "^2.0.0"
2715 |
2716 | npmlog@^4.0.2:
2717 | version "4.1.2"
2718 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
2719 | dependencies:
2720 | are-we-there-yet "~1.1.2"
2721 | console-control-strings "~1.1.0"
2722 | gauge "~2.7.3"
2723 | set-blocking "~2.0.0"
2724 |
2725 | null-check@^1.0.0:
2726 | version "1.0.0"
2727 | resolved "https://registry.yarnpkg.com/null-check/-/null-check-1.0.0.tgz#977dffd7176012b9ec30d2a39db5cf72a0439edd"
2728 |
2729 | number-is-nan@^1.0.0:
2730 | version "1.0.1"
2731 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
2732 |
2733 | nwmatcher@^1.4.3:
2734 | version "1.4.3"
2735 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.3.tgz#64348e3b3d80f035b40ac11563d278f8b72db89c"
2736 |
2737 | oauth-sign@~0.8.1, oauth-sign@~0.8.2:
2738 | version "0.8.2"
2739 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"
2740 |
2741 | object-assign@^4.0.1, object-assign@^4.1.0:
2742 | version "4.1.1"
2743 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
2744 |
2745 | object-copy@^0.1.0:
2746 | version "0.1.0"
2747 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c"
2748 | dependencies:
2749 | copy-descriptor "^0.1.0"
2750 | define-property "^0.2.5"
2751 | kind-of "^3.0.3"
2752 |
2753 | object-keys@^1.0.8:
2754 | version "1.0.11"
2755 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d"
2756 |
2757 | object-visit@^1.0.0:
2758 | version "1.0.1"
2759 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb"
2760 | dependencies:
2761 | isobject "^3.0.0"
2762 |
2763 | object.getownpropertydescriptors@^2.0.3:
2764 | version "2.0.3"
2765 | resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16"
2766 | dependencies:
2767 | define-properties "^1.1.2"
2768 | es-abstract "^1.5.1"
2769 |
2770 | object.omit@^2.0.0:
2771 | version "2.0.1"
2772 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"
2773 | dependencies:
2774 | for-own "^0.1.4"
2775 | is-extendable "^0.1.1"
2776 |
2777 | object.pick@^1.3.0:
2778 | version "1.3.0"
2779 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747"
2780 | dependencies:
2781 | isobject "^3.0.1"
2782 |
2783 | once@^1.3.0, once@^1.3.3, once@^1.4.0:
2784 | version "1.4.0"
2785 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
2786 | dependencies:
2787 | wrappy "1"
2788 |
2789 | optimist@^0.6.1:
2790 | version "0.6.1"
2791 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686"
2792 | dependencies:
2793 | minimist "~0.0.1"
2794 | wordwrap "~0.0.2"
2795 |
2796 | optionator@^0.8.1:
2797 | version "0.8.2"
2798 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64"
2799 | dependencies:
2800 | deep-is "~0.1.3"
2801 | fast-levenshtein "~2.0.4"
2802 | levn "~0.3.0"
2803 | prelude-ls "~1.1.2"
2804 | type-check "~0.3.2"
2805 | wordwrap "~1.0.0"
2806 |
2807 | os-homedir@^1.0.0:
2808 | version "1.0.2"
2809 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
2810 |
2811 | os-locale@^2.0.0:
2812 | version "2.1.0"
2813 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2"
2814 | dependencies:
2815 | execa "^0.7.0"
2816 | lcid "^1.0.0"
2817 | mem "^1.1.0"
2818 |
2819 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1:
2820 | version "1.0.2"
2821 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
2822 |
2823 | osenv@^0.1.4:
2824 | version "0.1.4"
2825 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644"
2826 | dependencies:
2827 | os-homedir "^1.0.0"
2828 | os-tmpdir "^1.0.0"
2829 |
2830 | p-finally@^1.0.0:
2831 | version "1.0.0"
2832 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
2833 |
2834 | p-limit@^1.1.0:
2835 | version "1.2.0"
2836 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.2.0.tgz#0e92b6bedcb59f022c13d0f1949dc82d15909f1c"
2837 | dependencies:
2838 | p-try "^1.0.0"
2839 |
2840 | p-locate@^2.0.0:
2841 | version "2.0.0"
2842 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
2843 | dependencies:
2844 | p-limit "^1.1.0"
2845 |
2846 | p-try@^1.0.0:
2847 | version "1.0.0"
2848 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"
2849 |
2850 | parse-github-repo-url@^1.3.0:
2851 | version "1.4.1"
2852 | resolved "https://registry.yarnpkg.com/parse-github-repo-url/-/parse-github-repo-url-1.4.1.tgz#9e7d8bb252a6cb6ba42595060b7bf6df3dbc1f50"
2853 |
2854 | parse-glob@^3.0.4:
2855 | version "3.0.4"
2856 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c"
2857 | dependencies:
2858 | glob-base "^0.3.0"
2859 | is-dotfile "^1.0.0"
2860 | is-extglob "^1.0.0"
2861 | is-glob "^2.0.0"
2862 |
2863 | parse-json@^2.2.0:
2864 | version "2.2.0"
2865 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
2866 | dependencies:
2867 | error-ex "^1.2.0"
2868 |
2869 | parse5@^4.0.0:
2870 | version "4.0.0"
2871 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608"
2872 |
2873 | pascalcase@^0.1.1:
2874 | version "0.1.1"
2875 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14"
2876 |
2877 | path-exists@^2.0.0:
2878 | version "2.1.0"
2879 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b"
2880 | dependencies:
2881 | pinkie-promise "^2.0.0"
2882 |
2883 | path-exists@^3.0.0:
2884 | version "3.0.0"
2885 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
2886 |
2887 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1:
2888 | version "1.0.1"
2889 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
2890 |
2891 | path-key@^2.0.0:
2892 | version "2.0.1"
2893 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
2894 |
2895 | path-parse@^1.0.5:
2896 | version "1.0.5"
2897 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1"
2898 |
2899 | path-type@^1.0.0:
2900 | version "1.1.0"
2901 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441"
2902 | dependencies:
2903 | graceful-fs "^4.1.2"
2904 | pify "^2.0.0"
2905 | pinkie-promise "^2.0.0"
2906 |
2907 | path-type@^2.0.0:
2908 | version "2.0.0"
2909 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73"
2910 | dependencies:
2911 | pify "^2.0.0"
2912 |
2913 | performance-now@^0.2.0:
2914 | version "0.2.0"
2915 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5"
2916 |
2917 | performance-now@^2.1.0:
2918 | version "2.1.0"
2919 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"
2920 |
2921 | pify@^2.0.0, pify@^2.3.0:
2922 | version "2.3.0"
2923 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
2924 |
2925 | pinkie-promise@^2.0.0:
2926 | version "2.0.1"
2927 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
2928 | dependencies:
2929 | pinkie "^2.0.0"
2930 |
2931 | pinkie@^2.0.0:
2932 | version "2.0.4"
2933 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
2934 |
2935 | pkg-dir@^2.0.0:
2936 | version "2.0.0"
2937 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b"
2938 | dependencies:
2939 | find-up "^2.1.0"
2940 |
2941 | pn@^1.1.0:
2942 | version "1.1.0"
2943 | resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb"
2944 |
2945 | posix-character-classes@^0.1.0:
2946 | version "0.1.1"
2947 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"
2948 |
2949 | prelude-ls@~1.1.2:
2950 | version "1.1.2"
2951 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
2952 |
2953 | preserve@^0.2.0:
2954 | version "0.2.0"
2955 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
2956 |
2957 | pretty-format@^22.4.3:
2958 | version "22.4.3"
2959 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-22.4.3.tgz#f873d780839a9c02e9664c8a082e9ee79eaac16f"
2960 | dependencies:
2961 | ansi-regex "^3.0.0"
2962 | ansi-styles "^3.2.0"
2963 |
2964 | private@^0.1.7, private@^0.1.8:
2965 | version "0.1.8"
2966 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff"
2967 |
2968 | process-nextick-args@~1.0.6:
2969 | version "1.0.7"
2970 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3"
2971 |
2972 | pseudomap@^1.0.2:
2973 | version "1.0.2"
2974 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
2975 |
2976 | punycode@^1.4.1:
2977 | version "1.4.1"
2978 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
2979 |
2980 | punycode@^2.1.0:
2981 | version "2.1.0"
2982 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.0.tgz#5f863edc89b96db09074bad7947bf09056ca4e7d"
2983 |
2984 | q@^1.4.1:
2985 | version "1.5.1"
2986 | resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7"
2987 |
2988 | qs@~6.4.0:
2989 | version "6.4.0"
2990 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233"
2991 |
2992 | qs@~6.5.1:
2993 | version "6.5.1"
2994 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8"
2995 |
2996 | randomatic@^1.1.3:
2997 | version "1.1.7"
2998 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c"
2999 | dependencies:
3000 | is-number "^3.0.0"
3001 | kind-of "^4.0.0"
3002 |
3003 | rc@^1.1.7:
3004 | version "1.2.4"
3005 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.4.tgz#a0f606caae2a3b862bbd0ef85482c0125b315fa3"
3006 | dependencies:
3007 | deep-extend "~0.4.0"
3008 | ini "~1.3.0"
3009 | minimist "^1.2.0"
3010 | strip-json-comments "~2.0.1"
3011 |
3012 | read-pkg-up@^1.0.1:
3013 | version "1.0.1"
3014 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02"
3015 | dependencies:
3016 | find-up "^1.0.0"
3017 | read-pkg "^1.0.0"
3018 |
3019 | read-pkg-up@^2.0.0:
3020 | version "2.0.0"
3021 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be"
3022 | dependencies:
3023 | find-up "^2.0.0"
3024 | read-pkg "^2.0.0"
3025 |
3026 | read-pkg@^1.0.0, read-pkg@^1.1.0:
3027 | version "1.1.0"
3028 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28"
3029 | dependencies:
3030 | load-json-file "^1.0.0"
3031 | normalize-package-data "^2.3.2"
3032 | path-type "^1.0.0"
3033 |
3034 | read-pkg@^2.0.0:
3035 | version "2.0.0"
3036 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8"
3037 | dependencies:
3038 | load-json-file "^2.0.0"
3039 | normalize-package-data "^2.3.2"
3040 | path-type "^2.0.0"
3041 |
3042 | readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.1.5, readable-stream@^2.2.2:
3043 | version "2.3.3"
3044 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c"
3045 | dependencies:
3046 | core-util-is "~1.0.0"
3047 | inherits "~2.0.3"
3048 | isarray "~1.0.0"
3049 | process-nextick-args "~1.0.6"
3050 | safe-buffer "~5.1.1"
3051 | string_decoder "~1.0.3"
3052 | util-deprecate "~1.0.1"
3053 |
3054 | readdirp@^2.0.0:
3055 | version "2.1.0"
3056 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78"
3057 | dependencies:
3058 | graceful-fs "^4.1.2"
3059 | minimatch "^3.0.2"
3060 | readable-stream "^2.0.2"
3061 | set-immediate-shim "^1.0.1"
3062 |
3063 | realpath-native@^1.0.0:
3064 | version "1.0.0"
3065 | resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.0.0.tgz#7885721a83b43bd5327609f0ddecb2482305fdf0"
3066 | dependencies:
3067 | util.promisify "^1.0.0"
3068 |
3069 | redent@^1.0.0:
3070 | version "1.0.0"
3071 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde"
3072 | dependencies:
3073 | indent-string "^2.1.0"
3074 | strip-indent "^1.0.1"
3075 |
3076 | regenerator-runtime@^0.11.0:
3077 | version "0.11.1"
3078 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9"
3079 |
3080 | regex-cache@^0.4.2:
3081 | version "0.4.4"
3082 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd"
3083 | dependencies:
3084 | is-equal-shallow "^0.1.3"
3085 |
3086 | regex-not@^1.0.0, regex-not@^1.0.2:
3087 | version "1.0.2"
3088 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c"
3089 | dependencies:
3090 | extend-shallow "^3.0.2"
3091 | safe-regex "^1.1.0"
3092 |
3093 | remove-trailing-separator@^1.0.1:
3094 | version "1.1.0"
3095 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
3096 |
3097 | repeat-element@^1.1.2:
3098 | version "1.1.2"
3099 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a"
3100 |
3101 | repeat-string@^1.5.2, repeat-string@^1.6.1:
3102 | version "1.6.1"
3103 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
3104 |
3105 | repeating@^2.0.0:
3106 | version "2.0.1"
3107 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda"
3108 | dependencies:
3109 | is-finite "^1.0.0"
3110 |
3111 | request-promise-core@1.1.1:
3112 | version "1.1.1"
3113 | resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.1.tgz#3eee00b2c5aa83239cfb04c5700da36f81cd08b6"
3114 | dependencies:
3115 | lodash "^4.13.1"
3116 |
3117 | request-promise-native@^1.0.5:
3118 | version "1.0.5"
3119 | resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.5.tgz#5281770f68e0c9719e5163fd3fab482215f4fda5"
3120 | dependencies:
3121 | request-promise-core "1.1.1"
3122 | stealthy-require "^1.1.0"
3123 | tough-cookie ">=2.3.3"
3124 |
3125 | request@2.81.0:
3126 | version "2.81.0"
3127 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0"
3128 | dependencies:
3129 | aws-sign2 "~0.6.0"
3130 | aws4 "^1.2.1"
3131 | caseless "~0.12.0"
3132 | combined-stream "~1.0.5"
3133 | extend "~3.0.0"
3134 | forever-agent "~0.6.1"
3135 | form-data "~2.1.1"
3136 | har-validator "~4.2.1"
3137 | hawk "~3.1.3"
3138 | http-signature "~1.1.0"
3139 | is-typedarray "~1.0.0"
3140 | isstream "~0.1.2"
3141 | json-stringify-safe "~5.0.1"
3142 | mime-types "~2.1.7"
3143 | oauth-sign "~0.8.1"
3144 | performance-now "^0.2.0"
3145 | qs "~6.4.0"
3146 | safe-buffer "^5.0.1"
3147 | stringstream "~0.0.4"
3148 | tough-cookie "~2.3.0"
3149 | tunnel-agent "^0.6.0"
3150 | uuid "^3.0.0"
3151 |
3152 | request@^2.83.0:
3153 | version "2.83.0"
3154 | resolved "https://registry.yarnpkg.com/request/-/request-2.83.0.tgz#ca0b65da02ed62935887808e6f510381034e3356"
3155 | dependencies:
3156 | aws-sign2 "~0.7.0"
3157 | aws4 "^1.6.0"
3158 | caseless "~0.12.0"
3159 | combined-stream "~1.0.5"
3160 | extend "~3.0.1"
3161 | forever-agent "~0.6.1"
3162 | form-data "~2.3.1"
3163 | har-validator "~5.0.3"
3164 | hawk "~6.0.2"
3165 | http-signature "~1.2.0"
3166 | is-typedarray "~1.0.0"
3167 | isstream "~0.1.2"
3168 | json-stringify-safe "~5.0.1"
3169 | mime-types "~2.1.17"
3170 | oauth-sign "~0.8.2"
3171 | performance-now "^2.1.0"
3172 | qs "~6.5.1"
3173 | safe-buffer "^5.1.1"
3174 | stringstream "~0.0.5"
3175 | tough-cookie "~2.3.3"
3176 | tunnel-agent "^0.6.0"
3177 | uuid "^3.1.0"
3178 |
3179 | require-directory@^2.1.1:
3180 | version "2.1.1"
3181 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
3182 |
3183 | require-main-filename@^1.0.1:
3184 | version "1.0.1"
3185 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1"
3186 |
3187 | resolve-cwd@^2.0.0:
3188 | version "2.0.0"
3189 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a"
3190 | dependencies:
3191 | resolve-from "^3.0.0"
3192 |
3193 | resolve-from@^3.0.0:
3194 | version "3.0.0"
3195 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748"
3196 |
3197 | resolve-url@^0.2.1:
3198 | version "0.2.1"
3199 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
3200 |
3201 | resolve@1.1.7:
3202 | version "1.1.7"
3203 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b"
3204 |
3205 | resolve@^1.1.6, resolve@^1.1.7, resolve@^1.3.2, resolve@^1.4.0:
3206 | version "1.5.0"
3207 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.5.0.tgz#1f09acce796c9a762579f31b2c1cc4c3cddf9f36"
3208 | dependencies:
3209 | path-parse "^1.0.5"
3210 |
3211 | ret@~0.1.10:
3212 | version "0.1.15"
3213 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"
3214 |
3215 | right-align@^0.1.1:
3216 | version "0.1.3"
3217 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef"
3218 | dependencies:
3219 | align-text "^0.1.1"
3220 |
3221 | rimraf@2, rimraf@^2.5.1, rimraf@^2.5.4, rimraf@^2.6.1, rimraf@~2.6.2:
3222 | version "2.6.2"
3223 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36"
3224 | dependencies:
3225 | glob "^7.0.5"
3226 |
3227 | rollup-plugin-commonjs@~8.3.0:
3228 | version "8.3.0"
3229 | resolved "https://registry.yarnpkg.com/rollup-plugin-commonjs/-/rollup-plugin-commonjs-8.3.0.tgz#91b4ba18f340951e39ed7b1901f377a80ab3f9c3"
3230 | dependencies:
3231 | acorn "^5.2.1"
3232 | estree-walker "^0.5.0"
3233 | magic-string "^0.22.4"
3234 | resolve "^1.4.0"
3235 | rollup-pluginutils "^2.0.1"
3236 |
3237 | rollup-plugin-node-resolve@~3.3.0:
3238 | version "3.3.0"
3239 | resolved "https://registry.yarnpkg.com/rollup-plugin-node-resolve/-/rollup-plugin-node-resolve-3.3.0.tgz#c26d110a36812cbefa7ce117cadcd3439aa1c713"
3240 | dependencies:
3241 | builtin-modules "^2.0.0"
3242 | is-module "^1.0.0"
3243 | resolve "^1.1.6"
3244 |
3245 | rollup-plugin-sourcemaps@~0.4.2:
3246 | version "0.4.2"
3247 | resolved "https://registry.yarnpkg.com/rollup-plugin-sourcemaps/-/rollup-plugin-sourcemaps-0.4.2.tgz#62125aa94087aadf7b83ef4dfaf629b473135e87"
3248 | dependencies:
3249 | rollup-pluginutils "^2.0.1"
3250 | source-map-resolve "^0.5.0"
3251 |
3252 | rollup-plugin-uglify@~3.0.0:
3253 | version "3.0.0"
3254 | resolved "https://registry.yarnpkg.com/rollup-plugin-uglify/-/rollup-plugin-uglify-3.0.0.tgz#a34eca24617709c6bf1778e9653baafa06099b86"
3255 | dependencies:
3256 | uglify-es "^3.3.7"
3257 |
3258 | rollup-pluginutils@^2.0.1:
3259 | version "2.0.1"
3260 | resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.0.1.tgz#7ec95b3573f6543a46a6461bd9a7c544525d0fc0"
3261 | dependencies:
3262 | estree-walker "^0.3.0"
3263 | micromatch "^2.3.11"
3264 |
3265 | rollup@~0.42.0:
3266 | version "0.42.0"
3267 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-0.42.0.tgz#56e791b3a2f3dd7190bbb80a375675f2fe0f9b23"
3268 | dependencies:
3269 | source-map-support "^0.4.0"
3270 |
3271 | safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
3272 | version "5.1.1"
3273 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853"
3274 |
3275 | safe-regex@^1.1.0:
3276 | version "1.1.0"
3277 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e"
3278 | dependencies:
3279 | ret "~0.1.10"
3280 |
3281 | sane@^2.0.0:
3282 | version "2.3.0"
3283 | resolved "https://registry.yarnpkg.com/sane/-/sane-2.3.0.tgz#3f3df584abf69e63d4bb74f0f8c42468e4d7d46b"
3284 | dependencies:
3285 | anymatch "^1.3.0"
3286 | exec-sh "^0.2.0"
3287 | fb-watchman "^2.0.0"
3288 | minimatch "^3.0.2"
3289 | minimist "^1.1.1"
3290 | walker "~1.0.5"
3291 | watch "~0.18.0"
3292 | optionalDependencies:
3293 | fsevents "^1.1.1"
3294 |
3295 | sax@^1.2.4:
3296 | version "1.2.4"
3297 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
3298 |
3299 | "semver@2 || 3 || 4 || 5", semver@^5.0.1, semver@^5.1.0, semver@^5.3.0, semver@^5.4.1:
3300 | version "5.5.0"
3301 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab"
3302 |
3303 | set-blocking@^2.0.0, set-blocking@~2.0.0:
3304 | version "2.0.0"
3305 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
3306 |
3307 | set-immediate-shim@^1.0.1:
3308 | version "1.0.1"
3309 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61"
3310 |
3311 | set-value@^0.4.3:
3312 | version "0.4.3"
3313 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1"
3314 | dependencies:
3315 | extend-shallow "^2.0.1"
3316 | is-extendable "^0.1.1"
3317 | is-plain-object "^2.0.1"
3318 | to-object-path "^0.3.0"
3319 |
3320 | set-value@^2.0.0:
3321 | version "2.0.0"
3322 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274"
3323 | dependencies:
3324 | extend-shallow "^2.0.1"
3325 | is-extendable "^0.1.1"
3326 | is-plain-object "^2.0.3"
3327 | split-string "^3.0.1"
3328 |
3329 | shebang-command@^1.2.0:
3330 | version "1.2.0"
3331 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
3332 | dependencies:
3333 | shebang-regex "^1.0.0"
3334 |
3335 | shebang-regex@^1.0.0:
3336 | version "1.0.0"
3337 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
3338 |
3339 | shell-quote@^1.6.1:
3340 | version "1.6.1"
3341 | resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767"
3342 | dependencies:
3343 | array-filter "~0.0.0"
3344 | array-map "~0.0.0"
3345 | array-reduce "~0.0.0"
3346 | jsonify "~0.0.0"
3347 |
3348 | shellwords@^0.1.1:
3349 | version "0.1.1"
3350 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b"
3351 |
3352 | signal-exit@^3.0.0, signal-exit@^3.0.2:
3353 | version "3.0.2"
3354 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
3355 |
3356 | slash@^1.0.0:
3357 | version "1.0.0"
3358 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"
3359 |
3360 | snapdragon-node@^2.0.1:
3361 | version "2.1.1"
3362 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b"
3363 | dependencies:
3364 | define-property "^1.0.0"
3365 | isobject "^3.0.0"
3366 | snapdragon-util "^3.0.1"
3367 |
3368 | snapdragon-util@^3.0.1:
3369 | version "3.0.1"
3370 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2"
3371 | dependencies:
3372 | kind-of "^3.2.0"
3373 |
3374 | snapdragon@^0.8.1:
3375 | version "0.8.2"
3376 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d"
3377 | dependencies:
3378 | base "^0.11.1"
3379 | debug "^2.2.0"
3380 | define-property "^0.2.5"
3381 | extend-shallow "^2.0.1"
3382 | map-cache "^0.2.2"
3383 | source-map "^0.5.6"
3384 | source-map-resolve "^0.5.0"
3385 | use "^3.1.0"
3386 |
3387 | sntp@1.x.x:
3388 | version "1.0.9"
3389 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198"
3390 | dependencies:
3391 | hoek "2.x.x"
3392 |
3393 | sntp@2.x.x:
3394 | version "2.1.0"
3395 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.1.0.tgz#2c6cec14fedc2222739caf9b5c3d85d1cc5a2cc8"
3396 | dependencies:
3397 | hoek "4.x.x"
3398 |
3399 | source-map-resolve@^0.5.0:
3400 | version "0.5.1"
3401 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.1.tgz#7ad0f593f2281598e854df80f19aae4b92d7a11a"
3402 | dependencies:
3403 | atob "^2.0.0"
3404 | decode-uri-component "^0.2.0"
3405 | resolve-url "^0.2.1"
3406 | source-map-url "^0.4.0"
3407 | urix "^0.1.0"
3408 |
3409 | source-map-support@^0.4.0, source-map-support@^0.4.15:
3410 | version "0.4.18"
3411 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f"
3412 | dependencies:
3413 | source-map "^0.5.6"
3414 |
3415 | source-map-support@^0.5.0:
3416 | version "0.5.2"
3417 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.2.tgz#1a6297fd5b2e762b39688c7fc91233b60984f0a5"
3418 | dependencies:
3419 | source-map "^0.6.0"
3420 |
3421 | source-map-support@^0.5.3, source-map-support@^0.5.5:
3422 | version "0.5.6"
3423 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.6.tgz#4435cee46b1aab62b8e8610ce60f788091c51c13"
3424 | dependencies:
3425 | buffer-from "^1.0.0"
3426 | source-map "^0.6.0"
3427 |
3428 | source-map-url@^0.4.0:
3429 | version "0.4.0"
3430 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3"
3431 |
3432 | source-map@^0.4.4:
3433 | version "0.4.4"
3434 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b"
3435 | dependencies:
3436 | amdefine ">=0.0.4"
3437 |
3438 | source-map@^0.5.3, source-map@^0.5.6, source-map@^0.5.7, source-map@~0.5.1, source-map@~0.5.6:
3439 | version "0.5.7"
3440 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
3441 |
3442 | source-map@^0.6.0, source-map@~0.6.1:
3443 | version "0.6.1"
3444 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
3445 |
3446 | spdx-correct@~1.0.0:
3447 | version "1.0.2"
3448 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40"
3449 | dependencies:
3450 | spdx-license-ids "^1.0.2"
3451 |
3452 | spdx-expression-parse@~1.0.0:
3453 | version "1.0.4"
3454 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c"
3455 |
3456 | spdx-license-ids@^1.0.2:
3457 | version "1.2.2"
3458 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57"
3459 |
3460 | split-string@^3.0.1, split-string@^3.0.2:
3461 | version "3.1.0"
3462 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2"
3463 | dependencies:
3464 | extend-shallow "^3.0.0"
3465 |
3466 | split2@^2.0.0:
3467 | version "2.2.0"
3468 | resolved "https://registry.yarnpkg.com/split2/-/split2-2.2.0.tgz#186b2575bcf83e85b7d18465756238ee4ee42493"
3469 | dependencies:
3470 | through2 "^2.0.2"
3471 |
3472 | split@^1.0.0:
3473 | version "1.0.1"
3474 | resolved "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9"
3475 | dependencies:
3476 | through "2"
3477 |
3478 | sprintf-js@~1.0.2:
3479 | version "1.0.3"
3480 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
3481 |
3482 | sshpk@^1.7.0:
3483 | version "1.13.1"
3484 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3"
3485 | dependencies:
3486 | asn1 "~0.2.3"
3487 | assert-plus "^1.0.0"
3488 | dashdash "^1.12.0"
3489 | getpass "^0.1.1"
3490 | optionalDependencies:
3491 | bcrypt-pbkdf "^1.0.0"
3492 | ecc-jsbn "~0.1.1"
3493 | jsbn "~0.1.0"
3494 | tweetnacl "~0.14.0"
3495 |
3496 | stack-utils@^1.0.1:
3497 | version "1.0.1"
3498 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.1.tgz#d4f33ab54e8e38778b0ca5cfd3b3afb12db68620"
3499 |
3500 | standard-version@~4.3.0:
3501 | version "4.3.0"
3502 | resolved "https://registry.yarnpkg.com/standard-version/-/standard-version-4.3.0.tgz#41006cfee4eeab7c0ff3a47eecaa4c7506ed2e3f"
3503 | dependencies:
3504 | chalk "^1.1.3"
3505 | conventional-changelog "^1.1.0"
3506 | conventional-recommended-bump "^1.0.0"
3507 | dotgitignore "^1.0.3"
3508 | figures "^1.5.0"
3509 | fs-access "^1.0.0"
3510 | semver "^5.1.0"
3511 | yargs "^8.0.1"
3512 |
3513 | static-extend@^0.1.1:
3514 | version "0.1.2"
3515 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6"
3516 | dependencies:
3517 | define-property "^0.2.5"
3518 | object-copy "^0.1.0"
3519 |
3520 | stealthy-require@^1.1.0:
3521 | version "1.1.1"
3522 | resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b"
3523 |
3524 | string-length@^2.0.0:
3525 | version "2.0.0"
3526 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed"
3527 | dependencies:
3528 | astral-regex "^1.0.0"
3529 | strip-ansi "^4.0.0"
3530 |
3531 | string-width@^1.0.1, string-width@^1.0.2:
3532 | version "1.0.2"
3533 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
3534 | dependencies:
3535 | code-point-at "^1.0.0"
3536 | is-fullwidth-code-point "^1.0.0"
3537 | strip-ansi "^3.0.0"
3538 |
3539 | string-width@^2.0.0, string-width@^2.1.1:
3540 | version "2.1.1"
3541 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
3542 | dependencies:
3543 | is-fullwidth-code-point "^2.0.0"
3544 | strip-ansi "^4.0.0"
3545 |
3546 | string_decoder@~1.0.3:
3547 | version "1.0.3"
3548 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab"
3549 | dependencies:
3550 | safe-buffer "~5.1.0"
3551 |
3552 | stringstream@~0.0.4, stringstream@~0.0.5:
3553 | version "0.0.5"
3554 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878"
3555 |
3556 | strip-ansi@^3.0.0, strip-ansi@^3.0.1:
3557 | version "3.0.1"
3558 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
3559 | dependencies:
3560 | ansi-regex "^2.0.0"
3561 |
3562 | strip-ansi@^4.0.0:
3563 | version "4.0.0"
3564 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
3565 | dependencies:
3566 | ansi-regex "^3.0.0"
3567 |
3568 | strip-bom@3.0.0, strip-bom@^3.0.0:
3569 | version "3.0.0"
3570 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
3571 |
3572 | strip-bom@^2.0.0:
3573 | version "2.0.0"
3574 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e"
3575 | dependencies:
3576 | is-utf8 "^0.2.0"
3577 |
3578 | strip-eof@^1.0.0:
3579 | version "1.0.0"
3580 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
3581 |
3582 | strip-indent@^1.0.1:
3583 | version "1.0.1"
3584 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2"
3585 | dependencies:
3586 | get-stdin "^4.0.1"
3587 |
3588 | strip-json-comments@~2.0.1:
3589 | version "2.0.1"
3590 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
3591 |
3592 | subarg@^1.0.0:
3593 | version "1.0.0"
3594 | resolved "https://registry.yarnpkg.com/subarg/-/subarg-1.0.0.tgz#f62cf17581e996b48fc965699f54c06ae268b8d2"
3595 | dependencies:
3596 | minimist "^1.1.0"
3597 |
3598 | supports-color@^2.0.0:
3599 | version "2.0.0"
3600 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
3601 |
3602 | supports-color@^3.1.2:
3603 | version "3.2.3"
3604 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6"
3605 | dependencies:
3606 | has-flag "^1.0.0"
3607 |
3608 | supports-color@^4.0.0:
3609 | version "4.5.0"
3610 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b"
3611 | dependencies:
3612 | has-flag "^2.0.0"
3613 |
3614 | symbol-tree@^3.2.2:
3615 | version "3.2.2"
3616 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6"
3617 |
3618 | tar-pack@^3.4.0:
3619 | version "3.4.1"
3620 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f"
3621 | dependencies:
3622 | debug "^2.2.0"
3623 | fstream "^1.0.10"
3624 | fstream-ignore "^1.0.5"
3625 | once "^1.3.3"
3626 | readable-stream "^2.1.4"
3627 | rimraf "^2.5.1"
3628 | tar "^2.2.1"
3629 | uid-number "^0.0.6"
3630 |
3631 | tar@^2.2.1:
3632 | version "2.2.1"
3633 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1"
3634 | dependencies:
3635 | block-stream "*"
3636 | fstream "^1.0.2"
3637 | inherits "2"
3638 |
3639 | test-exclude@^4.1.1:
3640 | version "4.1.1"
3641 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.1.tgz#4d84964b0966b0087ecc334a2ce002d3d9341e26"
3642 | dependencies:
3643 | arrify "^1.0.1"
3644 | micromatch "^2.3.11"
3645 | object-assign "^4.1.0"
3646 | read-pkg-up "^1.0.1"
3647 | require-main-filename "^1.0.1"
3648 |
3649 | test-exclude@^4.2.1:
3650 | version "4.2.1"
3651 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.2.1.tgz#dfa222f03480bca69207ca728b37d74b45f724fa"
3652 | dependencies:
3653 | arrify "^1.0.1"
3654 | micromatch "^3.1.8"
3655 | object-assign "^4.1.0"
3656 | read-pkg-up "^1.0.1"
3657 | require-main-filename "^1.0.1"
3658 |
3659 | text-extensions@^1.0.0:
3660 | version "1.7.0"
3661 | resolved "https://registry.yarnpkg.com/text-extensions/-/text-extensions-1.7.0.tgz#faaaba2625ed746d568a23e4d0aacd9bf08a8b39"
3662 |
3663 | throat@^4.0.0:
3664 | version "4.1.0"
3665 | resolved "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a"
3666 |
3667 | through2@^2.0.0, through2@^2.0.2:
3668 | version "2.0.3"
3669 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be"
3670 | dependencies:
3671 | readable-stream "^2.1.5"
3672 | xtend "~4.0.1"
3673 |
3674 | through@2, "through@>=2.2.7 <3":
3675 | version "2.3.8"
3676 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
3677 |
3678 | tmpl@1.0.x:
3679 | version "1.0.4"
3680 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1"
3681 |
3682 | to-fast-properties@^1.0.3:
3683 | version "1.0.3"
3684 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47"
3685 |
3686 | to-object-path@^0.3.0:
3687 | version "0.3.0"
3688 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af"
3689 | dependencies:
3690 | kind-of "^3.0.2"
3691 |
3692 | to-regex-range@^2.1.0:
3693 | version "2.1.1"
3694 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38"
3695 | dependencies:
3696 | is-number "^3.0.0"
3697 | repeat-string "^1.6.1"
3698 |
3699 | to-regex@^3.0.1, to-regex@^3.0.2:
3700 | version "3.0.2"
3701 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce"
3702 | dependencies:
3703 | define-property "^2.0.2"
3704 | extend-shallow "^3.0.2"
3705 | regex-not "^1.0.2"
3706 | safe-regex "^1.1.0"
3707 |
3708 | tough-cookie@>=2.3.3, tough-cookie@^2.3.3, tough-cookie@~2.3.0, tough-cookie@~2.3.3:
3709 | version "2.3.3"
3710 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561"
3711 | dependencies:
3712 | punycode "^1.4.1"
3713 |
3714 | tr46@^1.0.0:
3715 | version "1.0.1"
3716 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09"
3717 | dependencies:
3718 | punycode "^2.1.0"
3719 |
3720 | trim-newlines@^1.0.0:
3721 | version "1.0.0"
3722 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613"
3723 |
3724 | trim-off-newlines@^1.0.0:
3725 | version "1.0.1"
3726 | resolved "https://registry.yarnpkg.com/trim-off-newlines/-/trim-off-newlines-1.0.1.tgz#9f9ba9d9efa8764c387698bcbfeb2c848f11adb3"
3727 |
3728 | trim-right@^1.0.1:
3729 | version "1.0.1"
3730 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003"
3731 |
3732 | ts-jest@~22.4.6:
3733 | version "22.4.6"
3734 | resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-22.4.6.tgz#a5d7f5e8b809626d1f4143209d301287472ec344"
3735 | dependencies:
3736 | babel-core "^6.26.3"
3737 | babel-plugin-istanbul "^4.1.6"
3738 | babel-plugin-transform-es2015-modules-commonjs "^6.26.2"
3739 | babel-preset-jest "^22.4.3"
3740 | cpx "^1.5.0"
3741 | fs-extra "6.0.0"
3742 | jest-config "^22.4.3"
3743 | lodash "^4.17.10"
3744 | pkg-dir "^2.0.0"
3745 | source-map-support "^0.5.5"
3746 | yargs "^11.0.0"
3747 |
3748 | ts-node@~6.0.3:
3749 | version "6.0.3"
3750 | resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-6.0.3.tgz#28bf74bcad134fad17f7469dad04638ece03f0f4"
3751 | dependencies:
3752 | arrify "^1.0.0"
3753 | chalk "^2.3.0"
3754 | diff "^3.1.0"
3755 | make-error "^1.1.1"
3756 | minimist "^1.2.0"
3757 | mkdirp "^0.5.1"
3758 | source-map-support "^0.5.3"
3759 | yn "^2.0.0"
3760 |
3761 | tslib@^1.8.0, tslib@^1.8.1:
3762 | version "1.9.0"
3763 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.0.tgz#e37a86fda8cbbaf23a057f473c9f4dc64e5fc2e8"
3764 |
3765 | tslint@~5.10.0:
3766 | version "5.10.0"
3767 | resolved "https://registry.yarnpkg.com/tslint/-/tslint-5.10.0.tgz#11e26bccb88afa02dd0d9956cae3d4540b5f54c3"
3768 | dependencies:
3769 | babel-code-frame "^6.22.0"
3770 | builtin-modules "^1.1.1"
3771 | chalk "^2.3.0"
3772 | commander "^2.12.1"
3773 | diff "^3.2.0"
3774 | glob "^7.1.1"
3775 | js-yaml "^3.7.0"
3776 | minimatch "^3.0.4"
3777 | resolve "^1.3.2"
3778 | semver "^5.3.0"
3779 | tslib "^1.8.0"
3780 | tsutils "^2.12.1"
3781 |
3782 | tsutils@^2.12.1:
3783 | version "2.19.1"
3784 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-2.19.1.tgz#76d7ebdea9d7a7bf4a05f50ead3701b0168708d7"
3785 | dependencies:
3786 | tslib "^1.8.1"
3787 |
3788 | tunnel-agent@^0.6.0:
3789 | version "0.6.0"
3790 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
3791 | dependencies:
3792 | safe-buffer "^5.0.1"
3793 |
3794 | tweetnacl@^0.14.3, tweetnacl@~0.14.0:
3795 | version "0.14.5"
3796 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
3797 |
3798 | type-check@~0.3.2:
3799 | version "0.3.2"
3800 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
3801 | dependencies:
3802 | prelude-ls "~1.1.2"
3803 |
3804 | typedarray@^0.0.6:
3805 | version "0.0.6"
3806 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
3807 |
3808 | typescript@~2.8.3:
3809 | version "2.8.3"
3810 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.8.3.tgz#5d817f9b6f31bb871835f4edf0089f21abe6c170"
3811 |
3812 | uglify-es@^3.3.7:
3813 | version "3.3.8"
3814 | resolved "https://registry.yarnpkg.com/uglify-es/-/uglify-es-3.3.8.tgz#f2c68e6cff0d0f9dc9577e4da207151c2e753b7e"
3815 | dependencies:
3816 | commander "~2.13.0"
3817 | source-map "~0.6.1"
3818 |
3819 | uglify-js@^2.6:
3820 | version "2.8.29"
3821 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd"
3822 | dependencies:
3823 | source-map "~0.5.1"
3824 | yargs "~3.10.0"
3825 | optionalDependencies:
3826 | uglify-to-browserify "~1.0.0"
3827 |
3828 | uglify-to-browserify@~1.0.0:
3829 | version "1.0.2"
3830 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7"
3831 |
3832 | uid-number@^0.0.6:
3833 | version "0.0.6"
3834 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81"
3835 |
3836 | ultron@~1.1.0:
3837 | version "1.1.1"
3838 | resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.1.1.tgz#9fe1536a10a664a65266a1e3ccf85fd36302bc9c"
3839 |
3840 | union-value@^1.0.0:
3841 | version "1.0.0"
3842 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4"
3843 | dependencies:
3844 | arr-union "^3.1.0"
3845 | get-value "^2.0.6"
3846 | is-extendable "^0.1.1"
3847 | set-value "^0.4.3"
3848 |
3849 | universalify@^0.1.0:
3850 | version "0.1.1"
3851 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.1.tgz#fa71badd4437af4c148841e3b3b165f9e9e590b7"
3852 |
3853 | unset-value@^1.0.0:
3854 | version "1.0.0"
3855 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559"
3856 | dependencies:
3857 | has-value "^0.3.1"
3858 | isobject "^3.0.0"
3859 |
3860 | urix@^0.1.0:
3861 | version "0.1.0"
3862 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72"
3863 |
3864 | use@^3.1.0:
3865 | version "3.1.0"
3866 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.0.tgz#14716bf03fdfefd03040aef58d8b4b85f3a7c544"
3867 | dependencies:
3868 | kind-of "^6.0.2"
3869 |
3870 | util-deprecate@~1.0.1:
3871 | version "1.0.2"
3872 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
3873 |
3874 | util.promisify@^1.0.0:
3875 | version "1.0.0"
3876 | resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030"
3877 | dependencies:
3878 | define-properties "^1.1.2"
3879 | object.getownpropertydescriptors "^2.0.3"
3880 |
3881 | uuid@^3.0.0, uuid@^3.1.0:
3882 | version "3.2.1"
3883 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14"
3884 |
3885 | validate-npm-package-license@^3.0.1:
3886 | version "3.0.1"
3887 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc"
3888 | dependencies:
3889 | spdx-correct "~1.0.0"
3890 | spdx-expression-parse "~1.0.0"
3891 |
3892 | verror@1.10.0:
3893 | version "1.10.0"
3894 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400"
3895 | dependencies:
3896 | assert-plus "^1.0.0"
3897 | core-util-is "1.0.2"
3898 | extsprintf "^1.2.0"
3899 |
3900 | vlq@^0.2.1:
3901 | version "0.2.3"
3902 | resolved "https://registry.yarnpkg.com/vlq/-/vlq-0.2.3.tgz#8f3e4328cf63b1540c0d67e1b2778386f8975b26"
3903 |
3904 | w3c-hr-time@^1.0.1:
3905 | version "1.0.1"
3906 | resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz#82ac2bff63d950ea9e3189a58a65625fedf19045"
3907 | dependencies:
3908 | browser-process-hrtime "^0.1.2"
3909 |
3910 | walker@~1.0.5:
3911 | version "1.0.7"
3912 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb"
3913 | dependencies:
3914 | makeerror "1.0.x"
3915 |
3916 | watch@~0.18.0:
3917 | version "0.18.0"
3918 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.18.0.tgz#28095476c6df7c90c963138990c0a5423eb4b986"
3919 | dependencies:
3920 | exec-sh "^0.2.0"
3921 | minimist "^1.2.0"
3922 |
3923 | webidl-conversions@^4.0.1, webidl-conversions@^4.0.2:
3924 | version "4.0.2"
3925 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad"
3926 |
3927 | whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.3:
3928 | version "1.0.3"
3929 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.3.tgz#57c235bc8657e914d24e1a397d3c82daee0a6ba3"
3930 | dependencies:
3931 | iconv-lite "0.4.19"
3932 |
3933 | whatwg-url@^6.4.0:
3934 | version "6.4.0"
3935 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-6.4.0.tgz#08fdf2b9e872783a7a1f6216260a1d66cc722e08"
3936 | dependencies:
3937 | lodash.sortby "^4.7.0"
3938 | tr46 "^1.0.0"
3939 | webidl-conversions "^4.0.1"
3940 |
3941 | which-module@^2.0.0:
3942 | version "2.0.0"
3943 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
3944 |
3945 | which@^1.2.12, which@^1.2.9, which@^1.3.0:
3946 | version "1.3.0"
3947 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a"
3948 | dependencies:
3949 | isexe "^2.0.0"
3950 |
3951 | wide-align@^1.1.0:
3952 | version "1.1.2"
3953 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710"
3954 | dependencies:
3955 | string-width "^1.0.2"
3956 |
3957 | window-size@0.1.0:
3958 | version "0.1.0"
3959 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d"
3960 |
3961 | wordwrap@0.0.2:
3962 | version "0.0.2"
3963 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f"
3964 |
3965 | wordwrap@~0.0.2:
3966 | version "0.0.3"
3967 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107"
3968 |
3969 | wordwrap@~1.0.0:
3970 | version "1.0.0"
3971 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
3972 |
3973 | wrap-ansi@^2.0.0:
3974 | version "2.1.0"
3975 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85"
3976 | dependencies:
3977 | string-width "^1.0.1"
3978 | strip-ansi "^3.0.1"
3979 |
3980 | wrappy@1:
3981 | version "1.0.2"
3982 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
3983 |
3984 | write-file-atomic@^2.1.0:
3985 | version "2.3.0"
3986 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab"
3987 | dependencies:
3988 | graceful-fs "^4.1.11"
3989 | imurmurhash "^0.1.4"
3990 | signal-exit "^3.0.2"
3991 |
3992 | ws@^4.0.0:
3993 | version "4.0.0"
3994 | resolved "https://registry.yarnpkg.com/ws/-/ws-4.0.0.tgz#bfe1da4c08eeb9780b986e0e4d10eccd7345999f"
3995 | dependencies:
3996 | async-limiter "~1.0.0"
3997 | safe-buffer "~5.1.0"
3998 | ultron "~1.1.0"
3999 |
4000 | xml-name-validator@^3.0.0:
4001 | version "3.0.0"
4002 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a"
4003 |
4004 | xml@^1.0.1:
4005 | version "1.0.1"
4006 | resolved "https://registry.yarnpkg.com/xml/-/xml-1.0.1.tgz#78ba72020029c5bc87b8a81a3cfcd74b4a2fc1e5"
4007 |
4008 | xtend@~4.0.1:
4009 | version "4.0.1"
4010 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af"
4011 |
4012 | y18n@^3.2.1:
4013 | version "3.2.1"
4014 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41"
4015 |
4016 | yallist@^2.1.2:
4017 | version "2.1.2"
4018 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
4019 |
4020 | yargs-parser@^7.0.0:
4021 | version "7.0.0"
4022 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9"
4023 | dependencies:
4024 | camelcase "^4.1.0"
4025 |
4026 | yargs-parser@^8.1.0:
4027 | version "8.1.0"
4028 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-8.1.0.tgz#f1376a33b6629a5d063782944da732631e966950"
4029 | dependencies:
4030 | camelcase "^4.1.0"
4031 |
4032 | yargs-parser@^9.0.2:
4033 | version "9.0.2"
4034 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-9.0.2.tgz#9ccf6a43460fe4ed40a9bb68f48d43b8a68cc077"
4035 | dependencies:
4036 | camelcase "^4.1.0"
4037 |
4038 | yargs@^10.0.3:
4039 | version "10.1.2"
4040 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-10.1.2.tgz#454d074c2b16a51a43e2fb7807e4f9de69ccb5c5"
4041 | dependencies:
4042 | cliui "^4.0.0"
4043 | decamelize "^1.1.1"
4044 | find-up "^2.1.0"
4045 | get-caller-file "^1.0.1"
4046 | os-locale "^2.0.0"
4047 | require-directory "^2.1.1"
4048 | require-main-filename "^1.0.1"
4049 | set-blocking "^2.0.0"
4050 | string-width "^2.0.0"
4051 | which-module "^2.0.0"
4052 | y18n "^3.2.1"
4053 | yargs-parser "^8.1.0"
4054 |
4055 | yargs@^11.0.0:
4056 | version "11.0.0"
4057 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-11.0.0.tgz#c052931006c5eee74610e5fc0354bedfd08a201b"
4058 | dependencies:
4059 | cliui "^4.0.0"
4060 | decamelize "^1.1.1"
4061 | find-up "^2.1.0"
4062 | get-caller-file "^1.0.1"
4063 | os-locale "^2.0.0"
4064 | require-directory "^2.1.1"
4065 | require-main-filename "^1.0.1"
4066 | set-blocking "^2.0.0"
4067 | string-width "^2.0.0"
4068 | which-module "^2.0.0"
4069 | y18n "^3.2.1"
4070 | yargs-parser "^9.0.2"
4071 |
4072 | yargs@^8.0.1:
4073 | version "8.0.2"
4074 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360"
4075 | dependencies:
4076 | camelcase "^4.1.0"
4077 | cliui "^3.2.0"
4078 | decamelize "^1.1.1"
4079 | get-caller-file "^1.0.1"
4080 | os-locale "^2.0.0"
4081 | read-pkg-up "^2.0.0"
4082 | require-directory "^2.1.1"
4083 | require-main-filename "^1.0.1"
4084 | set-blocking "^2.0.0"
4085 | string-width "^2.0.0"
4086 | which-module "^2.0.0"
4087 | y18n "^3.2.1"
4088 | yargs-parser "^7.0.0"
4089 |
4090 | yargs@~3.10.0:
4091 | version "3.10.0"
4092 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1"
4093 | dependencies:
4094 | camelcase "^1.0.2"
4095 | cliui "^2.1.0"
4096 | decamelize "^1.0.0"
4097 | window-size "0.1.0"
4098 |
4099 | yn@^2.0.0:
4100 | version "2.0.0"
4101 | resolved "https://registry.yarnpkg.com/yn/-/yn-2.0.0.tgz#e5adabc8acf408f6385fc76495684c88e6af689a"
4102 |
--------------------------------------------------------------------------------