├── .gitignore
├── .npmignore
├── .travis.yml
├── License
├── README.md
├── package.json
├── src
└── index.ts
├── tsconfig.json
├── tslint.json
└── yarn.lock
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules/
2 | dist/
3 | .DS_Store
4 | yarn-error.log
5 | temp.js
6 | package-lock.json
7 |
--------------------------------------------------------------------------------
/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules/
2 | yarn-error.log
3 | temp.js
4 | package-lock.json
5 | tsconfig.json
6 | tslint.json
7 | .vscode/
8 | src/
9 | .travis.yml
10 |
--------------------------------------------------------------------------------
/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js: stable
3 |
4 | # Travis-CI Caching
5 | cache:
6 | directories:
7 | - node_modules
8 | yarn: true
9 |
10 | # S: Build Lifecycle
11 | install:
12 | - yarn
13 |
14 | stages:
15 | - name: deploy
16 |
17 | jobs:
18 | include:
19 | - stage: deploy
20 | script:
21 | - npm run build
22 | deploy:
23 | provider: npm
24 | email: "marksz@teamsz.xyz"
25 | api_key: "${NPM_TOKEN}"
26 | skip_cleanup: true
27 | on:
28 | branch: master
29 | branches:
30 | only:
31 | - master
32 |
--------------------------------------------------------------------------------
/License:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2018 Molunerfinn
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | ## picgo-plugin-autocopy
2 |
3 | A [picgo](https://github.com/PicGo/PicGo-Core) plugin for auto copying url to clipboard after uploading.
4 |
5 | > CLI Only.
6 |
7 | 
8 |
9 | **It's useless for the electron version of [PicGo](https://github.com/Molunerfinn/PicGo) since it already has this feature. It's useful when you are using picgo in CLI.**
10 |
11 | ## Installation
12 |
13 | ```bash
14 | picgo install autocopy
15 | ```
16 |
17 | ## Configuration
18 |
19 | `picgo-plugin-autocopy` supports 5 kinds of url types:
20 |
21 | - markdown
22 | - URL (default)
23 | - HTML
24 | - UBB
25 | - Custom
26 |
27 | To change the default type of url, please run:
28 |
29 | ```bash
30 | picgo set plugin autocopy
31 | ```
32 |
33 | **Custom** means you can create your own types of url for copying. Just place the `$url` to your own string.
34 |
35 | For example:
36 |
37 | ```
38 |
39 | ```
40 |
41 | And it will be coverted to:
42 |
43 | ```
44 |
45 | ```
46 |
47 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "picgo-plugin-autocopy",
3 | "version": "1.0.5",
4 | "description": "A picgo plugin for auto copying url to clipboard after uploading",
5 | "main": "dist/index.js",
6 | "publishConfig": {
7 | "access": "public"
8 | },
9 | "scripts": {
10 | "test": "echo \"Error: no test specified\" && exit 1",
11 | "build": "tsc -p .",
12 | "dev": "tsc -w -p .",
13 | "patch": "npm version patch && git push origin master && git push origin --tags",
14 | "minor": "npm version minor && git push origin master && git push origin --tags",
15 | "major": "npm version major && git push origin master && git push origin --tags"
16 | },
17 | "keywords": [
18 | "picgo",
19 | "picgo-plugin",
20 | "copy"
21 | ],
22 | "author": "Molunerfinn",
23 | "license": "MIT",
24 | "devDependencies": {
25 | "@types/clipboardy": "^1.1.0",
26 | "@types/node": "^10.10.1",
27 | "eslint": "^5.0.1",
28 | "eslint-config-standard": "^11.0.0",
29 | "eslint-plugin-import": "^2.13.0",
30 | "eslint-plugin-node": "^6.0.1",
31 | "eslint-plugin-promise": "^3.8.0",
32 | "eslint-plugin-standard": "^3.1.0",
33 | "picgo": "^1.1.0",
34 | "tslint": "^5.10.0",
35 | "tslint-config-standard": "^7.1.0",
36 | "typescript": "^3.0.3"
37 | },
38 | "dependencies": {
39 | "clipboardy": "^1.2.3"
40 | },
41 | "repository": {
42 | "type": "git",
43 | "url": "git+https://github.com/PicGo/picgo-plugin-autocopy.git"
44 | }
45 | }
46 |
--------------------------------------------------------------------------------
/src/index.ts:
--------------------------------------------------------------------------------
1 | import picgo from 'picgo'
2 | import os from 'os'
3 | import clipboardy from 'clipboardy'
4 |
5 | export = (ctx: picgo) => {
6 | const config = (ctx: picgo) => {
7 | let userConfig = ctx.getConfig('picgo-plugin-autocopy')
8 | if (!userConfig) {
9 | userConfig = {}
10 | }
11 | const config = [
12 | {
13 | name: 'template',
14 | type: 'list',
15 | choices: ['markdown', 'HTML', 'URL', 'UBB', 'Custom'],
16 | default: 'URL'
17 | },
18 | {
19 | name: 'customLink',
20 | type: 'input',
21 | message: 'Please place the $url to where you want.',
22 | when (answer) {
23 | return answer.template === 'Custom'
24 | },
25 | default: '$url'
26 | }
27 | ]
28 | return config
29 | }
30 |
31 | const register = () => {
32 | ctx.on('finished', (msg: picgo) => {
33 | const customLink = ctx.getConfig('picgo-plugin-autocopy.customLink') || '$url'
34 | const pasteType = ctx.getConfig('picgo-plugin-autocopy.template') || 'URL'
35 | const tpl = url => {
36 | return {
37 | 'markdown': ``,
38 | 'HTML': `
`,
39 | 'URL': url,
40 | 'UBB': `[IMG]${url}[/IMG]`,
41 | 'Custom': customLink.replace(/\$url/g, url)
42 | }
43 | }
44 | let urls = ''
45 | let newline = os.platform() === 'win32' ? '\r\n' : '\n'
46 | msg.output.forEach(item => {
47 | urls += tpl(item.imgUrl)[pasteType] + newline
48 | })
49 | clipboardy.writeSync(urls)
50 | })
51 | }
52 | return {
53 | register,
54 | config
55 | }
56 | }
57 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "module": "commonjs",
4 | "moduleResolution": "node",
5 | "resolveJsonModule": true,
6 | "esModuleInterop": true,
7 | "allowSyntheticDefaultImports": true,
8 | "sourceMap": false,
9 | "target": "es2017",
10 | "declaration": true,
11 | "outDir": "dist",
12 | // It's shit.
13 | // "baseUrl": "src",
14 | // "paths": {
15 | // "@core/*": ["core/*"],
16 | // "@lib/*": ["lib/*"],
17 | // "@plugins/*": ["plugins/*"],
18 | // "@utils/*": ["utils/*"]
19 | // },
20 | "lib": [
21 | "es2017",
22 | "es2015",
23 | "es6"
24 | ]
25 | },
26 | "include": [
27 | "./src/**/*"
28 | ]
29 | }
30 |
--------------------------------------------------------------------------------
/tslint.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "tslint-config-standard",
3 | "compilerOptions": {
4 | "module": "commonjs",
5 | "sourceMap": true,
6 | "target": "es6",
7 | "types": [
8 | "mocha",
9 | "chai",
10 | "jest"
11 | ]
12 | }
13 | }
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@babel/code-frame@^7.0.0":
6 | version "7.0.0"
7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0.tgz#06e2ab19bdb535385559aabb5ba59729482800f8"
8 | dependencies:
9 | "@babel/highlight" "^7.0.0"
10 |
11 | "@babel/highlight@^7.0.0":
12 | version "7.0.0"
13 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0.tgz#f710c38c8d458e6dd9a201afb637fcb781ce99e4"
14 | dependencies:
15 | chalk "^2.0.0"
16 | esutils "^2.0.2"
17 | js-tokens "^4.0.0"
18 |
19 | "@types/clipboardy@^1.1.0":
20 | version "1.1.0"
21 | resolved "https://registry.yarnpkg.com/@types/clipboardy/-/clipboardy-1.1.0.tgz#316fe1a3ed71b1a51becb925e7e0497986c6a85c"
22 |
23 | "@types/node@^10.10.1":
24 | version "10.10.1"
25 | resolved "https://registry.yarnpkg.com/@types/node/-/node-10.10.1.tgz#d5c96ca246a418404914d180b7fdd625ad18eca6"
26 |
27 | acorn-jsx@^4.1.1:
28 | version "4.1.1"
29 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-4.1.1.tgz#e8e41e48ea2fe0c896740610ab6a4ffd8add225e"
30 | dependencies:
31 | acorn "^5.0.3"
32 |
33 | acorn@^5.0.3, acorn@^5.6.0:
34 | version "5.7.3"
35 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279"
36 |
37 | address@>=0.0.1:
38 | version "1.0.3"
39 | resolved "https://registry.yarnpkg.com/address/-/address-1.0.3.tgz#b5f50631f8d6cec8bd20c963963afb55e06cbce9"
40 |
41 | agentkeepalive@3.3.0:
42 | version "3.3.0"
43 | resolved "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-3.3.0.tgz#6d5de5829afd3be2712201a39275fd11c651857c"
44 | dependencies:
45 | humanize-ms "^1.2.1"
46 |
47 | ajv-keywords@^3.0.0:
48 | version "3.2.0"
49 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.2.0.tgz#e86b819c602cf8821ad637413698f1dec021847a"
50 |
51 | ajv@^5.3.0:
52 | version "5.5.2"
53 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965"
54 | dependencies:
55 | co "^4.6.0"
56 | fast-deep-equal "^1.0.0"
57 | fast-json-stable-stringify "^2.0.0"
58 | json-schema-traverse "^0.3.0"
59 |
60 | ajv@^6.0.1, ajv@^6.5.3:
61 | version "6.5.3"
62 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.5.3.tgz#71a569d189ecf4f4f321224fecb166f071dd90f9"
63 | dependencies:
64 | fast-deep-equal "^2.0.1"
65 | fast-json-stable-stringify "^2.0.0"
66 | json-schema-traverse "^0.4.1"
67 | uri-js "^4.2.2"
68 |
69 | ansi-escapes@^3.0.0:
70 | version "3.1.0"
71 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.1.0.tgz#f73207bb81207d75fd6c83f125af26eea378ca30"
72 |
73 | ansi-regex@^2.0.0:
74 | version "2.1.1"
75 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
76 |
77 | ansi-regex@^3.0.0:
78 | version "3.0.0"
79 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
80 |
81 | ansi-styles@^2.2.1:
82 | version "2.2.1"
83 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
84 |
85 | ansi-styles@^3.2.1:
86 | version "3.2.1"
87 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
88 | dependencies:
89 | color-convert "^1.9.0"
90 |
91 | any-promise@^1.3.0:
92 | version "1.3.0"
93 | resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f"
94 |
95 | arch@^2.1.0:
96 | version "2.1.1"
97 | resolved "https://registry.yarnpkg.com/arch/-/arch-2.1.1.tgz#8f5c2731aa35a30929221bb0640eed65175ec84e"
98 |
99 | argparse@^1.0.7:
100 | version "1.0.10"
101 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
102 | dependencies:
103 | sprintf-js "~1.0.2"
104 |
105 | array-union@^1.0.1:
106 | version "1.0.2"
107 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
108 | dependencies:
109 | array-uniq "^1.0.1"
110 |
111 | array-uniq@^1.0.1:
112 | version "1.0.3"
113 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
114 |
115 | arrify@^1.0.0:
116 | version "1.0.1"
117 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
118 |
119 | asn1@~0.2.3:
120 | version "0.2.4"
121 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136"
122 | dependencies:
123 | safer-buffer "~2.1.0"
124 |
125 | assert-plus@1.0.0, assert-plus@^1.0.0:
126 | version "1.0.0"
127 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
128 |
129 | asynckit@^0.4.0:
130 | version "0.4.0"
131 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
132 |
133 | aws-sign2@~0.7.0:
134 | version "0.7.0"
135 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"
136 |
137 | aws4@^1.8.0:
138 | version "1.8.0"
139 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.8.0.tgz#f0e003d9ca9e7f59c7a508945d7b2ef9a04a542f"
140 |
141 | babel-code-frame@^6.22.0:
142 | version "6.26.0"
143 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"
144 | dependencies:
145 | chalk "^1.1.3"
146 | esutils "^2.0.2"
147 | js-tokens "^3.0.2"
148 |
149 | balanced-match@^1.0.0:
150 | version "1.0.0"
151 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
152 |
153 | bcrypt-pbkdf@^1.0.0:
154 | version "1.0.2"
155 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e"
156 | dependencies:
157 | tweetnacl "^0.14.3"
158 |
159 | brace-expansion@^1.1.7:
160 | version "1.1.11"
161 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
162 | dependencies:
163 | balanced-match "^1.0.0"
164 | concat-map "0.0.1"
165 |
166 | builtin-modules@^1.0.0, builtin-modules@^1.1.1:
167 | version "1.1.1"
168 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
169 |
170 | caller-path@^0.1.0:
171 | version "0.1.0"
172 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f"
173 | dependencies:
174 | callsites "^0.2.0"
175 |
176 | callsites@^0.2.0:
177 | version "0.2.0"
178 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca"
179 |
180 | caseless@~0.12.0:
181 | version "0.12.0"
182 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
183 |
184 | chalk@^1.1.3:
185 | version "1.1.3"
186 | resolved "http://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
187 | dependencies:
188 | ansi-styles "^2.2.1"
189 | escape-string-regexp "^1.0.2"
190 | has-ansi "^2.0.0"
191 | strip-ansi "^3.0.0"
192 | supports-color "^2.0.0"
193 |
194 | chalk@^2.0.0, chalk@^2.1.0, chalk@^2.3.0, chalk@^2.4.1:
195 | version "2.4.1"
196 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e"
197 | dependencies:
198 | ansi-styles "^3.2.1"
199 | escape-string-regexp "^1.0.5"
200 | supports-color "^5.3.0"
201 |
202 | chardet@^0.7.0:
203 | version "0.7.0"
204 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e"
205 |
206 | charenc@~0.0.1:
207 | version "0.0.2"
208 | resolved "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667"
209 |
210 | circular-json@^0.3.1:
211 | version "0.3.3"
212 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66"
213 |
214 | cli-cursor@^2.1.0:
215 | version "2.1.0"
216 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5"
217 | dependencies:
218 | restore-cursor "^2.0.0"
219 |
220 | cli-width@^2.0.0:
221 | version "2.2.0"
222 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639"
223 |
224 | clipboardy@^1.2.3:
225 | version "1.2.3"
226 | resolved "https://registry.yarnpkg.com/clipboardy/-/clipboardy-1.2.3.tgz#0526361bf78724c1f20be248d428e365433c07ef"
227 | dependencies:
228 | arch "^2.1.0"
229 | execa "^0.8.0"
230 |
231 | co@^4.6.0:
232 | version "4.6.0"
233 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
234 |
235 | color-convert@^1.9.0:
236 | version "1.9.3"
237 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
238 | dependencies:
239 | color-name "1.1.3"
240 |
241 | color-name@1.1.3:
242 | version "1.1.3"
243 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
244 |
245 | combined-stream@1.0.6:
246 | version "1.0.6"
247 | resolved "http://registry.npmjs.org/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818"
248 | dependencies:
249 | delayed-stream "~1.0.0"
250 |
251 | combined-stream@~1.0.6:
252 | version "1.0.7"
253 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.7.tgz#2d1d24317afb8abe95d6d2c0b07b57813539d828"
254 | dependencies:
255 | delayed-stream "~1.0.0"
256 |
257 | commander@^2.12.1, commander@^2.17.0:
258 | version "2.18.0"
259 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.18.0.tgz#2bf063ddee7c7891176981a2cc798e5754bc6970"
260 |
261 | concat-map@0.0.1:
262 | version "0.0.1"
263 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
264 |
265 | contains-path@^0.1.0:
266 | version "0.1.0"
267 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a"
268 |
269 | content-type@^1.0.2:
270 | version "1.0.4"
271 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b"
272 |
273 | core-util-is@1.0.2:
274 | version "1.0.2"
275 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
276 |
277 | crc32@0.2.2:
278 | version "0.2.2"
279 | resolved "https://registry.yarnpkg.com/crc32/-/crc32-0.2.2.tgz#7ad220d6ffdcd119f9fc127a7772cacea390a4ba"
280 |
281 | cross-spawn@^5.0.1:
282 | version "5.1.0"
283 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449"
284 | dependencies:
285 | lru-cache "^4.0.1"
286 | shebang-command "^1.2.0"
287 | which "^1.2.9"
288 |
289 | cross-spawn@^6.0.5:
290 | version "6.0.5"
291 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"
292 | dependencies:
293 | nice-try "^1.0.4"
294 | path-key "^2.0.1"
295 | semver "^5.5.0"
296 | shebang-command "^1.2.0"
297 | which "^1.2.9"
298 |
299 | crypt@~0.0.1:
300 | version "0.0.2"
301 | resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b"
302 |
303 | dashdash@^1.12.0:
304 | version "1.14.1"
305 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
306 | dependencies:
307 | assert-plus "^1.0.0"
308 |
309 | dayjs@^1.7.4:
310 | version "1.7.5"
311 | resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.7.5.tgz#14715cb565d1f8cb556a8531cb14bf1fc33067cc"
312 |
313 | debug@^2.6.0, debug@^2.6.8, debug@^2.6.9:
314 | version "2.6.9"
315 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
316 | dependencies:
317 | ms "2.0.0"
318 |
319 | debug@^3.1.0:
320 | version "3.2.5"
321 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.5.tgz#c2418fbfd7a29f4d4f70ff4cea604d4b64c46407"
322 | dependencies:
323 | ms "^2.1.1"
324 |
325 | deep-is@~0.1.3:
326 | version "0.1.3"
327 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
328 |
329 | default-user-agent@^1.0.0:
330 | version "1.0.0"
331 | resolved "https://registry.yarnpkg.com/default-user-agent/-/default-user-agent-1.0.0.tgz#16c46efdcaba3edc45f24f2bd4868b01b7c2adc6"
332 | dependencies:
333 | os-name "~1.0.3"
334 |
335 | del@^2.0.2:
336 | version "2.2.2"
337 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8"
338 | dependencies:
339 | globby "^5.0.0"
340 | is-path-cwd "^1.0.0"
341 | is-path-in-cwd "^1.0.0"
342 | object-assign "^4.0.1"
343 | pify "^2.0.0"
344 | pinkie-promise "^2.0.0"
345 | rimraf "^2.2.8"
346 |
347 | delayed-stream@~1.0.0:
348 | version "1.0.0"
349 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
350 |
351 | destroy@^1.0.4:
352 | version "1.0.4"
353 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80"
354 |
355 | diff@^3.2.0:
356 | version "3.5.0"
357 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12"
358 |
359 | digest-header@^0.0.1:
360 | version "0.0.1"
361 | resolved "https://registry.yarnpkg.com/digest-header/-/digest-header-0.0.1.tgz#11ccf6deec5766ac379744d901c12cba49514be6"
362 | dependencies:
363 | utility "0.1.11"
364 |
365 | doctrine@0.7.2:
366 | version "0.7.2"
367 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-0.7.2.tgz#7cb860359ba3be90e040b26b729ce4bfa654c523"
368 | dependencies:
369 | esutils "^1.1.6"
370 | isarray "0.0.1"
371 |
372 | doctrine@1.5.0:
373 | version "1.5.0"
374 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa"
375 | dependencies:
376 | esutils "^2.0.2"
377 | isarray "^1.0.0"
378 |
379 | doctrine@^2.1.0:
380 | version "2.1.0"
381 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d"
382 | dependencies:
383 | esutils "^2.0.2"
384 |
385 | ecc-jsbn@~0.1.1:
386 | version "0.1.2"
387 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9"
388 | dependencies:
389 | jsbn "~0.1.0"
390 | safer-buffer "^2.1.0"
391 |
392 | ee-first@~1.1.1:
393 | version "1.1.1"
394 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
395 |
396 | encodeurl@^1.0.1:
397 | version "1.0.2"
398 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"
399 |
400 | error-ex@^1.2.0:
401 | version "1.3.2"
402 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
403 | dependencies:
404 | is-arrayish "^0.2.1"
405 |
406 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
407 | version "1.0.5"
408 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
409 |
410 | eslint-config-standard@^11.0.0:
411 | version "11.0.0"
412 | resolved "http://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-11.0.0.tgz#87ee0d3c9d95382dc761958cbb23da9eea31e0ba"
413 |
414 | eslint-import-resolver-node@^0.3.1:
415 | version "0.3.2"
416 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.2.tgz#58f15fb839b8d0576ca980413476aab2472db66a"
417 | dependencies:
418 | debug "^2.6.9"
419 | resolve "^1.5.0"
420 |
421 | eslint-module-utils@^2.2.0:
422 | version "2.2.0"
423 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.2.0.tgz#b270362cd88b1a48ad308976ce7fa54e98411746"
424 | dependencies:
425 | debug "^2.6.8"
426 | pkg-dir "^1.0.0"
427 |
428 | eslint-plugin-import@^2.13.0:
429 | version "2.14.0"
430 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.14.0.tgz#6b17626d2e3e6ad52cfce8807a845d15e22111a8"
431 | dependencies:
432 | contains-path "^0.1.0"
433 | debug "^2.6.8"
434 | doctrine "1.5.0"
435 | eslint-import-resolver-node "^0.3.1"
436 | eslint-module-utils "^2.2.0"
437 | has "^1.0.1"
438 | lodash "^4.17.4"
439 | minimatch "^3.0.3"
440 | read-pkg-up "^2.0.0"
441 | resolve "^1.6.0"
442 |
443 | eslint-plugin-node@^6.0.1:
444 | version "6.0.1"
445 | resolved "https://registry.yarnpkg.com/eslint-plugin-node/-/eslint-plugin-node-6.0.1.tgz#bf19642298064379315d7a4b2a75937376fa05e4"
446 | dependencies:
447 | ignore "^3.3.6"
448 | minimatch "^3.0.4"
449 | resolve "^1.3.3"
450 | semver "^5.4.1"
451 |
452 | eslint-plugin-promise@^3.8.0:
453 | version "3.8.0"
454 | resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-3.8.0.tgz#65ebf27a845e3c1e9d6f6a5622ddd3801694b621"
455 |
456 | eslint-plugin-standard@^3.1.0:
457 | version "3.1.0"
458 | resolved "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-3.1.0.tgz#2a9e21259ba4c47c02d53b2d0c9135d4b1022d47"
459 |
460 | eslint-scope@^4.0.0:
461 | version "4.0.0"
462 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.0.tgz#50bf3071e9338bcdc43331794a0cb533f0136172"
463 | dependencies:
464 | esrecurse "^4.1.0"
465 | estraverse "^4.1.1"
466 |
467 | eslint-utils@^1.3.1:
468 | version "1.3.1"
469 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.3.1.tgz#9a851ba89ee7c460346f97cf8939c7298827e512"
470 |
471 | eslint-visitor-keys@^1.0.0:
472 | version "1.0.0"
473 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d"
474 |
475 | eslint@^5.0.1:
476 | version "5.6.0"
477 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-5.6.0.tgz#b6f7806041af01f71b3f1895cbb20971ea4b6223"
478 | dependencies:
479 | "@babel/code-frame" "^7.0.0"
480 | ajv "^6.5.3"
481 | chalk "^2.1.0"
482 | cross-spawn "^6.0.5"
483 | debug "^3.1.0"
484 | doctrine "^2.1.0"
485 | eslint-scope "^4.0.0"
486 | eslint-utils "^1.3.1"
487 | eslint-visitor-keys "^1.0.0"
488 | espree "^4.0.0"
489 | esquery "^1.0.1"
490 | esutils "^2.0.2"
491 | file-entry-cache "^2.0.0"
492 | functional-red-black-tree "^1.0.1"
493 | glob "^7.1.2"
494 | globals "^11.7.0"
495 | ignore "^4.0.6"
496 | imurmurhash "^0.1.4"
497 | inquirer "^6.1.0"
498 | is-resolvable "^1.1.0"
499 | js-yaml "^3.12.0"
500 | json-stable-stringify-without-jsonify "^1.0.1"
501 | levn "^0.3.0"
502 | lodash "^4.17.5"
503 | minimatch "^3.0.4"
504 | mkdirp "^0.5.1"
505 | natural-compare "^1.4.0"
506 | optionator "^0.8.2"
507 | path-is-inside "^1.0.2"
508 | pluralize "^7.0.0"
509 | progress "^2.0.0"
510 | regexpp "^2.0.0"
511 | require-uncached "^1.0.3"
512 | semver "^5.5.1"
513 | strip-ansi "^4.0.0"
514 | strip-json-comments "^2.0.1"
515 | table "^4.0.3"
516 | text-table "^0.2.0"
517 |
518 | espree@^4.0.0:
519 | version "4.0.0"
520 | resolved "https://registry.yarnpkg.com/espree/-/espree-4.0.0.tgz#253998f20a0f82db5d866385799d912a83a36634"
521 | dependencies:
522 | acorn "^5.6.0"
523 | acorn-jsx "^4.1.1"
524 |
525 | esprima@^4.0.0:
526 | version "4.0.1"
527 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
528 |
529 | esquery@^1.0.1:
530 | version "1.0.1"
531 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708"
532 | dependencies:
533 | estraverse "^4.0.0"
534 |
535 | esrecurse@^4.1.0:
536 | version "4.2.1"
537 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf"
538 | dependencies:
539 | estraverse "^4.1.0"
540 |
541 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1:
542 | version "4.2.0"
543 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13"
544 |
545 | esutils@^1.1.6:
546 | version "1.1.6"
547 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-1.1.6.tgz#c01ccaa9ae4b897c6d0c3e210ae52f3c7a844375"
548 |
549 | esutils@^2.0.2:
550 | version "2.0.2"
551 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
552 |
553 | execa@^0.8.0:
554 | version "0.8.0"
555 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.8.0.tgz#d8d76bbc1b55217ed190fd6dd49d3c774ecfc8da"
556 | dependencies:
557 | cross-spawn "^5.0.1"
558 | get-stream "^3.0.0"
559 | is-stream "^1.1.0"
560 | npm-run-path "^2.0.0"
561 | p-finally "^1.0.0"
562 | signal-exit "^3.0.0"
563 | strip-eof "^1.0.0"
564 |
565 | extend@~3.0.2:
566 | version "3.0.2"
567 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa"
568 |
569 | external-editor@^3.0.0:
570 | version "3.0.3"
571 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.0.3.tgz#5866db29a97826dbe4bf3afd24070ead9ea43a27"
572 | dependencies:
573 | chardet "^0.7.0"
574 | iconv-lite "^0.4.24"
575 | tmp "^0.0.33"
576 |
577 | extsprintf@1.3.0:
578 | version "1.3.0"
579 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05"
580 |
581 | extsprintf@^1.2.0:
582 | version "1.4.0"
583 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f"
584 |
585 | fast-deep-equal@^1.0.0:
586 | version "1.1.0"
587 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614"
588 |
589 | fast-deep-equal@^2.0.1:
590 | version "2.0.1"
591 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49"
592 |
593 | fast-json-stable-stringify@^2.0.0:
594 | version "2.0.0"
595 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2"
596 |
597 | fast-levenshtein@~2.0.4:
598 | version "2.0.6"
599 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
600 |
601 | figures@^2.0.0:
602 | version "2.0.0"
603 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962"
604 | dependencies:
605 | escape-string-regexp "^1.0.5"
606 |
607 | file-entry-cache@^2.0.0:
608 | version "2.0.0"
609 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361"
610 | dependencies:
611 | flat-cache "^1.2.1"
612 | object-assign "^4.0.1"
613 |
614 | find-up@^1.0.0:
615 | version "1.1.2"
616 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"
617 | dependencies:
618 | path-exists "^2.0.0"
619 | pinkie-promise "^2.0.0"
620 |
621 | find-up@^2.0.0:
622 | version "2.1.0"
623 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
624 | dependencies:
625 | locate-path "^2.0.0"
626 |
627 | flat-cache@^1.2.1:
628 | version "1.3.0"
629 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.0.tgz#d3030b32b38154f4e3b7e9c709f490f7ef97c481"
630 | dependencies:
631 | circular-json "^0.3.1"
632 | del "^2.0.2"
633 | graceful-fs "^4.1.2"
634 | write "^0.2.1"
635 |
636 | forever-agent@~0.6.1:
637 | version "0.6.1"
638 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
639 |
640 | form-data@~2.3.2:
641 | version "2.3.2"
642 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.2.tgz#4970498be604c20c005d4f5c23aecd21d6b49099"
643 | dependencies:
644 | asynckit "^0.4.0"
645 | combined-stream "1.0.6"
646 | mime-types "^2.1.12"
647 |
648 | formstream@1.1.0:
649 | version "1.1.0"
650 | resolved "https://registry.yarnpkg.com/formstream/-/formstream-1.1.0.tgz#51f3970f26136eb0ad44304de4cebb50207b4479"
651 | dependencies:
652 | destroy "^1.0.4"
653 | mime "^1.3.4"
654 | pause-stream "~0.0.11"
655 |
656 | fs-extra@^6.0.1:
657 | version "6.0.1"
658 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-6.0.1.tgz#8abc128f7946e310135ddc93b98bddb410e7a34b"
659 | dependencies:
660 | graceful-fs "^4.1.2"
661 | jsonfile "^4.0.0"
662 | universalify "^0.1.0"
663 |
664 | fs.realpath@^1.0.0:
665 | version "1.0.0"
666 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
667 |
668 | function-bind@^1.1.1:
669 | version "1.1.1"
670 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
671 |
672 | functional-red-black-tree@^1.0.1:
673 | version "1.0.1"
674 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
675 |
676 | get-stream@^3.0.0:
677 | version "3.0.0"
678 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14"
679 |
680 | getpass@^0.1.1:
681 | version "0.1.7"
682 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa"
683 | dependencies:
684 | assert-plus "^1.0.0"
685 |
686 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2:
687 | version "7.1.3"
688 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1"
689 | dependencies:
690 | fs.realpath "^1.0.0"
691 | inflight "^1.0.4"
692 | inherits "2"
693 | minimatch "^3.0.4"
694 | once "^1.3.0"
695 | path-is-absolute "^1.0.0"
696 |
697 | globals@^11.7.0:
698 | version "11.7.0"
699 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.7.0.tgz#a583faa43055b1aca771914bf68258e2fc125673"
700 |
701 | globby@^5.0.0:
702 | version "5.0.0"
703 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d"
704 | dependencies:
705 | array-union "^1.0.1"
706 | arrify "^1.0.0"
707 | glob "^7.0.3"
708 | object-assign "^4.0.1"
709 | pify "^2.0.0"
710 | pinkie-promise "^2.0.0"
711 |
712 | graceful-fs@^4.1.2, graceful-fs@^4.1.3, graceful-fs@^4.1.6:
713 | version "4.1.11"
714 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
715 |
716 | har-schema@^2.0.0:
717 | version "2.0.0"
718 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92"
719 |
720 | har-validator@~5.1.0:
721 | version "5.1.0"
722 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.0.tgz#44657f5688a22cfd4b72486e81b3a3fb11742c29"
723 | dependencies:
724 | ajv "^5.3.0"
725 | har-schema "^2.0.0"
726 |
727 | has-ansi@^2.0.0:
728 | version "2.0.0"
729 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
730 | dependencies:
731 | ansi-regex "^2.0.0"
732 |
733 | has-flag@^3.0.0:
734 | version "3.0.0"
735 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
736 |
737 | has@^1.0.1:
738 | version "1.0.3"
739 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
740 | dependencies:
741 | function-bind "^1.1.1"
742 |
743 | hosted-git-info@^2.1.4:
744 | version "2.7.1"
745 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.7.1.tgz#97f236977bd6e125408930ff6de3eec6281ec047"
746 |
747 | http-signature@~1.2.0:
748 | version "1.2.0"
749 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1"
750 | dependencies:
751 | assert-plus "^1.0.0"
752 | jsprim "^1.2.2"
753 | sshpk "^1.7.0"
754 |
755 | humanize-ms@^1.2.0, humanize-ms@^1.2.1:
756 | version "1.2.1"
757 | resolved "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed"
758 | dependencies:
759 | ms "^2.0.0"
760 |
761 | iconv-lite@^0.4.15, iconv-lite@^0.4.24:
762 | version "0.4.24"
763 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
764 | dependencies:
765 | safer-buffer ">= 2.1.2 < 3"
766 |
767 | ignore@^3.3.6:
768 | version "3.3.10"
769 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043"
770 |
771 | ignore@^4.0.6:
772 | version "4.0.6"
773 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc"
774 |
775 | image-size@^0.6.3:
776 | version "0.6.3"
777 | resolved "https://registry.yarnpkg.com/image-size/-/image-size-0.6.3.tgz#e7e5c65bb534bd7cdcedd6cb5166272a85f75fb2"
778 |
779 | imurmurhash@^0.1.4:
780 | version "0.1.4"
781 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
782 |
783 | inflight@^1.0.4:
784 | version "1.0.6"
785 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
786 | dependencies:
787 | once "^1.3.0"
788 | wrappy "1"
789 |
790 | inherits@2:
791 | version "2.0.3"
792 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
793 |
794 | inquirer@^6.0.0, inquirer@^6.1.0:
795 | version "6.2.0"
796 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.2.0.tgz#51adcd776f661369dc1e894859c2560a224abdd8"
797 | dependencies:
798 | ansi-escapes "^3.0.0"
799 | chalk "^2.0.0"
800 | cli-cursor "^2.1.0"
801 | cli-width "^2.0.0"
802 | external-editor "^3.0.0"
803 | figures "^2.0.0"
804 | lodash "^4.17.10"
805 | mute-stream "0.0.7"
806 | run-async "^2.2.0"
807 | rxjs "^6.1.0"
808 | string-width "^2.1.0"
809 | strip-ansi "^4.0.0"
810 | through "^2.3.6"
811 |
812 | is-arrayish@^0.2.1:
813 | version "0.2.1"
814 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
815 |
816 | is-buffer@~1.1.1:
817 | version "1.1.6"
818 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
819 |
820 | is-builtin-module@^1.0.0:
821 | version "1.0.0"
822 | resolved "http://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe"
823 | dependencies:
824 | builtin-modules "^1.0.0"
825 |
826 | is-fullwidth-code-point@^2.0.0:
827 | version "2.0.0"
828 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
829 |
830 | is-path-cwd@^1.0.0:
831 | version "1.0.0"
832 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d"
833 |
834 | is-path-in-cwd@^1.0.0:
835 | version "1.0.1"
836 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz#5ac48b345ef675339bd6c7a48a912110b241cf52"
837 | dependencies:
838 | is-path-inside "^1.0.0"
839 |
840 | is-path-inside@^1.0.0:
841 | version "1.0.1"
842 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036"
843 | dependencies:
844 | path-is-inside "^1.0.1"
845 |
846 | is-promise@^2.1.0:
847 | version "2.1.0"
848 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa"
849 |
850 | is-resolvable@^1.1.0:
851 | version "1.1.0"
852 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88"
853 |
854 | is-stream@^1.1.0:
855 | version "1.1.0"
856 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
857 |
858 | is-typedarray@~1.0.0:
859 | version "1.0.0"
860 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
861 |
862 | isarray@0.0.1:
863 | version "0.0.1"
864 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf"
865 |
866 | isarray@^1.0.0:
867 | version "1.0.0"
868 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
869 |
870 | isexe@^2.0.0:
871 | version "2.0.0"
872 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
873 |
874 | isstream@~0.1.2:
875 | version "0.1.2"
876 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
877 |
878 | js-tokens@^3.0.2:
879 | version "3.0.2"
880 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
881 |
882 | js-tokens@^4.0.0:
883 | version "4.0.0"
884 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
885 |
886 | js-yaml@^3.12.0, js-yaml@^3.7.0:
887 | version "3.12.0"
888 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.0.tgz#eaed656ec8344f10f527c6bfa1b6e2244de167d1"
889 | dependencies:
890 | argparse "^1.0.7"
891 | esprima "^4.0.0"
892 |
893 | jsbn@~0.1.0:
894 | version "0.1.1"
895 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
896 |
897 | json-schema-traverse@^0.3.0:
898 | version "0.3.1"
899 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340"
900 |
901 | json-schema-traverse@^0.4.1:
902 | version "0.4.1"
903 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
904 |
905 | json-schema@0.2.3:
906 | version "0.2.3"
907 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
908 |
909 | json-stable-stringify-without-jsonify@^1.0.1:
910 | version "1.0.1"
911 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
912 |
913 | json-stringify-safe@~5.0.1:
914 | version "5.0.1"
915 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
916 |
917 | jsonfile@^4.0.0:
918 | version "4.0.0"
919 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb"
920 | optionalDependencies:
921 | graceful-fs "^4.1.6"
922 |
923 | jsprim@^1.2.2:
924 | version "1.4.1"
925 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"
926 | dependencies:
927 | assert-plus "1.0.0"
928 | extsprintf "1.3.0"
929 | json-schema "0.2.3"
930 | verror "1.10.0"
931 |
932 | levn@^0.3.0, levn@~0.3.0:
933 | version "0.3.0"
934 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
935 | dependencies:
936 | prelude-ls "~1.1.2"
937 | type-check "~0.3.2"
938 |
939 | load-json-file@^2.0.0:
940 | version "2.0.0"
941 | resolved "http://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8"
942 | dependencies:
943 | graceful-fs "^4.1.2"
944 | parse-json "^2.2.0"
945 | pify "^2.0.0"
946 | strip-bom "^3.0.0"
947 |
948 | locate-path@^2.0.0:
949 | version "2.0.0"
950 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
951 | dependencies:
952 | p-locate "^2.0.0"
953 | path-exists "^3.0.0"
954 |
955 | lodash-id@^0.14.0:
956 | version "0.14.0"
957 | resolved "https://registry.yarnpkg.com/lodash-id/-/lodash-id-0.14.0.tgz#baf48934e543a1b5d6346f8c84698b1a8c803896"
958 |
959 | lodash@4, lodash@^4.13.1, lodash@^4.17.10, lodash@^4.17.4, lodash@^4.17.5:
960 | version "4.17.11"
961 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d"
962 |
963 | lowdb@^1.0.0:
964 | version "1.0.0"
965 | resolved "https://registry.yarnpkg.com/lowdb/-/lowdb-1.0.0.tgz#5243be6b22786ccce30e50c9a33eac36b20c8064"
966 | dependencies:
967 | graceful-fs "^4.1.3"
968 | is-promise "^2.1.0"
969 | lodash "4"
970 | pify "^3.0.0"
971 | steno "^0.4.1"
972 |
973 | lru-cache@^4.0.1:
974 | version "4.1.3"
975 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.3.tgz#a1175cf3496dfc8436c156c334b4955992bce69c"
976 | dependencies:
977 | pseudomap "^1.0.2"
978 | yallist "^2.1.2"
979 |
980 | md5@^2.2.1:
981 | version "2.2.1"
982 | resolved "https://registry.yarnpkg.com/md5/-/md5-2.2.1.tgz#53ab38d5fe3c8891ba465329ea23fac0540126f9"
983 | dependencies:
984 | charenc "~0.0.1"
985 | crypt "~0.0.1"
986 | is-buffer "~1.1.1"
987 |
988 | mime-db@~1.36.0:
989 | version "1.36.0"
990 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.36.0.tgz#5020478db3c7fe93aad7bbcc4dcf869c43363397"
991 |
992 | mime-types@^2.1.12, mime-types@~2.1.19:
993 | version "2.1.20"
994 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.20.tgz#930cb719d571e903738520f8470911548ca2cc19"
995 | dependencies:
996 | mime-db "~1.36.0"
997 |
998 | mime@2.3.1:
999 | version "2.3.1"
1000 | resolved "https://registry.yarnpkg.com/mime/-/mime-2.3.1.tgz#b1621c54d63b97c47d3cfe7f7215f7d64517c369"
1001 |
1002 | mime@^1.3.4:
1003 | version "1.6.0"
1004 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1"
1005 |
1006 | mimic-fn@^1.0.0:
1007 | version "1.2.0"
1008 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022"
1009 |
1010 | minimatch@^3.0.3, minimatch@^3.0.4:
1011 | version "3.0.4"
1012 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
1013 | dependencies:
1014 | brace-expansion "^1.1.7"
1015 |
1016 | minimist@0.0.8:
1017 | version "0.0.8"
1018 | resolved "http://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
1019 |
1020 | minimist@^1.1.0:
1021 | version "1.2.0"
1022 | resolved "http://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
1023 |
1024 | mkdirp@^0.5.1:
1025 | version "0.5.1"
1026 | resolved "http://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
1027 | dependencies:
1028 | minimist "0.0.8"
1029 |
1030 | ms@2.0.0:
1031 | version "2.0.0"
1032 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
1033 |
1034 | ms@^2.0.0, ms@^2.1.1:
1035 | version "2.1.1"
1036 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a"
1037 |
1038 | mute-stream@0.0.7:
1039 | version "0.0.7"
1040 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"
1041 |
1042 | natural-compare@^1.4.0:
1043 | version "1.4.0"
1044 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
1045 |
1046 | nice-try@^1.0.4:
1047 | version "1.0.5"
1048 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366"
1049 |
1050 | normalize-package-data@^2.3.2:
1051 | version "2.4.0"
1052 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f"
1053 | dependencies:
1054 | hosted-git-info "^2.1.4"
1055 | is-builtin-module "^1.0.0"
1056 | semver "2 || 3 || 4 || 5"
1057 | validate-npm-package-license "^3.0.1"
1058 |
1059 | npm-run-path@^2.0.0:
1060 | version "2.0.2"
1061 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
1062 | dependencies:
1063 | path-key "^2.0.0"
1064 |
1065 | oauth-sign@~0.9.0:
1066 | version "0.9.0"
1067 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455"
1068 |
1069 | object-assign@^4.0.1:
1070 | version "4.1.1"
1071 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
1072 |
1073 | once@^1.3.0:
1074 | version "1.4.0"
1075 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
1076 | dependencies:
1077 | wrappy "1"
1078 |
1079 | onetime@^2.0.0:
1080 | version "2.0.1"
1081 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4"
1082 | dependencies:
1083 | mimic-fn "^1.0.0"
1084 |
1085 | optionator@^0.8.2:
1086 | version "0.8.2"
1087 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64"
1088 | dependencies:
1089 | deep-is "~0.1.3"
1090 | fast-levenshtein "~2.0.4"
1091 | levn "~0.3.0"
1092 | prelude-ls "~1.1.2"
1093 | type-check "~0.3.2"
1094 | wordwrap "~1.0.0"
1095 |
1096 | os-name@~1.0.3:
1097 | version "1.0.3"
1098 | resolved "https://registry.yarnpkg.com/os-name/-/os-name-1.0.3.tgz#1b379f64835af7c5a7f498b357cb95215c159edf"
1099 | dependencies:
1100 | osx-release "^1.0.0"
1101 | win-release "^1.0.0"
1102 |
1103 | os-tmpdir@~1.0.2:
1104 | version "1.0.2"
1105 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
1106 |
1107 | osx-release@^1.0.0:
1108 | version "1.1.0"
1109 | resolved "https://registry.yarnpkg.com/osx-release/-/osx-release-1.1.0.tgz#f217911a28136949af1bf9308b241e2737d3cd6c"
1110 | dependencies:
1111 | minimist "^1.1.0"
1112 |
1113 | p-finally@^1.0.0:
1114 | version "1.0.0"
1115 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
1116 |
1117 | p-limit@^1.1.0:
1118 | version "1.3.0"
1119 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8"
1120 | dependencies:
1121 | p-try "^1.0.0"
1122 |
1123 | p-locate@^2.0.0:
1124 | version "2.0.0"
1125 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
1126 | dependencies:
1127 | p-limit "^1.1.0"
1128 |
1129 | p-try@^1.0.0:
1130 | version "1.0.0"
1131 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"
1132 |
1133 | parse-json@^2.2.0:
1134 | version "2.2.0"
1135 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
1136 | dependencies:
1137 | error-ex "^1.2.0"
1138 |
1139 | path-exists@^2.0.0:
1140 | version "2.1.0"
1141 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b"
1142 | dependencies:
1143 | pinkie-promise "^2.0.0"
1144 |
1145 | path-exists@^3.0.0:
1146 | version "3.0.0"
1147 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
1148 |
1149 | path-is-absolute@^1.0.0:
1150 | version "1.0.1"
1151 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
1152 |
1153 | path-is-inside@^1.0.1, path-is-inside@^1.0.2:
1154 | version "1.0.2"
1155 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53"
1156 |
1157 | path-key@^2.0.0, path-key@^2.0.1:
1158 | version "2.0.1"
1159 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
1160 |
1161 | path-parse@^1.0.5:
1162 | version "1.0.6"
1163 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c"
1164 |
1165 | path-type@^2.0.0:
1166 | version "2.0.0"
1167 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73"
1168 | dependencies:
1169 | pify "^2.0.0"
1170 |
1171 | pause-stream@~0.0.11:
1172 | version "0.0.11"
1173 | resolved "http://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445"
1174 | dependencies:
1175 | through "~2.3"
1176 |
1177 | performance-now@^2.1.0:
1178 | version "2.1.0"
1179 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"
1180 |
1181 | picgo@^1.1.0:
1182 | version "1.1.0"
1183 | resolved "https://registry.yarnpkg.com/picgo/-/picgo-1.1.0.tgz#b9033815f40a77b7f471e478c33382622ccc54de"
1184 | dependencies:
1185 | chalk "^2.4.1"
1186 | commander "^2.17.0"
1187 | cross-spawn "^6.0.5"
1188 | dayjs "^1.7.4"
1189 | fs-extra "^6.0.1"
1190 | image-size "^0.6.3"
1191 | inquirer "^6.0.0"
1192 | lodash-id "^0.14.0"
1193 | lowdb "^1.0.0"
1194 | md5 "^2.2.1"
1195 | qiniu "^7.2.1"
1196 | request "^2.87.0"
1197 | request-promise-native "^1.0.5"
1198 | resolve "^1.8.1"
1199 |
1200 | pify@^2.0.0:
1201 | version "2.3.0"
1202 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
1203 |
1204 | pify@^3.0.0:
1205 | version "3.0.0"
1206 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"
1207 |
1208 | pinkie-promise@^2.0.0:
1209 | version "2.0.1"
1210 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
1211 | dependencies:
1212 | pinkie "^2.0.0"
1213 |
1214 | pinkie@^2.0.0:
1215 | version "2.0.4"
1216 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
1217 |
1218 | pkg-dir@^1.0.0:
1219 | version "1.0.0"
1220 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4"
1221 | dependencies:
1222 | find-up "^1.0.0"
1223 |
1224 | pluralize@^7.0.0:
1225 | version "7.0.0"
1226 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777"
1227 |
1228 | prelude-ls@~1.1.2:
1229 | version "1.1.2"
1230 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
1231 |
1232 | progress@^2.0.0:
1233 | version "2.0.0"
1234 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f"
1235 |
1236 | pseudomap@^1.0.2:
1237 | version "1.0.2"
1238 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
1239 |
1240 | psl@^1.1.24:
1241 | version "1.1.29"
1242 | resolved "https://registry.yarnpkg.com/psl/-/psl-1.1.29.tgz#60f580d360170bb722a797cc704411e6da850c67"
1243 |
1244 | punycode@^1.4.1:
1245 | version "1.4.1"
1246 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
1247 |
1248 | punycode@^2.1.0:
1249 | version "2.1.1"
1250 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
1251 |
1252 | qiniu@^7.2.1:
1253 | version "7.2.1"
1254 | resolved "https://registry.yarnpkg.com/qiniu/-/qiniu-7.2.1.tgz#5080ebc4ce84cd1caffb645d91aabdcf9a2f39c6"
1255 | dependencies:
1256 | agentkeepalive "3.3.0"
1257 | crc32 "0.2.2"
1258 | encodeurl "^1.0.1"
1259 | formstream "1.1.0"
1260 | mime "2.3.1"
1261 | tunnel-agent "0.6.0"
1262 | urllib "2.22.0"
1263 |
1264 | qs@^6.4.0, qs@~6.5.2:
1265 | version "6.5.2"
1266 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36"
1267 |
1268 | read-pkg-up@^2.0.0:
1269 | version "2.0.0"
1270 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be"
1271 | dependencies:
1272 | find-up "^2.0.0"
1273 | read-pkg "^2.0.0"
1274 |
1275 | read-pkg@^2.0.0:
1276 | version "2.0.0"
1277 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8"
1278 | dependencies:
1279 | load-json-file "^2.0.0"
1280 | normalize-package-data "^2.3.2"
1281 | path-type "^2.0.0"
1282 |
1283 | regexpp@^2.0.0:
1284 | version "2.0.0"
1285 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.0.tgz#b2a7534a85ca1b033bcf5ce9ff8e56d4e0755365"
1286 |
1287 | request-promise-core@1.1.1:
1288 | version "1.1.1"
1289 | resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.1.tgz#3eee00b2c5aa83239cfb04c5700da36f81cd08b6"
1290 | dependencies:
1291 | lodash "^4.13.1"
1292 |
1293 | request-promise-native@^1.0.5:
1294 | version "1.0.5"
1295 | resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.5.tgz#5281770f68e0c9719e5163fd3fab482215f4fda5"
1296 | dependencies:
1297 | request-promise-core "1.1.1"
1298 | stealthy-require "^1.1.0"
1299 | tough-cookie ">=2.3.3"
1300 |
1301 | request@^2.87.0:
1302 | version "2.88.0"
1303 | resolved "https://registry.yarnpkg.com/request/-/request-2.88.0.tgz#9c2fca4f7d35b592efe57c7f0a55e81052124fef"
1304 | dependencies:
1305 | aws-sign2 "~0.7.0"
1306 | aws4 "^1.8.0"
1307 | caseless "~0.12.0"
1308 | combined-stream "~1.0.6"
1309 | extend "~3.0.2"
1310 | forever-agent "~0.6.1"
1311 | form-data "~2.3.2"
1312 | har-validator "~5.1.0"
1313 | http-signature "~1.2.0"
1314 | is-typedarray "~1.0.0"
1315 | isstream "~0.1.2"
1316 | json-stringify-safe "~5.0.1"
1317 | mime-types "~2.1.19"
1318 | oauth-sign "~0.9.0"
1319 | performance-now "^2.1.0"
1320 | qs "~6.5.2"
1321 | safe-buffer "^5.1.2"
1322 | tough-cookie "~2.4.3"
1323 | tunnel-agent "^0.6.0"
1324 | uuid "^3.3.2"
1325 |
1326 | require-uncached@^1.0.3:
1327 | version "1.0.3"
1328 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3"
1329 | dependencies:
1330 | caller-path "^0.1.0"
1331 | resolve-from "^1.0.0"
1332 |
1333 | resolve-from@^1.0.0:
1334 | version "1.0.1"
1335 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226"
1336 |
1337 | resolve@^1.3.2, resolve@^1.3.3, resolve@^1.5.0, resolve@^1.6.0, resolve@^1.8.1:
1338 | version "1.8.1"
1339 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.8.1.tgz#82f1ec19a423ac1fbd080b0bab06ba36e84a7a26"
1340 | dependencies:
1341 | path-parse "^1.0.5"
1342 |
1343 | restore-cursor@^2.0.0:
1344 | version "2.0.0"
1345 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf"
1346 | dependencies:
1347 | onetime "^2.0.0"
1348 | signal-exit "^3.0.2"
1349 |
1350 | rimraf@^2.2.8:
1351 | version "2.6.2"
1352 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36"
1353 | dependencies:
1354 | glob "^7.0.5"
1355 |
1356 | run-async@^2.2.0:
1357 | version "2.3.0"
1358 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0"
1359 | dependencies:
1360 | is-promise "^2.1.0"
1361 |
1362 | rxjs@^6.1.0:
1363 | version "6.3.2"
1364 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.3.2.tgz#6a688b16c4e6e980e62ea805ec30648e1c60907f"
1365 | dependencies:
1366 | tslib "^1.9.0"
1367 |
1368 | safe-buffer@^5.0.1, safe-buffer@^5.1.2:
1369 | version "5.1.2"
1370 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
1371 |
1372 | "safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0:
1373 | version "2.1.2"
1374 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
1375 |
1376 | "semver@2 || 3 || 4 || 5", semver@^5.0.1, semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1:
1377 | version "5.5.1"
1378 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.1.tgz#7dfdd8814bdb7cabc7be0fb1d734cfb66c940477"
1379 |
1380 | shebang-command@^1.2.0:
1381 | version "1.2.0"
1382 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
1383 | dependencies:
1384 | shebang-regex "^1.0.0"
1385 |
1386 | shebang-regex@^1.0.0:
1387 | version "1.0.0"
1388 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
1389 |
1390 | signal-exit@^3.0.0, signal-exit@^3.0.2:
1391 | version "3.0.2"
1392 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
1393 |
1394 | slice-ansi@1.0.0:
1395 | version "1.0.0"
1396 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d"
1397 | dependencies:
1398 | is-fullwidth-code-point "^2.0.0"
1399 |
1400 | spdx-correct@^3.0.0:
1401 | version "3.0.0"
1402 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.0.0.tgz#05a5b4d7153a195bc92c3c425b69f3b2a9524c82"
1403 | dependencies:
1404 | spdx-expression-parse "^3.0.0"
1405 | spdx-license-ids "^3.0.0"
1406 |
1407 | spdx-exceptions@^2.1.0:
1408 | version "2.1.0"
1409 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.1.0.tgz#2c7ae61056c714a5b9b9b2b2af7d311ef5c78fe9"
1410 |
1411 | spdx-expression-parse@^3.0.0:
1412 | version "3.0.0"
1413 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0"
1414 | dependencies:
1415 | spdx-exceptions "^2.1.0"
1416 | spdx-license-ids "^3.0.0"
1417 |
1418 | spdx-license-ids@^3.0.0:
1419 | version "3.0.1"
1420 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.1.tgz#e2a303236cac54b04031fa7a5a79c7e701df852f"
1421 |
1422 | sprintf-js@~1.0.2:
1423 | version "1.0.3"
1424 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
1425 |
1426 | sshpk@^1.7.0:
1427 | version "1.14.2"
1428 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.14.2.tgz#c6fc61648a3d9c4e764fd3fcdf4ea105e492ba98"
1429 | dependencies:
1430 | asn1 "~0.2.3"
1431 | assert-plus "^1.0.0"
1432 | dashdash "^1.12.0"
1433 | getpass "^0.1.1"
1434 | safer-buffer "^2.0.2"
1435 | optionalDependencies:
1436 | bcrypt-pbkdf "^1.0.0"
1437 | ecc-jsbn "~0.1.1"
1438 | jsbn "~0.1.0"
1439 | tweetnacl "~0.14.0"
1440 |
1441 | statuses@^1.3.1:
1442 | version "1.5.0"
1443 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c"
1444 |
1445 | stealthy-require@^1.1.0:
1446 | version "1.1.1"
1447 | resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b"
1448 |
1449 | steno@^0.4.1:
1450 | version "0.4.4"
1451 | resolved "https://registry.yarnpkg.com/steno/-/steno-0.4.4.tgz#071105bdfc286e6615c0403c27e9d7b5dcb855cb"
1452 | dependencies:
1453 | graceful-fs "^4.1.3"
1454 |
1455 | string-width@^2.1.0, string-width@^2.1.1:
1456 | version "2.1.1"
1457 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
1458 | dependencies:
1459 | is-fullwidth-code-point "^2.0.0"
1460 | strip-ansi "^4.0.0"
1461 |
1462 | strip-ansi@^3.0.0:
1463 | version "3.0.1"
1464 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
1465 | dependencies:
1466 | ansi-regex "^2.0.0"
1467 |
1468 | strip-ansi@^4.0.0:
1469 | version "4.0.0"
1470 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
1471 | dependencies:
1472 | ansi-regex "^3.0.0"
1473 |
1474 | strip-bom@^3.0.0:
1475 | version "3.0.0"
1476 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
1477 |
1478 | strip-eof@^1.0.0:
1479 | version "1.0.0"
1480 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
1481 |
1482 | strip-json-comments@^2.0.1:
1483 | version "2.0.1"
1484 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
1485 |
1486 | supports-color@^2.0.0:
1487 | version "2.0.0"
1488 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
1489 |
1490 | supports-color@^5.3.0:
1491 | version "5.5.0"
1492 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
1493 | dependencies:
1494 | has-flag "^3.0.0"
1495 |
1496 | table@^4.0.3:
1497 | version "4.0.3"
1498 | resolved "http://registry.npmjs.org/table/-/table-4.0.3.tgz#00b5e2b602f1794b9acaf9ca908a76386a7813bc"
1499 | dependencies:
1500 | ajv "^6.0.1"
1501 | ajv-keywords "^3.0.0"
1502 | chalk "^2.1.0"
1503 | lodash "^4.17.4"
1504 | slice-ansi "1.0.0"
1505 | string-width "^2.1.1"
1506 |
1507 | text-table@^0.2.0:
1508 | version "0.2.0"
1509 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
1510 |
1511 | through@^2.3.6, through@~2.3:
1512 | version "2.3.8"
1513 | resolved "http://registry.npmjs.org/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
1514 |
1515 | tmp@^0.0.33:
1516 | version "0.0.33"
1517 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9"
1518 | dependencies:
1519 | os-tmpdir "~1.0.2"
1520 |
1521 | tough-cookie@>=2.3.3, tough-cookie@~2.4.3:
1522 | version "2.4.3"
1523 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.4.3.tgz#53f36da3f47783b0925afa06ff9f3b165280f781"
1524 | dependencies:
1525 | psl "^1.1.24"
1526 | punycode "^1.4.1"
1527 |
1528 | tslib@1.9.0:
1529 | version "1.9.0"
1530 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.0.tgz#e37a86fda8cbbaf23a057f473c9f4dc64e5fc2e8"
1531 |
1532 | tslib@^1.8.0, tslib@^1.8.1, tslib@^1.9.0:
1533 | version "1.9.3"
1534 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.3.tgz#d7e4dd79245d85428c4d7e4822a79917954ca286"
1535 |
1536 | tslint-config-standard@^7.1.0:
1537 | version "7.1.0"
1538 | resolved "https://registry.yarnpkg.com/tslint-config-standard/-/tslint-config-standard-7.1.0.tgz#6bcc435a179478e365f6cc62312a561221985760"
1539 | dependencies:
1540 | tslint-eslint-rules "^5.3.1"
1541 |
1542 | tslint-eslint-rules@^5.3.1:
1543 | version "5.4.0"
1544 | resolved "https://registry.yarnpkg.com/tslint-eslint-rules/-/tslint-eslint-rules-5.4.0.tgz#e488cc9181bf193fe5cd7bfca213a7695f1737b5"
1545 | dependencies:
1546 | doctrine "0.7.2"
1547 | tslib "1.9.0"
1548 | tsutils "^3.0.0"
1549 |
1550 | tslint@^5.10.0:
1551 | version "5.11.0"
1552 | resolved "https://registry.yarnpkg.com/tslint/-/tslint-5.11.0.tgz#98f30c02eae3cde7006201e4c33cb08b48581eed"
1553 | dependencies:
1554 | babel-code-frame "^6.22.0"
1555 | builtin-modules "^1.1.1"
1556 | chalk "^2.3.0"
1557 | commander "^2.12.1"
1558 | diff "^3.2.0"
1559 | glob "^7.1.1"
1560 | js-yaml "^3.7.0"
1561 | minimatch "^3.0.4"
1562 | resolve "^1.3.2"
1563 | semver "^5.3.0"
1564 | tslib "^1.8.0"
1565 | tsutils "^2.27.2"
1566 |
1567 | tsutils@^2.27.2:
1568 | version "2.29.0"
1569 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-2.29.0.tgz#32b488501467acbedd4b85498673a0812aca0b99"
1570 | dependencies:
1571 | tslib "^1.8.1"
1572 |
1573 | tsutils@^3.0.0:
1574 | version "3.0.0"
1575 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.0.0.tgz#0c5070a17a0503e056da038c48b5a1870a50a9ad"
1576 | dependencies:
1577 | tslib "^1.8.1"
1578 |
1579 | tunnel-agent@0.6.0, tunnel-agent@^0.6.0:
1580 | version "0.6.0"
1581 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
1582 | dependencies:
1583 | safe-buffer "^5.0.1"
1584 |
1585 | tweetnacl@^0.14.3, tweetnacl@~0.14.0:
1586 | version "0.14.5"
1587 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
1588 |
1589 | type-check@~0.3.2:
1590 | version "0.3.2"
1591 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
1592 | dependencies:
1593 | prelude-ls "~1.1.2"
1594 |
1595 | typescript@^3.0.3:
1596 | version "3.0.3"
1597 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.0.3.tgz#4853b3e275ecdaa27f78fda46dc273a7eb7fc1c8"
1598 |
1599 | universalify@^0.1.0:
1600 | version "0.1.2"
1601 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66"
1602 |
1603 | uri-js@^4.2.2:
1604 | version "4.2.2"
1605 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0"
1606 | dependencies:
1607 | punycode "^2.1.0"
1608 |
1609 | urllib@2.22.0:
1610 | version "2.22.0"
1611 | resolved "https://registry.yarnpkg.com/urllib/-/urllib-2.22.0.tgz#2965dc4ae127a6fb695b7db27d3184f17d82cb42"
1612 | dependencies:
1613 | any-promise "^1.3.0"
1614 | content-type "^1.0.2"
1615 | debug "^2.6.0"
1616 | default-user-agent "^1.0.0"
1617 | digest-header "^0.0.1"
1618 | ee-first "~1.1.1"
1619 | humanize-ms "^1.2.0"
1620 | iconv-lite "^0.4.15"
1621 | qs "^6.4.0"
1622 | statuses "^1.3.1"
1623 |
1624 | utility@0.1.11:
1625 | version "0.1.11"
1626 | resolved "http://registry.npmjs.org/utility/-/utility-0.1.11.tgz#fde60cf9b4e4751947a0cf5d104ce29367226715"
1627 | dependencies:
1628 | address ">=0.0.1"
1629 |
1630 | uuid@^3.3.2:
1631 | version "3.3.2"
1632 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131"
1633 |
1634 | validate-npm-package-license@^3.0.1:
1635 | version "3.0.4"
1636 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a"
1637 | dependencies:
1638 | spdx-correct "^3.0.0"
1639 | spdx-expression-parse "^3.0.0"
1640 |
1641 | verror@1.10.0:
1642 | version "1.10.0"
1643 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400"
1644 | dependencies:
1645 | assert-plus "^1.0.0"
1646 | core-util-is "1.0.2"
1647 | extsprintf "^1.2.0"
1648 |
1649 | which@^1.2.9:
1650 | version "1.3.1"
1651 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
1652 | dependencies:
1653 | isexe "^2.0.0"
1654 |
1655 | win-release@^1.0.0:
1656 | version "1.1.1"
1657 | resolved "https://registry.yarnpkg.com/win-release/-/win-release-1.1.1.tgz#5fa55e02be7ca934edfc12665632e849b72e5209"
1658 | dependencies:
1659 | semver "^5.0.1"
1660 |
1661 | wordwrap@~1.0.0:
1662 | version "1.0.0"
1663 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
1664 |
1665 | wrappy@1:
1666 | version "1.0.2"
1667 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
1668 |
1669 | write@^0.2.1:
1670 | version "0.2.1"
1671 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757"
1672 | dependencies:
1673 | mkdirp "^0.5.1"
1674 |
1675 | yallist@^2.1.2:
1676 | version "2.1.2"
1677 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
1678 |
--------------------------------------------------------------------------------