├── .babelrc ├── .circleci └── config.yml ├── .eslintrc ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── bundle-test ├── .gitignore ├── package.json ├── src │ └── index.js ├── webpack.config.js └── yarn.lock ├── index.d.ts ├── jest.init.js ├── package.json ├── renovate.json ├── src ├── config.js ├── graphql-tag-pluck.test.js ├── index.js ├── libs │ ├── babel.js │ ├── fs.js │ ├── path.js │ └── tmp.js ├── utils.js └── visitor.js ├── webpack_config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | "@babel/preset-env" 4 | ], 5 | "plugins": [ 6 | "@babel/plugin-syntax-dynamic-import", 7 | "@babel/plugin-syntax-import-meta", 8 | "@babel/plugin-proposal-class-properties", 9 | "@babel/plugin-proposal-json-strings", 10 | [ 11 | "@babel/plugin-proposal-decorators", 12 | { 13 | "legacy": true 14 | } 15 | ], 16 | "@babel/plugin-proposal-function-sent", 17 | "@babel/plugin-proposal-export-namespace-from", 18 | "@babel/plugin-proposal-numeric-separator", 19 | "@babel/plugin-proposal-throw-expressions" 20 | ], 21 | "env": { 22 | "test": { 23 | "plugins": [ 24 | "@babel/plugin-transform-modules-commonjs" 25 | ] 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- 1 | # Javascript Node CircleCI 2.0 configuration file 2 | # 3 | # Check https://circleci.com/docs/2.0/language-javascript/ for more details 4 | # 5 | version: 2 6 | jobs: 7 | build: 8 | docker: 9 | # specify the version you desire here 10 | - image: circleci/node 11 | 12 | # Specify service dependencies here if necessary 13 | # CircleCI maintains a library of pre-built images 14 | # documented at https://circleci.com/docs/2.0/circleci-images/ 15 | # - image: circleci/mongo:3.4.4 16 | 17 | steps: 18 | - checkout 19 | 20 | # Download and cache dependencies 21 | - restore_cache: 22 | keys: 23 | - v1-dependencies-{{ checksum "package.json" }} 24 | # fallback to using the latest cache if no exact match is found 25 | - v1-dependencies- 26 | 27 | - run: npm install 28 | 29 | - save_cache: 30 | paths: 31 | - node_modules 32 | key: v1-dependencies-{{ checksum "package.json" }} 33 | 34 | # run tests! 35 | - run: npm test 36 | 37 | 38 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "env": { "es6": true, "node": true }, 3 | "extends": "eslint:recommended", 4 | "parser": "babel-eslint", 5 | "rules": { 6 | "no-console": 0 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | node_modules 3 | npm-debug.log 4 | .idea 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | !build 2 | webpack_config.js 3 | bundle-test 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License 2 | 3 | Copyright (c) 2018 Eytan Manor 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # GraphQL Tag Pluck 2 | 3 | ## DEPRECATION NOTE: The code under this repo is no longer maintained here. The implementation and package publication has beed moved to [`graphql-toolkit` repository](https://github.com/ardatan/graphql-toolkit/tree/master/packages/graphql-tag-pluck) and now should be consumed as `@graphql-toolkit/graphql-tag-pluck` from NPM. 4 | -------------------------------------------------------------------------------- /bundle-test/.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /bundle-test/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bundle-test", 3 | "version": "1.0.0", 4 | "main": "dist/index.js", 5 | "license": "MIT", 6 | "scripts": { 7 | "pretest": "webpack", 8 | "test": "bundlesize" 9 | }, 10 | "bundlesize": [ 11 | { 12 | "path": "./dist/index.js", 13 | "maxSize": "2 MB", 14 | "compression": "none" 15 | } 16 | ], 17 | "devDependencies": { 18 | "bundlesize": "0.18.0", 19 | "webpack": "4.41.2", 20 | "webpack-cli": "3.3.10" 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /bundle-test/src/index.js: -------------------------------------------------------------------------------- 1 | import * as graphqlTagPluck from 'graphql-tag-pluck'; 2 | 3 | console.log(graphqlTagPluck); 4 | -------------------------------------------------------------------------------- /bundle-test/webpack.config.js: -------------------------------------------------------------------------------- 1 | const path = require('path'); 2 | 3 | module.exports = { 4 | target: 'node', 5 | mode: 'production', 6 | output: { 7 | filename: 'index.js', 8 | }, 9 | resolve: { 10 | alias: { 11 | 'graphql-tag-pluck': path.join(__dirname, '../src/index.js'), 12 | }, 13 | modules: ['node_modules', '../node_modules'], 14 | }, 15 | externals: { 16 | 'typescript': 'require("typescript")' 17 | } 18 | }; 19 | -------------------------------------------------------------------------------- /bundle-test/yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@webassemblyjs/ast@1.8.5": 6 | version "1.8.5" 7 | resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.8.5.tgz#51b1c5fe6576a34953bf4b253df9f0d490d9e359" 8 | integrity sha512-aJMfngIZ65+t71C3y2nBBg5FFG0Okt9m0XEgWZ7Ywgn1oMAT8cNwx00Uv1cQyHtidq0Xn94R4TAywO+LCQ+ZAQ== 9 | dependencies: 10 | "@webassemblyjs/helper-module-context" "1.8.5" 11 | "@webassemblyjs/helper-wasm-bytecode" "1.8.5" 12 | "@webassemblyjs/wast-parser" "1.8.5" 13 | 14 | "@webassemblyjs/floating-point-hex-parser@1.8.5": 15 | version "1.8.5" 16 | resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.8.5.tgz#1ba926a2923613edce496fd5b02e8ce8a5f49721" 17 | integrity sha512-9p+79WHru1oqBh9ewP9zW95E3XAo+90oth7S5Re3eQnECGq59ly1Ri5tsIipKGpiStHsUYmY3zMLqtk3gTcOtQ== 18 | 19 | "@webassemblyjs/helper-api-error@1.8.5": 20 | version "1.8.5" 21 | resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.8.5.tgz#c49dad22f645227c5edb610bdb9697f1aab721f7" 22 | integrity sha512-Za/tnzsvnqdaSPOUXHyKJ2XI7PDX64kWtURyGiJJZKVEdFOsdKUCPTNEVFZq3zJ2R0G5wc2PZ5gvdTRFgm81zA== 23 | 24 | "@webassemblyjs/helper-buffer@1.8.5": 25 | version "1.8.5" 26 | resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.8.5.tgz#fea93e429863dd5e4338555f42292385a653f204" 27 | integrity sha512-Ri2R8nOS0U6G49Q86goFIPNgjyl6+oE1abW1pS84BuhP1Qcr5JqMwRFT3Ah3ADDDYGEgGs1iyb1DGX+kAi/c/Q== 28 | 29 | "@webassemblyjs/helper-code-frame@1.8.5": 30 | version "1.8.5" 31 | resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.8.5.tgz#9a740ff48e3faa3022b1dff54423df9aa293c25e" 32 | integrity sha512-VQAadSubZIhNpH46IR3yWO4kZZjMxN1opDrzePLdVKAZ+DFjkGD/rf4v1jap744uPVU6yjL/smZbRIIJTOUnKQ== 33 | dependencies: 34 | "@webassemblyjs/wast-printer" "1.8.5" 35 | 36 | "@webassemblyjs/helper-fsm@1.8.5": 37 | version "1.8.5" 38 | resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.8.5.tgz#ba0b7d3b3f7e4733da6059c9332275d860702452" 39 | integrity sha512-kRuX/saORcg8se/ft6Q2UbRpZwP4y7YrWsLXPbbmtepKr22i8Z4O3V5QE9DbZK908dh5Xya4Un57SDIKwB9eow== 40 | 41 | "@webassemblyjs/helper-module-context@1.8.5": 42 | version "1.8.5" 43 | resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.8.5.tgz#def4b9927b0101dc8cbbd8d1edb5b7b9c82eb245" 44 | integrity sha512-/O1B236mN7UNEU4t9X7Pj38i4VoU8CcMHyy3l2cV/kIF4U5KoHXDVqcDuOs1ltkac90IM4vZdHc52t1x8Yfs3g== 45 | dependencies: 46 | "@webassemblyjs/ast" "1.8.5" 47 | mamacro "^0.0.3" 48 | 49 | "@webassemblyjs/helper-wasm-bytecode@1.8.5": 50 | version "1.8.5" 51 | resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.8.5.tgz#537a750eddf5c1e932f3744206551c91c1b93e61" 52 | integrity sha512-Cu4YMYG3Ddl72CbmpjU/wbP6SACcOPVbHN1dI4VJNJVgFwaKf1ppeFJrwydOG3NDHxVGuCfPlLZNyEdIYlQ6QQ== 53 | 54 | "@webassemblyjs/helper-wasm-section@1.8.5": 55 | version "1.8.5" 56 | resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.8.5.tgz#74ca6a6bcbe19e50a3b6b462847e69503e6bfcbf" 57 | integrity sha512-VV083zwR+VTrIWWtgIUpqfvVdK4ff38loRmrdDBgBT8ADXYsEZ5mPQ4Nde90N3UYatHdYoDIFb7oHzMncI02tA== 58 | dependencies: 59 | "@webassemblyjs/ast" "1.8.5" 60 | "@webassemblyjs/helper-buffer" "1.8.5" 61 | "@webassemblyjs/helper-wasm-bytecode" "1.8.5" 62 | "@webassemblyjs/wasm-gen" "1.8.5" 63 | 64 | "@webassemblyjs/ieee754@1.8.5": 65 | version "1.8.5" 66 | resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.8.5.tgz#712329dbef240f36bf57bd2f7b8fb9bf4154421e" 67 | integrity sha512-aaCvQYrvKbY/n6wKHb/ylAJr27GglahUO89CcGXMItrOBqRarUMxWLJgxm9PJNuKULwN5n1csT9bYoMeZOGF3g== 68 | dependencies: 69 | "@xtuc/ieee754" "^1.2.0" 70 | 71 | "@webassemblyjs/leb128@1.8.5": 72 | version "1.8.5" 73 | resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.8.5.tgz#044edeb34ea679f3e04cd4fd9824d5e35767ae10" 74 | integrity sha512-plYUuUwleLIziknvlP8VpTgO4kqNaH57Y3JnNa6DLpu/sGcP6hbVdfdX5aHAV716pQBKrfuU26BJK29qY37J7A== 75 | dependencies: 76 | "@xtuc/long" "4.2.2" 77 | 78 | "@webassemblyjs/utf8@1.8.5": 79 | version "1.8.5" 80 | resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.8.5.tgz#a8bf3b5d8ffe986c7c1e373ccbdc2a0915f0cedc" 81 | integrity sha512-U7zgftmQriw37tfD934UNInokz6yTmn29inT2cAetAsaU9YeVCveWEwhKL1Mg4yS7q//NGdzy79nlXh3bT8Kjw== 82 | 83 | "@webassemblyjs/wasm-edit@1.8.5": 84 | version "1.8.5" 85 | resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.8.5.tgz#962da12aa5acc1c131c81c4232991c82ce56e01a" 86 | integrity sha512-A41EMy8MWw5yvqj7MQzkDjU29K7UJq1VrX2vWLzfpRHt3ISftOXqrtojn7nlPsZ9Ijhp5NwuODuycSvfAO/26Q== 87 | dependencies: 88 | "@webassemblyjs/ast" "1.8.5" 89 | "@webassemblyjs/helper-buffer" "1.8.5" 90 | "@webassemblyjs/helper-wasm-bytecode" "1.8.5" 91 | "@webassemblyjs/helper-wasm-section" "1.8.5" 92 | "@webassemblyjs/wasm-gen" "1.8.5" 93 | "@webassemblyjs/wasm-opt" "1.8.5" 94 | "@webassemblyjs/wasm-parser" "1.8.5" 95 | "@webassemblyjs/wast-printer" "1.8.5" 96 | 97 | "@webassemblyjs/wasm-gen@1.8.5": 98 | version "1.8.5" 99 | resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.8.5.tgz#54840766c2c1002eb64ed1abe720aded714f98bc" 100 | integrity sha512-BCZBT0LURC0CXDzj5FXSc2FPTsxwp3nWcqXQdOZE4U7h7i8FqtFK5Egia6f9raQLpEKT1VL7zr4r3+QX6zArWg== 101 | dependencies: 102 | "@webassemblyjs/ast" "1.8.5" 103 | "@webassemblyjs/helper-wasm-bytecode" "1.8.5" 104 | "@webassemblyjs/ieee754" "1.8.5" 105 | "@webassemblyjs/leb128" "1.8.5" 106 | "@webassemblyjs/utf8" "1.8.5" 107 | 108 | "@webassemblyjs/wasm-opt@1.8.5": 109 | version "1.8.5" 110 | resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.8.5.tgz#b24d9f6ba50394af1349f510afa8ffcb8a63d264" 111 | integrity sha512-HKo2mO/Uh9A6ojzu7cjslGaHaUU14LdLbGEKqTR7PBKwT6LdPtLLh9fPY33rmr5wcOMrsWDbbdCHq4hQUdd37Q== 112 | dependencies: 113 | "@webassemblyjs/ast" "1.8.5" 114 | "@webassemblyjs/helper-buffer" "1.8.5" 115 | "@webassemblyjs/wasm-gen" "1.8.5" 116 | "@webassemblyjs/wasm-parser" "1.8.5" 117 | 118 | "@webassemblyjs/wasm-parser@1.8.5": 119 | version "1.8.5" 120 | resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.8.5.tgz#21576f0ec88b91427357b8536383668ef7c66b8d" 121 | integrity sha512-pi0SYE9T6tfcMkthwcgCpL0cM9nRYr6/6fjgDtL6q/ZqKHdMWvxitRi5JcZ7RI4SNJJYnYNaWy5UUrHQy998lw== 122 | dependencies: 123 | "@webassemblyjs/ast" "1.8.5" 124 | "@webassemblyjs/helper-api-error" "1.8.5" 125 | "@webassemblyjs/helper-wasm-bytecode" "1.8.5" 126 | "@webassemblyjs/ieee754" "1.8.5" 127 | "@webassemblyjs/leb128" "1.8.5" 128 | "@webassemblyjs/utf8" "1.8.5" 129 | 130 | "@webassemblyjs/wast-parser@1.8.5": 131 | version "1.8.5" 132 | resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.8.5.tgz#e10eecd542d0e7bd394f6827c49f3df6d4eefb8c" 133 | integrity sha512-daXC1FyKWHF1i11obK086QRlsMsY4+tIOKgBqI1lxAnkp9xe9YMcgOxm9kLe+ttjs5aWV2KKE1TWJCN57/Btsg== 134 | dependencies: 135 | "@webassemblyjs/ast" "1.8.5" 136 | "@webassemblyjs/floating-point-hex-parser" "1.8.5" 137 | "@webassemblyjs/helper-api-error" "1.8.5" 138 | "@webassemblyjs/helper-code-frame" "1.8.5" 139 | "@webassemblyjs/helper-fsm" "1.8.5" 140 | "@xtuc/long" "4.2.2" 141 | 142 | "@webassemblyjs/wast-printer@1.8.5": 143 | version "1.8.5" 144 | resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.8.5.tgz#114bbc481fd10ca0e23b3560fa812748b0bae5bc" 145 | integrity sha512-w0U0pD4EhlnvRyeJzBqaVSJAo9w/ce7/WPogeXLzGkO6hzhr4GnQIZ4W4uUt5b9ooAaXPtnXlj0gzsXEOUNYMg== 146 | dependencies: 147 | "@webassemblyjs/ast" "1.8.5" 148 | "@webassemblyjs/wast-parser" "1.8.5" 149 | "@xtuc/long" "4.2.2" 150 | 151 | "@xtuc/ieee754@^1.2.0": 152 | version "1.2.0" 153 | resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790" 154 | integrity sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA== 155 | 156 | "@xtuc/long@4.2.2": 157 | version "4.2.2" 158 | resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d" 159 | integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ== 160 | 161 | abbrev@1: 162 | version "1.1.1" 163 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 164 | integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== 165 | 166 | acorn@^6.2.1: 167 | version "6.2.1" 168 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.2.1.tgz#3ed8422d6dec09e6121cc7a843ca86a330a86b51" 169 | integrity sha512-JD0xT5FCRDNyjDda3Lrg/IxFscp9q4tiYtxE1/nOzlKCk7hIRuYjhq1kCNkbPjMRMZuFq20HNQn1I9k8Oj0E+Q== 170 | 171 | ajv-errors@^1.0.0: 172 | version "1.0.1" 173 | resolved "https://registry.yarnpkg.com/ajv-errors/-/ajv-errors-1.0.1.tgz#f35986aceb91afadec4102fbd85014950cefa64d" 174 | integrity sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ== 175 | 176 | ajv-keywords@^3.1.0: 177 | version "3.4.0" 178 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.4.0.tgz#4b831e7b531415a7cc518cd404e73f6193c6349d" 179 | integrity sha512-aUjdRFISbuFOl0EIZc+9e4FfZp0bDZgAdOOf30bJmw8VM9v84SHyVyxDfbWxpGYbdZD/9XoKxfHVNmxPkhwyGw== 180 | 181 | ajv-keywords@^3.4.1: 182 | version "3.4.1" 183 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.4.1.tgz#ef916e271c64ac12171fd8384eaae6b2345854da" 184 | integrity sha512-RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ== 185 | 186 | ajv@^6.1.0: 187 | version "6.10.0" 188 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.10.0.tgz#90d0d54439da587cd7e843bfb7045f50bd22bdf1" 189 | integrity sha512-nffhOpkymDECQyR0mnsUtoCE8RlX38G0rYP+wgLWFyZuUyuuojSSvi/+euOiQBIn63whYwYVIIH1TvE3tu4OEg== 190 | dependencies: 191 | fast-deep-equal "^2.0.1" 192 | fast-json-stable-stringify "^2.0.0" 193 | json-schema-traverse "^0.4.1" 194 | uri-js "^4.2.2" 195 | 196 | ajv@^6.10.2: 197 | version "6.10.2" 198 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.10.2.tgz#d3cea04d6b017b2894ad69040fec8b623eb4bd52" 199 | integrity sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw== 200 | dependencies: 201 | fast-deep-equal "^2.0.1" 202 | fast-json-stable-stringify "^2.0.0" 203 | json-schema-traverse "^0.4.1" 204 | uri-js "^4.2.2" 205 | 206 | ansi-regex@^2.0.0: 207 | version "2.1.1" 208 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 209 | integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= 210 | 211 | ansi-regex@^3.0.0: 212 | version "3.0.0" 213 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 214 | integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= 215 | 216 | ansi-regex@^4.1.0: 217 | version "4.1.0" 218 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" 219 | integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== 220 | 221 | ansi-styles@^3.1.0, ansi-styles@^3.2.0, ansi-styles@^3.2.1: 222 | version "3.2.1" 223 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 224 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 225 | dependencies: 226 | color-convert "^1.9.0" 227 | 228 | anymatch@^2.0.0: 229 | version "2.0.0" 230 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" 231 | integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw== 232 | dependencies: 233 | micromatch "^3.1.4" 234 | normalize-path "^2.1.1" 235 | 236 | aproba@^1.0.3, aproba@^1.1.1: 237 | version "1.2.0" 238 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 239 | integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== 240 | 241 | are-we-there-yet@~1.1.2: 242 | version "1.1.5" 243 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" 244 | integrity sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w== 245 | dependencies: 246 | delegates "^1.0.0" 247 | readable-stream "^2.0.6" 248 | 249 | argparse@^1.0.7: 250 | version "1.0.10" 251 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 252 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 253 | dependencies: 254 | sprintf-js "~1.0.2" 255 | 256 | arr-diff@^4.0.0: 257 | version "4.0.0" 258 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 259 | integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA= 260 | 261 | arr-flatten@^1.1.0: 262 | version "1.1.0" 263 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 264 | integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== 265 | 266 | arr-union@^3.1.0: 267 | version "3.1.0" 268 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 269 | integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= 270 | 271 | array-unique@^0.3.2: 272 | version "0.3.2" 273 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 274 | integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= 275 | 276 | asn1.js@^4.0.0: 277 | version "4.10.1" 278 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.10.1.tgz#b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0" 279 | integrity sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw== 280 | dependencies: 281 | bn.js "^4.0.0" 282 | inherits "^2.0.1" 283 | minimalistic-assert "^1.0.0" 284 | 285 | assert@^1.1.1: 286 | version "1.5.0" 287 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.5.0.tgz#55c109aaf6e0aefdb3dc4b71240c70bf574b18eb" 288 | integrity sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA== 289 | dependencies: 290 | object-assign "^4.1.1" 291 | util "0.10.3" 292 | 293 | assign-symbols@^1.0.0: 294 | version "1.0.0" 295 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 296 | integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= 297 | 298 | async-each@^1.0.1: 299 | version "1.0.3" 300 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf" 301 | integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ== 302 | 303 | atob@^2.1.1: 304 | version "2.1.2" 305 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" 306 | integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== 307 | 308 | axios@0.19.0, axios@^0.19.0: 309 | version "0.19.0" 310 | resolved "https://registry.yarnpkg.com/axios/-/axios-0.19.0.tgz#8e09bff3d9122e133f7b8101c8fbdd00ed3d2ab8" 311 | integrity sha512-1uvKqKQta3KBxIz14F2v06AEHZ/dIoeKfbTRkK1E5oqjDnuEerLmYTgJB5AiQZHJcljpg1TuRzdjDR06qNk0DQ== 312 | dependencies: 313 | follow-redirects "1.5.10" 314 | is-buffer "^2.0.2" 315 | 316 | balanced-match@^1.0.0: 317 | version "1.0.0" 318 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 319 | integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= 320 | 321 | base64-js@^1.0.2: 322 | version "1.3.0" 323 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.0.tgz#cab1e6118f051095e58b5281aea8c1cd22bfc0e3" 324 | integrity sha512-ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw== 325 | 326 | base@^0.11.1: 327 | version "0.11.2" 328 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 329 | integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== 330 | dependencies: 331 | cache-base "^1.0.1" 332 | class-utils "^0.3.5" 333 | component-emitter "^1.2.1" 334 | define-property "^1.0.0" 335 | isobject "^3.0.1" 336 | mixin-deep "^1.2.0" 337 | pascalcase "^0.1.1" 338 | 339 | big.js@^5.2.2: 340 | version "5.2.2" 341 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" 342 | integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== 343 | 344 | binary-extensions@^1.0.0: 345 | version "1.13.1" 346 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65" 347 | integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw== 348 | 349 | bl@^1.0.0: 350 | version "1.2.2" 351 | resolved "https://registry.yarnpkg.com/bl/-/bl-1.2.2.tgz#a160911717103c07410cef63ef51b397c025af9c" 352 | integrity sha512-e8tQYnZodmebYDWGH7KMRvtzKXaJHx3BbilrgZCfvyLUYdKpK1t5PSPmpkny/SgiTSCnjfLW7v5rlONXVFkQEA== 353 | dependencies: 354 | readable-stream "^2.3.5" 355 | safe-buffer "^5.1.1" 356 | 357 | bluebird@^3.5.5: 358 | version "3.5.5" 359 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.5.tgz#a8d0afd73251effbbd5fe384a77d73003c17a71f" 360 | integrity sha512-5am6HnnfN+urzt4yfg7IgTbotDjIT/u8AJpEt0sIU9FtXfVeezXAPKswrG+xKUCOYAINpSdgZVDU6QFh+cuH3w== 361 | 362 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: 363 | version "4.11.8" 364 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" 365 | integrity sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA== 366 | 367 | brace-expansion@^1.1.7: 368 | version "1.1.11" 369 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 370 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 371 | dependencies: 372 | balanced-match "^1.0.0" 373 | concat-map "0.0.1" 374 | 375 | braces@^2.3.1, braces@^2.3.2: 376 | version "2.3.2" 377 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" 378 | integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== 379 | dependencies: 380 | arr-flatten "^1.1.0" 381 | array-unique "^0.3.2" 382 | extend-shallow "^2.0.1" 383 | fill-range "^4.0.0" 384 | isobject "^3.0.1" 385 | repeat-element "^1.1.2" 386 | snapdragon "^0.8.1" 387 | snapdragon-node "^2.0.1" 388 | split-string "^3.0.2" 389 | to-regex "^3.0.1" 390 | 391 | brorand@^1.0.1: 392 | version "1.1.0" 393 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 394 | integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8= 395 | 396 | brotli-size@0.1.0: 397 | version "0.1.0" 398 | resolved "https://registry.yarnpkg.com/brotli-size/-/brotli-size-0.1.0.tgz#a2c518096c7c1a75e9e66908a42cd9dc77d2b69f" 399 | integrity sha512-5ny7BNvpe2TSmdafF1T9dnFYp3AIrJ8qJt29K0DQJzORlK38LBim/CmlY26JtreV6SWmXza7Oa+9m61SzvxR0Q== 400 | dependencies: 401 | duplexer "^0.1.1" 402 | iltorb "^2.4.3" 403 | 404 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: 405 | version "1.2.0" 406 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48" 407 | integrity sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA== 408 | dependencies: 409 | buffer-xor "^1.0.3" 410 | cipher-base "^1.0.0" 411 | create-hash "^1.1.0" 412 | evp_bytestokey "^1.0.3" 413 | inherits "^2.0.1" 414 | safe-buffer "^5.0.1" 415 | 416 | browserify-cipher@^1.0.0: 417 | version "1.0.1" 418 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0" 419 | integrity sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w== 420 | dependencies: 421 | browserify-aes "^1.0.4" 422 | browserify-des "^1.0.0" 423 | evp_bytestokey "^1.0.0" 424 | 425 | browserify-des@^1.0.0: 426 | version "1.0.2" 427 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.2.tgz#3af4f1f59839403572f1c66204375f7a7f703e9c" 428 | integrity sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A== 429 | dependencies: 430 | cipher-base "^1.0.1" 431 | des.js "^1.0.0" 432 | inherits "^2.0.1" 433 | safe-buffer "^5.1.2" 434 | 435 | browserify-rsa@^4.0.0: 436 | version "4.0.1" 437 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" 438 | integrity sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ= 439 | dependencies: 440 | bn.js "^4.1.0" 441 | randombytes "^2.0.1" 442 | 443 | browserify-sign@^4.0.0: 444 | version "4.0.4" 445 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" 446 | integrity sha1-qk62jl17ZYuqa/alfmMMvXqT0pg= 447 | dependencies: 448 | bn.js "^4.1.1" 449 | browserify-rsa "^4.0.0" 450 | create-hash "^1.1.0" 451 | create-hmac "^1.1.2" 452 | elliptic "^6.0.0" 453 | inherits "^2.0.1" 454 | parse-asn1 "^5.0.0" 455 | 456 | browserify-zlib@^0.2.0: 457 | version "0.2.0" 458 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" 459 | integrity sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA== 460 | dependencies: 461 | pako "~1.0.5" 462 | 463 | buffer-alloc-unsafe@^1.1.0: 464 | version "1.1.0" 465 | resolved "https://registry.yarnpkg.com/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz#bd7dc26ae2972d0eda253be061dba992349c19f0" 466 | integrity sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg== 467 | 468 | buffer-alloc@^1.2.0: 469 | version "1.2.0" 470 | resolved "https://registry.yarnpkg.com/buffer-alloc/-/buffer-alloc-1.2.0.tgz#890dd90d923a873e08e10e5fd51a57e5b7cce0ec" 471 | integrity sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow== 472 | dependencies: 473 | buffer-alloc-unsafe "^1.1.0" 474 | buffer-fill "^1.0.0" 475 | 476 | buffer-fill@^1.0.0: 477 | version "1.0.0" 478 | resolved "https://registry.yarnpkg.com/buffer-fill/-/buffer-fill-1.0.0.tgz#f8f78b76789888ef39f205cd637f68e702122b2c" 479 | integrity sha1-+PeLdniYiO858gXNY39o5wISKyw= 480 | 481 | buffer-from@^1.0.0: 482 | version "1.1.1" 483 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 484 | integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== 485 | 486 | buffer-xor@^1.0.3: 487 | version "1.0.3" 488 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 489 | integrity sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk= 490 | 491 | buffer@^4.3.0: 492 | version "4.9.1" 493 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" 494 | integrity sha1-bRu2AbB6TvztlwlBMgkwJ8lbwpg= 495 | dependencies: 496 | base64-js "^1.0.2" 497 | ieee754 "^1.1.4" 498 | isarray "^1.0.0" 499 | 500 | builtin-status-codes@^3.0.0: 501 | version "3.0.0" 502 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" 503 | integrity sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug= 504 | 505 | bundlesize@0.18.0: 506 | version "0.18.0" 507 | resolved "https://registry.yarnpkg.com/bundlesize/-/bundlesize-0.18.0.tgz#3625520f984f503df8c3d57dd9be2b9c0df40092" 508 | integrity sha512-GZURr25umfYxZYZUyOlOtJRbYjAn0VfbjbnS0NBcOiF8VcjmhoEhmx8Gw4va8HeQb8j7Ra0ZltY/IeHgSHFXFw== 509 | dependencies: 510 | axios "^0.19.0" 511 | brotli-size "0.1.0" 512 | bytes "^3.1.0" 513 | ci-env "^1.4.0" 514 | commander "^2.20.0" 515 | cosmiconfig "^5.2.1" 516 | github-build "^1.2.0" 517 | glob "^7.1.4" 518 | gzip-size "^4.0.0" 519 | prettycli "^1.4.3" 520 | 521 | bytes@^3.1.0: 522 | version "3.1.0" 523 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" 524 | integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg== 525 | 526 | cacache@^12.0.2: 527 | version "12.0.2" 528 | resolved "https://registry.yarnpkg.com/cacache/-/cacache-12.0.2.tgz#8db03205e36089a3df6954c66ce92541441ac46c" 529 | integrity sha512-ifKgxH2CKhJEg6tNdAwziu6Q33EvuG26tYcda6PT3WKisZcYDXsnEdnRv67Po3yCzFfaSoMjGZzJyD2c3DT1dg== 530 | dependencies: 531 | bluebird "^3.5.5" 532 | chownr "^1.1.1" 533 | figgy-pudding "^3.5.1" 534 | glob "^7.1.4" 535 | graceful-fs "^4.1.15" 536 | infer-owner "^1.0.3" 537 | lru-cache "^5.1.1" 538 | mississippi "^3.0.0" 539 | mkdirp "^0.5.1" 540 | move-concurrently "^1.0.1" 541 | promise-inflight "^1.0.1" 542 | rimraf "^2.6.3" 543 | ssri "^6.0.1" 544 | unique-filename "^1.1.1" 545 | y18n "^4.0.0" 546 | 547 | cache-base@^1.0.1: 548 | version "1.0.1" 549 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 550 | integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ== 551 | dependencies: 552 | collection-visit "^1.0.0" 553 | component-emitter "^1.2.1" 554 | get-value "^2.0.6" 555 | has-value "^1.0.0" 556 | isobject "^3.0.1" 557 | set-value "^2.0.0" 558 | to-object-path "^0.3.0" 559 | union-value "^1.0.0" 560 | unset-value "^1.0.0" 561 | 562 | caller-callsite@^2.0.0: 563 | version "2.0.0" 564 | resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134" 565 | integrity sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ= 566 | dependencies: 567 | callsites "^2.0.0" 568 | 569 | caller-path@^2.0.0: 570 | version "2.0.0" 571 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4" 572 | integrity sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ= 573 | dependencies: 574 | caller-callsite "^2.0.0" 575 | 576 | callsites@^2.0.0: 577 | version "2.0.0" 578 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 579 | integrity sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA= 580 | 581 | camelcase@^5.0.0: 582 | version "5.3.1" 583 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" 584 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== 585 | 586 | chalk@2.1.0: 587 | version "2.1.0" 588 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.1.0.tgz#ac5becf14fa21b99c6c92ca7a7d7cfd5b17e743e" 589 | integrity sha512-LUHGS/dge4ujbXMJrnihYMcL4AoOweGnw9Tp3kQuqy1Kx5c1qKjqvMJZ6nVJPMWJtKCTN72ZogH3oeSO9g9rXQ== 590 | dependencies: 591 | ansi-styles "^3.1.0" 592 | escape-string-regexp "^1.0.5" 593 | supports-color "^4.0.0" 594 | 595 | chalk@2.4.2: 596 | version "2.4.2" 597 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 598 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 599 | dependencies: 600 | ansi-styles "^3.2.1" 601 | escape-string-regexp "^1.0.5" 602 | supports-color "^5.3.0" 603 | 604 | chokidar@^2.0.2: 605 | version "2.1.6" 606 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.6.tgz#b6cad653a929e244ce8a834244164d241fa954c5" 607 | integrity sha512-V2jUo67OKkc6ySiRpJrjlpJKl9kDuG+Xb8VgsGzb+aEouhgS1D0weyPU4lEzdAcsCAvrih2J2BqyXqHWvVLw5g== 608 | dependencies: 609 | anymatch "^2.0.0" 610 | async-each "^1.0.1" 611 | braces "^2.3.2" 612 | glob-parent "^3.1.0" 613 | inherits "^2.0.3" 614 | is-binary-path "^1.0.0" 615 | is-glob "^4.0.0" 616 | normalize-path "^3.0.0" 617 | path-is-absolute "^1.0.0" 618 | readdirp "^2.2.1" 619 | upath "^1.1.1" 620 | optionalDependencies: 621 | fsevents "^1.2.7" 622 | 623 | chownr@^1.0.1, chownr@^1.1.1: 624 | version "1.1.1" 625 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.1.tgz#54726b8b8fff4df053c42187e801fb4412df1494" 626 | integrity sha512-j38EvO5+LHX84jlo6h4UzmOwi0UgW61WRyPtJz4qaadK5eY3BTS5TY/S1Stc3Uk2lIM6TPevAlULiEJwie860g== 627 | 628 | chrome-trace-event@^1.0.2: 629 | version "1.0.2" 630 | resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz#234090ee97c7d4ad1a2c4beae27505deffc608a4" 631 | integrity sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ== 632 | dependencies: 633 | tslib "^1.9.0" 634 | 635 | ci-env@^1.4.0: 636 | version "1.9.0" 637 | resolved "https://registry.yarnpkg.com/ci-env/-/ci-env-1.9.0.tgz#e86c4cf6be9d119f67f1d0d9aae497ccbece6e89" 638 | integrity sha512-GKMUVeOunoGplUXmIr3ss2OpYvp7JUwTTZ2wiVV8JtUy6U8r7MaDWuV1vjJdf7yxqs9AbELHXQGW4b/L60COdA== 639 | 640 | cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: 641 | version "1.0.4" 642 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" 643 | integrity sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q== 644 | dependencies: 645 | inherits "^2.0.1" 646 | safe-buffer "^5.0.1" 647 | 648 | class-utils@^0.3.5: 649 | version "0.3.6" 650 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 651 | integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg== 652 | dependencies: 653 | arr-union "^3.1.0" 654 | define-property "^0.2.5" 655 | isobject "^3.0.0" 656 | static-extend "^0.1.1" 657 | 658 | cliui@^5.0.0: 659 | version "5.0.0" 660 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5" 661 | integrity sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA== 662 | dependencies: 663 | string-width "^3.1.0" 664 | strip-ansi "^5.2.0" 665 | wrap-ansi "^5.1.0" 666 | 667 | code-point-at@^1.0.0: 668 | version "1.1.0" 669 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 670 | integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= 671 | 672 | collection-visit@^1.0.0: 673 | version "1.0.0" 674 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 675 | integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA= 676 | dependencies: 677 | map-visit "^1.0.0" 678 | object-visit "^1.0.0" 679 | 680 | color-convert@^1.9.0: 681 | version "1.9.3" 682 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 683 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 684 | dependencies: 685 | color-name "1.1.3" 686 | 687 | color-name@1.1.3: 688 | version "1.1.3" 689 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 690 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 691 | 692 | commander@^2.20.0: 693 | version "2.20.0" 694 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.0.tgz#d58bb2b5c1ee8f87b0d340027e9e94e222c5a422" 695 | integrity sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ== 696 | 697 | commondir@^1.0.1: 698 | version "1.0.1" 699 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 700 | integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs= 701 | 702 | component-emitter@^1.2.1: 703 | version "1.3.0" 704 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" 705 | integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== 706 | 707 | concat-map@0.0.1: 708 | version "0.0.1" 709 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 710 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 711 | 712 | concat-stream@^1.5.0: 713 | version "1.6.2" 714 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" 715 | integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== 716 | dependencies: 717 | buffer-from "^1.0.0" 718 | inherits "^2.0.3" 719 | readable-stream "^2.2.2" 720 | typedarray "^0.0.6" 721 | 722 | console-browserify@^1.1.0: 723 | version "1.1.0" 724 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" 725 | integrity sha1-8CQcRXMKn8YyOyBtvzjtx0HQuxA= 726 | dependencies: 727 | date-now "^0.1.4" 728 | 729 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 730 | version "1.1.0" 731 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 732 | integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= 733 | 734 | constants-browserify@^1.0.0: 735 | version "1.0.0" 736 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" 737 | integrity sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U= 738 | 739 | copy-concurrently@^1.0.0: 740 | version "1.0.5" 741 | resolved "https://registry.yarnpkg.com/copy-concurrently/-/copy-concurrently-1.0.5.tgz#92297398cae34937fcafd6ec8139c18051f0b5e0" 742 | integrity sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A== 743 | dependencies: 744 | aproba "^1.1.1" 745 | fs-write-stream-atomic "^1.0.8" 746 | iferr "^0.1.5" 747 | mkdirp "^0.5.1" 748 | rimraf "^2.5.4" 749 | run-queue "^1.0.0" 750 | 751 | copy-descriptor@^0.1.0: 752 | version "0.1.1" 753 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 754 | integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= 755 | 756 | core-util-is@~1.0.0: 757 | version "1.0.2" 758 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 759 | integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= 760 | 761 | cosmiconfig@^5.2.1: 762 | version "5.2.1" 763 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a" 764 | integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA== 765 | dependencies: 766 | import-fresh "^2.0.0" 767 | is-directory "^0.3.1" 768 | js-yaml "^3.13.1" 769 | parse-json "^4.0.0" 770 | 771 | create-ecdh@^4.0.0: 772 | version "4.0.3" 773 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.3.tgz#c9111b6f33045c4697f144787f9254cdc77c45ff" 774 | integrity sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw== 775 | dependencies: 776 | bn.js "^4.1.0" 777 | elliptic "^6.0.0" 778 | 779 | create-hash@^1.1.0, create-hash@^1.1.2: 780 | version "1.2.0" 781 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" 782 | integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg== 783 | dependencies: 784 | cipher-base "^1.0.1" 785 | inherits "^2.0.1" 786 | md5.js "^1.3.4" 787 | ripemd160 "^2.0.1" 788 | sha.js "^2.4.0" 789 | 790 | create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: 791 | version "1.1.7" 792 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff" 793 | integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg== 794 | dependencies: 795 | cipher-base "^1.0.3" 796 | create-hash "^1.1.0" 797 | inherits "^2.0.1" 798 | ripemd160 "^2.0.0" 799 | safe-buffer "^5.0.1" 800 | sha.js "^2.4.8" 801 | 802 | cross-spawn@6.0.5, cross-spawn@^6.0.0: 803 | version "6.0.5" 804 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" 805 | integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== 806 | dependencies: 807 | nice-try "^1.0.4" 808 | path-key "^2.0.1" 809 | semver "^5.5.0" 810 | shebang-command "^1.2.0" 811 | which "^1.2.9" 812 | 813 | crypto-browserify@^3.11.0: 814 | version "3.12.0" 815 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" 816 | integrity sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg== 817 | dependencies: 818 | browserify-cipher "^1.0.0" 819 | browserify-sign "^4.0.0" 820 | create-ecdh "^4.0.0" 821 | create-hash "^1.1.0" 822 | create-hmac "^1.1.0" 823 | diffie-hellman "^5.0.0" 824 | inherits "^2.0.1" 825 | pbkdf2 "^3.0.3" 826 | public-encrypt "^4.0.0" 827 | randombytes "^2.0.0" 828 | randomfill "^1.0.3" 829 | 830 | cyclist@~0.2.2: 831 | version "0.2.2" 832 | resolved "https://registry.yarnpkg.com/cyclist/-/cyclist-0.2.2.tgz#1b33792e11e914a2fd6d6ed6447464444e5fa640" 833 | integrity sha1-GzN5LhHpFKL9bW7WRHRkRE5fpkA= 834 | 835 | date-now@^0.1.4: 836 | version "0.1.4" 837 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 838 | integrity sha1-6vQ5/U1ISK105cx9vvIAZyueNFs= 839 | 840 | debug@=3.1.0: 841 | version "3.1.0" 842 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 843 | integrity sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g== 844 | dependencies: 845 | ms "2.0.0" 846 | 847 | debug@^2.2.0, debug@^2.3.3: 848 | version "2.6.9" 849 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 850 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 851 | dependencies: 852 | ms "2.0.0" 853 | 854 | debug@^3.2.6: 855 | version "3.2.6" 856 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" 857 | integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ== 858 | dependencies: 859 | ms "^2.1.1" 860 | 861 | decamelize@^1.2.0: 862 | version "1.2.0" 863 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 864 | integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= 865 | 866 | decode-uri-component@^0.2.0: 867 | version "0.2.0" 868 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 869 | integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= 870 | 871 | decompress-response@^3.3.0: 872 | version "3.3.0" 873 | resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3" 874 | integrity sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M= 875 | dependencies: 876 | mimic-response "^1.0.0" 877 | 878 | deep-extend@^0.6.0: 879 | version "0.6.0" 880 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 881 | integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== 882 | 883 | define-property@^0.2.5: 884 | version "0.2.5" 885 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 886 | integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY= 887 | dependencies: 888 | is-descriptor "^0.1.0" 889 | 890 | define-property@^1.0.0: 891 | version "1.0.0" 892 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 893 | integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY= 894 | dependencies: 895 | is-descriptor "^1.0.0" 896 | 897 | define-property@^2.0.2: 898 | version "2.0.2" 899 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 900 | integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ== 901 | dependencies: 902 | is-descriptor "^1.0.2" 903 | isobject "^3.0.1" 904 | 905 | delegates@^1.0.0: 906 | version "1.0.0" 907 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 908 | integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= 909 | 910 | des.js@^1.0.0: 911 | version "1.0.0" 912 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" 913 | integrity sha1-wHTS4qpqipoH29YfmhXCzYPsjsw= 914 | dependencies: 915 | inherits "^2.0.1" 916 | minimalistic-assert "^1.0.0" 917 | 918 | detect-file@^1.0.0: 919 | version "1.0.0" 920 | resolved "https://registry.yarnpkg.com/detect-file/-/detect-file-1.0.0.tgz#f0d66d03672a825cb1b73bdb3fe62310c8e552b7" 921 | integrity sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc= 922 | 923 | detect-libc@^1.0.2, detect-libc@^1.0.3: 924 | version "1.0.3" 925 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 926 | integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups= 927 | 928 | diffie-hellman@^5.0.0: 929 | version "5.0.3" 930 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875" 931 | integrity sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg== 932 | dependencies: 933 | bn.js "^4.1.0" 934 | miller-rabin "^4.0.0" 935 | randombytes "^2.0.0" 936 | 937 | domain-browser@^1.1.1: 938 | version "1.2.0" 939 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" 940 | integrity sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA== 941 | 942 | duplexer@^0.1.1: 943 | version "0.1.1" 944 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" 945 | integrity sha1-rOb/gIwc5mtX0ev5eXessCM0z8E= 946 | 947 | duplexify@^3.4.2, duplexify@^3.6.0: 948 | version "3.7.1" 949 | resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.7.1.tgz#2a4df5317f6ccfd91f86d6fd25d8d8a103b88309" 950 | integrity sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g== 951 | dependencies: 952 | end-of-stream "^1.0.0" 953 | inherits "^2.0.1" 954 | readable-stream "^2.0.0" 955 | stream-shift "^1.0.0" 956 | 957 | elliptic@^6.0.0: 958 | version "6.5.0" 959 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.0.tgz#2b8ed4c891b7de3200e14412a5b8248c7af505ca" 960 | integrity sha512-eFOJTMyCYb7xtE/caJ6JJu+bhi67WCYNbkGSknu20pmM8Ke/bqOfdnZWxyoGN26JgfxTbXrsCkEw4KheCT/KGg== 961 | dependencies: 962 | bn.js "^4.4.0" 963 | brorand "^1.0.1" 964 | hash.js "^1.0.0" 965 | hmac-drbg "^1.0.0" 966 | inherits "^2.0.1" 967 | minimalistic-assert "^1.0.0" 968 | minimalistic-crypto-utils "^1.0.0" 969 | 970 | emoji-regex@^7.0.1: 971 | version "7.0.3" 972 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" 973 | integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== 974 | 975 | emojis-list@^2.0.0: 976 | version "2.1.0" 977 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" 978 | integrity sha1-TapNnbAPmBmIDHn6RXrlsJof04k= 979 | 980 | end-of-stream@^1.0.0, end-of-stream@^1.1.0: 981 | version "1.4.1" 982 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.1.tgz#ed29634d19baba463b6ce6b80a37213eab71ec43" 983 | integrity sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q== 984 | dependencies: 985 | once "^1.4.0" 986 | 987 | enhanced-resolve@4.1.0, enhanced-resolve@^4.1.0: 988 | version "4.1.0" 989 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.1.0.tgz#41c7e0bfdfe74ac1ffe1e57ad6a5c6c9f3742a7f" 990 | integrity sha512-F/7vkyTtyc/llOIn8oWclcB25KdRaiPBpZYDgJHgh/UHtpgT2p2eldQgtQnLtUvfMKPKxbRaQM/hHkvLHt1Vng== 991 | dependencies: 992 | graceful-fs "^4.1.2" 993 | memory-fs "^0.4.0" 994 | tapable "^1.0.0" 995 | 996 | errno@^0.1.3, errno@~0.1.7: 997 | version "0.1.7" 998 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.7.tgz#4684d71779ad39af177e3f007996f7c67c852618" 999 | integrity sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg== 1000 | dependencies: 1001 | prr "~1.0.1" 1002 | 1003 | error-ex@^1.3.1: 1004 | version "1.3.2" 1005 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 1006 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 1007 | dependencies: 1008 | is-arrayish "^0.2.1" 1009 | 1010 | escape-string-regexp@^1.0.5: 1011 | version "1.0.5" 1012 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1013 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 1014 | 1015 | eslint-scope@^4.0.3: 1016 | version "4.0.3" 1017 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.3.tgz#ca03833310f6889a3264781aa82e63eb9cfe7848" 1018 | integrity sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg== 1019 | dependencies: 1020 | esrecurse "^4.1.0" 1021 | estraverse "^4.1.1" 1022 | 1023 | esprima@^4.0.0: 1024 | version "4.0.1" 1025 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 1026 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 1027 | 1028 | esrecurse@^4.1.0: 1029 | version "4.2.1" 1030 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" 1031 | integrity sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ== 1032 | dependencies: 1033 | estraverse "^4.1.0" 1034 | 1035 | estraverse@^4.1.0, estraverse@^4.1.1: 1036 | version "4.2.0" 1037 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1038 | integrity sha1-De4/7TH81GlhjOc0IJn8GvoL2xM= 1039 | 1040 | events@^3.0.0: 1041 | version "3.0.0" 1042 | resolved "https://registry.yarnpkg.com/events/-/events-3.0.0.tgz#9a0a0dfaf62893d92b875b8f2698ca4114973e88" 1043 | integrity sha512-Dc381HFWJzEOhQ+d8pkNon++bk9h6cdAoAj4iE6Q4y6xgTzySWXlKn05/TVNpjnfRqi/X0EpJEJohPjNI3zpVA== 1044 | 1045 | evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: 1046 | version "1.0.3" 1047 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" 1048 | integrity sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA== 1049 | dependencies: 1050 | md5.js "^1.3.4" 1051 | safe-buffer "^5.1.1" 1052 | 1053 | execa@^1.0.0: 1054 | version "1.0.0" 1055 | resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" 1056 | integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== 1057 | dependencies: 1058 | cross-spawn "^6.0.0" 1059 | get-stream "^4.0.0" 1060 | is-stream "^1.1.0" 1061 | npm-run-path "^2.0.0" 1062 | p-finally "^1.0.0" 1063 | signal-exit "^3.0.0" 1064 | strip-eof "^1.0.0" 1065 | 1066 | expand-brackets@^2.1.4: 1067 | version "2.1.4" 1068 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 1069 | integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI= 1070 | dependencies: 1071 | debug "^2.3.3" 1072 | define-property "^0.2.5" 1073 | extend-shallow "^2.0.1" 1074 | posix-character-classes "^0.1.0" 1075 | regex-not "^1.0.0" 1076 | snapdragon "^0.8.1" 1077 | to-regex "^3.0.1" 1078 | 1079 | expand-template@^2.0.3: 1080 | version "2.0.3" 1081 | resolved "https://registry.yarnpkg.com/expand-template/-/expand-template-2.0.3.tgz#6e14b3fcee0f3a6340ecb57d2e8918692052a47c" 1082 | integrity sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg== 1083 | 1084 | expand-tilde@^2.0.0, expand-tilde@^2.0.2: 1085 | version "2.0.2" 1086 | resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-2.0.2.tgz#97e801aa052df02454de46b02bf621642cdc8502" 1087 | integrity sha1-l+gBqgUt8CRU3kawK/YhZCzchQI= 1088 | dependencies: 1089 | homedir-polyfill "^1.0.1" 1090 | 1091 | extend-shallow@^2.0.1: 1092 | version "2.0.1" 1093 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 1094 | integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8= 1095 | dependencies: 1096 | is-extendable "^0.1.0" 1097 | 1098 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 1099 | version "3.0.2" 1100 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 1101 | integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg= 1102 | dependencies: 1103 | assign-symbols "^1.0.0" 1104 | is-extendable "^1.0.1" 1105 | 1106 | extglob@^2.0.4: 1107 | version "2.0.4" 1108 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 1109 | integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== 1110 | dependencies: 1111 | array-unique "^0.3.2" 1112 | define-property "^1.0.0" 1113 | expand-brackets "^2.1.4" 1114 | extend-shallow "^2.0.1" 1115 | fragment-cache "^0.2.1" 1116 | regex-not "^1.0.0" 1117 | snapdragon "^0.8.1" 1118 | to-regex "^3.0.1" 1119 | 1120 | fast-deep-equal@^2.0.1: 1121 | version "2.0.1" 1122 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" 1123 | integrity sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk= 1124 | 1125 | fast-json-stable-stringify@^2.0.0: 1126 | version "2.0.0" 1127 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1128 | integrity sha1-1RQsDK7msRifh9OnYREGT4bIu/I= 1129 | 1130 | figgy-pudding@^3.5.1: 1131 | version "3.5.1" 1132 | resolved "https://registry.yarnpkg.com/figgy-pudding/-/figgy-pudding-3.5.1.tgz#862470112901c727a0e495a80744bd5baa1d6790" 1133 | integrity sha512-vNKxJHTEKNThjfrdJwHc7brvM6eVevuO5nTj6ez8ZQ1qbXTvGthucRF7S4vf2cr71QVnT70V34v0S1DyQsti0w== 1134 | 1135 | fill-range@^4.0.0: 1136 | version "4.0.0" 1137 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 1138 | integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc= 1139 | dependencies: 1140 | extend-shallow "^2.0.1" 1141 | is-number "^3.0.0" 1142 | repeat-string "^1.6.1" 1143 | to-regex-range "^2.1.0" 1144 | 1145 | find-cache-dir@^2.1.0: 1146 | version "2.1.0" 1147 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7" 1148 | integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ== 1149 | dependencies: 1150 | commondir "^1.0.1" 1151 | make-dir "^2.0.0" 1152 | pkg-dir "^3.0.0" 1153 | 1154 | find-up@^3.0.0: 1155 | version "3.0.0" 1156 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" 1157 | integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== 1158 | dependencies: 1159 | locate-path "^3.0.0" 1160 | 1161 | findup-sync@3.0.0: 1162 | version "3.0.0" 1163 | resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-3.0.0.tgz#17b108f9ee512dfb7a5c7f3c8b27ea9e1a9c08d1" 1164 | integrity sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg== 1165 | dependencies: 1166 | detect-file "^1.0.0" 1167 | is-glob "^4.0.0" 1168 | micromatch "^3.0.4" 1169 | resolve-dir "^1.0.1" 1170 | 1171 | flush-write-stream@^1.0.0: 1172 | version "1.1.1" 1173 | resolved "https://registry.yarnpkg.com/flush-write-stream/-/flush-write-stream-1.1.1.tgz#8dd7d873a1babc207d94ead0c2e0e44276ebf2e8" 1174 | integrity sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w== 1175 | dependencies: 1176 | inherits "^2.0.3" 1177 | readable-stream "^2.3.6" 1178 | 1179 | follow-redirects@1.5.10: 1180 | version "1.5.10" 1181 | resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.5.10.tgz#7b7a9f9aea2fdff36786a94ff643ed07f4ff5e2a" 1182 | integrity sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ== 1183 | dependencies: 1184 | debug "=3.1.0" 1185 | 1186 | for-in@^1.0.2: 1187 | version "1.0.2" 1188 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1189 | integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= 1190 | 1191 | fragment-cache@^0.2.1: 1192 | version "0.2.1" 1193 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 1194 | integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk= 1195 | dependencies: 1196 | map-cache "^0.2.2" 1197 | 1198 | from2@^2.1.0: 1199 | version "2.3.0" 1200 | resolved "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af" 1201 | integrity sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8= 1202 | dependencies: 1203 | inherits "^2.0.1" 1204 | readable-stream "^2.0.0" 1205 | 1206 | fs-constants@^1.0.0: 1207 | version "1.0.0" 1208 | resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" 1209 | integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== 1210 | 1211 | fs-minipass@^1.2.5: 1212 | version "1.2.6" 1213 | resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.6.tgz#2c5cc30ded81282bfe8a0d7c7c1853ddeb102c07" 1214 | integrity sha512-crhvyXcMejjv3Z5d2Fa9sf5xLYVCF5O1c71QxbVnbLsmYMBEvDAftewesN/HhY03YRoA7zOMxjNGrF5svGaaeQ== 1215 | dependencies: 1216 | minipass "^2.2.1" 1217 | 1218 | fs-write-stream-atomic@^1.0.8: 1219 | version "1.0.10" 1220 | resolved "https://registry.yarnpkg.com/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz#b47df53493ef911df75731e70a9ded0189db40c9" 1221 | integrity sha1-tH31NJPvkR33VzHnCp3tAYnbQMk= 1222 | dependencies: 1223 | graceful-fs "^4.1.2" 1224 | iferr "^0.1.5" 1225 | imurmurhash "^0.1.4" 1226 | readable-stream "1 || 2" 1227 | 1228 | fs.realpath@^1.0.0: 1229 | version "1.0.0" 1230 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1231 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 1232 | 1233 | fsevents@^1.2.7: 1234 | version "1.2.9" 1235 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.9.tgz#3f5ed66583ccd6f400b5a00db6f7e861363e388f" 1236 | integrity sha512-oeyj2H3EjjonWcFjD5NvZNE9Rqe4UW+nQBU2HNeKw0koVLEFIhtyETyAakeAM3de7Z/SW5kcA+fZUait9EApnw== 1237 | dependencies: 1238 | nan "^2.12.1" 1239 | node-pre-gyp "^0.12.0" 1240 | 1241 | gauge@~2.7.3: 1242 | version "2.7.4" 1243 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1244 | integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c= 1245 | dependencies: 1246 | aproba "^1.0.3" 1247 | console-control-strings "^1.0.0" 1248 | has-unicode "^2.0.0" 1249 | object-assign "^4.1.0" 1250 | signal-exit "^3.0.0" 1251 | string-width "^1.0.1" 1252 | strip-ansi "^3.0.1" 1253 | wide-align "^1.1.0" 1254 | 1255 | get-caller-file@^2.0.1: 1256 | version "2.0.5" 1257 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 1258 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 1259 | 1260 | get-stream@^4.0.0: 1261 | version "4.1.0" 1262 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" 1263 | integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== 1264 | dependencies: 1265 | pump "^3.0.0" 1266 | 1267 | get-value@^2.0.3, get-value@^2.0.6: 1268 | version "2.0.6" 1269 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 1270 | integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg= 1271 | 1272 | github-build@^1.2.0: 1273 | version "1.2.1" 1274 | resolved "https://registry.yarnpkg.com/github-build/-/github-build-1.2.1.tgz#a00f03fb76e5fa01971ddff0e69b88978c6f2f3f" 1275 | integrity sha512-VAT4NFU8hm9Ks5yNKuuczD2zMbmouAKHtxtwvmCj34Q2DpZsjgp3LLjtrKlm/YvGSzSNGmj22ccJQQei+f/vIw== 1276 | dependencies: 1277 | axios "0.19.0" 1278 | 1279 | github-from-package@0.0.0: 1280 | version "0.0.0" 1281 | resolved "https://registry.yarnpkg.com/github-from-package/-/github-from-package-0.0.0.tgz#97fb5d96bfde8973313f20e8288ef9a167fa64ce" 1282 | integrity sha1-l/tdlr/eiXMxPyDoKI75oWf6ZM4= 1283 | 1284 | glob-parent@^3.1.0: 1285 | version "3.1.0" 1286 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" 1287 | integrity sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4= 1288 | dependencies: 1289 | is-glob "^3.1.0" 1290 | path-dirname "^1.0.0" 1291 | 1292 | glob@^7.1.3, glob@^7.1.4: 1293 | version "7.1.4" 1294 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.4.tgz#aa608a2f6c577ad357e1ae5a5c26d9a8d1969255" 1295 | integrity sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A== 1296 | dependencies: 1297 | fs.realpath "^1.0.0" 1298 | inflight "^1.0.4" 1299 | inherits "2" 1300 | minimatch "^3.0.4" 1301 | once "^1.3.0" 1302 | path-is-absolute "^1.0.0" 1303 | 1304 | global-modules@2.0.0: 1305 | version "2.0.0" 1306 | resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-2.0.0.tgz#997605ad2345f27f51539bea26574421215c7780" 1307 | integrity sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A== 1308 | dependencies: 1309 | global-prefix "^3.0.0" 1310 | 1311 | global-modules@^1.0.0: 1312 | version "1.0.0" 1313 | resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-1.0.0.tgz#6d770f0eb523ac78164d72b5e71a8877265cc3ea" 1314 | integrity sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg== 1315 | dependencies: 1316 | global-prefix "^1.0.1" 1317 | is-windows "^1.0.1" 1318 | resolve-dir "^1.0.0" 1319 | 1320 | global-prefix@^1.0.1: 1321 | version "1.0.2" 1322 | resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-1.0.2.tgz#dbf743c6c14992593c655568cb66ed32c0122ebe" 1323 | integrity sha1-2/dDxsFJklk8ZVVoy2btMsASLr4= 1324 | dependencies: 1325 | expand-tilde "^2.0.2" 1326 | homedir-polyfill "^1.0.1" 1327 | ini "^1.3.4" 1328 | is-windows "^1.0.1" 1329 | which "^1.2.14" 1330 | 1331 | global-prefix@^3.0.0: 1332 | version "3.0.0" 1333 | resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-3.0.0.tgz#fc85f73064df69f50421f47f883fe5b913ba9b97" 1334 | integrity sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg== 1335 | dependencies: 1336 | ini "^1.3.5" 1337 | kind-of "^6.0.2" 1338 | which "^1.3.1" 1339 | 1340 | graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2: 1341 | version "4.2.0" 1342 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.0.tgz#8d8fdc73977cb04104721cb53666c1ca64cd328b" 1343 | integrity sha512-jpSvDPV4Cq/bgtpndIWbI5hmYxhQGHPC4d4cqBPb4DLniCfhJokdXhwhaDuLBGLQdvvRum/UiX6ECVIPvDXqdg== 1344 | 1345 | gzip-size@^4.0.0: 1346 | version "4.1.0" 1347 | resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-4.1.0.tgz#8ae096257eabe7d69c45be2b67c448124ffb517c" 1348 | integrity sha1-iuCWJX6r59acRb4rZ8RIEk/7UXw= 1349 | dependencies: 1350 | duplexer "^0.1.1" 1351 | pify "^3.0.0" 1352 | 1353 | has-flag@^2.0.0: 1354 | version "2.0.0" 1355 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1356 | integrity sha1-6CB68cx7MNRGzHC3NLXovhj4jVE= 1357 | 1358 | has-flag@^3.0.0: 1359 | version "3.0.0" 1360 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1361 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 1362 | 1363 | has-unicode@^2.0.0: 1364 | version "2.0.1" 1365 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1366 | integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk= 1367 | 1368 | has-value@^0.3.1: 1369 | version "0.3.1" 1370 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 1371 | integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8= 1372 | dependencies: 1373 | get-value "^2.0.3" 1374 | has-values "^0.1.4" 1375 | isobject "^2.0.0" 1376 | 1377 | has-value@^1.0.0: 1378 | version "1.0.0" 1379 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 1380 | integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc= 1381 | dependencies: 1382 | get-value "^2.0.6" 1383 | has-values "^1.0.0" 1384 | isobject "^3.0.0" 1385 | 1386 | has-values@^0.1.4: 1387 | version "0.1.4" 1388 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 1389 | integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E= 1390 | 1391 | has-values@^1.0.0: 1392 | version "1.0.0" 1393 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 1394 | integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8= 1395 | dependencies: 1396 | is-number "^3.0.0" 1397 | kind-of "^4.0.0" 1398 | 1399 | hash-base@^3.0.0: 1400 | version "3.0.4" 1401 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" 1402 | integrity sha1-X8hoaEfs1zSZQDMZprCj8/auSRg= 1403 | dependencies: 1404 | inherits "^2.0.1" 1405 | safe-buffer "^5.0.1" 1406 | 1407 | hash.js@^1.0.0, hash.js@^1.0.3: 1408 | version "1.1.7" 1409 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" 1410 | integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== 1411 | dependencies: 1412 | inherits "^2.0.3" 1413 | minimalistic-assert "^1.0.1" 1414 | 1415 | hmac-drbg@^1.0.0: 1416 | version "1.0.1" 1417 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" 1418 | integrity sha1-0nRXAQJabHdabFRXk+1QL8DGSaE= 1419 | dependencies: 1420 | hash.js "^1.0.3" 1421 | minimalistic-assert "^1.0.0" 1422 | minimalistic-crypto-utils "^1.0.1" 1423 | 1424 | homedir-polyfill@^1.0.1: 1425 | version "1.0.3" 1426 | resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz#743298cef4e5af3e194161fbadcc2151d3a058e8" 1427 | integrity sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA== 1428 | dependencies: 1429 | parse-passwd "^1.0.0" 1430 | 1431 | https-browserify@^1.0.0: 1432 | version "1.0.0" 1433 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" 1434 | integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM= 1435 | 1436 | iconv-lite@^0.4.4: 1437 | version "0.4.24" 1438 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 1439 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== 1440 | dependencies: 1441 | safer-buffer ">= 2.1.2 < 3" 1442 | 1443 | ieee754@^1.1.4: 1444 | version "1.1.13" 1445 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84" 1446 | integrity sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg== 1447 | 1448 | iferr@^0.1.5: 1449 | version "0.1.5" 1450 | resolved "https://registry.yarnpkg.com/iferr/-/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501" 1451 | integrity sha1-xg7taebY/bazEEofy8ocGS3FtQE= 1452 | 1453 | ignore-walk@^3.0.1: 1454 | version "3.0.1" 1455 | resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" 1456 | integrity sha512-DTVlMx3IYPe0/JJcYP7Gxg7ttZZu3IInhuEhbchuqneY9wWe5Ojy2mXLBaQFUQmo0AW2r3qG7m1mg86js+gnlQ== 1457 | dependencies: 1458 | minimatch "^3.0.4" 1459 | 1460 | iltorb@^2.4.3: 1461 | version "2.4.3" 1462 | resolved "https://registry.yarnpkg.com/iltorb/-/iltorb-2.4.3.tgz#b489689d24c8a25a2cf170c515f97954edd45577" 1463 | integrity sha512-cr/kC07Cf9sW3TWH7yUxV2QkNjby4LMCsXGmxPCQs5x//QzTpF3GLPNY7L66G+DkNGaTRCgY+vYZ+dyAcuDOnQ== 1464 | dependencies: 1465 | detect-libc "^1.0.3" 1466 | nan "^2.13.2" 1467 | npmlog "^4.1.2" 1468 | prebuild-install "^5.3.0" 1469 | which-pm-runs "^1.0.0" 1470 | 1471 | import-fresh@^2.0.0: 1472 | version "2.0.0" 1473 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546" 1474 | integrity sha1-2BNVwVYS04bGH53dOSLUMEgipUY= 1475 | dependencies: 1476 | caller-path "^2.0.0" 1477 | resolve-from "^3.0.0" 1478 | 1479 | import-local@2.0.0: 1480 | version "2.0.0" 1481 | resolved "https://registry.yarnpkg.com/import-local/-/import-local-2.0.0.tgz#55070be38a5993cf18ef6db7e961f5bee5c5a09d" 1482 | integrity sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ== 1483 | dependencies: 1484 | pkg-dir "^3.0.0" 1485 | resolve-cwd "^2.0.0" 1486 | 1487 | imurmurhash@^0.1.4: 1488 | version "0.1.4" 1489 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1490 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 1491 | 1492 | infer-owner@^1.0.3: 1493 | version "1.0.4" 1494 | resolved "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467" 1495 | integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A== 1496 | 1497 | inflight@^1.0.4: 1498 | version "1.0.6" 1499 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1500 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 1501 | dependencies: 1502 | once "^1.3.0" 1503 | wrappy "1" 1504 | 1505 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.1, inherits@~2.0.3: 1506 | version "2.0.4" 1507 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1508 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1509 | 1510 | inherits@2.0.1: 1511 | version "2.0.1" 1512 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 1513 | integrity sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE= 1514 | 1515 | inherits@2.0.3: 1516 | version "2.0.3" 1517 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1518 | integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= 1519 | 1520 | ini@^1.3.4, ini@^1.3.5, ini@~1.3.0: 1521 | version "1.3.5" 1522 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1523 | integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== 1524 | 1525 | interpret@1.2.0: 1526 | version "1.2.0" 1527 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.2.0.tgz#d5061a6224be58e8083985f5014d844359576296" 1528 | integrity sha512-mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw== 1529 | 1530 | invert-kv@^2.0.0: 1531 | version "2.0.0" 1532 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-2.0.0.tgz#7393f5afa59ec9ff5f67a27620d11c226e3eec02" 1533 | integrity sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA== 1534 | 1535 | is-accessor-descriptor@^0.1.6: 1536 | version "0.1.6" 1537 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 1538 | integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY= 1539 | dependencies: 1540 | kind-of "^3.0.2" 1541 | 1542 | is-accessor-descriptor@^1.0.0: 1543 | version "1.0.0" 1544 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 1545 | integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ== 1546 | dependencies: 1547 | kind-of "^6.0.0" 1548 | 1549 | is-arrayish@^0.2.1: 1550 | version "0.2.1" 1551 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1552 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 1553 | 1554 | is-binary-path@^1.0.0: 1555 | version "1.0.1" 1556 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1557 | integrity sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg= 1558 | dependencies: 1559 | binary-extensions "^1.0.0" 1560 | 1561 | is-buffer@^1.1.5: 1562 | version "1.1.6" 1563 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1564 | integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== 1565 | 1566 | is-buffer@^2.0.2: 1567 | version "2.0.3" 1568 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.3.tgz#4ecf3fcf749cbd1e472689e109ac66261a25e725" 1569 | integrity sha512-U15Q7MXTuZlrbymiz95PJpZxu8IlipAp4dtS3wOdgPXx3mqBnslrWU14kxfHB+Py/+2PVKSr37dMAgM2A4uArw== 1570 | 1571 | is-data-descriptor@^0.1.4: 1572 | version "0.1.4" 1573 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 1574 | integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y= 1575 | dependencies: 1576 | kind-of "^3.0.2" 1577 | 1578 | is-data-descriptor@^1.0.0: 1579 | version "1.0.0" 1580 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 1581 | integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ== 1582 | dependencies: 1583 | kind-of "^6.0.0" 1584 | 1585 | is-descriptor@^0.1.0: 1586 | version "0.1.6" 1587 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 1588 | integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg== 1589 | dependencies: 1590 | is-accessor-descriptor "^0.1.6" 1591 | is-data-descriptor "^0.1.4" 1592 | kind-of "^5.0.0" 1593 | 1594 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 1595 | version "1.0.2" 1596 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 1597 | integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg== 1598 | dependencies: 1599 | is-accessor-descriptor "^1.0.0" 1600 | is-data-descriptor "^1.0.0" 1601 | kind-of "^6.0.2" 1602 | 1603 | is-directory@^0.3.1: 1604 | version "0.3.1" 1605 | resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" 1606 | integrity sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE= 1607 | 1608 | is-extendable@^0.1.0, is-extendable@^0.1.1: 1609 | version "0.1.1" 1610 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1611 | integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik= 1612 | 1613 | is-extendable@^1.0.1: 1614 | version "1.0.1" 1615 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 1616 | integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== 1617 | dependencies: 1618 | is-plain-object "^2.0.4" 1619 | 1620 | is-extglob@^2.1.0, is-extglob@^2.1.1: 1621 | version "2.1.1" 1622 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1623 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= 1624 | 1625 | is-fullwidth-code-point@^1.0.0: 1626 | version "1.0.0" 1627 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1628 | integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs= 1629 | dependencies: 1630 | number-is-nan "^1.0.0" 1631 | 1632 | is-fullwidth-code-point@^2.0.0: 1633 | version "2.0.0" 1634 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1635 | integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= 1636 | 1637 | is-glob@^3.1.0: 1638 | version "3.1.0" 1639 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" 1640 | integrity sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo= 1641 | dependencies: 1642 | is-extglob "^2.1.0" 1643 | 1644 | is-glob@^4.0.0: 1645 | version "4.0.1" 1646 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" 1647 | integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== 1648 | dependencies: 1649 | is-extglob "^2.1.1" 1650 | 1651 | is-number@^3.0.0: 1652 | version "3.0.0" 1653 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1654 | integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU= 1655 | dependencies: 1656 | kind-of "^3.0.2" 1657 | 1658 | is-plain-object@^2.0.3, is-plain-object@^2.0.4: 1659 | version "2.0.4" 1660 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 1661 | integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== 1662 | dependencies: 1663 | isobject "^3.0.1" 1664 | 1665 | is-stream@^1.1.0: 1666 | version "1.1.0" 1667 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1668 | integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= 1669 | 1670 | is-windows@^1.0.1, is-windows@^1.0.2: 1671 | version "1.0.2" 1672 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 1673 | integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== 1674 | 1675 | is-wsl@^1.1.0: 1676 | version "1.1.0" 1677 | resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" 1678 | integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0= 1679 | 1680 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1681 | version "1.0.0" 1682 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1683 | integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= 1684 | 1685 | isexe@^2.0.0: 1686 | version "2.0.0" 1687 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1688 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 1689 | 1690 | isobject@^2.0.0: 1691 | version "2.1.0" 1692 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1693 | integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk= 1694 | dependencies: 1695 | isarray "1.0.0" 1696 | 1697 | isobject@^3.0.0, isobject@^3.0.1: 1698 | version "3.0.1" 1699 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 1700 | integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= 1701 | 1702 | js-yaml@^3.13.1: 1703 | version "3.13.1" 1704 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847" 1705 | integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw== 1706 | dependencies: 1707 | argparse "^1.0.7" 1708 | esprima "^4.0.0" 1709 | 1710 | json-parse-better-errors@^1.0.1, json-parse-better-errors@^1.0.2: 1711 | version "1.0.2" 1712 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" 1713 | integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== 1714 | 1715 | json-schema-traverse@^0.4.1: 1716 | version "0.4.1" 1717 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 1718 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 1719 | 1720 | json5@^1.0.1: 1721 | version "1.0.1" 1722 | resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" 1723 | integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== 1724 | dependencies: 1725 | minimist "^1.2.0" 1726 | 1727 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 1728 | version "3.2.2" 1729 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1730 | integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ= 1731 | dependencies: 1732 | is-buffer "^1.1.5" 1733 | 1734 | kind-of@^4.0.0: 1735 | version "4.0.0" 1736 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1737 | integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc= 1738 | dependencies: 1739 | is-buffer "^1.1.5" 1740 | 1741 | kind-of@^5.0.0: 1742 | version "5.1.0" 1743 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 1744 | integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== 1745 | 1746 | kind-of@^6.0.0, kind-of@^6.0.2: 1747 | version "6.0.2" 1748 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 1749 | integrity sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA== 1750 | 1751 | lcid@^2.0.0: 1752 | version "2.0.0" 1753 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-2.0.0.tgz#6ef5d2df60e52f82eb228a4c373e8d1f397253cf" 1754 | integrity sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA== 1755 | dependencies: 1756 | invert-kv "^2.0.0" 1757 | 1758 | loader-runner@^2.4.0: 1759 | version "2.4.0" 1760 | resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357" 1761 | integrity sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw== 1762 | 1763 | loader-utils@1.2.3, loader-utils@^1.2.3: 1764 | version "1.2.3" 1765 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.2.3.tgz#1ff5dc6911c9f0a062531a4c04b609406108c2c7" 1766 | integrity sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA== 1767 | dependencies: 1768 | big.js "^5.2.2" 1769 | emojis-list "^2.0.0" 1770 | json5 "^1.0.1" 1771 | 1772 | locate-path@^3.0.0: 1773 | version "3.0.0" 1774 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" 1775 | integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== 1776 | dependencies: 1777 | p-locate "^3.0.0" 1778 | path-exists "^3.0.0" 1779 | 1780 | lru-cache@^5.1.1: 1781 | version "5.1.1" 1782 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" 1783 | integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== 1784 | dependencies: 1785 | yallist "^3.0.2" 1786 | 1787 | make-dir@^2.0.0: 1788 | version "2.1.0" 1789 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" 1790 | integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== 1791 | dependencies: 1792 | pify "^4.0.1" 1793 | semver "^5.6.0" 1794 | 1795 | mamacro@^0.0.3: 1796 | version "0.0.3" 1797 | resolved "https://registry.yarnpkg.com/mamacro/-/mamacro-0.0.3.tgz#ad2c9576197c9f1abf308d0787865bd975a3f3e4" 1798 | integrity sha512-qMEwh+UujcQ+kbz3T6V+wAmO2U8veoq2w+3wY8MquqwVA3jChfwY+Tk52GZKDfACEPjuZ7r2oJLejwpt8jtwTA== 1799 | 1800 | map-age-cleaner@^0.1.1: 1801 | version "0.1.3" 1802 | resolved "https://registry.yarnpkg.com/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a" 1803 | integrity sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w== 1804 | dependencies: 1805 | p-defer "^1.0.0" 1806 | 1807 | map-cache@^0.2.2: 1808 | version "0.2.2" 1809 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 1810 | integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= 1811 | 1812 | map-visit@^1.0.0: 1813 | version "1.0.0" 1814 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 1815 | integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48= 1816 | dependencies: 1817 | object-visit "^1.0.0" 1818 | 1819 | md5.js@^1.3.4: 1820 | version "1.3.5" 1821 | resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f" 1822 | integrity sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg== 1823 | dependencies: 1824 | hash-base "^3.0.0" 1825 | inherits "^2.0.1" 1826 | safe-buffer "^5.1.2" 1827 | 1828 | mem@^4.0.0: 1829 | version "4.3.0" 1830 | resolved "https://registry.yarnpkg.com/mem/-/mem-4.3.0.tgz#461af497bc4ae09608cdb2e60eefb69bff744178" 1831 | integrity sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w== 1832 | dependencies: 1833 | map-age-cleaner "^0.1.1" 1834 | mimic-fn "^2.0.0" 1835 | p-is-promise "^2.0.0" 1836 | 1837 | memory-fs@^0.4.0, memory-fs@^0.4.1: 1838 | version "0.4.1" 1839 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" 1840 | integrity sha1-OpoguEYlI+RHz7x+i7gO1me/xVI= 1841 | dependencies: 1842 | errno "^0.1.3" 1843 | readable-stream "^2.0.1" 1844 | 1845 | micromatch@^3.0.4, micromatch@^3.1.10, micromatch@^3.1.4: 1846 | version "3.1.10" 1847 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 1848 | integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== 1849 | dependencies: 1850 | arr-diff "^4.0.0" 1851 | array-unique "^0.3.2" 1852 | braces "^2.3.1" 1853 | define-property "^2.0.2" 1854 | extend-shallow "^3.0.2" 1855 | extglob "^2.0.4" 1856 | fragment-cache "^0.2.1" 1857 | kind-of "^6.0.2" 1858 | nanomatch "^1.2.9" 1859 | object.pick "^1.3.0" 1860 | regex-not "^1.0.0" 1861 | snapdragon "^0.8.1" 1862 | to-regex "^3.0.2" 1863 | 1864 | miller-rabin@^4.0.0: 1865 | version "4.0.1" 1866 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" 1867 | integrity sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA== 1868 | dependencies: 1869 | bn.js "^4.0.0" 1870 | brorand "^1.0.1" 1871 | 1872 | mimic-fn@^2.0.0: 1873 | version "2.1.0" 1874 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" 1875 | integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== 1876 | 1877 | mimic-response@^1.0.0: 1878 | version "1.0.1" 1879 | resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" 1880 | integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== 1881 | 1882 | minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: 1883 | version "1.0.1" 1884 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" 1885 | integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== 1886 | 1887 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: 1888 | version "1.0.1" 1889 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 1890 | integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo= 1891 | 1892 | minimatch@^3.0.4: 1893 | version "3.0.4" 1894 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1895 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 1896 | dependencies: 1897 | brace-expansion "^1.1.7" 1898 | 1899 | minimist@0.0.8: 1900 | version "0.0.8" 1901 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1902 | integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0= 1903 | 1904 | minimist@^1.2.0: 1905 | version "1.2.0" 1906 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1907 | integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ= 1908 | 1909 | minipass@^2.2.1, minipass@^2.3.5: 1910 | version "2.3.5" 1911 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.5.tgz#cacebe492022497f656b0f0f51e2682a9ed2d848" 1912 | integrity sha512-Gi1W4k059gyRbyVUZQ4mEqLm0YIUiGYfvxhF6SIlk3ui1WVxMTGfGdQ2SInh3PDrRTVvPKgULkpJtT4RH10+VA== 1913 | dependencies: 1914 | safe-buffer "^5.1.2" 1915 | yallist "^3.0.0" 1916 | 1917 | minizlib@^1.2.1: 1918 | version "1.2.1" 1919 | resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.2.1.tgz#dd27ea6136243c7c880684e8672bb3a45fd9b614" 1920 | integrity sha512-7+4oTUOWKg7AuL3vloEWekXY2/D20cevzsrNT2kGWm+39J9hGTCBv8VI5Pm5lXZ/o3/mdR4f8rflAPhnQb8mPA== 1921 | dependencies: 1922 | minipass "^2.2.1" 1923 | 1924 | mississippi@^3.0.0: 1925 | version "3.0.0" 1926 | resolved "https://registry.yarnpkg.com/mississippi/-/mississippi-3.0.0.tgz#ea0a3291f97e0b5e8776b363d5f0a12d94c67022" 1927 | integrity sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA== 1928 | dependencies: 1929 | concat-stream "^1.5.0" 1930 | duplexify "^3.4.2" 1931 | end-of-stream "^1.1.0" 1932 | flush-write-stream "^1.0.0" 1933 | from2 "^2.1.0" 1934 | parallel-transform "^1.1.0" 1935 | pump "^3.0.0" 1936 | pumpify "^1.3.3" 1937 | stream-each "^1.1.0" 1938 | through2 "^2.0.0" 1939 | 1940 | mixin-deep@^1.2.0: 1941 | version "1.3.2" 1942 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" 1943 | integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA== 1944 | dependencies: 1945 | for-in "^1.0.2" 1946 | is-extendable "^1.0.1" 1947 | 1948 | mkdirp@^0.5.0, mkdirp@^0.5.1: 1949 | version "0.5.1" 1950 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1951 | integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM= 1952 | dependencies: 1953 | minimist "0.0.8" 1954 | 1955 | move-concurrently@^1.0.1: 1956 | version "1.0.1" 1957 | resolved "https://registry.yarnpkg.com/move-concurrently/-/move-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92" 1958 | integrity sha1-viwAX9oy4LKa8fBdfEszIUxwH5I= 1959 | dependencies: 1960 | aproba "^1.1.1" 1961 | copy-concurrently "^1.0.0" 1962 | fs-write-stream-atomic "^1.0.8" 1963 | mkdirp "^0.5.1" 1964 | rimraf "^2.5.4" 1965 | run-queue "^1.0.3" 1966 | 1967 | ms@2.0.0: 1968 | version "2.0.0" 1969 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1970 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 1971 | 1972 | ms@^2.1.1: 1973 | version "2.1.2" 1974 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1975 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1976 | 1977 | nan@^2.12.1, nan@^2.13.2: 1978 | version "2.14.0" 1979 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.0.tgz#7818f722027b2459a86f0295d434d1fc2336c52c" 1980 | integrity sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg== 1981 | 1982 | nanomatch@^1.2.9: 1983 | version "1.2.13" 1984 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" 1985 | integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== 1986 | dependencies: 1987 | arr-diff "^4.0.0" 1988 | array-unique "^0.3.2" 1989 | define-property "^2.0.2" 1990 | extend-shallow "^3.0.2" 1991 | fragment-cache "^0.2.1" 1992 | is-windows "^1.0.2" 1993 | kind-of "^6.0.2" 1994 | object.pick "^1.3.0" 1995 | regex-not "^1.0.0" 1996 | snapdragon "^0.8.1" 1997 | to-regex "^3.0.1" 1998 | 1999 | napi-build-utils@^1.0.1: 2000 | version "1.0.1" 2001 | resolved "https://registry.yarnpkg.com/napi-build-utils/-/napi-build-utils-1.0.1.tgz#1381a0f92c39d66bf19852e7873432fc2123e508" 2002 | integrity sha512-boQj1WFgQH3v4clhu3mTNfP+vOBxorDlE8EKiMjUlLG3C4qAESnn9AxIOkFgTR2c9LtzNjPrjS60cT27ZKBhaA== 2003 | 2004 | needle@^2.2.1: 2005 | version "2.4.0" 2006 | resolved "https://registry.yarnpkg.com/needle/-/needle-2.4.0.tgz#6833e74975c444642590e15a750288c5f939b57c" 2007 | integrity sha512-4Hnwzr3mi5L97hMYeNl8wRW/Onhy4nUKR/lVemJ8gJedxxUyBLm9kkrDColJvoSfwi0jCNhD+xCdOtiGDQiRZg== 2008 | dependencies: 2009 | debug "^3.2.6" 2010 | iconv-lite "^0.4.4" 2011 | sax "^1.2.4" 2012 | 2013 | neo-async@^2.5.0, neo-async@^2.6.1: 2014 | version "2.6.1" 2015 | resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c" 2016 | integrity sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw== 2017 | 2018 | nice-try@^1.0.4: 2019 | version "1.0.5" 2020 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" 2021 | integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== 2022 | 2023 | node-abi@^2.7.0: 2024 | version "2.9.0" 2025 | resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-2.9.0.tgz#ae4075b298dab2d92dd1e22c48ccc7ffd7f06200" 2026 | integrity sha512-jmEOvv0eanWjhX8dX1pmjb7oJl1U1oR4FOh0b2GnvALwSYoOdU7sj+kLDSAyjo4pfC9aj/IxkloxdLJQhSSQBA== 2027 | dependencies: 2028 | semver "^5.4.1" 2029 | 2030 | node-libs-browser@^2.2.1: 2031 | version "2.2.1" 2032 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.2.1.tgz#b64f513d18338625f90346d27b0d235e631f6425" 2033 | integrity sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q== 2034 | dependencies: 2035 | assert "^1.1.1" 2036 | browserify-zlib "^0.2.0" 2037 | buffer "^4.3.0" 2038 | console-browserify "^1.1.0" 2039 | constants-browserify "^1.0.0" 2040 | crypto-browserify "^3.11.0" 2041 | domain-browser "^1.1.1" 2042 | events "^3.0.0" 2043 | https-browserify "^1.0.0" 2044 | os-browserify "^0.3.0" 2045 | path-browserify "0.0.1" 2046 | process "^0.11.10" 2047 | punycode "^1.2.4" 2048 | querystring-es3 "^0.2.0" 2049 | readable-stream "^2.3.3" 2050 | stream-browserify "^2.0.1" 2051 | stream-http "^2.7.2" 2052 | string_decoder "^1.0.0" 2053 | timers-browserify "^2.0.4" 2054 | tty-browserify "0.0.0" 2055 | url "^0.11.0" 2056 | util "^0.11.0" 2057 | vm-browserify "^1.0.1" 2058 | 2059 | node-pre-gyp@^0.12.0: 2060 | version "0.12.0" 2061 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.12.0.tgz#39ba4bb1439da030295f899e3b520b7785766149" 2062 | integrity sha512-4KghwV8vH5k+g2ylT+sLTjy5wmUOb9vPhnM8NHvRf9dHmnW/CndrFXy2aRPaPST6dugXSdHXfeaHQm77PIz/1A== 2063 | dependencies: 2064 | detect-libc "^1.0.2" 2065 | mkdirp "^0.5.1" 2066 | needle "^2.2.1" 2067 | nopt "^4.0.1" 2068 | npm-packlist "^1.1.6" 2069 | npmlog "^4.0.2" 2070 | rc "^1.2.7" 2071 | rimraf "^2.6.1" 2072 | semver "^5.3.0" 2073 | tar "^4" 2074 | 2075 | noop-logger@^0.1.1: 2076 | version "0.1.1" 2077 | resolved "https://registry.yarnpkg.com/noop-logger/-/noop-logger-0.1.1.tgz#94a2b1633c4f1317553007d8966fd0e841b6a4c2" 2078 | integrity sha1-lKKxYzxPExdVMAfYlm/Q6EG2pMI= 2079 | 2080 | nopt@^4.0.1: 2081 | version "4.0.1" 2082 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2083 | integrity sha1-0NRoWv1UFRk8jHUFYC0NF81kR00= 2084 | dependencies: 2085 | abbrev "1" 2086 | osenv "^0.1.4" 2087 | 2088 | normalize-path@^2.1.1: 2089 | version "2.1.1" 2090 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2091 | integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk= 2092 | dependencies: 2093 | remove-trailing-separator "^1.0.1" 2094 | 2095 | normalize-path@^3.0.0: 2096 | version "3.0.0" 2097 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 2098 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 2099 | 2100 | npm-bundled@^1.0.1: 2101 | version "1.0.6" 2102 | resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.6.tgz#e7ba9aadcef962bb61248f91721cd932b3fe6bdd" 2103 | integrity sha512-8/JCaftHwbd//k6y2rEWp6k1wxVfpFzB6t1p825+cUb7Ym2XQfhwIC5KwhrvzZRJu+LtDE585zVaS32+CGtf0g== 2104 | 2105 | npm-packlist@^1.1.6: 2106 | version "1.4.4" 2107 | resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.4.tgz#866224233850ac534b63d1a6e76050092b5d2f44" 2108 | integrity sha512-zTLo8UcVYtDU3gdeaFu2Xu0n0EvelfHDGuqtNIn5RO7yQj4H1TqNdBc/yZjxnWA0PVB8D3Woyp0i5B43JwQ6Vw== 2109 | dependencies: 2110 | ignore-walk "^3.0.1" 2111 | npm-bundled "^1.0.1" 2112 | 2113 | npm-run-path@^2.0.0: 2114 | version "2.0.2" 2115 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2116 | integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8= 2117 | dependencies: 2118 | path-key "^2.0.0" 2119 | 2120 | npmlog@^4.0.1, npmlog@^4.0.2, npmlog@^4.1.2: 2121 | version "4.1.2" 2122 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2123 | integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== 2124 | dependencies: 2125 | are-we-there-yet "~1.1.2" 2126 | console-control-strings "~1.1.0" 2127 | gauge "~2.7.3" 2128 | set-blocking "~2.0.0" 2129 | 2130 | number-is-nan@^1.0.0: 2131 | version "1.0.1" 2132 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2133 | integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= 2134 | 2135 | object-assign@^4.1.0, object-assign@^4.1.1: 2136 | version "4.1.1" 2137 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2138 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 2139 | 2140 | object-copy@^0.1.0: 2141 | version "0.1.0" 2142 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 2143 | integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw= 2144 | dependencies: 2145 | copy-descriptor "^0.1.0" 2146 | define-property "^0.2.5" 2147 | kind-of "^3.0.3" 2148 | 2149 | object-visit@^1.0.0: 2150 | version "1.0.1" 2151 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 2152 | integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs= 2153 | dependencies: 2154 | isobject "^3.0.0" 2155 | 2156 | object.pick@^1.3.0: 2157 | version "1.3.0" 2158 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 2159 | integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c= 2160 | dependencies: 2161 | isobject "^3.0.1" 2162 | 2163 | once@^1.3.0, once@^1.3.1, once@^1.4.0: 2164 | version "1.4.0" 2165 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2166 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 2167 | dependencies: 2168 | wrappy "1" 2169 | 2170 | os-browserify@^0.3.0: 2171 | version "0.3.0" 2172 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" 2173 | integrity sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc= 2174 | 2175 | os-homedir@^1.0.0, os-homedir@^1.0.1: 2176 | version "1.0.2" 2177 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2178 | integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= 2179 | 2180 | os-locale@^3.1.0: 2181 | version "3.1.0" 2182 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-3.1.0.tgz#a802a6ee17f24c10483ab9935719cef4ed16bf1a" 2183 | integrity sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q== 2184 | dependencies: 2185 | execa "^1.0.0" 2186 | lcid "^2.0.0" 2187 | mem "^4.0.0" 2188 | 2189 | os-tmpdir@^1.0.0: 2190 | version "1.0.2" 2191 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2192 | integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= 2193 | 2194 | osenv@^0.1.4: 2195 | version "0.1.5" 2196 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 2197 | integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== 2198 | dependencies: 2199 | os-homedir "^1.0.0" 2200 | os-tmpdir "^1.0.0" 2201 | 2202 | p-defer@^1.0.0: 2203 | version "1.0.0" 2204 | resolved "https://registry.yarnpkg.com/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c" 2205 | integrity sha1-n26xgvbJqozXQwBKfU+WsZaw+ww= 2206 | 2207 | p-finally@^1.0.0: 2208 | version "1.0.0" 2209 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2210 | integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= 2211 | 2212 | p-is-promise@^2.0.0: 2213 | version "2.1.0" 2214 | resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-2.1.0.tgz#918cebaea248a62cf7ffab8e3bca8c5f882fc42e" 2215 | integrity sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg== 2216 | 2217 | p-limit@^2.0.0: 2218 | version "2.2.0" 2219 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.0.tgz#417c9941e6027a9abcba5092dd2904e255b5fbc2" 2220 | integrity sha512-pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ== 2221 | dependencies: 2222 | p-try "^2.0.0" 2223 | 2224 | p-locate@^3.0.0: 2225 | version "3.0.0" 2226 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" 2227 | integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== 2228 | dependencies: 2229 | p-limit "^2.0.0" 2230 | 2231 | p-try@^2.0.0: 2232 | version "2.2.0" 2233 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" 2234 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== 2235 | 2236 | pako@~1.0.5: 2237 | version "1.0.10" 2238 | resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.10.tgz#4328badb5086a426aa90f541977d4955da5c9732" 2239 | integrity sha512-0DTvPVU3ed8+HNXOu5Bs+o//Mbdj9VNQMUOe9oKCwh8l0GNwpTDMKCWbRjgtD291AWnkAgkqA/LOnQS8AmS1tw== 2240 | 2241 | parallel-transform@^1.1.0: 2242 | version "1.1.0" 2243 | resolved "https://registry.yarnpkg.com/parallel-transform/-/parallel-transform-1.1.0.tgz#d410f065b05da23081fcd10f28854c29bda33b06" 2244 | integrity sha1-1BDwZbBdojCB/NEPKIVMKb2jOwY= 2245 | dependencies: 2246 | cyclist "~0.2.2" 2247 | inherits "^2.0.3" 2248 | readable-stream "^2.1.5" 2249 | 2250 | parse-asn1@^5.0.0: 2251 | version "5.1.4" 2252 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.4.tgz#37f6628f823fbdeb2273b4d540434a22f3ef1fcc" 2253 | integrity sha512-Qs5duJcuvNExRfFZ99HDD3z4mAi3r9Wl/FOjEOijlxwCZs7E7mW2vjTpgQ4J8LpTF8x5v+1Vn5UQFejmWT11aw== 2254 | dependencies: 2255 | asn1.js "^4.0.0" 2256 | browserify-aes "^1.0.0" 2257 | create-hash "^1.1.0" 2258 | evp_bytestokey "^1.0.0" 2259 | pbkdf2 "^3.0.3" 2260 | safe-buffer "^5.1.1" 2261 | 2262 | parse-json@^4.0.0: 2263 | version "4.0.0" 2264 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" 2265 | integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA= 2266 | dependencies: 2267 | error-ex "^1.3.1" 2268 | json-parse-better-errors "^1.0.1" 2269 | 2270 | parse-passwd@^1.0.0: 2271 | version "1.0.0" 2272 | resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" 2273 | integrity sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY= 2274 | 2275 | pascalcase@^0.1.1: 2276 | version "0.1.1" 2277 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 2278 | integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ= 2279 | 2280 | path-browserify@0.0.1: 2281 | version "0.0.1" 2282 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.1.tgz#e6c4ddd7ed3aa27c68a20cc4e50e1a4ee83bbc4a" 2283 | integrity sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ== 2284 | 2285 | path-dirname@^1.0.0: 2286 | version "1.0.2" 2287 | resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" 2288 | integrity sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA= 2289 | 2290 | path-exists@^3.0.0: 2291 | version "3.0.0" 2292 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2293 | integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= 2294 | 2295 | path-is-absolute@^1.0.0: 2296 | version "1.0.1" 2297 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2298 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 2299 | 2300 | path-key@^2.0.0, path-key@^2.0.1: 2301 | version "2.0.1" 2302 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2303 | integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= 2304 | 2305 | pbkdf2@^3.0.3: 2306 | version "3.0.17" 2307 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.17.tgz#976c206530617b14ebb32114239f7b09336e93a6" 2308 | integrity sha512-U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA== 2309 | dependencies: 2310 | create-hash "^1.1.2" 2311 | create-hmac "^1.1.4" 2312 | ripemd160 "^2.0.1" 2313 | safe-buffer "^5.0.1" 2314 | sha.js "^2.4.8" 2315 | 2316 | pify@^3.0.0: 2317 | version "3.0.0" 2318 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 2319 | integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY= 2320 | 2321 | pify@^4.0.1: 2322 | version "4.0.1" 2323 | resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" 2324 | integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== 2325 | 2326 | pkg-dir@^3.0.0: 2327 | version "3.0.0" 2328 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3" 2329 | integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw== 2330 | dependencies: 2331 | find-up "^3.0.0" 2332 | 2333 | posix-character-classes@^0.1.0: 2334 | version "0.1.1" 2335 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 2336 | integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= 2337 | 2338 | prebuild-install@^5.3.0: 2339 | version "5.3.0" 2340 | resolved "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-5.3.0.tgz#58b4d8344e03590990931ee088dd5401b03004c8" 2341 | integrity sha512-aaLVANlj4HgZweKttFNUVNRxDukytuIuxeK2boIMHjagNJCiVKWFsKF4tCE3ql3GbrD2tExPQ7/pwtEJcHNZeg== 2342 | dependencies: 2343 | detect-libc "^1.0.3" 2344 | expand-template "^2.0.3" 2345 | github-from-package "0.0.0" 2346 | minimist "^1.2.0" 2347 | mkdirp "^0.5.1" 2348 | napi-build-utils "^1.0.1" 2349 | node-abi "^2.7.0" 2350 | noop-logger "^0.1.1" 2351 | npmlog "^4.0.1" 2352 | os-homedir "^1.0.1" 2353 | pump "^2.0.1" 2354 | rc "^1.2.7" 2355 | simple-get "^2.7.0" 2356 | tar-fs "^1.13.0" 2357 | tunnel-agent "^0.6.0" 2358 | which-pm-runs "^1.0.0" 2359 | 2360 | prettycli@^1.4.3: 2361 | version "1.4.3" 2362 | resolved "https://registry.yarnpkg.com/prettycli/-/prettycli-1.4.3.tgz#b28ec2aad9de07ae1fd75ef294fb54cbdee07ed5" 2363 | integrity sha512-KLiwAXXfSWXZqGmZlnKPuGMTFp+0QbcySplL1ft9gfteT/BNsG64Xo8u2Qr9r+qnsIZWBQ66Zs8tg+8s2fmzvw== 2364 | dependencies: 2365 | chalk "2.1.0" 2366 | 2367 | process-nextick-args@~2.0.0: 2368 | version "2.0.1" 2369 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" 2370 | integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== 2371 | 2372 | process@^0.11.10: 2373 | version "0.11.10" 2374 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" 2375 | integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI= 2376 | 2377 | promise-inflight@^1.0.1: 2378 | version "1.0.1" 2379 | resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3" 2380 | integrity sha1-mEcocL8igTL8vdhoEputEsPAKeM= 2381 | 2382 | prr@~1.0.1: 2383 | version "1.0.1" 2384 | resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" 2385 | integrity sha1-0/wRS6BplaRexok/SEzrHXj19HY= 2386 | 2387 | public-encrypt@^4.0.0: 2388 | version "4.0.3" 2389 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0" 2390 | integrity sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q== 2391 | dependencies: 2392 | bn.js "^4.1.0" 2393 | browserify-rsa "^4.0.0" 2394 | create-hash "^1.1.0" 2395 | parse-asn1 "^5.0.0" 2396 | randombytes "^2.0.1" 2397 | safe-buffer "^5.1.2" 2398 | 2399 | pump@^1.0.0: 2400 | version "1.0.3" 2401 | resolved "https://registry.yarnpkg.com/pump/-/pump-1.0.3.tgz#5dfe8311c33bbf6fc18261f9f34702c47c08a954" 2402 | integrity sha512-8k0JupWme55+9tCVE+FS5ULT3K6AbgqrGa58lTT49RpyfwwcGedHqaC5LlQNdEAumn/wFsu6aPwkuPMioy8kqw== 2403 | dependencies: 2404 | end-of-stream "^1.1.0" 2405 | once "^1.3.1" 2406 | 2407 | pump@^2.0.0, pump@^2.0.1: 2408 | version "2.0.1" 2409 | resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909" 2410 | integrity sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA== 2411 | dependencies: 2412 | end-of-stream "^1.1.0" 2413 | once "^1.3.1" 2414 | 2415 | pump@^3.0.0: 2416 | version "3.0.0" 2417 | resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" 2418 | integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== 2419 | dependencies: 2420 | end-of-stream "^1.1.0" 2421 | once "^1.3.1" 2422 | 2423 | pumpify@^1.3.3: 2424 | version "1.5.1" 2425 | resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce" 2426 | integrity sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ== 2427 | dependencies: 2428 | duplexify "^3.6.0" 2429 | inherits "^2.0.3" 2430 | pump "^2.0.0" 2431 | 2432 | punycode@1.3.2: 2433 | version "1.3.2" 2434 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 2435 | integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0= 2436 | 2437 | punycode@^1.2.4: 2438 | version "1.4.1" 2439 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2440 | integrity sha1-wNWmOycYgArY4esPpSachN1BhF4= 2441 | 2442 | punycode@^2.1.0: 2443 | version "2.1.1" 2444 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 2445 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 2446 | 2447 | querystring-es3@^0.2.0: 2448 | version "0.2.1" 2449 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 2450 | integrity sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM= 2451 | 2452 | querystring@0.2.0: 2453 | version "0.2.0" 2454 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 2455 | integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA= 2456 | 2457 | randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5: 2458 | version "2.1.0" 2459 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" 2460 | integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== 2461 | dependencies: 2462 | safe-buffer "^5.1.0" 2463 | 2464 | randomfill@^1.0.3: 2465 | version "1.0.4" 2466 | resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458" 2467 | integrity sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw== 2468 | dependencies: 2469 | randombytes "^2.0.5" 2470 | safe-buffer "^5.1.0" 2471 | 2472 | rc@^1.2.7: 2473 | version "1.2.8" 2474 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 2475 | integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== 2476 | dependencies: 2477 | deep-extend "^0.6.0" 2478 | ini "~1.3.0" 2479 | minimist "^1.2.0" 2480 | strip-json-comments "~2.0.1" 2481 | 2482 | "readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.0, readable-stream@^2.3.3, readable-stream@^2.3.5, readable-stream@^2.3.6, readable-stream@~2.3.6: 2483 | version "2.3.6" 2484 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 2485 | integrity sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw== 2486 | dependencies: 2487 | core-util-is "~1.0.0" 2488 | inherits "~2.0.3" 2489 | isarray "~1.0.0" 2490 | process-nextick-args "~2.0.0" 2491 | safe-buffer "~5.1.1" 2492 | string_decoder "~1.1.1" 2493 | util-deprecate "~1.0.1" 2494 | 2495 | readdirp@^2.2.1: 2496 | version "2.2.1" 2497 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525" 2498 | integrity sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ== 2499 | dependencies: 2500 | graceful-fs "^4.1.11" 2501 | micromatch "^3.1.10" 2502 | readable-stream "^2.0.2" 2503 | 2504 | regex-not@^1.0.0, regex-not@^1.0.2: 2505 | version "1.0.2" 2506 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 2507 | integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A== 2508 | dependencies: 2509 | extend-shallow "^3.0.2" 2510 | safe-regex "^1.1.0" 2511 | 2512 | remove-trailing-separator@^1.0.1: 2513 | version "1.1.0" 2514 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2515 | integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8= 2516 | 2517 | repeat-element@^1.1.2: 2518 | version "1.1.3" 2519 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" 2520 | integrity sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g== 2521 | 2522 | repeat-string@^1.6.1: 2523 | version "1.6.1" 2524 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2525 | integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= 2526 | 2527 | require-directory@^2.1.1: 2528 | version "2.1.1" 2529 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2530 | integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= 2531 | 2532 | require-main-filename@^2.0.0: 2533 | version "2.0.0" 2534 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" 2535 | integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== 2536 | 2537 | resolve-cwd@^2.0.0: 2538 | version "2.0.0" 2539 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a" 2540 | integrity sha1-AKn3OHVW4nA46uIyyqNypqWbZlo= 2541 | dependencies: 2542 | resolve-from "^3.0.0" 2543 | 2544 | resolve-dir@^1.0.0, resolve-dir@^1.0.1: 2545 | version "1.0.1" 2546 | resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-1.0.1.tgz#79a40644c362be82f26effe739c9bb5382046f43" 2547 | integrity sha1-eaQGRMNivoLybv/nOcm7U4IEb0M= 2548 | dependencies: 2549 | expand-tilde "^2.0.0" 2550 | global-modules "^1.0.0" 2551 | 2552 | resolve-from@^3.0.0: 2553 | version "3.0.0" 2554 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" 2555 | integrity sha1-six699nWiBvItuZTM17rywoYh0g= 2556 | 2557 | resolve-url@^0.2.1: 2558 | version "0.2.1" 2559 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 2560 | integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= 2561 | 2562 | ret@~0.1.10: 2563 | version "0.1.15" 2564 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 2565 | integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== 2566 | 2567 | rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.3: 2568 | version "2.6.3" 2569 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" 2570 | integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== 2571 | dependencies: 2572 | glob "^7.1.3" 2573 | 2574 | ripemd160@^2.0.0, ripemd160@^2.0.1: 2575 | version "2.0.2" 2576 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" 2577 | integrity sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA== 2578 | dependencies: 2579 | hash-base "^3.0.0" 2580 | inherits "^2.0.1" 2581 | 2582 | run-queue@^1.0.0, run-queue@^1.0.3: 2583 | version "1.0.3" 2584 | resolved "https://registry.yarnpkg.com/run-queue/-/run-queue-1.0.3.tgz#e848396f057d223f24386924618e25694161ec47" 2585 | integrity sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec= 2586 | dependencies: 2587 | aproba "^1.1.1" 2588 | 2589 | safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2590 | version "5.1.2" 2591 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 2592 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 2593 | 2594 | safe-regex@^1.1.0: 2595 | version "1.1.0" 2596 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 2597 | integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4= 2598 | dependencies: 2599 | ret "~0.1.10" 2600 | 2601 | "safer-buffer@>= 2.1.2 < 3": 2602 | version "2.1.2" 2603 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 2604 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 2605 | 2606 | sax@^1.2.4: 2607 | version "1.2.4" 2608 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 2609 | integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== 2610 | 2611 | schema-utils@^1.0.0: 2612 | version "1.0.0" 2613 | resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-1.0.0.tgz#0b79a93204d7b600d4b2850d1f66c2a34951c770" 2614 | integrity sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g== 2615 | dependencies: 2616 | ajv "^6.1.0" 2617 | ajv-errors "^1.0.0" 2618 | ajv-keywords "^3.1.0" 2619 | 2620 | semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.6.0: 2621 | version "5.7.0" 2622 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.0.tgz#790a7cf6fea5459bac96110b29b60412dc8ff96b" 2623 | integrity sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA== 2624 | 2625 | serialize-javascript@^1.7.0: 2626 | version "1.7.0" 2627 | resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-1.7.0.tgz#d6e0dfb2a3832a8c94468e6eb1db97e55a192a65" 2628 | integrity sha512-ke8UG8ulpFOxO8f8gRYabHQe/ZntKlcig2Mp+8+URDP1D8vJZ0KUt7LYo07q25Z/+JVSgpr/cui9PIp5H6/+nA== 2629 | 2630 | set-blocking@^2.0.0, set-blocking@~2.0.0: 2631 | version "2.0.0" 2632 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2633 | integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= 2634 | 2635 | set-value@^2.0.0, set-value@^2.0.1: 2636 | version "2.0.1" 2637 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b" 2638 | integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw== 2639 | dependencies: 2640 | extend-shallow "^2.0.1" 2641 | is-extendable "^0.1.1" 2642 | is-plain-object "^2.0.3" 2643 | split-string "^3.0.1" 2644 | 2645 | setimmediate@^1.0.4: 2646 | version "1.0.5" 2647 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 2648 | integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU= 2649 | 2650 | sha.js@^2.4.0, sha.js@^2.4.8: 2651 | version "2.4.11" 2652 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7" 2653 | integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ== 2654 | dependencies: 2655 | inherits "^2.0.1" 2656 | safe-buffer "^5.0.1" 2657 | 2658 | shebang-command@^1.2.0: 2659 | version "1.2.0" 2660 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2661 | integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= 2662 | dependencies: 2663 | shebang-regex "^1.0.0" 2664 | 2665 | shebang-regex@^1.0.0: 2666 | version "1.0.0" 2667 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2668 | integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= 2669 | 2670 | signal-exit@^3.0.0: 2671 | version "3.0.2" 2672 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2673 | integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0= 2674 | 2675 | simple-concat@^1.0.0: 2676 | version "1.0.0" 2677 | resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.0.tgz#7344cbb8b6e26fb27d66b2fc86f9f6d5997521c6" 2678 | integrity sha1-c0TLuLbib7J9ZrL8hvn21Zl1IcY= 2679 | 2680 | simple-get@^2.7.0: 2681 | version "2.8.1" 2682 | resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-2.8.1.tgz#0e22e91d4575d87620620bc91308d57a77f44b5d" 2683 | integrity sha512-lSSHRSw3mQNUGPAYRqo7xy9dhKmxFXIjLjp4KHpf99GEH2VH7C3AM+Qfx6du6jhfUi6Vm7XnbEVEf7Wb6N8jRw== 2684 | dependencies: 2685 | decompress-response "^3.3.0" 2686 | once "^1.3.1" 2687 | simple-concat "^1.0.0" 2688 | 2689 | snapdragon-node@^2.0.1: 2690 | version "2.1.1" 2691 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 2692 | integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw== 2693 | dependencies: 2694 | define-property "^1.0.0" 2695 | isobject "^3.0.0" 2696 | snapdragon-util "^3.0.1" 2697 | 2698 | snapdragon-util@^3.0.1: 2699 | version "3.0.1" 2700 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 2701 | integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ== 2702 | dependencies: 2703 | kind-of "^3.2.0" 2704 | 2705 | snapdragon@^0.8.1: 2706 | version "0.8.2" 2707 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" 2708 | integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg== 2709 | dependencies: 2710 | base "^0.11.1" 2711 | debug "^2.2.0" 2712 | define-property "^0.2.5" 2713 | extend-shallow "^2.0.1" 2714 | map-cache "^0.2.2" 2715 | source-map "^0.5.6" 2716 | source-map-resolve "^0.5.0" 2717 | use "^3.1.0" 2718 | 2719 | source-list-map@^2.0.0: 2720 | version "2.0.1" 2721 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34" 2722 | integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw== 2723 | 2724 | source-map-resolve@^0.5.0: 2725 | version "0.5.2" 2726 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" 2727 | integrity sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA== 2728 | dependencies: 2729 | atob "^2.1.1" 2730 | decode-uri-component "^0.2.0" 2731 | resolve-url "^0.2.1" 2732 | source-map-url "^0.4.0" 2733 | urix "^0.1.0" 2734 | 2735 | source-map-support@~0.5.12: 2736 | version "0.5.13" 2737 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.13.tgz#31b24a9c2e73c2de85066c0feb7d44767ed52932" 2738 | integrity sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w== 2739 | dependencies: 2740 | buffer-from "^1.0.0" 2741 | source-map "^0.6.0" 2742 | 2743 | source-map-url@^0.4.0: 2744 | version "0.4.0" 2745 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 2746 | integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM= 2747 | 2748 | source-map@^0.5.6: 2749 | version "0.5.7" 2750 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2751 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= 2752 | 2753 | source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: 2754 | version "0.6.1" 2755 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 2756 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 2757 | 2758 | split-string@^3.0.1, split-string@^3.0.2: 2759 | version "3.1.0" 2760 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 2761 | integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== 2762 | dependencies: 2763 | extend-shallow "^3.0.0" 2764 | 2765 | sprintf-js@~1.0.2: 2766 | version "1.0.3" 2767 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2768 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= 2769 | 2770 | ssri@^6.0.1: 2771 | version "6.0.1" 2772 | resolved "https://registry.yarnpkg.com/ssri/-/ssri-6.0.1.tgz#2a3c41b28dd45b62b63676ecb74001265ae9edd8" 2773 | integrity sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA== 2774 | dependencies: 2775 | figgy-pudding "^3.5.1" 2776 | 2777 | static-extend@^0.1.1: 2778 | version "0.1.2" 2779 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 2780 | integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY= 2781 | dependencies: 2782 | define-property "^0.2.5" 2783 | object-copy "^0.1.0" 2784 | 2785 | stream-browserify@^2.0.1: 2786 | version "2.0.2" 2787 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.2.tgz#87521d38a44aa7ee91ce1cd2a47df0cb49dd660b" 2788 | integrity sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg== 2789 | dependencies: 2790 | inherits "~2.0.1" 2791 | readable-stream "^2.0.2" 2792 | 2793 | stream-each@^1.1.0: 2794 | version "1.2.3" 2795 | resolved "https://registry.yarnpkg.com/stream-each/-/stream-each-1.2.3.tgz#ebe27a0c389b04fbcc233642952e10731afa9bae" 2796 | integrity sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw== 2797 | dependencies: 2798 | end-of-stream "^1.1.0" 2799 | stream-shift "^1.0.0" 2800 | 2801 | stream-http@^2.7.2: 2802 | version "2.8.3" 2803 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc" 2804 | integrity sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw== 2805 | dependencies: 2806 | builtin-status-codes "^3.0.0" 2807 | inherits "^2.0.1" 2808 | readable-stream "^2.3.6" 2809 | to-arraybuffer "^1.0.0" 2810 | xtend "^4.0.0" 2811 | 2812 | stream-shift@^1.0.0: 2813 | version "1.0.0" 2814 | resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952" 2815 | integrity sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI= 2816 | 2817 | string-width@^1.0.1: 2818 | version "1.0.2" 2819 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2820 | integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= 2821 | dependencies: 2822 | code-point-at "^1.0.0" 2823 | is-fullwidth-code-point "^1.0.0" 2824 | strip-ansi "^3.0.0" 2825 | 2826 | "string-width@^1.0.2 || 2": 2827 | version "2.1.1" 2828 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 2829 | integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== 2830 | dependencies: 2831 | is-fullwidth-code-point "^2.0.0" 2832 | strip-ansi "^4.0.0" 2833 | 2834 | string-width@^3.0.0, string-width@^3.1.0: 2835 | version "3.1.0" 2836 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" 2837 | integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== 2838 | dependencies: 2839 | emoji-regex "^7.0.1" 2840 | is-fullwidth-code-point "^2.0.0" 2841 | strip-ansi "^5.1.0" 2842 | 2843 | string_decoder@^1.0.0: 2844 | version "1.2.0" 2845 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.2.0.tgz#fe86e738b19544afe70469243b2a1ee9240eae8d" 2846 | integrity sha512-6YqyX6ZWEYguAxgZzHGL7SsCeGx3V2TtOTqZz1xSTSWnqsbWwbptafNyvf/ACquZUXV3DANr5BDIwNYe1mN42w== 2847 | dependencies: 2848 | safe-buffer "~5.1.0" 2849 | 2850 | string_decoder@~1.1.1: 2851 | version "1.1.1" 2852 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 2853 | integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== 2854 | dependencies: 2855 | safe-buffer "~5.1.0" 2856 | 2857 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2858 | version "3.0.1" 2859 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2860 | integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= 2861 | dependencies: 2862 | ansi-regex "^2.0.0" 2863 | 2864 | strip-ansi@^4.0.0: 2865 | version "4.0.0" 2866 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 2867 | integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= 2868 | dependencies: 2869 | ansi-regex "^3.0.0" 2870 | 2871 | strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: 2872 | version "5.2.0" 2873 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" 2874 | integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== 2875 | dependencies: 2876 | ansi-regex "^4.1.0" 2877 | 2878 | strip-eof@^1.0.0: 2879 | version "1.0.0" 2880 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 2881 | integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= 2882 | 2883 | strip-json-comments@~2.0.1: 2884 | version "2.0.1" 2885 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2886 | integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= 2887 | 2888 | supports-color@6.1.0: 2889 | version "6.1.0" 2890 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3" 2891 | integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ== 2892 | dependencies: 2893 | has-flag "^3.0.0" 2894 | 2895 | supports-color@^4.0.0: 2896 | version "4.5.0" 2897 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" 2898 | integrity sha1-vnoN5ITexcXN34s9WRJQRJEvY1s= 2899 | dependencies: 2900 | has-flag "^2.0.0" 2901 | 2902 | supports-color@^5.3.0: 2903 | version "5.5.0" 2904 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 2905 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 2906 | dependencies: 2907 | has-flag "^3.0.0" 2908 | 2909 | tapable@^1.0.0, tapable@^1.1.3: 2910 | version "1.1.3" 2911 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2" 2912 | integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA== 2913 | 2914 | tar-fs@^1.13.0: 2915 | version "1.16.3" 2916 | resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-1.16.3.tgz#966a628841da2c4010406a82167cbd5e0c72d509" 2917 | integrity sha512-NvCeXpYx7OsmOh8zIOP/ebG55zZmxLE0etfWRbWok+q2Qo8x/vOR/IJT1taADXPe+jsiu9axDb3X4B+iIgNlKw== 2918 | dependencies: 2919 | chownr "^1.0.1" 2920 | mkdirp "^0.5.1" 2921 | pump "^1.0.0" 2922 | tar-stream "^1.1.2" 2923 | 2924 | tar-stream@^1.1.2: 2925 | version "1.6.2" 2926 | resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-1.6.2.tgz#8ea55dab37972253d9a9af90fdcd559ae435c555" 2927 | integrity sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A== 2928 | dependencies: 2929 | bl "^1.0.0" 2930 | buffer-alloc "^1.2.0" 2931 | end-of-stream "^1.0.0" 2932 | fs-constants "^1.0.0" 2933 | readable-stream "^2.3.0" 2934 | to-buffer "^1.1.1" 2935 | xtend "^4.0.0" 2936 | 2937 | tar@^4: 2938 | version "4.4.10" 2939 | resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.10.tgz#946b2810b9a5e0b26140cf78bea6b0b0d689eba1" 2940 | integrity sha512-g2SVs5QIxvo6OLp0GudTqEf05maawKUxXru104iaayWA09551tFCTI8f1Asb4lPfkBr91k07iL4c11XO3/b0tA== 2941 | dependencies: 2942 | chownr "^1.1.1" 2943 | fs-minipass "^1.2.5" 2944 | minipass "^2.3.5" 2945 | minizlib "^1.2.1" 2946 | mkdirp "^0.5.0" 2947 | safe-buffer "^5.1.2" 2948 | yallist "^3.0.3" 2949 | 2950 | terser-webpack-plugin@^1.4.1: 2951 | version "1.4.1" 2952 | resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.1.tgz#61b18e40eaee5be97e771cdbb10ed1280888c2b4" 2953 | integrity sha512-ZXmmfiwtCLfz8WKZyYUuuHf3dMYEjg8NrjHMb0JqHVHVOSkzp3cW2/XG1fP3tRhqEqSzMwzzRQGtAPbs4Cncxg== 2954 | dependencies: 2955 | cacache "^12.0.2" 2956 | find-cache-dir "^2.1.0" 2957 | is-wsl "^1.1.0" 2958 | schema-utils "^1.0.0" 2959 | serialize-javascript "^1.7.0" 2960 | source-map "^0.6.1" 2961 | terser "^4.1.2" 2962 | webpack-sources "^1.4.0" 2963 | worker-farm "^1.7.0" 2964 | 2965 | terser@^4.1.2: 2966 | version "4.1.2" 2967 | resolved "https://registry.yarnpkg.com/terser/-/terser-4.1.2.tgz#b2656c8a506f7ce805a3f300a2ff48db022fa391" 2968 | integrity sha512-jvNoEQSPXJdssFwqPSgWjsOrb+ELoE+ILpHPKXC83tIxOlh2U75F1KuB2luLD/3a6/7K3Vw5pDn+hvu0C4AzSw== 2969 | dependencies: 2970 | commander "^2.20.0" 2971 | source-map "~0.6.1" 2972 | source-map-support "~0.5.12" 2973 | 2974 | through2@^2.0.0: 2975 | version "2.0.5" 2976 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" 2977 | integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== 2978 | dependencies: 2979 | readable-stream "~2.3.6" 2980 | xtend "~4.0.1" 2981 | 2982 | timers-browserify@^2.0.4: 2983 | version "2.0.10" 2984 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.10.tgz#1d28e3d2aadf1d5a5996c4e9f95601cd053480ae" 2985 | integrity sha512-YvC1SV1XdOUaL6gx5CoGroT3Gu49pK9+TZ38ErPldOWW4j49GI1HKs9DV+KGq/w6y+LZ72W1c8cKz2vzY+qpzg== 2986 | dependencies: 2987 | setimmediate "^1.0.4" 2988 | 2989 | to-arraybuffer@^1.0.0: 2990 | version "1.0.1" 2991 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" 2992 | integrity sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M= 2993 | 2994 | to-buffer@^1.1.1: 2995 | version "1.1.1" 2996 | resolved "https://registry.yarnpkg.com/to-buffer/-/to-buffer-1.1.1.tgz#493bd48f62d7c43fcded313a03dcadb2e1213a80" 2997 | integrity sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg== 2998 | 2999 | to-object-path@^0.3.0: 3000 | version "0.3.0" 3001 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 3002 | integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68= 3003 | dependencies: 3004 | kind-of "^3.0.2" 3005 | 3006 | to-regex-range@^2.1.0: 3007 | version "2.1.1" 3008 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 3009 | integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg= 3010 | dependencies: 3011 | is-number "^3.0.0" 3012 | repeat-string "^1.6.1" 3013 | 3014 | to-regex@^3.0.1, to-regex@^3.0.2: 3015 | version "3.0.2" 3016 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 3017 | integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== 3018 | dependencies: 3019 | define-property "^2.0.2" 3020 | extend-shallow "^3.0.2" 3021 | regex-not "^1.0.2" 3022 | safe-regex "^1.1.0" 3023 | 3024 | tslib@^1.9.0: 3025 | version "1.10.0" 3026 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.10.0.tgz#c3c19f95973fb0a62973fb09d90d961ee43e5c8a" 3027 | integrity sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ== 3028 | 3029 | tty-browserify@0.0.0: 3030 | version "0.0.0" 3031 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 3032 | integrity sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY= 3033 | 3034 | tunnel-agent@^0.6.0: 3035 | version "0.6.0" 3036 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3037 | integrity sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0= 3038 | dependencies: 3039 | safe-buffer "^5.0.1" 3040 | 3041 | typedarray@^0.0.6: 3042 | version "0.0.6" 3043 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3044 | integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= 3045 | 3046 | union-value@^1.0.0: 3047 | version "1.0.1" 3048 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847" 3049 | integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg== 3050 | dependencies: 3051 | arr-union "^3.1.0" 3052 | get-value "^2.0.6" 3053 | is-extendable "^0.1.1" 3054 | set-value "^2.0.1" 3055 | 3056 | unique-filename@^1.1.1: 3057 | version "1.1.1" 3058 | resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230" 3059 | integrity sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ== 3060 | dependencies: 3061 | unique-slug "^2.0.0" 3062 | 3063 | unique-slug@^2.0.0: 3064 | version "2.0.2" 3065 | resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-2.0.2.tgz#baabce91083fc64e945b0f3ad613e264f7cd4e6c" 3066 | integrity sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w== 3067 | dependencies: 3068 | imurmurhash "^0.1.4" 3069 | 3070 | unset-value@^1.0.0: 3071 | version "1.0.0" 3072 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 3073 | integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk= 3074 | dependencies: 3075 | has-value "^0.3.1" 3076 | isobject "^3.0.0" 3077 | 3078 | upath@^1.1.1: 3079 | version "1.1.2" 3080 | resolved "https://registry.yarnpkg.com/upath/-/upath-1.1.2.tgz#3db658600edaeeccbe6db5e684d67ee8c2acd068" 3081 | integrity sha512-kXpym8nmDmlCBr7nKdIx8P2jNBa+pBpIUFRnKJ4dr8htyYGJFokkr2ZvERRtUN+9SY+JqXouNgUPtv6JQva/2Q== 3082 | 3083 | uri-js@^4.2.2: 3084 | version "4.2.2" 3085 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" 3086 | integrity sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ== 3087 | dependencies: 3088 | punycode "^2.1.0" 3089 | 3090 | urix@^0.1.0: 3091 | version "0.1.0" 3092 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 3093 | integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= 3094 | 3095 | url@^0.11.0: 3096 | version "0.11.0" 3097 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 3098 | integrity sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE= 3099 | dependencies: 3100 | punycode "1.3.2" 3101 | querystring "0.2.0" 3102 | 3103 | use@^3.1.0: 3104 | version "3.1.1" 3105 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" 3106 | integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== 3107 | 3108 | util-deprecate@~1.0.1: 3109 | version "1.0.2" 3110 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3111 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= 3112 | 3113 | util@0.10.3: 3114 | version "0.10.3" 3115 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 3116 | integrity sha1-evsa/lCAUkZInj23/g7TeTNqwPk= 3117 | dependencies: 3118 | inherits "2.0.1" 3119 | 3120 | util@^0.11.0: 3121 | version "0.11.1" 3122 | resolved "https://registry.yarnpkg.com/util/-/util-0.11.1.tgz#3236733720ec64bb27f6e26f421aaa2e1b588d61" 3123 | integrity sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ== 3124 | dependencies: 3125 | inherits "2.0.3" 3126 | 3127 | v8-compile-cache@2.0.3: 3128 | version "2.0.3" 3129 | resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.0.3.tgz#00f7494d2ae2b688cfe2899df6ed2c54bef91dbe" 3130 | integrity sha512-CNmdbwQMBjwr9Gsmohvm0pbL954tJrNzf6gWL3K+QMQf00PF7ERGrEiLgjuU3mKreLC2MeGhUsNV9ybTbLgd3w== 3131 | 3132 | vm-browserify@^1.0.1: 3133 | version "1.1.0" 3134 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.0.tgz#bd76d6a23323e2ca8ffa12028dc04559c75f9019" 3135 | integrity sha512-iq+S7vZJE60yejDYM0ek6zg308+UZsdtPExWP9VZoCFCz1zkJoXFnAX7aZfd/ZwrkidzdUZL0C/ryW+JwAiIGw== 3136 | 3137 | watchpack@^1.6.0: 3138 | version "1.6.0" 3139 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.6.0.tgz#4bc12c2ebe8aa277a71f1d3f14d685c7b446cd00" 3140 | integrity sha512-i6dHe3EyLjMmDlU1/bGQpEw25XSjkJULPuAVKCbNRefQVq48yXKUpwg538F7AZTf9kyr57zj++pQFltUa5H7yA== 3141 | dependencies: 3142 | chokidar "^2.0.2" 3143 | graceful-fs "^4.1.2" 3144 | neo-async "^2.5.0" 3145 | 3146 | webpack-cli@3.3.10: 3147 | version "3.3.10" 3148 | resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-3.3.10.tgz#17b279267e9b4fb549023fae170da8e6e766da13" 3149 | integrity sha512-u1dgND9+MXaEt74sJR4PR7qkPxXUSQ0RXYq8x1L6Jg1MYVEmGPrH6Ah6C4arD4r0J1P5HKjRqpab36k0eIzPqg== 3150 | dependencies: 3151 | chalk "2.4.2" 3152 | cross-spawn "6.0.5" 3153 | enhanced-resolve "4.1.0" 3154 | findup-sync "3.0.0" 3155 | global-modules "2.0.0" 3156 | import-local "2.0.0" 3157 | interpret "1.2.0" 3158 | loader-utils "1.2.3" 3159 | supports-color "6.1.0" 3160 | v8-compile-cache "2.0.3" 3161 | yargs "13.2.4" 3162 | 3163 | webpack-sources@^1.4.0, webpack-sources@^1.4.1: 3164 | version "1.4.1" 3165 | resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.4.1.tgz#b91b2c5b1c4e890ff50d1d35b7fa3657040da1da" 3166 | integrity sha512-XSz38193PTo/1csJabKaV4b53uRVotlMgqJXm3s3eje0Bu6gQTxYDqpD38CmQfDBA+gN+QqaGjasuC8I/7eW3Q== 3167 | dependencies: 3168 | source-list-map "^2.0.0" 3169 | source-map "~0.6.1" 3170 | 3171 | webpack@4.41.2: 3172 | version "4.41.2" 3173 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.41.2.tgz#c34ec76daa3a8468c9b61a50336d8e3303dce74e" 3174 | integrity sha512-Zhw69edTGfbz9/8JJoyRQ/pq8FYUoY0diOXqW0T6yhgdhCv6wr0hra5DwwWexNRns2Z2+gsnrNcbe9hbGBgk/A== 3175 | dependencies: 3176 | "@webassemblyjs/ast" "1.8.5" 3177 | "@webassemblyjs/helper-module-context" "1.8.5" 3178 | "@webassemblyjs/wasm-edit" "1.8.5" 3179 | "@webassemblyjs/wasm-parser" "1.8.5" 3180 | acorn "^6.2.1" 3181 | ajv "^6.10.2" 3182 | ajv-keywords "^3.4.1" 3183 | chrome-trace-event "^1.0.2" 3184 | enhanced-resolve "^4.1.0" 3185 | eslint-scope "^4.0.3" 3186 | json-parse-better-errors "^1.0.2" 3187 | loader-runner "^2.4.0" 3188 | loader-utils "^1.2.3" 3189 | memory-fs "^0.4.1" 3190 | micromatch "^3.1.10" 3191 | mkdirp "^0.5.1" 3192 | neo-async "^2.6.1" 3193 | node-libs-browser "^2.2.1" 3194 | schema-utils "^1.0.0" 3195 | tapable "^1.1.3" 3196 | terser-webpack-plugin "^1.4.1" 3197 | watchpack "^1.6.0" 3198 | webpack-sources "^1.4.1" 3199 | 3200 | which-module@^2.0.0: 3201 | version "2.0.0" 3202 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 3203 | integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= 3204 | 3205 | which-pm-runs@^1.0.0: 3206 | version "1.0.0" 3207 | resolved "https://registry.yarnpkg.com/which-pm-runs/-/which-pm-runs-1.0.0.tgz#670b3afbc552e0b55df6b7780ca74615f23ad1cb" 3208 | integrity sha1-Zws6+8VS4LVd9rd4DKdGFfI60cs= 3209 | 3210 | which@^1.2.14, which@^1.2.9, which@^1.3.1: 3211 | version "1.3.1" 3212 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 3213 | integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== 3214 | dependencies: 3215 | isexe "^2.0.0" 3216 | 3217 | wide-align@^1.1.0: 3218 | version "1.1.3" 3219 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" 3220 | integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== 3221 | dependencies: 3222 | string-width "^1.0.2 || 2" 3223 | 3224 | worker-farm@^1.7.0: 3225 | version "1.7.0" 3226 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.7.0.tgz#26a94c5391bbca926152002f69b84a4bf772e5a8" 3227 | integrity sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw== 3228 | dependencies: 3229 | errno "~0.1.7" 3230 | 3231 | wrap-ansi@^5.1.0: 3232 | version "5.1.0" 3233 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09" 3234 | integrity sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q== 3235 | dependencies: 3236 | ansi-styles "^3.2.0" 3237 | string-width "^3.0.0" 3238 | strip-ansi "^5.0.0" 3239 | 3240 | wrappy@1: 3241 | version "1.0.2" 3242 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3243 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 3244 | 3245 | xtend@^4.0.0, xtend@~4.0.1: 3246 | version "4.0.1" 3247 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3248 | integrity sha1-pcbVMr5lbiPbgg77lDofBJmNY68= 3249 | 3250 | y18n@^4.0.0: 3251 | version "4.0.0" 3252 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" 3253 | integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w== 3254 | 3255 | yallist@^3.0.0, yallist@^3.0.2, yallist@^3.0.3: 3256 | version "3.0.3" 3257 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.3.tgz#b4b049e314be545e3ce802236d6cd22cd91c3de9" 3258 | integrity sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A== 3259 | 3260 | yargs-parser@^13.1.0: 3261 | version "13.1.1" 3262 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.1.tgz#d26058532aa06d365fe091f6a1fc06b2f7e5eca0" 3263 | integrity sha512-oVAVsHz6uFrg3XQheFII8ESO2ssAf9luWuAd6Wexsu4F3OtIW0o8IribPXYrD4WC24LWtPrJlGy87y5udK+dxQ== 3264 | dependencies: 3265 | camelcase "^5.0.0" 3266 | decamelize "^1.2.0" 3267 | 3268 | yargs@13.2.4: 3269 | version "13.2.4" 3270 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.2.4.tgz#0b562b794016eb9651b98bd37acf364aa5d6dc83" 3271 | integrity sha512-HG/DWAJa1PAnHT9JAhNa8AbAv3FPaiLzioSjCcmuXXhP8MlpHO5vwls4g4j6n30Z74GVQj8Xa62dWVx1QCGklg== 3272 | dependencies: 3273 | cliui "^5.0.0" 3274 | find-up "^3.0.0" 3275 | get-caller-file "^2.0.1" 3276 | os-locale "^3.1.0" 3277 | require-directory "^2.1.1" 3278 | require-main-filename "^2.0.0" 3279 | set-blocking "^2.0.0" 3280 | string-width "^3.0.0" 3281 | which-module "^2.0.0" 3282 | y18n "^4.0.0" 3283 | yargs-parser "^13.1.0" 3284 | -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'graphql-tag-pluck' { 2 | type FilePlucker = { 3 | (filePath: string, options?: object): Promise; 4 | sync(filePath: string, options?: object): string; 5 | }; 6 | 7 | type CodeStringPlucker = { 8 | (codeString: string, options?: object): Promise; 9 | sync(codeString: string, options?: object): string; 10 | }; 11 | 12 | type Plucker = { 13 | fromFile: FilePlucker; 14 | fromCodeString: CodeStringPlucker; 15 | }; 16 | 17 | var gqlPluck: Plucker; 18 | export var gqlPluckFromFile: FilePlucker; 19 | export var gqlPluckFromCodeString: CodeStringPlucker; 20 | export default gqlPluck; 21 | } 22 | -------------------------------------------------------------------------------- /jest.init.js: -------------------------------------------------------------------------------- 1 | /// jest.init.js 2 | import Enzyme from 'enzyme' 3 | import 'babel-polyfill' 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "graphql-tag-pluck", 3 | "version": "0.8.6", 4 | "description": "Pluck graphql-tag template literals", 5 | "license": "MIT", 6 | "repository": "https://github.com/DAB0mB/graphql-tag-pluck.git", 7 | "main": "build/graphql-tag-pluck.js", 8 | "module": "src/index.js", 9 | "typings": "index.d.ts", 10 | "sideEffects": false, 11 | "scripts": { 12 | "build": "webpack --config webpack_config.js", 13 | "test": "npm run build && jest --forceExit && yarn bundlesize", 14 | "prepublish": "npm run build", 15 | "bundlesize": "cd bundle-test && yarn && yarn test" 16 | }, 17 | "dependencies": { 18 | "@babel/parser": "^7.4.4", 19 | "@babel/traverse": "^7.4.4", 20 | "@babel/types": "^7.4.4", 21 | "source-map-support": "^0.5.12" 22 | }, 23 | "devDependencies": { 24 | "@babel/core": "^7.4.4", 25 | "@babel/plugin-proposal-class-properties": "^7.4.4", 26 | "@babel/plugin-proposal-decorators": "^7.4.4", 27 | "@babel/plugin-proposal-export-namespace-from": "^7.2.0", 28 | "@babel/plugin-proposal-function-sent": "^7.2.0", 29 | "@babel/plugin-proposal-json-strings": "^7.2.0", 30 | "@babel/plugin-proposal-numeric-separator": "^7.2.0", 31 | "@babel/plugin-proposal-throw-expressions": "^7.2.0", 32 | "@babel/plugin-syntax-dynamic-import": "^7.2.0", 33 | "@babel/plugin-syntax-import-meta": "^7.2.0", 34 | "@babel/plugin-transform-modules-commonjs": "^7.4.4", 35 | "@babel/preset-env": "^7.4.4", 36 | "babel-core": "^7.0.0-bridge.0", 37 | "babel-eslint": "^10.0.0", 38 | "babel-jest": "^24.7.1", 39 | "babel-loader": "^8.0.5", 40 | "babel-polyfill": "^6.26.0", 41 | "enzyme": "^3.9.0", 42 | "eslint": "^6.0.0", 43 | "eslint-loader": "^3.0.0", 44 | "jest": "^24.7.1", 45 | "typescript": "^3.4.5", 46 | "webpack": "^4.30.0", 47 | "webpack-cli": "^3.3.1", 48 | "webpack-node-externals": "^1.7.2" 49 | }, 50 | "jest": { 51 | "testEnvironment": "node", 52 | "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.js$", 53 | "globals": { 54 | "NODE_ENV": "test" 55 | }, 56 | "setupFiles": [ 57 | "/jest.init.js" 58 | ], 59 | "moduleFileExtensions": [ 60 | "js", 61 | "jsx", 62 | "json", 63 | "node" 64 | ] 65 | } 66 | } 67 | -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": [ 3 | "config:base", 4 | ":rebaseStalePrs" 5 | ], 6 | "recreateClosed": true, 7 | "rangeStrategy": "lockfile-update" 8 | } 9 | 10 | -------------------------------------------------------------------------------- /src/config.js: -------------------------------------------------------------------------------- 1 | export default function Config(code, options) { 2 | if (options instanceof Config) { 3 | return options 4 | } 5 | 6 | const plugins = [ 7 | 'asyncGenerators', 8 | 'bigInt', 9 | 'classProperties', 10 | 'classPrivateProperties', 11 | 'classPrivateMethods', 12 | ['decorators', { decoratorsBeforeExport: true }], 13 | 'doExpressions', 14 | 'dynamicImport', 15 | 'exportDefaultFrom', 16 | 'exportNamespaceFrom', 17 | 'functionBind', 18 | 'functionSent', 19 | 'importMeta', 20 | 'logicalAssignment', 21 | 'nullishCoalescingOperator', 22 | 'numericSeparator', 23 | 'objectRestSpread', 24 | 'optionalCatchBinding', 25 | 'optionalChaining', 26 | ['pipelineOperator', { proposal: 'smart' }], 27 | 'throwExpressions', 28 | ] 29 | 30 | // { all: true } option is bullshit thus I do it manually, just in case 31 | // I still specify it 32 | const flowPlugins = [['flow', { all: true }], 'flowComments'] 33 | 34 | // If line has @flow header, include flow plug-ins 35 | const dynamicFlowPlugins = ( 36 | /^\/\/ *@flow *\n/.test(code) || 37 | /^\/\* *@flow *\*\/ *\n/.test(code) 38 | ) ? flowPlugins : [] 39 | 40 | switch (options.fileExt) { 41 | case '.ts': plugins.push('typescript'); break 42 | case '.tsx': plugins.push('typescript', 'jsx'); break 43 | // Adding .jsx extension by default because it doesn't affect other syntax features 44 | // (unlike .tsx) and because people are seem to use it with regular file extensions 45 | // (e.g. .js) see https://github.com/dotansimha/graphql-code-generator/issues/1967 46 | case '.js': plugins.push('jsx', ...dynamicFlowPlugins); break 47 | case '.jsx': plugins.push('jsx', ...dynamicFlowPlugins); break 48 | case '.flow.js': plugins.push('jsx', ...flowPlugins); break 49 | case '.flow.jsx': plugins.push('jsx', ...flowPlugins); break 50 | case '.flow': plugins.push('jsx', ...flowPlugins); break 51 | default: plugins.push('jsx', ...dynamicFlowPlugins); break 52 | } 53 | 54 | // The _options filed will be used to retrieve the original options. 55 | // Useful when we wanna get not config related options later on 56 | return Object.assign(this, { 57 | _options: options, 58 | sourceType: 'module', 59 | plugins, 60 | allowUndeclaredExports: true, 61 | }) 62 | } 63 | -------------------------------------------------------------------------------- /src/graphql-tag-pluck.test.js: -------------------------------------------------------------------------------- 1 | import gqlPluck from '.' 2 | import fs from './libs/fs' 3 | import tmp from './libs/tmp' 4 | import { freeText } from './utils' 5 | 6 | describe('graphql-tag-pluck', () => { 7 | it('should pluck graphql-tag template literals from .js file', async () => { 8 | const file = await tmp.file({ 9 | unsafeCleanup: true, 10 | template: '/tmp/tmp-XXXXXX.js', 11 | }) 12 | 13 | await fs.writeFile(file.name, freeText(` 14 | import gql from 'graphql-tag' 15 | 16 | const fragment = gql(\` 17 | fragment Foo on FooType { 18 | id 19 | } 20 | \`) 21 | 22 | const doc = gql\` 23 | query foo { 24 | foo { 25 | ...Foo 26 | } 27 | } 28 | 29 | \${fragment} 30 | \` 31 | `)) 32 | 33 | const gqlString = await gqlPluck.fromFile(file.name) 34 | 35 | expect(gqlString).toEqual(freeText(` 36 | fragment Foo on FooType { 37 | id 38 | } 39 | 40 | query foo { 41 | foo { 42 | ...Foo 43 | } 44 | } 45 | `)) 46 | }) 47 | 48 | it('should pluck graphql-tag template literals from .js file and remove replacements', async () => { 49 | const file = await tmp.file({ 50 | unsafeCleanup: true, 51 | template: '/tmp/tmp-XXXXXX.js', 52 | }) 53 | 54 | await fs.writeFile(file.name, freeText(` 55 | import gql from 'graphql-tag' 56 | 57 | const fragment = gql(\` 58 | fragment Foo on FooType { 59 | id 60 | } 61 | \`) 62 | const fragment2 = gql(\` 63 | fragment Foo2 on FooType { 64 | name 65 | } 66 | \`) 67 | 68 | const doc = gql\` 69 | query foo { 70 | foo { 71 | ...Foo 72 | ...Foo2 73 | } 74 | } 75 | 76 | \${fragment} 77 | \${fragment2} 78 | \` 79 | `)) 80 | 81 | const gqlString = await gqlPluck.fromFile(file.name) 82 | 83 | expect(gqlString).toEqual(freeText(` 84 | fragment Foo on FooType { 85 | id 86 | } 87 | 88 | fragment Foo2 on FooType { 89 | name 90 | } 91 | 92 | query foo { 93 | foo { 94 | ...Foo 95 | ...Foo2 96 | } 97 | } 98 | `)) 99 | }) 100 | 101 | it('should pluck graphql-tag template literals from .ts file', async () => { 102 | const file = await tmp.file({ 103 | unsafeCleanup: true, 104 | template: '/tmp/tmp-XXXXXX.ts', 105 | }) 106 | 107 | await fs.writeFile(file.name, freeText(` 108 | import gql from 'graphql-tag' 109 | import { Document } from 'graphql' 110 | 111 | export namespace Fragments { 112 | interface EmptyObject {} 113 | 114 | const object = {} 115 | 116 | const fragment: Document = gql\` 117 | fragment Foo on FooType { 118 | id 119 | } 120 | \` 121 | 122 | const doc: Document = gql\` 123 | query foo { 124 | foo { 125 | ...Foo 126 | } 127 | } 128 | 129 | \${fragment} 130 | \` 131 | } 132 | `)) 133 | 134 | const gqlString = await gqlPluck.fromFile(file.name) 135 | 136 | expect(gqlString).toEqual(freeText(` 137 | fragment Foo on FooType { 138 | id 139 | } 140 | 141 | query foo { 142 | foo { 143 | ...Foo 144 | } 145 | } 146 | `)) 147 | }) 148 | 149 | it('should pluck graphql-tag template literals from .tsx file', async () => { 150 | const file = await tmp.file({ 151 | unsafeCleanup: true, 152 | template: '/tmp/tmp-XXXXXX.tsx', 153 | }) 154 | 155 | await fs.writeFile(file.name, freeText(` 156 | import * as React from 'react'; 157 | import gql from 'graphql-tag'; 158 | 159 | export default class extends React.Component<{}, {}> { 160 | public render() { 161 | return
; 162 | } 163 | } 164 | 165 | export const pageQuery = gql\` 166 | query IndexQuery { 167 | site { 168 | siteMetadata { 169 | title 170 | } 171 | } 172 | } 173 | \`; 174 | 175 | // export const pageQuery = gql\` 176 | // query IndexQuery { 177 | // site { 178 | // siteMetadata { 179 | // title 180 | // } 181 | // } 182 | // } 183 | // \`; 184 | `)) 185 | 186 | const gqlString = await gqlPluck.fromFile(file.name) 187 | 188 | expect(gqlString).toEqual(freeText(` 189 | query IndexQuery { 190 | site { 191 | siteMetadata { 192 | title 193 | } 194 | } 195 | } 196 | `)) 197 | }) 198 | 199 | it('should pluck graphql-tag template literals from .tsx file with generic jsx elements', async () => { 200 | const file = await tmp.file({ 201 | unsafeCleanup: true, 202 | template: '/tmp/tmp-XXXXXX.tsx', 203 | }) 204 | 205 | await fs.writeFile(file.name, freeText(` 206 | import * as React from 'react'; 207 | import gql from 'graphql-tag'; 208 | import Generic from './Generic' 209 | 210 | export default class extends React.Component<{}, {}> { 211 | public render() { 212 | return ( 213 |
214 | /> 215 | /> 216 | /> 217 |
218 | ) 219 | } 220 | } 221 | 222 | export const pageQuery = gql\` 223 | query IndexQuery { 224 | site { 225 | siteMetadata { 226 | title 227 | } 228 | } 229 | } 230 | \`; 231 | `)) 232 | 233 | const gqlString = await gqlPluck.fromFile(file.name) 234 | 235 | expect(gqlString).toEqual(freeText(` 236 | query IndexQuery { 237 | site { 238 | siteMetadata { 239 | title 240 | } 241 | } 242 | } 243 | `)) 244 | }) 245 | 246 | it('should pluck graphql-tag template literals from .ts file with the same const inside namespace and outside namespace', async () => { 247 | const file = await tmp.file({ 248 | unsafeCleanup: true, 249 | template: '/tmp/tmp-XXXXXX.ts', 250 | }) 251 | 252 | await fs.writeFile(file.name, freeText(` 253 | import gql from 'graphql-tag'; 254 | 255 | namespace Foo { 256 | export const foo = 12; 257 | 258 | export const query = gql\` 259 | query myQueryInNamespace { 260 | fieldA 261 | } 262 | \`; 263 | } 264 | 265 | interface ModuleWithProviders { 266 | ngModule: string; 267 | } 268 | 269 | export class FooModule { 270 | static forRoot() { 271 | return { 272 | ngModule: 'foo', 273 | value: Foo.foo 274 | }; 275 | } 276 | } 277 | 278 | export const query = gql\` 279 | query myQuery { 280 | fieldA 281 | } 282 | \`; 283 | `)) 284 | 285 | const gqlString = await gqlPluck.fromFile(file.name) 286 | 287 | expect(gqlString).toEqual(freeText(` 288 | query myQueryInNamespace { 289 | fieldA 290 | } 291 | 292 | query myQuery { 293 | fieldA 294 | } 295 | `)) 296 | }) 297 | 298 | it('should pluck graphql-tag template literals from .flow file', async () => { 299 | const file = await tmp.file({ 300 | unsafeCleanup: true, 301 | template: '/tmp/tmp-XXXXXX.flow', 302 | }) 303 | 304 | await fs.writeFile(file.name, freeText(` 305 | import gql from 'graphql-tag' 306 | import { Document } from 'graphql' 307 | 308 | const fragment: Document = gql\` 309 | fragment Foo on FooType { 310 | id 311 | } 312 | \` 313 | 314 | const doc: Document = gql\` 315 | query foo { 316 | foo { 317 | ...Foo 318 | } 319 | } 320 | 321 | \${fragment} 322 | \` 323 | `)) 324 | 325 | const gqlString = await gqlPluck.fromFile(file.name) 326 | 327 | expect(gqlString).toEqual(freeText(` 328 | fragment Foo on FooType { 329 | id 330 | } 331 | 332 | query foo { 333 | foo { 334 | ...Foo 335 | } 336 | } 337 | `)) 338 | }) 339 | 340 | it('should pluck graphql-tag template literals from .js file with @flow header', async () => { 341 | const file = await tmp.file({ 342 | unsafeCleanup: true, 343 | template: '/tmp/tmp-XXXXXX.js', 344 | }) 345 | 346 | await fs.writeFile(file.name, freeText(` 347 | // @flow 348 | 349 | import gql from 'graphql-tag' 350 | import { Document } from 'graphql' 351 | 352 | const fragment: Document = gql\` 353 | fragment Foo on FooType { 354 | id 355 | } 356 | \` 357 | 358 | const doc: Document = gql\` 359 | query foo { 360 | foo { 361 | ...Foo 362 | } 363 | } 364 | 365 | \${fragment} 366 | \` 367 | `)) 368 | 369 | const gqlString = await gqlPluck.fromFile(file.name) 370 | 371 | expect(gqlString).toEqual(freeText(` 372 | fragment Foo on FooType { 373 | id 374 | } 375 | 376 | query foo { 377 | foo { 378 | ...Foo 379 | } 380 | } 381 | `)) 382 | }) 383 | 384 | it('should NOT pluck graphql-tag template literals from .js file without a @flow header', async () => { 385 | const file = await tmp.file({ 386 | unsafeCleanup: true, 387 | template: '/tmp/tmp-XXXXXX.js', 388 | }) 389 | 390 | await fs.writeFile(file.name, freeText(` 391 | import gql from 'graphql-tag' 392 | import { Document } from 'graphql' 393 | 394 | const fragment: Document = gql\` 395 | fragment Foo on FooType { 396 | id 397 | } 398 | \` 399 | 400 | const doc: Document = gql\` 401 | query foo { 402 | foo { 403 | ...Foo 404 | } 405 | } 406 | 407 | \${fragment} 408 | \` 409 | `)) 410 | 411 | const fail = Error('Function did not throw') 412 | 413 | try { 414 | await gqlPluck.fromFile(file.name) 415 | 416 | throw fail 417 | } 418 | catch (e) { 419 | expect(e).not.toEqual(fail) 420 | } 421 | }) 422 | 423 | it('should pluck graphql-tag template literals from .flow.jsx file', async () => { 424 | const file = await tmp.file({ 425 | unsafeCleanup: true, 426 | template: '/tmp/tmp-XXXXXX.flow.jsx', 427 | }) 428 | 429 | await fs.writeFile(file.name, freeText(` 430 | import gql from 'graphql-tag' 431 | import { Document } from 'graphql' 432 | 433 | const fragment: Document = gql\` 434 | fragment Foo on FooType { 435 | id 436 | } 437 | \` 438 | 439 | const doc: Document = gql\` 440 | query foo { 441 | foo { 442 | ...Foo 443 | } 444 | } 445 | 446 | \${fragment} 447 | \` 448 | `)) 449 | 450 | const gqlString = await gqlPluck.fromFile(file.name) 451 | 452 | expect(gqlString).toEqual(freeText(` 453 | fragment Foo on FooType { 454 | id 455 | } 456 | 457 | query foo { 458 | foo { 459 | ...Foo 460 | } 461 | } 462 | `)) 463 | }) 464 | 465 | it('should pluck graphql-tag template literals from .*.jsx file', async () => { 466 | const file = await tmp.file({ 467 | unsafeCleanup: true, 468 | template: '/tmp/tmp-XXXXXX.mutation.jsx', 469 | }) 470 | 471 | await fs.writeFile(file.name, freeText(` 472 | import gql from 'graphql-tag' 473 | 474 | const fragment = gql\` 475 | fragment Foo on FooType { 476 | id 477 | } 478 | \` 479 | 480 | const doc = gql\` 481 | query foo { 482 | foo { 483 | ...Foo 484 | } 485 | } 486 | 487 | \${fragment} 488 | \` 489 | `)) 490 | 491 | const gqlString = await gqlPluck.fromFile(file.name) 492 | 493 | expect(gqlString).toEqual(freeText(` 494 | fragment Foo on FooType { 495 | id 496 | } 497 | 498 | query foo { 499 | foo { 500 | ...Foo 501 | } 502 | } 503 | `)) 504 | }) 505 | 506 | it('should pluck graphql-tag template literals leaded by a magic comment from .js file', async () => { 507 | const file = await tmp.file({ 508 | unsafeCleanup: true, 509 | template: '/tmp/tmp-XXXXXX.js', 510 | }) 511 | 512 | await fs.writeFile(file.name, freeText(` 513 | const Message = /* GraphQL */ \` 514 | enum MessageTypes { 515 | text 516 | media 517 | draftjs 518 | }\` 519 | `)) 520 | 521 | const gqlString = await gqlPluck.fromFile(file.name) 522 | 523 | expect(gqlString).toEqual(freeText(` 524 | enum MessageTypes { 525 | text 526 | media 527 | draftjs 528 | } 529 | `)) 530 | }) 531 | 532 | it('should pluck graphql-tag expression statements leaded by a magic comment from .js file', async () => { 533 | const file = await tmp.file({ 534 | unsafeCleanup: true, 535 | template: '/tmp/tmp-XXXXXX.js', 536 | }) 537 | 538 | await fs.writeFile(file.name, freeText(` 539 | /* GraphQL */ \` 540 | enum MessageTypes { 541 | text 542 | media 543 | draftjs 544 | }\` 545 | `)) 546 | 547 | const gqlString = await gqlPluck.fromFile(file.name) 548 | 549 | expect(gqlString).toEqual(freeText(` 550 | enum MessageTypes { 551 | text 552 | media 553 | draftjs 554 | } 555 | `)) 556 | }) 557 | 558 | it(`should NOT pluck other template literals from a .js file`, async () => { 559 | const file = await tmp.file({ 560 | unsafeCleanup: true, 561 | template: `/tmp/tmp-XXXXXX.js`, 562 | }) 563 | 564 | await fs.writeFile(file.name, freeText(` 565 | test( 566 | \`test1\` 567 | ) 568 | test.test( 569 | \`test2\` 570 | ) 571 | test\` 572 | test3 573 | \` 574 | test.test\` 575 | test4 576 | \` 577 | `)) 578 | 579 | const gqlString = await gqlPluck.fromFile(file.name) 580 | 581 | expect(gqlString).toEqual('') 582 | }) 583 | 584 | it ('should pluck template literals when graphql-tag is imported differently', async () => { 585 | const file = await tmp.file({ 586 | unsafeCleanup: true, 587 | template: '/tmp/tmp-XXXXXX.js', 588 | }) 589 | 590 | await fs.writeFile(file.name, freeText(` 591 | import graphqltag from 'graphql-tag' 592 | 593 | const fragment = graphqltag(\` 594 | fragment Foo on FooType { 595 | id 596 | } 597 | \`) 598 | 599 | const doc = graphqltag\` 600 | query foo { 601 | foo { 602 | ...Foo 603 | } 604 | } 605 | 606 | \${fragment} 607 | \` 608 | `)) 609 | 610 | const gqlString = await gqlPluck.fromFile(file.name) 611 | 612 | expect(gqlString).toEqual(freeText(` 613 | fragment Foo on FooType { 614 | id 615 | } 616 | 617 | query foo { 618 | foo { 619 | ...Foo 620 | } 621 | } 622 | `)) 623 | }) 624 | 625 | it ('should pluck template literals from gql by default even if not imported from graphql-tag', async () => { 626 | const file = await tmp.file({ 627 | unsafeCleanup: true, 628 | template: '/tmp/tmp-XXXXXX.js', 629 | }) 630 | 631 | await fs.writeFile(file.name, freeText(` 632 | import gql from 'graphql-tag' 633 | 634 | const fragment = gql(\` 635 | fragment Foo on FooType { 636 | id 637 | } 638 | \`) 639 | 640 | const doc = gql\` 641 | query foo { 642 | foo { 643 | ...Foo 644 | } 645 | } 646 | 647 | \${fragment} 648 | \` 649 | `)) 650 | 651 | const gqlString = await gqlPluck.fromFile(file.name) 652 | 653 | expect(gqlString).toEqual(freeText(` 654 | fragment Foo on FooType { 655 | id 656 | } 657 | 658 | query foo { 659 | foo { 660 | ...Foo 661 | } 662 | } 663 | `)) 664 | }) 665 | 666 | it('should pluck graphql-tag template literals from .graphql file', async () => { 667 | const file = await tmp.file({ 668 | unsafeCleanup: true, 669 | template: '/tmp/tmp-XXXXXX.graphql', 670 | }) 671 | 672 | await fs.writeFile(file.name, freeText(` 673 | fragment Foo on FooType { 674 | id 675 | } 676 | 677 | query foo { 678 | foo { 679 | ...Foo 680 | } 681 | } 682 | `)) 683 | 684 | const gqlString = await gqlPluck.fromFile(file.name) 685 | 686 | expect(gqlString).toEqual(freeText(` 687 | fragment Foo on FooType { 688 | id 689 | } 690 | 691 | query foo { 692 | foo { 693 | ...Foo 694 | } 695 | } 696 | `)) 697 | }) 698 | 699 | it('should pluck graphql-tag template literals from code string', async () => { 700 | const gqlString = await gqlPluck.fromCodeString(freeText(` 701 | import gql from 'graphql-tag' 702 | 703 | const fragment = gql(\` 704 | fragment Foo on FooType { 705 | id 706 | } 707 | \`) 708 | 709 | const doc = gql\` 710 | query foo { 711 | foo { 712 | ...Foo 713 | } 714 | } 715 | 716 | \${fragment} 717 | \` 718 | `)) 719 | 720 | expect(gqlString).toEqual(freeText(` 721 | fragment Foo on FooType { 722 | id 723 | } 724 | 725 | query foo { 726 | foo { 727 | ...Foo 728 | } 729 | } 730 | `)) 731 | }) 732 | 733 | it('should pluck graphql-tag template literals from a .js file synchronously', async () => { 734 | const file = await tmp.file({ 735 | unsafeCleanup: true, 736 | template: '/tmp/tmp-XXXXXX.js', 737 | }) 738 | 739 | await fs.writeFile(file.name, freeText(` 740 | import gql from 'graphql-tag' 741 | 742 | const fragment = gql(\` 743 | fragment Foo on FooType { 744 | id 745 | } 746 | \`) 747 | 748 | const doc = gql\` 749 | query foo { 750 | foo { 751 | ...Foo 752 | } 753 | } 754 | 755 | \${fragment} 756 | \` 757 | `)) 758 | 759 | const gqlString = gqlPluck.fromFile.sync(file.name) 760 | 761 | expect(gqlString).toEqual(freeText(` 762 | fragment Foo on FooType { 763 | id 764 | } 765 | 766 | query foo { 767 | foo { 768 | ...Foo 769 | } 770 | } 771 | `)) 772 | }) 773 | 774 | it('should be able to specify the global GraphQL identifier name', async () => { 775 | const file = await tmp.file({ 776 | unsafeCleanup: true, 777 | template: '/tmp/tmp-XXXXXX.js', 778 | }) 779 | 780 | await fs.writeFile(file.name, freeText(` 781 | const fragment = graphql(\` 782 | fragment Foo on FooType { 783 | id 784 | } 785 | \`) 786 | 787 | const doc = graphql\` 788 | query foo { 789 | foo { 790 | ...Foo 791 | } 792 | } 793 | 794 | \${fragment} 795 | \` 796 | `)) 797 | 798 | const gqlString = await gqlPluck.fromFile(file.name, { 799 | globalGqlIdentifierName: 'graphql' 800 | }) 801 | 802 | expect(gqlString).toEqual(freeText(` 803 | fragment Foo on FooType { 804 | id 805 | } 806 | 807 | query foo { 808 | foo { 809 | ...Foo 810 | } 811 | } 812 | `)) 813 | }) 814 | 815 | it('should be able to specify the GraphQL magic comment to look for', async () => { 816 | const file = await tmp.file({ 817 | unsafeCleanup: true, 818 | template: '/tmp/tmp-XXXXXX.js', 819 | }) 820 | 821 | await fs.writeFile(file.name, freeText(` 822 | const Message = /* GQL */ \` 823 | enum MessageTypes { 824 | text 825 | media 826 | draftjs 827 | }\` 828 | `)) 829 | 830 | const gqlString = await gqlPluck.fromFile(file.name, { 831 | gqlMagicComment: 'GQL' 832 | }) 833 | 834 | expect(gqlString).toEqual(freeText(` 835 | enum MessageTypes { 836 | text 837 | media 838 | draftjs 839 | } 840 | `)) 841 | }) 842 | 843 | it('should be able to specify the package name of which the GraphQL identifier should be imported from', async () => { 844 | const file = await tmp.file({ 845 | unsafeCleanup: true, 846 | template: '/tmp/tmp-XXXXXX.js', 847 | }) 848 | 849 | await fs.writeFile(file.name, freeText(` 850 | import mygql from 'my-graphql-tag' 851 | 852 | const fragment = mygql(\` 853 | fragment Foo on FooType { 854 | id 855 | } 856 | \`) 857 | 858 | const doc = mygql\` 859 | query foo { 860 | foo { 861 | ...Foo 862 | } 863 | } 864 | 865 | \${fragment} 866 | \` 867 | `)) 868 | 869 | const gqlString = await gqlPluck.fromFile(file.name, { 870 | modules: [ 871 | { name: 'my-graphql-tag' } 872 | ] 873 | }) 874 | 875 | expect(gqlString).toEqual(freeText(` 876 | fragment Foo on FooType { 877 | id 878 | } 879 | 880 | query foo { 881 | foo { 882 | ...Foo 883 | } 884 | } 885 | `)) 886 | }) 887 | 888 | it('should pluck graphql template literal from gatsby package', async () => { 889 | const file = await tmp.file({ 890 | unsafeCleanup: true, 891 | template: '/tmp/tmp-XXXXXX.js', 892 | }) 893 | 894 | await fs.writeFile(file.name, freeText(` 895 | import {graphql} from 'gatsby' 896 | 897 | const fragment = graphql(\` 898 | fragment Foo on FooType { 899 | id 900 | } 901 | \`) 902 | 903 | const doc = graphql\` 904 | query foo { 905 | foo { 906 | ...Foo 907 | } 908 | } 909 | 910 | \${fragment} 911 | \` 912 | `)) 913 | 914 | const gqlString = await gqlPluck.fromFile(file.name) 915 | 916 | expect(gqlString).toEqual(freeText(` 917 | fragment Foo on FooType { 918 | id 919 | } 920 | 921 | query foo { 922 | foo { 923 | ...Foo 924 | } 925 | } 926 | `)) 927 | }) 928 | 929 | it('should pluck gql template literal from apollo-server-express package', async () => { 930 | const file = await tmp.file({ 931 | unsafeCleanup: true, 932 | template: '/tmp/tmp-XXXXXX.js', 933 | }) 934 | 935 | await fs.writeFile(file.name, freeText(` 936 | import { gql } from 'apollo-server-express' 937 | 938 | const fragment = gql(\` 939 | fragment Foo on FooType { 940 | id 941 | } 942 | \`) 943 | 944 | const doc = gql\` 945 | query foo { 946 | foo { 947 | ...Foo 948 | } 949 | } 950 | 951 | \${fragment} 952 | \` 953 | `)) 954 | 955 | const gqlString = await gqlPluck.fromFile(file.name) 956 | 957 | expect(gqlString).toEqual(freeText(` 958 | fragment Foo on FooType { 959 | id 960 | } 961 | 962 | query foo { 963 | foo { 964 | ...Foo 965 | } 966 | } 967 | `)) 968 | }) 969 | 970 | it('should pluck magic comment template literals with a trailing semicolon', async () => { 971 | const gqlString = await gqlPluck.fromCodeString("/* GraphQL */ `{}`;") 972 | expect(gqlString).toEqual("{}") 973 | }) 974 | 975 | it('should pluck with comments having escaped backticks', async () => { 976 | const file = await tmp.file({ 977 | unsafeCleanup: true, 978 | template: '/tmp/tmp-XXXXXX.js', 979 | }) 980 | 981 | await fs.writeFile(file.name, freeText(` 982 | import gql from 'graphql-tag'; 983 | 984 | export default gql\` 985 | type User { 986 | id: ID! 987 | "Choose a nice username, so users can \\\`@mention\\\` you." 988 | username: String! 989 | email: String! 990 | } 991 | \` 992 | `)) 993 | 994 | const gqlString = await gqlPluck.fromFile(file.name) 995 | 996 | expect(gqlString).toEqual(freeText(` 997 | type User { 998 | id: ID! 999 | "Choose a nice username, so users can \`@mention\` you." 1000 | username: String! 1001 | email: String! 1002 | } 1003 | `)) 1004 | }) 1005 | }) 1006 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import Config from './config' 2 | import babel from './libs/babel' 3 | import fs from './libs/fs' 4 | import { resolve, extname } from './libs/path' 5 | import createVisitor from './visitor' 6 | 7 | const gqlExtensions = [ 8 | '.graphqls', '.graphql', '.gqls', '.gql' 9 | ] 10 | 11 | const jsExtensions = [ 12 | '.js', '.jsx', '.ts', '.tsx', '.flow', '.flow.js', '.flow.jsx' 13 | ] 14 | 15 | const supportedExtensions = [...gqlExtensions, ...jsExtensions] 16 | 17 | supportedExtensions.toString = function toString() { 18 | return this.join(', ') 19 | } 20 | 21 | export const gqlPluckFromFile = (filePath, options = {}) => { 22 | if (typeof filePath != 'string' && !(filePath instanceof String)) { 23 | throw TypeError('Provided file path must be a string') 24 | } 25 | 26 | const fileExt = extname(filePath) 27 | 28 | if (!supportedExtensions.includes(fileExt)) { 29 | throw TypeError(`Provided file type must be one of ${supportedExtensions}`) 30 | } 31 | 32 | if (gqlExtensions.includes(fileExt)) { 33 | return fs.readFile(filePath, { encoding: 'utf8' }) 34 | } 35 | 36 | if (!(options instanceof Object)) { 37 | throw TypeError(`Options arg must be an object`) 38 | } 39 | 40 | filePath = resolve(process.cwd(), filePath) 41 | options = { ...options, fileExt } 42 | 43 | if (options.useSync) { 44 | const code = fs.readFileSync(filePath, { encoding: 'utf8' }) 45 | const config = new Config(code, options) 46 | 47 | return gqlPluckFromCodeString(code, config) 48 | } 49 | 50 | return fs.readFile(filePath, { encoding: 'utf8' }).then((code) => { 51 | const config = new Config(code, options) 52 | return gqlPluckFromCodeString(code, config) 53 | }) 54 | } 55 | 56 | gqlPluckFromFile.sync = (filePath, options = {}) => { 57 | options = { ...options, useSync: true } 58 | 59 | return gqlPluckFromFile(filePath, options) 60 | } 61 | 62 | export const gqlPluckFromCodeString = (code, options = {}) => { 63 | if (typeof code != 'string' && !(code instanceof String)) { 64 | throw TypeError('Provided code must be a string') 65 | } 66 | 67 | if (!(options instanceof Object)) { 68 | throw TypeError(`Options arg must be an object`) 69 | } 70 | 71 | if (options.fileExt) { 72 | if (gqlExtensions.includes(options.fileExt)) { 73 | return code 74 | } 75 | 76 | if (!jsExtensions.includes(options.fileExt)) { 77 | throw TypeError(`options.fileExt must be one of ${supportedExtensions}`) 78 | } 79 | } 80 | 81 | const out = {} 82 | const config = new Config(code, options) 83 | const ast = babel.parse(code, config) 84 | const visitor = createVisitor(ast.code, out, config._options) 85 | 86 | babel.traverse(ast, visitor) 87 | 88 | return out.returnValue 89 | } 90 | 91 | export default { 92 | fromFile: gqlPluckFromFile, 93 | fromCodeString: gqlPluckFromCodeString, 94 | } 95 | -------------------------------------------------------------------------------- /src/libs/babel.js: -------------------------------------------------------------------------------- 1 | import { parse as babelParse } from '@babel/parser' 2 | import babelTraverse from '@babel/traverse' 3 | import { freeText } from '../utils' 4 | 5 | export const traverse = babelTraverse 6 | 7 | export const parse = (code, config) => { 8 | // The 'typescript' plug-in has few bugs... It's just better to use the native one 9 | // even though it affects performance 10 | if (config.plugins.includes('typescript')) { 11 | let ts 12 | try { 13 | ts = require('typescript') 14 | } 15 | catch (e) { 16 | throw Error(freeText(` 17 | GraphQL template literals cannot be plucked from a TypeScript code without having the "typescript" package installed. 18 | Please install it and try again. 19 | 20 | Via NPM: 21 | 22 | $ npm install typescript 23 | 24 | Via Yarn: 25 | 26 | $ yarn add typescript 27 | `)) 28 | } 29 | 30 | code = ts.transpileModule(code, { 31 | compilerOptions: { 32 | target: ts.ScriptTarget.ES2018, 33 | // "preserve" mode would be more correct, but it will keep not transpile generic 34 | // React.Components which are provided with null or undefined e.g. > 35 | jsx: config.plugins.includes('jsx') && 'react', 36 | } 37 | }).outputText 38 | 39 | const plugins = config.plugins.slice() 40 | const tsIndex = plugins.indexOf('typescript') 41 | plugins.splice(tsIndex, 1) 42 | 43 | config = { ...config, plugins } 44 | } 45 | 46 | const ast = babelParse(code, config) 47 | // Necessary to get the original code in case it was transformed by TypeScript 48 | ast.code = code 49 | 50 | return ast 51 | } 52 | 53 | export default { 54 | traverse, 55 | parse, 56 | } 57 | -------------------------------------------------------------------------------- /src/libs/fs.js: -------------------------------------------------------------------------------- 1 | import fs from 'fs' 2 | 3 | export const readFileSync = fs.readFileSync 4 | export const writeFileSync = fs.writeFileSync 5 | 6 | export const readFile = (...args) => { 7 | return new Promise((resolve, reject) => { 8 | fs.readFile(...args, (err, content) => { 9 | if (err) { 10 | reject(err) 11 | } 12 | else { 13 | resolve(content) 14 | } 15 | }) 16 | }) 17 | } 18 | 19 | export const writeFile = (...args) => { 20 | return new Promise((resolve, reject) => { 21 | fs.writeFile(...args, (err) => { 22 | if (err) { 23 | reject(err) 24 | } 25 | else { 26 | resolve() 27 | } 28 | }) 29 | }) 30 | } 31 | 32 | export default { 33 | readFile, 34 | readFileSync, 35 | writeFile, 36 | writeFileSync, 37 | } 38 | -------------------------------------------------------------------------------- /src/libs/path.js: -------------------------------------------------------------------------------- 1 | import path from 'path' 2 | 3 | export const resolve = path.resolve 4 | 5 | export const extname = (filePath) => { 6 | const partials = filePath.split('.') 7 | let ext = '.' + partials.pop() 8 | 9 | if (partials.length > 1 && partials[partials.length - 1] == 'flow') { 10 | ext = '.' + partials.pop() + ext 11 | } 12 | 13 | return ext 14 | } 15 | -------------------------------------------------------------------------------- /src/libs/tmp.js: -------------------------------------------------------------------------------- 1 | import * as tmp from 'tmp' 2 | 3 | export const file = (...args) => new Promise((resolve, reject) => { 4 | const callback = (err, filename, cleanupCallback) => { 5 | if (err) { 6 | reject(err) 7 | } 8 | else { 9 | resolve({ 10 | cleanupCallback, 11 | name: filename, 12 | }) 13 | } 14 | } 15 | 16 | args.push(callback) 17 | 18 | tmp.file(...args) 19 | }) 20 | 21 | export default { 22 | file 23 | } 24 | -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- 1 | // Will use the shortest indention as an axis 2 | export const freeText = (text) => { 3 | if (text instanceof Array) { 4 | text = text.join('') 5 | } 6 | 7 | // This will allow inline text generation with external functions, same as ctrl+shift+c 8 | // As long as we surround the inline text with ==>text<== 9 | text = text.replace( 10 | /( *)==>((?:.|\n)*?)<==/g, 11 | (match, baseIndent, content) => 12 | { 13 | return content 14 | .split('\n') 15 | .map(line => `${baseIndent}${line}`) 16 | .join('\n') 17 | }) 18 | 19 | const lines = text.split('\n') 20 | 21 | const minIndent = lines.filter(line => line.trim()).reduce((minIndent, line) => { 22 | const currIndent = line.match(/^ */)[0].length 23 | 24 | return currIndent < minIndent ? currIndent : minIndent 25 | }, Infinity) 26 | 27 | return lines 28 | .map(line => line.slice(minIndent)) 29 | .join('\n') 30 | .trim() 31 | .replace(/\n +\n/g, '\n\n') 32 | } 33 | 34 | // foo_barBaz -> ['foo', 'bar', 'Baz'] 35 | export const splitWords = (str) => { 36 | return str 37 | .replace(/[A-Z]/, ' $&') 38 | .split(/[^a-zA-Z0-9]+/) 39 | } 40 | 41 | // upper -> Upper 42 | export const toUpperFirst = (str) => { 43 | return str.substr(0, 1).toUpperCase() + str.substr(1).toLowerCase() 44 | } 45 | 46 | // foo-bar-baz -> fooBarBaz 47 | export const toCamelCase = (str) => { 48 | const words = splitWords(str) 49 | const first = words.shift().toLowerCase() 50 | const rest = words.map(toUpperFirst) 51 | 52 | return [first, ...rest].join('') 53 | } 54 | -------------------------------------------------------------------------------- /src/visitor.js: -------------------------------------------------------------------------------- 1 | import * as t from '@babel/types' 2 | import { freeText } from './utils' 3 | 4 | const defaults = { 5 | modules: [ 6 | { 7 | name: 'graphql-tag', 8 | }, 9 | { 10 | name: 'graphql-tag.macro', 11 | }, 12 | { 13 | name: 'gql', 14 | identifier: '@apollo/client', 15 | }, 16 | { 17 | name: 'gatsby', 18 | identifier: 'graphql', 19 | }, 20 | { 21 | name: 'apollo-server-express', 22 | identifier: 'gql' 23 | }, 24 | { 25 | name: 'apollo-server', 26 | identifier: 'gql' 27 | }, 28 | { 29 | name: 'react-relay', 30 | identifier: 'graphql' 31 | }, 32 | { 33 | name: 'apollo-boost', 34 | identifier: 'gql' 35 | }, 36 | { 37 | name: 'apollo-server-koa', 38 | identifier: 'gql', 39 | }, 40 | { 41 | name: 'apollo-server-hapi', 42 | identifier: 'gql', 43 | }, 44 | { 45 | name: 'apollo-server-fastify', 46 | identifier: 'gql', 47 | }, 48 | { 49 | name: ' apollo-server-lambda', 50 | identifier: 'gql', 51 | }, 52 | { 53 | name: 'apollo-server-micro', 54 | identifier: 'gql', 55 | }, 56 | { 57 | name: 'apollo-server-azure-functions', 58 | identifier: 'gql', 59 | }, 60 | { 61 | name: 'apollo-server-cloud-functions', 62 | identifier: 'gql', 63 | }, 64 | { 65 | name: 'apollo-server-cloudflare', 66 | identifier: 'gql', 67 | }, 68 | { 69 | name: 'graphql.macro', 70 | identifier: 'gql', 71 | }, 72 | ], 73 | gqlMagicComment: 'graphql', 74 | } 75 | 76 | export default (code, out, options = {}) => { 77 | // Apply defaults to options 78 | let { modules, globalGqlIdentifierName, gqlMagicComment } = { 79 | ...defaults, 80 | ...options, 81 | } 82 | 83 | // Prevent case related potential errors 84 | gqlMagicComment = gqlMagicComment.toLowerCase() 85 | // normalize `name` and `identifier` values 86 | modules = modules.map(mod => { 87 | return { 88 | name: mod.name, 89 | identifier: mod.identifier && mod.identifier.toLowerCase(), 90 | } 91 | }) 92 | globalGqlIdentifierName = globalGqlIdentifierName && globalGqlIdentifierName.toLowerCase() 93 | 94 | // Keep imported identifiers 95 | // import gql from 'graphql-tag' -> gql 96 | // import { graphql } from 'gatsby' -> graphql 97 | // Will result with ['gql', 'graphql'] 98 | const definedIdentifierNames = [] 99 | 100 | // Will accumulate all template literals 101 | const gqlTemplateLiterals = [] 102 | 103 | // Check if package is registered 104 | function isValidPackage(name) { 105 | return modules.some(pkg => pkg.name && name && pkg.name.toLowerCase() === name.toLowerCase()) 106 | } 107 | 108 | // Check if identifier is defined and imported from registered packages 109 | function isValidIdentifier(name) { 110 | return ( 111 | definedIdentifierNames.some(id => id === name) || 112 | (globalGqlIdentifierName && name === globalGqlIdentifierName) 113 | ) 114 | } 115 | 116 | const pluckStringFromFile = ({ start, end }) => { 117 | return freeText( 118 | code 119 | // Slice quotes 120 | .slice(start + 1, end - 1) 121 | // Erase string interpolations as we gonna export everything as a single 122 | // string anyways 123 | .replace(/\$\{[^}]*\}/g, '') 124 | .split('\\`').join('`') 125 | ) 126 | } 127 | 128 | // Push all template literals leaded by graphql magic comment 129 | // e.g. /* GraphQL */ `query myQuery {}` -> query myQuery {} 130 | const pluckMagicTemplateLiteral = (node, takeExpression) => { 131 | const leadingComments = node.leadingComments 132 | 133 | if (!leadingComments) return 134 | if (!leadingComments.length) return 135 | 136 | const leadingComment = leadingComments[leadingComments.length - 1] 137 | const leadingCommentValue = leadingComment.value.trim().toLowerCase() 138 | 139 | if (leadingCommentValue != gqlMagicComment) return 140 | 141 | const gqlTemplateLiteral = pluckStringFromFile(takeExpression ? node.expression : node) 142 | 143 | if (gqlTemplateLiteral) { 144 | gqlTemplateLiterals.push(gqlTemplateLiteral) 145 | } 146 | } 147 | 148 | return { 149 | CallExpression: { 150 | enter(path) { 151 | // Find the identifier name used from graphql-tag, commonJS 152 | // e.g. import gql from 'graphql-tag' -> gql 153 | if (path.node.callee.name == 'require' && isValidPackage(path.node.arguments[0].value)) { 154 | if (!t.isVariableDeclarator(path.parent)) return 155 | if (!t.isIdentifier(path.parent.id)) return 156 | 157 | definedIdentifierNames.push(path.parent.id.name) 158 | 159 | return 160 | } 161 | 162 | const arg0 = path.node.arguments[0] 163 | 164 | // Push strings template literals to gql calls 165 | // e.g. gql(`query myQuery {}`) -> query myQuery {} 166 | if ( 167 | t.isIdentifier(path.node.callee) && 168 | isValidIdentifier(path.node.callee.name) && 169 | t.isTemplateLiteral(arg0) 170 | ) { 171 | const gqlTemplateLiteral = pluckStringFromFile(arg0) 172 | 173 | // If the entire template was made out of interpolations it should be an empty 174 | // string by now and thus should be ignored 175 | if (gqlTemplateLiteral) { 176 | gqlTemplateLiterals.push(gqlTemplateLiteral) 177 | } 178 | } 179 | }, 180 | }, 181 | 182 | ImportDeclaration: { 183 | enter(path) { 184 | // Find the identifier name used from graphql-tag, es6 185 | // e.g. import gql from 'graphql-tag' -> gql 186 | if (!isValidPackage(path.node.source.value)) return 187 | 188 | const moduleNode = modules.find(pkg => pkg.name.toLowerCase() === path.node.source.value.toLowerCase()) 189 | 190 | const gqlImportSpecifier = path.node.specifiers.find(importSpecifier => { 191 | // When it's a default import and registered package has no named identifier 192 | if (t.isImportDefaultSpecifier(importSpecifier) && !moduleNode.identifier) { 193 | return true 194 | } 195 | 196 | // When it's a named import that matches registered package's identifier 197 | if ( 198 | t.isImportSpecifier(importSpecifier) && 199 | importSpecifier.imported.name === moduleNode.identifier 200 | ) { 201 | return true 202 | } 203 | 204 | return false 205 | }) 206 | 207 | if (!gqlImportSpecifier) return 208 | 209 | definedIdentifierNames.push(gqlImportSpecifier.local.name) 210 | }, 211 | }, 212 | 213 | ExpressionStatement: { 214 | exit(path) { 215 | // Push all template literals leaded by graphql magic comment 216 | // e.g. /* GraphQL */ `query myQuery {}` -> query myQuery {} 217 | 218 | if (!t.isTemplateLiteral(path.node.expression)) return 219 | 220 | pluckMagicTemplateLiteral(path.node, true) 221 | }, 222 | }, 223 | 224 | TemplateLiteral: { 225 | exit(path) { 226 | pluckMagicTemplateLiteral(path.node) 227 | }, 228 | }, 229 | 230 | TaggedTemplateExpression: { 231 | exit(path) { 232 | // Push all template literals provided to the found identifier name 233 | // e.g. gql `query myQuery {}` -> query myQuery {} 234 | if (!t.isIdentifier(path.node.tag) || !isValidIdentifier(path.node.tag.name)) { 235 | return 236 | } 237 | 238 | const gqlTemplateLiteral = pluckStringFromFile(path.node.quasi) 239 | 240 | if (gqlTemplateLiteral) { 241 | gqlTemplateLiterals.push(gqlTemplateLiteral) 242 | } 243 | }, 244 | }, 245 | 246 | exit() { 247 | out.returnValue = gqlTemplateLiterals.join('\n\n') 248 | }, 249 | } 250 | } 251 | -------------------------------------------------------------------------------- /webpack_config.js: -------------------------------------------------------------------------------- 1 | const path = require('path') 2 | const webpack = require('webpack') 3 | const nodeExternals = require('webpack-node-externals') 4 | 5 | module.exports = { 6 | devtool: 'sourcemap', 7 | entry: [ 8 | path.resolve(__dirname, 'src') 9 | ], 10 | output: { 11 | path: path.resolve(__dirname, 'build'), 12 | filename: 'graphql-tag-pluck.js', 13 | library: '', 14 | libraryTarget: 'commonjs2' 15 | }, 16 | mode: 'none', 17 | target: 'node', 18 | module: { 19 | rules: [ 20 | { 21 | test: /\.js$/, 22 | exclude: [/node_modules/], 23 | use: [ 24 | 'babel-loader' 25 | ] 26 | }, 27 | { 28 | test: /\.json$/, 29 | loader: 'json-loader' 30 | } 31 | ] 32 | }, 33 | plugins: [ 34 | new webpack.BannerPlugin({ 35 | banner: 'require("source-map-support").install();', 36 | entryOnly: false, 37 | raw: true 38 | }) 39 | ], 40 | externals: [nodeExternals()], 41 | node: { 42 | __dirname: false, 43 | __filename: true, 44 | }, 45 | } 46 | --------------------------------------------------------------------------------