├── .dockerignore ├── .eslintrc ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .npmignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── errors ├── file-upload-failed.md ├── invalid-file-name-type.md ├── invalid-file-shape.md ├── invalid-token.md ├── missing-file-object.md ├── missing-token.md └── not-authorized.md ├── examples ├── basic │ ├── README.md │ ├── index.js │ ├── now.json │ ├── package.json │ └── yarn.lock ├── fixed-token │ ├── README.md │ ├── index.js │ ├── now.json │ ├── package.json │ ├── upload.js │ └── yarn.lock ├── image │ ├── README.md │ ├── index.js │ ├── now-logo.png │ ├── now.json │ ├── package.json │ └── yarn.lock ├── json │ ├── README.md │ ├── index.js │ ├── now.json │ ├── package.json │ └── yarn.lock ├── multi-files-one-deployment │ ├── README.md │ ├── index.js │ ├── now.json │ ├── package.json │ └── yarn.lock ├── multi-files │ ├── README.md │ ├── index.js │ ├── now.json │ ├── package.json │ └── yarn.lock └── team │ ├── README.md │ ├── index.js │ ├── now.json │ ├── package.json │ └── yarn.lock ├── index.js ├── index.test.js ├── lib ├── constants.js ├── create-deployment.js ├── error.js ├── error.test.js ├── get-deployment-name.js ├── get-deployment-name.test.js ├── get-deployment-url.js ├── get-deployment-url.test.js ├── get-file-url.js ├── get-file-url.test.js ├── get-sha.js ├── get-sha.test.js ├── try-catch.js ├── upload-file.js ├── validate-file.js ├── validate-file.test.js ├── validate-files.js ├── validate-files.test.js ├── validate-token.js └── validate-token.test.js ├── now.json ├── package.json ├── renovate.json └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- 1 | * 2 | !lib 3 | !index.js 4 | !index.test.js 5 | !package.json 6 | !yarn.lock 7 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["plugin:unicorn/recommended", "prettier", "prettier/unicorn"], 3 | "plugins": ["prettier", "unicorn"], 4 | "env": { 5 | "es6": true, 6 | "node": true 7 | }, 8 | "rules": { 9 | "prettier/prettier": "error" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | --- 5 | 6 | #### Describe the bug 7 | A clear and concise description of what the bug is. 8 | 9 | #### To Reproduce 10 | Steps to reproduce the behavior: 11 | 1. Import '...' 12 | 2. Call as '....' 13 | 3. See error 14 | 15 | #### Expected behavior 16 | A clear and concise description of what you expected to happen. 17 | 18 | #### Logs 19 | If applicable, add logs to help explain your problem. 20 | 21 | #### Additional context 22 | Add any other context about the problem here. 23 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | --- 5 | 6 | #### Is your feature request related to a problem? Please describe. 7 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 8 | 9 | #### Describe the solution you'd like 10 | A clear and concise description of what you want to happen. 11 | 12 | #### Describe alternatives you've considered 13 | A clear and concise description of any alternative solutions or features you've considered. 14 | 15 | #### Additional context 16 | Add any other context or screenshots about the feature request here. 17 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # IDE 2 | .idea 3 | 4 | # Logs 5 | logs 6 | *.log 7 | npm-debug.log* 8 | yarn-debug.log* 9 | yarn-error.log* 10 | 11 | # Runtime data 12 | pids 13 | *.pid 14 | *.seed 15 | *.pid.lock 16 | 17 | # Directory for instrumented libs generated by jscoverage/JSCover 18 | lib-cov 19 | 20 | # Coverage directory used by tools like istanbul 21 | coverage 22 | 23 | # nyc test coverage 24 | .nyc_output 25 | 26 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 27 | .grunt 28 | 29 | # Bower dependency directory (https://bower.io/) 30 | bower_components 31 | 32 | # node-waf configuration 33 | .lock-wscript 34 | 35 | # Compiled binary addons (http://nodejs.org/api/addons.html) 36 | build/Release 37 | 38 | # Dependency directories 39 | node_modules/ 40 | jspm_packages/ 41 | 42 | # Typescript v1 declaration files 43 | typings/ 44 | 45 | # Optional npm cache directory 46 | .npm 47 | 48 | # Optional eslint cache 49 | .eslintcache 50 | 51 | # Optional REPL history 52 | .node_repl_history 53 | 54 | # Output of 'npm pack' 55 | *.tgz 56 | 57 | # Yarn Integrity file 58 | .yarn-integrity 59 | 60 | # dotenv environment variables file 61 | .env 62 | 63 | now-secrets.json 64 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | errors 2 | examples 3 | .dockerignore 4 | .gitignore 5 | CODE_OF_CONDUCT.md 6 | CONTRIBUTING.md 7 | Dockerfile 8 | now.json 9 | renovate.json 10 | yarn.lock 11 | 12 | *.test.js 13 | -------------------------------------------------------------------------------- /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 sergiodxa@gmail.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. 2 | All contributions are welcome. 3 | 4 | 1. Fork this repository 5 | 2. Clone it to your local machine 6 | 3. Install the dependencies 7 | 4. Code your contribution and add new tests if it's required 8 | 5. Create a Pull Request (the CI will run tests for your code) 9 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM mhart/alpine-node 2 | WORKDIR /usr/src 3 | ARG NOW_TOKEN 4 | ARG NOW_TEAM 5 | COPY package.json yarn.lock ./ 6 | RUN yarn 7 | COPY . . 8 | RUN yarn test --coverage && mv ./coverage/lcov-report /public 9 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Sergio Xalambrí 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 | -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | #### Describe the PR 2 | 3 | A clear and concise description of what the pull request is. 4 | 5 | #### Related issues 6 | 7 | List here all the issues which are related to this pull request. 8 | 9 | #### Status 10 | 11 | Is this **WIP** or **Ready** 12 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Now Storage 2 | 3 | Use Now static deployments to upload and store files. 4 | 5 | 6 | 7 | 8 | 9 | ## Usage 10 | 11 | Install it with yarn 12 | 13 | ```bash 14 | yarn add now-storage 15 | ``` 16 | 17 | Or with npm 18 | 19 | ```bash 20 | npm i now-storage 21 | ``` 22 | 23 | Then load it inside your app. 24 | 25 | ```js 26 | const { upload } = require('now-storage'); 27 | ``` 28 | 29 | And call the `upload` function with your [the Now token](https://zeit.co/account/tokens) and the file to upload. 30 | 31 | ```js 32 | const { url } = await upload(process.env.NOW_TOKEN, { 33 | name: 'my-file.txt', 34 | content: 'This is a file uploaded with now-storage.' 35 | }); 36 | ``` 37 | 38 | The `url` is going to be a string similar to 39 | [http://now-storage-bmjowtcani.now.sh/](http://now-storage-bmjowtcani.now.sh/). 40 | 41 | ### Configuration 42 | 43 | All the deployments are going to have the name `now-storage` and the `upload` 44 | function is going to retry maximum 3 times to upload the file and another 3 45 | times to create the deployment. 46 | 47 | That could be configured passing a third argument to the `upload method` with an 48 | object using the following format. 49 | 50 | ```js 51 | await upload(process.env.NOW_TOKEN, { 52 | name: 'my-file.txt', 53 | content: 'This is a file uploaded with now-storage.' 54 | }, { 55 | deploymentName: 'now-storage', 56 | retry: { 57 | retries: 3 58 | } 59 | }); 60 | ``` 61 | 62 | That's the default configuration, the `retry` key could receive any 63 | configuration from `async-retry`. 64 | 65 | To deploy to a team account instead of your personal account add `teamId` to the 66 | config. 67 | 68 | ```js 69 | await upload(process.env.NOW_TOKEN, { 70 | name: 'my-file.txt', 71 | content: 'This is a file uploaded with now-storage.' 72 | }, { teamId: 'my-awsm-team' }); 73 | ``` 74 | -------------------------------------------------------------------------------- /errors/file-upload-failed.md: -------------------------------------------------------------------------------- 1 | # File upload failed 2 | The upload of the file failed due to an unknown reasons. 3 | 4 | The error message should contain a `code` you can use to check into the [ZEIT API](https://zeit.co/api) for the error. 5 | 6 | If the code is not provided it means the error is not related to the ZEIT API. In that case please open an issue in this same repository providing a way to replicate the issue. 7 | -------------------------------------------------------------------------------- /errors/invalid-file-name-type.md: -------------------------------------------------------------------------------- 1 | # Invalid file name type 2 | The type of the key `name` must be a `String`. 3 | 4 | You passed any other value as the `name` of the file to upload. 5 | 6 | Example: 7 | ```js 8 | await upload(process.env.NOW_TOKEN, { 9 | name: 'my-file.txt', 10 | content: 'This is a file uploaded with now-storage.' 11 | }); 12 | ``` 13 | -------------------------------------------------------------------------------- /errors/invalid-file-shape.md: -------------------------------------------------------------------------------- 1 | # Invalid file shape 2 | The object passed with the file information has an invalid shape. 3 | 4 | It must contains the keys `name` and `content`. Check if you're missing some of those. 5 | 6 | Example: 7 | ```js 8 | await upload(process.env.NOW_TOKEN, { 9 | name: 'my-file.txt', 10 | content: 'This is a file uploaded with now-storage.' 11 | }); 12 | ``` 13 | -------------------------------------------------------------------------------- /errors/invalid-token.md: -------------------------------------------------------------------------------- 1 | # Invalid Now token 2 | The token provided must be a `String` but it was something else. 3 | 4 | Check you're providing the correct value as token to the `upload` function. 5 | 6 | Example: 7 | ```js 8 | await upload(process.env.NOW_TOKEN, { 9 | name: 'my-file.txt', 10 | content: 'This is a file uploaded with now-storage.' 11 | }); 12 | ``` 13 | -------------------------------------------------------------------------------- /errors/missing-file-object.md: -------------------------------------------------------------------------------- 1 | # Missing file object 2 | The object with the file information is missing. 3 | 4 | Check you're passing an object with the keys `name` and `content` as the second argument of the `upload` function. 5 | 6 | Example: 7 | ```js 8 | await upload(process.env.NOW_TOKEN, { 9 | name: 'my-file.txt', 10 | content: 'This is a file uploaded with now-storage.' 11 | }); 12 | ``` 13 | -------------------------------------------------------------------------------- /errors/missing-token.md: -------------------------------------------------------------------------------- 1 | # Missing Now token 2 | In order to use `now-storage` you must provide the function with a token of your Now account. 3 | 4 | You can get this token going to [https://zeit.co/account/tokens](https://zeit.co/account/tokens). 5 | 6 | Once you have it the recommendation is to set it as a environment variable and then pass it to `upload`. 7 | 8 | Example: 9 | ```js 10 | await upload(process.env.NOW_TOKEN, { 11 | name: 'my-file.txt', 12 | content: 'This is a file uploaded with now-storage.' 13 | }); 14 | ``` 15 | -------------------------------------------------------------------------------- /errors/not-authorized.md: -------------------------------------------------------------------------------- 1 | # Not authorized 2 | You're not authorized to upload the file or create a new deployment. 3 | 4 | Your Now token may have expired and been removed. 5 | -------------------------------------------------------------------------------- /examples/basic/README.md: -------------------------------------------------------------------------------- 1 | # Basic file upload 2 | This example show how you can easily upload a simple text file. 3 | 4 | ## How to run it 5 | Create a `now-secrets.json` with the key `@now_token` containing a [Now token](https://zeit.co/account/tokens). 6 | 7 | Install the dependencies with npm or yarn. 8 | 9 | ```bash 10 | yarn 11 | # or npm i 12 | ``` 13 | 14 | And now run the `index.js` with Node.js 15 | 16 | ```bash 17 | yarn start 18 | # or npm start or node . 19 | ``` 20 | 21 | You'll see a Now unique URL in your terminal. 22 | -------------------------------------------------------------------------------- /examples/basic/index.js: -------------------------------------------------------------------------------- 1 | // load env from now.json 2 | require('now-env').config(); 3 | 4 | const { upload } = require('now-storage'); 5 | 6 | async function main() { 7 | const { url } = await upload(process.env.NOW_TOKEN, { 8 | name: 'my-file.txt', 9 | content: 'This is a file uploaded with now-storage.' 10 | }); 11 | return url; 12 | } 13 | 14 | main() 15 | .then(url => console.log(url)) 16 | .catch(error => console.error(error)); 17 | -------------------------------------------------------------------------------- /examples/basic/now.json: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "NOW_TOKEN": "@now_token" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /examples/basic/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "now-storage-example-basic", 3 | "main": "index.js", 4 | "scripts": { 5 | "start": "node ." 6 | }, 7 | "dependencies": { 8 | "now-env": "^1.4.0", 9 | "now-storage": "^1.1.0" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /examples/basic/yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | async-retry@^1.1.3: 6 | version "1.1.4" 7 | resolved "https://registry.yarnpkg.com/async-retry/-/async-retry-1.1.4.tgz#e0edb546600f19bf90f892e9494faa9e19baf190" 8 | dependencies: 9 | retry "0.10.1" 10 | 11 | encoding@^0.1.11: 12 | version "0.1.12" 13 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 14 | dependencies: 15 | iconv-lite "~0.4.13" 16 | 17 | iconv-lite@~0.4.13: 18 | version "0.4.19" 19 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 20 | 21 | is-stream@^1.0.1: 22 | version "1.1.0" 23 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 24 | 25 | node-fetch@^1.7.3: 26 | version "1.7.3" 27 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef" 28 | dependencies: 29 | encoding "^0.1.11" 30 | is-stream "^1.0.1" 31 | 32 | now-env@^1.4.0: 33 | version "1.4.0" 34 | resolved "https://registry.yarnpkg.com/now-env/-/now-env-1.4.0.tgz#dd2dd9898e705058967ee58742b9b44fbf94c7f3" 35 | 36 | now-storage@^1.1.0: 37 | version "1.1.0" 38 | resolved "https://registry.yarnpkg.com/now-storage/-/now-storage-1.1.0.tgz#342b17865f2bf44b2cd3d86e9796f8e4e1e65d0f" 39 | dependencies: 40 | async-retry "^1.1.3" 41 | node-fetch "^1.7.3" 42 | 43 | retry@0.10.1: 44 | version "0.10.1" 45 | resolved "https://registry.yarnpkg.com/retry/-/retry-0.10.1.tgz#e76388d217992c252750241d3d3956fed98d8ff4" 46 | -------------------------------------------------------------------------------- /examples/fixed-token/README.md: -------------------------------------------------------------------------------- 1 | # Fixed token 2 | This example show how you can create a wrapper around the `upload` function to avoid passing the NOW_TOKEN every time. 3 | 4 | ## How to run it 5 | Create a `now-secrets.json` with the key `@now_token` containing a [Now token](https://zeit.co/account/tokens). 6 | 7 | Install the dependencies with npm or yarn. 8 | 9 | ```bash 10 | yarn 11 | # or npm i 12 | ``` 13 | 14 | And now run the `index.js` with Node.js 15 | 16 | ```bash 17 | yarn start 18 | # or npm start or node . 19 | ``` 20 | 21 | You'll see a Now unique URL in your terminal. 22 | -------------------------------------------------------------------------------- /examples/fixed-token/index.js: -------------------------------------------------------------------------------- 1 | const upload = require('./upload'); 2 | 3 | async function main() { 4 | const { url } = await upload({ 5 | name: 'my-file.txt', 6 | content: 'This is a file uploaded with now-storage.' 7 | }); 8 | return url; 9 | } 10 | 11 | main() 12 | .then(url => console.log(url)) 13 | .catch(error => console.error(error)); 14 | -------------------------------------------------------------------------------- /examples/fixed-token/now.json: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "NOW_TOKEN": "@now_token" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /examples/fixed-token/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "now-storage-example-fixed-token", 3 | "main": "index.js", 4 | "scripts": { 5 | "start": "node ." 6 | }, 7 | "dependencies": { 8 | "now-env": "^1.4.0", 9 | "now-storage": "^1.1.0" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /examples/fixed-token/upload.js: -------------------------------------------------------------------------------- 1 | // load env from now.json 2 | require('now-env').config(); 3 | 4 | const { upload } = require('now-storage'); 5 | 6 | module.exports = (file, config) => upload(process.env.NOW_TOKEN, file, config); 7 | -------------------------------------------------------------------------------- /examples/fixed-token/yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | async-retry@^1.1.3: 6 | version "1.1.4" 7 | resolved "https://registry.yarnpkg.com/async-retry/-/async-retry-1.1.4.tgz#e0edb546600f19bf90f892e9494faa9e19baf190" 8 | dependencies: 9 | retry "0.10.1" 10 | 11 | encoding@^0.1.11: 12 | version "0.1.12" 13 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 14 | dependencies: 15 | iconv-lite "~0.4.13" 16 | 17 | iconv-lite@~0.4.13: 18 | version "0.4.19" 19 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 20 | 21 | is-stream@^1.0.1: 22 | version "1.1.0" 23 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 24 | 25 | node-fetch@^1.7.3: 26 | version "1.7.3" 27 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef" 28 | dependencies: 29 | encoding "^0.1.11" 30 | is-stream "^1.0.1" 31 | 32 | now-env@^1.4.0: 33 | version "1.4.0" 34 | resolved "https://registry.yarnpkg.com/now-env/-/now-env-1.4.0.tgz#dd2dd9898e705058967ee58742b9b44fbf94c7f3" 35 | 36 | now-storage@^1.1.0: 37 | version "1.1.0" 38 | resolved "https://registry.yarnpkg.com/now-storage/-/now-storage-1.1.0.tgz#342b17865f2bf44b2cd3d86e9796f8e4e1e65d0f" 39 | dependencies: 40 | async-retry "^1.1.3" 41 | node-fetch "^1.7.3" 42 | 43 | retry@0.10.1: 44 | version "0.10.1" 45 | resolved "https://registry.yarnpkg.com/retry/-/retry-0.10.1.tgz#e76388d217992c252750241d3d3956fed98d8ff4" 46 | -------------------------------------------------------------------------------- /examples/image/README.md: -------------------------------------------------------------------------------- 1 | # Basic file upload 2 | This example show how you can easily upload an image file. 3 | 4 | ## How to run it 5 | Create a `now-secrets.json` with the key `@now_token` containing a [Now token](https://zeit.co/account/tokens). 6 | 7 | Install the dependencies with npm or yarn. 8 | 9 | ```bash 10 | yarn 11 | # or npm i 12 | ``` 13 | 14 | And now run the `index.js` with Node.js 15 | 16 | ```bash 17 | yarn start 18 | # or npm start or node . 19 | ``` 20 | 21 | You'll see a Now unique URL in your terminal. 22 | -------------------------------------------------------------------------------- /examples/image/index.js: -------------------------------------------------------------------------------- 1 | // load env from now.json 2 | require('now-env').config(); 3 | 4 | const { upload } = require('now-storage'); 5 | const fs = require('fs'); 6 | const { promisify } = require('util'); 7 | 8 | const readFile = promisify(fs.readFile); 9 | 10 | async function main() { 11 | // read the file as buffer 12 | const image = await readFile('./now-logo.png'); 13 | // upload the buffer as content 14 | const { url } = await upload(process.env.NOW_TOKEN, { 15 | name: 'now-logo.png', 16 | content: image 17 | }); 18 | return url; 19 | } 20 | 21 | main() 22 | .then(url => console.log(url)) 23 | .catch(error => console.error(error)); 24 | -------------------------------------------------------------------------------- /examples/image/now-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/now-storage/16bf6a5a2c10f2788d3cb6250fcc9c053f0da496/examples/image/now-logo.png -------------------------------------------------------------------------------- /examples/image/now.json: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "NOW_TOKEN": "@now_token" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /examples/image/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "now-storage-example-image", 3 | "main": "index.js", 4 | "scripts": { 5 | "start": "node ." 6 | }, 7 | "dependencies": { 8 | "now-env": "^1.4.0", 9 | "now-storage": "^1.1.0" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /examples/image/yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | async-retry@^1.1.3: 6 | version "1.1.4" 7 | resolved "https://registry.yarnpkg.com/async-retry/-/async-retry-1.1.4.tgz#e0edb546600f19bf90f892e9494faa9e19baf190" 8 | dependencies: 9 | retry "0.10.1" 10 | 11 | encoding@^0.1.11: 12 | version "0.1.12" 13 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 14 | dependencies: 15 | iconv-lite "~0.4.13" 16 | 17 | iconv-lite@~0.4.13: 18 | version "0.4.19" 19 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 20 | 21 | is-stream@^1.0.1: 22 | version "1.1.0" 23 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 24 | 25 | node-fetch@^1.7.3: 26 | version "1.7.3" 27 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef" 28 | dependencies: 29 | encoding "^0.1.11" 30 | is-stream "^1.0.1" 31 | 32 | now-env@^1.4.0: 33 | version "1.4.0" 34 | resolved "https://registry.yarnpkg.com/now-env/-/now-env-1.4.0.tgz#dd2dd9898e705058967ee58742b9b44fbf94c7f3" 35 | 36 | now-storage@^1.1.0: 37 | version "1.1.0" 38 | resolved "https://registry.yarnpkg.com/now-storage/-/now-storage-1.1.0.tgz#342b17865f2bf44b2cd3d86e9796f8e4e1e65d0f" 39 | dependencies: 40 | async-retry "^1.1.3" 41 | node-fetch "^1.7.3" 42 | 43 | retry@0.10.1: 44 | version "0.10.1" 45 | resolved "https://registry.yarnpkg.com/retry/-/retry-0.10.1.tgz#e76388d217992c252750241d3d3956fed98d8ff4" 46 | -------------------------------------------------------------------------------- /examples/json/README.md: -------------------------------------------------------------------------------- 1 | # Basic file upload 2 | This example show how you can easily upload a simple JSON content. 3 | 4 | ## How to run it 5 | Create a `now-secrets.json` with the key `@now_token` containing a [Now token](https://zeit.co/account/tokens). 6 | 7 | Install the dependencies with npm or yarn. 8 | 9 | ```bash 10 | yarn 11 | # or npm i 12 | ``` 13 | 14 | And now run the `index.js` with Node.js 15 | 16 | ```bash 17 | yarn start 18 | # or npm start or node . 19 | ``` 20 | 21 | You'll see a Now unique URL in your terminal. 22 | -------------------------------------------------------------------------------- /examples/json/index.js: -------------------------------------------------------------------------------- 1 | // load env from now.json 2 | require('now-env').config(); 3 | 4 | const { upload } = require('now-storage'); 5 | 6 | async function main() { 7 | // we need to convert the JS object to string 8 | const content = JSON.stringify(require('./package.json')) 9 | // upload the stringified JSON as a normal text file 10 | const { url } = await upload(process.env.NOW_TOKEN, { 11 | name: 'package.json', 12 | content 13 | }); 14 | return url; 15 | } 16 | 17 | main() 18 | .then(url => console.log(url)) 19 | .catch(error => console.error(error)); 20 | -------------------------------------------------------------------------------- /examples/json/now.json: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "NOW_TOKEN": "@now_token" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /examples/json/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "now-storage-example-json", 3 | "main": "index.js", 4 | "scripts": { 5 | "start": "node ." 6 | }, 7 | "dependencies": { 8 | "now-env": "^1.4.0", 9 | "now-storage": "^1.1.0" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /examples/json/yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | async-retry@^1.1.3: 6 | version "1.1.4" 7 | resolved "https://registry.yarnpkg.com/async-retry/-/async-retry-1.1.4.tgz#e0edb546600f19bf90f892e9494faa9e19baf190" 8 | dependencies: 9 | retry "0.10.1" 10 | 11 | encoding@^0.1.11: 12 | version "0.1.12" 13 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 14 | dependencies: 15 | iconv-lite "~0.4.13" 16 | 17 | iconv-lite@~0.4.13: 18 | version "0.4.19" 19 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 20 | 21 | is-stream@^1.0.1: 22 | version "1.1.0" 23 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 24 | 25 | node-fetch@^1.7.3: 26 | version "1.7.3" 27 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef" 28 | dependencies: 29 | encoding "^0.1.11" 30 | is-stream "^1.0.1" 31 | 32 | now-env@^1.4.0: 33 | version "1.4.0" 34 | resolved "https://registry.yarnpkg.com/now-env/-/now-env-1.4.0.tgz#dd2dd9898e705058967ee58742b9b44fbf94c7f3" 35 | 36 | now-storage@^1.1.0: 37 | version "1.1.0" 38 | resolved "https://registry.yarnpkg.com/now-storage/-/now-storage-1.1.0.tgz#342b17865f2bf44b2cd3d86e9796f8e4e1e65d0f" 39 | dependencies: 40 | async-retry "^1.1.3" 41 | node-fetch "^1.7.3" 42 | 43 | retry@0.10.1: 44 | version "0.10.1" 45 | resolved "https://registry.yarnpkg.com/retry/-/retry-0.10.1.tgz#e76388d217992c252750241d3d3956fed98d8ff4" 46 | -------------------------------------------------------------------------------- /examples/multi-files-one-deployment/README.md: -------------------------------------------------------------------------------- 1 | # Multi file upload to one deployment 2 | This example show how you can use `multiUpload` to upload multiple files at the same time to one deployment. 3 | 4 | ## How to run it 5 | Create a `now-secrets.json` with the key `@now_token` containing a [Now token](https://zeit.co/account/tokens). 6 | 7 | Install the dependencies with npm or yarn. 8 | 9 | ```bash 10 | yarn 11 | # or npm i 12 | ``` 13 | 14 | And now run the `index.js` with Node.js 15 | 16 | ```bash 17 | yarn start 18 | # or npm start or node . 19 | ``` 20 | 21 | You'll see a Now unique URL in your terminal. 22 | -------------------------------------------------------------------------------- /examples/multi-files-one-deployment/index.js: -------------------------------------------------------------------------------- 1 | // load env from now.json 2 | require('now-env').config(); 3 | 4 | const { multiUpload } = require('now-storage'); 5 | 6 | async function main() { 7 | const { url } = await multiUpload( 8 | process.env.NOW_TOKEN, 9 | [ 10 | { 11 | name: 'my-file-1.txt', 12 | content: 'This is a file 1 uploaded with now-storage.' 13 | }, 14 | { 15 | name: 'my-file-2.txt', 16 | content: 'This is a file 2 uploaded with now-storage.' 17 | } 18 | ], 19 | { deploymentName: 'now-storage-test' } 20 | ); 21 | 22 | return url; 23 | } 24 | 25 | main() 26 | .then(url => console.log(url)) 27 | .catch(error => console.error(error)); 28 | -------------------------------------------------------------------------------- /examples/multi-files-one-deployment/now.json: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "NOW_TOKEN": "@now_token" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /examples/multi-files-one-deployment/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "now-storage-example-multi-files-one-deployment", 3 | "main": "index.js", 4 | "scripts": { 5 | "start": "node ." 6 | }, 7 | "dependencies": { 8 | "now-env": "^1.4.0", 9 | "now-storage": "^1.1.0" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /examples/multi-files-one-deployment/yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | async-retry@^1.1.3: 6 | version "1.1.4" 7 | resolved "https://registry.yarnpkg.com/async-retry/-/async-retry-1.1.4.tgz#e0edb546600f19bf90f892e9494faa9e19baf190" 8 | dependencies: 9 | retry "0.10.1" 10 | 11 | encoding@^0.1.11: 12 | version "0.1.12" 13 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 14 | dependencies: 15 | iconv-lite "~0.4.13" 16 | 17 | iconv-lite@~0.4.13: 18 | version "0.4.19" 19 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 20 | 21 | is-stream@^1.0.1: 22 | version "1.1.0" 23 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 24 | 25 | node-fetch@^1.7.3: 26 | version "1.7.3" 27 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef" 28 | dependencies: 29 | encoding "^0.1.11" 30 | is-stream "^1.0.1" 31 | 32 | now-env@^1.4.0: 33 | version "1.4.0" 34 | resolved "https://registry.yarnpkg.com/now-env/-/now-env-1.4.0.tgz#dd2dd9898e705058967ee58742b9b44fbf94c7f3" 35 | 36 | now-storage@^1.1.0: 37 | version "1.1.0" 38 | resolved "https://registry.yarnpkg.com/now-storage/-/now-storage-1.1.0.tgz#342b17865f2bf44b2cd3d86e9796f8e4e1e65d0f" 39 | dependencies: 40 | async-retry "^1.1.3" 41 | node-fetch "^1.7.3" 42 | 43 | retry@0.10.1: 44 | version "0.10.1" 45 | resolved "https://registry.yarnpkg.com/retry/-/retry-0.10.1.tgz#e76388d217992c252750241d3d3956fed98d8ff4" 46 | -------------------------------------------------------------------------------- /examples/multi-files/README.md: -------------------------------------------------------------------------------- 1 | # Multi file upload 2 | This example show how you can use `Promise.all` to upload multiple files at the same time. 3 | 4 | ## How to run it 5 | Create a `now-secrets.json` with the key `@now_token` containing a [Now token](https://zeit.co/account/tokens). 6 | 7 | Install the dependencies with npm or yarn. 8 | 9 | ```bash 10 | yarn 11 | # or npm i 12 | ``` 13 | 14 | And now run the `index.js` with Node.js 15 | 16 | ```bash 17 | yarn start 18 | # or npm start or node . 19 | ``` 20 | 21 | You'll see a Now unique URL in your terminal. 22 | -------------------------------------------------------------------------------- /examples/multi-files/index.js: -------------------------------------------------------------------------------- 1 | // load env from now.json 2 | require('now-env').config(); 3 | 4 | const { upload } = require('now-storage'); 5 | 6 | async function main() { 7 | const responses = await Promise.all([ 8 | await upload(process.env.NOW_TOKEN, { 9 | name: 'my-file-1.txt', 10 | content: 'This is a file 1 uploaded with now-storage.' 11 | }), 12 | await upload(process.env.NOW_TOKEN, { 13 | name: 'my-file-2.txt', 14 | content: 'This is a file 2 uploaded with now-storage.' 15 | }), 16 | ]); 17 | return responses.map(({ url }) => url); 18 | } 19 | 20 | main() 21 | .then(url => console.log(url)) 22 | .catch(error => console.error(error)); 23 | -------------------------------------------------------------------------------- /examples/multi-files/now.json: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "NOW_TOKEN": "@now_token" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /examples/multi-files/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "now-storage-example-multi-files", 3 | "main": "index.js", 4 | "scripts": { 5 | "start": "node ." 6 | }, 7 | "dependencies": { 8 | "now-env": "^1.4.0", 9 | "now-storage": "^1.1.0" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /examples/multi-files/yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | async-retry@^1.1.3: 6 | version "1.1.4" 7 | resolved "https://registry.yarnpkg.com/async-retry/-/async-retry-1.1.4.tgz#e0edb546600f19bf90f892e9494faa9e19baf190" 8 | dependencies: 9 | retry "0.10.1" 10 | 11 | encoding@^0.1.11: 12 | version "0.1.12" 13 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 14 | dependencies: 15 | iconv-lite "~0.4.13" 16 | 17 | iconv-lite@~0.4.13: 18 | version "0.4.19" 19 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 20 | 21 | is-stream@^1.0.1: 22 | version "1.1.0" 23 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 24 | 25 | node-fetch@^1.7.3: 26 | version "1.7.3" 27 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef" 28 | dependencies: 29 | encoding "^0.1.11" 30 | is-stream "^1.0.1" 31 | 32 | now-env@^1.4.0: 33 | version "1.4.0" 34 | resolved "https://registry.yarnpkg.com/now-env/-/now-env-1.4.0.tgz#dd2dd9898e705058967ee58742b9b44fbf94c7f3" 35 | 36 | now-storage@^1.1.0: 37 | version "1.1.0" 38 | resolved "https://registry.yarnpkg.com/now-storage/-/now-storage-1.1.0.tgz#342b17865f2bf44b2cd3d86e9796f8e4e1e65d0f" 39 | dependencies: 40 | async-retry "^1.1.3" 41 | node-fetch "^1.7.3" 42 | 43 | retry@0.10.1: 44 | version "0.10.1" 45 | resolved "https://registry.yarnpkg.com/retry/-/retry-0.10.1.tgz#e76388d217992c252750241d3d3956fed98d8ff4" 46 | -------------------------------------------------------------------------------- /examples/team/README.md: -------------------------------------------------------------------------------- 1 | # Basic file upload 2 | This example show how you can easily upload a simple text file to a team. 3 | 4 | ## How to run it 5 | Create a `now-secrets.json` with the keys `@now_token` containing a [Now token](https://zeit.co/account/tokens) and `@now_team` containing the slug of a team you're member of. 6 | 7 | Install the dependencies with npm or yarn. 8 | 9 | ```bash 10 | yarn 11 | # or npm i 12 | ``` 13 | 14 | And now run the `index.js` with Node.js 15 | 16 | ```bash 17 | yarn start 18 | # or npm start or node . 19 | ``` 20 | 21 | You'll see a Now unique URL in your terminal. 22 | -------------------------------------------------------------------------------- /examples/team/index.js: -------------------------------------------------------------------------------- 1 | // load env from now.json 2 | require('now-env').config(); 3 | 4 | const { upload } = require('now-storage'); 5 | 6 | async function main() { 7 | const { url } = await upload( 8 | process.env.NOW_TOKEN, 9 | { 10 | name: 'my-file.txt', 11 | content: 'This is a file uploaded with now-storage.' 12 | }, 13 | { deploymentName: 'now-storage-test', teamId: process.env.NOW_TEAM } 14 | ); 15 | return url; 16 | } 17 | 18 | main() 19 | .then(url => console.log(url)) 20 | .catch(error => console.error(error)); 21 | -------------------------------------------------------------------------------- /examples/team/now.json: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "NOW_TOKEN": "@now_token", 4 | "NOW_TEAM": "@now_team" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /examples/team/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "now-storage-example-team", 3 | "main": "index.js", 4 | "scripts": { 5 | "start": "node ." 6 | }, 7 | "dependencies": { 8 | "now-env": "^1.4.0", 9 | "now-storage": "^1.1.0" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /examples/team/yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | async-retry@^1.1.3: 6 | version "1.1.4" 7 | resolved "https://registry.yarnpkg.com/async-retry/-/async-retry-1.1.4.tgz#e0edb546600f19bf90f892e9494faa9e19baf190" 8 | dependencies: 9 | retry "0.10.1" 10 | 11 | encoding@^0.1.11: 12 | version "0.1.12" 13 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 14 | dependencies: 15 | iconv-lite "~0.4.13" 16 | 17 | iconv-lite@~0.4.13: 18 | version "0.4.19" 19 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 20 | 21 | is-stream@^1.0.1: 22 | version "1.1.0" 23 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 24 | 25 | node-fetch@^1.7.3: 26 | version "1.7.3" 27 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef" 28 | dependencies: 29 | encoding "^0.1.11" 30 | is-stream "^1.0.1" 31 | 32 | now-env@^1.4.0: 33 | version "1.4.0" 34 | resolved "https://registry.yarnpkg.com/now-env/-/now-env-1.4.0.tgz#dd2dd9898e705058967ee58742b9b44fbf94c7f3" 35 | 36 | now-storage@^1.1.0: 37 | version "1.1.0" 38 | resolved "https://registry.yarnpkg.com/now-storage/-/now-storage-1.1.0.tgz#342b17865f2bf44b2cd3d86e9796f8e4e1e65d0f" 39 | dependencies: 40 | async-retry "^1.1.3" 41 | node-fetch "^1.7.3" 42 | 43 | retry@0.10.1: 44 | version "0.10.1" 45 | resolved "https://registry.yarnpkg.com/retry/-/retry-0.10.1.tgz#e76388d217992c252750241d3d3956fed98d8ff4" 46 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | // Packages 2 | const retry = require("async-retry"); 3 | 4 | // Modules 5 | const createDeployment = require("./lib/create-deployment.js"); 6 | const getSHA = require("./lib/get-sha"); 7 | const tryCatch = require("./lib/try-catch.js"); 8 | const uploadFile = require("./lib/upload-file.js"); 9 | const validateFile = require("./lib/validate-file.js"); 10 | const validateFiles = require("./lib/validate-files.js"); 11 | const validateToken = require("./lib/validate-token.js"); 12 | const { DEPLOYMENT_NAME, RETRIES } = require("./lib/constants.js"); 13 | 14 | const defaultConfig = { 15 | deploymentName: DEPLOYMENT_NAME, 16 | retry: { 17 | retries: RETRIES 18 | } 19 | }; 20 | 21 | exports.upload = tryCatch(async function upload( 22 | token, 23 | file, 24 | config = defaultConfig 25 | ) { 26 | validateToken(token); 27 | validateFile(file); 28 | file.sha = getSHA(file.content); 29 | await retry(uploadFile(token, config, file), { 30 | ...defaultConfig.retry, 31 | ...config.retry 32 | }); 33 | return retry(createDeployment(token, config, [file]), { 34 | ...defaultConfig.retry, 35 | ...config.retry 36 | }); 37 | }); 38 | 39 | exports.multiUpload = tryCatch(async function multiUpload( 40 | token, 41 | files, 42 | config = defaultConfig 43 | ) { 44 | validateFiles(files); 45 | validateToken(token); 46 | files = files.map(file => ({ ...file, sha: getSHA(file.content) })); 47 | 48 | await Promise.all( 49 | files.map(file => { 50 | validateFile(file); 51 | 52 | return retry(uploadFile(token, config, file), { 53 | ...defaultConfig.retry, 54 | ...config.retry 55 | }); 56 | }) 57 | ); 58 | 59 | return await retry(createDeployment(token, config, files), { 60 | ...defaultConfig.retry, 61 | ...config.retry 62 | }); 63 | }); 64 | -------------------------------------------------------------------------------- /index.test.js: -------------------------------------------------------------------------------- 1 | const fetch = require("node-fetch"); 2 | const { upload, multiUpload } = require("."); 3 | 4 | jasmine.DEFAULT_TIMEOUT_INTERVAL = 10000; 5 | 6 | describe("File upload", () => { 7 | it("should upload a file and get a new URL", async () => { 8 | const content = "This is a file uploaded with now-storage."; 9 | 10 | const { url } = await upload( 11 | process.env.NOW_TOKEN, 12 | { 13 | name: "my-file.txt", 14 | content 15 | }, 16 | { deploymentName: "now-storage-test" } 17 | ); 18 | 19 | const response = await fetch(`https://${url}`); 20 | const body = await response.text(); 21 | 22 | expect(content).toBe(body); 23 | }); 24 | 25 | it("should upload a single file and get a new URL", async () => { 26 | const content = "This is a file uploaded with now-storage."; 27 | 28 | const { url } = await multiUpload( 29 | process.env.NOW_TOKEN, 30 | [ 31 | { 32 | name: "my-file.txt", 33 | content 34 | } 35 | ], 36 | { deploymentName: "now-storage-test" } 37 | ); 38 | 39 | const response = await fetch(`https://${url}`); 40 | const body = await response.text(); 41 | 42 | expect(content).toBe(body); 43 | }); 44 | 45 | it("should upload a file to a team and get a new URL", async () => { 46 | const content = JSON.stringify({ 47 | key: "value", 48 | key2: 123 49 | }); 50 | 51 | const { url } = await upload( 52 | process.env.NOW_TOKEN, 53 | { 54 | name: "my-file.json", 55 | content 56 | }, 57 | { deploymentName: "now-storage-test", teamId: process.env.NOW_TEAMID } 58 | ); 59 | 60 | const response = await fetch(`https://${url}`); 61 | const body = await response.text(); 62 | 63 | expect(content).toBe(body); 64 | }); 65 | 66 | it("should upload multiple files and get a new URL", async () => { 67 | const content1 = "This is file 1 uploaded with now-storage."; 68 | const content2 = "This is file 2 uploaded with now-storage."; 69 | 70 | const { url } = await multiUpload( 71 | process.env.NOW_TOKEN, 72 | [ 73 | { 74 | name: "my-file-1.txt", 75 | content: content1 76 | }, 77 | { 78 | name: "my-file-2.txt", 79 | content: content2 80 | } 81 | ], 82 | { deploymentName: "now-storage-test" } 83 | ); 84 | 85 | const response1 = await fetch(`https://${url}/my-file-1.txt`); 86 | const body1 = await response1.text(); 87 | const response2 = await fetch(`https://${url}/my-file-2.txt`); 88 | const body2 = await response2.text(); 89 | 90 | expect(body1).toBe(content1); 91 | expect(body2).toBe(content2); 92 | }); 93 | }); 94 | -------------------------------------------------------------------------------- /lib/constants.js: -------------------------------------------------------------------------------- 1 | exports.DEPLOY_URL = "https://api.zeit.co/v2/now/deployments"; 2 | exports.FILE_URL = "https://api.zeit.co/v2/now/files"; 3 | exports.DEPLOYMENT_NAME = "now-storage"; 4 | exports.RETRIES = 3; 5 | -------------------------------------------------------------------------------- /lib/create-deployment.js: -------------------------------------------------------------------------------- 1 | // Packages 2 | const fetch = require("node-fetch"); 3 | 4 | // Modules 5 | const getDeploymentName = require("./get-deployment-name.js"); 6 | const getDeploymentURL = require("./get-deployment-url.js"); 7 | 8 | function mapper(file) { 9 | return { 10 | file: file.name, 11 | sha: file.sha, 12 | size: file.content.length 13 | }; 14 | } 15 | 16 | function createDeployment(token, config, files) { 17 | const deployURL = getDeploymentURL(config); 18 | const name = getDeploymentName(config); 19 | 20 | return async () => { 21 | const response = await fetch(deployURL, { 22 | method: "POST", 23 | headers: { 24 | Authorization: `Bearer ${token}`, 25 | "Content-Type": "application/json" 26 | }, 27 | body: JSON.stringify({ 28 | name, 29 | deploymentType: "STATIC", 30 | files: files.map(mapper) 31 | }) 32 | }); 33 | 34 | const body = await response.json(); 35 | 36 | if (!response.ok) { 37 | (body.error.warnings || []).forEach(warning => 38 | console.warn(`Warning: ${warning.reason}\n${warning.sha}`) 39 | ); 40 | 41 | (body.error.missing || []).forEach(missing => 42 | console.warn(`Warning: The file ${missing} is missing.`) 43 | ); 44 | throw new Error(body.error.message); 45 | } 46 | 47 | return body; 48 | }; 49 | } 50 | 51 | module.exports = createDeployment; 52 | -------------------------------------------------------------------------------- /lib/error.js: -------------------------------------------------------------------------------- 1 | class Err extends Error { 2 | constructor(message, type, ...params) { 3 | super(message, ...params); 4 | this.type = type; 5 | if (process.env.NODE_ENV !== "production") { 6 | this.details = `https://err.sh/sergiodxa/now-storage/${type}`; 7 | } 8 | } 9 | } 10 | 11 | module.exports = Err; 12 | -------------------------------------------------------------------------------- /lib/error.test.js: -------------------------------------------------------------------------------- 1 | const Err = require("./error"); 2 | 3 | describe("Error", () => { 4 | it("should have property message", () => { 5 | const error = new Err("This is a test", "testing"); 6 | expect(error.message).toBe("This is a test"); 7 | }); 8 | 9 | it("should have a property type", () => { 10 | const error = new Err("This is a test", "testing"); 11 | expect(error.type).toBe("testing"); 12 | }); 13 | }); 14 | -------------------------------------------------------------------------------- /lib/get-deployment-name.js: -------------------------------------------------------------------------------- 1 | const { DEPLOYMENT_NAME } = require("./constants.js"); 2 | 3 | function getDeploymentName(config = {}) { 4 | return config.deploymentName || DEPLOYMENT_NAME; 5 | } 6 | 7 | module.exports = getDeploymentName; 8 | -------------------------------------------------------------------------------- /lib/get-deployment-name.test.js: -------------------------------------------------------------------------------- 1 | const getDeploymentName = require("./get-deployment-name"); 2 | const { DEPLOYMENT_NAME } = require("./constants.js"); 3 | 4 | describe("getDeploymentName", () => { 5 | it("should return the configured deployment name", () => { 6 | expect(getDeploymentName({ deploymentName: "testing" })).toBe("testing"); 7 | }); 8 | 9 | it("should return the default deployment name", () => { 10 | expect(getDeploymentName()).toBe(DEPLOYMENT_NAME); 11 | }); 12 | }); 13 | -------------------------------------------------------------------------------- /lib/get-deployment-url.js: -------------------------------------------------------------------------------- 1 | const { DEPLOY_URL } = require("./constants.js"); 2 | 3 | function getDeploymentURL(config = {}) { 4 | return config.teamId || config.team 5 | ? `${DEPLOY_URL}?teamId=${config.teamId || config.team}` 6 | : DEPLOY_URL; 7 | } 8 | 9 | module.exports = getDeploymentURL; 10 | -------------------------------------------------------------------------------- /lib/get-deployment-url.test.js: -------------------------------------------------------------------------------- 1 | const getDeploymentURL = require("./get-deployment-url"); 2 | const { DEPLOY_URL } = require("./constants.js"); 3 | 4 | describe("getDeploymentURL", () => { 5 | it("should return a URL without teamId if not defined", () => { 6 | expect(getDeploymentURL()).toBe(DEPLOY_URL); 7 | }); 8 | 9 | it("should return a URL with teamId", () => { 10 | expect(getDeploymentURL({ teamId: "team_123" })).toBe( 11 | `${DEPLOY_URL}?teamId=team_123` 12 | ); 13 | }); 14 | 15 | it("should return a URL with team", () => { 16 | expect(getDeploymentURL({ team: "team_123" })).toBe( 17 | `${DEPLOY_URL}?teamId=team_123` 18 | ); 19 | }); 20 | }); 21 | -------------------------------------------------------------------------------- /lib/get-file-url.js: -------------------------------------------------------------------------------- 1 | const { FILE_URL } = require("./constants.js"); 2 | 3 | function getFileURL(config = {}) { 4 | return config.teamId || config.team 5 | ? `${FILE_URL}?teamId=${config.teamId || config.team}` 6 | : FILE_URL; 7 | } 8 | 9 | module.exports = getFileURL; 10 | -------------------------------------------------------------------------------- /lib/get-file-url.test.js: -------------------------------------------------------------------------------- 1 | const getFileURL = require("./get-file-url"); 2 | const { FILE_URL } = require("./constants.js"); 3 | 4 | describe("getFileURL", () => { 5 | it("should return a URL without teamId if not defined", () => { 6 | expect(getFileURL()).toBe(FILE_URL); 7 | }); 8 | 9 | it("should return a URL with teamId", () => { 10 | expect(getFileURL({ teamId: "team_123" })).toBe( 11 | `${FILE_URL}?teamId=team_123` 12 | ); 13 | }); 14 | 15 | it("should return a URL with team", () => { 16 | expect(getFileURL({ team: "team_123" })).toBe( 17 | `${FILE_URL}?teamId=team_123` 18 | ); 19 | }); 20 | }); 21 | -------------------------------------------------------------------------------- /lib/get-sha.js: -------------------------------------------------------------------------------- 1 | const crypto = require("crypto"); 2 | 3 | function getSHA(file) { 4 | const shasum = crypto.createHash("sha1"); 5 | shasum.update(file); 6 | return shasum.digest("hex"); 7 | } 8 | 9 | module.exports = getSHA; 10 | -------------------------------------------------------------------------------- /lib/get-sha.test.js: -------------------------------------------------------------------------------- 1 | const getSHA = require("./get-sha"); 2 | 3 | describe("getSHA", () => { 4 | it("should return the correct SHA1", () => { 5 | expect(getSHA("This is a testing")).toBe( 6 | "dba2195925ffeb89e4cf52920e3c9d721182624e" 7 | ); 8 | }); 9 | }); 10 | -------------------------------------------------------------------------------- /lib/try-catch.js: -------------------------------------------------------------------------------- 1 | const Err = require("./error"); 2 | 3 | function tryCatch(fn) { 4 | return async (...params) => { 5 | try { 6 | return await fn.apply(this, params); 7 | } catch (error) { 8 | if (!(error instanceof Err)) { 9 | const err = new Err(`File upload failed`, "file-upload-failed"); 10 | err.original = error; 11 | throw err; 12 | } 13 | if (process.env.NODE_ENV !== "production") { 14 | error.message = `${error.message} More details: ${error.details}`; 15 | delete error.details; 16 | } 17 | throw error; 18 | } 19 | }; 20 | } 21 | 22 | module.exports = tryCatch; 23 | -------------------------------------------------------------------------------- /lib/upload-file.js: -------------------------------------------------------------------------------- 1 | const fetch = require("node-fetch"); 2 | const Err = require("./error.js"); 3 | 4 | const getFileURL = require("./get-file-url.js"); 5 | 6 | function uploadFile(token, config, file) { 7 | const fileUrl = getFileURL(config); 8 | 9 | return async () => { 10 | const response = await fetch(fileUrl, { 11 | method: "POST", 12 | headers: { 13 | Authorization: `Bearer ${token}`, 14 | "Content-Type": "application/octet-stream", 15 | "Content-Length": file.content.length, 16 | "x-now-digest": file.sha, 17 | "x-now-size": file.content.length 18 | }, 19 | body: file.content 20 | }); 21 | 22 | if (!response.ok) { 23 | const body = await response.json(); 24 | 25 | switch (body.error.code) { 26 | case "forbidden": { 27 | const error = new Err("Not authorized.", "not-authorized"); 28 | error.code = body.error.code; 29 | throw error; 30 | } 31 | default: { 32 | const error = new Err( 33 | `File upload failed, code: ${body.error.code}.`, 34 | "file-upload-failed" 35 | ); 36 | error.code = body.error.code; 37 | throw error; 38 | } 39 | } 40 | } 41 | }; 42 | } 43 | 44 | module.exports = uploadFile; 45 | -------------------------------------------------------------------------------- /lib/validate-file.js: -------------------------------------------------------------------------------- 1 | const Err = require("./error.js"); 2 | 3 | function validateFile(file) { 4 | // must have a file 5 | if (!file) { 6 | throw new Err("The file is required", "missin-file-object"); 7 | } 8 | // must be an object 9 | if (typeof file !== "object") { 10 | throw new Err("The file provided must be an object", "invalid-file-shape"); 11 | } 12 | // must have a name 13 | if (!file.name) { 14 | throw new Err("The file object must have a name", "invalid-file-shape"); 15 | } 16 | // must be a string 17 | if (typeof file.name !== "string") { 18 | throw new Err("The file name must be a string", "invalid-file-name-type"); 19 | } 20 | // must have a content 21 | if (!file.content) { 22 | throw new Err("The file object must have a content", "invalid-file-shape"); 23 | } 24 | return true; 25 | } 26 | 27 | module.exports = validateFile; 28 | -------------------------------------------------------------------------------- /lib/validate-file.test.js: -------------------------------------------------------------------------------- 1 | const validateFile = require("./validate-file"); 2 | 3 | describe("validateFile", () => { 4 | it("should throw if there is no file", () => { 5 | expect(() => validateFile()).toThrow("The file is required"); 6 | }); 7 | 8 | it("should throw if file is not an object", () => { 9 | expect(() => validateFile("testing")).toThrow( 10 | "The file provided must be an object" 11 | ); 12 | }); 13 | 14 | it("should throw if the file has no name", () => { 15 | expect(() => validateFile({})).toThrow("The file object must have a name"); 16 | }); 17 | 18 | it("should throw if the fila name is not an string", () => { 19 | expect(() => validateFile({ name: 123 })).toThrow( 20 | "The file name must be a string" 21 | ); 22 | }); 23 | 24 | it("should throw if the file has no content", () => { 25 | expect(() => validateFile({ name: "testing" })).toThrow( 26 | "The file object must have a content" 27 | ); 28 | }); 29 | 30 | it("should not throw if file is valid", () => { 31 | expect(validateFile({ name: "testing", content: "testing" })).toBeTruthy(); 32 | }); 33 | }); 34 | -------------------------------------------------------------------------------- /lib/validate-files.js: -------------------------------------------------------------------------------- 1 | const Err = require("./error.js"); 2 | 3 | function validateFiles(files) { 4 | // must have files 5 | if (!files) { 6 | throw new Err( 7 | "You must provide a file object or an array of file objects", 8 | "missing-file-object" 9 | ); 10 | } 11 | 12 | // default to array 13 | if (!Array.isArray(files)) { 14 | files = [files]; 15 | } 16 | 17 | // must have elements 18 | if (files.length === 0) { 19 | throw new Err( 20 | "You must provide a file object or an array of file objects", 21 | "missing-file-object" 22 | ); 23 | } 24 | 25 | return true; 26 | } 27 | 28 | module.exports = validateFiles; 29 | -------------------------------------------------------------------------------- /lib/validate-files.test.js: -------------------------------------------------------------------------------- 1 | const validateFiles = require("./validate-files"); 2 | 3 | describe("validateFiles", () => { 4 | it("should throw if there is no files", () => { 5 | expect(() => validateFiles()).toThrow( 6 | "You must provide a file object or an array of file objects" 7 | ); 8 | }); 9 | 10 | it("should throw if the files array is empty", () => { 11 | expect(() => validateFiles([])).toThrow( 12 | "You must provide a file object or an array of file objects" 13 | ); 14 | }); 15 | 16 | it("should not throw if file is valid", () => { 17 | expect( 18 | validateFiles([{ name: "testing", content: "testing" }]) 19 | ).toBeTruthy(); 20 | expect(validateFiles({ name: "testing", content: "testing" })).toBeTruthy(); 21 | }); 22 | }); 23 | -------------------------------------------------------------------------------- /lib/validate-token.js: -------------------------------------------------------------------------------- 1 | const Err = require("./error.js"); 2 | 3 | function validateToken(token) { 4 | // must have token 5 | if (!token) { 6 | throw new Err("Missing Now token", "missing-token"); 7 | } 8 | // must be a string 9 | if (typeof token !== "string") { 10 | throw new Err("Invalid token", "invalid-token"); 11 | } 12 | return true; 13 | } 14 | 15 | module.exports = validateToken; 16 | -------------------------------------------------------------------------------- /lib/validate-token.test.js: -------------------------------------------------------------------------------- 1 | const validateToken = require("./validate-token"); 2 | 3 | describe("validateToken", () => { 4 | it("should throw if there is no token", () => { 5 | expect(() => validateToken()).toThrow("Missing Now token"); 6 | }); 7 | 8 | it("should throw if the token is not a string", () => { 9 | expect(() => validateToken(123)).toThrow("Invalid token"); 10 | }); 11 | 12 | it("should not throw if token is valid", () => { 13 | expect(validateToken("MY_TOKEN")).toBeTruthy(); 14 | }); 15 | }); 16 | -------------------------------------------------------------------------------- /now.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "now-storage", 3 | "alias": "now-storage.now.sh", 4 | "type": "static", 5 | "files": [ 6 | "lib", 7 | "Dockerfile", 8 | "index.js", 9 | "index.test.js", 10 | "package.json", 11 | "yarn.lock" 12 | ], 13 | "build": { 14 | "env": { 15 | "NOW_TOKEN": "@ci-token", 16 | "NOW_TEAM": "@storage-team" 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "now-storage", 3 | "version": "1.3.0", 4 | "description": "Use Now static deployments to upload and store files.", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "jest --ci", 8 | "test:w": "npm run test -- --watch", 9 | "clean": "npm run clean:user && npm run clean:team", 10 | "clean:user": "now rm now-storage-test -s -y -t $NOW_TOKEN", 11 | "clean:team": "now rm now-storage-test -s -y -T $NOW_TEAM -t $NOW_TOKEN" 12 | }, 13 | "repository": { 14 | "type": "git", 15 | "url": "git+https://github.com/sergiodxa/now-storage.git" 16 | }, 17 | "keywords": [ 18 | "static", 19 | "file-upload", 20 | "now", 21 | "zeit", 22 | "now.sh", 23 | "storage", 24 | "file-storage" 25 | ], 26 | "author": { 27 | "name": "Sergio Xalambrí", 28 | "email": "hello@sergiodxa.com", 29 | "url": "https://sergiodxa.com/" 30 | }, 31 | "license": "MIT", 32 | "bugs": { 33 | "url": "https://github.com/sergiodxa/now-storage/issues" 34 | }, 35 | "homepage": "https://github.com/sergiodxa/now-storage#readme", 36 | "dependencies": { 37 | "async-retry": "^1.1.3", 38 | "node-fetch": "^2.0.0" 39 | }, 40 | "devDependencies": { 41 | "eslint": "^5.7.0", 42 | "eslint-config-prettier": "^3.1.0", 43 | "eslint-plugin-prettier": "^3.0.0", 44 | "eslint-plugin-unicorn": "^6.0.1", 45 | "jest": "23.1.0", 46 | "now": "11.2.0", 47 | "prettier": "^1.14.3" 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": [ 3 | "config:base" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /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": 6 | version "7.0.0" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0.tgz#06e2ab19bdb535385559aabb5ba59729482800f8" 8 | dependencies: 9 | "@babel/highlight" "^7.0.0" 10 | 11 | "@babel/code-frame@^7.0.0-beta.35": 12 | version "7.0.0-beta.49" 13 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0-beta.49.tgz#becd805482734440c9d137e46d77340e64d7f51b" 14 | dependencies: 15 | "@babel/highlight" "7.0.0-beta.49" 16 | 17 | "@babel/highlight@7.0.0-beta.49": 18 | version "7.0.0-beta.49" 19 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0-beta.49.tgz#96bdc6b43e13482012ba6691b1018492d39622cc" 20 | dependencies: 21 | chalk "^2.0.0" 22 | esutils "^2.0.2" 23 | js-tokens "^3.0.0" 24 | 25 | "@babel/highlight@^7.0.0": 26 | version "7.0.0" 27 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0.tgz#f710c38c8d458e6dd9a201afb637fcb781ce99e4" 28 | dependencies: 29 | chalk "^2.0.0" 30 | esutils "^2.0.2" 31 | js-tokens "^4.0.0" 32 | 33 | abab@^1.0.4: 34 | version "1.0.4" 35 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.4.tgz#5faad9c2c07f60dd76770f71cf025b62a63cfd4e" 36 | 37 | abbrev@1: 38 | version "1.1.1" 39 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 40 | 41 | acorn-globals@^4.1.0: 42 | version "4.1.0" 43 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.1.0.tgz#ab716025dbe17c54d3ef81d32ece2b2d99fe2538" 44 | dependencies: 45 | acorn "^5.0.0" 46 | 47 | acorn-jsx@^4.1.1: 48 | version "4.1.1" 49 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-4.1.1.tgz#e8e41e48ea2fe0c896740610ab6a4ffd8add225e" 50 | dependencies: 51 | acorn "^5.0.3" 52 | 53 | acorn@^5.0.0, acorn@^5.3.0: 54 | version "5.6.1" 55 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.6.1.tgz#c9e50c3e3717cf897f1b071ceadbb543bbc0a8d4" 56 | 57 | acorn@^5.0.3, acorn@^5.6.0: 58 | version "5.7.3" 59 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279" 60 | 61 | ajv@^4.9.1: 62 | version "4.11.8" 63 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 64 | dependencies: 65 | co "^4.6.0" 66 | json-stable-stringify "^1.0.1" 67 | 68 | ajv@^5.1.0: 69 | version "5.5.0" 70 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.0.tgz#eb2840746e9dc48bd5e063a36e3fd400c5eab5a9" 71 | dependencies: 72 | co "^4.6.0" 73 | fast-deep-equal "^1.0.0" 74 | fast-json-stable-stringify "^2.0.0" 75 | json-schema-traverse "^0.3.0" 76 | 77 | ajv@^6.5.3: 78 | version "6.5.4" 79 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.5.4.tgz#247d5274110db653706b550fcc2b797ca28cfc59" 80 | dependencies: 81 | fast-deep-equal "^2.0.1" 82 | fast-json-stable-stringify "^2.0.0" 83 | json-schema-traverse "^0.4.1" 84 | uri-js "^4.2.2" 85 | 86 | align-text@^0.1.1, align-text@^0.1.3: 87 | version "0.1.4" 88 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 89 | dependencies: 90 | kind-of "^3.0.2" 91 | longest "^1.0.1" 92 | repeat-string "^1.5.2" 93 | 94 | amdefine@>=0.0.4: 95 | version "1.0.1" 96 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 97 | 98 | ansi-escapes@^3.0.0: 99 | version "3.0.0" 100 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92" 101 | 102 | ansi-regex@^2.0.0: 103 | version "2.1.1" 104 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 105 | 106 | ansi-regex@^3.0.0: 107 | version "3.0.0" 108 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 109 | 110 | ansi-styles@^2.2.1: 111 | version "2.2.1" 112 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 113 | 114 | ansi-styles@^3.1.0, ansi-styles@^3.2.0: 115 | version "3.2.0" 116 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 117 | dependencies: 118 | color-convert "^1.9.0" 119 | 120 | ansi-styles@^3.2.1: 121 | version "3.2.1" 122 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 123 | dependencies: 124 | color-convert "^1.9.0" 125 | 126 | anymatch@^1.3.0: 127 | version "1.3.2" 128 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 129 | dependencies: 130 | micromatch "^2.1.5" 131 | normalize-path "^2.0.0" 132 | 133 | append-transform@^0.4.0: 134 | version "0.4.0" 135 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 136 | dependencies: 137 | default-require-extensions "^1.0.0" 138 | 139 | aproba@^1.0.3: 140 | version "1.2.0" 141 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 142 | 143 | are-we-there-yet@~1.1.2: 144 | version "1.1.4" 145 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 146 | dependencies: 147 | delegates "^1.0.0" 148 | readable-stream "^2.0.6" 149 | 150 | argparse@^1.0.7: 151 | version "1.0.9" 152 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 153 | dependencies: 154 | sprintf-js "~1.0.2" 155 | 156 | arr-diff@^2.0.0: 157 | version "2.0.0" 158 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 159 | dependencies: 160 | arr-flatten "^1.0.1" 161 | 162 | arr-diff@^4.0.0: 163 | version "4.0.0" 164 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 165 | 166 | arr-flatten@^1.0.1, arr-flatten@^1.1.0: 167 | version "1.1.0" 168 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 169 | 170 | arr-union@^3.1.0: 171 | version "3.1.0" 172 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 173 | 174 | array-equal@^1.0.0: 175 | version "1.0.0" 176 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 177 | 178 | array-union@^1.0.1: 179 | version "1.0.2" 180 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 181 | dependencies: 182 | array-uniq "^1.0.1" 183 | 184 | array-uniq@^1.0.1: 185 | version "1.0.3" 186 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 187 | 188 | array-unique@^0.2.1: 189 | version "0.2.1" 190 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 191 | 192 | array-unique@^0.3.2: 193 | version "0.3.2" 194 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 195 | 196 | arrify@^1.0.0, arrify@^1.0.1: 197 | version "1.0.1" 198 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 199 | 200 | asn1@~0.2.3: 201 | version "0.2.3" 202 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 203 | 204 | assert-plus@1.0.0, assert-plus@^1.0.0: 205 | version "1.0.0" 206 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 207 | 208 | assert-plus@^0.2.0: 209 | version "0.2.0" 210 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 211 | 212 | assign-symbols@^1.0.0: 213 | version "1.0.0" 214 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 215 | 216 | astral-regex@^1.0.0: 217 | version "1.0.0" 218 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" 219 | 220 | async-limiter@~1.0.0: 221 | version "1.0.0" 222 | resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8" 223 | 224 | async-retry@^1.1.3: 225 | version "1.1.3" 226 | resolved "https://registry.yarnpkg.com/async-retry/-/async-retry-1.1.3.tgz#1be664783337a0614999d543009a3b6e0de3609d" 227 | dependencies: 228 | retry "0.10.1" 229 | 230 | async@^1.4.0: 231 | version "1.5.2" 232 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 233 | 234 | async@^2.1.4: 235 | version "2.6.0" 236 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.0.tgz#61a29abb6fcc026fea77e56d1c6ec53a795951f4" 237 | dependencies: 238 | lodash "^4.14.0" 239 | 240 | asynckit@^0.4.0: 241 | version "0.4.0" 242 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 243 | 244 | atob@^2.1.1: 245 | version "2.1.1" 246 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.1.tgz#ae2d5a729477f289d60dd7f96a6314a22dd6c22a" 247 | 248 | aws-sign2@~0.6.0: 249 | version "0.6.0" 250 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 251 | 252 | aws-sign2@~0.7.0: 253 | version "0.7.0" 254 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 255 | 256 | aws4@^1.2.1, aws4@^1.6.0: 257 | version "1.6.0" 258 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 259 | 260 | babel-code-frame@^6.26.0: 261 | version "6.26.0" 262 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 263 | dependencies: 264 | chalk "^1.1.3" 265 | esutils "^2.0.2" 266 | js-tokens "^3.0.2" 267 | 268 | babel-core@^6.0.0, babel-core@^6.26.0: 269 | version "6.26.0" 270 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 271 | dependencies: 272 | babel-code-frame "^6.26.0" 273 | babel-generator "^6.26.0" 274 | babel-helpers "^6.24.1" 275 | babel-messages "^6.23.0" 276 | babel-register "^6.26.0" 277 | babel-runtime "^6.26.0" 278 | babel-template "^6.26.0" 279 | babel-traverse "^6.26.0" 280 | babel-types "^6.26.0" 281 | babylon "^6.18.0" 282 | convert-source-map "^1.5.0" 283 | debug "^2.6.8" 284 | json5 "^0.5.1" 285 | lodash "^4.17.4" 286 | minimatch "^3.0.4" 287 | path-is-absolute "^1.0.1" 288 | private "^0.1.7" 289 | slash "^1.0.0" 290 | source-map "^0.5.6" 291 | 292 | babel-generator@^6.18.0, babel-generator@^6.26.0: 293 | version "6.26.0" 294 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" 295 | dependencies: 296 | babel-messages "^6.23.0" 297 | babel-runtime "^6.26.0" 298 | babel-types "^6.26.0" 299 | detect-indent "^4.0.0" 300 | jsesc "^1.3.0" 301 | lodash "^4.17.4" 302 | source-map "^0.5.6" 303 | trim-right "^1.0.1" 304 | 305 | babel-helpers@^6.24.1: 306 | version "6.24.1" 307 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 308 | dependencies: 309 | babel-runtime "^6.22.0" 310 | babel-template "^6.24.1" 311 | 312 | babel-jest@^23.0.1: 313 | version "23.0.1" 314 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-23.0.1.tgz#bbad3bf523fb202da05ed0a6540b48c84eed13a6" 315 | dependencies: 316 | babel-plugin-istanbul "^4.1.6" 317 | babel-preset-jest "^23.0.1" 318 | 319 | babel-messages@^6.23.0: 320 | version "6.23.0" 321 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 322 | dependencies: 323 | babel-runtime "^6.22.0" 324 | 325 | babel-plugin-istanbul@^4.1.6: 326 | version "4.1.6" 327 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.6.tgz#36c59b2192efce81c5b378321b74175add1c9a45" 328 | dependencies: 329 | babel-plugin-syntax-object-rest-spread "^6.13.0" 330 | find-up "^2.1.0" 331 | istanbul-lib-instrument "^1.10.1" 332 | test-exclude "^4.2.1" 333 | 334 | babel-plugin-jest-hoist@^23.0.1: 335 | version "23.0.1" 336 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-23.0.1.tgz#eaa11c964563aea9c21becef2bdf7853f7f3c148" 337 | 338 | babel-plugin-syntax-object-rest-spread@^6.13.0: 339 | version "6.13.0" 340 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 341 | 342 | babel-preset-jest@^23.0.1: 343 | version "23.0.1" 344 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-23.0.1.tgz#631cc545c6cf021943013bcaf22f45d87fe62198" 345 | dependencies: 346 | babel-plugin-jest-hoist "^23.0.1" 347 | babel-plugin-syntax-object-rest-spread "^6.13.0" 348 | 349 | babel-register@^6.26.0: 350 | version "6.26.0" 351 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 352 | dependencies: 353 | babel-core "^6.26.0" 354 | babel-runtime "^6.26.0" 355 | core-js "^2.5.0" 356 | home-or-tmp "^2.0.0" 357 | lodash "^4.17.4" 358 | mkdirp "^0.5.1" 359 | source-map-support "^0.4.15" 360 | 361 | babel-runtime@^6.22.0, babel-runtime@^6.26.0: 362 | version "6.26.0" 363 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 364 | dependencies: 365 | core-js "^2.4.0" 366 | regenerator-runtime "^0.11.0" 367 | 368 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0: 369 | version "6.26.0" 370 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 371 | dependencies: 372 | babel-runtime "^6.26.0" 373 | babel-traverse "^6.26.0" 374 | babel-types "^6.26.0" 375 | babylon "^6.18.0" 376 | lodash "^4.17.4" 377 | 378 | babel-traverse@^6.18.0, babel-traverse@^6.26.0: 379 | version "6.26.0" 380 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 381 | dependencies: 382 | babel-code-frame "^6.26.0" 383 | babel-messages "^6.23.0" 384 | babel-runtime "^6.26.0" 385 | babel-types "^6.26.0" 386 | babylon "^6.18.0" 387 | debug "^2.6.8" 388 | globals "^9.18.0" 389 | invariant "^2.2.2" 390 | lodash "^4.17.4" 391 | 392 | babel-types@^6.18.0, babel-types@^6.26.0: 393 | version "6.26.0" 394 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 395 | dependencies: 396 | babel-runtime "^6.26.0" 397 | esutils "^2.0.2" 398 | lodash "^4.17.4" 399 | to-fast-properties "^1.0.3" 400 | 401 | babylon@^6.18.0: 402 | version "6.18.0" 403 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 404 | 405 | balanced-match@^1.0.0: 406 | version "1.0.0" 407 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 408 | 409 | base@^0.11.1: 410 | version "0.11.2" 411 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 412 | dependencies: 413 | cache-base "^1.0.1" 414 | class-utils "^0.3.5" 415 | component-emitter "^1.2.1" 416 | define-property "^1.0.0" 417 | isobject "^3.0.1" 418 | mixin-deep "^1.2.0" 419 | pascalcase "^0.1.1" 420 | 421 | bcrypt-pbkdf@^1.0.0: 422 | version "1.0.1" 423 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 424 | dependencies: 425 | tweetnacl "^0.14.3" 426 | 427 | block-stream@*: 428 | version "0.0.9" 429 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 430 | dependencies: 431 | inherits "~2.0.0" 432 | 433 | boom@2.x.x: 434 | version "2.10.1" 435 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 436 | dependencies: 437 | hoek "2.x.x" 438 | 439 | brace-expansion@^1.1.7: 440 | version "1.1.8" 441 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 442 | dependencies: 443 | balanced-match "^1.0.0" 444 | concat-map "0.0.1" 445 | 446 | braces@^1.8.2: 447 | version "1.8.5" 448 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 449 | dependencies: 450 | expand-range "^1.8.1" 451 | preserve "^0.2.0" 452 | repeat-element "^1.1.2" 453 | 454 | braces@^2.3.1: 455 | version "2.3.2" 456 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" 457 | dependencies: 458 | arr-flatten "^1.1.0" 459 | array-unique "^0.3.2" 460 | extend-shallow "^2.0.1" 461 | fill-range "^4.0.0" 462 | isobject "^3.0.1" 463 | repeat-element "^1.1.2" 464 | snapdragon "^0.8.1" 465 | snapdragon-node "^2.0.1" 466 | split-string "^3.0.2" 467 | to-regex "^3.0.1" 468 | 469 | browser-process-hrtime@^0.1.2: 470 | version "0.1.2" 471 | resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-0.1.2.tgz#425d68a58d3447f02a04aa894187fce8af8b7b8e" 472 | 473 | browser-resolve@^1.11.2: 474 | version "1.11.2" 475 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 476 | dependencies: 477 | resolve "1.1.7" 478 | 479 | bser@^2.0.0: 480 | version "2.0.0" 481 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 482 | dependencies: 483 | node-int64 "^0.4.0" 484 | 485 | buffer-from@^1.0.0: 486 | version "1.1.0" 487 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.0.tgz#87fcaa3a298358e0ade6e442cfce840740d1ad04" 488 | 489 | builtin-modules@^1.0.0: 490 | version "1.1.1" 491 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 492 | 493 | cache-base@^1.0.1: 494 | version "1.0.1" 495 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 496 | dependencies: 497 | collection-visit "^1.0.0" 498 | component-emitter "^1.2.1" 499 | get-value "^2.0.6" 500 | has-value "^1.0.0" 501 | isobject "^3.0.1" 502 | set-value "^2.0.0" 503 | to-object-path "^0.3.0" 504 | union-value "^1.0.0" 505 | unset-value "^1.0.0" 506 | 507 | caller-path@^0.1.0: 508 | version "0.1.0" 509 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 510 | dependencies: 511 | callsites "^0.2.0" 512 | 513 | callsites@^0.2.0: 514 | version "0.2.0" 515 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 516 | 517 | callsites@^2.0.0: 518 | version "2.0.0" 519 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 520 | 521 | camelcase@^1.0.2: 522 | version "1.2.1" 523 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 524 | 525 | camelcase@^4.1.0: 526 | version "4.1.0" 527 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 528 | 529 | caseless@~0.12.0: 530 | version "0.12.0" 531 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 532 | 533 | center-align@^0.1.1: 534 | version "0.1.3" 535 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 536 | dependencies: 537 | align-text "^0.1.3" 538 | lazy-cache "^1.0.3" 539 | 540 | chalk@^1.1.3: 541 | version "1.1.3" 542 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 543 | dependencies: 544 | ansi-styles "^2.2.1" 545 | escape-string-regexp "^1.0.2" 546 | has-ansi "^2.0.0" 547 | strip-ansi "^3.0.0" 548 | supports-color "^2.0.0" 549 | 550 | chalk@^2.0.0, chalk@^2.1.0: 551 | version "2.4.1" 552 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e" 553 | dependencies: 554 | ansi-styles "^3.2.1" 555 | escape-string-regexp "^1.0.5" 556 | supports-color "^5.3.0" 557 | 558 | chalk@^2.0.1: 559 | version "2.3.0" 560 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba" 561 | dependencies: 562 | ansi-styles "^3.1.0" 563 | escape-string-regexp "^1.0.5" 564 | supports-color "^4.0.0" 565 | 566 | chardet@^0.7.0: 567 | version "0.7.0" 568 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" 569 | 570 | ci-info@^1.0.0: 571 | version "1.1.2" 572 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.2.tgz#03561259db48d0474c8bdc90f5b47b068b6bbfb4" 573 | 574 | circular-json@^0.3.1: 575 | version "0.3.3" 576 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" 577 | 578 | class-utils@^0.3.5: 579 | version "0.3.6" 580 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 581 | dependencies: 582 | arr-union "^3.1.0" 583 | define-property "^0.2.5" 584 | isobject "^3.0.0" 585 | static-extend "^0.1.1" 586 | 587 | clean-regexp@^1.0.0: 588 | version "1.0.0" 589 | resolved "https://registry.yarnpkg.com/clean-regexp/-/clean-regexp-1.0.0.tgz#8df7c7aae51fd36874e8f8d05b9180bc11a3fed7" 590 | dependencies: 591 | escape-string-regexp "^1.0.5" 592 | 593 | cli-cursor@^2.1.0: 594 | version "2.1.0" 595 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 596 | dependencies: 597 | restore-cursor "^2.0.0" 598 | 599 | cli-width@^2.0.0: 600 | version "2.2.0" 601 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 602 | 603 | cliui@^2.1.0: 604 | version "2.1.0" 605 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 606 | dependencies: 607 | center-align "^0.1.1" 608 | right-align "^0.1.1" 609 | wordwrap "0.0.2" 610 | 611 | cliui@^4.0.0: 612 | version "4.1.0" 613 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49" 614 | dependencies: 615 | string-width "^2.1.1" 616 | strip-ansi "^4.0.0" 617 | wrap-ansi "^2.0.0" 618 | 619 | co@^4.6.0: 620 | version "4.6.0" 621 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 622 | 623 | code-point-at@^1.0.0: 624 | version "1.1.0" 625 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 626 | 627 | collection-visit@^1.0.0: 628 | version "1.0.0" 629 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 630 | dependencies: 631 | map-visit "^1.0.0" 632 | object-visit "^1.0.0" 633 | 634 | color-convert@^1.9.0: 635 | version "1.9.1" 636 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" 637 | dependencies: 638 | color-name "^1.1.1" 639 | 640 | color-name@^1.1.1: 641 | version "1.1.3" 642 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 643 | 644 | combined-stream@^1.0.5, combined-stream@~1.0.5: 645 | version "1.0.5" 646 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 647 | dependencies: 648 | delayed-stream "~1.0.0" 649 | 650 | compare-versions@^3.1.0: 651 | version "3.2.1" 652 | resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-3.2.1.tgz#a49eb7689d4caaf0b6db5220173fd279614000f7" 653 | 654 | component-emitter@^1.2.1: 655 | version "1.2.1" 656 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 657 | 658 | concat-map@0.0.1: 659 | version "0.0.1" 660 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 661 | 662 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 663 | version "1.1.0" 664 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 665 | 666 | convert-source-map@^1.4.0, convert-source-map@^1.5.0: 667 | version "1.5.1" 668 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 669 | 670 | copy-descriptor@^0.1.0: 671 | version "0.1.1" 672 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 673 | 674 | core-js@^2.4.0, core-js@^2.5.0: 675 | version "2.5.1" 676 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.1.tgz#ae6874dc66937789b80754ff5428df66819ca50b" 677 | 678 | core-util-is@1.0.2, core-util-is@~1.0.0: 679 | version "1.0.2" 680 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 681 | 682 | cross-spawn@^5.0.1: 683 | version "5.1.0" 684 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 685 | dependencies: 686 | lru-cache "^4.0.1" 687 | shebang-command "^1.2.0" 688 | which "^1.2.9" 689 | 690 | cross-spawn@^6.0.5: 691 | version "6.0.5" 692 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" 693 | dependencies: 694 | nice-try "^1.0.4" 695 | path-key "^2.0.1" 696 | semver "^5.5.0" 697 | shebang-command "^1.2.0" 698 | which "^1.2.9" 699 | 700 | cryptiles@2.x.x: 701 | version "2.0.5" 702 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 703 | dependencies: 704 | boom "2.x.x" 705 | 706 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 707 | version "0.3.2" 708 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 709 | 710 | "cssstyle@>= 0.3.1 < 0.4.0": 711 | version "0.3.1" 712 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.3.1.tgz#6da9b4cff1bc5d716e6e5fe8e04fcb1b50a49adf" 713 | dependencies: 714 | cssom "0.3.x" 715 | 716 | dashdash@^1.12.0: 717 | version "1.14.1" 718 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 719 | dependencies: 720 | assert-plus "^1.0.0" 721 | 722 | data-urls@^1.0.0: 723 | version "1.0.0" 724 | resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-1.0.0.tgz#24802de4e81c298ea8a9388bb0d8e461c774684f" 725 | dependencies: 726 | abab "^1.0.4" 727 | whatwg-mimetype "^2.0.0" 728 | whatwg-url "^6.4.0" 729 | 730 | debug@^2.2.0, debug@^2.3.3, debug@^2.6.8: 731 | version "2.6.9" 732 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 733 | dependencies: 734 | ms "2.0.0" 735 | 736 | debug@^3.1.0: 737 | version "3.1.0" 738 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 739 | dependencies: 740 | ms "2.0.0" 741 | 742 | debug@^4.0.1: 743 | version "4.1.0" 744 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.0.tgz#373687bffa678b38b1cd91f861b63850035ddc87" 745 | dependencies: 746 | ms "^2.1.1" 747 | 748 | decamelize@^1.0.0, decamelize@^1.1.1: 749 | version "1.2.0" 750 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 751 | 752 | decode-uri-component@^0.2.0: 753 | version "0.2.0" 754 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 755 | 756 | deep-extend@~0.4.0: 757 | version "0.4.2" 758 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 759 | 760 | deep-is@~0.1.3: 761 | version "0.1.3" 762 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 763 | 764 | default-require-extensions@^1.0.0: 765 | version "1.0.0" 766 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 767 | dependencies: 768 | strip-bom "^2.0.0" 769 | 770 | define-properties@^1.1.2: 771 | version "1.1.2" 772 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 773 | dependencies: 774 | foreach "^2.0.5" 775 | object-keys "^1.0.8" 776 | 777 | define-property@^0.2.5: 778 | version "0.2.5" 779 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 780 | dependencies: 781 | is-descriptor "^0.1.0" 782 | 783 | define-property@^1.0.0: 784 | version "1.0.0" 785 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 786 | dependencies: 787 | is-descriptor "^1.0.0" 788 | 789 | define-property@^2.0.2: 790 | version "2.0.2" 791 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 792 | dependencies: 793 | is-descriptor "^1.0.2" 794 | isobject "^3.0.1" 795 | 796 | del@^2.0.2: 797 | version "2.2.2" 798 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 799 | dependencies: 800 | globby "^5.0.0" 801 | is-path-cwd "^1.0.0" 802 | is-path-in-cwd "^1.0.0" 803 | object-assign "^4.0.1" 804 | pify "^2.0.0" 805 | pinkie-promise "^2.0.0" 806 | rimraf "^2.2.8" 807 | 808 | delayed-stream@~1.0.0: 809 | version "1.0.0" 810 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 811 | 812 | delegates@^1.0.0: 813 | version "1.0.0" 814 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 815 | 816 | detect-indent@^4.0.0: 817 | version "4.0.0" 818 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 819 | dependencies: 820 | repeating "^2.0.0" 821 | 822 | detect-libc@^1.0.2: 823 | version "1.0.3" 824 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 825 | 826 | detect-newline@^2.1.0: 827 | version "2.1.0" 828 | resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2" 829 | 830 | diff@^3.2.0: 831 | version "3.4.0" 832 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.4.0.tgz#b1d85507daf3964828de54b37d0d73ba67dda56c" 833 | 834 | doctrine@^2.1.0: 835 | version "2.1.0" 836 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 837 | dependencies: 838 | esutils "^2.0.2" 839 | 840 | domexception@^1.0.0: 841 | version "1.0.1" 842 | resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90" 843 | dependencies: 844 | webidl-conversions "^4.0.2" 845 | 846 | ecc-jsbn@~0.1.1: 847 | version "0.1.1" 848 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 849 | dependencies: 850 | jsbn "~0.1.0" 851 | 852 | error-ex@^1.2.0: 853 | version "1.3.1" 854 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 855 | dependencies: 856 | is-arrayish "^0.2.1" 857 | 858 | es-abstract@^1.5.1: 859 | version "1.12.0" 860 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.12.0.tgz#9dbbdd27c6856f0001421ca18782d786bf8a6165" 861 | dependencies: 862 | es-to-primitive "^1.1.1" 863 | function-bind "^1.1.1" 864 | has "^1.0.1" 865 | is-callable "^1.1.3" 866 | is-regex "^1.0.4" 867 | 868 | es-to-primitive@^1.1.1: 869 | version "1.1.1" 870 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 871 | dependencies: 872 | is-callable "^1.1.1" 873 | is-date-object "^1.0.1" 874 | is-symbol "^1.0.1" 875 | 876 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 877 | version "1.0.5" 878 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 879 | 880 | escodegen@^1.9.0: 881 | version "1.9.1" 882 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.9.1.tgz#dbae17ef96c8e4bedb1356f4504fa4cc2f7cb7e2" 883 | dependencies: 884 | esprima "^3.1.3" 885 | estraverse "^4.2.0" 886 | esutils "^2.0.2" 887 | optionator "^0.8.1" 888 | optionalDependencies: 889 | source-map "~0.6.1" 890 | 891 | eslint-ast-utils@^1.0.0: 892 | version "1.1.0" 893 | resolved "https://registry.yarnpkg.com/eslint-ast-utils/-/eslint-ast-utils-1.1.0.tgz#3d58ba557801cfb1c941d68131ee9f8c34bd1586" 894 | dependencies: 895 | lodash.get "^4.4.2" 896 | lodash.zip "^4.2.0" 897 | 898 | eslint-config-prettier@^3.1.0: 899 | version "3.1.0" 900 | resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-3.1.0.tgz#2c26d2cdcfa3a05f0642cd7e6e4ef3316cdabfa2" 901 | dependencies: 902 | get-stdin "^6.0.0" 903 | 904 | eslint-plugin-prettier@^3.0.0: 905 | version "3.0.0" 906 | resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-3.0.0.tgz#f6b823e065f8c36529918cdb766d7a0e975ec30c" 907 | dependencies: 908 | prettier-linter-helpers "^1.0.0" 909 | 910 | eslint-plugin-unicorn@^6.0.1: 911 | version "6.0.1" 912 | resolved "https://registry.yarnpkg.com/eslint-plugin-unicorn/-/eslint-plugin-unicorn-6.0.1.tgz#4a97f0bc9449e20b82848dad12094ee2ba72347e" 913 | dependencies: 914 | clean-regexp "^1.0.0" 915 | eslint-ast-utils "^1.0.0" 916 | import-modules "^1.1.0" 917 | lodash.camelcase "^4.1.1" 918 | lodash.kebabcase "^4.0.1" 919 | lodash.snakecase "^4.0.1" 920 | lodash.upperfirst "^4.2.0" 921 | safe-regex "^1.1.0" 922 | 923 | eslint-scope@^4.0.0: 924 | version "4.0.0" 925 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.0.tgz#50bf3071e9338bcdc43331794a0cb533f0136172" 926 | dependencies: 927 | esrecurse "^4.1.0" 928 | estraverse "^4.1.1" 929 | 930 | eslint-utils@^1.3.1: 931 | version "1.3.1" 932 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.3.1.tgz#9a851ba89ee7c460346f97cf8939c7298827e512" 933 | 934 | eslint-visitor-keys@^1.0.0: 935 | version "1.0.0" 936 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d" 937 | 938 | eslint@^5.7.0: 939 | version "5.7.0" 940 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-5.7.0.tgz#55c326d6fb2ad45fcbd0ce17c3846f025d1d819c" 941 | dependencies: 942 | "@babel/code-frame" "^7.0.0" 943 | ajv "^6.5.3" 944 | chalk "^2.1.0" 945 | cross-spawn "^6.0.5" 946 | debug "^4.0.1" 947 | doctrine "^2.1.0" 948 | eslint-scope "^4.0.0" 949 | eslint-utils "^1.3.1" 950 | eslint-visitor-keys "^1.0.0" 951 | espree "^4.0.0" 952 | esquery "^1.0.1" 953 | esutils "^2.0.2" 954 | file-entry-cache "^2.0.0" 955 | functional-red-black-tree "^1.0.1" 956 | glob "^7.1.2" 957 | globals "^11.7.0" 958 | ignore "^4.0.6" 959 | imurmurhash "^0.1.4" 960 | inquirer "^6.1.0" 961 | is-resolvable "^1.1.0" 962 | js-yaml "^3.12.0" 963 | json-stable-stringify-without-jsonify "^1.0.1" 964 | levn "^0.3.0" 965 | lodash "^4.17.5" 966 | minimatch "^3.0.4" 967 | mkdirp "^0.5.1" 968 | natural-compare "^1.4.0" 969 | optionator "^0.8.2" 970 | path-is-inside "^1.0.2" 971 | pluralize "^7.0.0" 972 | progress "^2.0.0" 973 | regexpp "^2.0.1" 974 | require-uncached "^1.0.3" 975 | semver "^5.5.1" 976 | strip-ansi "^4.0.0" 977 | strip-json-comments "^2.0.1" 978 | table "^5.0.2" 979 | text-table "^0.2.0" 980 | 981 | espree@^4.0.0: 982 | version "4.0.0" 983 | resolved "https://registry.yarnpkg.com/espree/-/espree-4.0.0.tgz#253998f20a0f82db5d866385799d912a83a36634" 984 | dependencies: 985 | acorn "^5.6.0" 986 | acorn-jsx "^4.1.1" 987 | 988 | esprima@^3.1.3: 989 | version "3.1.3" 990 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 991 | 992 | esprima@^4.0.0: 993 | version "4.0.0" 994 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 995 | 996 | esquery@^1.0.1: 997 | version "1.0.1" 998 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708" 999 | dependencies: 1000 | estraverse "^4.0.0" 1001 | 1002 | esrecurse@^4.1.0: 1003 | version "4.2.1" 1004 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" 1005 | dependencies: 1006 | estraverse "^4.1.0" 1007 | 1008 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: 1009 | version "4.2.0" 1010 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1011 | 1012 | esutils@^2.0.2: 1013 | version "2.0.2" 1014 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1015 | 1016 | exec-sh@^0.2.0: 1017 | version "0.2.1" 1018 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.1.tgz#163b98a6e89e6b65b47c2a28d215bc1f63989c38" 1019 | dependencies: 1020 | merge "^1.1.3" 1021 | 1022 | execa@^0.7.0: 1023 | version "0.7.0" 1024 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1025 | dependencies: 1026 | cross-spawn "^5.0.1" 1027 | get-stream "^3.0.0" 1028 | is-stream "^1.1.0" 1029 | npm-run-path "^2.0.0" 1030 | p-finally "^1.0.0" 1031 | signal-exit "^3.0.0" 1032 | strip-eof "^1.0.0" 1033 | 1034 | exit@^0.1.2: 1035 | version "0.1.2" 1036 | resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" 1037 | 1038 | expand-brackets@^0.1.4: 1039 | version "0.1.5" 1040 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1041 | dependencies: 1042 | is-posix-bracket "^0.1.0" 1043 | 1044 | expand-brackets@^2.1.4: 1045 | version "2.1.4" 1046 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 1047 | dependencies: 1048 | debug "^2.3.3" 1049 | define-property "^0.2.5" 1050 | extend-shallow "^2.0.1" 1051 | posix-character-classes "^0.1.0" 1052 | regex-not "^1.0.0" 1053 | snapdragon "^0.8.1" 1054 | to-regex "^3.0.1" 1055 | 1056 | expand-range@^1.8.1: 1057 | version "1.8.2" 1058 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1059 | dependencies: 1060 | fill-range "^2.1.0" 1061 | 1062 | expect@^23.1.0: 1063 | version "23.1.0" 1064 | resolved "https://registry.yarnpkg.com/expect/-/expect-23.1.0.tgz#bfdfd57a2a20170d875999ee9787cc71f01c205f" 1065 | dependencies: 1066 | ansi-styles "^3.2.0" 1067 | jest-diff "^23.0.1" 1068 | jest-get-type "^22.1.0" 1069 | jest-matcher-utils "^23.0.1" 1070 | jest-message-util "^23.1.0" 1071 | jest-regex-util "^23.0.0" 1072 | 1073 | extend-shallow@^2.0.1: 1074 | version "2.0.1" 1075 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 1076 | dependencies: 1077 | is-extendable "^0.1.0" 1078 | 1079 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 1080 | version "3.0.2" 1081 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 1082 | dependencies: 1083 | assign-symbols "^1.0.0" 1084 | is-extendable "^1.0.1" 1085 | 1086 | extend@~3.0.0, extend@~3.0.1: 1087 | version "3.0.1" 1088 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1089 | 1090 | external-editor@^3.0.0: 1091 | version "3.0.3" 1092 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.0.3.tgz#5866db29a97826dbe4bf3afd24070ead9ea43a27" 1093 | dependencies: 1094 | chardet "^0.7.0" 1095 | iconv-lite "^0.4.24" 1096 | tmp "^0.0.33" 1097 | 1098 | extglob@^0.3.1: 1099 | version "0.3.2" 1100 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1101 | dependencies: 1102 | is-extglob "^1.0.0" 1103 | 1104 | extglob@^2.0.4: 1105 | version "2.0.4" 1106 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 1107 | dependencies: 1108 | array-unique "^0.3.2" 1109 | define-property "^1.0.0" 1110 | expand-brackets "^2.1.4" 1111 | extend-shallow "^2.0.1" 1112 | fragment-cache "^0.2.1" 1113 | regex-not "^1.0.0" 1114 | snapdragon "^0.8.1" 1115 | to-regex "^3.0.1" 1116 | 1117 | extsprintf@1.3.0, extsprintf@^1.2.0: 1118 | version "1.3.0" 1119 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1120 | 1121 | fast-deep-equal@^1.0.0: 1122 | version "1.0.0" 1123 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 1124 | 1125 | fast-deep-equal@^2.0.1: 1126 | version "2.0.1" 1127 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" 1128 | 1129 | fast-diff@^1.1.2: 1130 | version "1.2.0" 1131 | resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03" 1132 | 1133 | fast-json-stable-stringify@^2.0.0: 1134 | version "2.0.0" 1135 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1136 | 1137 | fast-levenshtein@~2.0.4: 1138 | version "2.0.6" 1139 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1140 | 1141 | fb-watchman@^2.0.0: 1142 | version "2.0.0" 1143 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 1144 | dependencies: 1145 | bser "^2.0.0" 1146 | 1147 | figures@^2.0.0: 1148 | version "2.0.0" 1149 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1150 | dependencies: 1151 | escape-string-regexp "^1.0.5" 1152 | 1153 | file-entry-cache@^2.0.0: 1154 | version "2.0.0" 1155 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1156 | dependencies: 1157 | flat-cache "^1.2.1" 1158 | object-assign "^4.0.1" 1159 | 1160 | filename-regex@^2.0.0: 1161 | version "2.0.1" 1162 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1163 | 1164 | fileset@^2.0.2: 1165 | version "2.0.3" 1166 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 1167 | dependencies: 1168 | glob "^7.0.3" 1169 | minimatch "^3.0.3" 1170 | 1171 | fill-range@^2.1.0: 1172 | version "2.2.3" 1173 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1174 | dependencies: 1175 | is-number "^2.1.0" 1176 | isobject "^2.0.0" 1177 | randomatic "^1.1.3" 1178 | repeat-element "^1.1.2" 1179 | repeat-string "^1.5.2" 1180 | 1181 | fill-range@^4.0.0: 1182 | version "4.0.0" 1183 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 1184 | dependencies: 1185 | extend-shallow "^2.0.1" 1186 | is-number "^3.0.0" 1187 | repeat-string "^1.6.1" 1188 | to-regex-range "^2.1.0" 1189 | 1190 | find-up@^1.0.0: 1191 | version "1.1.2" 1192 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1193 | dependencies: 1194 | path-exists "^2.0.0" 1195 | pinkie-promise "^2.0.0" 1196 | 1197 | find-up@^2.1.0: 1198 | version "2.1.0" 1199 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1200 | dependencies: 1201 | locate-path "^2.0.0" 1202 | 1203 | flat-cache@^1.2.1: 1204 | version "1.3.0" 1205 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.0.tgz#d3030b32b38154f4e3b7e9c709f490f7ef97c481" 1206 | dependencies: 1207 | circular-json "^0.3.1" 1208 | del "^2.0.2" 1209 | graceful-fs "^4.1.2" 1210 | write "^0.2.1" 1211 | 1212 | for-in@^1.0.1, for-in@^1.0.2: 1213 | version "1.0.2" 1214 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1215 | 1216 | for-own@^0.1.4: 1217 | version "0.1.5" 1218 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1219 | dependencies: 1220 | for-in "^1.0.1" 1221 | 1222 | foreach@^2.0.5: 1223 | version "2.0.5" 1224 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1225 | 1226 | forever-agent@~0.6.1: 1227 | version "0.6.1" 1228 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1229 | 1230 | form-data@~2.1.1: 1231 | version "2.1.4" 1232 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1233 | dependencies: 1234 | asynckit "^0.4.0" 1235 | combined-stream "^1.0.5" 1236 | mime-types "^2.1.12" 1237 | 1238 | form-data@~2.3.1: 1239 | version "2.3.1" 1240 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.1.tgz#6fb94fbd71885306d73d15cc497fe4cc4ecd44bf" 1241 | dependencies: 1242 | asynckit "^0.4.0" 1243 | combined-stream "^1.0.5" 1244 | mime-types "^2.1.12" 1245 | 1246 | fragment-cache@^0.2.1: 1247 | version "0.2.1" 1248 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 1249 | dependencies: 1250 | map-cache "^0.2.2" 1251 | 1252 | fs.realpath@^1.0.0: 1253 | version "1.0.0" 1254 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1255 | 1256 | fsevents@^1.1.1: 1257 | version "1.1.3" 1258 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8" 1259 | dependencies: 1260 | nan "^2.3.0" 1261 | node-pre-gyp "^0.6.39" 1262 | 1263 | fstream-ignore@^1.0.5: 1264 | version "1.0.5" 1265 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1266 | dependencies: 1267 | fstream "^1.0.0" 1268 | inherits "2" 1269 | minimatch "^3.0.0" 1270 | 1271 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1272 | version "1.0.11" 1273 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1274 | dependencies: 1275 | graceful-fs "^4.1.2" 1276 | inherits "~2.0.0" 1277 | mkdirp ">=0.5 0" 1278 | rimraf "2" 1279 | 1280 | function-bind@^1.0.2, function-bind@^1.1.1: 1281 | version "1.1.1" 1282 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1283 | 1284 | functional-red-black-tree@^1.0.1: 1285 | version "1.0.1" 1286 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 1287 | 1288 | gauge@~2.7.3: 1289 | version "2.7.4" 1290 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1291 | dependencies: 1292 | aproba "^1.0.3" 1293 | console-control-strings "^1.0.0" 1294 | has-unicode "^2.0.0" 1295 | object-assign "^4.1.0" 1296 | signal-exit "^3.0.0" 1297 | string-width "^1.0.1" 1298 | strip-ansi "^3.0.1" 1299 | wide-align "^1.1.0" 1300 | 1301 | get-caller-file@^1.0.1: 1302 | version "1.0.2" 1303 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1304 | 1305 | get-stdin@^6.0.0: 1306 | version "6.0.0" 1307 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-6.0.0.tgz#9e09bf712b360ab9225e812048f71fde9c89657b" 1308 | 1309 | get-stream@^3.0.0: 1310 | version "3.0.0" 1311 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1312 | 1313 | get-value@^2.0.3, get-value@^2.0.6: 1314 | version "2.0.6" 1315 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 1316 | 1317 | getpass@^0.1.1: 1318 | version "0.1.7" 1319 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1320 | dependencies: 1321 | assert-plus "^1.0.0" 1322 | 1323 | glob-base@^0.3.0: 1324 | version "0.3.0" 1325 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1326 | dependencies: 1327 | glob-parent "^2.0.0" 1328 | is-glob "^2.0.0" 1329 | 1330 | glob-parent@^2.0.0: 1331 | version "2.0.0" 1332 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1333 | dependencies: 1334 | is-glob "^2.0.0" 1335 | 1336 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2: 1337 | version "7.1.2" 1338 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1339 | dependencies: 1340 | fs.realpath "^1.0.0" 1341 | inflight "^1.0.4" 1342 | inherits "2" 1343 | minimatch "^3.0.4" 1344 | once "^1.3.0" 1345 | path-is-absolute "^1.0.0" 1346 | 1347 | globals@^11.7.0: 1348 | version "11.8.0" 1349 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.8.0.tgz#c1ef45ee9bed6badf0663c5cb90e8d1adec1321d" 1350 | 1351 | globals@^9.18.0: 1352 | version "9.18.0" 1353 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1354 | 1355 | globby@^5.0.0: 1356 | version "5.0.0" 1357 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1358 | dependencies: 1359 | array-union "^1.0.1" 1360 | arrify "^1.0.0" 1361 | glob "^7.0.3" 1362 | object-assign "^4.0.1" 1363 | pify "^2.0.0" 1364 | pinkie-promise "^2.0.0" 1365 | 1366 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 1367 | version "4.1.11" 1368 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1369 | 1370 | growly@^1.3.0: 1371 | version "1.3.0" 1372 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1373 | 1374 | handlebars@^4.0.3: 1375 | version "4.0.11" 1376 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.11.tgz#630a35dfe0294bc281edae6ffc5d329fc7982dcc" 1377 | dependencies: 1378 | async "^1.4.0" 1379 | optimist "^0.6.1" 1380 | source-map "^0.4.4" 1381 | optionalDependencies: 1382 | uglify-js "^2.6" 1383 | 1384 | har-schema@^1.0.5: 1385 | version "1.0.5" 1386 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1387 | 1388 | har-schema@^2.0.0: 1389 | version "2.0.0" 1390 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 1391 | 1392 | har-validator@~4.2.1: 1393 | version "4.2.1" 1394 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1395 | dependencies: 1396 | ajv "^4.9.1" 1397 | har-schema "^1.0.5" 1398 | 1399 | har-validator@~5.0.3: 1400 | version "5.0.3" 1401 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd" 1402 | dependencies: 1403 | ajv "^5.1.0" 1404 | har-schema "^2.0.0" 1405 | 1406 | has-ansi@^2.0.0: 1407 | version "2.0.0" 1408 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1409 | dependencies: 1410 | ansi-regex "^2.0.0" 1411 | 1412 | has-flag@^1.0.0: 1413 | version "1.0.0" 1414 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1415 | 1416 | has-flag@^2.0.0: 1417 | version "2.0.0" 1418 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1419 | 1420 | has-flag@^3.0.0: 1421 | version "3.0.0" 1422 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1423 | 1424 | has-unicode@^2.0.0: 1425 | version "2.0.1" 1426 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1427 | 1428 | has-value@^0.3.1: 1429 | version "0.3.1" 1430 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 1431 | dependencies: 1432 | get-value "^2.0.3" 1433 | has-values "^0.1.4" 1434 | isobject "^2.0.0" 1435 | 1436 | has-value@^1.0.0: 1437 | version "1.0.0" 1438 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 1439 | dependencies: 1440 | get-value "^2.0.6" 1441 | has-values "^1.0.0" 1442 | isobject "^3.0.0" 1443 | 1444 | has-values@^0.1.4: 1445 | version "0.1.4" 1446 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 1447 | 1448 | has-values@^1.0.0: 1449 | version "1.0.0" 1450 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 1451 | dependencies: 1452 | is-number "^3.0.0" 1453 | kind-of "^4.0.0" 1454 | 1455 | has@^1.0.1: 1456 | version "1.0.1" 1457 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1458 | dependencies: 1459 | function-bind "^1.0.2" 1460 | 1461 | hawk@3.1.3, hawk@~3.1.3: 1462 | version "3.1.3" 1463 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1464 | dependencies: 1465 | boom "2.x.x" 1466 | cryptiles "2.x.x" 1467 | hoek "2.x.x" 1468 | sntp "1.x.x" 1469 | 1470 | hoek@2.x.x: 1471 | version "2.16.3" 1472 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1473 | 1474 | home-or-tmp@^2.0.0: 1475 | version "2.0.0" 1476 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1477 | dependencies: 1478 | os-homedir "^1.0.0" 1479 | os-tmpdir "^1.0.1" 1480 | 1481 | hosted-git-info@^2.1.4: 1482 | version "2.5.0" 1483 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 1484 | 1485 | html-encoding-sniffer@^1.0.2: 1486 | version "1.0.2" 1487 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8" 1488 | dependencies: 1489 | whatwg-encoding "^1.0.1" 1490 | 1491 | http-signature@~1.1.0: 1492 | version "1.1.1" 1493 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1494 | dependencies: 1495 | assert-plus "^0.2.0" 1496 | jsprim "^1.2.2" 1497 | sshpk "^1.7.0" 1498 | 1499 | http-signature@~1.2.0: 1500 | version "1.2.0" 1501 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 1502 | dependencies: 1503 | assert-plus "^1.0.0" 1504 | jsprim "^1.2.2" 1505 | sshpk "^1.7.0" 1506 | 1507 | iconv-lite@0.4.19: 1508 | version "0.4.19" 1509 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 1510 | 1511 | iconv-lite@^0.4.24: 1512 | version "0.4.24" 1513 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 1514 | dependencies: 1515 | safer-buffer ">= 2.1.2 < 3" 1516 | 1517 | ignore@^4.0.6: 1518 | version "4.0.6" 1519 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" 1520 | 1521 | import-local@^1.0.0: 1522 | version "1.0.0" 1523 | resolved "https://registry.yarnpkg.com/import-local/-/import-local-1.0.0.tgz#5e4ffdc03f4fe6c009c6729beb29631c2f8227bc" 1524 | dependencies: 1525 | pkg-dir "^2.0.0" 1526 | resolve-cwd "^2.0.0" 1527 | 1528 | import-modules@^1.1.0: 1529 | version "1.1.0" 1530 | resolved "https://registry.yarnpkg.com/import-modules/-/import-modules-1.1.0.tgz#748db79c5cc42bb9701efab424f894e72600e9dc" 1531 | 1532 | imurmurhash@^0.1.4: 1533 | version "0.1.4" 1534 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1535 | 1536 | inflight@^1.0.4: 1537 | version "1.0.6" 1538 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1539 | dependencies: 1540 | once "^1.3.0" 1541 | wrappy "1" 1542 | 1543 | inherits@2, inherits@~2.0.0, inherits@~2.0.3: 1544 | version "2.0.3" 1545 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1546 | 1547 | ini@~1.3.0: 1548 | version "1.3.5" 1549 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1550 | 1551 | inquirer@^6.1.0: 1552 | version "6.2.0" 1553 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.2.0.tgz#51adcd776f661369dc1e894859c2560a224abdd8" 1554 | dependencies: 1555 | ansi-escapes "^3.0.0" 1556 | chalk "^2.0.0" 1557 | cli-cursor "^2.1.0" 1558 | cli-width "^2.0.0" 1559 | external-editor "^3.0.0" 1560 | figures "^2.0.0" 1561 | lodash "^4.17.10" 1562 | mute-stream "0.0.7" 1563 | run-async "^2.2.0" 1564 | rxjs "^6.1.0" 1565 | string-width "^2.1.0" 1566 | strip-ansi "^4.0.0" 1567 | through "^2.3.6" 1568 | 1569 | invariant@^2.2.2: 1570 | version "2.2.2" 1571 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1572 | dependencies: 1573 | loose-envify "^1.0.0" 1574 | 1575 | invert-kv@^1.0.0: 1576 | version "1.0.0" 1577 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1578 | 1579 | is-accessor-descriptor@^0.1.6: 1580 | version "0.1.6" 1581 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 1582 | dependencies: 1583 | kind-of "^3.0.2" 1584 | 1585 | is-accessor-descriptor@^1.0.0: 1586 | version "1.0.0" 1587 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 1588 | dependencies: 1589 | kind-of "^6.0.0" 1590 | 1591 | is-arrayish@^0.2.1: 1592 | version "0.2.1" 1593 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1594 | 1595 | is-buffer@^1.1.5: 1596 | version "1.1.6" 1597 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1598 | 1599 | is-builtin-module@^1.0.0: 1600 | version "1.0.0" 1601 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1602 | dependencies: 1603 | builtin-modules "^1.0.0" 1604 | 1605 | is-callable@^1.1.1, is-callable@^1.1.3: 1606 | version "1.1.3" 1607 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 1608 | 1609 | is-ci@^1.0.10: 1610 | version "1.0.10" 1611 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 1612 | dependencies: 1613 | ci-info "^1.0.0" 1614 | 1615 | is-data-descriptor@^0.1.4: 1616 | version "0.1.4" 1617 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 1618 | dependencies: 1619 | kind-of "^3.0.2" 1620 | 1621 | is-data-descriptor@^1.0.0: 1622 | version "1.0.0" 1623 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 1624 | dependencies: 1625 | kind-of "^6.0.0" 1626 | 1627 | is-date-object@^1.0.1: 1628 | version "1.0.1" 1629 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 1630 | 1631 | is-descriptor@^0.1.0: 1632 | version "0.1.6" 1633 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 1634 | dependencies: 1635 | is-accessor-descriptor "^0.1.6" 1636 | is-data-descriptor "^0.1.4" 1637 | kind-of "^5.0.0" 1638 | 1639 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 1640 | version "1.0.2" 1641 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 1642 | dependencies: 1643 | is-accessor-descriptor "^1.0.0" 1644 | is-data-descriptor "^1.0.0" 1645 | kind-of "^6.0.2" 1646 | 1647 | is-dotfile@^1.0.0: 1648 | version "1.0.3" 1649 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1650 | 1651 | is-equal-shallow@^0.1.3: 1652 | version "0.1.3" 1653 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1654 | dependencies: 1655 | is-primitive "^2.0.0" 1656 | 1657 | is-extendable@^0.1.0, is-extendable@^0.1.1: 1658 | version "0.1.1" 1659 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1660 | 1661 | is-extendable@^1.0.1: 1662 | version "1.0.1" 1663 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 1664 | dependencies: 1665 | is-plain-object "^2.0.4" 1666 | 1667 | is-extglob@^1.0.0: 1668 | version "1.0.0" 1669 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1670 | 1671 | is-finite@^1.0.0: 1672 | version "1.0.2" 1673 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1674 | dependencies: 1675 | number-is-nan "^1.0.0" 1676 | 1677 | is-fullwidth-code-point@^1.0.0: 1678 | version "1.0.0" 1679 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1680 | dependencies: 1681 | number-is-nan "^1.0.0" 1682 | 1683 | is-fullwidth-code-point@^2.0.0: 1684 | version "2.0.0" 1685 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1686 | 1687 | is-generator-fn@^1.0.0: 1688 | version "1.0.0" 1689 | resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-1.0.0.tgz#969d49e1bb3329f6bb7f09089be26578b2ddd46a" 1690 | 1691 | is-glob@^2.0.0, is-glob@^2.0.1: 1692 | version "2.0.1" 1693 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1694 | dependencies: 1695 | is-extglob "^1.0.0" 1696 | 1697 | is-number@^2.1.0: 1698 | version "2.1.0" 1699 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1700 | dependencies: 1701 | kind-of "^3.0.2" 1702 | 1703 | is-number@^3.0.0: 1704 | version "3.0.0" 1705 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1706 | dependencies: 1707 | kind-of "^3.0.2" 1708 | 1709 | is-number@^4.0.0: 1710 | version "4.0.0" 1711 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" 1712 | 1713 | is-odd@^2.0.0: 1714 | version "2.0.0" 1715 | resolved "https://registry.yarnpkg.com/is-odd/-/is-odd-2.0.0.tgz#7646624671fd7ea558ccd9a2795182f2958f1b24" 1716 | dependencies: 1717 | is-number "^4.0.0" 1718 | 1719 | is-path-cwd@^1.0.0: 1720 | version "1.0.0" 1721 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1722 | 1723 | is-path-in-cwd@^1.0.0: 1724 | version "1.0.1" 1725 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz#5ac48b345ef675339bd6c7a48a912110b241cf52" 1726 | dependencies: 1727 | is-path-inside "^1.0.0" 1728 | 1729 | is-path-inside@^1.0.0: 1730 | version "1.0.1" 1731 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" 1732 | dependencies: 1733 | path-is-inside "^1.0.1" 1734 | 1735 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: 1736 | version "2.0.4" 1737 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 1738 | dependencies: 1739 | isobject "^3.0.1" 1740 | 1741 | is-posix-bracket@^0.1.0: 1742 | version "0.1.1" 1743 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1744 | 1745 | is-primitive@^2.0.0: 1746 | version "2.0.0" 1747 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1748 | 1749 | is-promise@^2.1.0: 1750 | version "2.1.0" 1751 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1752 | 1753 | is-regex@^1.0.4: 1754 | version "1.0.4" 1755 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 1756 | dependencies: 1757 | has "^1.0.1" 1758 | 1759 | is-resolvable@^1.1.0: 1760 | version "1.1.0" 1761 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" 1762 | 1763 | is-stream@^1.1.0: 1764 | version "1.1.0" 1765 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1766 | 1767 | is-symbol@^1.0.1: 1768 | version "1.0.1" 1769 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 1770 | 1771 | is-typedarray@~1.0.0: 1772 | version "1.0.0" 1773 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1774 | 1775 | is-utf8@^0.2.0: 1776 | version "0.2.1" 1777 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1778 | 1779 | is-windows@^1.0.2: 1780 | version "1.0.2" 1781 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 1782 | 1783 | isarray@1.0.0, isarray@~1.0.0: 1784 | version "1.0.0" 1785 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1786 | 1787 | isexe@^2.0.0: 1788 | version "2.0.0" 1789 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1790 | 1791 | isobject@^2.0.0: 1792 | version "2.1.0" 1793 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1794 | dependencies: 1795 | isarray "1.0.0" 1796 | 1797 | isobject@^3.0.0, isobject@^3.0.1: 1798 | version "3.0.1" 1799 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 1800 | 1801 | isstream@~0.1.2: 1802 | version "0.1.2" 1803 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1804 | 1805 | istanbul-api@^1.3.1: 1806 | version "1.3.1" 1807 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.3.1.tgz#4c3b05d18c0016d1022e079b98dc82c40f488954" 1808 | dependencies: 1809 | async "^2.1.4" 1810 | compare-versions "^3.1.0" 1811 | fileset "^2.0.2" 1812 | istanbul-lib-coverage "^1.2.0" 1813 | istanbul-lib-hook "^1.2.0" 1814 | istanbul-lib-instrument "^1.10.1" 1815 | istanbul-lib-report "^1.1.4" 1816 | istanbul-lib-source-maps "^1.2.4" 1817 | istanbul-reports "^1.3.0" 1818 | js-yaml "^3.7.0" 1819 | mkdirp "^0.5.1" 1820 | once "^1.4.0" 1821 | 1822 | istanbul-lib-coverage@^1.2.0: 1823 | version "1.2.0" 1824 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.2.0.tgz#f7d8f2e42b97e37fe796114cb0f9d68b5e3a4341" 1825 | 1826 | istanbul-lib-hook@^1.2.0: 1827 | version "1.2.0" 1828 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.2.0.tgz#ae556fd5a41a6e8efa0b1002b1e416dfeaf9816c" 1829 | dependencies: 1830 | append-transform "^0.4.0" 1831 | 1832 | istanbul-lib-instrument@^1.10.1: 1833 | version "1.10.1" 1834 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.10.1.tgz#724b4b6caceba8692d3f1f9d0727e279c401af7b" 1835 | dependencies: 1836 | babel-generator "^6.18.0" 1837 | babel-template "^6.16.0" 1838 | babel-traverse "^6.18.0" 1839 | babel-types "^6.18.0" 1840 | babylon "^6.18.0" 1841 | istanbul-lib-coverage "^1.2.0" 1842 | semver "^5.3.0" 1843 | 1844 | istanbul-lib-report@^1.1.4: 1845 | version "1.1.4" 1846 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.4.tgz#e886cdf505c4ebbd8e099e4396a90d0a28e2acb5" 1847 | dependencies: 1848 | istanbul-lib-coverage "^1.2.0" 1849 | mkdirp "^0.5.1" 1850 | path-parse "^1.0.5" 1851 | supports-color "^3.1.2" 1852 | 1853 | istanbul-lib-source-maps@^1.2.4: 1854 | version "1.2.5" 1855 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.5.tgz#ffe6be4e7ab86d3603e4290d54990b14506fc9b1" 1856 | dependencies: 1857 | debug "^3.1.0" 1858 | istanbul-lib-coverage "^1.2.0" 1859 | mkdirp "^0.5.1" 1860 | rimraf "^2.6.1" 1861 | source-map "^0.5.3" 1862 | 1863 | istanbul-reports@^1.3.0: 1864 | version "1.3.0" 1865 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.3.0.tgz#2f322e81e1d9520767597dca3c20a0cce89a3554" 1866 | dependencies: 1867 | handlebars "^4.0.3" 1868 | 1869 | jest-changed-files@^23.0.1: 1870 | version "23.0.1" 1871 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-23.0.1.tgz#f79572d0720844ea5df84c2a448e862c2254f60c" 1872 | dependencies: 1873 | throat "^4.0.0" 1874 | 1875 | jest-cli@^23.1.0: 1876 | version "23.1.0" 1877 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-23.1.0.tgz#eb8bdd4ce0d15250892e31ad9b69bc99d2a8f6bf" 1878 | dependencies: 1879 | ansi-escapes "^3.0.0" 1880 | chalk "^2.0.1" 1881 | exit "^0.1.2" 1882 | glob "^7.1.2" 1883 | graceful-fs "^4.1.11" 1884 | import-local "^1.0.0" 1885 | is-ci "^1.0.10" 1886 | istanbul-api "^1.3.1" 1887 | istanbul-lib-coverage "^1.2.0" 1888 | istanbul-lib-instrument "^1.10.1" 1889 | istanbul-lib-source-maps "^1.2.4" 1890 | jest-changed-files "^23.0.1" 1891 | jest-config "^23.1.0" 1892 | jest-environment-jsdom "^23.1.0" 1893 | jest-get-type "^22.1.0" 1894 | jest-haste-map "^23.1.0" 1895 | jest-message-util "^23.1.0" 1896 | jest-regex-util "^23.0.0" 1897 | jest-resolve-dependencies "^23.0.1" 1898 | jest-runner "^23.1.0" 1899 | jest-runtime "^23.1.0" 1900 | jest-snapshot "^23.0.1" 1901 | jest-util "^23.1.0" 1902 | jest-validate "^23.0.1" 1903 | jest-watcher "^23.1.0" 1904 | jest-worker "^23.0.1" 1905 | micromatch "^2.3.11" 1906 | node-notifier "^5.2.1" 1907 | realpath-native "^1.0.0" 1908 | rimraf "^2.5.4" 1909 | slash "^1.0.0" 1910 | string-length "^2.0.0" 1911 | strip-ansi "^4.0.0" 1912 | which "^1.2.12" 1913 | yargs "^11.0.0" 1914 | 1915 | jest-config@^23.1.0: 1916 | version "23.1.0" 1917 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-23.1.0.tgz#708ca0f431d356ee424fb4895d3308006bdd8241" 1918 | dependencies: 1919 | babel-core "^6.0.0" 1920 | babel-jest "^23.0.1" 1921 | chalk "^2.0.1" 1922 | glob "^7.1.1" 1923 | jest-environment-jsdom "^23.1.0" 1924 | jest-environment-node "^23.1.0" 1925 | jest-get-type "^22.1.0" 1926 | jest-jasmine2 "^23.1.0" 1927 | jest-regex-util "^23.0.0" 1928 | jest-resolve "^23.1.0" 1929 | jest-util "^23.1.0" 1930 | jest-validate "^23.0.1" 1931 | pretty-format "^23.0.1" 1932 | 1933 | jest-diff@^23.0.1: 1934 | version "23.0.1" 1935 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-23.0.1.tgz#3d49137cee12c320a4b4d2b4a6fa6e82d491a16a" 1936 | dependencies: 1937 | chalk "^2.0.1" 1938 | diff "^3.2.0" 1939 | jest-get-type "^22.1.0" 1940 | pretty-format "^23.0.1" 1941 | 1942 | jest-docblock@^23.0.1: 1943 | version "23.0.1" 1944 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-23.0.1.tgz#deddd18333be5dc2415260a04ef3fce9276b5725" 1945 | dependencies: 1946 | detect-newline "^2.1.0" 1947 | 1948 | jest-each@^23.1.0: 1949 | version "23.1.0" 1950 | resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-23.1.0.tgz#16146b592c354867a5ae5e13cdf15c6c65b696c6" 1951 | dependencies: 1952 | chalk "^2.0.1" 1953 | pretty-format "^23.0.1" 1954 | 1955 | jest-environment-jsdom@^23.1.0: 1956 | version "23.1.0" 1957 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-23.1.0.tgz#85929914e23bed3577dac9755f4106d0697c479c" 1958 | dependencies: 1959 | jest-mock "^23.1.0" 1960 | jest-util "^23.1.0" 1961 | jsdom "^11.5.1" 1962 | 1963 | jest-environment-node@^23.1.0: 1964 | version "23.1.0" 1965 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-23.1.0.tgz#452c0bf949cfcbbacda1e1762eeed70bc784c7d5" 1966 | dependencies: 1967 | jest-mock "^23.1.0" 1968 | jest-util "^23.1.0" 1969 | 1970 | jest-get-type@^22.1.0: 1971 | version "22.4.3" 1972 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-22.4.3.tgz#e3a8504d8479342dd4420236b322869f18900ce4" 1973 | 1974 | jest-haste-map@^23.1.0: 1975 | version "23.1.0" 1976 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-23.1.0.tgz#18e6c7d5a8d27136f91b7d9852f85de0c7074c49" 1977 | dependencies: 1978 | fb-watchman "^2.0.0" 1979 | graceful-fs "^4.1.11" 1980 | jest-docblock "^23.0.1" 1981 | jest-serializer "^23.0.1" 1982 | jest-worker "^23.0.1" 1983 | micromatch "^2.3.11" 1984 | sane "^2.0.0" 1985 | 1986 | jest-jasmine2@^23.1.0: 1987 | version "23.1.0" 1988 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-23.1.0.tgz#4afab31729b654ddcd2b074add849396f13b30b8" 1989 | dependencies: 1990 | chalk "^2.0.1" 1991 | co "^4.6.0" 1992 | expect "^23.1.0" 1993 | is-generator-fn "^1.0.0" 1994 | jest-diff "^23.0.1" 1995 | jest-each "^23.1.0" 1996 | jest-matcher-utils "^23.0.1" 1997 | jest-message-util "^23.1.0" 1998 | jest-snapshot "^23.0.1" 1999 | jest-util "^23.1.0" 2000 | pretty-format "^23.0.1" 2001 | 2002 | jest-leak-detector@^23.0.1: 2003 | version "23.0.1" 2004 | resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-23.0.1.tgz#9dba07505ac3495c39d3ec09ac1e564599e861a0" 2005 | dependencies: 2006 | pretty-format "^23.0.1" 2007 | 2008 | jest-matcher-utils@^23.0.1: 2009 | version "23.0.1" 2010 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-23.0.1.tgz#0c6c0daedf9833c2a7f36236069efecb4c3f6e5f" 2011 | dependencies: 2012 | chalk "^2.0.1" 2013 | jest-get-type "^22.1.0" 2014 | pretty-format "^23.0.1" 2015 | 2016 | jest-message-util@^23.1.0: 2017 | version "23.1.0" 2018 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-23.1.0.tgz#9a809ba487ecac5ce511d4e698ee3b5ee2461ea9" 2019 | dependencies: 2020 | "@babel/code-frame" "^7.0.0-beta.35" 2021 | chalk "^2.0.1" 2022 | micromatch "^2.3.11" 2023 | slash "^1.0.0" 2024 | stack-utils "^1.0.1" 2025 | 2026 | jest-mock@^23.1.0: 2027 | version "23.1.0" 2028 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-23.1.0.tgz#a381c31b121ab1f60c462a2dadb7b86dcccac487" 2029 | 2030 | jest-regex-util@^23.0.0: 2031 | version "23.0.0" 2032 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-23.0.0.tgz#dd5c1fde0c46f4371314cf10f7a751a23f4e8f76" 2033 | 2034 | jest-resolve-dependencies@^23.0.1: 2035 | version "23.0.1" 2036 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-23.0.1.tgz#d01a10ddad9152c4cecdf5eac2b88571c4b6a64d" 2037 | dependencies: 2038 | jest-regex-util "^23.0.0" 2039 | jest-snapshot "^23.0.1" 2040 | 2041 | jest-resolve@^23.1.0: 2042 | version "23.1.0" 2043 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-23.1.0.tgz#b9e316eecebd6f00bc50a3960d1527bae65792d2" 2044 | dependencies: 2045 | browser-resolve "^1.11.2" 2046 | chalk "^2.0.1" 2047 | realpath-native "^1.0.0" 2048 | 2049 | jest-runner@^23.1.0: 2050 | version "23.1.0" 2051 | resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-23.1.0.tgz#fa20a933fff731a5432b3561e7f6426594fa29b5" 2052 | dependencies: 2053 | exit "^0.1.2" 2054 | graceful-fs "^4.1.11" 2055 | jest-config "^23.1.0" 2056 | jest-docblock "^23.0.1" 2057 | jest-haste-map "^23.1.0" 2058 | jest-jasmine2 "^23.1.0" 2059 | jest-leak-detector "^23.0.1" 2060 | jest-message-util "^23.1.0" 2061 | jest-runtime "^23.1.0" 2062 | jest-util "^23.1.0" 2063 | jest-worker "^23.0.1" 2064 | source-map-support "^0.5.6" 2065 | throat "^4.0.0" 2066 | 2067 | jest-runtime@^23.1.0: 2068 | version "23.1.0" 2069 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-23.1.0.tgz#b4ae0e87259ecacfd4a884b639db07cf4dd620af" 2070 | dependencies: 2071 | babel-core "^6.0.0" 2072 | babel-plugin-istanbul "^4.1.6" 2073 | chalk "^2.0.1" 2074 | convert-source-map "^1.4.0" 2075 | exit "^0.1.2" 2076 | fast-json-stable-stringify "^2.0.0" 2077 | graceful-fs "^4.1.11" 2078 | jest-config "^23.1.0" 2079 | jest-haste-map "^23.1.0" 2080 | jest-message-util "^23.1.0" 2081 | jest-regex-util "^23.0.0" 2082 | jest-resolve "^23.1.0" 2083 | jest-snapshot "^23.0.1" 2084 | jest-util "^23.1.0" 2085 | jest-validate "^23.0.1" 2086 | micromatch "^2.3.11" 2087 | realpath-native "^1.0.0" 2088 | slash "^1.0.0" 2089 | strip-bom "3.0.0" 2090 | write-file-atomic "^2.1.0" 2091 | yargs "^11.0.0" 2092 | 2093 | jest-serializer@^23.0.1: 2094 | version "23.0.1" 2095 | resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-23.0.1.tgz#a3776aeb311e90fe83fab9e533e85102bd164165" 2096 | 2097 | jest-snapshot@^23.0.1: 2098 | version "23.0.1" 2099 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-23.0.1.tgz#6674fa19b9eb69a99cabecd415bddc42d6af3e7e" 2100 | dependencies: 2101 | chalk "^2.0.1" 2102 | jest-diff "^23.0.1" 2103 | jest-matcher-utils "^23.0.1" 2104 | mkdirp "^0.5.1" 2105 | natural-compare "^1.4.0" 2106 | pretty-format "^23.0.1" 2107 | 2108 | jest-util@^23.1.0: 2109 | version "23.1.0" 2110 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-23.1.0.tgz#c0251baf34644c6dd2fea78a962f4263ac55772d" 2111 | dependencies: 2112 | callsites "^2.0.0" 2113 | chalk "^2.0.1" 2114 | graceful-fs "^4.1.11" 2115 | is-ci "^1.0.10" 2116 | jest-message-util "^23.1.0" 2117 | mkdirp "^0.5.1" 2118 | slash "^1.0.0" 2119 | source-map "^0.6.0" 2120 | 2121 | jest-validate@^23.0.1: 2122 | version "23.0.1" 2123 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-23.0.1.tgz#cd9f01a89d26bb885f12a8667715e9c865a5754f" 2124 | dependencies: 2125 | chalk "^2.0.1" 2126 | jest-get-type "^22.1.0" 2127 | leven "^2.1.0" 2128 | pretty-format "^23.0.1" 2129 | 2130 | jest-watcher@^23.1.0: 2131 | version "23.1.0" 2132 | resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-23.1.0.tgz#a8d5842e38d9fb4afff823df6abb42a58ae6cdbd" 2133 | dependencies: 2134 | ansi-escapes "^3.0.0" 2135 | chalk "^2.0.1" 2136 | string-length "^2.0.0" 2137 | 2138 | jest-worker@^23.0.1: 2139 | version "23.0.1" 2140 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-23.0.1.tgz#9e649dd963ff4046026f91c4017f039a6aa4a7bc" 2141 | dependencies: 2142 | merge-stream "^1.0.1" 2143 | 2144 | jest@23.1.0: 2145 | version "23.1.0" 2146 | resolved "https://registry.yarnpkg.com/jest/-/jest-23.1.0.tgz#bbb7f893100a11a742dd8bd0d047a54b0968ad1a" 2147 | dependencies: 2148 | import-local "^1.0.0" 2149 | jest-cli "^23.1.0" 2150 | 2151 | js-tokens@^3.0.0, js-tokens@^3.0.2: 2152 | version "3.0.2" 2153 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 2154 | 2155 | js-tokens@^4.0.0: 2156 | version "4.0.0" 2157 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 2158 | 2159 | js-yaml@^3.12.0: 2160 | version "3.12.0" 2161 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.0.tgz#eaed656ec8344f10f527c6bfa1b6e2244de167d1" 2162 | dependencies: 2163 | argparse "^1.0.7" 2164 | esprima "^4.0.0" 2165 | 2166 | js-yaml@^3.7.0: 2167 | version "3.10.0" 2168 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" 2169 | dependencies: 2170 | argparse "^1.0.7" 2171 | esprima "^4.0.0" 2172 | 2173 | jsbn@~0.1.0: 2174 | version "0.1.1" 2175 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2176 | 2177 | jsdom@^11.5.1: 2178 | version "11.11.0" 2179 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-11.11.0.tgz#df486efad41aee96c59ad7a190e2449c7eb1110e" 2180 | dependencies: 2181 | abab "^1.0.4" 2182 | acorn "^5.3.0" 2183 | acorn-globals "^4.1.0" 2184 | array-equal "^1.0.0" 2185 | cssom ">= 0.3.2 < 0.4.0" 2186 | cssstyle ">= 0.3.1 < 0.4.0" 2187 | data-urls "^1.0.0" 2188 | domexception "^1.0.0" 2189 | escodegen "^1.9.0" 2190 | html-encoding-sniffer "^1.0.2" 2191 | left-pad "^1.2.0" 2192 | nwsapi "^2.0.0" 2193 | parse5 "4.0.0" 2194 | pn "^1.1.0" 2195 | request "^2.83.0" 2196 | request-promise-native "^1.0.5" 2197 | sax "^1.2.4" 2198 | symbol-tree "^3.2.2" 2199 | tough-cookie "^2.3.3" 2200 | w3c-hr-time "^1.0.1" 2201 | webidl-conversions "^4.0.2" 2202 | whatwg-encoding "^1.0.3" 2203 | whatwg-mimetype "^2.1.0" 2204 | whatwg-url "^6.4.1" 2205 | ws "^4.0.0" 2206 | xml-name-validator "^3.0.0" 2207 | 2208 | jsesc@^1.3.0: 2209 | version "1.3.0" 2210 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2211 | 2212 | json-schema-traverse@^0.3.0: 2213 | version "0.3.1" 2214 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 2215 | 2216 | json-schema-traverse@^0.4.1: 2217 | version "0.4.1" 2218 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 2219 | 2220 | json-schema@0.2.3: 2221 | version "0.2.3" 2222 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2223 | 2224 | json-stable-stringify-without-jsonify@^1.0.1: 2225 | version "1.0.1" 2226 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 2227 | 2228 | json-stable-stringify@^1.0.1: 2229 | version "1.0.1" 2230 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2231 | dependencies: 2232 | jsonify "~0.0.0" 2233 | 2234 | json-stringify-safe@~5.0.1: 2235 | version "5.0.1" 2236 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2237 | 2238 | json5@^0.5.1: 2239 | version "0.5.1" 2240 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2241 | 2242 | jsonify@~0.0.0: 2243 | version "0.0.0" 2244 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2245 | 2246 | jsprim@^1.2.2: 2247 | version "1.4.1" 2248 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 2249 | dependencies: 2250 | assert-plus "1.0.0" 2251 | extsprintf "1.3.0" 2252 | json-schema "0.2.3" 2253 | verror "1.10.0" 2254 | 2255 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 2256 | version "3.2.2" 2257 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2258 | dependencies: 2259 | is-buffer "^1.1.5" 2260 | 2261 | kind-of@^4.0.0: 2262 | version "4.0.0" 2263 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2264 | dependencies: 2265 | is-buffer "^1.1.5" 2266 | 2267 | kind-of@^5.0.0: 2268 | version "5.1.0" 2269 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 2270 | 2271 | kind-of@^6.0.0, kind-of@^6.0.2: 2272 | version "6.0.2" 2273 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 2274 | 2275 | lazy-cache@^1.0.3: 2276 | version "1.0.4" 2277 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2278 | 2279 | lcid@^1.0.0: 2280 | version "1.0.0" 2281 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2282 | dependencies: 2283 | invert-kv "^1.0.0" 2284 | 2285 | left-pad@^1.2.0: 2286 | version "1.3.0" 2287 | resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.3.0.tgz#5b8a3a7765dfe001261dde915589e782f8c94d1e" 2288 | 2289 | leven@^2.1.0: 2290 | version "2.1.0" 2291 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 2292 | 2293 | levn@^0.3.0, levn@~0.3.0: 2294 | version "0.3.0" 2295 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2296 | dependencies: 2297 | prelude-ls "~1.1.2" 2298 | type-check "~0.3.2" 2299 | 2300 | load-json-file@^1.0.0: 2301 | version "1.1.0" 2302 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2303 | dependencies: 2304 | graceful-fs "^4.1.2" 2305 | parse-json "^2.2.0" 2306 | pify "^2.0.0" 2307 | pinkie-promise "^2.0.0" 2308 | strip-bom "^2.0.0" 2309 | 2310 | locate-path@^2.0.0: 2311 | version "2.0.0" 2312 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2313 | dependencies: 2314 | p-locate "^2.0.0" 2315 | path-exists "^3.0.0" 2316 | 2317 | lodash.camelcase@^4.1.1: 2318 | version "4.3.0" 2319 | resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" 2320 | 2321 | lodash.get@^4.4.2: 2322 | version "4.4.2" 2323 | resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99" 2324 | 2325 | lodash.kebabcase@^4.0.1: 2326 | version "4.1.1" 2327 | resolved "https://registry.yarnpkg.com/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz#8489b1cb0d29ff88195cceca448ff6d6cc295c36" 2328 | 2329 | lodash.snakecase@^4.0.1: 2330 | version "4.1.1" 2331 | resolved "https://registry.yarnpkg.com/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz#39d714a35357147837aefd64b5dcbb16becd8f8d" 2332 | 2333 | lodash.sortby@^4.7.0: 2334 | version "4.7.0" 2335 | resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" 2336 | 2337 | lodash.upperfirst@^4.2.0: 2338 | version "4.3.1" 2339 | resolved "https://registry.yarnpkg.com/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz#1365edf431480481ef0d1c68957a5ed99d49f7ce" 2340 | 2341 | lodash.zip@^4.2.0: 2342 | version "4.2.0" 2343 | resolved "https://registry.yarnpkg.com/lodash.zip/-/lodash.zip-4.2.0.tgz#ec6662e4896408ed4ab6c542a3990b72cc080020" 2344 | 2345 | lodash@^4.13.1: 2346 | version "4.17.10" 2347 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7" 2348 | 2349 | lodash@^4.14.0, lodash@^4.17.4: 2350 | version "4.17.4" 2351 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2352 | 2353 | lodash@^4.17.10, lodash@^4.17.5: 2354 | version "4.17.11" 2355 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d" 2356 | 2357 | longest@^1.0.1: 2358 | version "1.0.1" 2359 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2360 | 2361 | loose-envify@^1.0.0: 2362 | version "1.3.1" 2363 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2364 | dependencies: 2365 | js-tokens "^3.0.0" 2366 | 2367 | lru-cache@^4.0.1: 2368 | version "4.1.1" 2369 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 2370 | dependencies: 2371 | pseudomap "^1.0.2" 2372 | yallist "^2.1.2" 2373 | 2374 | makeerror@1.0.x: 2375 | version "1.0.11" 2376 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 2377 | dependencies: 2378 | tmpl "1.0.x" 2379 | 2380 | map-cache@^0.2.2: 2381 | version "0.2.2" 2382 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 2383 | 2384 | map-visit@^1.0.0: 2385 | version "1.0.0" 2386 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 2387 | dependencies: 2388 | object-visit "^1.0.0" 2389 | 2390 | mem@^1.1.0: 2391 | version "1.1.0" 2392 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 2393 | dependencies: 2394 | mimic-fn "^1.0.0" 2395 | 2396 | merge-stream@^1.0.1: 2397 | version "1.0.1" 2398 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1" 2399 | dependencies: 2400 | readable-stream "^2.0.1" 2401 | 2402 | merge@^1.1.3: 2403 | version "1.2.0" 2404 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 2405 | 2406 | micromatch@^2.1.5, micromatch@^2.3.11: 2407 | version "2.3.11" 2408 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2409 | dependencies: 2410 | arr-diff "^2.0.0" 2411 | array-unique "^0.2.1" 2412 | braces "^1.8.2" 2413 | expand-brackets "^0.1.4" 2414 | extglob "^0.3.1" 2415 | filename-regex "^2.0.0" 2416 | is-extglob "^1.0.0" 2417 | is-glob "^2.0.1" 2418 | kind-of "^3.0.2" 2419 | normalize-path "^2.0.1" 2420 | object.omit "^2.0.0" 2421 | parse-glob "^3.0.4" 2422 | regex-cache "^0.4.2" 2423 | 2424 | micromatch@^3.1.8: 2425 | version "3.1.10" 2426 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 2427 | dependencies: 2428 | arr-diff "^4.0.0" 2429 | array-unique "^0.3.2" 2430 | braces "^2.3.1" 2431 | define-property "^2.0.2" 2432 | extend-shallow "^3.0.2" 2433 | extglob "^2.0.4" 2434 | fragment-cache "^0.2.1" 2435 | kind-of "^6.0.2" 2436 | nanomatch "^1.2.9" 2437 | object.pick "^1.3.0" 2438 | regex-not "^1.0.0" 2439 | snapdragon "^0.8.1" 2440 | to-regex "^3.0.2" 2441 | 2442 | mime-db@~1.30.0: 2443 | version "1.30.0" 2444 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 2445 | 2446 | mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.7: 2447 | version "2.1.17" 2448 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 2449 | dependencies: 2450 | mime-db "~1.30.0" 2451 | 2452 | mimic-fn@^1.0.0: 2453 | version "1.1.0" 2454 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 2455 | 2456 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 2457 | version "3.0.4" 2458 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2459 | dependencies: 2460 | brace-expansion "^1.1.7" 2461 | 2462 | minimist@0.0.8: 2463 | version "0.0.8" 2464 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2465 | 2466 | minimist@^1.1.1, minimist@^1.2.0: 2467 | version "1.2.0" 2468 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2469 | 2470 | minimist@~0.0.1: 2471 | version "0.0.10" 2472 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 2473 | 2474 | mixin-deep@^1.2.0: 2475 | version "1.3.1" 2476 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe" 2477 | dependencies: 2478 | for-in "^1.0.2" 2479 | is-extendable "^1.0.1" 2480 | 2481 | "mkdirp@>=0.5 0", mkdirp@^0.5.1: 2482 | version "0.5.1" 2483 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2484 | dependencies: 2485 | minimist "0.0.8" 2486 | 2487 | ms@2.0.0: 2488 | version "2.0.0" 2489 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2490 | 2491 | ms@^2.1.1: 2492 | version "2.1.1" 2493 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" 2494 | 2495 | mute-stream@0.0.7: 2496 | version "0.0.7" 2497 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 2498 | 2499 | nan@^2.3.0: 2500 | version "2.8.0" 2501 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.8.0.tgz#ed715f3fe9de02b57a5e6252d90a96675e1f085a" 2502 | 2503 | nanomatch@^1.2.9: 2504 | version "1.2.9" 2505 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.9.tgz#879f7150cb2dab7a471259066c104eee6e0fa7c2" 2506 | dependencies: 2507 | arr-diff "^4.0.0" 2508 | array-unique "^0.3.2" 2509 | define-property "^2.0.2" 2510 | extend-shallow "^3.0.2" 2511 | fragment-cache "^0.2.1" 2512 | is-odd "^2.0.0" 2513 | is-windows "^1.0.2" 2514 | kind-of "^6.0.2" 2515 | object.pick "^1.3.0" 2516 | regex-not "^1.0.0" 2517 | snapdragon "^0.8.1" 2518 | to-regex "^3.0.1" 2519 | 2520 | natural-compare@^1.4.0: 2521 | version "1.4.0" 2522 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2523 | 2524 | nice-try@^1.0.4: 2525 | version "1.0.5" 2526 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" 2527 | 2528 | node-fetch@^2.0.0: 2529 | version "2.1.2" 2530 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.1.2.tgz#ab884e8e7e57e38a944753cec706f788d1768bb5" 2531 | 2532 | node-int64@^0.4.0: 2533 | version "0.4.0" 2534 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2535 | 2536 | node-notifier@^5.2.1: 2537 | version "5.2.1" 2538 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.2.1.tgz#fa313dd08f5517db0e2502e5758d664ac69f9dea" 2539 | dependencies: 2540 | growly "^1.3.0" 2541 | semver "^5.4.1" 2542 | shellwords "^0.1.1" 2543 | which "^1.3.0" 2544 | 2545 | node-pre-gyp@^0.6.39: 2546 | version "0.6.39" 2547 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" 2548 | dependencies: 2549 | detect-libc "^1.0.2" 2550 | hawk "3.1.3" 2551 | mkdirp "^0.5.1" 2552 | nopt "^4.0.1" 2553 | npmlog "^4.0.2" 2554 | rc "^1.1.7" 2555 | request "2.81.0" 2556 | rimraf "^2.6.1" 2557 | semver "^5.3.0" 2558 | tar "^2.2.1" 2559 | tar-pack "^3.4.0" 2560 | 2561 | nopt@^4.0.1: 2562 | version "4.0.1" 2563 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2564 | dependencies: 2565 | abbrev "1" 2566 | osenv "^0.1.4" 2567 | 2568 | normalize-package-data@^2.3.2: 2569 | version "2.4.0" 2570 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 2571 | dependencies: 2572 | hosted-git-info "^2.1.4" 2573 | is-builtin-module "^1.0.0" 2574 | semver "2 || 3 || 4 || 5" 2575 | validate-npm-package-license "^3.0.1" 2576 | 2577 | normalize-path@^2.0.0, normalize-path@^2.0.1: 2578 | version "2.1.1" 2579 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2580 | dependencies: 2581 | remove-trailing-separator "^1.0.1" 2582 | 2583 | now@11.2.0: 2584 | version "11.2.0" 2585 | resolved "https://registry.yarnpkg.com/now/-/now-11.2.0.tgz#5d26f5ded26086e67d037ed0e9b4422d6aca0989" 2586 | 2587 | npm-run-path@^2.0.0: 2588 | version "2.0.2" 2589 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2590 | dependencies: 2591 | path-key "^2.0.0" 2592 | 2593 | npmlog@^4.0.2: 2594 | version "4.1.2" 2595 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2596 | dependencies: 2597 | are-we-there-yet "~1.1.2" 2598 | console-control-strings "~1.1.0" 2599 | gauge "~2.7.3" 2600 | set-blocking "~2.0.0" 2601 | 2602 | number-is-nan@^1.0.0: 2603 | version "1.0.1" 2604 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2605 | 2606 | nwsapi@^2.0.0: 2607 | version "2.0.1" 2608 | resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.0.1.tgz#a50d59a2dcb14b6931401171713ced2d0eb3468f" 2609 | 2610 | oauth-sign@~0.8.1, oauth-sign@~0.8.2: 2611 | version "0.8.2" 2612 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2613 | 2614 | object-assign@^4.0.1, object-assign@^4.1.0: 2615 | version "4.1.1" 2616 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2617 | 2618 | object-copy@^0.1.0: 2619 | version "0.1.0" 2620 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 2621 | dependencies: 2622 | copy-descriptor "^0.1.0" 2623 | define-property "^0.2.5" 2624 | kind-of "^3.0.3" 2625 | 2626 | object-keys@^1.0.8: 2627 | version "1.0.11" 2628 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 2629 | 2630 | object-visit@^1.0.0: 2631 | version "1.0.1" 2632 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 2633 | dependencies: 2634 | isobject "^3.0.0" 2635 | 2636 | object.getownpropertydescriptors@^2.0.3: 2637 | version "2.0.3" 2638 | resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16" 2639 | dependencies: 2640 | define-properties "^1.1.2" 2641 | es-abstract "^1.5.1" 2642 | 2643 | object.omit@^2.0.0: 2644 | version "2.0.1" 2645 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2646 | dependencies: 2647 | for-own "^0.1.4" 2648 | is-extendable "^0.1.1" 2649 | 2650 | object.pick@^1.3.0: 2651 | version "1.3.0" 2652 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 2653 | dependencies: 2654 | isobject "^3.0.1" 2655 | 2656 | once@^1.3.0, once@^1.3.3, once@^1.4.0: 2657 | version "1.4.0" 2658 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2659 | dependencies: 2660 | wrappy "1" 2661 | 2662 | onetime@^2.0.0: 2663 | version "2.0.1" 2664 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2665 | dependencies: 2666 | mimic-fn "^1.0.0" 2667 | 2668 | optimist@^0.6.1: 2669 | version "0.6.1" 2670 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2671 | dependencies: 2672 | minimist "~0.0.1" 2673 | wordwrap "~0.0.2" 2674 | 2675 | optionator@^0.8.1, optionator@^0.8.2: 2676 | version "0.8.2" 2677 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2678 | dependencies: 2679 | deep-is "~0.1.3" 2680 | fast-levenshtein "~2.0.4" 2681 | levn "~0.3.0" 2682 | prelude-ls "~1.1.2" 2683 | type-check "~0.3.2" 2684 | wordwrap "~1.0.0" 2685 | 2686 | os-homedir@^1.0.0: 2687 | version "1.0.2" 2688 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2689 | 2690 | os-locale@^2.0.0: 2691 | version "2.1.0" 2692 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 2693 | dependencies: 2694 | execa "^0.7.0" 2695 | lcid "^1.0.0" 2696 | mem "^1.1.0" 2697 | 2698 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.2: 2699 | version "1.0.2" 2700 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2701 | 2702 | osenv@^0.1.4: 2703 | version "0.1.4" 2704 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2705 | dependencies: 2706 | os-homedir "^1.0.0" 2707 | os-tmpdir "^1.0.0" 2708 | 2709 | p-finally@^1.0.0: 2710 | version "1.0.0" 2711 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2712 | 2713 | p-limit@^1.1.0: 2714 | version "1.1.0" 2715 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 2716 | 2717 | p-locate@^2.0.0: 2718 | version "2.0.0" 2719 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2720 | dependencies: 2721 | p-limit "^1.1.0" 2722 | 2723 | parse-glob@^3.0.4: 2724 | version "3.0.4" 2725 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2726 | dependencies: 2727 | glob-base "^0.3.0" 2728 | is-dotfile "^1.0.0" 2729 | is-extglob "^1.0.0" 2730 | is-glob "^2.0.0" 2731 | 2732 | parse-json@^2.2.0: 2733 | version "2.2.0" 2734 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2735 | dependencies: 2736 | error-ex "^1.2.0" 2737 | 2738 | parse5@4.0.0: 2739 | version "4.0.0" 2740 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608" 2741 | 2742 | pascalcase@^0.1.1: 2743 | version "0.1.1" 2744 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 2745 | 2746 | path-exists@^2.0.0: 2747 | version "2.1.0" 2748 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2749 | dependencies: 2750 | pinkie-promise "^2.0.0" 2751 | 2752 | path-exists@^3.0.0: 2753 | version "3.0.0" 2754 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2755 | 2756 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 2757 | version "1.0.1" 2758 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2759 | 2760 | path-is-inside@^1.0.1, path-is-inside@^1.0.2: 2761 | version "1.0.2" 2762 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2763 | 2764 | path-key@^2.0.0, path-key@^2.0.1: 2765 | version "2.0.1" 2766 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2767 | 2768 | path-parse@^1.0.5: 2769 | version "1.0.5" 2770 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2771 | 2772 | path-type@^1.0.0: 2773 | version "1.1.0" 2774 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2775 | dependencies: 2776 | graceful-fs "^4.1.2" 2777 | pify "^2.0.0" 2778 | pinkie-promise "^2.0.0" 2779 | 2780 | performance-now@^0.2.0: 2781 | version "0.2.0" 2782 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2783 | 2784 | performance-now@^2.1.0: 2785 | version "2.1.0" 2786 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 2787 | 2788 | pify@^2.0.0: 2789 | version "2.3.0" 2790 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2791 | 2792 | pinkie-promise@^2.0.0: 2793 | version "2.0.1" 2794 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2795 | dependencies: 2796 | pinkie "^2.0.0" 2797 | 2798 | pinkie@^2.0.0: 2799 | version "2.0.4" 2800 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2801 | 2802 | pkg-dir@^2.0.0: 2803 | version "2.0.0" 2804 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" 2805 | dependencies: 2806 | find-up "^2.1.0" 2807 | 2808 | pluralize@^7.0.0: 2809 | version "7.0.0" 2810 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777" 2811 | 2812 | pn@^1.1.0: 2813 | version "1.1.0" 2814 | resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb" 2815 | 2816 | posix-character-classes@^0.1.0: 2817 | version "0.1.1" 2818 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 2819 | 2820 | prelude-ls@~1.1.2: 2821 | version "1.1.2" 2822 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2823 | 2824 | preserve@^0.2.0: 2825 | version "0.2.0" 2826 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2827 | 2828 | prettier-linter-helpers@^1.0.0: 2829 | version "1.0.0" 2830 | resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b" 2831 | dependencies: 2832 | fast-diff "^1.1.2" 2833 | 2834 | prettier@^1.14.3: 2835 | version "1.14.3" 2836 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.14.3.tgz#90238dd4c0684b7edce5f83b0fb7328e48bd0895" 2837 | 2838 | pretty-format@^23.0.1: 2839 | version "23.0.1" 2840 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-23.0.1.tgz#d61d065268e4c759083bccbca27a01ad7c7601f4" 2841 | dependencies: 2842 | ansi-regex "^3.0.0" 2843 | ansi-styles "^3.2.0" 2844 | 2845 | private@^0.1.7: 2846 | version "0.1.8" 2847 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 2848 | 2849 | process-nextick-args@~1.0.6: 2850 | version "1.0.7" 2851 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2852 | 2853 | process-nextick-args@~2.0.0: 2854 | version "2.0.0" 2855 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 2856 | 2857 | progress@^2.0.0: 2858 | version "2.0.0" 2859 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" 2860 | 2861 | pseudomap@^1.0.2: 2862 | version "1.0.2" 2863 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2864 | 2865 | punycode@^1.4.1: 2866 | version "1.4.1" 2867 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2868 | 2869 | punycode@^2.1.0: 2870 | version "2.1.1" 2871 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 2872 | 2873 | qs@~6.4.0: 2874 | version "6.4.0" 2875 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2876 | 2877 | qs@~6.5.1: 2878 | version "6.5.1" 2879 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8" 2880 | 2881 | randomatic@^1.1.3: 2882 | version "1.1.7" 2883 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 2884 | dependencies: 2885 | is-number "^3.0.0" 2886 | kind-of "^4.0.0" 2887 | 2888 | rc@^1.1.7: 2889 | version "1.2.2" 2890 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.2.tgz#d8ce9cb57e8d64d9c7badd9876c7c34cbe3c7077" 2891 | dependencies: 2892 | deep-extend "~0.4.0" 2893 | ini "~1.3.0" 2894 | minimist "^1.2.0" 2895 | strip-json-comments "~2.0.1" 2896 | 2897 | read-pkg-up@^1.0.1: 2898 | version "1.0.1" 2899 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2900 | dependencies: 2901 | find-up "^1.0.0" 2902 | read-pkg "^1.0.0" 2903 | 2904 | read-pkg@^1.0.0: 2905 | version "1.1.0" 2906 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2907 | dependencies: 2908 | load-json-file "^1.0.0" 2909 | normalize-package-data "^2.3.2" 2910 | path-type "^1.0.0" 2911 | 2912 | readable-stream@^2.0.1: 2913 | version "2.3.6" 2914 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 2915 | dependencies: 2916 | core-util-is "~1.0.0" 2917 | inherits "~2.0.3" 2918 | isarray "~1.0.0" 2919 | process-nextick-args "~2.0.0" 2920 | safe-buffer "~5.1.1" 2921 | string_decoder "~1.1.1" 2922 | util-deprecate "~1.0.1" 2923 | 2924 | readable-stream@^2.0.6, readable-stream@^2.1.4: 2925 | version "2.3.3" 2926 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 2927 | dependencies: 2928 | core-util-is "~1.0.0" 2929 | inherits "~2.0.3" 2930 | isarray "~1.0.0" 2931 | process-nextick-args "~1.0.6" 2932 | safe-buffer "~5.1.1" 2933 | string_decoder "~1.0.3" 2934 | util-deprecate "~1.0.1" 2935 | 2936 | realpath-native@^1.0.0: 2937 | version "1.0.0" 2938 | resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.0.0.tgz#7885721a83b43bd5327609f0ddecb2482305fdf0" 2939 | dependencies: 2940 | util.promisify "^1.0.0" 2941 | 2942 | regenerator-runtime@^0.11.0: 2943 | version "0.11.0" 2944 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1" 2945 | 2946 | regex-cache@^0.4.2: 2947 | version "0.4.4" 2948 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 2949 | dependencies: 2950 | is-equal-shallow "^0.1.3" 2951 | 2952 | regex-not@^1.0.0, regex-not@^1.0.2: 2953 | version "1.0.2" 2954 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 2955 | dependencies: 2956 | extend-shallow "^3.0.2" 2957 | safe-regex "^1.1.0" 2958 | 2959 | regexpp@^2.0.1: 2960 | version "2.0.1" 2961 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f" 2962 | 2963 | remove-trailing-separator@^1.0.1: 2964 | version "1.1.0" 2965 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2966 | 2967 | repeat-element@^1.1.2: 2968 | version "1.1.2" 2969 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2970 | 2971 | repeat-string@^1.5.2, repeat-string@^1.6.1: 2972 | version "1.6.1" 2973 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2974 | 2975 | repeating@^2.0.0: 2976 | version "2.0.1" 2977 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2978 | dependencies: 2979 | is-finite "^1.0.0" 2980 | 2981 | request-promise-core@1.1.1: 2982 | version "1.1.1" 2983 | resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.1.tgz#3eee00b2c5aa83239cfb04c5700da36f81cd08b6" 2984 | dependencies: 2985 | lodash "^4.13.1" 2986 | 2987 | request-promise-native@^1.0.5: 2988 | version "1.0.5" 2989 | resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.5.tgz#5281770f68e0c9719e5163fd3fab482215f4fda5" 2990 | dependencies: 2991 | request-promise-core "1.1.1" 2992 | stealthy-require "^1.1.0" 2993 | tough-cookie ">=2.3.3" 2994 | 2995 | request@2.81.0: 2996 | version "2.81.0" 2997 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2998 | dependencies: 2999 | aws-sign2 "~0.6.0" 3000 | aws4 "^1.2.1" 3001 | caseless "~0.12.0" 3002 | combined-stream "~1.0.5" 3003 | extend "~3.0.0" 3004 | forever-agent "~0.6.1" 3005 | form-data "~2.1.1" 3006 | har-validator "~4.2.1" 3007 | hawk "~3.1.3" 3008 | http-signature "~1.1.0" 3009 | is-typedarray "~1.0.0" 3010 | isstream "~0.1.2" 3011 | json-stringify-safe "~5.0.1" 3012 | mime-types "~2.1.7" 3013 | oauth-sign "~0.8.1" 3014 | performance-now "^0.2.0" 3015 | qs "~6.4.0" 3016 | safe-buffer "^5.0.1" 3017 | stringstream "~0.0.4" 3018 | tough-cookie "~2.3.0" 3019 | tunnel-agent "^0.6.0" 3020 | uuid "^3.0.0" 3021 | 3022 | request@^2.83.0: 3023 | version "2.87.0" 3024 | resolved "https://registry.yarnpkg.com/request/-/request-2.87.0.tgz#32f00235cd08d482b4d0d68db93a829c0ed5756e" 3025 | dependencies: 3026 | aws-sign2 "~0.7.0" 3027 | aws4 "^1.6.0" 3028 | caseless "~0.12.0" 3029 | combined-stream "~1.0.5" 3030 | extend "~3.0.1" 3031 | forever-agent "~0.6.1" 3032 | form-data "~2.3.1" 3033 | har-validator "~5.0.3" 3034 | http-signature "~1.2.0" 3035 | is-typedarray "~1.0.0" 3036 | isstream "~0.1.2" 3037 | json-stringify-safe "~5.0.1" 3038 | mime-types "~2.1.17" 3039 | oauth-sign "~0.8.2" 3040 | performance-now "^2.1.0" 3041 | qs "~6.5.1" 3042 | safe-buffer "^5.1.1" 3043 | tough-cookie "~2.3.3" 3044 | tunnel-agent "^0.6.0" 3045 | uuid "^3.1.0" 3046 | 3047 | require-directory@^2.1.1: 3048 | version "2.1.1" 3049 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3050 | 3051 | require-main-filename@^1.0.1: 3052 | version "1.0.1" 3053 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3054 | 3055 | require-uncached@^1.0.3: 3056 | version "1.0.3" 3057 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 3058 | dependencies: 3059 | caller-path "^0.1.0" 3060 | resolve-from "^1.0.0" 3061 | 3062 | resolve-cwd@^2.0.0: 3063 | version "2.0.0" 3064 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a" 3065 | dependencies: 3066 | resolve-from "^3.0.0" 3067 | 3068 | resolve-from@^1.0.0: 3069 | version "1.0.1" 3070 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 3071 | 3072 | resolve-from@^3.0.0: 3073 | version "3.0.0" 3074 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" 3075 | 3076 | resolve-url@^0.2.1: 3077 | version "0.2.1" 3078 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 3079 | 3080 | resolve@1.1.7: 3081 | version "1.1.7" 3082 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 3083 | 3084 | restore-cursor@^2.0.0: 3085 | version "2.0.0" 3086 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 3087 | dependencies: 3088 | onetime "^2.0.0" 3089 | signal-exit "^3.0.2" 3090 | 3091 | ret@~0.1.10: 3092 | version "0.1.15" 3093 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 3094 | 3095 | retry@0.10.1: 3096 | version "0.10.1" 3097 | resolved "https://registry.yarnpkg.com/retry/-/retry-0.10.1.tgz#e76388d217992c252750241d3d3956fed98d8ff4" 3098 | 3099 | right-align@^0.1.1: 3100 | version "0.1.3" 3101 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3102 | dependencies: 3103 | align-text "^0.1.1" 3104 | 3105 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.5.4, rimraf@^2.6.1: 3106 | version "2.6.2" 3107 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 3108 | dependencies: 3109 | glob "^7.0.5" 3110 | 3111 | run-async@^2.2.0: 3112 | version "2.3.0" 3113 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 3114 | dependencies: 3115 | is-promise "^2.1.0" 3116 | 3117 | rxjs@^6.1.0: 3118 | version "6.3.3" 3119 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.3.3.tgz#3c6a7fa420e844a81390fb1158a9ec614f4bad55" 3120 | dependencies: 3121 | tslib "^1.9.0" 3122 | 3123 | safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 3124 | version "5.1.1" 3125 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 3126 | 3127 | safe-regex@^1.1.0: 3128 | version "1.1.0" 3129 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 3130 | dependencies: 3131 | ret "~0.1.10" 3132 | 3133 | "safer-buffer@>= 2.1.2 < 3": 3134 | version "2.1.2" 3135 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 3136 | 3137 | sane@^2.0.0: 3138 | version "2.2.0" 3139 | resolved "https://registry.yarnpkg.com/sane/-/sane-2.2.0.tgz#d6d2e2fcab00e3d283c93b912b7c3a20846f1d56" 3140 | dependencies: 3141 | anymatch "^1.3.0" 3142 | exec-sh "^0.2.0" 3143 | fb-watchman "^2.0.0" 3144 | minimatch "^3.0.2" 3145 | minimist "^1.1.1" 3146 | walker "~1.0.5" 3147 | watch "~0.18.0" 3148 | optionalDependencies: 3149 | fsevents "^1.1.1" 3150 | 3151 | sax@^1.2.4: 3152 | version "1.2.4" 3153 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 3154 | 3155 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 3156 | version "5.4.1" 3157 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 3158 | 3159 | semver@^5.4.1: 3160 | version "5.5.0" 3161 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 3162 | 3163 | semver@^5.5.0, semver@^5.5.1: 3164 | version "5.6.0" 3165 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.6.0.tgz#7e74256fbaa49c75aa7c7a205cc22799cac80004" 3166 | 3167 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3168 | version "2.0.0" 3169 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3170 | 3171 | set-value@^0.4.3: 3172 | version "0.4.3" 3173 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" 3174 | dependencies: 3175 | extend-shallow "^2.0.1" 3176 | is-extendable "^0.1.1" 3177 | is-plain-object "^2.0.1" 3178 | to-object-path "^0.3.0" 3179 | 3180 | set-value@^2.0.0: 3181 | version "2.0.0" 3182 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" 3183 | dependencies: 3184 | extend-shallow "^2.0.1" 3185 | is-extendable "^0.1.1" 3186 | is-plain-object "^2.0.3" 3187 | split-string "^3.0.1" 3188 | 3189 | shebang-command@^1.2.0: 3190 | version "1.2.0" 3191 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 3192 | dependencies: 3193 | shebang-regex "^1.0.0" 3194 | 3195 | shebang-regex@^1.0.0: 3196 | version "1.0.0" 3197 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3198 | 3199 | shellwords@^0.1.1: 3200 | version "0.1.1" 3201 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" 3202 | 3203 | signal-exit@^3.0.0, signal-exit@^3.0.2: 3204 | version "3.0.2" 3205 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3206 | 3207 | slash@^1.0.0: 3208 | version "1.0.0" 3209 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3210 | 3211 | slice-ansi@1.0.0: 3212 | version "1.0.0" 3213 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d" 3214 | dependencies: 3215 | is-fullwidth-code-point "^2.0.0" 3216 | 3217 | snapdragon-node@^2.0.1: 3218 | version "2.1.1" 3219 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 3220 | dependencies: 3221 | define-property "^1.0.0" 3222 | isobject "^3.0.0" 3223 | snapdragon-util "^3.0.1" 3224 | 3225 | snapdragon-util@^3.0.1: 3226 | version "3.0.1" 3227 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 3228 | dependencies: 3229 | kind-of "^3.2.0" 3230 | 3231 | snapdragon@^0.8.1: 3232 | version "0.8.2" 3233 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" 3234 | dependencies: 3235 | base "^0.11.1" 3236 | debug "^2.2.0" 3237 | define-property "^0.2.5" 3238 | extend-shallow "^2.0.1" 3239 | map-cache "^0.2.2" 3240 | source-map "^0.5.6" 3241 | source-map-resolve "^0.5.0" 3242 | use "^3.1.0" 3243 | 3244 | sntp@1.x.x: 3245 | version "1.0.9" 3246 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3247 | dependencies: 3248 | hoek "2.x.x" 3249 | 3250 | source-map-resolve@^0.5.0: 3251 | version "0.5.2" 3252 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" 3253 | dependencies: 3254 | atob "^2.1.1" 3255 | decode-uri-component "^0.2.0" 3256 | resolve-url "^0.2.1" 3257 | source-map-url "^0.4.0" 3258 | urix "^0.1.0" 3259 | 3260 | source-map-support@^0.4.15: 3261 | version "0.4.18" 3262 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 3263 | dependencies: 3264 | source-map "^0.5.6" 3265 | 3266 | source-map-support@^0.5.6: 3267 | version "0.5.6" 3268 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.6.tgz#4435cee46b1aab62b8e8610ce60f788091c51c13" 3269 | dependencies: 3270 | buffer-from "^1.0.0" 3271 | source-map "^0.6.0" 3272 | 3273 | source-map-url@^0.4.0: 3274 | version "0.4.0" 3275 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 3276 | 3277 | source-map@^0.4.4: 3278 | version "0.4.4" 3279 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 3280 | dependencies: 3281 | amdefine ">=0.0.4" 3282 | 3283 | source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: 3284 | version "0.5.7" 3285 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 3286 | 3287 | source-map@^0.6.0, source-map@~0.6.1: 3288 | version "0.6.1" 3289 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 3290 | 3291 | spdx-correct@~1.0.0: 3292 | version "1.0.2" 3293 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3294 | dependencies: 3295 | spdx-license-ids "^1.0.2" 3296 | 3297 | spdx-expression-parse@~1.0.0: 3298 | version "1.0.4" 3299 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3300 | 3301 | spdx-license-ids@^1.0.2: 3302 | version "1.2.2" 3303 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3304 | 3305 | split-string@^3.0.1, split-string@^3.0.2: 3306 | version "3.1.0" 3307 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 3308 | dependencies: 3309 | extend-shallow "^3.0.0" 3310 | 3311 | sprintf-js@~1.0.2: 3312 | version "1.0.3" 3313 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3314 | 3315 | sshpk@^1.7.0: 3316 | version "1.13.1" 3317 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 3318 | dependencies: 3319 | asn1 "~0.2.3" 3320 | assert-plus "^1.0.0" 3321 | dashdash "^1.12.0" 3322 | getpass "^0.1.1" 3323 | optionalDependencies: 3324 | bcrypt-pbkdf "^1.0.0" 3325 | ecc-jsbn "~0.1.1" 3326 | jsbn "~0.1.0" 3327 | tweetnacl "~0.14.0" 3328 | 3329 | stack-utils@^1.0.1: 3330 | version "1.0.1" 3331 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.1.tgz#d4f33ab54e8e38778b0ca5cfd3b3afb12db68620" 3332 | 3333 | static-extend@^0.1.1: 3334 | version "0.1.2" 3335 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 3336 | dependencies: 3337 | define-property "^0.2.5" 3338 | object-copy "^0.1.0" 3339 | 3340 | stealthy-require@^1.1.0: 3341 | version "1.1.1" 3342 | resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" 3343 | 3344 | string-length@^2.0.0: 3345 | version "2.0.0" 3346 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed" 3347 | dependencies: 3348 | astral-regex "^1.0.0" 3349 | strip-ansi "^4.0.0" 3350 | 3351 | string-width@^1.0.1, string-width@^1.0.2: 3352 | version "1.0.2" 3353 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3354 | dependencies: 3355 | code-point-at "^1.0.0" 3356 | is-fullwidth-code-point "^1.0.0" 3357 | strip-ansi "^3.0.0" 3358 | 3359 | string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1: 3360 | version "2.1.1" 3361 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3362 | dependencies: 3363 | is-fullwidth-code-point "^2.0.0" 3364 | strip-ansi "^4.0.0" 3365 | 3366 | string_decoder@~1.0.3: 3367 | version "1.0.3" 3368 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 3369 | dependencies: 3370 | safe-buffer "~5.1.0" 3371 | 3372 | string_decoder@~1.1.1: 3373 | version "1.1.1" 3374 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 3375 | dependencies: 3376 | safe-buffer "~5.1.0" 3377 | 3378 | stringstream@~0.0.4: 3379 | version "0.0.5" 3380 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3381 | 3382 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3383 | version "3.0.1" 3384 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3385 | dependencies: 3386 | ansi-regex "^2.0.0" 3387 | 3388 | strip-ansi@^4.0.0: 3389 | version "4.0.0" 3390 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3391 | dependencies: 3392 | ansi-regex "^3.0.0" 3393 | 3394 | strip-bom@3.0.0: 3395 | version "3.0.0" 3396 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3397 | 3398 | strip-bom@^2.0.0: 3399 | version "2.0.0" 3400 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3401 | dependencies: 3402 | is-utf8 "^0.2.0" 3403 | 3404 | strip-eof@^1.0.0: 3405 | version "1.0.0" 3406 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3407 | 3408 | strip-json-comments@^2.0.1, strip-json-comments@~2.0.1: 3409 | version "2.0.1" 3410 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3411 | 3412 | supports-color@^2.0.0: 3413 | version "2.0.0" 3414 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3415 | 3416 | supports-color@^3.1.2: 3417 | version "3.2.3" 3418 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3419 | dependencies: 3420 | has-flag "^1.0.0" 3421 | 3422 | supports-color@^4.0.0: 3423 | version "4.5.0" 3424 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" 3425 | dependencies: 3426 | has-flag "^2.0.0" 3427 | 3428 | supports-color@^5.3.0: 3429 | version "5.4.0" 3430 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.4.0.tgz#1c6b337402c2137605efe19f10fec390f6faab54" 3431 | dependencies: 3432 | has-flag "^3.0.0" 3433 | 3434 | symbol-tree@^3.2.2: 3435 | version "3.2.2" 3436 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 3437 | 3438 | table@^5.0.2: 3439 | version "5.1.0" 3440 | resolved "https://registry.yarnpkg.com/table/-/table-5.1.0.tgz#69a54644f6f01ad1628f8178715b408dc6bf11f7" 3441 | dependencies: 3442 | ajv "^6.5.3" 3443 | lodash "^4.17.10" 3444 | slice-ansi "1.0.0" 3445 | string-width "^2.1.1" 3446 | 3447 | tar-pack@^3.4.0: 3448 | version "3.4.1" 3449 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" 3450 | dependencies: 3451 | debug "^2.2.0" 3452 | fstream "^1.0.10" 3453 | fstream-ignore "^1.0.5" 3454 | once "^1.3.3" 3455 | readable-stream "^2.1.4" 3456 | rimraf "^2.5.1" 3457 | tar "^2.2.1" 3458 | uid-number "^0.0.6" 3459 | 3460 | tar@^2.2.1: 3461 | version "2.2.1" 3462 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3463 | dependencies: 3464 | block-stream "*" 3465 | fstream "^1.0.2" 3466 | inherits "2" 3467 | 3468 | test-exclude@^4.2.1: 3469 | version "4.2.1" 3470 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.2.1.tgz#dfa222f03480bca69207ca728b37d74b45f724fa" 3471 | dependencies: 3472 | arrify "^1.0.1" 3473 | micromatch "^3.1.8" 3474 | object-assign "^4.1.0" 3475 | read-pkg-up "^1.0.1" 3476 | require-main-filename "^1.0.1" 3477 | 3478 | text-table@^0.2.0: 3479 | version "0.2.0" 3480 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3481 | 3482 | throat@^4.0.0: 3483 | version "4.1.0" 3484 | resolved "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a" 3485 | 3486 | through@^2.3.6: 3487 | version "2.3.8" 3488 | resolved "http://registry.npmjs.org/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3489 | 3490 | tmp@^0.0.33: 3491 | version "0.0.33" 3492 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 3493 | dependencies: 3494 | os-tmpdir "~1.0.2" 3495 | 3496 | tmpl@1.0.x: 3497 | version "1.0.4" 3498 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 3499 | 3500 | to-fast-properties@^1.0.3: 3501 | version "1.0.3" 3502 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3503 | 3504 | to-object-path@^0.3.0: 3505 | version "0.3.0" 3506 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 3507 | dependencies: 3508 | kind-of "^3.0.2" 3509 | 3510 | to-regex-range@^2.1.0: 3511 | version "2.1.1" 3512 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 3513 | dependencies: 3514 | is-number "^3.0.0" 3515 | repeat-string "^1.6.1" 3516 | 3517 | to-regex@^3.0.1, to-regex@^3.0.2: 3518 | version "3.0.2" 3519 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 3520 | dependencies: 3521 | define-property "^2.0.2" 3522 | extend-shallow "^3.0.2" 3523 | regex-not "^1.0.2" 3524 | safe-regex "^1.1.0" 3525 | 3526 | tough-cookie@>=2.3.3, tough-cookie@^2.3.3: 3527 | version "2.3.4" 3528 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655" 3529 | dependencies: 3530 | punycode "^1.4.1" 3531 | 3532 | tough-cookie@~2.3.0, tough-cookie@~2.3.3: 3533 | version "2.3.3" 3534 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 3535 | dependencies: 3536 | punycode "^1.4.1" 3537 | 3538 | tr46@^1.0.1: 3539 | version "1.0.1" 3540 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" 3541 | dependencies: 3542 | punycode "^2.1.0" 3543 | 3544 | trim-right@^1.0.1: 3545 | version "1.0.1" 3546 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3547 | 3548 | tslib@^1.9.0: 3549 | version "1.9.3" 3550 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.3.tgz#d7e4dd79245d85428c4d7e4822a79917954ca286" 3551 | 3552 | tunnel-agent@^0.6.0: 3553 | version "0.6.0" 3554 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3555 | dependencies: 3556 | safe-buffer "^5.0.1" 3557 | 3558 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3559 | version "0.14.5" 3560 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3561 | 3562 | type-check@~0.3.2: 3563 | version "0.3.2" 3564 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3565 | dependencies: 3566 | prelude-ls "~1.1.2" 3567 | 3568 | uglify-js@^2.6: 3569 | version "2.8.29" 3570 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 3571 | dependencies: 3572 | source-map "~0.5.1" 3573 | yargs "~3.10.0" 3574 | optionalDependencies: 3575 | uglify-to-browserify "~1.0.0" 3576 | 3577 | uglify-to-browserify@~1.0.0: 3578 | version "1.0.2" 3579 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3580 | 3581 | uid-number@^0.0.6: 3582 | version "0.0.6" 3583 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3584 | 3585 | union-value@^1.0.0: 3586 | version "1.0.0" 3587 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" 3588 | dependencies: 3589 | arr-union "^3.1.0" 3590 | get-value "^2.0.6" 3591 | is-extendable "^0.1.1" 3592 | set-value "^0.4.3" 3593 | 3594 | unset-value@^1.0.0: 3595 | version "1.0.0" 3596 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 3597 | dependencies: 3598 | has-value "^0.3.1" 3599 | isobject "^3.0.0" 3600 | 3601 | uri-js@^4.2.2: 3602 | version "4.2.2" 3603 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" 3604 | dependencies: 3605 | punycode "^2.1.0" 3606 | 3607 | urix@^0.1.0: 3608 | version "0.1.0" 3609 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 3610 | 3611 | use@^3.1.0: 3612 | version "3.1.0" 3613 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.0.tgz#14716bf03fdfefd03040aef58d8b4b85f3a7c544" 3614 | dependencies: 3615 | kind-of "^6.0.2" 3616 | 3617 | util-deprecate@~1.0.1: 3618 | version "1.0.2" 3619 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3620 | 3621 | util.promisify@^1.0.0: 3622 | version "1.0.0" 3623 | resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" 3624 | dependencies: 3625 | define-properties "^1.1.2" 3626 | object.getownpropertydescriptors "^2.0.3" 3627 | 3628 | uuid@^3.0.0, uuid@^3.1.0: 3629 | version "3.1.0" 3630 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 3631 | 3632 | validate-npm-package-license@^3.0.1: 3633 | version "3.0.1" 3634 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3635 | dependencies: 3636 | spdx-correct "~1.0.0" 3637 | spdx-expression-parse "~1.0.0" 3638 | 3639 | verror@1.10.0: 3640 | version "1.10.0" 3641 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 3642 | dependencies: 3643 | assert-plus "^1.0.0" 3644 | core-util-is "1.0.2" 3645 | extsprintf "^1.2.0" 3646 | 3647 | w3c-hr-time@^1.0.1: 3648 | version "1.0.1" 3649 | resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz#82ac2bff63d950ea9e3189a58a65625fedf19045" 3650 | dependencies: 3651 | browser-process-hrtime "^0.1.2" 3652 | 3653 | walker@~1.0.5: 3654 | version "1.0.7" 3655 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 3656 | dependencies: 3657 | makeerror "1.0.x" 3658 | 3659 | watch@~0.18.0: 3660 | version "0.18.0" 3661 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.18.0.tgz#28095476c6df7c90c963138990c0a5423eb4b986" 3662 | dependencies: 3663 | exec-sh "^0.2.0" 3664 | minimist "^1.2.0" 3665 | 3666 | webidl-conversions@^4.0.2: 3667 | version "4.0.2" 3668 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" 3669 | 3670 | whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.3: 3671 | version "1.0.3" 3672 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.3.tgz#57c235bc8657e914d24e1a397d3c82daee0a6ba3" 3673 | dependencies: 3674 | iconv-lite "0.4.19" 3675 | 3676 | whatwg-mimetype@^2.0.0, whatwg-mimetype@^2.1.0: 3677 | version "2.1.0" 3678 | resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.1.0.tgz#f0f21d76cbba72362eb609dbed2a30cd17fcc7d4" 3679 | 3680 | whatwg-url@^6.4.0, whatwg-url@^6.4.1: 3681 | version "6.4.1" 3682 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-6.4.1.tgz#fdb94b440fd4ad836202c16e9737d511f012fd67" 3683 | dependencies: 3684 | lodash.sortby "^4.7.0" 3685 | tr46 "^1.0.1" 3686 | webidl-conversions "^4.0.2" 3687 | 3688 | which-module@^2.0.0: 3689 | version "2.0.0" 3690 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 3691 | 3692 | which@^1.2.12, which@^1.2.9: 3693 | version "1.3.0" 3694 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 3695 | dependencies: 3696 | isexe "^2.0.0" 3697 | 3698 | which@^1.3.0: 3699 | version "1.3.1" 3700 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 3701 | dependencies: 3702 | isexe "^2.0.0" 3703 | 3704 | wide-align@^1.1.0: 3705 | version "1.1.2" 3706 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 3707 | dependencies: 3708 | string-width "^1.0.2" 3709 | 3710 | window-size@0.1.0: 3711 | version "0.1.0" 3712 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3713 | 3714 | wordwrap@0.0.2: 3715 | version "0.0.2" 3716 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3717 | 3718 | wordwrap@~0.0.2: 3719 | version "0.0.3" 3720 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3721 | 3722 | wordwrap@~1.0.0: 3723 | version "1.0.0" 3724 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3725 | 3726 | wrap-ansi@^2.0.0: 3727 | version "2.1.0" 3728 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3729 | dependencies: 3730 | string-width "^1.0.1" 3731 | strip-ansi "^3.0.1" 3732 | 3733 | wrappy@1: 3734 | version "1.0.2" 3735 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3736 | 3737 | write-file-atomic@^2.1.0: 3738 | version "2.3.0" 3739 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" 3740 | dependencies: 3741 | graceful-fs "^4.1.11" 3742 | imurmurhash "^0.1.4" 3743 | signal-exit "^3.0.2" 3744 | 3745 | write@^0.2.1: 3746 | version "0.2.1" 3747 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 3748 | dependencies: 3749 | mkdirp "^0.5.1" 3750 | 3751 | ws@^4.0.0: 3752 | version "4.1.0" 3753 | resolved "https://registry.yarnpkg.com/ws/-/ws-4.1.0.tgz#a979b5d7d4da68bf54efe0408967c324869a7289" 3754 | dependencies: 3755 | async-limiter "~1.0.0" 3756 | safe-buffer "~5.1.0" 3757 | 3758 | xml-name-validator@^3.0.0: 3759 | version "3.0.0" 3760 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" 3761 | 3762 | y18n@^3.2.1: 3763 | version "3.2.1" 3764 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3765 | 3766 | yallist@^2.1.2: 3767 | version "2.1.2" 3768 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3769 | 3770 | yargs-parser@^9.0.2: 3771 | version "9.0.2" 3772 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-9.0.2.tgz#9ccf6a43460fe4ed40a9bb68f48d43b8a68cc077" 3773 | dependencies: 3774 | camelcase "^4.1.0" 3775 | 3776 | yargs@^11.0.0: 3777 | version "11.0.0" 3778 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-11.0.0.tgz#c052931006c5eee74610e5fc0354bedfd08a201b" 3779 | dependencies: 3780 | cliui "^4.0.0" 3781 | decamelize "^1.1.1" 3782 | find-up "^2.1.0" 3783 | get-caller-file "^1.0.1" 3784 | os-locale "^2.0.0" 3785 | require-directory "^2.1.1" 3786 | require-main-filename "^1.0.1" 3787 | set-blocking "^2.0.0" 3788 | string-width "^2.0.0" 3789 | which-module "^2.0.0" 3790 | y18n "^3.2.1" 3791 | yargs-parser "^9.0.2" 3792 | 3793 | yargs@~3.10.0: 3794 | version "3.10.0" 3795 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3796 | dependencies: 3797 | camelcase "^1.0.2" 3798 | cliui "^2.1.0" 3799 | decamelize "^1.0.0" 3800 | window-size "0.1.0" 3801 | --------------------------------------------------------------------------------