├── .prettierrc ├── .eslintignore ├── node ├── tslint.json ├── middlewares │ ├── allStates.ts │ └── someStates.ts ├── clients │ └── index.ts ├── service.json ├── package.json ├── tsconfig.json └── index.ts ├── lint.sh ├── .editorconfig ├── CHANGELOG.md ├── manifest.json ├── package.json ├── .gitignore ├── docs └── README.md └── yarn.lock /.prettierrc: -------------------------------------------------------------------------------- 1 | "@vtex/prettier-config" -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | coverage/ 3 | *.snap.ts -------------------------------------------------------------------------------- /node/tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "tslint-config-vtex" 3 | } 4 | -------------------------------------------------------------------------------- /lint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cd node/ 4 | [ -d node_modules ] && rm -rf node_modules 5 | yarn cache clean 6 | yarn --frozen-lockfile 7 | yarn lint 8 | -------------------------------------------------------------------------------- /node/middlewares/allStates.ts: -------------------------------------------------------------------------------- 1 | export async function allStates( 2 | ctx: StatusChangeContext, 3 | next: () => Promise 4 | ) { 5 | console.log(ctx.body) 6 | await next() 7 | } 8 | -------------------------------------------------------------------------------- /node/middlewares/someStates.ts: -------------------------------------------------------------------------------- 1 | export async function someStates( 2 | ctx: StatusChangeContext, 3 | next: () => Promise 4 | ) { 5 | console.log(ctx.body) 6 | await next() 7 | } 8 | -------------------------------------------------------------------------------- /node/clients/index.ts: -------------------------------------------------------------------------------- 1 | import { IOClients } from "@vtex/api"; 2 | 3 | // Extend the default IOClients implementation with our own custom clients. 4 | export class Clients extends IOClients {} 5 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | root = true 3 | 4 | [*] 5 | end_of_line = lf 6 | insert_final_newline = true 7 | indent_style = space 8 | indent_size = 2 9 | charset = utf-8 10 | trim_trailing_whitespace = true 11 | 12 | [*.md] 13 | trim_trailing_whitespace = false 14 | -------------------------------------------------------------------------------- /node/service.json: -------------------------------------------------------------------------------- 1 | { 2 | "memory": 256, 3 | "ttl": 10, 4 | "timeout": 2, 5 | "minReplicas": 2, 6 | "maxReplicas": 4, 7 | "workers": 1, 8 | "events": { 9 | "allStates": { 10 | "sender": "vtex.orders-broadcast", 11 | "topics": ["order-status-updated"] 12 | }, 13 | "someStates": { 14 | "sender": "vtex.orders-broadcast", 15 | "topics": ["cancel", "order-created"] 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | All notable changes to this project will be documented in this file. 4 | 5 | The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) 6 | and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). 7 | 8 | ## [Unreleased] 9 | 10 | ## [0.2.2] - 2024-08-01 11 | 12 | ## [0.2.1] - 2021-03-05 13 | 14 | ## [0.2.0] - 2021-03-05 15 | 16 | ## [0.1.0] - 2020-07-22 17 | 18 | ## [0.0.3] - 2020-07-13 19 | 20 | ## [0.0.2] - 2020-07-13 21 | 22 | ### Changed 23 | 24 | - Add first version of docs 25 | -------------------------------------------------------------------------------- /node/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "co-body": "^6.0.0", 4 | "ramda": "^0.25.0" 5 | }, 6 | "devDependencies": { 7 | "@types/co-body": "^0.0.3", 8 | "@types/jest": "^24.0.18", 9 | "@types/node": "^12.0.0", 10 | "@types/ramda": "types/npm-ramda#dist", 11 | "@vtex/api": "6.35.0", 12 | "@vtex/test-tools": "^1.0.0", 13 | "tslint": "^5.14.0", 14 | "tslint-config-vtex": "^2.1.0", 15 | "typescript": "3.8.3" 16 | }, 17 | "scripts": { 18 | "lint": "tsc --noEmit --pretty && tslint -c tslint.json --fix './**/*.ts'" 19 | }, 20 | "version": "0.2.2" 21 | } 22 | -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "orders-feed-example", 3 | "vendor": "vtex", 4 | "version": "0.2.2", 5 | "title": "Orders Feed Example", 6 | "description": "Boilerplate app for receving order status events", 7 | "categories": [], 8 | "dependencies": {}, 9 | "builders": { 10 | "node": "6.x", 11 | "docs": "0.x" 12 | }, 13 | "scripts": { 14 | "prereleasy": "bash lint.sh" 15 | }, 16 | "credentialType": "absolute", 17 | "policies": [ 18 | { 19 | "name": "colossus-fire-event" 20 | }, 21 | { 22 | "name": "colossus-write-logs" 23 | } 24 | ], 25 | "$schema": "https://raw.githubusercontent.com/vtex/node-vtex-api/master/gen/manifest.schema" 26 | } 27 | -------------------------------------------------------------------------------- /node/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "types": ["node", "jest"], 4 | "typeRoots": ["node_modules/@types"], 5 | "target": "es2017", 6 | "module": "commonjs", 7 | "moduleResolution": "node", 8 | "allowJs": false, 9 | "allowSyntheticDefaultImports": false, 10 | "noEmitOnError": false, 11 | "noImplicitReturns": true, 12 | "noUnusedLocals": true, 13 | "noUnusedParameters": true, 14 | "noImplicitAny": true, 15 | "noImplicitThis": true, 16 | "alwaysStrict": true, 17 | "skipLibCheck": true, 18 | "strictNullChecks": true, 19 | "strictFunctionTypes": true, 20 | "strictPropertyInitialization": true 21 | }, 22 | "typeAcquisition": { 23 | "enable": false 24 | }, 25 | "include": ["global.ts", "./**/*"], 26 | "exclude": ["node_modules"] 27 | } 28 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "orders-feed-example", 3 | "private": true, 4 | "license": "UNLICENSED", 5 | "scripts": { 6 | "lint": "eslint --ext js,jsx,ts,tsx .", 7 | "format": "prettier --write \"**/*.{ts,tsx,js,jsx,json}\"" 8 | }, 9 | "husky": { 10 | "hooks": { 11 | "pre-commit": "lint-staged" 12 | } 13 | }, 14 | "lint-staged": { 15 | "*.{ts,js,tsx,jsx}": [ 16 | "eslint --fix", 17 | "prettier --write" 18 | ], 19 | "*.{json,graphql,gql}": [ 20 | "prettier --write" 21 | ] 22 | }, 23 | "devDependencies": { 24 | "@types/node": "^12.12.21", 25 | "@vtex/prettier-config": "^0.1.3", 26 | "eslint": "^6.8.0", 27 | "eslint-config-vtex": "^12.2.1", 28 | "husky": "^4.2.0", 29 | "lint-staged": "^10.0.2", 30 | "prettier": "^1.19.1", 31 | "typescript": "^3.7.5" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | 6 | # Runtime data 7 | pids 8 | *.pid 9 | *.seed 10 | 11 | # Directory for instrumented libs generated by jscoverage/JSCover 12 | lib-cov 13 | 14 | # Coverage directory used by tools like istanbul 15 | coverage 16 | 17 | # nyc test coverage 18 | .nyc_output 19 | 20 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 21 | .grunt 22 | 23 | # node-waf configuration 24 | .lock-wscript 25 | 26 | # Compiled binary addons (http://nodejs.org/api/addons.html) 27 | build/Release 28 | 29 | # Dependency directories 30 | node_modules 31 | jspm_packages 32 | 33 | # Optional npm cache directory 34 | .npm 35 | 36 | # webpack 37 | .happypack/ 38 | webpack_cache/ 39 | 40 | # Optional REPL history 41 | .node_repl_history 42 | 43 | # Generate directory 44 | render_build 45 | accounts 46 | 47 | .vscode 48 | 49 | lib 50 | 51 | entrypoints.json 52 | jsconfig.json 53 | 54 | .DS_Store 55 | 56 | .eslintrc 57 | 58 | **/yarn-error.log -------------------------------------------------------------------------------- /node/index.ts: -------------------------------------------------------------------------------- 1 | import { 2 | ClientsConfig, 3 | LRUCache, 4 | Service, 5 | ServiceContext, 6 | RecorderState, 7 | EventContext, 8 | } from '@vtex/api' 9 | 10 | import { Clients } from './clients' 11 | import { allStates } from './middlewares/allStates' 12 | import { someStates } from './middlewares/someStates' 13 | 14 | const TIMEOUT_MS = 800 15 | 16 | // Create a LRU memory cache for the Status client. 17 | // The @vtex/api HttpClient respects Cache-Control headers and uses the provided cache. 18 | const memoryCache = new LRUCache({ max: 5000 }) 19 | metrics.trackCache('status', memoryCache) 20 | 21 | // This is the configuration for clients available in `ctx.clients`. 22 | const clients: ClientsConfig = { 23 | // We pass our custom implementation of the clients bag, containing the Status client. 24 | implementation: Clients, 25 | options: { 26 | // All IO Clients will be initialized with these options, unless otherwise specified. 27 | default: { 28 | retries: 2, 29 | timeout: TIMEOUT_MS, 30 | }, 31 | // This key will be merged with the default options and add this cache to our Status client. 32 | status: { 33 | memoryCache, 34 | }, 35 | }, 36 | } 37 | 38 | declare global { 39 | type Context = ServiceContext 40 | 41 | interface StatusChangeContext extends EventContext { 42 | body: { 43 | domain: string 44 | orderId: string 45 | currentState: string 46 | lastState: string 47 | currentChangeDate: string 48 | lastChangeDate: string 49 | } 50 | } 51 | // The shape of our State object found in `ctx.state`. This is used as state bag to communicate between middlewares. 52 | interface State extends RecorderState {} 53 | } 54 | 55 | // Export a service that defines route handlers and client options. 56 | export default new Service({ 57 | clients, 58 | events: { 59 | allStates, 60 | someStates, 61 | }, 62 | }) 63 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- 1 | # Orders Feed Example 2 | 3 | A boilerplate app implementing an event handler receiving status updates from OMS Feed. 4 | This is the method for using [Feed v3 Hook](https://developers.vtex.com/reference/feed-v3) inside VTEX IO. 5 | 6 | ## How to Use 7 | 8 | This app handles events sent by the app `vtex.orders-broadcast`, as you can see by looking at `node/service.json`. 9 | 10 | ```json 11 | { 12 | "memory": 256, 13 | "ttl": 10, 14 | "timeout": 2, 15 | "minReplicas": 2, 16 | "maxReplicas": 4, 17 | "workers": 1, 18 | "events": { 19 | "allStates": { 20 | "sender": "vtex.orders-broadcast", 21 | "topics": ["order-status-updated"] 22 | }, 23 | "someStates": { 24 | "sender": "vtex.orders-broadcast", 25 | "topics": ["cancel", "order-created"] 26 | } 27 | } 28 | } 29 | ``` 30 | 31 | You have two ways of consuming changes in status: 32 | 33 | 1. Receive all events subscribing to the `order-status-updated` topic, as the `allStates` handler does 34 | 2. Receive a selection of status changes where the `currentState` equals the `topic`, as the `someStates` handler does. This option is the preferred one, when you know ahead of time, what types of events, you want to listen to. 35 | 36 | Normally `vtex.orders-broadcast` sends events only in `master` workspace. If you want to use it in a developer workspace, do the following: 37 | 38 | 1. Create your development workspace by running `vtex use {workspaceName}` 39 | 2. Go to `https://{accountName}.myvtex.com/admin/apps/vtex.orders-broadcast/setup` 40 | 3. Change the `Target Workspace` variable to the name of the workspace you have created previously. 41 | 4. Now you can link this app (`vtex.orders-feed-example`) in your desired workspace and receive order status updates. 42 | 43 | Additionally, if you are setting up the app in a subaccount, it is important to check the `Notify Subaccounts` option at `https://{accountName}.myvtex.com/admin/apps/vtex.orders-broadcast/setup` even if the feed is not configured for the main account. 44 | 45 | 46 | Here is an example body that you can expect to receive: 47 | 48 | ```json 49 | { 50 | "recorder": { 51 | "_record": { 52 | "x-vtex-meta": {}, 53 | "x-vtex-meta-bucket": {} 54 | } 55 | }, 56 | "domain": "Marketplace", 57 | "orderId": "v69305315atmc-01", 58 | "currentState": "invoice", 59 | "lastState": "payment-approved", 60 | "currentChangeDate": "2020-07-13T20:25:13.2304508Z", 61 | "lastChangeDate": "2020-07-13T20:25:03.9527532Z" 62 | } 63 | ``` 64 | 65 | If you want to understand further how Feed v3 works, check out [this documentation](https://help.vtex.com/tutorial/orders-management-feed-v3-setup--5qDml3cQypWDRTgw69s4C1). 66 | -------------------------------------------------------------------------------- /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.10.3" 7 | resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.3.tgz#324bcfd8d35cd3d47dae18cde63d752086435e9a" 8 | integrity sha512-fDx9eNW0qz0WkUeqL6tXEXzVlPh6Y5aCDEZesl0xBGA8ndRukX91Uk44ZqnkECp01NAZUdCAl+aiQNGi0k88Eg== 9 | dependencies: 10 | "@babel/highlight" "^7.10.3" 11 | 12 | "@babel/helper-validator-identifier@^7.10.3": 13 | version "7.10.3" 14 | resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.3.tgz#60d9847f98c4cea1b279e005fdb7c28be5412d15" 15 | integrity sha512-bU8JvtlYpJSBPuj1VUmKpFGaDZuLxASky3LhaKj3bmpSTY6VWooSM8msk+Z0CZoErFye2tlABF6yDkT3FOPAXw== 16 | 17 | "@babel/highlight@^7.10.3": 18 | version "7.10.3" 19 | resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.3.tgz#c633bb34adf07c5c13156692f5922c81ec53f28d" 20 | integrity sha512-Ih9B/u7AtgEnySE2L2F0Xm0GaM729XqqLfHkalTsbjXGyqmf/6M0Cu0WpvqueUlW+xk88BHw9Nkpj49naU+vWw== 21 | dependencies: 22 | "@babel/helper-validator-identifier" "^7.10.3" 23 | chalk "^2.0.0" 24 | js-tokens "^4.0.0" 25 | 26 | "@types/color-name@^1.1.1": 27 | version "1.1.1" 28 | resolved "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0" 29 | integrity sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ== 30 | 31 | "@types/eslint-visitor-keys@^1.0.0": 32 | version "1.0.0" 33 | resolved "https://registry.npmjs.org/@types/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#1ee30d79544ca84d68d4b3cdb0af4f205663dd2d" 34 | integrity sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag== 35 | 36 | "@types/json-schema@^7.0.3": 37 | version "7.0.5" 38 | resolved "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.5.tgz#dcce4430e64b443ba8945f0290fb564ad5bac6dd" 39 | integrity sha512-7+2BITlgjgDhH0vvwZU/HZJVyk+2XUlvxXe8dFMedNX/aMkaOq++rMAFXc0tM7ij15QaWlbdQASBR9dihi+bDQ== 40 | 41 | "@types/json5@^0.0.29": 42 | version "0.0.29" 43 | resolved "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" 44 | integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4= 45 | 46 | "@types/node@^12.12.21": 47 | version "12.12.47" 48 | resolved "https://registry.npmjs.org/@types/node/-/node-12.12.47.tgz#5007b8866a2f9150de82335ca7e24dd1d59bdfb5" 49 | integrity sha512-yzBInQFhdY8kaZmqoL2+3U5dSTMrKaYcb561VU+lDzAYvqt+2lojvBEy+hmpSNuXnPTx7m9+04CzWYOUqWME2A== 50 | 51 | "@types/parse-json@^4.0.0": 52 | version "4.0.0" 53 | resolved "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" 54 | integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== 55 | 56 | "@typescript-eslint/eslint-plugin@^2.17.0": 57 | version "2.34.0" 58 | resolved "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-2.34.0.tgz#6f8ce8a46c7dea4a6f1d171d2bb8fbae6dac2be9" 59 | integrity sha512-4zY3Z88rEE99+CNvTbXSyovv2z9PNOVffTWD2W8QF5s2prBQtwN2zadqERcrHpcR7O/+KMI3fcTAmUUhK/iQcQ== 60 | dependencies: 61 | "@typescript-eslint/experimental-utils" "2.34.0" 62 | functional-red-black-tree "^1.0.1" 63 | regexpp "^3.0.0" 64 | tsutils "^3.17.1" 65 | 66 | "@typescript-eslint/experimental-utils@2.34.0", "@typescript-eslint/experimental-utils@^2.5.0": 67 | version "2.34.0" 68 | resolved "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-2.34.0.tgz#d3524b644cdb40eebceca67f8cf3e4cc9c8f980f" 69 | integrity sha512-eS6FTkq+wuMJ+sgtuNTtcqavWXqsflWcfBnlYhg/nS4aZ1leewkXGbvBhaapn1q6qf4M71bsR1tez5JTRMuqwA== 70 | dependencies: 71 | "@types/json-schema" "^7.0.3" 72 | "@typescript-eslint/typescript-estree" "2.34.0" 73 | eslint-scope "^5.0.0" 74 | eslint-utils "^2.0.0" 75 | 76 | "@typescript-eslint/parser@^2.17.0": 77 | version "2.34.0" 78 | resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-2.34.0.tgz#50252630ca319685420e9a39ca05fe185a256bc8" 79 | integrity sha512-03ilO0ucSD0EPTw2X4PntSIRFtDPWjrVq7C3/Z3VQHRC7+13YB55rcJI3Jt+YgeHbjUdJPcPa7b23rXCBokuyA== 80 | dependencies: 81 | "@types/eslint-visitor-keys" "^1.0.0" 82 | "@typescript-eslint/experimental-utils" "2.34.0" 83 | "@typescript-eslint/typescript-estree" "2.34.0" 84 | eslint-visitor-keys "^1.1.0" 85 | 86 | "@typescript-eslint/typescript-estree@2.34.0": 87 | version "2.34.0" 88 | resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-2.34.0.tgz#14aeb6353b39ef0732cc7f1b8285294937cf37d5" 89 | integrity sha512-OMAr+nJWKdlVM9LOqCqh3pQQPwxHAN7Du8DR6dmwCrAmxtiXQnhHJ6tBNtf+cggqfo51SG/FCwnKhXCIM7hnVg== 90 | dependencies: 91 | debug "^4.1.1" 92 | eslint-visitor-keys "^1.1.0" 93 | glob "^7.1.6" 94 | is-glob "^4.0.1" 95 | lodash "^4.17.15" 96 | semver "^7.3.2" 97 | tsutils "^3.17.1" 98 | 99 | "@vtex/prettier-config@^0.1.3": 100 | version "0.1.4" 101 | resolved "https://registry.npmjs.org/@vtex/prettier-config/-/prettier-config-0.1.4.tgz#dc7633c5b511e42673830503d88adde7da17f40a" 102 | integrity sha512-/rNzJ7R7KZmmcrCS3GFbVhfQRKFYFsDvCyO3Mv+atyILi0dkiELLVHUrbeAV/VaCgEMAGgWB9rdCQRasI3Yy/w== 103 | 104 | acorn-jsx@^5.2.0: 105 | version "5.2.0" 106 | resolved "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.2.0.tgz#4c66069173d6fdd68ed85239fc256226182b2ebe" 107 | integrity sha512-HiUX/+K2YpkpJ+SzBffkM/AQ2YE03S0U1kjTLVpoJdhZMOWy8qvXVN9JdLqv2QsaQ6MPYQIuNmwD8zOiYUofLQ== 108 | 109 | acorn@^7.1.1: 110 | version "7.3.1" 111 | resolved "https://registry.npmjs.org/acorn/-/acorn-7.3.1.tgz#85010754db53c3fbaf3b9ea3e083aa5c5d147ffd" 112 | integrity sha512-tLc0wSnatxAQHVHUapaHdz72pi9KUyHjq5KyHjGg9Y8Ifdc79pTh2XvI6I1/chZbnM7QtNKzh66ooDogPZSleA== 113 | 114 | aggregate-error@^3.0.0: 115 | version "3.0.1" 116 | resolved "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.0.1.tgz#db2fe7246e536f40d9b5442a39e117d7dd6a24e0" 117 | integrity sha512-quoaXsZ9/BLNae5yiNoUz+Nhkwz83GhWwtYFglcjEQB2NDHCIpApbqXxIFnm4Pq/Nvhrsq5sYJFyohrrxnTGAA== 118 | dependencies: 119 | clean-stack "^2.0.0" 120 | indent-string "^4.0.0" 121 | 122 | ajv@^6.10.0, ajv@^6.10.2: 123 | version "6.12.2" 124 | resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.2.tgz#c629c5eced17baf314437918d2da88c99d5958cd" 125 | integrity sha512-k+V+hzjm5q/Mr8ef/1Y9goCmlsK4I6Sm74teeyGvFk1XrOsbsKLjEdrvny42CZ+a8sXbk8KWpY/bDwS+FLL2UQ== 126 | dependencies: 127 | fast-deep-equal "^3.1.1" 128 | fast-json-stable-stringify "^2.0.0" 129 | json-schema-traverse "^0.4.1" 130 | uri-js "^4.2.2" 131 | 132 | ansi-colors@^3.2.1: 133 | version "3.2.4" 134 | resolved "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz#e3a3da4bfbae6c86a9c285625de124a234026fbf" 135 | integrity sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA== 136 | 137 | ansi-escapes@^4.2.1, ansi-escapes@^4.3.0: 138 | version "4.3.1" 139 | resolved "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.1.tgz#a5c47cc43181f1f38ffd7076837700d395522a61" 140 | integrity sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA== 141 | dependencies: 142 | type-fest "^0.11.0" 143 | 144 | ansi-regex@^4.1.0: 145 | version "4.1.0" 146 | resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" 147 | integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== 148 | 149 | ansi-regex@^5.0.0: 150 | version "5.0.0" 151 | resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" 152 | integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== 153 | 154 | ansi-styles@^3.2.0, ansi-styles@^3.2.1: 155 | version "3.2.1" 156 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 157 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 158 | dependencies: 159 | color-convert "^1.9.0" 160 | 161 | ansi-styles@^4.0.0, ansi-styles@^4.1.0: 162 | version "4.2.1" 163 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz#90ae75c424d008d2624c5bf29ead3177ebfcf359" 164 | integrity sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA== 165 | dependencies: 166 | "@types/color-name" "^1.1.1" 167 | color-convert "^2.0.1" 168 | 169 | argparse@^1.0.7: 170 | version "1.0.10" 171 | resolved "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 172 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 173 | dependencies: 174 | sprintf-js "~1.0.2" 175 | 176 | array-includes@^3.1.1: 177 | version "3.1.1" 178 | resolved "https://registry.npmjs.org/array-includes/-/array-includes-3.1.1.tgz#cdd67e6852bdf9c1215460786732255ed2459348" 179 | integrity sha512-c2VXaCHl7zPsvpkFsw4nxvFie4fh1ur9bpcgsVkIjqn0H/Xwdg+7fv3n2r/isyS8EBj5b06M9kHyZuIr4El6WQ== 180 | dependencies: 181 | define-properties "^1.1.3" 182 | es-abstract "^1.17.0" 183 | is-string "^1.0.5" 184 | 185 | array.prototype.flat@^1.2.3: 186 | version "1.2.3" 187 | resolved "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.3.tgz#0de82b426b0318dbfdb940089e38b043d37f6c7b" 188 | integrity sha512-gBlRZV0VSmfPIeWfuuy56XZMvbVfbEUnOXUvt3F/eUUUSyzlgLxhEX4YAEpxNAogRGehPSnfXyPtYyKAhkzQhQ== 189 | dependencies: 190 | define-properties "^1.1.3" 191 | es-abstract "^1.17.0-next.1" 192 | 193 | astral-regex@^1.0.0: 194 | version "1.0.0" 195 | resolved "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" 196 | integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== 197 | 198 | astral-regex@^2.0.0: 199 | version "2.0.0" 200 | resolved "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" 201 | integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== 202 | 203 | balanced-match@^1.0.0: 204 | version "1.0.0" 205 | resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 206 | integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= 207 | 208 | brace-expansion@^1.1.7: 209 | version "1.1.11" 210 | resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 211 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 212 | dependencies: 213 | balanced-match "^1.0.0" 214 | concat-map "0.0.1" 215 | 216 | braces@^3.0.1: 217 | version "3.0.2" 218 | resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 219 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 220 | dependencies: 221 | fill-range "^7.0.1" 222 | 223 | callsites@^3.0.0: 224 | version "3.1.0" 225 | resolved "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 226 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 227 | 228 | chalk@^2.0.0, chalk@^2.1.0: 229 | version "2.4.2" 230 | resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 231 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 232 | dependencies: 233 | ansi-styles "^3.2.1" 234 | escape-string-regexp "^1.0.5" 235 | supports-color "^5.3.0" 236 | 237 | chalk@^3.0.0: 238 | version "3.0.0" 239 | resolved "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" 240 | integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== 241 | dependencies: 242 | ansi-styles "^4.1.0" 243 | supports-color "^7.1.0" 244 | 245 | chalk@^4.0.0: 246 | version "4.1.0" 247 | resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a" 248 | integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A== 249 | dependencies: 250 | ansi-styles "^4.1.0" 251 | supports-color "^7.1.0" 252 | 253 | chardet@^0.7.0: 254 | version "0.7.0" 255 | resolved "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" 256 | integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== 257 | 258 | ci-info@^2.0.0: 259 | version "2.0.0" 260 | resolved "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" 261 | integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== 262 | 263 | clean-stack@^2.0.0: 264 | version "2.2.0" 265 | resolved "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" 266 | integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== 267 | 268 | cli-cursor@^3.1.0: 269 | version "3.1.0" 270 | resolved "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" 271 | integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== 272 | dependencies: 273 | restore-cursor "^3.1.0" 274 | 275 | cli-truncate@2.1.0, cli-truncate@^2.1.0: 276 | version "2.1.0" 277 | resolved "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz#c39e28bf05edcde5be3b98992a22deed5a2b93c7" 278 | integrity sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg== 279 | dependencies: 280 | slice-ansi "^3.0.0" 281 | string-width "^4.2.0" 282 | 283 | cli-width@^2.0.0: 284 | version "2.2.1" 285 | resolved "https://registry.npmjs.org/cli-width/-/cli-width-2.2.1.tgz#b0433d0b4e9c847ef18868a4ef16fd5fc8271c48" 286 | integrity sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw== 287 | 288 | color-convert@^1.9.0: 289 | version "1.9.3" 290 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 291 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 292 | dependencies: 293 | color-name "1.1.3" 294 | 295 | color-convert@^2.0.1: 296 | version "2.0.1" 297 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 298 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 299 | dependencies: 300 | color-name "~1.1.4" 301 | 302 | color-name@1.1.3: 303 | version "1.1.3" 304 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 305 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 306 | 307 | color-name@~1.1.4: 308 | version "1.1.4" 309 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 310 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 311 | 312 | commander@^5.1.0: 313 | version "5.1.0" 314 | resolved "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz#46abbd1652f8e059bddaef99bbdcb2ad9cf179ae" 315 | integrity sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg== 316 | 317 | compare-versions@^3.6.0: 318 | version "3.6.0" 319 | resolved "https://registry.npmjs.org/compare-versions/-/compare-versions-3.6.0.tgz#1a5689913685e5a87637b8d3ffca75514ec41d62" 320 | integrity sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4/+FlaqfBA== 321 | 322 | concat-map@0.0.1: 323 | version "0.0.1" 324 | resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 325 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 326 | 327 | confusing-browser-globals@^1.0.9: 328 | version "1.0.9" 329 | resolved "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.9.tgz#72bc13b483c0276801681871d4898516f8f54fdd" 330 | integrity sha512-KbS1Y0jMtyPgIxjO7ZzMAuUpAKMt1SzCL9fsrKsX6b0zJPTaT0SiSPmewwVZg9UAO83HVIlEhZF84LIjZ0lmAw== 331 | 332 | contains-path@^0.1.0: 333 | version "0.1.0" 334 | resolved "https://registry.npmjs.org/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 335 | integrity sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo= 336 | 337 | cosmiconfig@^6.0.0: 338 | version "6.0.0" 339 | resolved "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982" 340 | integrity sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg== 341 | dependencies: 342 | "@types/parse-json" "^4.0.0" 343 | import-fresh "^3.1.0" 344 | parse-json "^5.0.0" 345 | path-type "^4.0.0" 346 | yaml "^1.7.2" 347 | 348 | cross-spawn@^6.0.5: 349 | version "6.0.5" 350 | resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" 351 | integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== 352 | dependencies: 353 | nice-try "^1.0.4" 354 | path-key "^2.0.1" 355 | semver "^5.5.0" 356 | shebang-command "^1.2.0" 357 | which "^1.2.9" 358 | 359 | cross-spawn@^7.0.0: 360 | version "7.0.3" 361 | resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 362 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 363 | dependencies: 364 | path-key "^3.1.0" 365 | shebang-command "^2.0.0" 366 | which "^2.0.1" 367 | 368 | debug@^2.6.9: 369 | version "2.6.9" 370 | resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 371 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 372 | dependencies: 373 | ms "2.0.0" 374 | 375 | debug@^4.0.1, debug@^4.1.1: 376 | version "4.1.1" 377 | resolved "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" 378 | integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== 379 | dependencies: 380 | ms "^2.1.1" 381 | 382 | dedent@^0.7.0: 383 | version "0.7.0" 384 | resolved "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" 385 | integrity sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw= 386 | 387 | deep-is@~0.1.3: 388 | version "0.1.3" 389 | resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 390 | integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= 391 | 392 | define-properties@^1.1.2, define-properties@^1.1.3: 393 | version "1.1.3" 394 | resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 395 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== 396 | dependencies: 397 | object-keys "^1.0.12" 398 | 399 | doctrine@1.5.0: 400 | version "1.5.0" 401 | resolved "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 402 | integrity sha1-N53Ocw9hZvds76TmcHoVmwLFpvo= 403 | dependencies: 404 | esutils "^2.0.2" 405 | isarray "^1.0.0" 406 | 407 | doctrine@^3.0.0: 408 | version "3.0.0" 409 | resolved "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" 410 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== 411 | dependencies: 412 | esutils "^2.0.2" 413 | 414 | emoji-regex@^7.0.1: 415 | version "7.0.3" 416 | resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" 417 | integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== 418 | 419 | emoji-regex@^8.0.0: 420 | version "8.0.0" 421 | resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 422 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 423 | 424 | end-of-stream@^1.1.0: 425 | version "1.4.4" 426 | resolved "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" 427 | integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== 428 | dependencies: 429 | once "^1.4.0" 430 | 431 | enquirer@^2.3.5: 432 | version "2.3.5" 433 | resolved "https://registry.npmjs.org/enquirer/-/enquirer-2.3.5.tgz#3ab2b838df0a9d8ab9e7dff235b0e8712ef92381" 434 | integrity sha512-BNT1C08P9XD0vNg3J475yIUG+mVdp9T6towYFHUv897X0KoHBjB1shyrNmhmtHWKP17iSWgo7Gqh7BBuzLZMSA== 435 | dependencies: 436 | ansi-colors "^3.2.1" 437 | 438 | error-ex@^1.2.0, error-ex@^1.3.1: 439 | version "1.3.2" 440 | resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 441 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 442 | dependencies: 443 | is-arrayish "^0.2.1" 444 | 445 | es-abstract@^1.17.0, es-abstract@^1.17.0-next.1, es-abstract@^1.17.5: 446 | version "1.17.6" 447 | resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.6.tgz#9142071707857b2cacc7b89ecb670316c3e2d52a" 448 | integrity sha512-Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw== 449 | dependencies: 450 | es-to-primitive "^1.2.1" 451 | function-bind "^1.1.1" 452 | has "^1.0.3" 453 | has-symbols "^1.0.1" 454 | is-callable "^1.2.0" 455 | is-regex "^1.1.0" 456 | object-inspect "^1.7.0" 457 | object-keys "^1.1.1" 458 | object.assign "^4.1.0" 459 | string.prototype.trimend "^1.0.1" 460 | string.prototype.trimstart "^1.0.1" 461 | 462 | es-to-primitive@^1.2.1: 463 | version "1.2.1" 464 | resolved "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" 465 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 466 | dependencies: 467 | is-callable "^1.1.4" 468 | is-date-object "^1.0.1" 469 | is-symbol "^1.0.2" 470 | 471 | escape-string-regexp@^1.0.5: 472 | version "1.0.5" 473 | resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 474 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 475 | 476 | eslint-config-prettier@^6.9.0: 477 | version "6.11.0" 478 | resolved "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-6.11.0.tgz#f6d2238c1290d01c859a8b5c1f7d352a0b0da8b1" 479 | integrity sha512-oB8cpLWSAjOVFEJhhyMZh6NOEOtBVziaqdDQ86+qhDHFbZXoRTM7pNSvFRfW/W/L/LrQ38C99J5CGuRBBzBsdA== 480 | dependencies: 481 | get-stdin "^6.0.0" 482 | 483 | eslint-config-vtex@^12.2.1: 484 | version "12.5.1" 485 | resolved "https://registry.npmjs.org/eslint-config-vtex/-/eslint-config-vtex-12.5.1.tgz#ac2e0143eb8acdc7d8e9970ec3632a41216bc1a2" 486 | integrity sha512-TfgrtI6HbuiCW8Cmnm37nRt6szkc8kY7CtAQY7JIGXiUwy8enXnFmidZeExWWd8ZFJB3Ks63wSf2eUHSzOa0Mg== 487 | dependencies: 488 | "@typescript-eslint/eslint-plugin" "^2.17.0" 489 | "@typescript-eslint/parser" "^2.17.0" 490 | confusing-browser-globals "^1.0.9" 491 | eslint-config-prettier "^6.9.0" 492 | eslint-plugin-cypress "^2.9.0" 493 | eslint-plugin-import "^2.20.0" 494 | eslint-plugin-jest "^23.7.0" 495 | eslint-plugin-prettier "^3.1.2" 496 | eslint-plugin-vtex "^1.1.1" 497 | 498 | eslint-import-resolver-node@^0.3.3: 499 | version "0.3.4" 500 | resolved "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz#85ffa81942c25012d8231096ddf679c03042c717" 501 | integrity sha512-ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA== 502 | dependencies: 503 | debug "^2.6.9" 504 | resolve "^1.13.1" 505 | 506 | eslint-module-utils@^2.6.0: 507 | version "2.6.0" 508 | resolved "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.6.0.tgz#579ebd094f56af7797d19c9866c9c9486629bfa6" 509 | integrity sha512-6j9xxegbqe8/kZY8cYpcp0xhbK0EgJlg3g9mib3/miLaExuuwc3n5UEfSnU6hWMbT0FAYVvDbL9RrRgpUeQIvA== 510 | dependencies: 511 | debug "^2.6.9" 512 | pkg-dir "^2.0.0" 513 | 514 | eslint-plugin-cypress@^2.9.0: 515 | version "2.11.1" 516 | resolved "https://registry.npmjs.org/eslint-plugin-cypress/-/eslint-plugin-cypress-2.11.1.tgz#a945e2774b88211e2c706a059d431e262b5c2862" 517 | integrity sha512-MxMYoReSO5+IZMGgpBZHHSx64zYPSPTpXDwsgW7ChlJTF/sA+obqRbHplxD6sBStE+g4Mi0LCLkG4t9liu//mQ== 518 | dependencies: 519 | globals "^11.12.0" 520 | 521 | eslint-plugin-import@^2.20.0: 522 | version "2.21.2" 523 | resolved "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.21.2.tgz#8fef77475cc5510801bedc95f84b932f7f334a7c" 524 | integrity sha512-FEmxeGI6yaz+SnEB6YgNHlQK1Bs2DKLM+YF+vuTk5H8J9CLbJLtlPvRFgZZ2+sXiKAlN5dpdlrWOjK8ZoZJpQA== 525 | dependencies: 526 | array-includes "^3.1.1" 527 | array.prototype.flat "^1.2.3" 528 | contains-path "^0.1.0" 529 | debug "^2.6.9" 530 | doctrine "1.5.0" 531 | eslint-import-resolver-node "^0.3.3" 532 | eslint-module-utils "^2.6.0" 533 | has "^1.0.3" 534 | minimatch "^3.0.4" 535 | object.values "^1.1.1" 536 | read-pkg-up "^2.0.0" 537 | resolve "^1.17.0" 538 | tsconfig-paths "^3.9.0" 539 | 540 | eslint-plugin-jest@^23.7.0: 541 | version "23.17.1" 542 | resolved "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-23.17.1.tgz#c0f39ba78e0f33b7ee1ce4ec92b773e39026ea3f" 543 | integrity sha512-/o36fw67qNbJGWbSBIBMfseMsNP/d88WUHAGHCi1xFwsNB3XXZGdvxbOw49j3iQz6MCW/yw8OeOsuQhi6mM5ZA== 544 | dependencies: 545 | "@typescript-eslint/experimental-utils" "^2.5.0" 546 | 547 | eslint-plugin-prettier@^3.1.2: 548 | version "3.1.4" 549 | resolved "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-3.1.4.tgz#168ab43154e2ea57db992a2cd097c828171f75c2" 550 | integrity sha512-jZDa8z76klRqo+TdGDTFJSavwbnWK2ZpqGKNZ+VvweMW516pDUMmQ2koXvxEE4JhzNvTv+radye/bWGBmA6jmg== 551 | dependencies: 552 | prettier-linter-helpers "^1.0.0" 553 | 554 | eslint-plugin-vtex@^1.1.1: 555 | version "1.1.1" 556 | resolved "https://registry.npmjs.org/eslint-plugin-vtex/-/eslint-plugin-vtex-1.1.1.tgz#5a29f41ab1cd8ac94682c929bd824b86cffba4d8" 557 | integrity sha512-ugmJn/hiWjfEdhdL6MX3dXYHwfZCzGTxSlBQu08F96Ge6bS+Pm1eNPu76rd+vn/0/828ZRTwtPruvLbPTlwhiw== 558 | 559 | eslint-scope@^5.0.0: 560 | version "5.1.0" 561 | resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.0.tgz#d0f971dfe59c69e0cada684b23d49dbf82600ce5" 562 | integrity sha512-iiGRvtxWqgtx5m8EyQUJihBloE4EnYeGE/bz1wSPwJE6tZuJUtHlhqDM4Xj2ukE8Dyy1+HCZ4hE0fzIVMzb58w== 563 | dependencies: 564 | esrecurse "^4.1.0" 565 | estraverse "^4.1.1" 566 | 567 | eslint-utils@^1.4.3: 568 | version "1.4.3" 569 | resolved "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.4.3.tgz#74fec7c54d0776b6f67e0251040b5806564e981f" 570 | integrity sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q== 571 | dependencies: 572 | eslint-visitor-keys "^1.1.0" 573 | 574 | eslint-utils@^2.0.0: 575 | version "2.1.0" 576 | resolved "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27" 577 | integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== 578 | dependencies: 579 | eslint-visitor-keys "^1.1.0" 580 | 581 | eslint-visitor-keys@^1.1.0: 582 | version "1.3.0" 583 | resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" 584 | integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== 585 | 586 | eslint@^6.8.0: 587 | version "6.8.0" 588 | resolved "https://registry.npmjs.org/eslint/-/eslint-6.8.0.tgz#62262d6729739f9275723824302fb227c8c93ffb" 589 | integrity sha512-K+Iayyo2LtyYhDSYwz5D5QdWw0hCacNzyq1Y821Xna2xSJj7cijoLLYmLxTQgcgZ9mC61nryMy9S7GRbYpI5Ig== 590 | dependencies: 591 | "@babel/code-frame" "^7.0.0" 592 | ajv "^6.10.0" 593 | chalk "^2.1.0" 594 | cross-spawn "^6.0.5" 595 | debug "^4.0.1" 596 | doctrine "^3.0.0" 597 | eslint-scope "^5.0.0" 598 | eslint-utils "^1.4.3" 599 | eslint-visitor-keys "^1.1.0" 600 | espree "^6.1.2" 601 | esquery "^1.0.1" 602 | esutils "^2.0.2" 603 | file-entry-cache "^5.0.1" 604 | functional-red-black-tree "^1.0.1" 605 | glob-parent "^5.0.0" 606 | globals "^12.1.0" 607 | ignore "^4.0.6" 608 | import-fresh "^3.0.0" 609 | imurmurhash "^0.1.4" 610 | inquirer "^7.0.0" 611 | is-glob "^4.0.0" 612 | js-yaml "^3.13.1" 613 | json-stable-stringify-without-jsonify "^1.0.1" 614 | levn "^0.3.0" 615 | lodash "^4.17.14" 616 | minimatch "^3.0.4" 617 | mkdirp "^0.5.1" 618 | natural-compare "^1.4.0" 619 | optionator "^0.8.3" 620 | progress "^2.0.0" 621 | regexpp "^2.0.1" 622 | semver "^6.1.2" 623 | strip-ansi "^5.2.0" 624 | strip-json-comments "^3.0.1" 625 | table "^5.2.3" 626 | text-table "^0.2.0" 627 | v8-compile-cache "^2.0.3" 628 | 629 | espree@^6.1.2: 630 | version "6.2.1" 631 | resolved "https://registry.npmjs.org/espree/-/espree-6.2.1.tgz#77fc72e1fd744a2052c20f38a5b575832e82734a" 632 | integrity sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw== 633 | dependencies: 634 | acorn "^7.1.1" 635 | acorn-jsx "^5.2.0" 636 | eslint-visitor-keys "^1.1.0" 637 | 638 | esprima@^4.0.0: 639 | version "4.0.1" 640 | resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 641 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 642 | 643 | esquery@^1.0.1: 644 | version "1.3.1" 645 | resolved "https://registry.npmjs.org/esquery/-/esquery-1.3.1.tgz#b78b5828aa8e214e29fb74c4d5b752e1c033da57" 646 | integrity sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ== 647 | dependencies: 648 | estraverse "^5.1.0" 649 | 650 | esrecurse@^4.1.0: 651 | version "4.2.1" 652 | resolved "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" 653 | integrity sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ== 654 | dependencies: 655 | estraverse "^4.1.0" 656 | 657 | estraverse@^4.1.0, estraverse@^4.1.1: 658 | version "4.3.0" 659 | resolved "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" 660 | integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== 661 | 662 | estraverse@^5.1.0: 663 | version "5.1.0" 664 | resolved "https://registry.npmjs.org/estraverse/-/estraverse-5.1.0.tgz#374309d39fd935ae500e7b92e8a6b4c720e59642" 665 | integrity sha512-FyohXK+R0vE+y1nHLoBM7ZTyqRpqAlhdZHCWIWEviFLiGB8b04H6bQs8G+XTthacvT8VuwvteiP7RJSxMs8UEw== 666 | 667 | esutils@^2.0.2: 668 | version "2.0.3" 669 | resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 670 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 671 | 672 | execa@^4.0.1: 673 | version "4.0.2" 674 | resolved "https://registry.npmjs.org/execa/-/execa-4.0.2.tgz#ad87fb7b2d9d564f70d2b62d511bee41d5cbb240" 675 | integrity sha512-QI2zLa6CjGWdiQsmSkZoGtDx2N+cQIGb3yNolGTdjSQzydzLgYYf8LRuagp7S7fPimjcrzUDSUFd/MgzELMi4Q== 676 | dependencies: 677 | cross-spawn "^7.0.0" 678 | get-stream "^5.0.0" 679 | human-signals "^1.1.1" 680 | is-stream "^2.0.0" 681 | merge-stream "^2.0.0" 682 | npm-run-path "^4.0.0" 683 | onetime "^5.1.0" 684 | signal-exit "^3.0.2" 685 | strip-final-newline "^2.0.0" 686 | 687 | external-editor@^3.0.3: 688 | version "3.1.0" 689 | resolved "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495" 690 | integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== 691 | dependencies: 692 | chardet "^0.7.0" 693 | iconv-lite "^0.4.24" 694 | tmp "^0.0.33" 695 | 696 | fast-deep-equal@^3.1.1: 697 | version "3.1.3" 698 | resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 699 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 700 | 701 | fast-diff@^1.1.2: 702 | version "1.2.0" 703 | resolved "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03" 704 | integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w== 705 | 706 | fast-json-stable-stringify@^2.0.0: 707 | version "2.1.0" 708 | resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 709 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 710 | 711 | fast-levenshtein@~2.0.6: 712 | version "2.0.6" 713 | resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 714 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= 715 | 716 | figures@^3.0.0, figures@^3.2.0: 717 | version "3.2.0" 718 | resolved "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" 719 | integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== 720 | dependencies: 721 | escape-string-regexp "^1.0.5" 722 | 723 | file-entry-cache@^5.0.1: 724 | version "5.0.1" 725 | resolved "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz#ca0f6efa6dd3d561333fb14515065c2fafdf439c" 726 | integrity sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g== 727 | dependencies: 728 | flat-cache "^2.0.1" 729 | 730 | fill-range@^7.0.1: 731 | version "7.0.1" 732 | resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 733 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 734 | dependencies: 735 | to-regex-range "^5.0.1" 736 | 737 | find-up@^2.0.0, find-up@^2.1.0: 738 | version "2.1.0" 739 | resolved "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 740 | integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c= 741 | dependencies: 742 | locate-path "^2.0.0" 743 | 744 | find-up@^4.0.0: 745 | version "4.1.0" 746 | resolved "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" 747 | integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== 748 | dependencies: 749 | locate-path "^5.0.0" 750 | path-exists "^4.0.0" 751 | 752 | find-versions@^3.2.0: 753 | version "3.2.0" 754 | resolved "https://registry.npmjs.org/find-versions/-/find-versions-3.2.0.tgz#10297f98030a786829681690545ef659ed1d254e" 755 | integrity sha512-P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww== 756 | dependencies: 757 | semver-regex "^2.0.0" 758 | 759 | flat-cache@^2.0.1: 760 | version "2.0.1" 761 | resolved "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0" 762 | integrity sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA== 763 | dependencies: 764 | flatted "^2.0.0" 765 | rimraf "2.6.3" 766 | write "1.0.3" 767 | 768 | flatted@^2.0.0: 769 | version "2.0.2" 770 | resolved "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz#4575b21e2bcee7434aa9be662f4b7b5f9c2b5138" 771 | integrity sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA== 772 | 773 | fs.realpath@^1.0.0: 774 | version "1.0.0" 775 | resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 776 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 777 | 778 | function-bind@^1.1.1: 779 | version "1.1.1" 780 | resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 781 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 782 | 783 | functional-red-black-tree@^1.0.1: 784 | version "1.0.1" 785 | resolved "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 786 | integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= 787 | 788 | get-own-enumerable-property-symbols@^3.0.0: 789 | version "3.0.2" 790 | resolved "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz#b5fde77f22cbe35f390b4e089922c50bce6ef664" 791 | integrity sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g== 792 | 793 | get-stdin@^6.0.0: 794 | version "6.0.0" 795 | resolved "https://registry.npmjs.org/get-stdin/-/get-stdin-6.0.0.tgz#9e09bf712b360ab9225e812048f71fde9c89657b" 796 | integrity sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g== 797 | 798 | get-stream@^5.0.0: 799 | version "5.1.0" 800 | resolved "https://registry.npmjs.org/get-stream/-/get-stream-5.1.0.tgz#01203cdc92597f9b909067c3e656cc1f4d3c4dc9" 801 | integrity sha512-EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw== 802 | dependencies: 803 | pump "^3.0.0" 804 | 805 | glob-parent@^5.0.0: 806 | version "5.1.1" 807 | resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229" 808 | integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ== 809 | dependencies: 810 | is-glob "^4.0.1" 811 | 812 | glob@^7.1.3, glob@^7.1.6: 813 | version "7.1.6" 814 | resolved "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" 815 | integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== 816 | dependencies: 817 | fs.realpath "^1.0.0" 818 | inflight "^1.0.4" 819 | inherits "2" 820 | minimatch "^3.0.4" 821 | once "^1.3.0" 822 | path-is-absolute "^1.0.0" 823 | 824 | globals@^11.12.0: 825 | version "11.12.0" 826 | resolved "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 827 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 828 | 829 | globals@^12.1.0: 830 | version "12.4.0" 831 | resolved "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz#a18813576a41b00a24a97e7f815918c2e19925f8" 832 | integrity sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg== 833 | dependencies: 834 | type-fest "^0.8.1" 835 | 836 | graceful-fs@^4.1.2: 837 | version "4.2.4" 838 | resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb" 839 | integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw== 840 | 841 | has-flag@^3.0.0: 842 | version "3.0.0" 843 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 844 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 845 | 846 | has-flag@^4.0.0: 847 | version "4.0.0" 848 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 849 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 850 | 851 | has-symbols@^1.0.0, has-symbols@^1.0.1: 852 | version "1.0.1" 853 | resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8" 854 | integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg== 855 | 856 | has@^1.0.3: 857 | version "1.0.3" 858 | resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 859 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 860 | dependencies: 861 | function-bind "^1.1.1" 862 | 863 | hosted-git-info@^2.1.4: 864 | version "2.8.8" 865 | resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488" 866 | integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg== 867 | 868 | human-signals@^1.1.1: 869 | version "1.1.1" 870 | resolved "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3" 871 | integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw== 872 | 873 | husky@^4.2.0: 874 | version "4.2.5" 875 | resolved "https://registry.npmjs.org/husky/-/husky-4.2.5.tgz#2b4f7622673a71579f901d9885ed448394b5fa36" 876 | integrity sha512-SYZ95AjKcX7goYVZtVZF2i6XiZcHknw50iXvY7b0MiGoj5RwdgRQNEHdb+gPDPCXKlzwrybjFjkL6FOj8uRhZQ== 877 | dependencies: 878 | chalk "^4.0.0" 879 | ci-info "^2.0.0" 880 | compare-versions "^3.6.0" 881 | cosmiconfig "^6.0.0" 882 | find-versions "^3.2.0" 883 | opencollective-postinstall "^2.0.2" 884 | pkg-dir "^4.2.0" 885 | please-upgrade-node "^3.2.0" 886 | slash "^3.0.0" 887 | which-pm-runs "^1.0.0" 888 | 889 | iconv-lite@^0.4.24: 890 | version "0.4.24" 891 | resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 892 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== 893 | dependencies: 894 | safer-buffer ">= 2.1.2 < 3" 895 | 896 | ignore@^4.0.6: 897 | version "4.0.6" 898 | resolved "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" 899 | integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== 900 | 901 | import-fresh@^3.0.0, import-fresh@^3.1.0: 902 | version "3.2.1" 903 | resolved "https://registry.npmjs.org/import-fresh/-/import-fresh-3.2.1.tgz#633ff618506e793af5ac91bf48b72677e15cbe66" 904 | integrity sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ== 905 | dependencies: 906 | parent-module "^1.0.0" 907 | resolve-from "^4.0.0" 908 | 909 | imurmurhash@^0.1.4: 910 | version "0.1.4" 911 | resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 912 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 913 | 914 | indent-string@^4.0.0: 915 | version "4.0.0" 916 | resolved "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" 917 | integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== 918 | 919 | inflight@^1.0.4: 920 | version "1.0.6" 921 | resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 922 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 923 | dependencies: 924 | once "^1.3.0" 925 | wrappy "1" 926 | 927 | inherits@2: 928 | version "2.0.4" 929 | resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 930 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 931 | 932 | inquirer@^7.0.0: 933 | version "7.2.0" 934 | resolved "https://registry.npmjs.org/inquirer/-/inquirer-7.2.0.tgz#63ce99d823090de7eb420e4bb05e6f3449aa389a" 935 | integrity sha512-E0c4rPwr9ByePfNlTIB8z51kK1s2n6jrHuJeEHENl/sbq2G/S1auvibgEwNR4uSyiU+PiYHqSwsgGiXjG8p5ZQ== 936 | dependencies: 937 | ansi-escapes "^4.2.1" 938 | chalk "^3.0.0" 939 | cli-cursor "^3.1.0" 940 | cli-width "^2.0.0" 941 | external-editor "^3.0.3" 942 | figures "^3.0.0" 943 | lodash "^4.17.15" 944 | mute-stream "0.0.8" 945 | run-async "^2.4.0" 946 | rxjs "^6.5.3" 947 | string-width "^4.1.0" 948 | strip-ansi "^6.0.0" 949 | through "^2.3.6" 950 | 951 | is-arrayish@^0.2.1: 952 | version "0.2.1" 953 | resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 954 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 955 | 956 | is-callable@^1.1.4, is-callable@^1.2.0: 957 | version "1.2.0" 958 | resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.2.0.tgz#83336560b54a38e35e3a2df7afd0454d691468bb" 959 | integrity sha512-pyVD9AaGLxtg6srb2Ng6ynWJqkHU9bEM087AKck0w8QwDarTfNcpIYoU8x8Hv2Icm8u6kFJM18Dag8lyqGkviw== 960 | 961 | is-date-object@^1.0.1: 962 | version "1.0.2" 963 | resolved "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e" 964 | integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g== 965 | 966 | is-extglob@^2.1.1: 967 | version "2.1.1" 968 | resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 969 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= 970 | 971 | is-fullwidth-code-point@^2.0.0: 972 | version "2.0.0" 973 | resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 974 | integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= 975 | 976 | is-fullwidth-code-point@^3.0.0: 977 | version "3.0.0" 978 | resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 979 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 980 | 981 | is-glob@^4.0.0, is-glob@^4.0.1: 982 | version "4.0.1" 983 | resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" 984 | integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== 985 | dependencies: 986 | is-extglob "^2.1.1" 987 | 988 | is-number@^7.0.0: 989 | version "7.0.0" 990 | resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 991 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 992 | 993 | is-obj@^1.0.1: 994 | version "1.0.1" 995 | resolved "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 996 | integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8= 997 | 998 | is-regex@^1.1.0: 999 | version "1.1.0" 1000 | resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.1.0.tgz#ece38e389e490df0dc21caea2bd596f987f767ff" 1001 | integrity sha512-iI97M8KTWID2la5uYXlkbSDQIg4F6o1sYboZKKTDpnDQMLtUL86zxhgDet3Q2SriaYsyGqZ6Mn2SjbRKeLHdqw== 1002 | dependencies: 1003 | has-symbols "^1.0.1" 1004 | 1005 | is-regexp@^1.0.0: 1006 | version "1.0.0" 1007 | resolved "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069" 1008 | integrity sha1-/S2INUXEa6xaYz57mgnof6LLUGk= 1009 | 1010 | is-stream@^2.0.0: 1011 | version "2.0.0" 1012 | resolved "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3" 1013 | integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw== 1014 | 1015 | is-string@^1.0.5: 1016 | version "1.0.5" 1017 | resolved "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz#40493ed198ef3ff477b8c7f92f644ec82a5cd3a6" 1018 | integrity sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ== 1019 | 1020 | is-symbol@^1.0.2: 1021 | version "1.0.3" 1022 | resolved "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937" 1023 | integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ== 1024 | dependencies: 1025 | has-symbols "^1.0.1" 1026 | 1027 | isarray@^1.0.0: 1028 | version "1.0.0" 1029 | resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1030 | integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= 1031 | 1032 | isexe@^2.0.0: 1033 | version "2.0.0" 1034 | resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1035 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 1036 | 1037 | js-tokens@^4.0.0: 1038 | version "4.0.0" 1039 | resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1040 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1041 | 1042 | js-yaml@^3.13.1: 1043 | version "3.14.0" 1044 | resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.0.tgz#a7a34170f26a21bb162424d8adacb4113a69e482" 1045 | integrity sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A== 1046 | dependencies: 1047 | argparse "^1.0.7" 1048 | esprima "^4.0.0" 1049 | 1050 | json-parse-better-errors@^1.0.1: 1051 | version "1.0.2" 1052 | resolved "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" 1053 | integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== 1054 | 1055 | json-schema-traverse@^0.4.1: 1056 | version "0.4.1" 1057 | resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 1058 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 1059 | 1060 | json-stable-stringify-without-jsonify@^1.0.1: 1061 | version "1.0.1" 1062 | resolved "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 1063 | integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= 1064 | 1065 | json5@^1.0.1: 1066 | version "1.0.1" 1067 | resolved "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" 1068 | integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== 1069 | dependencies: 1070 | minimist "^1.2.0" 1071 | 1072 | levn@^0.3.0, levn@~0.3.0: 1073 | version "0.3.0" 1074 | resolved "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1075 | integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= 1076 | dependencies: 1077 | prelude-ls "~1.1.2" 1078 | type-check "~0.3.2" 1079 | 1080 | lines-and-columns@^1.1.6: 1081 | version "1.1.6" 1082 | resolved "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" 1083 | integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= 1084 | 1085 | lint-staged@^10.0.2: 1086 | version "10.2.11" 1087 | resolved "https://registry.npmjs.org/lint-staged/-/lint-staged-10.2.11.tgz#713c80877f2dc8b609b05bc59020234e766c9720" 1088 | integrity sha512-LRRrSogzbixYaZItE2APaS4l2eJMjjf5MbclRZpLJtcQJShcvUzKXsNeZgsLIZ0H0+fg2tL4B59fU9wHIHtFIA== 1089 | dependencies: 1090 | chalk "^4.0.0" 1091 | cli-truncate "2.1.0" 1092 | commander "^5.1.0" 1093 | cosmiconfig "^6.0.0" 1094 | debug "^4.1.1" 1095 | dedent "^0.7.0" 1096 | enquirer "^2.3.5" 1097 | execa "^4.0.1" 1098 | listr2 "^2.1.0" 1099 | log-symbols "^4.0.0" 1100 | micromatch "^4.0.2" 1101 | normalize-path "^3.0.0" 1102 | please-upgrade-node "^3.2.0" 1103 | string-argv "0.3.1" 1104 | stringify-object "^3.3.0" 1105 | 1106 | listr2@^2.1.0: 1107 | version "2.1.8" 1108 | resolved "https://registry.npmjs.org/listr2/-/listr2-2.1.8.tgz#8af7ebc70cdbe866ddbb6c80909142bd45758f1f" 1109 | integrity sha512-Op+hheiChfAphkJ5qUxZtHgyjlX9iNnAeFS/S134xw7mVSg0YVrQo1IY4/K+ElY6XgOPg2Ij4z07urUXR+YEew== 1110 | dependencies: 1111 | chalk "^4.0.0" 1112 | cli-truncate "^2.1.0" 1113 | figures "^3.2.0" 1114 | indent-string "^4.0.0" 1115 | log-update "^4.0.0" 1116 | p-map "^4.0.0" 1117 | rxjs "^6.5.5" 1118 | through "^2.3.8" 1119 | 1120 | load-json-file@^2.0.0: 1121 | version "2.0.0" 1122 | resolved "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 1123 | integrity sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg= 1124 | dependencies: 1125 | graceful-fs "^4.1.2" 1126 | parse-json "^2.2.0" 1127 | pify "^2.0.0" 1128 | strip-bom "^3.0.0" 1129 | 1130 | locate-path@^2.0.0: 1131 | version "2.0.0" 1132 | resolved "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1133 | integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4= 1134 | dependencies: 1135 | p-locate "^2.0.0" 1136 | path-exists "^3.0.0" 1137 | 1138 | locate-path@^5.0.0: 1139 | version "5.0.0" 1140 | resolved "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" 1141 | integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== 1142 | dependencies: 1143 | p-locate "^4.1.0" 1144 | 1145 | lodash@^4.17.14, lodash@^4.17.15: 1146 | version "4.17.15" 1147 | resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" 1148 | integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A== 1149 | 1150 | log-symbols@^4.0.0: 1151 | version "4.0.0" 1152 | resolved "https://registry.npmjs.org/log-symbols/-/log-symbols-4.0.0.tgz#69b3cc46d20f448eccdb75ea1fa733d9e821c920" 1153 | integrity sha512-FN8JBzLx6CzeMrB0tg6pqlGU1wCrXW+ZXGH481kfsBqer0hToTIiHdjH4Mq8xJUbvATujKCvaREGWpGUionraA== 1154 | dependencies: 1155 | chalk "^4.0.0" 1156 | 1157 | log-update@^4.0.0: 1158 | version "4.0.0" 1159 | resolved "https://registry.npmjs.org/log-update/-/log-update-4.0.0.tgz#589ecd352471f2a1c0c570287543a64dfd20e0a1" 1160 | integrity sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg== 1161 | dependencies: 1162 | ansi-escapes "^4.3.0" 1163 | cli-cursor "^3.1.0" 1164 | slice-ansi "^4.0.0" 1165 | wrap-ansi "^6.2.0" 1166 | 1167 | merge-stream@^2.0.0: 1168 | version "2.0.0" 1169 | resolved "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" 1170 | integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== 1171 | 1172 | micromatch@^4.0.2: 1173 | version "4.0.2" 1174 | resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz#4fcb0999bf9fbc2fcbdd212f6d629b9a56c39259" 1175 | integrity sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q== 1176 | dependencies: 1177 | braces "^3.0.1" 1178 | picomatch "^2.0.5" 1179 | 1180 | mimic-fn@^2.1.0: 1181 | version "2.1.0" 1182 | resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" 1183 | integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== 1184 | 1185 | minimatch@^3.0.4: 1186 | version "3.0.4" 1187 | resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1188 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 1189 | dependencies: 1190 | brace-expansion "^1.1.7" 1191 | 1192 | minimist@^1.2.0, minimist@^1.2.5: 1193 | version "1.2.5" 1194 | resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 1195 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 1196 | 1197 | mkdirp@^0.5.1: 1198 | version "0.5.5" 1199 | resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" 1200 | integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== 1201 | dependencies: 1202 | minimist "^1.2.5" 1203 | 1204 | ms@2.0.0: 1205 | version "2.0.0" 1206 | resolved "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1207 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 1208 | 1209 | ms@^2.1.1: 1210 | version "2.1.2" 1211 | resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1212 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1213 | 1214 | mute-stream@0.0.8: 1215 | version "0.0.8" 1216 | resolved "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" 1217 | integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== 1218 | 1219 | natural-compare@^1.4.0: 1220 | version "1.4.0" 1221 | resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1222 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= 1223 | 1224 | nice-try@^1.0.4: 1225 | version "1.0.5" 1226 | resolved "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" 1227 | integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== 1228 | 1229 | normalize-package-data@^2.3.2: 1230 | version "2.5.0" 1231 | resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" 1232 | integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== 1233 | dependencies: 1234 | hosted-git-info "^2.1.4" 1235 | resolve "^1.10.0" 1236 | semver "2 || 3 || 4 || 5" 1237 | validate-npm-package-license "^3.0.1" 1238 | 1239 | normalize-path@^3.0.0: 1240 | version "3.0.0" 1241 | resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 1242 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 1243 | 1244 | npm-run-path@^4.0.0: 1245 | version "4.0.1" 1246 | resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" 1247 | integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== 1248 | dependencies: 1249 | path-key "^3.0.0" 1250 | 1251 | object-inspect@^1.7.0: 1252 | version "1.8.0" 1253 | resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.8.0.tgz#df807e5ecf53a609cc6bfe93eac3cc7be5b3a9d0" 1254 | integrity sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA== 1255 | 1256 | object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1: 1257 | version "1.1.1" 1258 | resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 1259 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 1260 | 1261 | object.assign@^4.1.0: 1262 | version "4.1.0" 1263 | resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" 1264 | integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w== 1265 | dependencies: 1266 | define-properties "^1.1.2" 1267 | function-bind "^1.1.1" 1268 | has-symbols "^1.0.0" 1269 | object-keys "^1.0.11" 1270 | 1271 | object.values@^1.1.1: 1272 | version "1.1.1" 1273 | resolved "https://registry.npmjs.org/object.values/-/object.values-1.1.1.tgz#68a99ecde356b7e9295a3c5e0ce31dc8c953de5e" 1274 | integrity sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA== 1275 | dependencies: 1276 | define-properties "^1.1.3" 1277 | es-abstract "^1.17.0-next.1" 1278 | function-bind "^1.1.1" 1279 | has "^1.0.3" 1280 | 1281 | once@^1.3.0, once@^1.3.1, once@^1.4.0: 1282 | version "1.4.0" 1283 | resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1284 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 1285 | dependencies: 1286 | wrappy "1" 1287 | 1288 | onetime@^5.1.0: 1289 | version "5.1.0" 1290 | resolved "https://registry.npmjs.org/onetime/-/onetime-5.1.0.tgz#fff0f3c91617fe62bb50189636e99ac8a6df7be5" 1291 | integrity sha512-5NcSkPHhwTVFIQN+TUqXoS5+dlElHXdpAWu9I0HP20YOtIi+aZ0Ct82jdlILDxjLEAWwvm+qj1m6aEtsDVmm6Q== 1292 | dependencies: 1293 | mimic-fn "^2.1.0" 1294 | 1295 | opencollective-postinstall@^2.0.2: 1296 | version "2.0.3" 1297 | resolved "https://registry.npmjs.org/opencollective-postinstall/-/opencollective-postinstall-2.0.3.tgz#7a0fff978f6dbfa4d006238fbac98ed4198c3259" 1298 | integrity sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q== 1299 | 1300 | optionator@^0.8.3: 1301 | version "0.8.3" 1302 | resolved "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" 1303 | integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== 1304 | dependencies: 1305 | deep-is "~0.1.3" 1306 | fast-levenshtein "~2.0.6" 1307 | levn "~0.3.0" 1308 | prelude-ls "~1.1.2" 1309 | type-check "~0.3.2" 1310 | word-wrap "~1.2.3" 1311 | 1312 | os-tmpdir@~1.0.2: 1313 | version "1.0.2" 1314 | resolved "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1315 | integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= 1316 | 1317 | p-limit@^1.1.0: 1318 | version "1.3.0" 1319 | resolved "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" 1320 | integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== 1321 | dependencies: 1322 | p-try "^1.0.0" 1323 | 1324 | p-limit@^2.2.0: 1325 | version "2.3.0" 1326 | resolved "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" 1327 | integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== 1328 | dependencies: 1329 | p-try "^2.0.0" 1330 | 1331 | p-locate@^2.0.0: 1332 | version "2.0.0" 1333 | resolved "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1334 | integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM= 1335 | dependencies: 1336 | p-limit "^1.1.0" 1337 | 1338 | p-locate@^4.1.0: 1339 | version "4.1.0" 1340 | resolved "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" 1341 | integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== 1342 | dependencies: 1343 | p-limit "^2.2.0" 1344 | 1345 | p-map@^4.0.0: 1346 | version "4.0.0" 1347 | resolved "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" 1348 | integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== 1349 | dependencies: 1350 | aggregate-error "^3.0.0" 1351 | 1352 | p-try@^1.0.0: 1353 | version "1.0.0" 1354 | resolved "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 1355 | integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M= 1356 | 1357 | p-try@^2.0.0: 1358 | version "2.2.0" 1359 | resolved "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" 1360 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== 1361 | 1362 | parent-module@^1.0.0: 1363 | version "1.0.1" 1364 | resolved "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 1365 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 1366 | dependencies: 1367 | callsites "^3.0.0" 1368 | 1369 | parse-json@^2.2.0: 1370 | version "2.2.0" 1371 | resolved "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1372 | integrity sha1-9ID0BDTvgHQfhGkJn43qGPVaTck= 1373 | dependencies: 1374 | error-ex "^1.2.0" 1375 | 1376 | parse-json@^5.0.0: 1377 | version "5.0.0" 1378 | resolved "https://registry.npmjs.org/parse-json/-/parse-json-5.0.0.tgz#73e5114c986d143efa3712d4ea24db9a4266f60f" 1379 | integrity sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw== 1380 | dependencies: 1381 | "@babel/code-frame" "^7.0.0" 1382 | error-ex "^1.3.1" 1383 | json-parse-better-errors "^1.0.1" 1384 | lines-and-columns "^1.1.6" 1385 | 1386 | path-exists@^3.0.0: 1387 | version "3.0.0" 1388 | resolved "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1389 | integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= 1390 | 1391 | path-exists@^4.0.0: 1392 | version "4.0.0" 1393 | resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 1394 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 1395 | 1396 | path-is-absolute@^1.0.0: 1397 | version "1.0.1" 1398 | resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1399 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 1400 | 1401 | path-key@^2.0.1: 1402 | version "2.0.1" 1403 | resolved "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 1404 | integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= 1405 | 1406 | path-key@^3.0.0, path-key@^3.1.0: 1407 | version "3.1.1" 1408 | resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 1409 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 1410 | 1411 | path-parse@^1.0.6: 1412 | version "1.0.6" 1413 | resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" 1414 | integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== 1415 | 1416 | path-type@^2.0.0: 1417 | version "2.0.0" 1418 | resolved "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 1419 | integrity sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM= 1420 | dependencies: 1421 | pify "^2.0.0" 1422 | 1423 | path-type@^4.0.0: 1424 | version "4.0.0" 1425 | resolved "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" 1426 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== 1427 | 1428 | picomatch@^2.0.5: 1429 | version "2.2.2" 1430 | resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" 1431 | integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg== 1432 | 1433 | pify@^2.0.0: 1434 | version "2.3.0" 1435 | resolved "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1436 | integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= 1437 | 1438 | pkg-dir@^2.0.0: 1439 | version "2.0.0" 1440 | resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" 1441 | integrity sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s= 1442 | dependencies: 1443 | find-up "^2.1.0" 1444 | 1445 | pkg-dir@^4.2.0: 1446 | version "4.2.0" 1447 | resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" 1448 | integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== 1449 | dependencies: 1450 | find-up "^4.0.0" 1451 | 1452 | please-upgrade-node@^3.2.0: 1453 | version "3.2.0" 1454 | resolved "https://registry.npmjs.org/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz#aeddd3f994c933e4ad98b99d9a556efa0e2fe942" 1455 | integrity sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg== 1456 | dependencies: 1457 | semver-compare "^1.0.0" 1458 | 1459 | prelude-ls@~1.1.2: 1460 | version "1.1.2" 1461 | resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 1462 | integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= 1463 | 1464 | prettier-linter-helpers@^1.0.0: 1465 | version "1.0.0" 1466 | resolved "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b" 1467 | integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w== 1468 | dependencies: 1469 | fast-diff "^1.1.2" 1470 | 1471 | prettier@^1.19.1: 1472 | version "1.19.1" 1473 | resolved "https://registry.npmjs.org/prettier/-/prettier-1.19.1.tgz#f7d7f5ff8a9cd872a7be4ca142095956a60797cb" 1474 | integrity sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew== 1475 | 1476 | progress@^2.0.0: 1477 | version "2.0.3" 1478 | resolved "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" 1479 | integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== 1480 | 1481 | pump@^3.0.0: 1482 | version "3.0.0" 1483 | resolved "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" 1484 | integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== 1485 | dependencies: 1486 | end-of-stream "^1.1.0" 1487 | once "^1.3.1" 1488 | 1489 | punycode@^2.1.0: 1490 | version "2.1.1" 1491 | resolved "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 1492 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 1493 | 1494 | read-pkg-up@^2.0.0: 1495 | version "2.0.0" 1496 | resolved "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 1497 | integrity sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4= 1498 | dependencies: 1499 | find-up "^2.0.0" 1500 | read-pkg "^2.0.0" 1501 | 1502 | read-pkg@^2.0.0: 1503 | version "2.0.0" 1504 | resolved "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 1505 | integrity sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg= 1506 | dependencies: 1507 | load-json-file "^2.0.0" 1508 | normalize-package-data "^2.3.2" 1509 | path-type "^2.0.0" 1510 | 1511 | regexpp@^2.0.1: 1512 | version "2.0.1" 1513 | resolved "https://registry.npmjs.org/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f" 1514 | integrity sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw== 1515 | 1516 | regexpp@^3.0.0: 1517 | version "3.1.0" 1518 | resolved "https://registry.npmjs.org/regexpp/-/regexpp-3.1.0.tgz#206d0ad0a5648cffbdb8ae46438f3dc51c9f78e2" 1519 | integrity sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q== 1520 | 1521 | resolve-from@^4.0.0: 1522 | version "4.0.0" 1523 | resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 1524 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 1525 | 1526 | resolve@^1.10.0, resolve@^1.13.1, resolve@^1.17.0: 1527 | version "1.17.0" 1528 | resolved "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz#b25941b54968231cc2d1bb76a79cb7f2c0bf8444" 1529 | integrity sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w== 1530 | dependencies: 1531 | path-parse "^1.0.6" 1532 | 1533 | restore-cursor@^3.1.0: 1534 | version "3.1.0" 1535 | resolved "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" 1536 | integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== 1537 | dependencies: 1538 | onetime "^5.1.0" 1539 | signal-exit "^3.0.2" 1540 | 1541 | rimraf@2.6.3: 1542 | version "2.6.3" 1543 | resolved "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" 1544 | integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== 1545 | dependencies: 1546 | glob "^7.1.3" 1547 | 1548 | run-async@^2.4.0: 1549 | version "2.4.1" 1550 | resolved "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455" 1551 | integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ== 1552 | 1553 | rxjs@^6.5.3, rxjs@^6.5.5: 1554 | version "6.5.5" 1555 | resolved "https://registry.npmjs.org/rxjs/-/rxjs-6.5.5.tgz#c5c884e3094c8cfee31bf27eb87e54ccfc87f9ec" 1556 | integrity sha512-WfQI+1gohdf0Dai/Bbmk5L5ItH5tYqm3ki2c5GdWhKjalzjg93N3avFjVStyZZz+A2Em+ZxKH5bNghw9UeylGQ== 1557 | dependencies: 1558 | tslib "^1.9.0" 1559 | 1560 | "safer-buffer@>= 2.1.2 < 3": 1561 | version "2.1.2" 1562 | resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 1563 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 1564 | 1565 | semver-compare@^1.0.0: 1566 | version "1.0.0" 1567 | resolved "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" 1568 | integrity sha1-De4hahyUGrN+nvsXiPavxf9VN/w= 1569 | 1570 | semver-regex@^2.0.0: 1571 | version "2.0.0" 1572 | resolved "https://registry.npmjs.org/semver-regex/-/semver-regex-2.0.0.tgz#a93c2c5844539a770233379107b38c7b4ac9d338" 1573 | integrity sha512-mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv/kGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+/5Qw== 1574 | 1575 | "semver@2 || 3 || 4 || 5", semver@^5.5.0: 1576 | version "5.7.1" 1577 | resolved "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 1578 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 1579 | 1580 | semver@^6.1.2: 1581 | version "6.3.0" 1582 | resolved "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 1583 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 1584 | 1585 | semver@^7.3.2: 1586 | version "7.3.2" 1587 | resolved "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz#604962b052b81ed0786aae84389ffba70ffd3938" 1588 | integrity sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ== 1589 | 1590 | shebang-command@^1.2.0: 1591 | version "1.2.0" 1592 | resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 1593 | integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= 1594 | dependencies: 1595 | shebang-regex "^1.0.0" 1596 | 1597 | shebang-command@^2.0.0: 1598 | version "2.0.0" 1599 | resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 1600 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 1601 | dependencies: 1602 | shebang-regex "^3.0.0" 1603 | 1604 | shebang-regex@^1.0.0: 1605 | version "1.0.0" 1606 | resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 1607 | integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= 1608 | 1609 | shebang-regex@^3.0.0: 1610 | version "3.0.0" 1611 | resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 1612 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 1613 | 1614 | signal-exit@^3.0.2: 1615 | version "3.0.3" 1616 | resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" 1617 | integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== 1618 | 1619 | slash@^3.0.0: 1620 | version "3.0.0" 1621 | resolved "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" 1622 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 1623 | 1624 | slice-ansi@^2.1.0: 1625 | version "2.1.0" 1626 | resolved "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636" 1627 | integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ== 1628 | dependencies: 1629 | ansi-styles "^3.2.0" 1630 | astral-regex "^1.0.0" 1631 | is-fullwidth-code-point "^2.0.0" 1632 | 1633 | slice-ansi@^3.0.0: 1634 | version "3.0.0" 1635 | resolved "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz#31ddc10930a1b7e0b67b08c96c2f49b77a789787" 1636 | integrity sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ== 1637 | dependencies: 1638 | ansi-styles "^4.0.0" 1639 | astral-regex "^2.0.0" 1640 | is-fullwidth-code-point "^3.0.0" 1641 | 1642 | slice-ansi@^4.0.0: 1643 | version "4.0.0" 1644 | resolved "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" 1645 | integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== 1646 | dependencies: 1647 | ansi-styles "^4.0.0" 1648 | astral-regex "^2.0.0" 1649 | is-fullwidth-code-point "^3.0.0" 1650 | 1651 | spdx-correct@^3.0.0: 1652 | version "3.1.1" 1653 | resolved "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" 1654 | integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== 1655 | dependencies: 1656 | spdx-expression-parse "^3.0.0" 1657 | spdx-license-ids "^3.0.0" 1658 | 1659 | spdx-exceptions@^2.1.0: 1660 | version "2.3.0" 1661 | resolved "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" 1662 | integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== 1663 | 1664 | spdx-expression-parse@^3.0.0: 1665 | version "3.0.1" 1666 | resolved "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" 1667 | integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== 1668 | dependencies: 1669 | spdx-exceptions "^2.1.0" 1670 | spdx-license-ids "^3.0.0" 1671 | 1672 | spdx-license-ids@^3.0.0: 1673 | version "3.0.5" 1674 | resolved "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz#3694b5804567a458d3c8045842a6358632f62654" 1675 | integrity sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q== 1676 | 1677 | sprintf-js@~1.0.2: 1678 | version "1.0.3" 1679 | resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 1680 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= 1681 | 1682 | string-argv@0.3.1: 1683 | version "0.3.1" 1684 | resolved "https://registry.npmjs.org/string-argv/-/string-argv-0.3.1.tgz#95e2fbec0427ae19184935f816d74aaa4c5c19da" 1685 | integrity sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg== 1686 | 1687 | string-width@^3.0.0: 1688 | version "3.1.0" 1689 | resolved "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" 1690 | integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== 1691 | dependencies: 1692 | emoji-regex "^7.0.1" 1693 | is-fullwidth-code-point "^2.0.0" 1694 | strip-ansi "^5.1.0" 1695 | 1696 | string-width@^4.1.0, string-width@^4.2.0: 1697 | version "4.2.0" 1698 | resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5" 1699 | integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg== 1700 | dependencies: 1701 | emoji-regex "^8.0.0" 1702 | is-fullwidth-code-point "^3.0.0" 1703 | strip-ansi "^6.0.0" 1704 | 1705 | string.prototype.trimend@^1.0.1: 1706 | version "1.0.1" 1707 | resolved "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz#85812a6b847ac002270f5808146064c995fb6913" 1708 | integrity sha512-LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g== 1709 | dependencies: 1710 | define-properties "^1.1.3" 1711 | es-abstract "^1.17.5" 1712 | 1713 | string.prototype.trimstart@^1.0.1: 1714 | version "1.0.1" 1715 | resolved "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz#14af6d9f34b053f7cfc89b72f8f2ee14b9039a54" 1716 | integrity sha512-XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw== 1717 | dependencies: 1718 | define-properties "^1.1.3" 1719 | es-abstract "^1.17.5" 1720 | 1721 | stringify-object@^3.3.0: 1722 | version "3.3.0" 1723 | resolved "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz#703065aefca19300d3ce88af4f5b3956d7556629" 1724 | integrity sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw== 1725 | dependencies: 1726 | get-own-enumerable-property-symbols "^3.0.0" 1727 | is-obj "^1.0.1" 1728 | is-regexp "^1.0.0" 1729 | 1730 | strip-ansi@^5.1.0, strip-ansi@^5.2.0: 1731 | version "5.2.0" 1732 | resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" 1733 | integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== 1734 | dependencies: 1735 | ansi-regex "^4.1.0" 1736 | 1737 | strip-ansi@^6.0.0: 1738 | version "6.0.0" 1739 | resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" 1740 | integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== 1741 | dependencies: 1742 | ansi-regex "^5.0.0" 1743 | 1744 | strip-bom@^3.0.0: 1745 | version "3.0.0" 1746 | resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 1747 | integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= 1748 | 1749 | strip-final-newline@^2.0.0: 1750 | version "2.0.0" 1751 | resolved "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" 1752 | integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== 1753 | 1754 | strip-json-comments@^3.0.1: 1755 | version "3.1.0" 1756 | resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.0.tgz#7638d31422129ecf4457440009fba03f9f9ac180" 1757 | integrity sha512-e6/d0eBu7gHtdCqFt0xJr642LdToM5/cN4Qb9DbHjVx1CP5RyeM+zH7pbecEmDv/lBqb0QH+6Uqq75rxFPkM0w== 1758 | 1759 | supports-color@^5.3.0: 1760 | version "5.5.0" 1761 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 1762 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 1763 | dependencies: 1764 | has-flag "^3.0.0" 1765 | 1766 | supports-color@^7.1.0: 1767 | version "7.1.0" 1768 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz#68e32591df73e25ad1c4b49108a2ec507962bfd1" 1769 | integrity sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g== 1770 | dependencies: 1771 | has-flag "^4.0.0" 1772 | 1773 | table@^5.2.3: 1774 | version "5.4.6" 1775 | resolved "https://registry.npmjs.org/table/-/table-5.4.6.tgz#1292d19500ce3f86053b05f0e8e7e4a3bb21079e" 1776 | integrity sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug== 1777 | dependencies: 1778 | ajv "^6.10.2" 1779 | lodash "^4.17.14" 1780 | slice-ansi "^2.1.0" 1781 | string-width "^3.0.0" 1782 | 1783 | text-table@^0.2.0: 1784 | version "0.2.0" 1785 | resolved "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 1786 | integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= 1787 | 1788 | through@^2.3.6, through@^2.3.8: 1789 | version "2.3.8" 1790 | resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 1791 | integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= 1792 | 1793 | tmp@^0.0.33: 1794 | version "0.0.33" 1795 | resolved "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 1796 | integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== 1797 | dependencies: 1798 | os-tmpdir "~1.0.2" 1799 | 1800 | to-regex-range@^5.0.1: 1801 | version "5.0.1" 1802 | resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 1803 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 1804 | dependencies: 1805 | is-number "^7.0.0" 1806 | 1807 | tsconfig-paths@^3.9.0: 1808 | version "3.9.0" 1809 | resolved "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz#098547a6c4448807e8fcb8eae081064ee9a3c90b" 1810 | integrity sha512-dRcuzokWhajtZWkQsDVKbWyY+jgcLC5sqJhg2PSgf4ZkH2aHPvaOY8YWGhmjb68b5qqTfasSsDO9k7RUiEmZAw== 1811 | dependencies: 1812 | "@types/json5" "^0.0.29" 1813 | json5 "^1.0.1" 1814 | minimist "^1.2.0" 1815 | strip-bom "^3.0.0" 1816 | 1817 | tslib@^1.8.1, tslib@^1.9.0: 1818 | version "1.13.0" 1819 | resolved "https://registry.npmjs.org/tslib/-/tslib-1.13.0.tgz#c881e13cc7015894ed914862d276436fa9a47043" 1820 | integrity sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q== 1821 | 1822 | tsutils@^3.17.1: 1823 | version "3.17.1" 1824 | resolved "https://registry.npmjs.org/tsutils/-/tsutils-3.17.1.tgz#ed719917f11ca0dee586272b2ac49e015a2dd759" 1825 | integrity sha512-kzeQ5B8H3w60nFY2g8cJIuH7JDpsALXySGtwGJ0p2LSjLgay3NdIpqq5SoOBe46bKDW2iq25irHCr8wjomUS2g== 1826 | dependencies: 1827 | tslib "^1.8.1" 1828 | 1829 | type-check@~0.3.2: 1830 | version "0.3.2" 1831 | resolved "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 1832 | integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= 1833 | dependencies: 1834 | prelude-ls "~1.1.2" 1835 | 1836 | type-fest@^0.11.0: 1837 | version "0.11.0" 1838 | resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.11.0.tgz#97abf0872310fed88a5c466b25681576145e33f1" 1839 | integrity sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ== 1840 | 1841 | type-fest@^0.8.1: 1842 | version "0.8.1" 1843 | resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" 1844 | integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== 1845 | 1846 | typescript@^3.7.5: 1847 | version "3.9.5" 1848 | resolved "https://registry.npmjs.org/typescript/-/typescript-3.9.5.tgz#586f0dba300cde8be52dd1ac4f7e1009c1b13f36" 1849 | integrity sha512-hSAifV3k+i6lEoCJ2k6R2Z/rp/H3+8sdmcn5NrS3/3kE7+RyZXm9aqvxWqjEXHAd8b0pShatpcdMTvEdvAJltQ== 1850 | 1851 | uri-js@^4.2.2: 1852 | version "4.2.2" 1853 | resolved "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" 1854 | integrity sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ== 1855 | dependencies: 1856 | punycode "^2.1.0" 1857 | 1858 | v8-compile-cache@^2.0.3: 1859 | version "2.1.1" 1860 | resolved "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.1.1.tgz#54bc3cdd43317bca91e35dcaf305b1a7237de745" 1861 | integrity sha512-8OQ9CL+VWyt3JStj7HX7/ciTL2V3Rl1Wf5OL+SNTm0yK1KvtReVulksyeRnCANHHuUxHlQig+JJDlUhBt1NQDQ== 1862 | 1863 | validate-npm-package-license@^3.0.1: 1864 | version "3.0.4" 1865 | resolved "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" 1866 | integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== 1867 | dependencies: 1868 | spdx-correct "^3.0.0" 1869 | spdx-expression-parse "^3.0.0" 1870 | 1871 | which-pm-runs@^1.0.0: 1872 | version "1.0.0" 1873 | resolved "https://registry.npmjs.org/which-pm-runs/-/which-pm-runs-1.0.0.tgz#670b3afbc552e0b55df6b7780ca74615f23ad1cb" 1874 | integrity sha1-Zws6+8VS4LVd9rd4DKdGFfI60cs= 1875 | 1876 | which@^1.2.9: 1877 | version "1.3.1" 1878 | resolved "https://registry.npmjs.org/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 1879 | integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== 1880 | dependencies: 1881 | isexe "^2.0.0" 1882 | 1883 | which@^2.0.1: 1884 | version "2.0.2" 1885 | resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 1886 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 1887 | dependencies: 1888 | isexe "^2.0.0" 1889 | 1890 | word-wrap@~1.2.3: 1891 | version "1.2.3" 1892 | resolved "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 1893 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 1894 | 1895 | wrap-ansi@^6.2.0: 1896 | version "6.2.0" 1897 | resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" 1898 | integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== 1899 | dependencies: 1900 | ansi-styles "^4.0.0" 1901 | string-width "^4.1.0" 1902 | strip-ansi "^6.0.0" 1903 | 1904 | wrappy@1: 1905 | version "1.0.2" 1906 | resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1907 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 1908 | 1909 | write@1.0.3: 1910 | version "1.0.3" 1911 | resolved "https://registry.npmjs.org/write/-/write-1.0.3.tgz#0800e14523b923a387e415123c865616aae0f5c3" 1912 | integrity sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig== 1913 | dependencies: 1914 | mkdirp "^0.5.1" 1915 | 1916 | yaml@^1.7.2: 1917 | version "1.10.0" 1918 | resolved "https://registry.npmjs.org/yaml/-/yaml-1.10.0.tgz#3b593add944876077d4d683fee01081bd9fff31e" 1919 | integrity sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg== 1920 | --------------------------------------------------------------------------------