├── .gitignore
├── .drone.yml
├── .babelrc
├── Readme.md
├── rollup.config.js
├── package.json
├── src
├── index.test.js
└── index.js
├── LICENSE
└── yarn.lock
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | lib
3 | dist
4 | es
--------------------------------------------------------------------------------
/.drone.yml:
--------------------------------------------------------------------------------
1 | pipeline:
2 | build:
3 | image: node
4 | commands:
5 | - yarn install
6 | - yarn run lint
7 | - yarn run test
8 | - yarn run build
9 |
--------------------------------------------------------------------------------
/.babelrc:
--------------------------------------------------------------------------------
1 | {
2 | "env": {
3 | "commonjs": {
4 | "presets": [
5 | ["env", {
6 | "useBuiltIns": false
7 | }]
8 | ]
9 | },
10 | "es": {
11 | "presets": [
12 | ["env", {
13 | "useBuiltIns": false,
14 | "modules": false
15 | }]
16 | ]
17 | }
18 | }
19 | }
--------------------------------------------------------------------------------
/Readme.md:
--------------------------------------------------------------------------------
1 | arduino-fqbn
2 | ============
3 |
4 | - Parse arduino fqbn:
5 |
6 | ```javascript
7 | fqbn.parse('arduino:avr:mega:cpu=atmega1260,mem=1024')
8 | {
9 | packager: 'arduino',
10 | architecture: 'avr',
11 | id: 'mega',
12 | config: {
13 | cpu: 'atmega1260',
14 | mem: '1024'
15 | }
16 | }
17 | ```
18 |
19 | - And viceversa:
20 |
21 | ```javascript
22 | fqbn.stringify('arduino','avr','mega', {
23 | cpu: 'atmega1260',
24 | mem: '1024'
25 | })
26 | 'arduino:avr:mega:cpu=atmega1260,mem=1024'
27 | ```
28 |
29 | How to deploy on npm
30 | --------------------
31 |
32 | 1. Change the version in package.json
33 | 2. Login with `npm login`
34 | 3. Publish with `npm publish`
--------------------------------------------------------------------------------
/rollup.config.js:
--------------------------------------------------------------------------------
1 | import nodeResolve from 'rollup-plugin-node-resolve';
2 | import commonjs from 'rollup-plugin-commonjs';
3 | import babel from 'rollup-plugin-babel';
4 | import replace from 'rollup-plugin-replace';
5 | import uglify from 'rollup-plugin-uglify-es';
6 |
7 | const env = process.env.NODE_ENV;
8 | const config = {
9 | format: 'umd',
10 | moduleName: 'CreatePlugin',
11 | plugins: [
12 | nodeResolve({
13 | jsnext: true
14 | }),
15 | // Due to https://github.com/rollup/rollup/wiki/Troubleshooting#name-is-not-exported-by-module
16 | commonjs({
17 | include: 'node_modules/**',
18 | namedExports: {'./node_module/invariant.js': ['default']}
19 | }),
20 | babel({
21 | exclude: 'node_modules/**'
22 | }),
23 | replace({
24 | 'process.env.NODE_ENV': JSON.stringify(env)
25 | })
26 | ]
27 | };
28 |
29 | if (env === 'production') {
30 | config.plugins.push(uglify({
31 | compress: {
32 | pure_getters: true,
33 | unsafe: true,
34 | unsafe_comps: true,
35 | warnings: false
36 | }
37 | }));
38 | }
39 |
40 | export default config;
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "arduino-fqbn",
3 | "version": "1.0.2",
4 | "description": "Handle FQBN (fully qualified board names) in a safe way",
5 | "main": "lib/index.js",
6 | "module": "es/index.js",
7 | "jsnext:main": "es/index.js",
8 | "files": [
9 | "dist",
10 | "lib",
11 | "es",
12 | "src"
13 | ],
14 | "author": "Matteo Suppo",
15 | "license": "GPL-2.0",
16 | "devDependencies": {
17 | "babel-cli": "^6.26.0",
18 | "babel-eslint": "^10.0.1",
19 | "babel-preset-env": "^1.7.0",
20 | "cross-env": "^5.2.0",
21 | "eslint": "^5.12.0",
22 | "eslint-config-xo-space": "^0.20.0",
23 | "eslint-plugin-jest": "^22.1.2",
24 | "jest": "^23.6.0",
25 | "rimraf": "^2.6.2",
26 | "rollup": "^0.62.0",
27 | "rollup-plugin-babel": "^3.0.7",
28 | "rollup-plugin-commonjs": "^9.1.3",
29 | "rollup-plugin-node-resolve": "^3.3.0",
30 | "rollup-plugin-replace": "^2.0.0",
31 | "rollup-plugin-uglify-es": "^0.0.1"
32 | },
33 | "scripts": {
34 | "dev": "webpack-dev-server",
35 | "lint": "eslint src",
36 | "lint-fix": "eslint --fix src --ext .js",
37 | "clean": "rimraf lib dist es",
38 | "build": "npm run build:commonjs && npm run build:umd && npm run build:umd:min && npm run build:es",
39 | "build:watch": "echo 'build && watch the COMMONJS version of the package - for other version, run specific tasks' && npm run build:commonjs:watch",
40 | "build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
41 | "build:commonjs:watch": "npm run build:commonjs -- --watch",
42 | "build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
43 | "build:es:watch": "npm run build:es -- --watch",
44 | "build:umd": "cross-env BABEL_ENV=es NODE_ENV=development node_modules/.bin/rollup src/index.js --config --sourcemap --output dist/create-plugin.js",
45 | "build:umd:watch": "npm run build:umd -- --watch",
46 | "build:umd:min": "cross-env BABEL_ENV=es NODE_ENV=production rollup src/index.js --config --output dist/create-plugin.min.js",
47 | "prepare": "npm run clean && npm test && npm run build",
48 | "test": "jest"
49 | },
50 | "eslintConfig": {
51 | "root": true,
52 | "env": {
53 | "browser": true,
54 | "jest/globals": true
55 | },
56 | "parser": "babel-eslint",
57 | "extends": [
58 | "xo-space/esnext"
59 | ],
60 | "plugins": [
61 | "jest"
62 | ]
63 | }
64 | }
65 |
--------------------------------------------------------------------------------
/src/index.test.js:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright 2018 ARDUINO AS (http://www.arduino.cc/)
3 | * This file is part of arduino-fqbn.js.
4 | * Copyright (c) 2018
5 | * Authors: Matteo Suppo
6 | *
7 | * This software is released under:
8 | * The GNU General Public License, which covers the main part of
9 | * arduino-fqbn.js
10 | * The terms of this license can be found at:
11 | * https://www.gnu.org/licenses/gpl-3.0.en.html
12 | *
13 | * You can be released from the requirements of the above licenses by purchasing
14 | * a commercial license. Buying such a license is mandatory if you want to modify or
15 | * otherwise use the software for commercial activities involving the Arduino
16 | * software without disclosing the source code of your own applications. To purchase
17 | * a commercial license, send an email to license@arduino.cc.
18 | *
19 | */
20 | const FQBN = require('./index');
21 |
22 | const parseCases = [
23 | {fqbn: 'fqbn:with:too:many:parts',
24 | error: 'TooManyPartsError'},
25 | {fqbn: 'toofewparts',
26 | error: 'TooFewPartsError'},
27 | {fqbn: 'fqbn:with:invalid:config',
28 | error: 'InvalidConfigError'},
29 |
30 | {fqbn: 'arduino:avr:uno',
31 | expects: ['arduino', 'avr', 'uno', {}]},
32 | {fqbn: 'arduino:avr:mega:cpu=atmega1280',
33 | expects: ['arduino', 'avr', 'mega', {cpu: 'atmega1280'}]},
34 | {fqbn: 'arduino:avr:mega:cpu=atmega1280,mem=1024',
35 | expects: ['arduino', 'avr', 'mega', {mem: '1024', cpu: 'atmega1280'}]}
36 | ];
37 |
38 | parseCases.forEach(testCase => {
39 | test('parse ' + testCase.fqbn, () => {
40 | // Test Error
41 | if (testCase.error) {
42 | const testRun = function () {
43 | FQBN.parse(testCase.fqbn);
44 | };
45 | expect(testRun).toThrowError(testCase.error);
46 | return;
47 | }
48 |
49 | // Test Success
50 | const fqbn = FQBN.parse(testCase.fqbn);
51 |
52 | expect(fqbn.packager).toBe(testCase.expects[0]);
53 | expect(fqbn.architecture).toBe(testCase.expects[1]);
54 | expect(fqbn.id).toBe(testCase.expects[2]);
55 | expect(fqbn.config).toEqual(testCase.expects[3]);
56 | });
57 | });
58 |
59 | const stringifyCases = [
60 | {fqbn: [null, 'avr', 'uno', null],
61 | error: 'PartMissingError', expects: 'error'},
62 |
63 | {fqbn: ['arduino', 'avr', 'uno', null],
64 | expects: 'arduino:avr:uno'},
65 | {fqbn: ['arduino', 'avr', 'uno', {}],
66 | expects: 'arduino:avr:uno'},
67 | {fqbn: ['arduino', 'avr', 'mega', {cpu: 'atmega1280'}],
68 | expects: 'arduino:avr:mega:cpu=atmega1280'},
69 | {fqbn: ['arduino', 'avr', 'mega', {mem: '1024', cpu: 'atmega1280'}],
70 | expects: 'arduino:avr:mega:cpu=atmega1280,mem=1024'}
71 | ];
72 |
73 | stringifyCases.forEach(testCase => {
74 | test('stringify ' + testCase.expects, () => {
75 | // Test Error
76 | if (testCase.error) {
77 | const testRun = function () {
78 | FQBN.stringify(testCase.fqbn[0], testCase.fqbn[1], testCase.fqbn[2], testCase.fqbn[3]);
79 | };
80 | expect(testRun).toThrowError(testCase.error);
81 | return;
82 | }
83 |
84 | // Test Success
85 | const fqbn = FQBN.stringify(testCase.fqbn[0], testCase.fqbn[1], testCase.fqbn[2], testCase.fqbn[3]);
86 | expect(fqbn).toBe(testCase.expects);
87 | });
88 | });
89 |
--------------------------------------------------------------------------------
/src/index.js:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright 2018 ARDUINO AS (http://www.arduino.cc/)
3 | * This file is part of arduino-fqbn.js.
4 | * Copyright (c) 2018
5 | * Authors: Matteo Suppo
6 | *
7 | * This software is released under:
8 | * The GNU General Public License, which covers the main part of
9 | * arduino-fqbn.js
10 | * The terms of this license can be found at:
11 | * https://www.gnu.org/licenses/gpl-3.0.en.html
12 | *
13 | * You can be released from the requirements of the above licenses by purchasing
14 | * a commercial license. Buying such a license is mandatory if you want to modify or
15 | * otherwise use the software for commercial activities involving the Arduino
16 | * software without disclosing the source code of your own applications. To purchase
17 | * a commercial license, send an email to license@arduino.cc.
18 | *
19 | */
20 | 'use strict';
21 |
22 | class TooManyPartsError extends Error {
23 | constructor(n) {
24 | super('TooManyPartsError: expecting at most 4 parts, got ' + n);
25 | }
26 | }
27 |
28 | class TooFewPartsError extends Error {
29 | constructor(n) {
30 | super('TooFewPartsError: expecting at least 3 parts, got ' + n);
31 | }
32 | }
33 |
34 | class InvalidConfigError extends Error {
35 | constructor(config) {
36 | super('InvalidConfigError: configs should be in the form `key=value`, got ' + config);
37 | }
38 | }
39 |
40 | class PartMissingError extends Error {
41 | constructor(parts) {
42 | super('PartMissingError: the following parts are missing: ' + parts);
43 | }
44 | }
45 |
46 | function parse(fqbn) {
47 | const parts = fqbn.split(':');
48 |
49 | // Check length
50 | if (parts.length > 4) {
51 | throw new TooManyPartsError(parts.length);
52 | }
53 |
54 | if (parts.length < 3) {
55 | throw new TooFewPartsError(parts.length);
56 | }
57 |
58 | // Parse config
59 | const config = {};
60 | if (parts.length === 4) {
61 | const confParts = parts[3].split(',');
62 | for (const confPart of confParts) {
63 | const keyVal = confPart.split('=');
64 | if (keyVal.length !== 2) {
65 | throw new InvalidConfigError(confPart);
66 | }
67 |
68 | config[keyVal[0]] = keyVal[1];
69 | }
70 | }
71 |
72 | return {
73 | packager: parts[0],
74 | architecture: parts[1],
75 | id: parts[2],
76 | config
77 | };
78 | }
79 |
80 | function stringify(packager, architecture, id, config) {
81 | const missingParts = [];
82 | if (!packager) {
83 | missingParts.push('packager');
84 | }
85 | if (!architecture) {
86 | missingParts.push('architecture');
87 | }
88 | if (!id) {
89 | missingParts.push('id');
90 | }
91 |
92 | if (missingParts.length > 0) {
93 | throw new PartMissingError(missingParts);
94 | }
95 |
96 | let output = packager + ':' + architecture + ':' + id;
97 |
98 | if (!config || Object.keys(config).length === 0) {
99 | return output;
100 | }
101 |
102 | const configParts = [];
103 |
104 | for (const key in config) {
105 | if (Object.prototype.hasOwnProperty.call(config, key)) {
106 | configParts.push(key + '=' + config[key]);
107 | }
108 | }
109 |
110 | configParts.sort();
111 | output += ':' + configParts.join(',');
112 |
113 | return output;
114 | }
115 |
116 | module.exports = {
117 | parse,
118 | stringify
119 | };
120 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | This file includes licensing information for parts of arduino-fqbn.js.
2 |
3 | This file is part of arduino-fqbn.js.
4 | Copyright (c) 2018
5 | Authors: Matteo Suppo
6 |
7 | first, the GNU General Public License, which covers the main body
8 | of the [insert app name] code. The terms of this license can be found at:
9 | https://www.gnu.org/licenses/gpl-3.0.en.html
10 |
11 | You can be released from the requirements of the above licenses by purchasing
12 | a commercial license. Buying such a license is mandatory if you want to modify or
13 | otherwise use the software for commercial activities involving the Arduino
14 | software without disclosing the source code of your own applications. To purchase
15 | a commercial license, send an email to license@arduino.cc
16 |
17 | GNU GENERAL PUBLIC LICENSE
18 | Version 3, 29 June 2007
19 |
20 | Copyright (C) 2007 Free Software Foundation, Inc.
21 | Everyone is permitted to copy and distribute verbatim copies
22 | of this license document, but changing it is not allowed.
23 |
24 | Preamble
25 |
26 | The GNU General Public License is a free, copyleft license for
27 | software and other kinds of works.
28 |
29 | The licenses for most software and other practical works are designed
30 | to take away your freedom to share and change the works. By contrast,
31 | the GNU General Public License is intended to guarantee your freedom to
32 | share and change all versions of a program--to make sure it remains free
33 | software for all its users. We, the Free Software Foundation, use the
34 | GNU General Public License for most of our software; it applies also to
35 | any other work released this way by its authors. You can apply it to
36 | your programs, too.
37 |
38 | When we speak of free software, we are referring to freedom, not
39 | price. Our General Public Licenses are designed to make sure that you
40 | have the freedom to distribute copies of free software (and charge for
41 | them if you wish), that you receive source code or can get it if you
42 | want it, that you can change the software or use pieces of it in new
43 | free programs, and that you know you can do these things.
44 |
45 | To protect your rights, we need to prevent others from denying you
46 | these rights or asking you to surrender the rights. Therefore, you have
47 | certain responsibilities if you distribute copies of the software, or if
48 | you modify it: responsibilities to respect the freedom of others.
49 |
50 | For example, if you distribute copies of such a program, whether
51 | gratis or for a fee, you must pass on to the recipients the same
52 | freedoms that you received. You must make sure that they, too, receive
53 | or can get the source code. And you must show them these terms so they
54 | know their rights.
55 |
56 | Developers that use the GNU GPL protect your rights with two steps:
57 | (1) assert copyright on the software, and (2) offer you this License
58 | giving you legal permission to copy, distribute and/or modify it.
59 |
60 | For the developers' and authors' protection, the GPL clearly explains
61 | that there is no warranty for this free software. For both users' and
62 | authors' sake, the GPL requires that modified versions be marked as
63 | changed, so that their problems will not be attributed erroneously to
64 | authors of previous versions.
65 |
66 | Some devices are designed to deny users access to install or run
67 | modified versions of the software inside them, although the manufacturer
68 | can do so. This is fundamentally incompatible with the aim of
69 | protecting users' freedom to change the software. The systematic
70 | pattern of such abuse occurs in the area of products for individuals to
71 | use, which is precisely where it is most unacceptable. Therefore, we
72 | have designed this version of the GPL to prohibit the practice for those
73 | products. If such problems arise substantially in other domains, we
74 | stand ready to extend this provision to those domains in future versions
75 | of the GPL, as needed to protect the freedom of users.
76 |
77 | Finally, every program is threatened constantly by software patents.
78 | States should not allow patents to restrict development and use of
79 | software on general-purpose computers, but in those that do, we wish to
80 | avoid the special danger that patents applied to a free program could
81 | make it effectively proprietary. To prevent this, the GPL assures that
82 | patents cannot be used to render the program non-free.
83 |
84 | The precise terms and conditions for copying, distribution and
85 | modification follow.
86 |
87 | TERMS AND CONDITIONS
88 |
89 | 0. Definitions.
90 |
91 | "This License" refers to version 3 of the GNU General Public License.
92 |
93 | "Copyright" also means copyright-like laws that apply to other kinds of
94 | works, such as semiconductor masks.
95 |
96 | "The Program" refers to any copyrightable work licensed under this
97 | License. Each licensee is addressed as "you". "Licensees" and
98 | "recipients" may be individuals or organizations.
99 |
100 | To "modify" a work means to copy from or adapt all or part of the work
101 | in a fashion requiring copyright permission, other than the making of an
102 | exact copy. The resulting work is called a "modified version" of the
103 | earlier work or a work "based on" the earlier work.
104 |
105 | A "covered work" means either the unmodified Program or a work based
106 | on the Program.
107 |
108 | To "propagate" a work means to do anything with it that, without
109 | permission, would make you directly or secondarily liable for
110 | infringement under applicable copyright law, except executing it on a
111 | computer or modifying a private copy. Propagation includes copying,
112 | distribution (with or without modification), making available to the
113 | public, and in some countries other activities as well.
114 |
115 | To "convey" a work means any kind of propagation that enables other
116 | parties to make or receive copies. Mere interaction with a user through
117 | a computer network, with no transfer of a copy, is not conveying.
118 |
119 | An interactive user interface displays "Appropriate Legal Notices"
120 | to the extent that it includes a convenient and prominently visible
121 | feature that (1) displays an appropriate copyright notice, and (2)
122 | tells the user that there is no warranty for the work (except to the
123 | extent that warranties are provided), that licensees may convey the
124 | work under this License, and how to view a copy of this License. If
125 | the interface presents a list of user commands or options, such as a
126 | menu, a prominent item in the list meets this criterion.
127 |
128 | 1. Source Code.
129 |
130 | The "source code" for a work means the preferred form of the work
131 | for making modifications to it. "Object code" means any non-source
132 | form of a work.
133 |
134 | A "Standard Interface" means an interface that either is an official
135 | standard defined by a recognized standards body, or, in the case of
136 | interfaces specified for a particular programming language, one that
137 | is widely used among developers working in that language.
138 |
139 | The "System Libraries" of an executable work include anything, other
140 | than the work as a whole, that (a) is included in the normal form of
141 | packaging a Major Component, but which is not part of that Major
142 | Component, and (b) serves only to enable use of the work with that
143 | Major Component, or to implement a Standard Interface for which an
144 | implementation is available to the public in source code form. A
145 | "Major Component", in this context, means a major essential component
146 | (kernel, window system, and so on) of the specific operating system
147 | (if any) on which the executable work runs, or a compiler used to
148 | produce the work, or an object code interpreter used to run it.
149 |
150 | The "Corresponding Source" for a work in object code form means all
151 | the source code needed to generate, install, and (for an executable
152 | work) run the object code and to modify the work, including scripts to
153 | control those activities. However, it does not include the work's
154 | System Libraries, or general-purpose tools or generally available free
155 | programs which are used unmodified in performing those activities but
156 | which are not part of the work. For example, Corresponding Source
157 | includes interface definition files associated with source files for
158 | the work, and the source code for shared libraries and dynamically
159 | linked subprograms that the work is specifically designed to require,
160 | such as by intimate data communication or control flow between those
161 | subprograms and other parts of the work.
162 |
163 | The Corresponding Source need not include anything that users
164 | can regenerate automatically from other parts of the Corresponding
165 | Source.
166 |
167 | The Corresponding Source for a work in source code form is that
168 | same work.
169 |
170 | 2. Basic Permissions.
171 |
172 | All rights granted under this License are granted for the term of
173 | copyright on the Program, and are irrevocable provided the stated
174 | conditions are met. This License explicitly affirms your unlimited
175 | permission to run the unmodified Program. The output from running a
176 | covered work is covered by this License only if the output, given its
177 | content, constitutes a covered work. This License acknowledges your
178 | rights of fair use or other equivalent, as provided by copyright law.
179 |
180 | You may make, run and propagate covered works that you do not
181 | convey, without conditions so long as your license otherwise remains
182 | in force. You may convey covered works to others for the sole purpose
183 | of having them make modifications exclusively for you, or provide you
184 | with facilities for running those works, provided that you comply with
185 | the terms of this License in conveying all material for which you do
186 | not control copyright. Those thus making or running the covered works
187 | for you must do so exclusively on your behalf, under your direction
188 | and control, on terms that prohibit them from making any copies of
189 | your copyrighted material outside their relationship with you.
190 |
191 | Conveying under any other circumstances is permitted solely under
192 | the conditions stated below. Sublicensing is not allowed; section 10
193 | makes it unnecessary.
194 |
195 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
196 |
197 | No covered work shall be deemed part of an effective technological
198 | measure under any applicable law fulfilling obligations under article
199 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or
200 | similar laws prohibiting or restricting circumvention of such
201 | measures.
202 |
203 | When you convey a covered work, you waive any legal power to forbid
204 | circumvention of technological measures to the extent such circumvention
205 | is effected by exercising rights under this License with respect to
206 | the covered work, and you disclaim any intention to limit operation or
207 | modification of the work as a means of enforcing, against the work's
208 | users, your or third parties' legal rights to forbid circumvention of
209 | technological measures.
210 |
211 | 4. Conveying Verbatim Copies.
212 |
213 | You may convey verbatim copies of the Program's source code as you
214 | receive it, in any medium, provided that you conspicuously and
215 | appropriately publish on each copy an appropriate copyright notice;
216 | keep intact all notices stating that this License and any
217 | non-permissive terms added in accord with section 7 apply to the code;
218 | keep intact all notices of the absence of any warranty; and give all
219 | recipients a copy of this License along with the Program.
220 |
221 | You may charge any price or no price for each copy that you convey,
222 | and you may offer support or warranty protection for a fee.
223 |
224 | 5. Conveying Modified Source Versions.
225 |
226 | You may convey a work based on the Program, or the modifications to
227 | produce it from the Program, in the form of source code under the
228 | terms of section 4, provided that you also meet all of these conditions:
229 |
230 | a) The work must carry prominent notices stating that you modified
231 | it, and giving a relevant date.
232 |
233 | b) The work must carry prominent notices stating that it is
234 | released under this License and any conditions added under section
235 | 7. This requirement modifies the requirement in section 4 to
236 | "keep intact all notices".
237 |
238 | c) You must license the entire work, as a whole, under this
239 | License to anyone who comes into possession of a copy. This
240 | License will therefore apply, along with any applicable section 7
241 | additional terms, to the whole of the work, and all its parts,
242 | regardless of how they are packaged. This License gives no
243 | permission to license the work in any other way, but it does not
244 | invalidate such permission if you have separately received it.
245 |
246 | d) If the work has interactive user interfaces, each must display
247 | Appropriate Legal Notices; however, if the Program has interactive
248 | interfaces that do not display Appropriate Legal Notices, your
249 | work need not make them do so.
250 |
251 | A compilation of a covered work with other separate and independent
252 | works, which are not by their nature extensions of the covered work,
253 | and which are not combined with it such as to form a larger program,
254 | in or on a volume of a storage or distribution medium, is called an
255 | "aggregate" if the compilation and its resulting copyright are not
256 | used to limit the access or legal rights of the compilation's users
257 | beyond what the individual works permit. Inclusion of a covered work
258 | in an aggregate does not cause this License to apply to the other
259 | parts of the aggregate.
260 |
261 | 6. Conveying Non-Source Forms.
262 |
263 | You may convey a covered work in object code form under the terms
264 | of sections 4 and 5, provided that you also convey the
265 | machine-readable Corresponding Source under the terms of this License,
266 | in one of these ways:
267 |
268 | a) Convey the object code in, or embodied in, a physical product
269 | (including a physical distribution medium), accompanied by the
270 | Corresponding Source fixed on a durable physical medium
271 | customarily used for software interchange.
272 |
273 | b) Convey the object code in, or embodied in, a physical product
274 | (including a physical distribution medium), accompanied by a
275 | written offer, valid for at least three years and valid for as
276 | long as you offer spare parts or customer support for that product
277 | model, to give anyone who possesses the object code either (1) a
278 | copy of the Corresponding Source for all the software in the
279 | product that is covered by this License, on a durable physical
280 | medium customarily used for software interchange, for a price no
281 | more than your reasonable cost of physically performing this
282 | conveying of source, or (2) access to copy the
283 | Corresponding Source from a network server at no charge.
284 |
285 | c) Convey individual copies of the object code with a copy of the
286 | written offer to provide the Corresponding Source. This
287 | alternative is allowed only occasionally and noncommercially, and
288 | only if you received the object code with such an offer, in accord
289 | with subsection 6b.
290 |
291 | d) Convey the object code by offering access from a designated
292 | place (gratis or for a charge), and offer equivalent access to the
293 | Corresponding Source in the same way through the same place at no
294 | further charge. You need not require recipients to copy the
295 | Corresponding Source along with the object code. If the place to
296 | copy the object code is a network server, the Corresponding Source
297 | may be on a different server (operated by you or a third party)
298 | that supports equivalent copying facilities, provided you maintain
299 | clear directions next to the object code saying where to find the
300 | Corresponding Source. Regardless of what server hosts the
301 | Corresponding Source, you remain obligated to ensure that it is
302 | available for as long as needed to satisfy these requirements.
303 |
304 | e) Convey the object code using peer-to-peer transmission, provided
305 | you inform other peers where the object code and Corresponding
306 | Source of the work are being offered to the general public at no
307 | charge under subsection 6d.
308 |
309 | A separable portion of the object code, whose source code is excluded
310 | from the Corresponding Source as a System Library, need not be
311 | included in conveying the object code work.
312 |
313 | A "User Product" is either (1) a "consumer product", which means any
314 | tangible personal property which is normally used for personal, family,
315 | or household purposes, or (2) anything designed or sold for incorporation
316 | into a dwelling. In determining whether a product is a consumer product,
317 | doubtful cases shall be resolved in favor of coverage. For a particular
318 | product received by a particular user, "normally used" refers to a
319 | typical or common use of that class of product, regardless of the status
320 | of the particular user or of the way in which the particular user
321 | actually uses, or expects or is expected to use, the product. A product
322 | is a consumer product regardless of whether the product has substantial
323 | commercial, industrial or non-consumer uses, unless such uses represent
324 | the only significant mode of use of the product.
325 |
326 | "Installation Information" for a User Product means any methods,
327 | procedures, authorization keys, or other information required to install
328 | and execute modified versions of a covered work in that User Product from
329 | a modified version of its Corresponding Source. The information must
330 | suffice to ensure that the continued functioning of the modified object
331 | code is in no case prevented or interfered with solely because
332 | modification has been made.
333 |
334 | If you convey an object code work under this section in, or with, or
335 | specifically for use in, a User Product, and the conveying occurs as
336 | part of a transaction in which the right of possession and use of the
337 | User Product is transferred to the recipient in perpetuity or for a
338 | fixed term (regardless of how the transaction is characterized), the
339 | Corresponding Source conveyed under this section must be accompanied
340 | by the Installation Information. But this requirement does not apply
341 | if neither you nor any third party retains the ability to install
342 | modified object code on the User Product (for example, the work has
343 | been installed in ROM).
344 |
345 | The requirement to provide Installation Information does not include a
346 | requirement to continue to provide support service, warranty, or updates
347 | for a work that has been modified or installed by the recipient, or for
348 | the User Product in which it has been modified or installed. Access to a
349 | network may be denied when the modification itself materially and
350 | adversely affects the operation of the network or violates the rules and
351 | protocols for communication across the network.
352 |
353 | Corresponding Source conveyed, and Installation Information provided,
354 | in accord with this section must be in a format that is publicly
355 | documented (and with an implementation available to the public in
356 | source code form), and must require no special password or key for
357 | unpacking, reading or copying.
358 |
359 | 7. Additional Terms.
360 |
361 | "Additional permissions" are terms that supplement the terms of this
362 | License by making exceptions from one or more of its conditions.
363 | Additional permissions that are applicable to the entire Program shall
364 | be treated as though they were included in this License, to the extent
365 | that they are valid under applicable law. If additional permissions
366 | apply only to part of the Program, that part may be used separately
367 | under those permissions, but the entire Program remains governed by
368 | this License without regard to the additional permissions.
369 |
370 | When you convey a copy of a covered work, you may at your option
371 | remove any additional permissions from that copy, or from any part of
372 | it. (Additional permissions may be written to require their own
373 | removal in certain cases when you modify the work.) You may place
374 | additional permissions on material, added by you to a covered work,
375 | for which you have or can give appropriate copyright permission.
376 |
377 | Notwithstanding any other provision of this License, for material you
378 | add to a covered work, you may (if authorized by the copyright holders of
379 | that material) supplement the terms of this License with terms:
380 |
381 | a) Disclaiming warranty or limiting liability differently from the
382 | terms of sections 15 and 16 of this License; or
383 |
384 | b) Requiring preservation of specified reasonable legal notices or
385 | author attributions in that material or in the Appropriate Legal
386 | Notices displayed by works containing it; or
387 |
388 | c) Prohibiting misrepresentation of the origin of that material, or
389 | requiring that modified versions of such material be marked in
390 | reasonable ways as different from the original version; or
391 |
392 | d) Limiting the use for publicity purposes of names of licensors or
393 | authors of the material; or
394 |
395 | e) Declining to grant rights under trademark law for use of some
396 | trade names, trademarks, or service marks; or
397 |
398 | f) Requiring indemnification of licensors and authors of that
399 | material by anyone who conveys the material (or modified versions of
400 | it) with contractual assumptions of liability to the recipient, for
401 | any liability that these contractual assumptions directly impose on
402 | those licensors and authors.
403 |
404 | All other non-permissive additional terms are considered "further
405 | restrictions" within the meaning of section 10. If the Program as you
406 | received it, or any part of it, contains a notice stating that it is
407 | governed by this License along with a term that is a further
408 | restriction, you may remove that term. If a license document contains
409 | a further restriction but permits relicensing or conveying under this
410 | License, you may add to a covered work material governed by the terms
411 | of that license document, provided that the further restriction does
412 | not survive such relicensing or conveying.
413 |
414 | If you add terms to a covered work in accord with this section, you
415 | must place, in the relevant source files, a statement of the
416 | additional terms that apply to those files, or a notice indicating
417 | where to find the applicable terms.
418 |
419 | Additional terms, permissive or non-permissive, may be stated in the
420 | form of a separately written license, or stated as exceptions;
421 | the above requirements apply either way.
422 |
423 | 8. Termination.
424 |
425 | You may not propagate or modify a covered work except as expressly
426 | provided under this License. Any attempt otherwise to propagate or
427 | modify it is void, and will automatically terminate your rights under
428 | this License (including any patent licenses granted under the third
429 | paragraph of section 11).
430 |
431 | However, if you cease all violation of this License, then your
432 | license from a particular copyright holder is reinstated (a)
433 | provisionally, unless and until the copyright holder explicitly and
434 | finally terminates your license, and (b) permanently, if the copyright
435 | holder fails to notify you of the violation by some reasonable means
436 | prior to 60 days after the cessation.
437 |
438 | Moreover, your license from a particular copyright holder is
439 | reinstated permanently if the copyright holder notifies you of the
440 | violation by some reasonable means, this is the first time you have
441 | received notice of violation of this License (for any work) from that
442 | copyright holder, and you cure the violation prior to 30 days after
443 | your receipt of the notice.
444 |
445 | Termination of your rights under this section does not terminate the
446 | licenses of parties who have received copies or rights from you under
447 | this License. If your rights have been terminated and not permanently
448 | reinstated, you do not qualify to receive new licenses for the same
449 | material under section 10.
450 |
451 | 9. Acceptance Not Required for Having Copies.
452 |
453 | You are not required to accept this License in order to receive or
454 | run a copy of the Program. Ancillary propagation of a covered work
455 | occurring solely as a consequence of using peer-to-peer transmission
456 | to receive a copy likewise does not require acceptance. However,
457 | nothing other than this License grants you permission to propagate or
458 | modify any covered work. These actions infringe copyright if you do
459 | not accept this License. Therefore, by modifying or propagating a
460 | covered work, you indicate your acceptance of this License to do so.
461 |
462 | 10. Automatic Licensing of Downstream Recipients.
463 |
464 | Each time you convey a covered work, the recipient automatically
465 | receives a license from the original licensors, to run, modify and
466 | propagate that work, subject to this License. You are not responsible
467 | for enforcing compliance by third parties with this License.
468 |
469 | An "entity transaction" is a transaction transferring control of an
470 | organization, or substantially all assets of one, or subdividing an
471 | organization, or merging organizations. If propagation of a covered
472 | work results from an entity transaction, each party to that
473 | transaction who receives a copy of the work also receives whatever
474 | licenses to the work the party's predecessor in interest had or could
475 | give under the previous paragraph, plus a right to possession of the
476 | Corresponding Source of the work from the predecessor in interest, if
477 | the predecessor has it or can get it with reasonable efforts.
478 |
479 | You may not impose any further restrictions on the exercise of the
480 | rights granted or affirmed under this License. For example, you may
481 | not impose a license fee, royalty, or other charge for exercise of
482 | rights granted under this License, and you may not initiate litigation
483 | (including a cross-claim or counterclaim in a lawsuit) alleging that
484 | any patent claim is infringed by making, using, selling, offering for
485 | sale, or importing the Program or any portion of it.
486 |
487 | 11. Patents.
488 |
489 | A "contributor" is a copyright holder who authorizes use under this
490 | License of the Program or a work on which the Program is based. The
491 | work thus licensed is called the contributor's "contributor version".
492 |
493 | A contributor's "essential patent claims" are all patent claims
494 | owned or controlled by the contributor, whether already acquired or
495 | hereafter acquired, that would be infringed by some manner, permitted
496 | by this License, of making, using, or selling its contributor version,
497 | but do not include claims that would be infringed only as a
498 | consequence of further modification of the contributor version. For
499 | purposes of this definition, "control" includes the right to grant
500 | patent sublicenses in a manner consistent with the requirements of
501 | this License.
502 |
503 | Each contributor grants you a non-exclusive, worldwide, royalty-free
504 | patent license under the contributor's essential patent claims, to
505 | make, use, sell, offer for sale, import and otherwise run, modify and
506 | propagate the contents of its contributor version.
507 |
508 | In the following three paragraphs, a "patent license" is any express
509 | agreement or commitment, however denominated, not to enforce a patent
510 | (such as an express permission to practice a patent or covenant not to
511 | sue for patent infringement). To "grant" such a patent license to a
512 | party means to make such an agreement or commitment not to enforce a
513 | patent against the party.
514 |
515 | If you convey a covered work, knowingly relying on a patent license,
516 | and the Corresponding Source of the work is not available for anyone
517 | to copy, free of charge and under the terms of this License, through a
518 | publicly available network server or other readily accessible means,
519 | then you must either (1) cause the Corresponding Source to be so
520 | available, or (2) arrange to deprive yourself of the benefit of the
521 | patent license for this particular work, or (3) arrange, in a manner
522 | consistent with the requirements of this License, to extend the patent
523 | license to downstream recipients. "Knowingly relying" means you have
524 | actual knowledge that, but for the patent license, your conveying the
525 | covered work in a country, or your recipient's use of the covered work
526 | in a country, would infringe one or more identifiable patents in that
527 | country that you have reason to believe are valid.
528 |
529 | If, pursuant to or in connection with a single transaction or
530 | arrangement, you convey, or propagate by procuring conveyance of, a
531 | covered work, and grant a patent license to some of the parties
532 | receiving the covered work authorizing them to use, propagate, modify
533 | or convey a specific copy of the covered work, then the patent license
534 | you grant is automatically extended to all recipients of the covered
535 | work and works based on it.
536 |
537 | A patent license is "discriminatory" if it does not include within
538 | the scope of its coverage, prohibits the exercise of, or is
539 | conditioned on the non-exercise of one or more of the rights that are
540 | specifically granted under this License. You may not convey a covered
541 | work if you are a party to an arrangement with a third party that is
542 | in the business of distributing software, under which you make payment
543 | to the third party based on the extent of your activity of conveying
544 | the work, and under which the third party grants, to any of the
545 | parties who would receive the covered work from you, a discriminatory
546 | patent license (a) in connection with copies of the covered work
547 | conveyed by you (or copies made from those copies), or (b) primarily
548 | for and in connection with specific products or compilations that
549 | contain the covered work, unless you entered into that arrangement,
550 | or that patent license was granted, prior to 28 March 2007.
551 |
552 | Nothing in this License shall be construed as excluding or limiting
553 | any implied license or other defenses to infringement that may
554 | otherwise be available to you under applicable patent law.
555 |
556 | 12. No Surrender of Others' Freedom.
557 |
558 | If conditions are imposed on you (whether by court order, agreement or
559 | otherwise) that contradict the conditions of this License, they do not
560 | excuse you from the conditions of this License. If you cannot convey a
561 | covered work so as to satisfy simultaneously your obligations under this
562 | License and any other pertinent obligations, then as a consequence you may
563 | not convey it at all. For example, if you agree to terms that obligate you
564 | to collect a royalty for further conveying from those to whom you convey
565 | the Program, the only way you could satisfy both those terms and this
566 | License would be to refrain entirely from conveying the Program.
567 |
568 | 13. Use with the GNU Affero General Public License.
569 |
570 | Notwithstanding any other provision of this License, you have
571 | permission to link or combine any covered work with a work licensed
572 | under version 3 of the GNU Affero General Public License into a single
573 | combined work, and to convey the resulting work. The terms of this
574 | License will continue to apply to the part which is the covered work,
575 | but the special requirements of the GNU Affero General Public License,
576 | section 13, concerning interaction through a network will apply to the
577 | combination as such.
578 |
579 | 14. Revised Versions of this License.
580 |
581 | The Free Software Foundation may publish revised and/or new versions of
582 | the GNU General Public License from time to time. Such new versions will
583 | be similar in spirit to the present version, but may differ in detail to
584 | address new problems or concerns.
585 |
586 | Each version is given a distinguishing version number. If the
587 | Program specifies that a certain numbered version of the GNU General
588 | Public License "or any later version" applies to it, you have the
589 | option of following the terms and conditions either of that numbered
590 | version or of any later version published by the Free Software
591 | Foundation. If the Program does not specify a version number of the
592 | GNU General Public License, you may choose any version ever published
593 | by the Free Software Foundation.
594 |
595 | If the Program specifies that a proxy can decide which future
596 | versions of the GNU General Public License can be used, that proxy's
597 | public statement of acceptance of a version permanently authorizes you
598 | to choose that version for the Program.
599 |
600 | Later license versions may give you additional or different
601 | permissions. However, no additional obligations are imposed on any
602 | author or copyright holder as a result of your choosing to follow a
603 | later version.
604 |
605 | 15. Disclaimer of Warranty.
606 |
607 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
608 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
609 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
610 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
611 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
612 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
613 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
614 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
615 |
616 | 16. Limitation of Liability.
617 |
618 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
619 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
620 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
621 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
622 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
623 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
624 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
625 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
626 | SUCH DAMAGES.
627 |
628 | 17. Interpretation of Sections 15 and 16.
629 |
630 | If the disclaimer of warranty and limitation of liability provided
631 | above cannot be given local legal effect according to their terms,
632 | reviewing courts shall apply local law that most closely approximates
633 | an absolute waiver of all civil liability in connection with the
634 | Program, unless a warranty or assumption of liability accompanies a
635 | copy of the Program in return for a fee.
636 |
637 | END OF TERMS AND CONDITIONS
638 |
639 | How to Apply These Terms to Your New Programs
640 |
641 | If you develop a new program, and you want it to be of the greatest
642 | possible use to the public, the best way to achieve this is to make it
643 | free software which everyone can redistribute and change under these terms.
644 |
645 | To do so, attach the following notices to the program. It is safest
646 | to attach them to the start of each source file to most effectively
647 | state the exclusion of warranty; and each file should have at least
648 | the "copyright" line and a pointer to where the full notice is found.
649 |
650 |
651 | Copyright (C)
652 |
653 | This program is free software: you can redistribute it and/or modify
654 | it under the terms of the GNU General Public License as published by
655 | the Free Software Foundation, either version 3 of the License, or
656 | (at your option) any later version.
657 |
658 | This program is distributed in the hope that it will be useful,
659 | but WITHOUT ANY WARRANTY; without even the implied warranty of
660 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
661 | GNU General Public License for more details.
662 |
663 | You should have received a copy of the GNU General Public License
664 | along with this program. If not, see .
665 |
666 | Also add information on how to contact you by electronic and paper mail.
667 |
668 | If the program does terminal interaction, make it output a short
669 | notice like this when it starts in an interactive mode:
670 |
671 | Copyright (C)
672 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
673 | This is free software, and you are welcome to redistribute it
674 | under certain conditions; type `show c' for details.
675 |
676 | The hypothetical commands `show w' and `show c' should show the appropriate
677 | parts of the General Public License. Of course, your program's commands
678 | might be different; for a GUI interface, you would use an "about box".
679 |
680 | You should also get your employer (if you work as a programmer) or school,
681 | if any, to sign a "copyright disclaimer" for the program, if necessary.
682 | For more information on this, and how to apply and follow the GNU GPL, see
683 | .
684 |
685 | The GNU General Public License does not permit incorporating your program
686 | into proprietary programs. If your program is a subroutine library, you
687 | may consider it more useful to permit linking proprietary applications with
688 | the library. If this is what you want to do, use the GNU Lesser General
689 | Public License instead of this License. But first, please read
690 | .
--------------------------------------------------------------------------------
/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", "@babel/code-frame@^7.0.0-beta.35":
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/generator@^7.2.2":
12 | version "7.3.2"
13 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.3.2.tgz#fff31a7b2f2f3dad23ef8e01be45b0d5c2fc0132"
14 | dependencies:
15 | "@babel/types" "^7.3.2"
16 | jsesc "^2.5.1"
17 | lodash "^4.17.10"
18 | source-map "^0.5.0"
19 | trim-right "^1.0.1"
20 |
21 | "@babel/helper-function-name@^7.1.0":
22 | version "7.1.0"
23 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz#a0ceb01685f73355d4360c1247f582bfafc8ff53"
24 | dependencies:
25 | "@babel/helper-get-function-arity" "^7.0.0"
26 | "@babel/template" "^7.1.0"
27 | "@babel/types" "^7.0.0"
28 |
29 | "@babel/helper-get-function-arity@^7.0.0":
30 | version "7.0.0"
31 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz#83572d4320e2a4657263734113c42868b64e49c3"
32 | dependencies:
33 | "@babel/types" "^7.0.0"
34 |
35 | "@babel/helper-split-export-declaration@^7.0.0":
36 | version "7.0.0"
37 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.0.0.tgz#3aae285c0311c2ab095d997b8c9a94cad547d813"
38 | dependencies:
39 | "@babel/types" "^7.0.0"
40 |
41 | "@babel/highlight@^7.0.0":
42 | version "7.0.0"
43 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0.tgz#f710c38c8d458e6dd9a201afb637fcb781ce99e4"
44 | dependencies:
45 | chalk "^2.0.0"
46 | esutils "^2.0.2"
47 | js-tokens "^4.0.0"
48 |
49 | "@babel/parser@^7.0.0", "@babel/parser@^7.2.2", "@babel/parser@^7.2.3":
50 | version "7.3.2"
51 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.3.2.tgz#95cdeddfc3992a6ca2a1315191c1679ca32c55cd"
52 |
53 | "@babel/template@^7.1.0":
54 | version "7.2.2"
55 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.2.2.tgz#005b3fdf0ed96e88041330379e0da9a708eb2907"
56 | dependencies:
57 | "@babel/code-frame" "^7.0.0"
58 | "@babel/parser" "^7.2.2"
59 | "@babel/types" "^7.2.2"
60 |
61 | "@babel/traverse@^7.0.0":
62 | version "7.2.3"
63 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.2.3.tgz#7ff50cefa9c7c0bd2d81231fdac122f3957748d8"
64 | dependencies:
65 | "@babel/code-frame" "^7.0.0"
66 | "@babel/generator" "^7.2.2"
67 | "@babel/helper-function-name" "^7.1.0"
68 | "@babel/helper-split-export-declaration" "^7.0.0"
69 | "@babel/parser" "^7.2.3"
70 | "@babel/types" "^7.2.2"
71 | debug "^4.1.0"
72 | globals "^11.1.0"
73 | lodash "^4.17.10"
74 |
75 | "@babel/types@^7.0.0", "@babel/types@^7.2.2", "@babel/types@^7.3.2":
76 | version "7.3.2"
77 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.3.2.tgz#424f5be4be633fff33fb83ab8d67e4a8290f5a2f"
78 | dependencies:
79 | esutils "^2.0.2"
80 | lodash "^4.17.10"
81 | to-fast-properties "^2.0.0"
82 |
83 | "@types/estree@0.0.39":
84 | version "0.0.39"
85 | resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f"
86 |
87 | "@types/node@*":
88 | version "10.5.1"
89 | resolved "https://registry.yarnpkg.com/@types/node/-/node-10.5.1.tgz#d578446f4abff5c0b49ade9b4e5274f6badaadfc"
90 |
91 | abab@^2.0.0:
92 | version "2.0.0"
93 | resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.0.tgz#aba0ab4c5eee2d4c79d3487d85450fb2376ebb0f"
94 |
95 | abbrev@1:
96 | version "1.1.1"
97 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
98 |
99 | acorn-globals@^4.1.0:
100 | version "4.3.0"
101 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.3.0.tgz#e3b6f8da3c1552a95ae627571f7dd6923bb54103"
102 | dependencies:
103 | acorn "^6.0.1"
104 | acorn-walk "^6.0.1"
105 |
106 | acorn-jsx@^5.0.0:
107 | version "5.0.1"
108 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.0.1.tgz#32a064fd925429216a09b141102bfdd185fae40e"
109 |
110 | acorn-walk@^6.0.1:
111 | version "6.1.1"
112 | resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.1.1.tgz#d363b66f5fac5f018ff9c3a1e7b6f8e310cc3913"
113 |
114 | acorn@^5.5.3:
115 | version "5.7.3"
116 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279"
117 |
118 | acorn@^6.0.1, acorn@^6.0.2:
119 | version "6.0.7"
120 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.0.7.tgz#490180ce18337270232d9488a44be83d9afb7fd3"
121 |
122 | ajv@^6.5.3, ajv@^6.5.5, ajv@^6.6.1:
123 | version "6.8.1"
124 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.8.1.tgz#0890b93742985ebf8973cd365c5b23920ce3cb20"
125 | dependencies:
126 | fast-deep-equal "^2.0.1"
127 | fast-json-stable-stringify "^2.0.0"
128 | json-schema-traverse "^0.4.1"
129 | uri-js "^4.2.2"
130 |
131 | ansi-escapes@^3.0.0, ansi-escapes@^3.2.0:
132 | version "3.2.0"
133 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b"
134 |
135 | ansi-regex@^2.0.0:
136 | version "2.1.1"
137 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
138 |
139 | ansi-regex@^3.0.0:
140 | version "3.0.0"
141 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
142 |
143 | ansi-regex@^4.0.0:
144 | version "4.0.0"
145 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.0.0.tgz#70de791edf021404c3fd615aa89118ae0432e5a9"
146 |
147 | ansi-styles@^2.2.1:
148 | version "2.2.1"
149 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
150 |
151 | ansi-styles@^3.2.0, ansi-styles@^3.2.1:
152 | version "3.2.1"
153 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
154 | dependencies:
155 | color-convert "^1.9.0"
156 |
157 | anymatch@^1.3.0:
158 | version "1.3.2"
159 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a"
160 | dependencies:
161 | micromatch "^2.1.5"
162 | normalize-path "^2.0.0"
163 |
164 | anymatch@^2.0.0:
165 | version "2.0.0"
166 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb"
167 | dependencies:
168 | micromatch "^3.1.4"
169 | normalize-path "^2.1.1"
170 |
171 | append-transform@^0.4.0:
172 | version "0.4.0"
173 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991"
174 | dependencies:
175 | default-require-extensions "^1.0.0"
176 |
177 | aproba@^1.0.3:
178 | version "1.2.0"
179 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
180 |
181 | are-we-there-yet@~1.1.2:
182 | version "1.1.5"
183 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21"
184 | dependencies:
185 | delegates "^1.0.0"
186 | readable-stream "^2.0.6"
187 |
188 | argparse@^1.0.7:
189 | version "1.0.10"
190 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
191 | dependencies:
192 | sprintf-js "~1.0.2"
193 |
194 | arr-diff@^2.0.0:
195 | version "2.0.0"
196 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf"
197 | dependencies:
198 | arr-flatten "^1.0.1"
199 |
200 | arr-diff@^4.0.0:
201 | version "4.0.0"
202 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520"
203 |
204 | arr-flatten@^1.0.1, arr-flatten@^1.1.0:
205 | version "1.1.0"
206 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
207 |
208 | arr-union@^3.1.0:
209 | version "3.1.0"
210 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4"
211 |
212 | array-equal@^1.0.0:
213 | version "1.0.0"
214 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93"
215 |
216 | array-unique@^0.2.1:
217 | version "0.2.1"
218 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53"
219 |
220 | array-unique@^0.3.2:
221 | version "0.3.2"
222 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
223 |
224 | arrify@^1.0.1:
225 | version "1.0.1"
226 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
227 |
228 | asn1@~0.2.3:
229 | version "0.2.4"
230 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136"
231 | dependencies:
232 | safer-buffer "~2.1.0"
233 |
234 | assert-plus@1.0.0, assert-plus@^1.0.0:
235 | version "1.0.0"
236 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
237 |
238 | assign-symbols@^1.0.0:
239 | version "1.0.0"
240 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"
241 |
242 | astral-regex@^1.0.0:
243 | version "1.0.0"
244 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9"
245 |
246 | async-each@^1.0.0:
247 | version "1.0.1"
248 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d"
249 |
250 | async-limiter@~1.0.0:
251 | version "1.0.0"
252 | resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8"
253 |
254 | async@^2.1.4:
255 | version "2.6.1"
256 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.1.tgz#b245a23ca71930044ec53fa46aa00a3e87c6a610"
257 | dependencies:
258 | lodash "^4.17.10"
259 |
260 | asynckit@^0.4.0:
261 | version "0.4.0"
262 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
263 |
264 | atob@^2.1.1:
265 | version "2.1.2"
266 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
267 |
268 | aws-sign2@~0.7.0:
269 | version "0.7.0"
270 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"
271 |
272 | aws4@^1.8.0:
273 | version "1.8.0"
274 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.8.0.tgz#f0e003d9ca9e7f59c7a508945d7b2ef9a04a542f"
275 |
276 | babel-cli@^6.26.0:
277 | version "6.26.0"
278 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.26.0.tgz#502ab54874d7db88ad00b887a06383ce03d002f1"
279 | dependencies:
280 | babel-core "^6.26.0"
281 | babel-polyfill "^6.26.0"
282 | babel-register "^6.26.0"
283 | babel-runtime "^6.26.0"
284 | commander "^2.11.0"
285 | convert-source-map "^1.5.0"
286 | fs-readdir-recursive "^1.0.0"
287 | glob "^7.1.2"
288 | lodash "^4.17.4"
289 | output-file-sync "^1.1.2"
290 | path-is-absolute "^1.0.1"
291 | slash "^1.0.0"
292 | source-map "^0.5.6"
293 | v8flags "^2.1.1"
294 | optionalDependencies:
295 | chokidar "^1.6.1"
296 |
297 | babel-code-frame@^6.26.0:
298 | version "6.26.0"
299 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"
300 | dependencies:
301 | chalk "^1.1.3"
302 | esutils "^2.0.2"
303 | js-tokens "^3.0.2"
304 |
305 | babel-core@^6.0.0, babel-core@^6.26.0:
306 | version "6.26.3"
307 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.3.tgz#b2e2f09e342d0f0c88e2f02e067794125e75c207"
308 | dependencies:
309 | babel-code-frame "^6.26.0"
310 | babel-generator "^6.26.0"
311 | babel-helpers "^6.24.1"
312 | babel-messages "^6.23.0"
313 | babel-register "^6.26.0"
314 | babel-runtime "^6.26.0"
315 | babel-template "^6.26.0"
316 | babel-traverse "^6.26.0"
317 | babel-types "^6.26.0"
318 | babylon "^6.18.0"
319 | convert-source-map "^1.5.1"
320 | debug "^2.6.9"
321 | json5 "^0.5.1"
322 | lodash "^4.17.4"
323 | minimatch "^3.0.4"
324 | path-is-absolute "^1.0.1"
325 | private "^0.1.8"
326 | slash "^1.0.0"
327 | source-map "^0.5.7"
328 |
329 | babel-eslint@^10.0.1:
330 | version "10.0.1"
331 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-10.0.1.tgz#919681dc099614cd7d31d45c8908695092a1faed"
332 | dependencies:
333 | "@babel/code-frame" "^7.0.0"
334 | "@babel/parser" "^7.0.0"
335 | "@babel/traverse" "^7.0.0"
336 | "@babel/types" "^7.0.0"
337 | eslint-scope "3.7.1"
338 | eslint-visitor-keys "^1.0.0"
339 |
340 | babel-generator@^6.18.0, babel-generator@^6.26.0:
341 | version "6.26.1"
342 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90"
343 | dependencies:
344 | babel-messages "^6.23.0"
345 | babel-runtime "^6.26.0"
346 | babel-types "^6.26.0"
347 | detect-indent "^4.0.0"
348 | jsesc "^1.3.0"
349 | lodash "^4.17.4"
350 | source-map "^0.5.7"
351 | trim-right "^1.0.1"
352 |
353 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1:
354 | version "6.24.1"
355 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664"
356 | dependencies:
357 | babel-helper-explode-assignable-expression "^6.24.1"
358 | babel-runtime "^6.22.0"
359 | babel-types "^6.24.1"
360 |
361 | babel-helper-call-delegate@^6.24.1:
362 | version "6.24.1"
363 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d"
364 | dependencies:
365 | babel-helper-hoist-variables "^6.24.1"
366 | babel-runtime "^6.22.0"
367 | babel-traverse "^6.24.1"
368 | babel-types "^6.24.1"
369 |
370 | babel-helper-define-map@^6.24.1:
371 | version "6.26.0"
372 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f"
373 | dependencies:
374 | babel-helper-function-name "^6.24.1"
375 | babel-runtime "^6.26.0"
376 | babel-types "^6.26.0"
377 | lodash "^4.17.4"
378 |
379 | babel-helper-explode-assignable-expression@^6.24.1:
380 | version "6.24.1"
381 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa"
382 | dependencies:
383 | babel-runtime "^6.22.0"
384 | babel-traverse "^6.24.1"
385 | babel-types "^6.24.1"
386 |
387 | babel-helper-function-name@^6.24.1:
388 | version "6.24.1"
389 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9"
390 | dependencies:
391 | babel-helper-get-function-arity "^6.24.1"
392 | babel-runtime "^6.22.0"
393 | babel-template "^6.24.1"
394 | babel-traverse "^6.24.1"
395 | babel-types "^6.24.1"
396 |
397 | babel-helper-get-function-arity@^6.24.1:
398 | version "6.24.1"
399 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d"
400 | dependencies:
401 | babel-runtime "^6.22.0"
402 | babel-types "^6.24.1"
403 |
404 | babel-helper-hoist-variables@^6.24.1:
405 | version "6.24.1"
406 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76"
407 | dependencies:
408 | babel-runtime "^6.22.0"
409 | babel-types "^6.24.1"
410 |
411 | babel-helper-optimise-call-expression@^6.24.1:
412 | version "6.24.1"
413 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257"
414 | dependencies:
415 | babel-runtime "^6.22.0"
416 | babel-types "^6.24.1"
417 |
418 | babel-helper-regex@^6.24.1:
419 | version "6.26.0"
420 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72"
421 | dependencies:
422 | babel-runtime "^6.26.0"
423 | babel-types "^6.26.0"
424 | lodash "^4.17.4"
425 |
426 | babel-helper-remap-async-to-generator@^6.24.1:
427 | version "6.24.1"
428 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b"
429 | dependencies:
430 | babel-helper-function-name "^6.24.1"
431 | babel-runtime "^6.22.0"
432 | babel-template "^6.24.1"
433 | babel-traverse "^6.24.1"
434 | babel-types "^6.24.1"
435 |
436 | babel-helper-replace-supers@^6.24.1:
437 | version "6.24.1"
438 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a"
439 | dependencies:
440 | babel-helper-optimise-call-expression "^6.24.1"
441 | babel-messages "^6.23.0"
442 | babel-runtime "^6.22.0"
443 | babel-template "^6.24.1"
444 | babel-traverse "^6.24.1"
445 | babel-types "^6.24.1"
446 |
447 | babel-helpers@^6.24.1:
448 | version "6.24.1"
449 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2"
450 | dependencies:
451 | babel-runtime "^6.22.0"
452 | babel-template "^6.24.1"
453 |
454 | babel-jest@^23.6.0:
455 | version "23.6.0"
456 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-23.6.0.tgz#a644232366557a2240a0c083da6b25786185a2f1"
457 | dependencies:
458 | babel-plugin-istanbul "^4.1.6"
459 | babel-preset-jest "^23.2.0"
460 |
461 | babel-messages@^6.23.0:
462 | version "6.23.0"
463 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e"
464 | dependencies:
465 | babel-runtime "^6.22.0"
466 |
467 | babel-plugin-check-es2015-constants@^6.22.0:
468 | version "6.22.0"
469 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a"
470 | dependencies:
471 | babel-runtime "^6.22.0"
472 |
473 | babel-plugin-istanbul@^4.1.6:
474 | version "4.1.6"
475 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.6.tgz#36c59b2192efce81c5b378321b74175add1c9a45"
476 | dependencies:
477 | babel-plugin-syntax-object-rest-spread "^6.13.0"
478 | find-up "^2.1.0"
479 | istanbul-lib-instrument "^1.10.1"
480 | test-exclude "^4.2.1"
481 |
482 | babel-plugin-jest-hoist@^23.2.0:
483 | version "23.2.0"
484 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-23.2.0.tgz#e61fae05a1ca8801aadee57a6d66b8cefaf44167"
485 |
486 | babel-plugin-syntax-async-functions@^6.8.0:
487 | version "6.13.0"
488 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95"
489 |
490 | babel-plugin-syntax-exponentiation-operator@^6.8.0:
491 | version "6.13.0"
492 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de"
493 |
494 | babel-plugin-syntax-object-rest-spread@^6.13.0:
495 | version "6.13.0"
496 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5"
497 |
498 | babel-plugin-syntax-trailing-function-commas@^6.22.0:
499 | version "6.22.0"
500 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3"
501 |
502 | babel-plugin-transform-async-to-generator@^6.22.0:
503 | version "6.24.1"
504 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761"
505 | dependencies:
506 | babel-helper-remap-async-to-generator "^6.24.1"
507 | babel-plugin-syntax-async-functions "^6.8.0"
508 | babel-runtime "^6.22.0"
509 |
510 | babel-plugin-transform-es2015-arrow-functions@^6.22.0:
511 | version "6.22.0"
512 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221"
513 | dependencies:
514 | babel-runtime "^6.22.0"
515 |
516 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0:
517 | version "6.22.0"
518 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141"
519 | dependencies:
520 | babel-runtime "^6.22.0"
521 |
522 | babel-plugin-transform-es2015-block-scoping@^6.23.0:
523 | version "6.26.0"
524 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f"
525 | dependencies:
526 | babel-runtime "^6.26.0"
527 | babel-template "^6.26.0"
528 | babel-traverse "^6.26.0"
529 | babel-types "^6.26.0"
530 | lodash "^4.17.4"
531 |
532 | babel-plugin-transform-es2015-classes@^6.23.0:
533 | version "6.24.1"
534 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db"
535 | dependencies:
536 | babel-helper-define-map "^6.24.1"
537 | babel-helper-function-name "^6.24.1"
538 | babel-helper-optimise-call-expression "^6.24.1"
539 | babel-helper-replace-supers "^6.24.1"
540 | babel-messages "^6.23.0"
541 | babel-runtime "^6.22.0"
542 | babel-template "^6.24.1"
543 | babel-traverse "^6.24.1"
544 | babel-types "^6.24.1"
545 |
546 | babel-plugin-transform-es2015-computed-properties@^6.22.0:
547 | version "6.24.1"
548 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3"
549 | dependencies:
550 | babel-runtime "^6.22.0"
551 | babel-template "^6.24.1"
552 |
553 | babel-plugin-transform-es2015-destructuring@^6.23.0:
554 | version "6.23.0"
555 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d"
556 | dependencies:
557 | babel-runtime "^6.22.0"
558 |
559 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0:
560 | version "6.24.1"
561 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e"
562 | dependencies:
563 | babel-runtime "^6.22.0"
564 | babel-types "^6.24.1"
565 |
566 | babel-plugin-transform-es2015-for-of@^6.23.0:
567 | version "6.23.0"
568 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691"
569 | dependencies:
570 | babel-runtime "^6.22.0"
571 |
572 | babel-plugin-transform-es2015-function-name@^6.22.0:
573 | version "6.24.1"
574 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b"
575 | dependencies:
576 | babel-helper-function-name "^6.24.1"
577 | babel-runtime "^6.22.0"
578 | babel-types "^6.24.1"
579 |
580 | babel-plugin-transform-es2015-literals@^6.22.0:
581 | version "6.22.0"
582 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e"
583 | dependencies:
584 | babel-runtime "^6.22.0"
585 |
586 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1:
587 | version "6.24.1"
588 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154"
589 | dependencies:
590 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1"
591 | babel-runtime "^6.22.0"
592 | babel-template "^6.24.1"
593 |
594 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1:
595 | version "6.26.2"
596 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz#58a793863a9e7ca870bdc5a881117ffac27db6f3"
597 | dependencies:
598 | babel-plugin-transform-strict-mode "^6.24.1"
599 | babel-runtime "^6.26.0"
600 | babel-template "^6.26.0"
601 | babel-types "^6.26.0"
602 |
603 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0:
604 | version "6.24.1"
605 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23"
606 | dependencies:
607 | babel-helper-hoist-variables "^6.24.1"
608 | babel-runtime "^6.22.0"
609 | babel-template "^6.24.1"
610 |
611 | babel-plugin-transform-es2015-modules-umd@^6.23.0:
612 | version "6.24.1"
613 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468"
614 | dependencies:
615 | babel-plugin-transform-es2015-modules-amd "^6.24.1"
616 | babel-runtime "^6.22.0"
617 | babel-template "^6.24.1"
618 |
619 | babel-plugin-transform-es2015-object-super@^6.22.0:
620 | version "6.24.1"
621 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d"
622 | dependencies:
623 | babel-helper-replace-supers "^6.24.1"
624 | babel-runtime "^6.22.0"
625 |
626 | babel-plugin-transform-es2015-parameters@^6.23.0:
627 | version "6.24.1"
628 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b"
629 | dependencies:
630 | babel-helper-call-delegate "^6.24.1"
631 | babel-helper-get-function-arity "^6.24.1"
632 | babel-runtime "^6.22.0"
633 | babel-template "^6.24.1"
634 | babel-traverse "^6.24.1"
635 | babel-types "^6.24.1"
636 |
637 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0:
638 | version "6.24.1"
639 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0"
640 | dependencies:
641 | babel-runtime "^6.22.0"
642 | babel-types "^6.24.1"
643 |
644 | babel-plugin-transform-es2015-spread@^6.22.0:
645 | version "6.22.0"
646 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1"
647 | dependencies:
648 | babel-runtime "^6.22.0"
649 |
650 | babel-plugin-transform-es2015-sticky-regex@^6.22.0:
651 | version "6.24.1"
652 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc"
653 | dependencies:
654 | babel-helper-regex "^6.24.1"
655 | babel-runtime "^6.22.0"
656 | babel-types "^6.24.1"
657 |
658 | babel-plugin-transform-es2015-template-literals@^6.22.0:
659 | version "6.22.0"
660 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d"
661 | dependencies:
662 | babel-runtime "^6.22.0"
663 |
664 | babel-plugin-transform-es2015-typeof-symbol@^6.23.0:
665 | version "6.23.0"
666 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372"
667 | dependencies:
668 | babel-runtime "^6.22.0"
669 |
670 | babel-plugin-transform-es2015-unicode-regex@^6.22.0:
671 | version "6.24.1"
672 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9"
673 | dependencies:
674 | babel-helper-regex "^6.24.1"
675 | babel-runtime "^6.22.0"
676 | regexpu-core "^2.0.0"
677 |
678 | babel-plugin-transform-exponentiation-operator@^6.22.0:
679 | version "6.24.1"
680 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e"
681 | dependencies:
682 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1"
683 | babel-plugin-syntax-exponentiation-operator "^6.8.0"
684 | babel-runtime "^6.22.0"
685 |
686 | babel-plugin-transform-regenerator@^6.22.0:
687 | version "6.26.0"
688 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f"
689 | dependencies:
690 | regenerator-transform "^0.10.0"
691 |
692 | babel-plugin-transform-strict-mode@^6.24.1:
693 | version "6.24.1"
694 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758"
695 | dependencies:
696 | babel-runtime "^6.22.0"
697 | babel-types "^6.24.1"
698 |
699 | babel-polyfill@^6.26.0:
700 | version "6.26.0"
701 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153"
702 | dependencies:
703 | babel-runtime "^6.26.0"
704 | core-js "^2.5.0"
705 | regenerator-runtime "^0.10.5"
706 |
707 | babel-preset-env@^1.7.0:
708 | version "1.7.0"
709 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.7.0.tgz#dea79fa4ebeb883cd35dab07e260c1c9c04df77a"
710 | dependencies:
711 | babel-plugin-check-es2015-constants "^6.22.0"
712 | babel-plugin-syntax-trailing-function-commas "^6.22.0"
713 | babel-plugin-transform-async-to-generator "^6.22.0"
714 | babel-plugin-transform-es2015-arrow-functions "^6.22.0"
715 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0"
716 | babel-plugin-transform-es2015-block-scoping "^6.23.0"
717 | babel-plugin-transform-es2015-classes "^6.23.0"
718 | babel-plugin-transform-es2015-computed-properties "^6.22.0"
719 | babel-plugin-transform-es2015-destructuring "^6.23.0"
720 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0"
721 | babel-plugin-transform-es2015-for-of "^6.23.0"
722 | babel-plugin-transform-es2015-function-name "^6.22.0"
723 | babel-plugin-transform-es2015-literals "^6.22.0"
724 | babel-plugin-transform-es2015-modules-amd "^6.22.0"
725 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0"
726 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0"
727 | babel-plugin-transform-es2015-modules-umd "^6.23.0"
728 | babel-plugin-transform-es2015-object-super "^6.22.0"
729 | babel-plugin-transform-es2015-parameters "^6.23.0"
730 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0"
731 | babel-plugin-transform-es2015-spread "^6.22.0"
732 | babel-plugin-transform-es2015-sticky-regex "^6.22.0"
733 | babel-plugin-transform-es2015-template-literals "^6.22.0"
734 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0"
735 | babel-plugin-transform-es2015-unicode-regex "^6.22.0"
736 | babel-plugin-transform-exponentiation-operator "^6.22.0"
737 | babel-plugin-transform-regenerator "^6.22.0"
738 | browserslist "^3.2.6"
739 | invariant "^2.2.2"
740 | semver "^5.3.0"
741 |
742 | babel-preset-jest@^23.2.0:
743 | version "23.2.0"
744 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-23.2.0.tgz#8ec7a03a138f001a1a8fb1e8113652bf1a55da46"
745 | dependencies:
746 | babel-plugin-jest-hoist "^23.2.0"
747 | babel-plugin-syntax-object-rest-spread "^6.13.0"
748 |
749 | babel-register@^6.26.0:
750 | version "6.26.0"
751 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071"
752 | dependencies:
753 | babel-core "^6.26.0"
754 | babel-runtime "^6.26.0"
755 | core-js "^2.5.0"
756 | home-or-tmp "^2.0.0"
757 | lodash "^4.17.4"
758 | mkdirp "^0.5.1"
759 | source-map-support "^0.4.15"
760 |
761 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0:
762 | version "6.26.0"
763 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
764 | dependencies:
765 | core-js "^2.4.0"
766 | regenerator-runtime "^0.11.0"
767 |
768 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0:
769 | version "6.26.0"
770 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02"
771 | dependencies:
772 | babel-runtime "^6.26.0"
773 | babel-traverse "^6.26.0"
774 | babel-types "^6.26.0"
775 | babylon "^6.18.0"
776 | lodash "^4.17.4"
777 |
778 | babel-traverse@^6.0.0, babel-traverse@^6.18.0, babel-traverse@^6.24.1, babel-traverse@^6.26.0:
779 | version "6.26.0"
780 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee"
781 | dependencies:
782 | babel-code-frame "^6.26.0"
783 | babel-messages "^6.23.0"
784 | babel-runtime "^6.26.0"
785 | babel-types "^6.26.0"
786 | babylon "^6.18.0"
787 | debug "^2.6.8"
788 | globals "^9.18.0"
789 | invariant "^2.2.2"
790 | lodash "^4.17.4"
791 |
792 | babel-types@^6.0.0, babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0:
793 | version "6.26.0"
794 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497"
795 | dependencies:
796 | babel-runtime "^6.26.0"
797 | esutils "^2.0.2"
798 | lodash "^4.17.4"
799 | to-fast-properties "^1.0.3"
800 |
801 | babylon@^6.18.0:
802 | version "6.18.0"
803 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3"
804 |
805 | balanced-match@^1.0.0:
806 | version "1.0.0"
807 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
808 |
809 | base@^0.11.1:
810 | version "0.11.2"
811 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f"
812 | dependencies:
813 | cache-base "^1.0.1"
814 | class-utils "^0.3.5"
815 | component-emitter "^1.2.1"
816 | define-property "^1.0.0"
817 | isobject "^3.0.1"
818 | mixin-deep "^1.2.0"
819 | pascalcase "^0.1.1"
820 |
821 | bcrypt-pbkdf@^1.0.0:
822 | version "1.0.2"
823 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e"
824 | dependencies:
825 | tweetnacl "^0.14.3"
826 |
827 | binary-extensions@^1.0.0:
828 | version "1.11.0"
829 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205"
830 |
831 | brace-expansion@^1.1.7:
832 | version "1.1.11"
833 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
834 | dependencies:
835 | balanced-match "^1.0.0"
836 | concat-map "0.0.1"
837 |
838 | braces@^1.8.2:
839 | version "1.8.5"
840 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7"
841 | dependencies:
842 | expand-range "^1.8.1"
843 | preserve "^0.2.0"
844 | repeat-element "^1.1.2"
845 |
846 | braces@^2.3.1:
847 | version "2.3.2"
848 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729"
849 | dependencies:
850 | arr-flatten "^1.1.0"
851 | array-unique "^0.3.2"
852 | extend-shallow "^2.0.1"
853 | fill-range "^4.0.0"
854 | isobject "^3.0.1"
855 | repeat-element "^1.1.2"
856 | snapdragon "^0.8.1"
857 | snapdragon-node "^2.0.1"
858 | split-string "^3.0.2"
859 | to-regex "^3.0.1"
860 |
861 | browser-process-hrtime@^0.1.2:
862 | version "0.1.3"
863 | resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-0.1.3.tgz#616f00faef1df7ec1b5bf9cfe2bdc3170f26c7b4"
864 |
865 | browser-resolve@^1.11.3:
866 | version "1.11.3"
867 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.3.tgz#9b7cbb3d0f510e4cb86bdbd796124d28b5890af6"
868 | dependencies:
869 | resolve "1.1.7"
870 |
871 | browserslist@^3.2.6:
872 | version "3.2.8"
873 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-3.2.8.tgz#b0005361d6471f0f5952797a76fc985f1f978fc6"
874 | dependencies:
875 | caniuse-lite "^1.0.30000844"
876 | electron-to-chromium "^1.3.47"
877 |
878 | bser@^2.0.0:
879 | version "2.0.0"
880 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719"
881 | dependencies:
882 | node-int64 "^0.4.0"
883 |
884 | buffer-from@^1.0.0:
885 | version "1.1.1"
886 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef"
887 |
888 | builtin-modules@^2.0.0:
889 | version "2.0.0"
890 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-2.0.0.tgz#60b7ef5ae6546bd7deefa74b08b62a43a232648e"
891 |
892 | cache-base@^1.0.1:
893 | version "1.0.1"
894 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2"
895 | dependencies:
896 | collection-visit "^1.0.0"
897 | component-emitter "^1.2.1"
898 | get-value "^2.0.6"
899 | has-value "^1.0.0"
900 | isobject "^3.0.1"
901 | set-value "^2.0.0"
902 | to-object-path "^0.3.0"
903 | union-value "^1.0.0"
904 | unset-value "^1.0.0"
905 |
906 | callsites@^2.0.0:
907 | version "2.0.0"
908 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50"
909 |
910 | callsites@^3.0.0:
911 | version "3.0.0"
912 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.0.0.tgz#fb7eb569b72ad7a45812f93fd9430a3e410b3dd3"
913 |
914 | camelcase@^4.1.0:
915 | version "4.1.0"
916 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd"
917 |
918 | caniuse-lite@^1.0.30000844:
919 | version "1.0.30000862"
920 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000862.tgz#7ca14f5079fa8f77ac814fca92d45deb4b7eff9d"
921 |
922 | capture-exit@^1.2.0:
923 | version "1.2.0"
924 | resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-1.2.0.tgz#1c5fcc489fd0ab00d4f1ac7ae1072e3173fbab6f"
925 | dependencies:
926 | rsvp "^3.3.3"
927 |
928 | caseless@~0.12.0:
929 | version "0.12.0"
930 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
931 |
932 | chalk@^1.1.3:
933 | version "1.1.3"
934 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
935 | dependencies:
936 | ansi-styles "^2.2.1"
937 | escape-string-regexp "^1.0.2"
938 | has-ansi "^2.0.0"
939 | strip-ansi "^3.0.0"
940 | supports-color "^2.0.0"
941 |
942 | chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.4.2:
943 | version "2.4.2"
944 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
945 | dependencies:
946 | ansi-styles "^3.2.1"
947 | escape-string-regexp "^1.0.5"
948 | supports-color "^5.3.0"
949 |
950 | chardet@^0.7.0:
951 | version "0.7.0"
952 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e"
953 |
954 | chokidar@^1.6.1:
955 | version "1.7.0"
956 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468"
957 | dependencies:
958 | anymatch "^1.3.0"
959 | async-each "^1.0.0"
960 | glob-parent "^2.0.0"
961 | inherits "^2.0.1"
962 | is-binary-path "^1.0.0"
963 | is-glob "^2.0.0"
964 | path-is-absolute "^1.0.0"
965 | readdirp "^2.0.0"
966 | optionalDependencies:
967 | fsevents "^1.0.0"
968 |
969 | chownr@^1.0.1:
970 | version "1.0.1"
971 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.0.1.tgz#e2a75042a9551908bebd25b8523d5f9769d79181"
972 |
973 | ci-info@^1.5.0:
974 | version "1.6.0"
975 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.6.0.tgz#2ca20dbb9ceb32d4524a683303313f0304b1e497"
976 |
977 | circular-json@^0.3.1:
978 | version "0.3.3"
979 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66"
980 |
981 | class-utils@^0.3.5:
982 | version "0.3.6"
983 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463"
984 | dependencies:
985 | arr-union "^3.1.0"
986 | define-property "^0.2.5"
987 | isobject "^3.0.0"
988 | static-extend "^0.1.1"
989 |
990 | cli-cursor@^2.1.0:
991 | version "2.1.0"
992 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5"
993 | dependencies:
994 | restore-cursor "^2.0.0"
995 |
996 | cli-width@^2.0.0:
997 | version "2.2.0"
998 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639"
999 |
1000 | cliui@^4.0.0:
1001 | version "4.1.0"
1002 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49"
1003 | dependencies:
1004 | string-width "^2.1.1"
1005 | strip-ansi "^4.0.0"
1006 | wrap-ansi "^2.0.0"
1007 |
1008 | co@^4.6.0:
1009 | version "4.6.0"
1010 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
1011 |
1012 | code-point-at@^1.0.0:
1013 | version "1.1.0"
1014 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
1015 |
1016 | collection-visit@^1.0.0:
1017 | version "1.0.0"
1018 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0"
1019 | dependencies:
1020 | map-visit "^1.0.0"
1021 | object-visit "^1.0.0"
1022 |
1023 | color-convert@^1.9.0:
1024 | version "1.9.3"
1025 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
1026 | dependencies:
1027 | color-name "1.1.3"
1028 |
1029 | color-name@1.1.3:
1030 | version "1.1.3"
1031 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
1032 |
1033 | combined-stream@^1.0.6, combined-stream@~1.0.6:
1034 | version "1.0.7"
1035 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.7.tgz#2d1d24317afb8abe95d6d2c0b07b57813539d828"
1036 | dependencies:
1037 | delayed-stream "~1.0.0"
1038 |
1039 | commander@^2.11.0:
1040 | version "2.16.0"
1041 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.16.0.tgz#f16390593996ceb4f3eeb020b31d78528f7f8a50"
1042 |
1043 | commander@~2.20.3:
1044 | version "2.20.3"
1045 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
1046 |
1047 | commander@~2.9.0:
1048 | version "2.9.0"
1049 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4"
1050 | dependencies:
1051 | graceful-readlink ">= 1.0.0"
1052 |
1053 | component-emitter@^1.2.1:
1054 | version "1.2.1"
1055 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6"
1056 |
1057 | concat-map@0.0.1:
1058 | version "0.0.1"
1059 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
1060 |
1061 | console-control-strings@^1.0.0, console-control-strings@~1.1.0:
1062 | version "1.1.0"
1063 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
1064 |
1065 | convert-source-map@^1.4.0:
1066 | version "1.6.0"
1067 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20"
1068 | dependencies:
1069 | safe-buffer "~5.1.1"
1070 |
1071 | convert-source-map@^1.5.0, convert-source-map@^1.5.1:
1072 | version "1.5.1"
1073 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5"
1074 |
1075 | copy-descriptor@^0.1.0:
1076 | version "0.1.1"
1077 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
1078 |
1079 | core-js@^2.4.0, core-js@^2.5.0:
1080 | version "2.5.7"
1081 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.7.tgz#f972608ff0cead68b841a16a932d0b183791814e"
1082 |
1083 | core-util-is@1.0.2, core-util-is@~1.0.0:
1084 | version "1.0.2"
1085 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
1086 |
1087 | cross-env@^5.2.0:
1088 | version "5.2.0"
1089 | resolved "https://registry.yarnpkg.com/cross-env/-/cross-env-5.2.0.tgz#6ecd4c015d5773e614039ee529076669b9d126f2"
1090 | dependencies:
1091 | cross-spawn "^6.0.5"
1092 | is-windows "^1.0.0"
1093 |
1094 | cross-spawn@^5.0.1:
1095 | version "5.1.0"
1096 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449"
1097 | dependencies:
1098 | lru-cache "^4.0.1"
1099 | shebang-command "^1.2.0"
1100 | which "^1.2.9"
1101 |
1102 | cross-spawn@^6.0.5:
1103 | version "6.0.5"
1104 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"
1105 | dependencies:
1106 | nice-try "^1.0.4"
1107 | path-key "^2.0.1"
1108 | semver "^5.5.0"
1109 | shebang-command "^1.2.0"
1110 | which "^1.2.9"
1111 |
1112 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0":
1113 | version "0.3.6"
1114 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.6.tgz#f85206cee04efa841f3c5982a74ba96ab20d65ad"
1115 |
1116 | cssstyle@^1.0.0:
1117 | version "1.1.1"
1118 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-1.1.1.tgz#18b038a9c44d65f7a8e428a653b9f6fe42faf5fb"
1119 | dependencies:
1120 | cssom "0.3.x"
1121 |
1122 | dashdash@^1.12.0:
1123 | version "1.14.1"
1124 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
1125 | dependencies:
1126 | assert-plus "^1.0.0"
1127 |
1128 | data-urls@^1.0.0:
1129 | version "1.1.0"
1130 | resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-1.1.0.tgz#15ee0582baa5e22bb59c77140da8f9c76963bbfe"
1131 | dependencies:
1132 | abab "^2.0.0"
1133 | whatwg-mimetype "^2.2.0"
1134 | whatwg-url "^7.0.0"
1135 |
1136 | debug@^2.1.2, debug@^2.2.0, debug@^2.3.3, debug@^2.6.8, debug@^2.6.9:
1137 | version "2.6.9"
1138 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
1139 | dependencies:
1140 | ms "2.0.0"
1141 |
1142 | debug@^3.1.0:
1143 | version "3.2.6"
1144 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b"
1145 | dependencies:
1146 | ms "^2.1.1"
1147 |
1148 | debug@^4.0.1, debug@^4.1.0:
1149 | version "4.1.1"
1150 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791"
1151 | dependencies:
1152 | ms "^2.1.1"
1153 |
1154 | decamelize@^1.1.1:
1155 | version "1.2.0"
1156 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
1157 |
1158 | decode-uri-component@^0.2.0:
1159 | version "0.2.0"
1160 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545"
1161 |
1162 | deep-extend@^0.6.0:
1163 | version "0.6.0"
1164 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac"
1165 |
1166 | deep-is@~0.1.3:
1167 | version "0.1.3"
1168 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
1169 |
1170 | default-require-extensions@^1.0.0:
1171 | version "1.0.0"
1172 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8"
1173 | dependencies:
1174 | strip-bom "^2.0.0"
1175 |
1176 | define-properties@^1.1.2:
1177 | version "1.1.3"
1178 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1"
1179 | dependencies:
1180 | object-keys "^1.0.12"
1181 |
1182 | define-property@^0.2.5:
1183 | version "0.2.5"
1184 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116"
1185 | dependencies:
1186 | is-descriptor "^0.1.0"
1187 |
1188 | define-property@^1.0.0:
1189 | version "1.0.0"
1190 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6"
1191 | dependencies:
1192 | is-descriptor "^1.0.0"
1193 |
1194 | define-property@^2.0.2:
1195 | version "2.0.2"
1196 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d"
1197 | dependencies:
1198 | is-descriptor "^1.0.2"
1199 | isobject "^3.0.1"
1200 |
1201 | delayed-stream@~1.0.0:
1202 | version "1.0.0"
1203 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
1204 |
1205 | delegates@^1.0.0:
1206 | version "1.0.0"
1207 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
1208 |
1209 | detect-indent@^4.0.0:
1210 | version "4.0.0"
1211 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208"
1212 | dependencies:
1213 | repeating "^2.0.0"
1214 |
1215 | detect-libc@^1.0.2:
1216 | version "1.0.3"
1217 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"
1218 |
1219 | detect-newline@^2.1.0:
1220 | version "2.1.0"
1221 | resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2"
1222 |
1223 | diff@^3.2.0:
1224 | version "3.5.0"
1225 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12"
1226 |
1227 | doctrine@^2.1.0:
1228 | version "2.1.0"
1229 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d"
1230 | dependencies:
1231 | esutils "^2.0.2"
1232 |
1233 | domexception@^1.0.1:
1234 | version "1.0.1"
1235 | resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90"
1236 | dependencies:
1237 | webidl-conversions "^4.0.2"
1238 |
1239 | ecc-jsbn@~0.1.1:
1240 | version "0.1.2"
1241 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9"
1242 | dependencies:
1243 | jsbn "~0.1.0"
1244 | safer-buffer "^2.1.0"
1245 |
1246 | electron-to-chromium@^1.3.47:
1247 | version "1.3.51"
1248 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.51.tgz#6a42b49daaf7f22a5b37b991daf949f34dbdb9b5"
1249 |
1250 | error-ex@^1.2.0:
1251 | version "1.3.2"
1252 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
1253 | dependencies:
1254 | is-arrayish "^0.2.1"
1255 |
1256 | es-abstract@^1.5.1:
1257 | version "1.13.0"
1258 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.13.0.tgz#ac86145fdd5099d8dd49558ccba2eaf9b88e24e9"
1259 | dependencies:
1260 | es-to-primitive "^1.2.0"
1261 | function-bind "^1.1.1"
1262 | has "^1.0.3"
1263 | is-callable "^1.1.4"
1264 | is-regex "^1.0.4"
1265 | object-keys "^1.0.12"
1266 |
1267 | es-to-primitive@^1.2.0:
1268 | version "1.2.0"
1269 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.0.tgz#edf72478033456e8dda8ef09e00ad9650707f377"
1270 | dependencies:
1271 | is-callable "^1.1.4"
1272 | is-date-object "^1.0.1"
1273 | is-symbol "^1.0.2"
1274 |
1275 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
1276 | version "1.0.5"
1277 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
1278 |
1279 | escodegen@^1.9.1:
1280 | version "1.11.0"
1281 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.11.0.tgz#b27a9389481d5bfd5bec76f7bb1eb3f8f4556589"
1282 | dependencies:
1283 | esprima "^3.1.3"
1284 | estraverse "^4.2.0"
1285 | esutils "^2.0.2"
1286 | optionator "^0.8.1"
1287 | optionalDependencies:
1288 | source-map "~0.6.1"
1289 |
1290 | eslint-config-xo-space@^0.20.0:
1291 | version "0.20.0"
1292 | resolved "https://registry.yarnpkg.com/eslint-config-xo-space/-/eslint-config-xo-space-0.20.0.tgz#75e1fb86d1b052fc1cc3036ca2fa441fa92b85e4"
1293 | dependencies:
1294 | eslint-config-xo "^0.24.0"
1295 |
1296 | eslint-config-xo@^0.24.0:
1297 | version "0.24.2"
1298 | resolved "https://registry.yarnpkg.com/eslint-config-xo/-/eslint-config-xo-0.24.2.tgz#f61b8ce692e9f9519bdb6edc4ed7ebcd5be48f48"
1299 |
1300 | eslint-plugin-jest@^22.1.2:
1301 | version "22.2.2"
1302 | resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-22.2.2.tgz#2a80d70a20c27dfb1503a6f32cdcb647fe5476df"
1303 |
1304 | eslint-scope@3.7.1:
1305 | version "3.7.1"
1306 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8"
1307 | dependencies:
1308 | esrecurse "^4.1.0"
1309 | estraverse "^4.1.1"
1310 |
1311 | eslint-scope@^4.0.0:
1312 | version "4.0.0"
1313 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.0.tgz#50bf3071e9338bcdc43331794a0cb533f0136172"
1314 | dependencies:
1315 | esrecurse "^4.1.0"
1316 | estraverse "^4.1.1"
1317 |
1318 | eslint-utils@^1.3.1:
1319 | version "1.4.3"
1320 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.3.tgz#74fec7c54d0776b6f67e0251040b5806564e981f"
1321 | dependencies:
1322 | eslint-visitor-keys "^1.1.0"
1323 |
1324 | eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0:
1325 | version "1.1.0"
1326 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz#e2a82cea84ff246ad6fb57f9bde5b46621459ec2"
1327 |
1328 | eslint@^5.12.0:
1329 | version "5.13.0"
1330 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-5.13.0.tgz#ce71cc529c450eed9504530939aa97527861ede9"
1331 | dependencies:
1332 | "@babel/code-frame" "^7.0.0"
1333 | ajv "^6.5.3"
1334 | chalk "^2.1.0"
1335 | cross-spawn "^6.0.5"
1336 | debug "^4.0.1"
1337 | doctrine "^2.1.0"
1338 | eslint-scope "^4.0.0"
1339 | eslint-utils "^1.3.1"
1340 | eslint-visitor-keys "^1.0.0"
1341 | espree "^5.0.0"
1342 | esquery "^1.0.1"
1343 | esutils "^2.0.2"
1344 | file-entry-cache "^2.0.0"
1345 | functional-red-black-tree "^1.0.1"
1346 | glob "^7.1.2"
1347 | globals "^11.7.0"
1348 | ignore "^4.0.6"
1349 | import-fresh "^3.0.0"
1350 | imurmurhash "^0.1.4"
1351 | inquirer "^6.1.0"
1352 | js-yaml "^3.12.0"
1353 | json-stable-stringify-without-jsonify "^1.0.1"
1354 | levn "^0.3.0"
1355 | lodash "^4.17.5"
1356 | minimatch "^3.0.4"
1357 | mkdirp "^0.5.1"
1358 | natural-compare "^1.4.0"
1359 | optionator "^0.8.2"
1360 | path-is-inside "^1.0.2"
1361 | progress "^2.0.0"
1362 | regexpp "^2.0.1"
1363 | semver "^5.5.1"
1364 | strip-ansi "^4.0.0"
1365 | strip-json-comments "^2.0.1"
1366 | table "^5.0.2"
1367 | text-table "^0.2.0"
1368 |
1369 | espree@^5.0.0:
1370 | version "5.0.0"
1371 | resolved "https://registry.yarnpkg.com/espree/-/espree-5.0.0.tgz#fc7f984b62b36a0f543b13fb9cd7b9f4a7f5b65c"
1372 | dependencies:
1373 | acorn "^6.0.2"
1374 | acorn-jsx "^5.0.0"
1375 | eslint-visitor-keys "^1.0.0"
1376 |
1377 | esprima@^3.1.3:
1378 | version "3.1.3"
1379 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633"
1380 |
1381 | esprima@^4.0.0:
1382 | version "4.0.1"
1383 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
1384 |
1385 | esquery@^1.0.1:
1386 | version "1.0.1"
1387 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708"
1388 | dependencies:
1389 | estraverse "^4.0.0"
1390 |
1391 | esrecurse@^4.1.0:
1392 | version "4.2.1"
1393 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf"
1394 | dependencies:
1395 | estraverse "^4.1.0"
1396 |
1397 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0:
1398 | version "4.2.0"
1399 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13"
1400 |
1401 | estree-walker@^0.2.1:
1402 | version "0.2.1"
1403 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.2.1.tgz#bdafe8095383d8414d5dc2ecf4c9173b6db9412e"
1404 |
1405 | estree-walker@^0.5.1, estree-walker@^0.5.2:
1406 | version "0.5.2"
1407 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.5.2.tgz#d3850be7529c9580d815600b53126515e146dd39"
1408 |
1409 | esutils@^2.0.2:
1410 | version "2.0.2"
1411 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
1412 |
1413 | exec-sh@^0.2.0:
1414 | version "0.2.2"
1415 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.2.tgz#2a5e7ffcbd7d0ba2755bdecb16e5a427dfbdec36"
1416 | dependencies:
1417 | merge "^1.2.0"
1418 |
1419 | execa@^0.7.0:
1420 | version "0.7.0"
1421 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777"
1422 | dependencies:
1423 | cross-spawn "^5.0.1"
1424 | get-stream "^3.0.0"
1425 | is-stream "^1.1.0"
1426 | npm-run-path "^2.0.0"
1427 | p-finally "^1.0.0"
1428 | signal-exit "^3.0.0"
1429 | strip-eof "^1.0.0"
1430 |
1431 | exit@^0.1.2:
1432 | version "0.1.2"
1433 | resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c"
1434 |
1435 | expand-brackets@^0.1.4:
1436 | version "0.1.5"
1437 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b"
1438 | dependencies:
1439 | is-posix-bracket "^0.1.0"
1440 |
1441 | expand-brackets@^2.1.4:
1442 | version "2.1.4"
1443 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622"
1444 | dependencies:
1445 | debug "^2.3.3"
1446 | define-property "^0.2.5"
1447 | extend-shallow "^2.0.1"
1448 | posix-character-classes "^0.1.0"
1449 | regex-not "^1.0.0"
1450 | snapdragon "^0.8.1"
1451 | to-regex "^3.0.1"
1452 |
1453 | expand-range@^1.8.1:
1454 | version "1.8.2"
1455 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337"
1456 | dependencies:
1457 | fill-range "^2.1.0"
1458 |
1459 | expect@^23.6.0:
1460 | version "23.6.0"
1461 | resolved "https://registry.yarnpkg.com/expect/-/expect-23.6.0.tgz#1e0c8d3ba9a581c87bd71fb9bc8862d443425f98"
1462 | dependencies:
1463 | ansi-styles "^3.2.0"
1464 | jest-diff "^23.6.0"
1465 | jest-get-type "^22.1.0"
1466 | jest-matcher-utils "^23.6.0"
1467 | jest-message-util "^23.4.0"
1468 | jest-regex-util "^23.3.0"
1469 |
1470 | extend-shallow@^2.0.1:
1471 | version "2.0.1"
1472 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f"
1473 | dependencies:
1474 | is-extendable "^0.1.0"
1475 |
1476 | extend-shallow@^3.0.0, extend-shallow@^3.0.2:
1477 | version "3.0.2"
1478 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8"
1479 | dependencies:
1480 | assign-symbols "^1.0.0"
1481 | is-extendable "^1.0.1"
1482 |
1483 | extend@~3.0.2:
1484 | version "3.0.2"
1485 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa"
1486 |
1487 | external-editor@^3.0.3:
1488 | version "3.0.3"
1489 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.0.3.tgz#5866db29a97826dbe4bf3afd24070ead9ea43a27"
1490 | dependencies:
1491 | chardet "^0.7.0"
1492 | iconv-lite "^0.4.24"
1493 | tmp "^0.0.33"
1494 |
1495 | extglob@^0.3.1:
1496 | version "0.3.2"
1497 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1"
1498 | dependencies:
1499 | is-extglob "^1.0.0"
1500 |
1501 | extglob@^2.0.4:
1502 | version "2.0.4"
1503 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543"
1504 | dependencies:
1505 | array-unique "^0.3.2"
1506 | define-property "^1.0.0"
1507 | expand-brackets "^2.1.4"
1508 | extend-shallow "^2.0.1"
1509 | fragment-cache "^0.2.1"
1510 | regex-not "^1.0.0"
1511 | snapdragon "^0.8.1"
1512 | to-regex "^3.0.1"
1513 |
1514 | extsprintf@1.3.0:
1515 | version "1.3.0"
1516 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05"
1517 |
1518 | extsprintf@^1.2.0:
1519 | version "1.4.0"
1520 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f"
1521 |
1522 | fast-deep-equal@^2.0.1:
1523 | version "2.0.1"
1524 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49"
1525 |
1526 | fast-json-stable-stringify@^2.0.0:
1527 | version "2.0.0"
1528 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2"
1529 |
1530 | fast-levenshtein@~2.0.4:
1531 | version "2.0.6"
1532 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
1533 |
1534 | fb-watchman@^2.0.0:
1535 | version "2.0.0"
1536 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58"
1537 | dependencies:
1538 | bser "^2.0.0"
1539 |
1540 | figures@^2.0.0:
1541 | version "2.0.0"
1542 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962"
1543 | dependencies:
1544 | escape-string-regexp "^1.0.5"
1545 |
1546 | file-entry-cache@^2.0.0:
1547 | version "2.0.0"
1548 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361"
1549 | dependencies:
1550 | flat-cache "^1.2.1"
1551 | object-assign "^4.0.1"
1552 |
1553 | filename-regex@^2.0.0:
1554 | version "2.0.1"
1555 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26"
1556 |
1557 | fileset@^2.0.2:
1558 | version "2.0.3"
1559 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0"
1560 | dependencies:
1561 | glob "^7.0.3"
1562 | minimatch "^3.0.3"
1563 |
1564 | fill-range@^2.1.0:
1565 | version "2.2.4"
1566 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565"
1567 | dependencies:
1568 | is-number "^2.1.0"
1569 | isobject "^2.0.0"
1570 | randomatic "^3.0.0"
1571 | repeat-element "^1.1.2"
1572 | repeat-string "^1.5.2"
1573 |
1574 | fill-range@^4.0.0:
1575 | version "4.0.0"
1576 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7"
1577 | dependencies:
1578 | extend-shallow "^2.0.1"
1579 | is-number "^3.0.0"
1580 | repeat-string "^1.6.1"
1581 | to-regex-range "^2.1.0"
1582 |
1583 | find-up@^1.0.0:
1584 | version "1.1.2"
1585 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"
1586 | dependencies:
1587 | path-exists "^2.0.0"
1588 | pinkie-promise "^2.0.0"
1589 |
1590 | find-up@^2.1.0:
1591 | version "2.1.0"
1592 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
1593 | dependencies:
1594 | locate-path "^2.0.0"
1595 |
1596 | flat-cache@^1.2.1:
1597 | version "1.3.4"
1598 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.4.tgz#2c2ef77525cc2929007dfffa1dd314aa9c9dee6f"
1599 | dependencies:
1600 | circular-json "^0.3.1"
1601 | graceful-fs "^4.1.2"
1602 | rimraf "~2.6.2"
1603 | write "^0.2.1"
1604 |
1605 | for-in@^1.0.1, for-in@^1.0.2:
1606 | version "1.0.2"
1607 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
1608 |
1609 | for-own@^0.1.4:
1610 | version "0.1.5"
1611 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce"
1612 | dependencies:
1613 | for-in "^1.0.1"
1614 |
1615 | forever-agent@~0.6.1:
1616 | version "0.6.1"
1617 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
1618 |
1619 | form-data@~2.3.2:
1620 | version "2.3.3"
1621 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6"
1622 | dependencies:
1623 | asynckit "^0.4.0"
1624 | combined-stream "^1.0.6"
1625 | mime-types "^2.1.12"
1626 |
1627 | fragment-cache@^0.2.1:
1628 | version "0.2.1"
1629 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19"
1630 | dependencies:
1631 | map-cache "^0.2.2"
1632 |
1633 | fs-minipass@^1.2.5:
1634 | version "1.2.5"
1635 | resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d"
1636 | dependencies:
1637 | minipass "^2.2.1"
1638 |
1639 | fs-readdir-recursive@^1.0.0:
1640 | version "1.1.0"
1641 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27"
1642 |
1643 | fs.realpath@^1.0.0:
1644 | version "1.0.0"
1645 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
1646 |
1647 | fsevents@^1.0.0:
1648 | version "1.2.4"
1649 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.4.tgz#f41dcb1af2582af3692da36fc55cbd8e1041c426"
1650 | dependencies:
1651 | nan "^2.9.2"
1652 | node-pre-gyp "^0.10.0"
1653 |
1654 | fsevents@^1.2.3:
1655 | version "1.2.7"
1656 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.7.tgz#4851b664a3783e52003b3c66eb0eee1074933aa4"
1657 | dependencies:
1658 | nan "^2.9.2"
1659 | node-pre-gyp "^0.10.0"
1660 |
1661 | function-bind@^1.1.1:
1662 | version "1.1.1"
1663 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
1664 |
1665 | functional-red-black-tree@^1.0.1:
1666 | version "1.0.1"
1667 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
1668 |
1669 | gauge@~2.7.3:
1670 | version "2.7.4"
1671 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
1672 | dependencies:
1673 | aproba "^1.0.3"
1674 | console-control-strings "^1.0.0"
1675 | has-unicode "^2.0.0"
1676 | object-assign "^4.1.0"
1677 | signal-exit "^3.0.0"
1678 | string-width "^1.0.1"
1679 | strip-ansi "^3.0.1"
1680 | wide-align "^1.1.0"
1681 |
1682 | get-caller-file@^1.0.1:
1683 | version "1.0.3"
1684 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a"
1685 |
1686 | get-stream@^3.0.0:
1687 | version "3.0.0"
1688 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14"
1689 |
1690 | get-value@^2.0.3, get-value@^2.0.6:
1691 | version "2.0.6"
1692 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28"
1693 |
1694 | getpass@^0.1.1:
1695 | version "0.1.7"
1696 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa"
1697 | dependencies:
1698 | assert-plus "^1.0.0"
1699 |
1700 | glob-base@^0.3.0:
1701 | version "0.3.0"
1702 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"
1703 | dependencies:
1704 | glob-parent "^2.0.0"
1705 | is-glob "^2.0.0"
1706 |
1707 | glob-parent@^2.0.0:
1708 | version "2.0.0"
1709 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28"
1710 | dependencies:
1711 | is-glob "^2.0.0"
1712 |
1713 | glob@^7.0.3, glob@^7.1.1, glob@^7.1.3:
1714 | version "7.1.3"
1715 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1"
1716 | dependencies:
1717 | fs.realpath "^1.0.0"
1718 | inflight "^1.0.4"
1719 | inherits "2"
1720 | minimatch "^3.0.4"
1721 | once "^1.3.0"
1722 | path-is-absolute "^1.0.0"
1723 |
1724 | glob@^7.0.5, glob@^7.1.2:
1725 | version "7.1.2"
1726 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15"
1727 | dependencies:
1728 | fs.realpath "^1.0.0"
1729 | inflight "^1.0.4"
1730 | inherits "2"
1731 | minimatch "^3.0.4"
1732 | once "^1.3.0"
1733 | path-is-absolute "^1.0.0"
1734 |
1735 | globals@^11.1.0, globals@^11.7.0:
1736 | version "11.10.0"
1737 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.10.0.tgz#1e09776dffda5e01816b3bb4077c8b59c24eaa50"
1738 |
1739 | globals@^9.18.0:
1740 | version "9.18.0"
1741 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a"
1742 |
1743 | graceful-fs@^4.1.11:
1744 | version "4.1.15"
1745 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00"
1746 |
1747 | graceful-fs@^4.1.2, graceful-fs@^4.1.4:
1748 | version "4.1.11"
1749 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
1750 |
1751 | "graceful-readlink@>= 1.0.0":
1752 | version "1.0.1"
1753 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725"
1754 |
1755 | growly@^1.3.0:
1756 | version "1.3.0"
1757 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081"
1758 |
1759 | handlebars@^4.0.3:
1760 | version "4.7.2"
1761 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.2.tgz#01127b3840156a0927058779482031afe0e730d7"
1762 | dependencies:
1763 | neo-async "^2.6.0"
1764 | optimist "^0.6.1"
1765 | source-map "^0.6.1"
1766 | optionalDependencies:
1767 | uglify-js "^3.1.4"
1768 |
1769 | har-schema@^2.0.0:
1770 | version "2.0.0"
1771 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92"
1772 |
1773 | har-validator@~5.1.0:
1774 | version "5.1.3"
1775 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080"
1776 | dependencies:
1777 | ajv "^6.5.5"
1778 | har-schema "^2.0.0"
1779 |
1780 | has-ansi@^2.0.0:
1781 | version "2.0.0"
1782 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
1783 | dependencies:
1784 | ansi-regex "^2.0.0"
1785 |
1786 | has-flag@^1.0.0:
1787 | version "1.0.0"
1788 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa"
1789 |
1790 | has-flag@^3.0.0:
1791 | version "3.0.0"
1792 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
1793 |
1794 | has-symbols@^1.0.0:
1795 | version "1.0.0"
1796 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44"
1797 |
1798 | has-unicode@^2.0.0:
1799 | version "2.0.1"
1800 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
1801 |
1802 | has-value@^0.3.1:
1803 | version "0.3.1"
1804 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f"
1805 | dependencies:
1806 | get-value "^2.0.3"
1807 | has-values "^0.1.4"
1808 | isobject "^2.0.0"
1809 |
1810 | has-value@^1.0.0:
1811 | version "1.0.0"
1812 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177"
1813 | dependencies:
1814 | get-value "^2.0.6"
1815 | has-values "^1.0.0"
1816 | isobject "^3.0.0"
1817 |
1818 | has-values@^0.1.4:
1819 | version "0.1.4"
1820 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771"
1821 |
1822 | has-values@^1.0.0:
1823 | version "1.0.0"
1824 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f"
1825 | dependencies:
1826 | is-number "^3.0.0"
1827 | kind-of "^4.0.0"
1828 |
1829 | has@^1.0.1, has@^1.0.3:
1830 | version "1.0.3"
1831 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
1832 | dependencies:
1833 | function-bind "^1.1.1"
1834 |
1835 | home-or-tmp@^2.0.0:
1836 | version "2.0.0"
1837 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8"
1838 | dependencies:
1839 | os-homedir "^1.0.0"
1840 | os-tmpdir "^1.0.1"
1841 |
1842 | hosted-git-info@^2.1.4:
1843 | version "2.7.1"
1844 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.7.1.tgz#97f236977bd6e125408930ff6de3eec6281ec047"
1845 |
1846 | html-encoding-sniffer@^1.0.2:
1847 | version "1.0.2"
1848 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8"
1849 | dependencies:
1850 | whatwg-encoding "^1.0.1"
1851 |
1852 | http-signature@~1.2.0:
1853 | version "1.2.0"
1854 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1"
1855 | dependencies:
1856 | assert-plus "^1.0.0"
1857 | jsprim "^1.2.2"
1858 | sshpk "^1.7.0"
1859 |
1860 | iconv-lite@0.4.24, iconv-lite@^0.4.24:
1861 | version "0.4.24"
1862 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
1863 | dependencies:
1864 | safer-buffer ">= 2.1.2 < 3"
1865 |
1866 | iconv-lite@^0.4.4:
1867 | version "0.4.23"
1868 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.23.tgz#297871f63be507adcfbfca715d0cd0eed84e9a63"
1869 | dependencies:
1870 | safer-buffer ">= 2.1.2 < 3"
1871 |
1872 | ignore-walk@^3.0.1:
1873 | version "3.0.1"
1874 | resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8"
1875 | dependencies:
1876 | minimatch "^3.0.4"
1877 |
1878 | ignore@^4.0.6:
1879 | version "4.0.6"
1880 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc"
1881 |
1882 | import-fresh@^3.0.0:
1883 | version "3.0.0"
1884 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.0.0.tgz#a3d897f420cab0e671236897f75bc14b4885c390"
1885 | dependencies:
1886 | parent-module "^1.0.0"
1887 | resolve-from "^4.0.0"
1888 |
1889 | import-local@^1.0.0:
1890 | version "1.0.0"
1891 | resolved "https://registry.yarnpkg.com/import-local/-/import-local-1.0.0.tgz#5e4ffdc03f4fe6c009c6729beb29631c2f8227bc"
1892 | dependencies:
1893 | pkg-dir "^2.0.0"
1894 | resolve-cwd "^2.0.0"
1895 |
1896 | imurmurhash@^0.1.4:
1897 | version "0.1.4"
1898 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
1899 |
1900 | inflight@^1.0.4:
1901 | version "1.0.6"
1902 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
1903 | dependencies:
1904 | once "^1.3.0"
1905 | wrappy "1"
1906 |
1907 | inherits@2, inherits@^2.0.1, inherits@~2.0.3:
1908 | version "2.0.3"
1909 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
1910 |
1911 | ini@~1.3.0:
1912 | version "1.3.5"
1913 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927"
1914 |
1915 | inquirer@^6.1.0:
1916 | version "6.2.2"
1917 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.2.2.tgz#46941176f65c9eb20804627149b743a218f25406"
1918 | dependencies:
1919 | ansi-escapes "^3.2.0"
1920 | chalk "^2.4.2"
1921 | cli-cursor "^2.1.0"
1922 | cli-width "^2.0.0"
1923 | external-editor "^3.0.3"
1924 | figures "^2.0.0"
1925 | lodash "^4.17.11"
1926 | mute-stream "0.0.7"
1927 | run-async "^2.2.0"
1928 | rxjs "^6.4.0"
1929 | string-width "^2.1.0"
1930 | strip-ansi "^5.0.0"
1931 | through "^2.3.6"
1932 |
1933 | invariant@^2.2.2, invariant@^2.2.4:
1934 | version "2.2.4"
1935 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6"
1936 | dependencies:
1937 | loose-envify "^1.0.0"
1938 |
1939 | invert-kv@^1.0.0:
1940 | version "1.0.0"
1941 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"
1942 |
1943 | ip-regex@^2.1.0:
1944 | version "2.1.0"
1945 | resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9"
1946 |
1947 | is-accessor-descriptor@^0.1.6:
1948 | version "0.1.6"
1949 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6"
1950 | dependencies:
1951 | kind-of "^3.0.2"
1952 |
1953 | is-accessor-descriptor@^1.0.0:
1954 | version "1.0.0"
1955 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656"
1956 | dependencies:
1957 | kind-of "^6.0.0"
1958 |
1959 | is-arrayish@^0.2.1:
1960 | version "0.2.1"
1961 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
1962 |
1963 | is-binary-path@^1.0.0:
1964 | version "1.0.1"
1965 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
1966 | dependencies:
1967 | binary-extensions "^1.0.0"
1968 |
1969 | is-buffer@^1.1.5:
1970 | version "1.1.6"
1971 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
1972 |
1973 | is-callable@^1.1.4:
1974 | version "1.1.4"
1975 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75"
1976 |
1977 | is-ci@^1.0.10:
1978 | version "1.2.1"
1979 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.2.1.tgz#e3779c8ee17fccf428488f6e281187f2e632841c"
1980 | dependencies:
1981 | ci-info "^1.5.0"
1982 |
1983 | is-data-descriptor@^0.1.4:
1984 | version "0.1.4"
1985 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56"
1986 | dependencies:
1987 | kind-of "^3.0.2"
1988 |
1989 | is-data-descriptor@^1.0.0:
1990 | version "1.0.0"
1991 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7"
1992 | dependencies:
1993 | kind-of "^6.0.0"
1994 |
1995 | is-date-object@^1.0.1:
1996 | version "1.0.1"
1997 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16"
1998 |
1999 | is-descriptor@^0.1.0:
2000 | version "0.1.6"
2001 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca"
2002 | dependencies:
2003 | is-accessor-descriptor "^0.1.6"
2004 | is-data-descriptor "^0.1.4"
2005 | kind-of "^5.0.0"
2006 |
2007 | is-descriptor@^1.0.0, is-descriptor@^1.0.2:
2008 | version "1.0.2"
2009 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec"
2010 | dependencies:
2011 | is-accessor-descriptor "^1.0.0"
2012 | is-data-descriptor "^1.0.0"
2013 | kind-of "^6.0.2"
2014 |
2015 | is-dotfile@^1.0.0:
2016 | version "1.0.3"
2017 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1"
2018 |
2019 | is-equal-shallow@^0.1.3:
2020 | version "0.1.3"
2021 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534"
2022 | dependencies:
2023 | is-primitive "^2.0.0"
2024 |
2025 | is-extendable@^0.1.0, is-extendable@^0.1.1:
2026 | version "0.1.1"
2027 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
2028 |
2029 | is-extendable@^1.0.1:
2030 | version "1.0.1"
2031 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4"
2032 | dependencies:
2033 | is-plain-object "^2.0.4"
2034 |
2035 | is-extglob@^1.0.0:
2036 | version "1.0.0"
2037 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
2038 |
2039 | is-finite@^1.0.0:
2040 | version "1.0.2"
2041 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa"
2042 | dependencies:
2043 | number-is-nan "^1.0.0"
2044 |
2045 | is-fullwidth-code-point@^1.0.0:
2046 | version "1.0.0"
2047 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
2048 | dependencies:
2049 | number-is-nan "^1.0.0"
2050 |
2051 | is-fullwidth-code-point@^2.0.0:
2052 | version "2.0.0"
2053 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
2054 |
2055 | is-generator-fn@^1.0.0:
2056 | version "1.0.0"
2057 | resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-1.0.0.tgz#969d49e1bb3329f6bb7f09089be26578b2ddd46a"
2058 |
2059 | is-glob@^2.0.0, is-glob@^2.0.1:
2060 | version "2.0.1"
2061 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863"
2062 | dependencies:
2063 | is-extglob "^1.0.0"
2064 |
2065 | is-module@^1.0.0:
2066 | version "1.0.0"
2067 | resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591"
2068 |
2069 | is-number@^2.1.0:
2070 | version "2.1.0"
2071 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f"
2072 | dependencies:
2073 | kind-of "^3.0.2"
2074 |
2075 | is-number@^3.0.0:
2076 | version "3.0.0"
2077 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
2078 | dependencies:
2079 | kind-of "^3.0.2"
2080 |
2081 | is-number@^4.0.0:
2082 | version "4.0.0"
2083 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff"
2084 |
2085 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4:
2086 | version "2.0.4"
2087 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677"
2088 | dependencies:
2089 | isobject "^3.0.1"
2090 |
2091 | is-posix-bracket@^0.1.0:
2092 | version "0.1.1"
2093 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"
2094 |
2095 | is-primitive@^2.0.0:
2096 | version "2.0.0"
2097 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575"
2098 |
2099 | is-promise@^2.1.0:
2100 | version "2.1.0"
2101 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa"
2102 |
2103 | is-regex@^1.0.4:
2104 | version "1.0.4"
2105 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491"
2106 | dependencies:
2107 | has "^1.0.1"
2108 |
2109 | is-stream@^1.1.0:
2110 | version "1.1.0"
2111 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
2112 |
2113 | is-symbol@^1.0.2:
2114 | version "1.0.2"
2115 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.2.tgz#a055f6ae57192caee329e7a860118b497a950f38"
2116 | dependencies:
2117 | has-symbols "^1.0.0"
2118 |
2119 | is-typedarray@~1.0.0:
2120 | version "1.0.0"
2121 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
2122 |
2123 | is-utf8@^0.2.0:
2124 | version "0.2.1"
2125 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72"
2126 |
2127 | is-windows@^1.0.0, is-windows@^1.0.2:
2128 | version "1.0.2"
2129 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d"
2130 |
2131 | is-wsl@^1.1.0:
2132 | version "1.1.0"
2133 | resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d"
2134 |
2135 | isarray@1.0.0, isarray@~1.0.0:
2136 | version "1.0.0"
2137 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
2138 |
2139 | isexe@^2.0.0:
2140 | version "2.0.0"
2141 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
2142 |
2143 | isobject@^2.0.0:
2144 | version "2.1.0"
2145 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
2146 | dependencies:
2147 | isarray "1.0.0"
2148 |
2149 | isobject@^3.0.0, isobject@^3.0.1:
2150 | version "3.0.1"
2151 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
2152 |
2153 | isstream@~0.1.2:
2154 | version "0.1.2"
2155 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
2156 |
2157 | istanbul-api@^1.3.1:
2158 | version "1.3.7"
2159 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.3.7.tgz#a86c770d2b03e11e3f778cd7aedd82d2722092aa"
2160 | dependencies:
2161 | async "^2.1.4"
2162 | fileset "^2.0.2"
2163 | istanbul-lib-coverage "^1.2.1"
2164 | istanbul-lib-hook "^1.2.2"
2165 | istanbul-lib-instrument "^1.10.2"
2166 | istanbul-lib-report "^1.1.5"
2167 | istanbul-lib-source-maps "^1.2.6"
2168 | istanbul-reports "^1.5.1"
2169 | js-yaml "^3.7.0"
2170 | mkdirp "^0.5.1"
2171 | once "^1.4.0"
2172 |
2173 | istanbul-lib-coverage@^1.2.0, istanbul-lib-coverage@^1.2.1:
2174 | version "1.2.1"
2175 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.2.1.tgz#ccf7edcd0a0bb9b8f729feeb0930470f9af664f0"
2176 |
2177 | istanbul-lib-hook@^1.2.2:
2178 | version "1.2.2"
2179 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.2.2.tgz#bc6bf07f12a641fbf1c85391d0daa8f0aea6bf86"
2180 | dependencies:
2181 | append-transform "^0.4.0"
2182 |
2183 | istanbul-lib-instrument@^1.10.1, istanbul-lib-instrument@^1.10.2:
2184 | version "1.10.2"
2185 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.10.2.tgz#1f55ed10ac3c47f2bdddd5307935126754d0a9ca"
2186 | dependencies:
2187 | babel-generator "^6.18.0"
2188 | babel-template "^6.16.0"
2189 | babel-traverse "^6.18.0"
2190 | babel-types "^6.18.0"
2191 | babylon "^6.18.0"
2192 | istanbul-lib-coverage "^1.2.1"
2193 | semver "^5.3.0"
2194 |
2195 | istanbul-lib-report@^1.1.5:
2196 | version "1.1.5"
2197 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.5.tgz#f2a657fc6282f96170aaf281eb30a458f7f4170c"
2198 | dependencies:
2199 | istanbul-lib-coverage "^1.2.1"
2200 | mkdirp "^0.5.1"
2201 | path-parse "^1.0.5"
2202 | supports-color "^3.1.2"
2203 |
2204 | istanbul-lib-source-maps@^1.2.4, istanbul-lib-source-maps@^1.2.6:
2205 | version "1.2.6"
2206 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.6.tgz#37b9ff661580f8fca11232752ee42e08c6675d8f"
2207 | dependencies:
2208 | debug "^3.1.0"
2209 | istanbul-lib-coverage "^1.2.1"
2210 | mkdirp "^0.5.1"
2211 | rimraf "^2.6.1"
2212 | source-map "^0.5.3"
2213 |
2214 | istanbul-reports@^1.5.1:
2215 | version "1.5.1"
2216 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.5.1.tgz#97e4dbf3b515e8c484caea15d6524eebd3ff4e1a"
2217 | dependencies:
2218 | handlebars "^4.0.3"
2219 |
2220 | jest-changed-files@^23.4.2:
2221 | version "23.4.2"
2222 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-23.4.2.tgz#1eed688370cd5eebafe4ae93d34bb3b64968fe83"
2223 | dependencies:
2224 | throat "^4.0.0"
2225 |
2226 | jest-cli@^23.6.0:
2227 | version "23.6.0"
2228 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-23.6.0.tgz#61ab917744338f443ef2baa282ddffdd658a5da4"
2229 | dependencies:
2230 | ansi-escapes "^3.0.0"
2231 | chalk "^2.0.1"
2232 | exit "^0.1.2"
2233 | glob "^7.1.2"
2234 | graceful-fs "^4.1.11"
2235 | import-local "^1.0.0"
2236 | is-ci "^1.0.10"
2237 | istanbul-api "^1.3.1"
2238 | istanbul-lib-coverage "^1.2.0"
2239 | istanbul-lib-instrument "^1.10.1"
2240 | istanbul-lib-source-maps "^1.2.4"
2241 | jest-changed-files "^23.4.2"
2242 | jest-config "^23.6.0"
2243 | jest-environment-jsdom "^23.4.0"
2244 | jest-get-type "^22.1.0"
2245 | jest-haste-map "^23.6.0"
2246 | jest-message-util "^23.4.0"
2247 | jest-regex-util "^23.3.0"
2248 | jest-resolve-dependencies "^23.6.0"
2249 | jest-runner "^23.6.0"
2250 | jest-runtime "^23.6.0"
2251 | jest-snapshot "^23.6.0"
2252 | jest-util "^23.4.0"
2253 | jest-validate "^23.6.0"
2254 | jest-watcher "^23.4.0"
2255 | jest-worker "^23.2.0"
2256 | micromatch "^2.3.11"
2257 | node-notifier "^5.2.1"
2258 | prompts "^0.1.9"
2259 | realpath-native "^1.0.0"
2260 | rimraf "^2.5.4"
2261 | slash "^1.0.0"
2262 | string-length "^2.0.0"
2263 | strip-ansi "^4.0.0"
2264 | which "^1.2.12"
2265 | yargs "^11.0.0"
2266 |
2267 | jest-config@^23.6.0:
2268 | version "23.6.0"
2269 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-23.6.0.tgz#f82546a90ade2d8c7026fbf6ac5207fc22f8eb1d"
2270 | dependencies:
2271 | babel-core "^6.0.0"
2272 | babel-jest "^23.6.0"
2273 | chalk "^2.0.1"
2274 | glob "^7.1.1"
2275 | jest-environment-jsdom "^23.4.0"
2276 | jest-environment-node "^23.4.0"
2277 | jest-get-type "^22.1.0"
2278 | jest-jasmine2 "^23.6.0"
2279 | jest-regex-util "^23.3.0"
2280 | jest-resolve "^23.6.0"
2281 | jest-util "^23.4.0"
2282 | jest-validate "^23.6.0"
2283 | micromatch "^2.3.11"
2284 | pretty-format "^23.6.0"
2285 |
2286 | jest-diff@^23.6.0:
2287 | version "23.6.0"
2288 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-23.6.0.tgz#1500f3f16e850bb3d71233408089be099f610c7d"
2289 | dependencies:
2290 | chalk "^2.0.1"
2291 | diff "^3.2.0"
2292 | jest-get-type "^22.1.0"
2293 | pretty-format "^23.6.0"
2294 |
2295 | jest-docblock@^23.2.0:
2296 | version "23.2.0"
2297 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-23.2.0.tgz#f085e1f18548d99fdd69b20207e6fd55d91383a7"
2298 | dependencies:
2299 | detect-newline "^2.1.0"
2300 |
2301 | jest-each@^23.6.0:
2302 | version "23.6.0"
2303 | resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-23.6.0.tgz#ba0c3a82a8054387016139c733a05242d3d71575"
2304 | dependencies:
2305 | chalk "^2.0.1"
2306 | pretty-format "^23.6.0"
2307 |
2308 | jest-environment-jsdom@^23.4.0:
2309 | version "23.4.0"
2310 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-23.4.0.tgz#056a7952b3fea513ac62a140a2c368c79d9e6023"
2311 | dependencies:
2312 | jest-mock "^23.2.0"
2313 | jest-util "^23.4.0"
2314 | jsdom "^11.5.1"
2315 |
2316 | jest-environment-node@^23.4.0:
2317 | version "23.4.0"
2318 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-23.4.0.tgz#57e80ed0841dea303167cce8cd79521debafde10"
2319 | dependencies:
2320 | jest-mock "^23.2.0"
2321 | jest-util "^23.4.0"
2322 |
2323 | jest-get-type@^22.1.0:
2324 | version "22.4.3"
2325 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-22.4.3.tgz#e3a8504d8479342dd4420236b322869f18900ce4"
2326 |
2327 | jest-haste-map@^23.6.0:
2328 | version "23.6.0"
2329 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-23.6.0.tgz#2e3eb997814ca696d62afdb3f2529f5bbc935e16"
2330 | dependencies:
2331 | fb-watchman "^2.0.0"
2332 | graceful-fs "^4.1.11"
2333 | invariant "^2.2.4"
2334 | jest-docblock "^23.2.0"
2335 | jest-serializer "^23.0.1"
2336 | jest-worker "^23.2.0"
2337 | micromatch "^2.3.11"
2338 | sane "^2.0.0"
2339 |
2340 | jest-jasmine2@^23.6.0:
2341 | version "23.6.0"
2342 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-23.6.0.tgz#840e937f848a6c8638df24360ab869cc718592e0"
2343 | dependencies:
2344 | babel-traverse "^6.0.0"
2345 | chalk "^2.0.1"
2346 | co "^4.6.0"
2347 | expect "^23.6.0"
2348 | is-generator-fn "^1.0.0"
2349 | jest-diff "^23.6.0"
2350 | jest-each "^23.6.0"
2351 | jest-matcher-utils "^23.6.0"
2352 | jest-message-util "^23.4.0"
2353 | jest-snapshot "^23.6.0"
2354 | jest-util "^23.4.0"
2355 | pretty-format "^23.6.0"
2356 |
2357 | jest-leak-detector@^23.6.0:
2358 | version "23.6.0"
2359 | resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-23.6.0.tgz#e4230fd42cf381a1a1971237ad56897de7e171de"
2360 | dependencies:
2361 | pretty-format "^23.6.0"
2362 |
2363 | jest-matcher-utils@^23.6.0:
2364 | version "23.6.0"
2365 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-23.6.0.tgz#726bcea0c5294261a7417afb6da3186b4b8cac80"
2366 | dependencies:
2367 | chalk "^2.0.1"
2368 | jest-get-type "^22.1.0"
2369 | pretty-format "^23.6.0"
2370 |
2371 | jest-message-util@^23.4.0:
2372 | version "23.4.0"
2373 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-23.4.0.tgz#17610c50942349508d01a3d1e0bda2c079086a9f"
2374 | dependencies:
2375 | "@babel/code-frame" "^7.0.0-beta.35"
2376 | chalk "^2.0.1"
2377 | micromatch "^2.3.11"
2378 | slash "^1.0.0"
2379 | stack-utils "^1.0.1"
2380 |
2381 | jest-mock@^23.2.0:
2382 | version "23.2.0"
2383 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-23.2.0.tgz#ad1c60f29e8719d47c26e1138098b6d18b261134"
2384 |
2385 | jest-regex-util@^23.3.0:
2386 | version "23.3.0"
2387 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-23.3.0.tgz#5f86729547c2785c4002ceaa8f849fe8ca471bc5"
2388 |
2389 | jest-resolve-dependencies@^23.6.0:
2390 | version "23.6.0"
2391 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-23.6.0.tgz#b4526af24c8540d9a3fab102c15081cf509b723d"
2392 | dependencies:
2393 | jest-regex-util "^23.3.0"
2394 | jest-snapshot "^23.6.0"
2395 |
2396 | jest-resolve@^23.6.0:
2397 | version "23.6.0"
2398 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-23.6.0.tgz#cf1d1a24ce7ee7b23d661c33ba2150f3aebfa0ae"
2399 | dependencies:
2400 | browser-resolve "^1.11.3"
2401 | chalk "^2.0.1"
2402 | realpath-native "^1.0.0"
2403 |
2404 | jest-runner@^23.6.0:
2405 | version "23.6.0"
2406 | resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-23.6.0.tgz#3894bd219ffc3f3cb94dc48a4170a2e6f23a5a38"
2407 | dependencies:
2408 | exit "^0.1.2"
2409 | graceful-fs "^4.1.11"
2410 | jest-config "^23.6.0"
2411 | jest-docblock "^23.2.0"
2412 | jest-haste-map "^23.6.0"
2413 | jest-jasmine2 "^23.6.0"
2414 | jest-leak-detector "^23.6.0"
2415 | jest-message-util "^23.4.0"
2416 | jest-runtime "^23.6.0"
2417 | jest-util "^23.4.0"
2418 | jest-worker "^23.2.0"
2419 | source-map-support "^0.5.6"
2420 | throat "^4.0.0"
2421 |
2422 | jest-runtime@^23.6.0:
2423 | version "23.6.0"
2424 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-23.6.0.tgz#059e58c8ab445917cd0e0d84ac2ba68de8f23082"
2425 | dependencies:
2426 | babel-core "^6.0.0"
2427 | babel-plugin-istanbul "^4.1.6"
2428 | chalk "^2.0.1"
2429 | convert-source-map "^1.4.0"
2430 | exit "^0.1.2"
2431 | fast-json-stable-stringify "^2.0.0"
2432 | graceful-fs "^4.1.11"
2433 | jest-config "^23.6.0"
2434 | jest-haste-map "^23.6.0"
2435 | jest-message-util "^23.4.0"
2436 | jest-regex-util "^23.3.0"
2437 | jest-resolve "^23.6.0"
2438 | jest-snapshot "^23.6.0"
2439 | jest-util "^23.4.0"
2440 | jest-validate "^23.6.0"
2441 | micromatch "^2.3.11"
2442 | realpath-native "^1.0.0"
2443 | slash "^1.0.0"
2444 | strip-bom "3.0.0"
2445 | write-file-atomic "^2.1.0"
2446 | yargs "^11.0.0"
2447 |
2448 | jest-serializer@^23.0.1:
2449 | version "23.0.1"
2450 | resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-23.0.1.tgz#a3776aeb311e90fe83fab9e533e85102bd164165"
2451 |
2452 | jest-snapshot@^23.6.0:
2453 | version "23.6.0"
2454 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-23.6.0.tgz#f9c2625d1b18acda01ec2d2b826c0ce58a5aa17a"
2455 | dependencies:
2456 | babel-types "^6.0.0"
2457 | chalk "^2.0.1"
2458 | jest-diff "^23.6.0"
2459 | jest-matcher-utils "^23.6.0"
2460 | jest-message-util "^23.4.0"
2461 | jest-resolve "^23.6.0"
2462 | mkdirp "^0.5.1"
2463 | natural-compare "^1.4.0"
2464 | pretty-format "^23.6.0"
2465 | semver "^5.5.0"
2466 |
2467 | jest-util@^23.4.0:
2468 | version "23.4.0"
2469 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-23.4.0.tgz#4d063cb927baf0a23831ff61bec2cbbf49793561"
2470 | dependencies:
2471 | callsites "^2.0.0"
2472 | chalk "^2.0.1"
2473 | graceful-fs "^4.1.11"
2474 | is-ci "^1.0.10"
2475 | jest-message-util "^23.4.0"
2476 | mkdirp "^0.5.1"
2477 | slash "^1.0.0"
2478 | source-map "^0.6.0"
2479 |
2480 | jest-validate@^23.6.0:
2481 | version "23.6.0"
2482 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-23.6.0.tgz#36761f99d1ed33fcd425b4e4c5595d62b6597474"
2483 | dependencies:
2484 | chalk "^2.0.1"
2485 | jest-get-type "^22.1.0"
2486 | leven "^2.1.0"
2487 | pretty-format "^23.6.0"
2488 |
2489 | jest-watcher@^23.4.0:
2490 | version "23.4.0"
2491 | resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-23.4.0.tgz#d2e28ce74f8dad6c6afc922b92cabef6ed05c91c"
2492 | dependencies:
2493 | ansi-escapes "^3.0.0"
2494 | chalk "^2.0.1"
2495 | string-length "^2.0.0"
2496 |
2497 | jest-worker@^23.2.0:
2498 | version "23.2.0"
2499 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-23.2.0.tgz#faf706a8da36fae60eb26957257fa7b5d8ea02b9"
2500 | dependencies:
2501 | merge-stream "^1.0.1"
2502 |
2503 | jest@^23.6.0:
2504 | version "23.6.0"
2505 | resolved "https://registry.yarnpkg.com/jest/-/jest-23.6.0.tgz#ad5835e923ebf6e19e7a1d7529a432edfee7813d"
2506 | dependencies:
2507 | import-local "^1.0.0"
2508 | jest-cli "^23.6.0"
2509 |
2510 | js-tokens@^3.0.0, js-tokens@^3.0.2:
2511 | version "3.0.2"
2512 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
2513 |
2514 | js-tokens@^4.0.0:
2515 | version "4.0.0"
2516 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
2517 |
2518 | js-yaml@^3.12.0, js-yaml@^3.7.0:
2519 | version "3.12.1"
2520 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.1.tgz#295c8632a18a23e054cf5c9d3cecafe678167600"
2521 | dependencies:
2522 | argparse "^1.0.7"
2523 | esprima "^4.0.0"
2524 |
2525 | jsbn@~0.1.0:
2526 | version "0.1.1"
2527 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
2528 |
2529 | jsdom@^11.5.1:
2530 | version "11.12.0"
2531 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-11.12.0.tgz#1a80d40ddd378a1de59656e9e6dc5a3ba8657bc8"
2532 | dependencies:
2533 | abab "^2.0.0"
2534 | acorn "^5.5.3"
2535 | acorn-globals "^4.1.0"
2536 | array-equal "^1.0.0"
2537 | cssom ">= 0.3.2 < 0.4.0"
2538 | cssstyle "^1.0.0"
2539 | data-urls "^1.0.0"
2540 | domexception "^1.0.1"
2541 | escodegen "^1.9.1"
2542 | html-encoding-sniffer "^1.0.2"
2543 | left-pad "^1.3.0"
2544 | nwsapi "^2.0.7"
2545 | parse5 "4.0.0"
2546 | pn "^1.1.0"
2547 | request "^2.87.0"
2548 | request-promise-native "^1.0.5"
2549 | sax "^1.2.4"
2550 | symbol-tree "^3.2.2"
2551 | tough-cookie "^2.3.4"
2552 | w3c-hr-time "^1.0.1"
2553 | webidl-conversions "^4.0.2"
2554 | whatwg-encoding "^1.0.3"
2555 | whatwg-mimetype "^2.1.0"
2556 | whatwg-url "^6.4.1"
2557 | ws "^5.2.0"
2558 | xml-name-validator "^3.0.0"
2559 |
2560 | jsesc@^1.3.0:
2561 | version "1.3.0"
2562 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b"
2563 |
2564 | jsesc@^2.5.1:
2565 | version "2.5.2"
2566 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4"
2567 |
2568 | jsesc@~0.5.0:
2569 | version "0.5.0"
2570 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
2571 |
2572 | json-schema-traverse@^0.4.1:
2573 | version "0.4.1"
2574 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
2575 |
2576 | json-schema@0.2.3:
2577 | version "0.2.3"
2578 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
2579 |
2580 | json-stable-stringify-without-jsonify@^1.0.1:
2581 | version "1.0.1"
2582 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
2583 |
2584 | json-stringify-safe@~5.0.1:
2585 | version "5.0.1"
2586 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
2587 |
2588 | json5@^0.5.1:
2589 | version "0.5.1"
2590 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
2591 |
2592 | jsprim@^1.2.2:
2593 | version "1.4.1"
2594 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"
2595 | dependencies:
2596 | assert-plus "1.0.0"
2597 | extsprintf "1.3.0"
2598 | json-schema "0.2.3"
2599 | verror "1.10.0"
2600 |
2601 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0:
2602 | version "3.2.2"
2603 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
2604 | dependencies:
2605 | is-buffer "^1.1.5"
2606 |
2607 | kind-of@^4.0.0:
2608 | version "4.0.0"
2609 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57"
2610 | dependencies:
2611 | is-buffer "^1.1.5"
2612 |
2613 | kind-of@^5.0.0:
2614 | version "5.1.0"
2615 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d"
2616 |
2617 | kind-of@^6.0.0, kind-of@^6.0.2:
2618 | version "6.0.2"
2619 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051"
2620 |
2621 | kleur@^2.0.1:
2622 | version "2.0.2"
2623 | resolved "https://registry.yarnpkg.com/kleur/-/kleur-2.0.2.tgz#b704f4944d95e255d038f0cb05fb8a602c55a300"
2624 |
2625 | lcid@^1.0.0:
2626 | version "1.0.0"
2627 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835"
2628 | dependencies:
2629 | invert-kv "^1.0.0"
2630 |
2631 | left-pad@^1.3.0:
2632 | version "1.3.0"
2633 | resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.3.0.tgz#5b8a3a7765dfe001261dde915589e782f8c94d1e"
2634 |
2635 | leven@^2.1.0:
2636 | version "2.1.0"
2637 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580"
2638 |
2639 | levn@^0.3.0, levn@~0.3.0:
2640 | version "0.3.0"
2641 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
2642 | dependencies:
2643 | prelude-ls "~1.1.2"
2644 | type-check "~0.3.2"
2645 |
2646 | load-json-file@^1.0.0:
2647 | version "1.1.0"
2648 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0"
2649 | dependencies:
2650 | graceful-fs "^4.1.2"
2651 | parse-json "^2.2.0"
2652 | pify "^2.0.0"
2653 | pinkie-promise "^2.0.0"
2654 | strip-bom "^2.0.0"
2655 |
2656 | locate-path@^2.0.0:
2657 | version "2.0.0"
2658 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
2659 | dependencies:
2660 | p-locate "^2.0.0"
2661 | path-exists "^3.0.0"
2662 |
2663 | lodash.sortby@^4.7.0:
2664 | version "4.7.0"
2665 | resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438"
2666 |
2667 | lodash@^4.13.1, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.4, lodash@^4.17.5:
2668 | version "4.17.15"
2669 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548"
2670 |
2671 | loose-envify@^1.0.0:
2672 | version "1.3.1"
2673 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848"
2674 | dependencies:
2675 | js-tokens "^3.0.0"
2676 |
2677 | lru-cache@^4.0.1:
2678 | version "4.1.5"
2679 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd"
2680 | dependencies:
2681 | pseudomap "^1.0.2"
2682 | yallist "^2.1.2"
2683 |
2684 | magic-string@^0.22.4:
2685 | version "0.22.5"
2686 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.22.5.tgz#8e9cf5afddf44385c1da5bc2a6a0dbd10b03657e"
2687 | dependencies:
2688 | vlq "^0.2.2"
2689 |
2690 | makeerror@1.0.x:
2691 | version "1.0.11"
2692 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c"
2693 | dependencies:
2694 | tmpl "1.0.x"
2695 |
2696 | map-cache@^0.2.2:
2697 | version "0.2.2"
2698 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"
2699 |
2700 | map-visit@^1.0.0:
2701 | version "1.0.0"
2702 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"
2703 | dependencies:
2704 | object-visit "^1.0.0"
2705 |
2706 | math-random@^1.0.1:
2707 | version "1.0.1"
2708 | resolved "https://registry.yarnpkg.com/math-random/-/math-random-1.0.1.tgz#8b3aac588b8a66e4975e3cdea67f7bb329601fac"
2709 |
2710 | mem@^1.1.0:
2711 | version "1.1.0"
2712 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76"
2713 | dependencies:
2714 | mimic-fn "^1.0.0"
2715 |
2716 | merge-stream@^1.0.1:
2717 | version "1.0.1"
2718 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1"
2719 | dependencies:
2720 | readable-stream "^2.0.1"
2721 |
2722 | merge@^1.2.0:
2723 | version "1.2.1"
2724 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.1.tgz#38bebf80c3220a8a487b6fcfb3941bb11720c145"
2725 |
2726 | micromatch@^2.1.5, micromatch@^2.3.11:
2727 | version "2.3.11"
2728 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565"
2729 | dependencies:
2730 | arr-diff "^2.0.0"
2731 | array-unique "^0.2.1"
2732 | braces "^1.8.2"
2733 | expand-brackets "^0.1.4"
2734 | extglob "^0.3.1"
2735 | filename-regex "^2.0.0"
2736 | is-extglob "^1.0.0"
2737 | is-glob "^2.0.1"
2738 | kind-of "^3.0.2"
2739 | normalize-path "^2.0.1"
2740 | object.omit "^2.0.0"
2741 | parse-glob "^3.0.4"
2742 | regex-cache "^0.4.2"
2743 |
2744 | micromatch@^3.1.4:
2745 | version "3.1.10"
2746 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23"
2747 | dependencies:
2748 | arr-diff "^4.0.0"
2749 | array-unique "^0.3.2"
2750 | braces "^2.3.1"
2751 | define-property "^2.0.2"
2752 | extend-shallow "^3.0.2"
2753 | extglob "^2.0.4"
2754 | fragment-cache "^0.2.1"
2755 | kind-of "^6.0.2"
2756 | nanomatch "^1.2.9"
2757 | object.pick "^1.3.0"
2758 | regex-not "^1.0.0"
2759 | snapdragon "^0.8.1"
2760 | to-regex "^3.0.2"
2761 |
2762 | mime-db@~1.37.0:
2763 | version "1.37.0"
2764 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.37.0.tgz#0b6a0ce6fdbe9576e25f1f2d2fde8830dc0ad0d8"
2765 |
2766 | mime-types@^2.1.12, mime-types@~2.1.19:
2767 | version "2.1.21"
2768 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.21.tgz#28995aa1ecb770742fe6ae7e58f9181c744b3f96"
2769 | dependencies:
2770 | mime-db "~1.37.0"
2771 |
2772 | mimic-fn@^1.0.0:
2773 | version "1.2.0"
2774 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022"
2775 |
2776 | minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4:
2777 | version "3.0.4"
2778 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
2779 | dependencies:
2780 | brace-expansion "^1.1.7"
2781 |
2782 | minimist@0.0.8:
2783 | version "0.0.8"
2784 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
2785 |
2786 | minimist@^1.1.1, minimist@^1.2.0:
2787 | version "1.2.0"
2788 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
2789 |
2790 | minimist@~0.0.1:
2791 | version "0.0.10"
2792 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf"
2793 |
2794 | minipass@^2.2.1, minipass@^2.3.3:
2795 | version "2.3.3"
2796 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.3.tgz#a7dcc8b7b833f5d368759cce544dccb55f50f233"
2797 | dependencies:
2798 | safe-buffer "^5.1.2"
2799 | yallist "^3.0.0"
2800 |
2801 | minizlib@^1.1.0:
2802 | version "1.1.0"
2803 | resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.1.0.tgz#11e13658ce46bc3a70a267aac58359d1e0c29ceb"
2804 | dependencies:
2805 | minipass "^2.2.1"
2806 |
2807 | mixin-deep@^1.2.0:
2808 | version "1.3.2"
2809 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566"
2810 | dependencies:
2811 | for-in "^1.0.2"
2812 | is-extendable "^1.0.1"
2813 |
2814 | mkdirp@^0.5.0, mkdirp@^0.5.1:
2815 | version "0.5.1"
2816 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
2817 | dependencies:
2818 | minimist "0.0.8"
2819 |
2820 | ms@2.0.0:
2821 | version "2.0.0"
2822 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
2823 |
2824 | ms@^2.1.1:
2825 | version "2.1.1"
2826 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a"
2827 |
2828 | mute-stream@0.0.7:
2829 | version "0.0.7"
2830 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"
2831 |
2832 | nan@^2.9.2:
2833 | version "2.10.0"
2834 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.10.0.tgz#96d0cd610ebd58d4b4de9cc0c6828cda99c7548f"
2835 |
2836 | nanomatch@^1.2.9:
2837 | version "1.2.13"
2838 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119"
2839 | dependencies:
2840 | arr-diff "^4.0.0"
2841 | array-unique "^0.3.2"
2842 | define-property "^2.0.2"
2843 | extend-shallow "^3.0.2"
2844 | fragment-cache "^0.2.1"
2845 | is-windows "^1.0.2"
2846 | kind-of "^6.0.2"
2847 | object.pick "^1.3.0"
2848 | regex-not "^1.0.0"
2849 | snapdragon "^0.8.1"
2850 | to-regex "^3.0.1"
2851 |
2852 | natural-compare@^1.4.0:
2853 | version "1.4.0"
2854 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
2855 |
2856 | needle@^2.2.0:
2857 | version "2.2.1"
2858 | resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.1.tgz#b5e325bd3aae8c2678902fa296f729455d1d3a7d"
2859 | dependencies:
2860 | debug "^2.1.2"
2861 | iconv-lite "^0.4.4"
2862 | sax "^1.2.4"
2863 |
2864 | neo-async@^2.6.0:
2865 | version "2.6.1"
2866 | resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c"
2867 |
2868 | nice-try@^1.0.4:
2869 | version "1.0.4"
2870 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.4.tgz#d93962f6c52f2c1558c0fbda6d512819f1efe1c4"
2871 |
2872 | node-int64@^0.4.0:
2873 | version "0.4.0"
2874 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b"
2875 |
2876 | node-notifier@^5.2.1:
2877 | version "5.4.0"
2878 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.4.0.tgz#7b455fdce9f7de0c63538297354f3db468426e6a"
2879 | dependencies:
2880 | growly "^1.3.0"
2881 | is-wsl "^1.1.0"
2882 | semver "^5.5.0"
2883 | shellwords "^0.1.1"
2884 | which "^1.3.0"
2885 |
2886 | node-pre-gyp@^0.10.0:
2887 | version "0.10.2"
2888 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.10.2.tgz#e8945c20ef6795a20aac2b44f036eb13cf5146e3"
2889 | dependencies:
2890 | detect-libc "^1.0.2"
2891 | mkdirp "^0.5.1"
2892 | needle "^2.2.0"
2893 | nopt "^4.0.1"
2894 | npm-packlist "^1.1.6"
2895 | npmlog "^4.0.2"
2896 | rc "^1.2.7"
2897 | rimraf "^2.6.1"
2898 | semver "^5.3.0"
2899 | tar "^4"
2900 |
2901 | nopt@^4.0.1:
2902 | version "4.0.1"
2903 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d"
2904 | dependencies:
2905 | abbrev "1"
2906 | osenv "^0.1.4"
2907 |
2908 | normalize-package-data@^2.3.2:
2909 | version "2.5.0"
2910 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8"
2911 | dependencies:
2912 | hosted-git-info "^2.1.4"
2913 | resolve "^1.10.0"
2914 | semver "2 || 3 || 4 || 5"
2915 | validate-npm-package-license "^3.0.1"
2916 |
2917 | normalize-path@^2.0.0, normalize-path@^2.0.1, normalize-path@^2.1.1:
2918 | version "2.1.1"
2919 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
2920 | dependencies:
2921 | remove-trailing-separator "^1.0.1"
2922 |
2923 | npm-bundled@^1.0.1:
2924 | version "1.0.3"
2925 | resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.3.tgz#7e71703d973af3370a9591bafe3a63aca0be2308"
2926 |
2927 | npm-packlist@^1.1.6:
2928 | version "1.1.10"
2929 | resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.1.10.tgz#1039db9e985727e464df066f4cf0ab6ef85c398a"
2930 | dependencies:
2931 | ignore-walk "^3.0.1"
2932 | npm-bundled "^1.0.1"
2933 |
2934 | npm-run-path@^2.0.0:
2935 | version "2.0.2"
2936 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
2937 | dependencies:
2938 | path-key "^2.0.0"
2939 |
2940 | npmlog@^4.0.2:
2941 | version "4.1.2"
2942 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
2943 | dependencies:
2944 | are-we-there-yet "~1.1.2"
2945 | console-control-strings "~1.1.0"
2946 | gauge "~2.7.3"
2947 | set-blocking "~2.0.0"
2948 |
2949 | number-is-nan@^1.0.0:
2950 | version "1.0.1"
2951 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
2952 |
2953 | nwsapi@^2.0.7:
2954 | version "2.1.0"
2955 | resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.1.0.tgz#781065940aed90d9bb01ca5d0ce0fcf81c32712f"
2956 |
2957 | oauth-sign@~0.9.0:
2958 | version "0.9.0"
2959 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455"
2960 |
2961 | object-assign@^4.0.1, object-assign@^4.1.0:
2962 | version "4.1.1"
2963 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
2964 |
2965 | object-copy@^0.1.0:
2966 | version "0.1.0"
2967 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c"
2968 | dependencies:
2969 | copy-descriptor "^0.1.0"
2970 | define-property "^0.2.5"
2971 | kind-of "^3.0.3"
2972 |
2973 | object-keys@^1.0.12:
2974 | version "1.0.12"
2975 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.12.tgz#09c53855377575310cca62f55bb334abff7b3ed2"
2976 |
2977 | object-visit@^1.0.0:
2978 | version "1.0.1"
2979 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb"
2980 | dependencies:
2981 | isobject "^3.0.0"
2982 |
2983 | object.getownpropertydescriptors@^2.0.3:
2984 | version "2.0.3"
2985 | resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16"
2986 | dependencies:
2987 | define-properties "^1.1.2"
2988 | es-abstract "^1.5.1"
2989 |
2990 | object.omit@^2.0.0:
2991 | version "2.0.1"
2992 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"
2993 | dependencies:
2994 | for-own "^0.1.4"
2995 | is-extendable "^0.1.1"
2996 |
2997 | object.pick@^1.3.0:
2998 | version "1.3.0"
2999 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747"
3000 | dependencies:
3001 | isobject "^3.0.1"
3002 |
3003 | once@^1.3.0, once@^1.4.0:
3004 | version "1.4.0"
3005 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
3006 | dependencies:
3007 | wrappy "1"
3008 |
3009 | onetime@^2.0.0:
3010 | version "2.0.1"
3011 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4"
3012 | dependencies:
3013 | mimic-fn "^1.0.0"
3014 |
3015 | optimist@^0.6.1:
3016 | version "0.6.1"
3017 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686"
3018 | dependencies:
3019 | minimist "~0.0.1"
3020 | wordwrap "~0.0.2"
3021 |
3022 | optionator@^0.8.1, optionator@^0.8.2:
3023 | version "0.8.2"
3024 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64"
3025 | dependencies:
3026 | deep-is "~0.1.3"
3027 | fast-levenshtein "~2.0.4"
3028 | levn "~0.3.0"
3029 | prelude-ls "~1.1.2"
3030 | type-check "~0.3.2"
3031 | wordwrap "~1.0.0"
3032 |
3033 | os-homedir@^1.0.0:
3034 | version "1.0.2"
3035 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
3036 |
3037 | os-locale@^2.0.0:
3038 | version "2.1.0"
3039 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2"
3040 | dependencies:
3041 | execa "^0.7.0"
3042 | lcid "^1.0.0"
3043 | mem "^1.1.0"
3044 |
3045 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.2:
3046 | version "1.0.2"
3047 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
3048 |
3049 | osenv@^0.1.4:
3050 | version "0.1.5"
3051 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410"
3052 | dependencies:
3053 | os-homedir "^1.0.0"
3054 | os-tmpdir "^1.0.0"
3055 |
3056 | output-file-sync@^1.1.2:
3057 | version "1.1.2"
3058 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76"
3059 | dependencies:
3060 | graceful-fs "^4.1.4"
3061 | mkdirp "^0.5.1"
3062 | object-assign "^4.1.0"
3063 |
3064 | p-finally@^1.0.0:
3065 | version "1.0.0"
3066 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
3067 |
3068 | p-limit@^1.1.0:
3069 | version "1.3.0"
3070 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8"
3071 | dependencies:
3072 | p-try "^1.0.0"
3073 |
3074 | p-locate@^2.0.0:
3075 | version "2.0.0"
3076 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
3077 | dependencies:
3078 | p-limit "^1.1.0"
3079 |
3080 | p-try@^1.0.0:
3081 | version "1.0.0"
3082 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"
3083 |
3084 | parent-module@^1.0.0:
3085 | version "1.0.0"
3086 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.0.tgz#df250bdc5391f4a085fb589dad761f5ad6b865b5"
3087 | dependencies:
3088 | callsites "^3.0.0"
3089 |
3090 | parse-glob@^3.0.4:
3091 | version "3.0.4"
3092 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c"
3093 | dependencies:
3094 | glob-base "^0.3.0"
3095 | is-dotfile "^1.0.0"
3096 | is-extglob "^1.0.0"
3097 | is-glob "^2.0.0"
3098 |
3099 | parse-json@^2.2.0:
3100 | version "2.2.0"
3101 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
3102 | dependencies:
3103 | error-ex "^1.2.0"
3104 |
3105 | parse5@4.0.0:
3106 | version "4.0.0"
3107 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608"
3108 |
3109 | pascalcase@^0.1.1:
3110 | version "0.1.1"
3111 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14"
3112 |
3113 | path-exists@^2.0.0:
3114 | version "2.1.0"
3115 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b"
3116 | dependencies:
3117 | pinkie-promise "^2.0.0"
3118 |
3119 | path-exists@^3.0.0:
3120 | version "3.0.0"
3121 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
3122 |
3123 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1:
3124 | version "1.0.1"
3125 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
3126 |
3127 | path-is-inside@^1.0.2:
3128 | version "1.0.2"
3129 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53"
3130 |
3131 | path-key@^2.0.0, path-key@^2.0.1:
3132 | version "2.0.1"
3133 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
3134 |
3135 | path-parse@^1.0.5:
3136 | version "1.0.5"
3137 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1"
3138 |
3139 | path-parse@^1.0.6:
3140 | version "1.0.6"
3141 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c"
3142 |
3143 | path-type@^1.0.0:
3144 | version "1.1.0"
3145 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441"
3146 | dependencies:
3147 | graceful-fs "^4.1.2"
3148 | pify "^2.0.0"
3149 | pinkie-promise "^2.0.0"
3150 |
3151 | performance-now@^2.1.0:
3152 | version "2.1.0"
3153 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"
3154 |
3155 | pify@^2.0.0:
3156 | version "2.3.0"
3157 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
3158 |
3159 | pinkie-promise@^2.0.0:
3160 | version "2.0.1"
3161 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
3162 | dependencies:
3163 | pinkie "^2.0.0"
3164 |
3165 | pinkie@^2.0.0:
3166 | version "2.0.4"
3167 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
3168 |
3169 | pkg-dir@^2.0.0:
3170 | version "2.0.0"
3171 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b"
3172 | dependencies:
3173 | find-up "^2.1.0"
3174 |
3175 | pn@^1.1.0:
3176 | version "1.1.0"
3177 | resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb"
3178 |
3179 | posix-character-classes@^0.1.0:
3180 | version "0.1.1"
3181 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"
3182 |
3183 | prelude-ls@~1.1.2:
3184 | version "1.1.2"
3185 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
3186 |
3187 | preserve@^0.2.0:
3188 | version "0.2.0"
3189 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
3190 |
3191 | pretty-format@^23.6.0:
3192 | version "23.6.0"
3193 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-23.6.0.tgz#5eaac8eeb6b33b987b7fe6097ea6a8a146ab5760"
3194 | dependencies:
3195 | ansi-regex "^3.0.0"
3196 | ansi-styles "^3.2.0"
3197 |
3198 | private@^0.1.6, private@^0.1.8:
3199 | version "0.1.8"
3200 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff"
3201 |
3202 | process-nextick-args@~2.0.0:
3203 | version "2.0.0"
3204 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa"
3205 |
3206 | progress@^2.0.0:
3207 | version "2.0.3"
3208 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8"
3209 |
3210 | prompts@^0.1.9:
3211 | version "0.1.14"
3212 | resolved "https://registry.yarnpkg.com/prompts/-/prompts-0.1.14.tgz#a8e15c612c5c9ec8f8111847df3337c9cbd443b2"
3213 | dependencies:
3214 | kleur "^2.0.1"
3215 | sisteransi "^0.1.1"
3216 |
3217 | pseudomap@^1.0.2:
3218 | version "1.0.2"
3219 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
3220 |
3221 | psl@^1.1.24, psl@^1.1.28:
3222 | version "1.1.31"
3223 | resolved "https://registry.yarnpkg.com/psl/-/psl-1.1.31.tgz#e9aa86d0101b5b105cbe93ac6b784cd547276184"
3224 |
3225 | punycode@^1.4.1:
3226 | version "1.4.1"
3227 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
3228 |
3229 | punycode@^2.1.0, punycode@^2.1.1:
3230 | version "2.1.1"
3231 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
3232 |
3233 | qs@~6.5.2:
3234 | version "6.5.2"
3235 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36"
3236 |
3237 | randomatic@^3.0.0:
3238 | version "3.0.0"
3239 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-3.0.0.tgz#d35490030eb4f7578de292ce6dfb04a91a128923"
3240 | dependencies:
3241 | is-number "^4.0.0"
3242 | kind-of "^6.0.0"
3243 | math-random "^1.0.1"
3244 |
3245 | rc@^1.2.7:
3246 | version "1.2.8"
3247 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed"
3248 | dependencies:
3249 | deep-extend "^0.6.0"
3250 | ini "~1.3.0"
3251 | minimist "^1.2.0"
3252 | strip-json-comments "~2.0.1"
3253 |
3254 | read-pkg-up@^1.0.1:
3255 | version "1.0.1"
3256 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02"
3257 | dependencies:
3258 | find-up "^1.0.0"
3259 | read-pkg "^1.0.0"
3260 |
3261 | read-pkg@^1.0.0:
3262 | version "1.1.0"
3263 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28"
3264 | dependencies:
3265 | load-json-file "^1.0.0"
3266 | normalize-package-data "^2.3.2"
3267 | path-type "^1.0.0"
3268 |
3269 | readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6:
3270 | version "2.3.6"
3271 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf"
3272 | dependencies:
3273 | core-util-is "~1.0.0"
3274 | inherits "~2.0.3"
3275 | isarray "~1.0.0"
3276 | process-nextick-args "~2.0.0"
3277 | safe-buffer "~5.1.1"
3278 | string_decoder "~1.1.1"
3279 | util-deprecate "~1.0.1"
3280 |
3281 | readdirp@^2.0.0:
3282 | version "2.1.0"
3283 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78"
3284 | dependencies:
3285 | graceful-fs "^4.1.2"
3286 | minimatch "^3.0.2"
3287 | readable-stream "^2.0.2"
3288 | set-immediate-shim "^1.0.1"
3289 |
3290 | realpath-native@^1.0.0:
3291 | version "1.0.2"
3292 | resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.0.2.tgz#cd51ce089b513b45cf9b1516c82989b51ccc6560"
3293 | dependencies:
3294 | util.promisify "^1.0.0"
3295 |
3296 | regenerate@^1.2.1:
3297 | version "1.4.0"
3298 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11"
3299 |
3300 | regenerator-runtime@^0.10.5:
3301 | version "0.10.5"
3302 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658"
3303 |
3304 | regenerator-runtime@^0.11.0:
3305 | version "0.11.1"
3306 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9"
3307 |
3308 | regenerator-transform@^0.10.0:
3309 | version "0.10.1"
3310 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd"
3311 | dependencies:
3312 | babel-runtime "^6.18.0"
3313 | babel-types "^6.19.0"
3314 | private "^0.1.6"
3315 |
3316 | regex-cache@^0.4.2:
3317 | version "0.4.4"
3318 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd"
3319 | dependencies:
3320 | is-equal-shallow "^0.1.3"
3321 |
3322 | regex-not@^1.0.0, regex-not@^1.0.2:
3323 | version "1.0.2"
3324 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c"
3325 | dependencies:
3326 | extend-shallow "^3.0.2"
3327 | safe-regex "^1.1.0"
3328 |
3329 | regexpp@^2.0.1:
3330 | version "2.0.1"
3331 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f"
3332 |
3333 | regexpu-core@^2.0.0:
3334 | version "2.0.0"
3335 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240"
3336 | dependencies:
3337 | regenerate "^1.2.1"
3338 | regjsgen "^0.2.0"
3339 | regjsparser "^0.1.4"
3340 |
3341 | regjsgen@^0.2.0:
3342 | version "0.2.0"
3343 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7"
3344 |
3345 | regjsparser@^0.1.4:
3346 | version "0.1.5"
3347 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c"
3348 | dependencies:
3349 | jsesc "~0.5.0"
3350 |
3351 | remove-trailing-separator@^1.0.1:
3352 | version "1.1.0"
3353 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
3354 |
3355 | repeat-element@^1.1.2:
3356 | version "1.1.2"
3357 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a"
3358 |
3359 | repeat-string@^1.5.2, repeat-string@^1.6.1:
3360 | version "1.6.1"
3361 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
3362 |
3363 | repeating@^2.0.0:
3364 | version "2.0.1"
3365 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda"
3366 | dependencies:
3367 | is-finite "^1.0.0"
3368 |
3369 | request-promise-core@1.1.1:
3370 | version "1.1.1"
3371 | resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.1.tgz#3eee00b2c5aa83239cfb04c5700da36f81cd08b6"
3372 | dependencies:
3373 | lodash "^4.13.1"
3374 |
3375 | request-promise-native@^1.0.5:
3376 | version "1.0.5"
3377 | resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.5.tgz#5281770f68e0c9719e5163fd3fab482215f4fda5"
3378 | dependencies:
3379 | request-promise-core "1.1.1"
3380 | stealthy-require "^1.1.0"
3381 | tough-cookie ">=2.3.3"
3382 |
3383 | request@^2.87.0:
3384 | version "2.88.0"
3385 | resolved "https://registry.yarnpkg.com/request/-/request-2.88.0.tgz#9c2fca4f7d35b592efe57c7f0a55e81052124fef"
3386 | dependencies:
3387 | aws-sign2 "~0.7.0"
3388 | aws4 "^1.8.0"
3389 | caseless "~0.12.0"
3390 | combined-stream "~1.0.6"
3391 | extend "~3.0.2"
3392 | forever-agent "~0.6.1"
3393 | form-data "~2.3.2"
3394 | har-validator "~5.1.0"
3395 | http-signature "~1.2.0"
3396 | is-typedarray "~1.0.0"
3397 | isstream "~0.1.2"
3398 | json-stringify-safe "~5.0.1"
3399 | mime-types "~2.1.19"
3400 | oauth-sign "~0.9.0"
3401 | performance-now "^2.1.0"
3402 | qs "~6.5.2"
3403 | safe-buffer "^5.1.2"
3404 | tough-cookie "~2.4.3"
3405 | tunnel-agent "^0.6.0"
3406 | uuid "^3.3.2"
3407 |
3408 | require-directory@^2.1.1:
3409 | version "2.1.1"
3410 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
3411 |
3412 | require-main-filename@^1.0.1:
3413 | version "1.0.1"
3414 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1"
3415 |
3416 | resolve-cwd@^2.0.0:
3417 | version "2.0.0"
3418 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a"
3419 | dependencies:
3420 | resolve-from "^3.0.0"
3421 |
3422 | resolve-from@^3.0.0:
3423 | version "3.0.0"
3424 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748"
3425 |
3426 | resolve-from@^4.0.0:
3427 | version "4.0.0"
3428 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
3429 |
3430 | resolve-url@^0.2.1:
3431 | version "0.2.1"
3432 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
3433 |
3434 | resolve@1.1.7:
3435 | version "1.1.7"
3436 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b"
3437 |
3438 | resolve@^1.1.6, resolve@^1.5.0:
3439 | version "1.8.1"
3440 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.8.1.tgz#82f1ec19a423ac1fbd080b0bab06ba36e84a7a26"
3441 | dependencies:
3442 | path-parse "^1.0.5"
3443 |
3444 | resolve@^1.10.0:
3445 | version "1.10.0"
3446 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.10.0.tgz#3bdaaeaf45cc07f375656dfd2e54ed0810b101ba"
3447 | dependencies:
3448 | path-parse "^1.0.6"
3449 |
3450 | restore-cursor@^2.0.0:
3451 | version "2.0.0"
3452 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf"
3453 | dependencies:
3454 | onetime "^2.0.0"
3455 | signal-exit "^3.0.2"
3456 |
3457 | ret@~0.1.10:
3458 | version "0.1.15"
3459 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"
3460 |
3461 | rimraf@^2.5.4, rimraf@~2.6.2:
3462 | version "2.6.3"
3463 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab"
3464 | dependencies:
3465 | glob "^7.1.3"
3466 |
3467 | rimraf@^2.6.1, rimraf@^2.6.2:
3468 | version "2.6.2"
3469 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36"
3470 | dependencies:
3471 | glob "^7.0.5"
3472 |
3473 | rollup-plugin-babel@^3.0.7:
3474 | version "3.0.7"
3475 | resolved "https://registry.yarnpkg.com/rollup-plugin-babel/-/rollup-plugin-babel-3.0.7.tgz#5b13611f1ab8922497e9d15197ae5d8a23fe3b1e"
3476 | dependencies:
3477 | rollup-pluginutils "^1.5.0"
3478 |
3479 | rollup-plugin-commonjs@^9.1.3:
3480 | version "9.1.3"
3481 | resolved "https://registry.yarnpkg.com/rollup-plugin-commonjs/-/rollup-plugin-commonjs-9.1.3.tgz#37bfbf341292ea14f512438a56df8f9ca3ba4d67"
3482 | dependencies:
3483 | estree-walker "^0.5.1"
3484 | magic-string "^0.22.4"
3485 | resolve "^1.5.0"
3486 | rollup-pluginutils "^2.0.1"
3487 |
3488 | rollup-plugin-node-resolve@^3.3.0:
3489 | version "3.3.0"
3490 | resolved "https://registry.yarnpkg.com/rollup-plugin-node-resolve/-/rollup-plugin-node-resolve-3.3.0.tgz#c26d110a36812cbefa7ce117cadcd3439aa1c713"
3491 | dependencies:
3492 | builtin-modules "^2.0.0"
3493 | is-module "^1.0.0"
3494 | resolve "^1.1.6"
3495 |
3496 | rollup-plugin-replace@^2.0.0:
3497 | version "2.0.0"
3498 | resolved "https://registry.yarnpkg.com/rollup-plugin-replace/-/rollup-plugin-replace-2.0.0.tgz#19074089c8ed57184b8cc64e967a03d095119277"
3499 | dependencies:
3500 | magic-string "^0.22.4"
3501 | minimatch "^3.0.2"
3502 | rollup-pluginutils "^2.0.1"
3503 |
3504 | rollup-plugin-uglify-es@^0.0.1:
3505 | version "0.0.1"
3506 | resolved "https://registry.yarnpkg.com/rollup-plugin-uglify-es/-/rollup-plugin-uglify-es-0.0.1.tgz#e45644f2b685a59abdb9363407207a03a7b5a9b7"
3507 | dependencies:
3508 | uglify-es "3.0.3"
3509 |
3510 | rollup-pluginutils@^1.5.0:
3511 | version "1.5.2"
3512 | resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-1.5.2.tgz#1e156e778f94b7255bfa1b3d0178be8f5c552408"
3513 | dependencies:
3514 | estree-walker "^0.2.1"
3515 | minimatch "^3.0.2"
3516 |
3517 | rollup-pluginutils@^2.0.1:
3518 | version "2.3.0"
3519 | resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.3.0.tgz#478ace04bd7f6da2e724356ca798214884738fc4"
3520 | dependencies:
3521 | estree-walker "^0.5.2"
3522 | micromatch "^2.3.11"
3523 |
3524 | rollup@^0.62.0:
3525 | version "0.62.0"
3526 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-0.62.0.tgz#4ca8b3c9582195dc9341ff8a1375f58319b95bfc"
3527 | dependencies:
3528 | "@types/estree" "0.0.39"
3529 | "@types/node" "*"
3530 |
3531 | rsvp@^3.3.3:
3532 | version "3.6.2"
3533 | resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-3.6.2.tgz#2e96491599a96cde1b515d5674a8f7a91452926a"
3534 |
3535 | run-async@^2.2.0:
3536 | version "2.3.0"
3537 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0"
3538 | dependencies:
3539 | is-promise "^2.1.0"
3540 |
3541 | rxjs@^6.4.0:
3542 | version "6.4.0"
3543 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.4.0.tgz#f3bb0fe7bda7fb69deac0c16f17b50b0b8790504"
3544 | dependencies:
3545 | tslib "^1.9.0"
3546 |
3547 | safe-buffer@^5.0.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
3548 | version "5.1.2"
3549 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
3550 |
3551 | safe-regex@^1.1.0:
3552 | version "1.1.0"
3553 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e"
3554 | dependencies:
3555 | ret "~0.1.10"
3556 |
3557 | "safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0:
3558 | version "2.1.2"
3559 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
3560 |
3561 | sane@^2.0.0:
3562 | version "2.5.2"
3563 | resolved "https://registry.yarnpkg.com/sane/-/sane-2.5.2.tgz#b4dc1861c21b427e929507a3e751e2a2cb8ab3fa"
3564 | dependencies:
3565 | anymatch "^2.0.0"
3566 | capture-exit "^1.2.0"
3567 | exec-sh "^0.2.0"
3568 | fb-watchman "^2.0.0"
3569 | micromatch "^3.1.4"
3570 | minimist "^1.1.1"
3571 | walker "~1.0.5"
3572 | watch "~0.18.0"
3573 | optionalDependencies:
3574 | fsevents "^1.2.3"
3575 |
3576 | sax@^1.2.4:
3577 | version "1.2.4"
3578 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
3579 |
3580 | "semver@2 || 3 || 4 || 5", semver@^5.5.1:
3581 | version "5.6.0"
3582 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.6.0.tgz#7e74256fbaa49c75aa7c7a205cc22799cac80004"
3583 |
3584 | semver@^5.3.0, semver@^5.5.0:
3585 | version "5.5.0"
3586 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab"
3587 |
3588 | set-blocking@^2.0.0, set-blocking@~2.0.0:
3589 | version "2.0.0"
3590 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
3591 |
3592 | set-immediate-shim@^1.0.1:
3593 | version "1.0.1"
3594 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61"
3595 |
3596 | set-value@^0.4.3:
3597 | version "0.4.3"
3598 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1"
3599 | dependencies:
3600 | extend-shallow "^2.0.1"
3601 | is-extendable "^0.1.1"
3602 | is-plain-object "^2.0.1"
3603 | to-object-path "^0.3.0"
3604 |
3605 | set-value@^2.0.0:
3606 | version "2.0.0"
3607 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274"
3608 | dependencies:
3609 | extend-shallow "^2.0.1"
3610 | is-extendable "^0.1.1"
3611 | is-plain-object "^2.0.3"
3612 | split-string "^3.0.1"
3613 |
3614 | shebang-command@^1.2.0:
3615 | version "1.2.0"
3616 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
3617 | dependencies:
3618 | shebang-regex "^1.0.0"
3619 |
3620 | shebang-regex@^1.0.0:
3621 | version "1.0.0"
3622 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
3623 |
3624 | shellwords@^0.1.1:
3625 | version "0.1.1"
3626 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b"
3627 |
3628 | signal-exit@^3.0.0, signal-exit@^3.0.2:
3629 | version "3.0.2"
3630 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
3631 |
3632 | sisteransi@^0.1.1:
3633 | version "0.1.1"
3634 | resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-0.1.1.tgz#5431447d5f7d1675aac667ccd0b865a4994cb3ce"
3635 |
3636 | slash@^1.0.0:
3637 | version "1.0.0"
3638 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"
3639 |
3640 | slice-ansi@^2.0.0:
3641 | version "2.1.0"
3642 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636"
3643 | dependencies:
3644 | ansi-styles "^3.2.0"
3645 | astral-regex "^1.0.0"
3646 | is-fullwidth-code-point "^2.0.0"
3647 |
3648 | snapdragon-node@^2.0.1:
3649 | version "2.1.1"
3650 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b"
3651 | dependencies:
3652 | define-property "^1.0.0"
3653 | isobject "^3.0.0"
3654 | snapdragon-util "^3.0.1"
3655 |
3656 | snapdragon-util@^3.0.1:
3657 | version "3.0.1"
3658 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2"
3659 | dependencies:
3660 | kind-of "^3.2.0"
3661 |
3662 | snapdragon@^0.8.1:
3663 | version "0.8.2"
3664 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d"
3665 | dependencies:
3666 | base "^0.11.1"
3667 | debug "^2.2.0"
3668 | define-property "^0.2.5"
3669 | extend-shallow "^2.0.1"
3670 | map-cache "^0.2.2"
3671 | source-map "^0.5.6"
3672 | source-map-resolve "^0.5.0"
3673 | use "^3.1.0"
3674 |
3675 | source-map-resolve@^0.5.0:
3676 | version "0.5.2"
3677 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259"
3678 | dependencies:
3679 | atob "^2.1.1"
3680 | decode-uri-component "^0.2.0"
3681 | resolve-url "^0.2.1"
3682 | source-map-url "^0.4.0"
3683 | urix "^0.1.0"
3684 |
3685 | source-map-support@^0.4.15:
3686 | version "0.4.18"
3687 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f"
3688 | dependencies:
3689 | source-map "^0.5.6"
3690 |
3691 | source-map-support@^0.5.6:
3692 | version "0.5.10"
3693 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.10.tgz#2214080bc9d51832511ee2bab96e3c2f9353120c"
3694 | dependencies:
3695 | buffer-from "^1.0.0"
3696 | source-map "^0.6.0"
3697 |
3698 | source-map-url@^0.4.0:
3699 | version "0.4.0"
3700 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3"
3701 |
3702 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@^0.5.7, source-map@~0.5.1:
3703 | version "0.5.7"
3704 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
3705 |
3706 | source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1:
3707 | version "0.6.1"
3708 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
3709 |
3710 | spdx-correct@^3.0.0:
3711 | version "3.1.0"
3712 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4"
3713 | dependencies:
3714 | spdx-expression-parse "^3.0.0"
3715 | spdx-license-ids "^3.0.0"
3716 |
3717 | spdx-exceptions@^2.1.0:
3718 | version "2.2.0"
3719 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz#2ea450aee74f2a89bfb94519c07fcd6f41322977"
3720 |
3721 | spdx-expression-parse@^3.0.0:
3722 | version "3.0.0"
3723 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0"
3724 | dependencies:
3725 | spdx-exceptions "^2.1.0"
3726 | spdx-license-ids "^3.0.0"
3727 |
3728 | spdx-license-ids@^3.0.0:
3729 | version "3.0.3"
3730 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.3.tgz#81c0ce8f21474756148bbb5f3bfc0f36bf15d76e"
3731 |
3732 | split-string@^3.0.1, split-string@^3.0.2:
3733 | version "3.1.0"
3734 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2"
3735 | dependencies:
3736 | extend-shallow "^3.0.0"
3737 |
3738 | sprintf-js@~1.0.2:
3739 | version "1.0.3"
3740 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
3741 |
3742 | sshpk@^1.7.0:
3743 | version "1.16.1"
3744 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877"
3745 | dependencies:
3746 | asn1 "~0.2.3"
3747 | assert-plus "^1.0.0"
3748 | bcrypt-pbkdf "^1.0.0"
3749 | dashdash "^1.12.0"
3750 | ecc-jsbn "~0.1.1"
3751 | getpass "^0.1.1"
3752 | jsbn "~0.1.0"
3753 | safer-buffer "^2.0.2"
3754 | tweetnacl "~0.14.0"
3755 |
3756 | stack-utils@^1.0.1:
3757 | version "1.0.2"
3758 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.2.tgz#33eba3897788558bebfc2db059dc158ec36cebb8"
3759 |
3760 | static-extend@^0.1.1:
3761 | version "0.1.2"
3762 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6"
3763 | dependencies:
3764 | define-property "^0.2.5"
3765 | object-copy "^0.1.0"
3766 |
3767 | stealthy-require@^1.1.0:
3768 | version "1.1.1"
3769 | resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b"
3770 |
3771 | string-length@^2.0.0:
3772 | version "2.0.0"
3773 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed"
3774 | dependencies:
3775 | astral-regex "^1.0.0"
3776 | strip-ansi "^4.0.0"
3777 |
3778 | string-width@^1.0.1:
3779 | version "1.0.2"
3780 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
3781 | dependencies:
3782 | code-point-at "^1.0.0"
3783 | is-fullwidth-code-point "^1.0.0"
3784 | strip-ansi "^3.0.0"
3785 |
3786 | "string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1:
3787 | version "2.1.1"
3788 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
3789 | dependencies:
3790 | is-fullwidth-code-point "^2.0.0"
3791 | strip-ansi "^4.0.0"
3792 |
3793 | string_decoder@~1.1.1:
3794 | version "1.1.1"
3795 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8"
3796 | dependencies:
3797 | safe-buffer "~5.1.0"
3798 |
3799 | strip-ansi@^3.0.0, strip-ansi@^3.0.1:
3800 | version "3.0.1"
3801 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
3802 | dependencies:
3803 | ansi-regex "^2.0.0"
3804 |
3805 | strip-ansi@^4.0.0:
3806 | version "4.0.0"
3807 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
3808 | dependencies:
3809 | ansi-regex "^3.0.0"
3810 |
3811 | strip-ansi@^5.0.0:
3812 | version "5.0.0"
3813 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.0.0.tgz#f78f68b5d0866c20b2c9b8c61b5298508dc8756f"
3814 | dependencies:
3815 | ansi-regex "^4.0.0"
3816 |
3817 | strip-bom@3.0.0:
3818 | version "3.0.0"
3819 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
3820 |
3821 | strip-bom@^2.0.0:
3822 | version "2.0.0"
3823 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e"
3824 | dependencies:
3825 | is-utf8 "^0.2.0"
3826 |
3827 | strip-eof@^1.0.0:
3828 | version "1.0.0"
3829 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
3830 |
3831 | strip-json-comments@^2.0.1, strip-json-comments@~2.0.1:
3832 | version "2.0.1"
3833 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
3834 |
3835 | supports-color@^2.0.0:
3836 | version "2.0.0"
3837 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
3838 |
3839 | supports-color@^3.1.2:
3840 | version "3.2.3"
3841 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6"
3842 | dependencies:
3843 | has-flag "^1.0.0"
3844 |
3845 | supports-color@^5.3.0:
3846 | version "5.5.0"
3847 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
3848 | dependencies:
3849 | has-flag "^3.0.0"
3850 |
3851 | symbol-tree@^3.2.2:
3852 | version "3.2.2"
3853 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6"
3854 |
3855 | table@^5.0.2:
3856 | version "5.2.2"
3857 | resolved "https://registry.yarnpkg.com/table/-/table-5.2.2.tgz#61d474c9e4d8f4f7062c98c7504acb3c08aa738f"
3858 | dependencies:
3859 | ajv "^6.6.1"
3860 | lodash "^4.17.11"
3861 | slice-ansi "^2.0.0"
3862 | string-width "^2.1.1"
3863 |
3864 | tar@^4:
3865 | version "4.4.4"
3866 | resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.4.tgz#ec8409fae9f665a4355cc3b4087d0820232bb8cd"
3867 | dependencies:
3868 | chownr "^1.0.1"
3869 | fs-minipass "^1.2.5"
3870 | minipass "^2.3.3"
3871 | minizlib "^1.1.0"
3872 | mkdirp "^0.5.0"
3873 | safe-buffer "^5.1.2"
3874 | yallist "^3.0.2"
3875 |
3876 | test-exclude@^4.2.1:
3877 | version "4.2.3"
3878 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.2.3.tgz#a9a5e64474e4398339245a0a769ad7c2f4a97c20"
3879 | dependencies:
3880 | arrify "^1.0.1"
3881 | micromatch "^2.3.11"
3882 | object-assign "^4.1.0"
3883 | read-pkg-up "^1.0.1"
3884 | require-main-filename "^1.0.1"
3885 |
3886 | text-table@^0.2.0:
3887 | version "0.2.0"
3888 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
3889 |
3890 | throat@^4.0.0:
3891 | version "4.1.0"
3892 | resolved "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a"
3893 |
3894 | through@^2.3.6:
3895 | version "2.3.8"
3896 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
3897 |
3898 | tmp@^0.0.33:
3899 | version "0.0.33"
3900 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9"
3901 | dependencies:
3902 | os-tmpdir "~1.0.2"
3903 |
3904 | tmpl@1.0.x:
3905 | version "1.0.4"
3906 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1"
3907 |
3908 | to-fast-properties@^1.0.3:
3909 | version "1.0.3"
3910 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47"
3911 |
3912 | to-fast-properties@^2.0.0:
3913 | version "2.0.0"
3914 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
3915 |
3916 | to-object-path@^0.3.0:
3917 | version "0.3.0"
3918 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af"
3919 | dependencies:
3920 | kind-of "^3.0.2"
3921 |
3922 | to-regex-range@^2.1.0:
3923 | version "2.1.1"
3924 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38"
3925 | dependencies:
3926 | is-number "^3.0.0"
3927 | repeat-string "^1.6.1"
3928 |
3929 | to-regex@^3.0.1, to-regex@^3.0.2:
3930 | version "3.0.2"
3931 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce"
3932 | dependencies:
3933 | define-property "^2.0.2"
3934 | extend-shallow "^3.0.2"
3935 | regex-not "^1.0.2"
3936 | safe-regex "^1.1.0"
3937 |
3938 | tough-cookie@>=2.3.3:
3939 | version "3.0.1"
3940 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-3.0.1.tgz#9df4f57e739c26930a018184887f4adb7dca73b2"
3941 | dependencies:
3942 | ip-regex "^2.1.0"
3943 | psl "^1.1.28"
3944 | punycode "^2.1.1"
3945 |
3946 | tough-cookie@^2.3.4:
3947 | version "2.5.0"
3948 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2"
3949 | dependencies:
3950 | psl "^1.1.28"
3951 | punycode "^2.1.1"
3952 |
3953 | tough-cookie@~2.4.3:
3954 | version "2.4.3"
3955 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.4.3.tgz#53f36da3f47783b0925afa06ff9f3b165280f781"
3956 | dependencies:
3957 | psl "^1.1.24"
3958 | punycode "^1.4.1"
3959 |
3960 | tr46@^1.0.1:
3961 | version "1.0.1"
3962 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09"
3963 | dependencies:
3964 | punycode "^2.1.0"
3965 |
3966 | trim-right@^1.0.1:
3967 | version "1.0.1"
3968 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003"
3969 |
3970 | tslib@^1.9.0:
3971 | version "1.9.3"
3972 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.3.tgz#d7e4dd79245d85428c4d7e4822a79917954ca286"
3973 |
3974 | tunnel-agent@^0.6.0:
3975 | version "0.6.0"
3976 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
3977 | dependencies:
3978 | safe-buffer "^5.0.1"
3979 |
3980 | tweetnacl@^0.14.3, tweetnacl@~0.14.0:
3981 | version "0.14.5"
3982 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
3983 |
3984 | type-check@~0.3.2:
3985 | version "0.3.2"
3986 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
3987 | dependencies:
3988 | prelude-ls "~1.1.2"
3989 |
3990 | uglify-es@3.0.3:
3991 | version "3.0.3"
3992 | resolved "https://registry.yarnpkg.com/uglify-es/-/uglify-es-3.0.3.tgz#63cc84aa9468b34973a4887787c64c01a8a87576"
3993 | dependencies:
3994 | commander "~2.9.0"
3995 | source-map "~0.5.1"
3996 | optionalDependencies:
3997 | uglify-to-browserify "~1.0.0"
3998 |
3999 | uglify-js@^3.1.4:
4000 | version "3.7.5"
4001 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.7.5.tgz#278c7c24927ac5a32d3336fc68fd4ae1177a486a"
4002 | dependencies:
4003 | commander "~2.20.3"
4004 | source-map "~0.6.1"
4005 |
4006 | uglify-to-browserify@~1.0.0:
4007 | version "1.0.2"
4008 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7"
4009 |
4010 | union-value@^1.0.0:
4011 | version "1.0.0"
4012 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4"
4013 | dependencies:
4014 | arr-union "^3.1.0"
4015 | get-value "^2.0.6"
4016 | is-extendable "^0.1.1"
4017 | set-value "^0.4.3"
4018 |
4019 | unset-value@^1.0.0:
4020 | version "1.0.0"
4021 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559"
4022 | dependencies:
4023 | has-value "^0.3.1"
4024 | isobject "^3.0.0"
4025 |
4026 | uri-js@^4.2.2:
4027 | version "4.2.2"
4028 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0"
4029 | dependencies:
4030 | punycode "^2.1.0"
4031 |
4032 | urix@^0.1.0:
4033 | version "0.1.0"
4034 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72"
4035 |
4036 | use@^3.1.0:
4037 | version "3.1.1"
4038 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f"
4039 |
4040 | user-home@^1.1.1:
4041 | version "1.1.1"
4042 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190"
4043 |
4044 | util-deprecate@~1.0.1:
4045 | version "1.0.2"
4046 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
4047 |
4048 | util.promisify@^1.0.0:
4049 | version "1.0.0"
4050 | resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030"
4051 | dependencies:
4052 | define-properties "^1.1.2"
4053 | object.getownpropertydescriptors "^2.0.3"
4054 |
4055 | uuid@^3.3.2:
4056 | version "3.3.2"
4057 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131"
4058 |
4059 | v8flags@^2.1.1:
4060 | version "2.1.1"
4061 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4"
4062 | dependencies:
4063 | user-home "^1.1.1"
4064 |
4065 | validate-npm-package-license@^3.0.1:
4066 | version "3.0.4"
4067 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a"
4068 | dependencies:
4069 | spdx-correct "^3.0.0"
4070 | spdx-expression-parse "^3.0.0"
4071 |
4072 | verror@1.10.0:
4073 | version "1.10.0"
4074 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400"
4075 | dependencies:
4076 | assert-plus "^1.0.0"
4077 | core-util-is "1.0.2"
4078 | extsprintf "^1.2.0"
4079 |
4080 | vlq@^0.2.2:
4081 | version "0.2.3"
4082 | resolved "https://registry.yarnpkg.com/vlq/-/vlq-0.2.3.tgz#8f3e4328cf63b1540c0d67e1b2778386f8975b26"
4083 |
4084 | w3c-hr-time@^1.0.1:
4085 | version "1.0.1"
4086 | resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz#82ac2bff63d950ea9e3189a58a65625fedf19045"
4087 | dependencies:
4088 | browser-process-hrtime "^0.1.2"
4089 |
4090 | walker@~1.0.5:
4091 | version "1.0.7"
4092 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb"
4093 | dependencies:
4094 | makeerror "1.0.x"
4095 |
4096 | watch@~0.18.0:
4097 | version "0.18.0"
4098 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.18.0.tgz#28095476c6df7c90c963138990c0a5423eb4b986"
4099 | dependencies:
4100 | exec-sh "^0.2.0"
4101 | minimist "^1.2.0"
4102 |
4103 | webidl-conversions@^4.0.2:
4104 | version "4.0.2"
4105 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad"
4106 |
4107 | whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.3:
4108 | version "1.0.5"
4109 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0"
4110 | dependencies:
4111 | iconv-lite "0.4.24"
4112 |
4113 | whatwg-mimetype@^2.1.0, whatwg-mimetype@^2.2.0:
4114 | version "2.3.0"
4115 | resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf"
4116 |
4117 | whatwg-url@^6.4.1:
4118 | version "6.5.0"
4119 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-6.5.0.tgz#f2df02bff176fd65070df74ad5ccbb5a199965a8"
4120 | dependencies:
4121 | lodash.sortby "^4.7.0"
4122 | tr46 "^1.0.1"
4123 | webidl-conversions "^4.0.2"
4124 |
4125 | whatwg-url@^7.0.0:
4126 | version "7.0.0"
4127 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.0.0.tgz#fde926fa54a599f3adf82dff25a9f7be02dc6edd"
4128 | dependencies:
4129 | lodash.sortby "^4.7.0"
4130 | tr46 "^1.0.1"
4131 | webidl-conversions "^4.0.2"
4132 |
4133 | which-module@^2.0.0:
4134 | version "2.0.0"
4135 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
4136 |
4137 | which@^1.2.12, which@^1.2.9, which@^1.3.0:
4138 | version "1.3.1"
4139 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
4140 | dependencies:
4141 | isexe "^2.0.0"
4142 |
4143 | wide-align@^1.1.0:
4144 | version "1.1.3"
4145 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457"
4146 | dependencies:
4147 | string-width "^1.0.2 || 2"
4148 |
4149 | wordwrap@~0.0.2:
4150 | version "0.0.3"
4151 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107"
4152 |
4153 | wordwrap@~1.0.0:
4154 | version "1.0.0"
4155 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
4156 |
4157 | wrap-ansi@^2.0.0:
4158 | version "2.1.0"
4159 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85"
4160 | dependencies:
4161 | string-width "^1.0.1"
4162 | strip-ansi "^3.0.1"
4163 |
4164 | wrappy@1:
4165 | version "1.0.2"
4166 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
4167 |
4168 | write-file-atomic@^2.1.0:
4169 | version "2.4.2"
4170 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.2.tgz#a7181706dfba17855d221140a9c06e15fcdd87b9"
4171 | dependencies:
4172 | graceful-fs "^4.1.11"
4173 | imurmurhash "^0.1.4"
4174 | signal-exit "^3.0.2"
4175 |
4176 | write@^0.2.1:
4177 | version "0.2.1"
4178 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757"
4179 | dependencies:
4180 | mkdirp "^0.5.1"
4181 |
4182 | ws@^5.2.0:
4183 | version "5.2.2"
4184 | resolved "https://registry.yarnpkg.com/ws/-/ws-5.2.2.tgz#dffef14866b8e8dc9133582514d1befaf96e980f"
4185 | dependencies:
4186 | async-limiter "~1.0.0"
4187 |
4188 | xml-name-validator@^3.0.0:
4189 | version "3.0.0"
4190 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a"
4191 |
4192 | y18n@^3.2.1:
4193 | version "3.2.1"
4194 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41"
4195 |
4196 | yallist@^2.1.2:
4197 | version "2.1.2"
4198 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
4199 |
4200 | yallist@^3.0.0, yallist@^3.0.2:
4201 | version "3.0.2"
4202 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.2.tgz#8452b4bb7e83c7c188d8041c1a837c773d6d8bb9"
4203 |
4204 | yargs-parser@^9.0.2:
4205 | version "9.0.2"
4206 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-9.0.2.tgz#9ccf6a43460fe4ed40a9bb68f48d43b8a68cc077"
4207 | dependencies:
4208 | camelcase "^4.1.0"
4209 |
4210 | yargs@^11.0.0:
4211 | version "11.1.0"
4212 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-11.1.0.tgz#90b869934ed6e871115ea2ff58b03f4724ed2d77"
4213 | dependencies:
4214 | cliui "^4.0.0"
4215 | decamelize "^1.1.1"
4216 | find-up "^2.1.0"
4217 | get-caller-file "^1.0.1"
4218 | os-locale "^2.0.0"
4219 | require-directory "^2.1.1"
4220 | require-main-filename "^1.0.1"
4221 | set-blocking "^2.0.0"
4222 | string-width "^2.0.0"
4223 | which-module "^2.0.0"
4224 | y18n "^3.2.1"
4225 | yargs-parser "^9.0.2"
4226 |
--------------------------------------------------------------------------------