├── .editorconfig
├── .gitignore
├── .prettierignore
├── .prettierrc
├── LICENSE
├── README.md
├── contents
├── 1.md
├── 2.md
├── 3.md
├── 4.md
└── 5.md
├── cypress.json
├── cypress
├── fixtures
│ └── example.json
├── integration
│ └── spec.js
├── plugins
│ └── index.js
└── support
│ ├── commands.js
│ └── index.js
├── netlify.toml
├── package.json
├── rollup.config.js
├── src
├── client.js
├── components
│ ├── Breadcrumb.svelte
│ ├── Footer.svelte
│ ├── Nav.svelte
│ └── Posts.svelte
├── routes
│ ├── [page([0-9]+)].json.js
│ ├── [page([0-9]+)].svelte
│ ├── _error.svelte
│ ├── _layout.svelte
│ ├── about.svelte
│ ├── blog
│ │ ├── [slug].json.js
│ │ └── [slug].svelte
│ ├── contact.svelte
│ ├── index.json.js
│ └── index.svelte
├── server.js
├── service-worker.js
├── styles
│ └── global.scss
├── template.html
└── utils
│ └── formatter.js
├── static
├── favicon.png
├── global.css
├── logo-192.png
├── logo-512.png
├── logo.png
└── manifest.json
├── svelte.config.js
├── theme.config.js
└── yarn.lock
/.editorconfig:
--------------------------------------------------------------------------------
1 | root = true
2 |
3 | [*]
4 | end_of_line = lf
5 | insert_final_newline = true
6 | indent_style = space
7 | indent_size = 2
8 | charset = utf-8
9 | trim_trailing_whitespace = true
10 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | /node_modules/
3 | /src/node_modules/@sapper/
4 | yarn-error.log
5 | /cypress/screenshots/
6 | /__sapper__/
7 |
--------------------------------------------------------------------------------
/.prettierignore:
--------------------------------------------------------------------------------
1 | /.history/
2 | /coverage/
3 | /node_modules/
4 | **/node_modules/
5 | **/__sapper__/
6 | **/cypress/screenshots/
--------------------------------------------------------------------------------
/.prettierrc:
--------------------------------------------------------------------------------
1 | {
2 | "singleQuote": true,
3 | "endOfLine": "auto",
4 | "proseWrap": "preserve",
5 | "trailingComma": "all",
6 | "tabWidth": 2,
7 | "useTabs": false
8 | }
9 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2019 Varun A P
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Stunning Theme
2 |
3 |
4 |
5 | 
6 |
7 |
8 |
9 | Starter blog theme built on top of Sapper(Svelte).
10 |
11 | **Features:**
12 |
13 | - Ability to generate a Static site
14 | - Supports Markdown files for blog posts
15 | - Built-in pagination
16 |
17 | ## Getting started
18 |
19 | ```bash
20 | npx degit apvarun/sapper-stunning-theme stunning-theme
21 | cd stunning-theme
22 | npm install # or yarn!
23 | npm run dev # or yarn dev
24 | ```
25 |
26 | Open up [localhost:3000](http://localhost:3000) to launch the website.
27 |
28 | ## Structure
29 |
30 | _[ WIP ]_
31 |
32 | ## Deploy
33 |
34 | [](https://app.netlify.com/start/deploy?repository=https://github.com/apvarun/sapper-stunning-theme)
35 |
36 | ## Bugs and feedback
37 |
38 | Stunning theme is in development, and may have the odd rough edge here and there. Please be vocal over on the [Repository issue tracker](https://github.com/apvarun/sapper-stunning-theme/issues).
39 |
--------------------------------------------------------------------------------
/contents/1.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: "Post 1"
3 | date: "2018-12-30"
4 | excerpt: "Donut pudding chupa chups jelly beans. Apple pie soufflé dessert. Gummi bears pie pudding jujubes pudding tiramisu bear claw gummi bears. I love wafer donut."
5 | preview: https://cdn.dribbble.com/users/1818193/screenshots/9305805/card_ui_2x.jpg
6 | ---
7 |
8 | Marshmallow dessert liquorice gummies liquorice pie bonbon gingerbread. Bear claw gingerbread sesame snaps pastry I love sugar plum cake cotton candy. Jujubes gingerbread sweet roll ice cream powder I love. I love brownie I love muffin sweet I love.
9 |
10 | > Donut pudding chupa chups jelly beans. Apple pie soufflé dessert. Gummi bears pie pudding jujubes pudding tiramisu bear claw gummi bears. I love wafer donut.
11 |
12 | Sesame snaps oat cake muffin brownie brownie cheesecake. Sesame snaps I love pudding sugar plum jujubes. Candy canes biscuit I love chocolate bar cake lollipop. Tootsie roll macaroon jelly I love pastry.
--------------------------------------------------------------------------------
/contents/2.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: "Post 2"
3 | date: "2018-12-30"
4 | excerpt: "Donut pudding chupa chups jelly beans. Apple pie soufflé dessert. Gummi bears pie pudding jujubes pudding tiramisu bear claw gummi bears. I love wafer donut."
5 | preview: https://cdn.dribbble.com/users/1818193/screenshots/9305805/card_ui_2x.jpg
6 | ---
7 |
8 | Marshmallow dessert liquorice gummies liquorice pie bonbon gingerbread. Bear claw gingerbread sesame snaps pastry I love sugar plum cake cotton candy. Jujubes gingerbread sweet roll ice cream powder I love. I love brownie I love muffin sweet I love.
9 |
10 | > Donut pudding chupa chups jelly beans. Apple pie soufflé dessert. Gummi bears pie pudding jujubes pudding tiramisu bear claw gummi bears. I love wafer donut.
11 |
12 | Sesame snaps oat cake muffin brownie brownie cheesecake. Sesame snaps I love pudding sugar plum jujubes. Candy canes biscuit I love chocolate bar cake lollipop. Tootsie roll macaroon jelly I love pastry.
--------------------------------------------------------------------------------
/contents/3.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: "Post 3"
3 | date: "2018-12-30"
4 | excerpt: "Donut pudding chupa chups jelly beans. Apple pie soufflé dessert. Gummi bears pie pudding jujubes pudding tiramisu bear claw gummi bears. I love wafer donut."
5 | preview: https://cdn.dribbble.com/users/1818193/screenshots/9305805/card_ui_2x.jpg
6 | ---
7 |
8 | Marshmallow dessert liquorice gummies liquorice pie bonbon gingerbread. Bear claw gingerbread sesame snaps pastry I love sugar plum cake cotton candy. Jujubes gingerbread sweet roll ice cream powder I love. I love brownie I love muffin sweet I love.
9 |
10 | > Donut pudding chupa chups jelly beans. Apple pie soufflé dessert. Gummi bears pie pudding jujubes pudding tiramisu bear claw gummi bears. I love wafer donut.
11 |
12 | Sesame snaps oat cake muffin brownie brownie cheesecake. Sesame snaps I love pudding sugar plum jujubes. Candy canes biscuit I love chocolate bar cake lollipop. Tootsie roll macaroon jelly I love pastry.
--------------------------------------------------------------------------------
/contents/4.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: "Post 4"
3 | date: "2018-12-30"
4 | excerpt: "Donut pudding chupa chups jelly beans. Apple pie soufflé dessert. Gummi bears pie pudding jujubes pudding tiramisu bear claw gummi bears. I love wafer donut."
5 | preview: https://cdn.dribbble.com/users/1818193/screenshots/9305805/card_ui_2x.jpg
6 | ---
7 |
8 | Marshmallow dessert liquorice gummies liquorice pie bonbon gingerbread. Bear claw gingerbread sesame snaps pastry I love sugar plum cake cotton candy. Jujubes gingerbread sweet roll ice cream powder I love. I love brownie I love muffin sweet I love.
9 |
10 | > Donut pudding chupa chups jelly beans. Apple pie soufflé dessert. Gummi bears pie pudding jujubes pudding tiramisu bear claw gummi bears. I love wafer donut.
11 |
12 | Sesame snaps oat cake muffin brownie brownie cheesecake. Sesame snaps I love pudding sugar plum jujubes. Candy canes biscuit I love chocolate bar cake lollipop. Tootsie roll macaroon jelly I love pastry.
--------------------------------------------------------------------------------
/contents/5.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: "Post 5"
3 | date: "2018-12-30"
4 | excerpt: "Donut pudding chupa chups jelly beans. Apple pie soufflé dessert. Gummi bears pie pudding jujubes pudding tiramisu bear claw gummi bears. I love wafer donut."
5 | preview: https://cdn.dribbble.com/users/1818193/screenshots/9305805/card_ui_2x.jpg
6 | ---
7 |
8 | Marshmallow dessert liquorice gummies liquorice pie bonbon gingerbread. Bear claw gingerbread sesame snaps pastry I love sugar plum cake cotton candy. Jujubes gingerbread sweet roll ice cream powder I love. I love brownie I love muffin sweet I love.
9 |
10 | > Donut pudding chupa chups jelly beans. Apple pie soufflé dessert. Gummi bears pie pudding jujubes pudding tiramisu bear claw gummi bears. I love wafer donut.
11 |
12 | Sesame snaps oat cake muffin brownie brownie cheesecake. Sesame snaps I love pudding sugar plum jujubes. Candy canes biscuit I love chocolate bar cake lollipop. Tootsie roll macaroon jelly I love pastry.
--------------------------------------------------------------------------------
/cypress.json:
--------------------------------------------------------------------------------
1 | {
2 | "baseUrl": "http://localhost:3000",
3 | "video": false
4 | }
--------------------------------------------------------------------------------
/cypress/fixtures/example.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "Using fixtures to represent data",
3 | "email": "hello@cypress.io",
4 | "body": "Fixtures are a great way to mock data for responses to routes"
5 | }
--------------------------------------------------------------------------------
/cypress/integration/spec.js:
--------------------------------------------------------------------------------
1 | describe('Sapper template app', () => {
2 | beforeEach(() => {
3 | cy.visit('/')
4 | });
5 |
6 | it('has the correct ', () => {
7 | cy.contains('h1', 'Great success!')
8 | });
9 |
10 | it('navigates to /about', () => {
11 | cy.get('nav a').contains('about').click();
12 | cy.url().should('include', '/about');
13 | });
14 |
15 | it('navigates to /blog', () => {
16 | cy.get('nav a').contains('blog').click();
17 | cy.url().should('include', '/blog');
18 | });
19 | });
--------------------------------------------------------------------------------
/cypress/plugins/index.js:
--------------------------------------------------------------------------------
1 | // ***********************************************************
2 | // This example plugins/index.js can be used to load plugins
3 | //
4 | // You can change the location of this file or turn off loading
5 | // the plugins file with the 'pluginsFile' configuration option.
6 | //
7 | // You can read more here:
8 | // https://on.cypress.io/plugins-guide
9 | // ***********************************************************
10 |
11 | // This function is called when a project is opened or re-opened (e.g. due to
12 | // the project's config changing)
13 |
14 | module.exports = (on, config) => {
15 | // `on` is used to hook into various events Cypress emits
16 | // `config` is the resolved Cypress config
17 | }
18 |
--------------------------------------------------------------------------------
/cypress/support/commands.js:
--------------------------------------------------------------------------------
1 | // ***********************************************
2 | // This example commands.js shows you how to
3 | // create various custom commands and overwrite
4 | // existing commands.
5 | //
6 | // For more comprehensive examples of custom
7 | // commands please read more here:
8 | // https://on.cypress.io/custom-commands
9 | // ***********************************************
10 | //
11 | //
12 | // -- This is a parent command --
13 | // Cypress.Commands.add("login", (email, password) => { ... })
14 | //
15 | //
16 | // -- This is a child command --
17 | // Cypress.Commands.add("drag", { prevSubject: 'element'}, (subject, options) => { ... })
18 | //
19 | //
20 | // -- This is a dual command --
21 | // Cypress.Commands.add("dismiss", { prevSubject: 'optional'}, (subject, options) => { ... })
22 | //
23 | //
24 | // -- This is will overwrite an existing command --
25 | // Cypress.Commands.overwrite("visit", (originalFn, url, options) => { ... })
26 |
--------------------------------------------------------------------------------
/cypress/support/index.js:
--------------------------------------------------------------------------------
1 | // ***********************************************************
2 | // This example support/index.js is processed and
3 | // loaded automatically before your test files.
4 | //
5 | // This is a great place to put global configuration and
6 | // behavior that modifies Cypress.
7 | //
8 | // You can change the location of this file or turn off
9 | // automatically serving support files with the
10 | // 'supportFile' configuration option.
11 | //
12 | // You can read more here:
13 | // https://on.cypress.io/configuration
14 | // ***********************************************************
15 |
16 | // Import commands.js using ES2015 syntax:
17 | import './commands'
18 |
19 | // Alternatively you can use CommonJS syntax:
20 | // require('./commands')
21 |
--------------------------------------------------------------------------------
/netlify.toml:
--------------------------------------------------------------------------------
1 | [build]
2 | publish = "__sapper__/export"
3 | command = "yarn export"
4 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "stunning-theme",
3 | "description": "Static Site/Blog built with Sapper with Markdown as content source",
4 | "version": "0.0.1",
5 | "license": "MIT",
6 | "scripts": {
7 | "dev": "sapper dev",
8 | "build": "sapper build --legacy",
9 | "export": "sapper export --legacy",
10 | "start": "node __sapper__/build",
11 | "cy:run": "cypress run",
12 | "cy:open": "cypress open",
13 | "test": "run-p --race dev cy:run",
14 | "prettify": "prettier --config ./.prettierrc --ignore-path ./.prettierignore --check **/*.{js,svelte,html}",
15 | "prettify:fix": "prettier --config ./.prettierrc --ignore-path ./.prettierignore --write **/*.{js,svelte,html}"
16 | },
17 | "dependencies": {
18 | "compression": "^1.7.1",
19 | "gatsby-source-rss-feed": "^1.1.1",
20 | "polka": "next",
21 | "reading-time": "^1.2.0",
22 | "sapper-sources": "^0.0.2",
23 | "sirv": "^0.4.0"
24 | },
25 | "devDependencies": {
26 | "@babel/core": "^7.0.0",
27 | "@babel/plugin-syntax-dynamic-import": "^7.0.0",
28 | "@babel/plugin-transform-runtime": "^7.0.0",
29 | "@babel/preset-env": "^7.0.0",
30 | "@babel/runtime": "^7.0.0",
31 | "@rollup/plugin-commonjs": "^11.0.0",
32 | "@rollup/plugin-json": "^4.0.1",
33 | "@rollup/plugin-node-resolve": "^7.0.0",
34 | "@rollup/plugin-replace": "^2.2.0",
35 | "husky": "^4.0.3",
36 | "npm-run-all": "^4.1.5",
37 | "prettier": "^1.19.1",
38 | "prettier-plugin-svelte": "^0.7.0",
39 | "rollup": "^1.20.0",
40 | "rollup-plugin-babel": "^4.0.2",
41 | "rollup-plugin-sass": "^1.2.2",
42 | "rollup-plugin-svelte": "^5.0.1",
43 | "rollup-plugin-terser": "^5.1.3",
44 | "sapper": "^0.27.11",
45 | "sass": "^1.24.3",
46 | "svelte": "^3.49.0",
47 | "svelte-preprocess": "^3.3.0"
48 | },
49 | "husky": {
50 | "hooks": {
51 | "pre-commit": "pretty-quick --staged --pattern **/*.{js,svelte,css,html}"
52 | }
53 | }
54 | }
55 |
--------------------------------------------------------------------------------
/rollup.config.js:
--------------------------------------------------------------------------------
1 | import resolve from "@rollup/plugin-node-resolve";
2 | import replace from "@rollup/plugin-replace";
3 | import commonjs from "@rollup/plugin-commonjs";
4 | import svelte from "rollup-plugin-svelte";
5 | import babel from "rollup-plugin-babel";
6 | import { terser } from "rollup-plugin-terser";
7 | import sveltePreprocess from "svelte-preprocess";
8 | import sass from "rollup-plugin-sass";
9 | import json from '@rollup/plugin-json';
10 | import config from "sapper/config/rollup.js";
11 | import pkg from "./package.json";
12 |
13 | const mode = process.env.NODE_ENV;
14 | const dev = mode === "development";
15 | const legacy = !!process.env.SAPPER_LEGACY_BUILD;
16 |
17 | const onwarn = (warning, onwarn) =>
18 | (warning.code === "CIRCULAR_DEPENDENCY" &&
19 | /[/\\]@sapper[/\\]/.test(warning.message)) ||
20 | onwarn(warning);
21 | const dedupe = importee =>
22 | importee === "svelte" || importee.startsWith("svelte/");
23 |
24 | const preprocess = sveltePreprocess({
25 | scss: true
26 | });
27 |
28 | export default {
29 | client: {
30 | input: config.client.input(),
31 | output: config.client.output(),
32 | plugins: [
33 | json(),
34 | replace({
35 | "process.browser": true,
36 | "process.env.NODE_ENV": JSON.stringify(mode)
37 | }),
38 | sass({
39 | // update includePaths to what suits.
40 | // node_modules is probably only necessary if you need to import from a css library
41 | includePaths: ["./src/styles"],
42 | output: "static/global.css"
43 | }),
44 | svelte({
45 | dev,
46 | hydratable: true,
47 | emitCss: true,
48 | preprocess
49 | }),
50 | resolve({
51 | browser: true,
52 | dedupe
53 | }),
54 | commonjs(),
55 |
56 | legacy &&
57 | babel({
58 | extensions: [".js", ".mjs", ".html", ".svelte"],
59 | runtimeHelpers: true,
60 | exclude: ["node_modules/@babel/**"],
61 | presets: [
62 | [
63 | "@babel/preset-env",
64 | {
65 | targets: "> 0.25%, not dead"
66 | }
67 | ]
68 | ],
69 | plugins: [
70 | "@babel/plugin-syntax-dynamic-import",
71 | [
72 | "@babel/plugin-transform-runtime",
73 | {
74 | useESModules: true
75 | }
76 | ]
77 | ]
78 | }),
79 |
80 | !dev &&
81 | terser({
82 | module: true
83 | })
84 | ],
85 |
86 | onwarn
87 | },
88 |
89 | server: {
90 | input: config.server.input(),
91 | output: config.server.output(),
92 | plugins: [
93 | replace({
94 | "process.browser": false,
95 | "process.env.NODE_ENV": JSON.stringify(mode)
96 | }),
97 | svelte({
98 | generate: "ssr",
99 | dev,
100 | preprocess
101 | }),
102 | resolve({
103 | dedupe
104 | }),
105 | commonjs()
106 | ],
107 | external: Object.keys(pkg.dependencies).concat(
108 | require("module").builtinModules ||
109 | Object.keys(process.binding("natives"))
110 | ),
111 |
112 | onwarn
113 | },
114 |
115 | serviceworker: {
116 | input: config.serviceworker.input(),
117 | output: config.serviceworker.output(),
118 | plugins: [
119 | resolve(),
120 | replace({
121 | "process.browser": true,
122 | "process.env.NODE_ENV": JSON.stringify(mode)
123 | }),
124 | commonjs(),
125 | !dev && terser()
126 | ],
127 |
128 | onwarn
129 | }
130 | };
131 |
--------------------------------------------------------------------------------
/src/client.js:
--------------------------------------------------------------------------------
1 | import * as sapper from '@sapper/app';
2 | import './styles/global.scss';
3 |
4 | sapper.start({
5 | target: document.querySelector('#sapper'),
6 | });
7 |
--------------------------------------------------------------------------------
/src/components/Breadcrumb.svelte:
--------------------------------------------------------------------------------
1 |
8 |
9 |
34 |
35 |
47 |
--------------------------------------------------------------------------------
/src/components/Footer.svelte:
--------------------------------------------------------------------------------
1 |
10 |
11 |
15 |
--------------------------------------------------------------------------------
/src/components/Nav.svelte:
--------------------------------------------------------------------------------
1 |
4 |
5 |
58 |
59 |
78 |
--------------------------------------------------------------------------------
/src/components/Posts.svelte:
--------------------------------------------------------------------------------
1 |
7 |
8 |
61 |
62 |
73 |
--------------------------------------------------------------------------------
/src/routes/[page([0-9]+)].json.js:
--------------------------------------------------------------------------------
1 | import config from '../../theme.config.js';
2 | import formatter from '../utils/formatter';
3 |
4 | export async function get(req, res, next) {
5 | const { page } = req.params;
6 |
7 | const source = await config.source;
8 | const response = formatter(
9 | source.contents,
10 | source.postsPerPage,
11 | ).getPostsByPage(page, config.postsPerPage);
12 |
13 | if (response !== null) {
14 | res.setHeader('Content-Type', 'application/json');
15 | res.end(JSON.stringify(response));
16 | } else {
17 | next();
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/src/routes/[page([0-9]+)].svelte:
--------------------------------------------------------------------------------
1 |
14 |
15 |
24 |
25 |
28 |
29 |
30 | Stunning Theme - Page {page}
31 |
32 |
33 |
34 |
35 |
36 |
--------------------------------------------------------------------------------
/src/routes/_error.svelte:
--------------------------------------------------------------------------------
1 |
7 |
8 |
37 |
38 |
39 | {status}
40 |
41 |
42 |
43 |
{status}
44 |
45 |
{error.message}
46 |
47 | {#if dev && error.stack}
48 |
{error.stack}
49 | {/if}
50 |
51 |
--------------------------------------------------------------------------------
/src/routes/_layout.svelte:
--------------------------------------------------------------------------------
1 |
7 |
8 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
--------------------------------------------------------------------------------
/src/routes/about.svelte:
--------------------------------------------------------------------------------
1 |
12 |
13 |
14 | About
15 |
16 |
17 |
18 |
About Page
19 |
20 |
21 | Pudding chocolate wafer I love donut. Candy canes gingerbread cake. Cotton
22 | candy cake cotton candy sweet roll. Tootsie roll gummies chupa chups bear
23 | claw. I love bear claw ice cream sugar plum sugar plum toffee sugar plum
24 | cookie. Liquorice cupcake jelly-o dragée sesame snaps sesame snaps. Icing
25 | danish jelly beans pie.
26 |
27 |
28 |
29 | Sugar plum tart pie apple pie sweet roll chupa chups I love. Brownie
30 | caramels lollipop topping liquorice. Chocolate wafer I love cookie ice cream
31 | cake jujubes. Dragée dragée cake sweet jujubes dessert jelly. Ice cream
32 | donut marshmallow bear claw candy liquorice tootsie roll. Chupa chups jelly
33 | danish caramels macaroon. Gingerbread muffin biscuit. Ice cream caramels
34 | jelly beans liquorice apple pie liquorice pastry I love.
35 |
36 |
37 |
38 | Powder biscuit I love brownie. I love jelly-o macaroon I love cupcake bear
39 | claw halvah croissant. Halvah fruitcake I love biscuit caramels candy I love
40 | liquorice toffee. Halvah topping sugar plum brownie lemon drops chocolate
41 | cake halvah jujubes I love. Sugar plum brownie marshmallow carrot cake candy
42 | canes I love gummi bears I love toffee. Brownie halvah chocolate I love
43 | jelly-o fruitcake danish candy canes cake. Biscuit croissant I love carrot
44 | cake cotton candy caramels. Chocolate toffee jelly-o donut cookie jujubes
45 | marshmallow jujubes. Caramels cotton candy candy canes apple pie I love.
46 | Cheesecake candy canes I love fruitcake pudding macaroon biscuit.
47 |
48 |
49 |
--------------------------------------------------------------------------------
/src/routes/blog/[slug].json.js:
--------------------------------------------------------------------------------
1 | import config from '../../../theme.config';
2 | import formatter from '../../utils/formatter';
3 |
4 | export async function get(req, res, next) {
5 | const { slug } = req.params;
6 |
7 | const source = await config.source;
8 | const post = formatter(source.contents, source.postsPerPage).getPost(slug);
9 |
10 | if (post) {
11 | res.writeHead(200, {
12 | 'Content-Type': 'application/json',
13 | });
14 |
15 | res.end(JSON.stringify(post));
16 | } else {
17 | res.writeHead(404, {
18 | 'Content-Type': 'application/json',
19 | });
20 |
21 | res.end(
22 | JSON.stringify({
23 | message: `Not found`,
24 | }),
25 | );
26 | }
27 | }
28 |
--------------------------------------------------------------------------------
/src/routes/blog/[slug].svelte:
--------------------------------------------------------------------------------
1 |
13 |
14 |
23 |
24 |
82 |
83 |
84 | {post.frontmatter.title}
85 |
86 |
87 |
88 |
{post.frontmatter.title}
89 |
90 | {new Date(post.frontmatter.date).toDateString()} ﹒ {readingTime}
91 |
92 |

93 |
94 |
95 | {@html post.contentHtml}
96 |
97 |
98 |
--------------------------------------------------------------------------------
/src/routes/contact.svelte:
--------------------------------------------------------------------------------
1 |
41 |
42 |
43 | Contact
44 |
45 |
46 |
47 |
Contact Page
48 |
49 |
72 |
73 |
--------------------------------------------------------------------------------
/src/routes/index.json.js:
--------------------------------------------------------------------------------
1 | import config from '../../theme.config.js';
2 |
3 | export async function get(req, res, next) {
4 | const source = await config.source;
5 | const posts = source.contents;
6 |
7 | if (posts !== null) {
8 | const response = {
9 | postsPerPage: source.postsPerPage,
10 | posts,
11 | };
12 |
13 | res.setHeader('Content-Type', 'application/json');
14 | res.end(JSON.stringify(response));
15 | } else {
16 | next();
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/src/routes/index.svelte:
--------------------------------------------------------------------------------
1 |
9 |
10 |
17 |
18 |
39 |
40 |
41 | Stunning Theme
42 |
43 |
44 |
45 |
Stunning Sapper Blog theme with support for markdown files
46 |
Start Publishing With Sapper
47 |
48 |
49 |
50 |
51 | posts.length} page="1" />
52 |
--------------------------------------------------------------------------------
/src/server.js:
--------------------------------------------------------------------------------
1 | import sirv from 'sirv';
2 | import polka from 'polka';
3 | import compression from 'compression';
4 | import * as sapper from '@sapper/server';
5 |
6 | const { PORT, NODE_ENV } = process.env;
7 | const dev = NODE_ENV === 'development';
8 |
9 | polka() // You can also use Express
10 | .use(
11 | compression({ threshold: 0 }),
12 | sirv('static', { dev }),
13 | sapper.middleware(),
14 | )
15 | .listen(PORT, err => {
16 | if (err) console.log('error', err);
17 | });
18 |
--------------------------------------------------------------------------------
/src/service-worker.js:
--------------------------------------------------------------------------------
1 | import { timestamp, files, shell, routes } from '@sapper/service-worker';
2 |
3 | const ASSETS = `cache${timestamp}`;
4 |
5 | // `shell` is an array of all the files generated by the bundler,
6 | // `files` is an array of everything in the `static` directory
7 | const to_cache = shell.concat(files);
8 | const cached = new Set(to_cache);
9 |
10 | self.addEventListener('install', event => {
11 | event.waitUntil(
12 | caches
13 | .open(ASSETS)
14 | .then(cache => cache.addAll(to_cache))
15 | .then(() => {
16 | self.skipWaiting();
17 | }),
18 | );
19 | });
20 |
21 | self.addEventListener('activate', event => {
22 | event.waitUntil(
23 | caches.keys().then(async keys => {
24 | // delete old caches
25 | for (const key of keys) {
26 | if (key !== ASSETS) await caches.delete(key);
27 | }
28 |
29 | self.clients.claim();
30 | }),
31 | );
32 | });
33 |
34 | self.addEventListener('fetch', event => {
35 | if (event.request.method !== 'GET' || event.request.headers.has('range'))
36 | return;
37 |
38 | const url = new URL(event.request.url);
39 |
40 | // don't try to handle e.g. data: URIs
41 | if (!url.protocol.startsWith('http')) return;
42 |
43 | // ignore dev server requests
44 | if (
45 | url.hostname === self.location.hostname &&
46 | url.port !== self.location.port
47 | )
48 | return;
49 |
50 | // always serve static files and bundler-generated assets from cache
51 | if (url.host === self.location.host && cached.has(url.pathname)) {
52 | event.respondWith(caches.match(event.request));
53 | return;
54 | }
55 |
56 | // for pages, you might want to serve a shell `service-worker-index.html` file,
57 | // which Sapper has generated for you. It's not right for every
58 | // app, but if it's right for yours then uncomment this section
59 | /*
60 | if (url.origin === self.origin && routes.find(route => route.pattern.test(url.pathname))) {
61 | event.respondWith(caches.match('/service-worker-index.html'));
62 | return;
63 | }
64 | */
65 |
66 | if (event.request.cache === 'only-if-cached') return;
67 |
68 | // for everything else, try the network first, falling back to
69 | // cache if the user is offline. (If the pages never change, you
70 | // might prefer a cache-first approach to a network-first one.)
71 | event.respondWith(
72 | caches.open(`offline${timestamp}`).then(async cache => {
73 | try {
74 | const response = await fetch(event.request);
75 | cache.put(event.request, response.clone());
76 | return response;
77 | } catch (err) {
78 | const response = await cache.match(event.request);
79 | if (response) return response;
80 |
81 | throw err;
82 | }
83 | }),
84 | );
85 | });
86 |
--------------------------------------------------------------------------------
/src/styles/global.scss:
--------------------------------------------------------------------------------
1 | body {
2 | margin: 0;
3 | font-family: Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
4 | font-size: 14px;
5 | line-height: 1.5;
6 | color: #333;
7 | }
8 |
9 | h1, h2, h3, h4, h5, h6 {
10 | margin: 0 0 0.5em 0;
11 | font-weight: 400;
12 | line-height: 1.2;
13 | }
14 |
15 | h1 {
16 | font-size: 2em;
17 | }
18 |
19 | a {
20 | color: inherit;
21 | }
22 |
23 | code {
24 | font-family: menlo, inconsolata, monospace;
25 | font-size: calc(1em - 2px);
26 | color: #555;
27 | background-color: #f0f0f0;
28 | padding: 0.2em 0.4em;
29 | border-radius: 2px;
30 | }
31 |
32 | p {
33 | margin: 1em auto;
34 | }
35 |
36 | @media (min-width: 400px) {
37 | body {
38 | font-size: 16px;
39 | }
40 | }
41 |
--------------------------------------------------------------------------------
/src/template.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 | %sapper.base%
9 |
10 |
11 |
12 |
13 |
14 |
17 | %sapper.styles%
18 |
19 |
21 | %sapper.head%
22 |
23 |
24 |
26 | %sapper.html%
27 |
28 |
31 | %sapper.scripts%
32 |
33 |
34 |
--------------------------------------------------------------------------------
/src/utils/formatter.js:
--------------------------------------------------------------------------------
1 | const formatter = (contents, postsPerPage) => ({
2 | getPosts: () => contents,
3 | getPostsByPage: page => ({
4 | posts: contents.slice(
5 | (page - 1) * postsPerPage,
6 | (page - 1) * postsPerPage + postsPerPage,
7 | ),
8 | isFirst: page === 1,
9 | isLast: contents.length < (page - 1) * postsPerPage + postsPerPage,
10 | }),
11 | getPost: slug => contents.find(post => post.slug === slug),
12 | postCount: contents.length,
13 | });
14 |
15 | export default formatter;
16 |
--------------------------------------------------------------------------------
/static/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/apvarun/sapper-stunning-theme/561dc3b24afefd980d78094d4bbc9c6733d0271d/static/favicon.png
--------------------------------------------------------------------------------
/static/global.css:
--------------------------------------------------------------------------------
1 | body {
2 | margin: 0;
3 | font-family: Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
4 | font-size: 14px;
5 | line-height: 1.5;
6 | color: #333;
7 | }
8 |
9 | h1, h2, h3, h4, h5, h6 {
10 | margin: 0 0 0.5em 0;
11 | font-weight: 400;
12 | line-height: 1.2;
13 | }
14 |
15 | h1 {
16 | font-size: 2em;
17 | }
18 |
19 | a {
20 | color: inherit;
21 | }
22 |
23 | code {
24 | font-family: menlo, inconsolata, monospace;
25 | font-size: calc(1em - 2px);
26 | color: #555;
27 | background-color: #f0f0f0;
28 | padding: 0.2em 0.4em;
29 | border-radius: 2px;
30 | }
31 |
32 | p {
33 | margin: 1em auto;
34 | }
35 |
36 | @media (min-width: 400px) {
37 | body {
38 | font-size: 16px;
39 | }
40 | }
--------------------------------------------------------------------------------
/static/logo-192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/apvarun/sapper-stunning-theme/561dc3b24afefd980d78094d4bbc9c6733d0271d/static/logo-192.png
--------------------------------------------------------------------------------
/static/logo-512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/apvarun/sapper-stunning-theme/561dc3b24afefd980d78094d4bbc9c6733d0271d/static/logo-512.png
--------------------------------------------------------------------------------
/static/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/apvarun/sapper-stunning-theme/561dc3b24afefd980d78094d4bbc9c6733d0271d/static/logo.png
--------------------------------------------------------------------------------
/static/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "background_color": "#ffffff",
3 | "theme_color": "#333333",
4 | "name": "Stunning Theme",
5 | "short_name": "stunning-theme",
6 | "display": "minimal-ui",
7 | "start_url": "/",
8 | "icons": [
9 | {
10 | "src": "logo-192.png",
11 | "sizes": "192x192",
12 | "type": "image/png"
13 | },
14 | {
15 | "src": "logo-512.png",
16 | "sizes": "512x512",
17 | "type": "image/png"
18 | }
19 | ]
20 | }
21 |
--------------------------------------------------------------------------------
/svelte.config.js:
--------------------------------------------------------------------------------
1 | // svelte.config.js
2 | const sveltePreprocess = require('svelte-preprocess');
3 |
4 | module.exports = {
5 | preprocess: sveltePreprocess({
6 | // ...svelte-preprocess options
7 | }),
8 | // ...other svelte options
9 | };
--------------------------------------------------------------------------------
/theme.config.js:
--------------------------------------------------------------------------------
1 | import sapperSource, { gatsbyPlugin, markdownSource } from 'sapper-sources';
2 |
3 | export default {
4 | source: sapperSource({
5 | plugin: markdownSource,
6 | // plugin: gatsbyPlugin('gatsby-source-rss-feed'),
7 | options: {
8 | postsPerPage: 4, // Used in svelte template
9 | contentPath: '/contents/'
10 | },
11 | }),
12 | };
13 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.5.5", "@babel/code-frame@^7.8.0":
6 | version "7.8.0"
7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.8.0.tgz#8c98d4ac29d6f80f28127b1bc50970a72086c5ac"
8 | integrity sha512-AN2IR/wCUYsM+PdErq6Bp3RFTXl8W0p9Nmymm7zkpsCmh+r/YYcckaCGpU8Q/mEKmST19kkGRaG42A/jxOWwBA==
9 | dependencies:
10 | "@babel/highlight" "^7.8.0"
11 |
12 | "@babel/compat-data@^7.8.0":
13 | version "7.8.0"
14 | resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.8.0.tgz#1d3a9fbda3c58774395cd617d263a196dfa45d92"
15 | integrity sha512-ixPUWJpnd9hHvRkyIE3mJ6PY5DEWmR08UkcpdqI5kV5g/d6knT8Wth1LE5v5sVTIJkm9dGpQsXnhwxcf2/PjAg==
16 | dependencies:
17 | browserslist "^4.8.2"
18 | invariant "^2.2.4"
19 | semver "^7.1.1"
20 |
21 | "@babel/core@^7.0.0":
22 | version "7.8.0"
23 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.8.0.tgz#fd273d4faf69cc20ee3ccfd32d42df916bb4a15c"
24 | integrity sha512-3rqPi/bv/Xfu2YzHvBz4XqMI1fKVwnhntPA1/fjoECrSjrhbOCxlTrbVu5gUtr8zkxW+RpkDOa/HCW93gzS2Dw==
25 | dependencies:
26 | "@babel/code-frame" "^7.8.0"
27 | "@babel/generator" "^7.8.0"
28 | "@babel/helpers" "^7.8.0"
29 | "@babel/parser" "^7.8.0"
30 | "@babel/template" "^7.8.0"
31 | "@babel/traverse" "^7.8.0"
32 | "@babel/types" "^7.8.0"
33 | convert-source-map "^1.7.0"
34 | debug "^4.1.0"
35 | gensync "^1.0.0-beta.1"
36 | json5 "^2.1.0"
37 | lodash "^4.17.13"
38 | resolve "^1.3.2"
39 | semver "^5.4.1"
40 | source-map "^0.5.0"
41 |
42 | "@babel/generator@^7.8.0":
43 | version "7.8.0"
44 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.8.0.tgz#40a1244677be58ffdc5cd01e22634cd1d5b29edf"
45 | integrity sha512-2Lp2e02CV2C7j/H4n4D9YvsvdhPVVg9GDIamr6Tu4tU35mL3mzOrzl1lZ8ZJtysfZXh+y+AGORc2rPS7yHxBUg==
46 | dependencies:
47 | "@babel/types" "^7.8.0"
48 | jsesc "^2.5.1"
49 | lodash "^4.17.13"
50 | source-map "^0.5.0"
51 |
52 | "@babel/helper-annotate-as-pure@^7.8.0":
53 | version "7.8.0"
54 | resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.8.0.tgz#334ae2cb801e2381509631a5caa1ac6ab1c5016a"
55 | integrity sha512-WWj+1amBdowU2g18p3/KUc1Y5kWnaNm1paohq2tT4/RreeMNssYkv6ul9wkE2iIqjwLBwNMZGH4pTGlMSUqMMg==
56 | dependencies:
57 | "@babel/types" "^7.8.0"
58 |
59 | "@babel/helper-builder-binary-assignment-operator-visitor@^7.8.0":
60 | version "7.8.0"
61 | resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.8.0.tgz#c2237beb110f64f592dddcabef1098e9d766ef88"
62 | integrity sha512-KbBloNiBHM3ZyHg1ViDRs4QcnAunwMJ+rLpAEA8l3cWb3Z1xof7ag1iHvX16EwhUfaTG3+YSvTRPv4xHIrseUQ==
63 | dependencies:
64 | "@babel/helper-explode-assignable-expression" "^7.8.0"
65 | "@babel/types" "^7.8.0"
66 |
67 | "@babel/helper-call-delegate@^7.8.0":
68 | version "7.8.0"
69 | resolved "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.8.0.tgz#1cd725c5444be0ce59dbfa47b6ac5e9772168c67"
70 | integrity sha512-Vi8K1LScr8ZgLicfuCNSE7JWUPG/H/9Bw9zn+3vQyy4vA54FEGTCuUTOXCFwmBM93OD6jHfjrQ6ZnivM5U+bHg==
71 | dependencies:
72 | "@babel/helper-hoist-variables" "^7.8.0"
73 | "@babel/traverse" "^7.8.0"
74 | "@babel/types" "^7.8.0"
75 |
76 | "@babel/helper-compilation-targets@^7.8.0":
77 | version "7.8.0"
78 | resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.8.0.tgz#63d3924bc04b68b2d24d25b8cc452ee86dcb3a59"
79 | integrity sha512-VcMSwBCqA2mGqmFFnLYtaC+Zkok5pVMOypeGn76RpSBAoFqc1olWjYoNqTn09YMChTi6rsbPIkkEOAwfsKSqRg==
80 | dependencies:
81 | "@babel/compat-data" "^7.8.0"
82 | browserslist "^4.8.2"
83 | invariant "^2.2.4"
84 | levenary "^1.1.0"
85 | semver "^7.1.1"
86 |
87 | "@babel/helper-create-regexp-features-plugin@^7.8.0":
88 | version "7.8.0"
89 | resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.8.0.tgz#ae551572b840189a7b94e39eddc1a68d355974eb"
90 | integrity sha512-vJj2hPbxxLUWJEV86iZiac5curAnC3ZVc+rFmFeWZigUOcuCPpbF+KxoEmxrkmuCGylHFF9t4lkpcDUcxnhQ5g==
91 | dependencies:
92 | "@babel/helper-regex" "^7.8.0"
93 | regexpu-core "^4.6.0"
94 |
95 | "@babel/helper-define-map@^7.8.0":
96 | version "7.8.0"
97 | resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.8.0.tgz#d3180691fa189fc147d411deaa029305c1470dfe"
98 | integrity sha512-Go06lUlZ4YImNEmdyAH5iO38yh5mbpOPSwA2PtV1vyczFhTZfX0OtzkiIL2pACo6AOYf89pLh42nhhDrqgzC3A==
99 | dependencies:
100 | "@babel/helper-function-name" "^7.8.0"
101 | "@babel/types" "^7.8.0"
102 | lodash "^4.17.13"
103 |
104 | "@babel/helper-explode-assignable-expression@^7.8.0":
105 | version "7.8.0"
106 | resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.8.0.tgz#a2ded9298a5dc9df0a8ec65ac12e4745f9af2882"
107 | integrity sha512-w4mRQqKAh4M7BSLwvDMm8jYFroEzpqMCtXDhFHP+kNjMIQWpbC6b0Q/RUQsJNSf54rIx6XMdci1Stf60DWw+og==
108 | dependencies:
109 | "@babel/traverse" "^7.8.0"
110 | "@babel/types" "^7.8.0"
111 |
112 | "@babel/helper-function-name@^7.8.0":
113 | version "7.8.0"
114 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.8.0.tgz#dde5cf0d6b15c21817a67dd66fe7350348e023bf"
115 | integrity sha512-x9psucuU0Xalw+0Vpr2FYJMLB7/KnPSLZhlkUyOGbYAWRDfmtZBrguYpJYiaNCRV7vGkYjO/gF6/J6yMvdWTDw==
116 | dependencies:
117 | "@babel/helper-get-function-arity" "^7.8.0"
118 | "@babel/template" "^7.8.0"
119 | "@babel/types" "^7.8.0"
120 |
121 | "@babel/helper-get-function-arity@^7.8.0":
122 | version "7.8.0"
123 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.8.0.tgz#90977f61d76d2225d1ae0208def7df22ea92792e"
124 | integrity sha512-eUP5grliToMapQiTaYS2AAO/WwaCG7cuJztR1v/a1aPzUzUeGt+AaI9OvLATc/AfFkF8SLJ10d5ugGt/AQ9d6w==
125 | dependencies:
126 | "@babel/types" "^7.8.0"
127 |
128 | "@babel/helper-hoist-variables@^7.8.0":
129 | version "7.8.0"
130 | resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.8.0.tgz#693586b56487e60fff9d9c7074f4a86e1a8af348"
131 | integrity sha512-jDl66KvuklTXUADcoXDMur1jDtAZUZZkzLIaQ54+z38ih8C0V0hC56hMaoVoyoxN60MwQmmrHctBwcLqP0c/Lw==
132 | dependencies:
133 | "@babel/types" "^7.8.0"
134 |
135 | "@babel/helper-member-expression-to-functions@^7.8.0":
136 | version "7.8.0"
137 | resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.8.0.tgz#50d0ed445d2da11beb60e2dbc2c428254bd5a4ae"
138 | integrity sha512-0m1QabGrdXuoxX/g+KOAGndoHwskC70WweqHRQyCsaO67KOEELYh4ECcGw6ZGKjDKa5Y7SW4Qbhw6ly4Fah/jQ==
139 | dependencies:
140 | "@babel/types" "^7.8.0"
141 |
142 | "@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.8.0":
143 | version "7.8.0"
144 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.8.0.tgz#076edda55d8cd39c099981b785ce53f4303b967e"
145 | integrity sha512-ylY9J6ZxEcjmJaJ4P6aVs/fZdrZVctCGnxxfYXwCnSMapqd544zT8lWK2qI/vBPjE5gS0o2jILnH+AkpsPauEQ==
146 | dependencies:
147 | "@babel/types" "^7.8.0"
148 |
149 | "@babel/helper-module-transforms@^7.8.0":
150 | version "7.8.0"
151 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.8.0.tgz#a3cbe4ac91b101c4b6db278af0c868fe7091ebae"
152 | integrity sha512-fvGhX4FY7YwRdWW/zfddNaKpYl8TaA8hvwONIYhv1/a1ZbgxbTrjsmH6IGWUgUNki7QzbpZ27OEh88sZdft3YA==
153 | dependencies:
154 | "@babel/helper-module-imports" "^7.8.0"
155 | "@babel/helper-simple-access" "^7.8.0"
156 | "@babel/helper-split-export-declaration" "^7.8.0"
157 | "@babel/template" "^7.8.0"
158 | "@babel/types" "^7.8.0"
159 | lodash "^4.17.13"
160 |
161 | "@babel/helper-optimise-call-expression@^7.8.0":
162 | version "7.8.0"
163 | resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.8.0.tgz#3df62773cf210db9ed34c2bb39fece5acd1e1733"
164 | integrity sha512-aiJt1m+K57y0n10fTw+QXcCXzmpkG+o+NoQmAZqlZPstkTE0PZT+Z27QSd/6Gf00nuXJQO4NiJ0/YagSW5kC2A==
165 | dependencies:
166 | "@babel/types" "^7.8.0"
167 |
168 | "@babel/helper-plugin-utils@^7.8.0":
169 | version "7.8.0"
170 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.0.tgz#59ec882d43c21c544ccb51decaecb306b34a8231"
171 | integrity sha512-+hAlRGdf8fHQAyNnDBqTHQhwdLURLdrCROoWaEQYiQhk2sV9Rhs+GoFZZfMJExTq9HG8o2NX3uN2G90bFtmFdA==
172 |
173 | "@babel/helper-regex@^7.8.0":
174 | version "7.8.0"
175 | resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.8.0.tgz#dde1d2d2070e292c19a8702075e945923aa1678b"
176 | integrity sha512-haD8fRsPtyFZkbtxBIaGBBHRtbn0YsyecdYrxNgO0Bl6SlGokJPQX9M2tDuVbeQBYHZVLUPMSwGQn4obHevsMQ==
177 | dependencies:
178 | lodash "^4.17.13"
179 |
180 | "@babel/helper-remap-async-to-generator@^7.8.0":
181 | version "7.8.0"
182 | resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.8.0.tgz#034c21154dd12472717cfb31faf1713426fbc435"
183 | integrity sha512-+aKyBd4oHAaIZgOLq/uLjkUz7ExZ0ppdNBc8Qr72BmtKNAy3A6EJa/ifjj0//CIzQtUDPs3E6HjKM2cV6bnXsQ==
184 | dependencies:
185 | "@babel/helper-annotate-as-pure" "^7.8.0"
186 | "@babel/helper-wrap-function" "^7.8.0"
187 | "@babel/template" "^7.8.0"
188 | "@babel/traverse" "^7.8.0"
189 | "@babel/types" "^7.8.0"
190 |
191 | "@babel/helper-replace-supers@^7.8.0":
192 | version "7.8.0"
193 | resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.8.0.tgz#d83cb117edb820eebe9ae6c970a8ad5eac09d19f"
194 | integrity sha512-R2CyorW4tcO3YzdkClLpt6MS84G+tPkOi0MmiCn1bvYVnmDpdl9R15XOi3NQW2mhOAEeBnuQ4g1Bh7pT2sX8fg==
195 | dependencies:
196 | "@babel/helper-member-expression-to-functions" "^7.8.0"
197 | "@babel/helper-optimise-call-expression" "^7.8.0"
198 | "@babel/traverse" "^7.8.0"
199 | "@babel/types" "^7.8.0"
200 |
201 | "@babel/helper-simple-access@^7.8.0":
202 | version "7.8.0"
203 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.8.0.tgz#a5095ab031f759995134183fa7719aa85f0ec962"
204 | integrity sha512-I+7yKZJnxp7VIC2UFzXfVjLiJuU16rYFF59x27c+boINkO/pLETgZcoesCryg9jmU4jxEa0foFueW+2wjc9Gsw==
205 | dependencies:
206 | "@babel/template" "^7.8.0"
207 | "@babel/types" "^7.8.0"
208 |
209 | "@babel/helper-split-export-declaration@^7.8.0":
210 | version "7.8.0"
211 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.8.0.tgz#ed10cb03b07454c0d40735fad4e9c9711e739588"
212 | integrity sha512-YhYFhH4T6DlbT6CPtVgLfC1Jp2gbCawU/ml7WJvUpBg01bCrXSzTYMZZXbbIGjq/kHmK8YUATxTppcRGzj31pA==
213 | dependencies:
214 | "@babel/types" "^7.8.0"
215 |
216 | "@babel/helper-wrap-function@^7.8.0":
217 | version "7.8.0"
218 | resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.8.0.tgz#a26751c7b0be765a0db10162c6de485402cb505c"
219 | integrity sha512-2j6idN2jt8Y+8nJ4UPN/6AZa53DAkcETMVmroJQh50qZc59PuQKVjgOIIqmrLoQf6Ia9bs90MHRcID1OW5tfag==
220 | dependencies:
221 | "@babel/helper-function-name" "^7.8.0"
222 | "@babel/template" "^7.8.0"
223 | "@babel/traverse" "^7.8.0"
224 | "@babel/types" "^7.8.0"
225 |
226 | "@babel/helpers@^7.8.0":
227 | version "7.8.0"
228 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.8.0.tgz#3d3e6e08febf5edbbf63b1cf64395525aa3ece37"
229 | integrity sha512-srWKpjAFbiut5JoCReZJ098hLqoZ9HufOnKZPggc7j74XaPuQ+9b3RYPV1M/HfjL63lCNd8uI1O487qIWxAFNA==
230 | dependencies:
231 | "@babel/template" "^7.8.0"
232 | "@babel/traverse" "^7.8.0"
233 | "@babel/types" "^7.8.0"
234 |
235 | "@babel/highlight@^7.8.0":
236 | version "7.8.0"
237 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.8.0.tgz#4cc003dc10359919e2e3a1d9459150942913dd1a"
238 | integrity sha512-OsdTJbHlPtIk2mmtwXItYrdmalJ8T0zpVzNAbKSkHshuywj7zb29Y09McV/jQsQunc/nEyHiPV2oy9llYMLqxw==
239 | dependencies:
240 | chalk "^2.0.0"
241 | esutils "^2.0.2"
242 | js-tokens "^4.0.0"
243 |
244 | "@babel/parser@^7.8.0":
245 | version "7.8.0"
246 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.8.0.tgz#54682775f1fb25dd29a93a02315aab29a6a292bb"
247 | integrity sha512-VVtsnUYbd1+2A2vOVhm4P2qNXQE8L/W859GpUHfUcdhX8d3pEKThZuIr6fztocWx9HbK+00/CR0tXnhAggJ4CA==
248 |
249 | "@babel/plugin-proposal-async-generator-functions@^7.8.0":
250 | version "7.8.0"
251 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.8.0.tgz#92520961d1b2220f0f2e6b576b7896698cd747f9"
252 | integrity sha512-8vIQf8JYced7gCeKDsGETNGKE+zdD/JmP1LBlRn+w3UXc1aSpZv2Y330bB/fnOEbUgPbuFv+IEi+gopg+Fu0kQ==
253 | dependencies:
254 | "@babel/helper-plugin-utils" "^7.8.0"
255 | "@babel/helper-remap-async-to-generator" "^7.8.0"
256 | "@babel/plugin-syntax-async-generators" "^7.8.0"
257 |
258 | "@babel/plugin-proposal-dynamic-import@^7.8.0":
259 | version "7.8.0"
260 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.8.0.tgz#bbd7c00f351b55f02aec0fe9b9c42ad3f659b176"
261 | integrity sha512-YzMq0AqeTR4Mh2pz3GrCWqhcEV38HgUMMR/56/YR5GPc4Y2p1KJ4Le6j92vMnW8TJqVj+qJz/KDNglpMeww9Yg==
262 | dependencies:
263 | "@babel/helper-plugin-utils" "^7.8.0"
264 | "@babel/plugin-syntax-dynamic-import" "^7.8.0"
265 |
266 | "@babel/plugin-proposal-json-strings@^7.8.0":
267 | version "7.8.0"
268 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.8.0.tgz#99fd838398c32f4d96117770f7f3591062e72607"
269 | integrity sha512-pSpuhwn926vtNeUH2FHx1OzIXaUMgklG0MzlFZJVEg37fB904gOxN572NgBae+KDwFyZDpkLMyEkVA011lBJrQ==
270 | dependencies:
271 | "@babel/helper-plugin-utils" "^7.8.0"
272 | "@babel/plugin-syntax-json-strings" "^7.8.0"
273 |
274 | "@babel/plugin-proposal-nullish-coalescing-operator@^7.8.0":
275 | version "7.8.0"
276 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.8.0.tgz#1ef61239ed2241746bc4936fc643a5c6f1cb24fa"
277 | integrity sha512-cQMI+RQdcK2IyMm13NKKFCYfOSBUtFxEeRBOdFCi2Pubv/CpkrCubc/ikdeKMT6Lu+uQ+lNSDEJvDCOQZkUy0g==
278 | dependencies:
279 | "@babel/helper-plugin-utils" "^7.8.0"
280 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0"
281 |
282 | "@babel/plugin-proposal-object-rest-spread@^7.8.0":
283 | version "7.8.0"
284 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.8.0.tgz#ca8ac673d32db774c2154a4c7517fd46ec45e9cf"
285 | integrity sha512-SjJ2ZXCylpWC+5DTES0/pbpNmw/FnjU/3dF068xF0DU9aN+oOKah+3MCSFcb4pnZ9IwmxfOy4KnbGJSQR+hAZA==
286 | dependencies:
287 | "@babel/helper-plugin-utils" "^7.8.0"
288 | "@babel/plugin-syntax-object-rest-spread" "^7.8.0"
289 |
290 | "@babel/plugin-proposal-optional-catch-binding@^7.8.0":
291 | version "7.8.0"
292 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.8.0.tgz#6a7dee0bfd72751e3f1386ba4da03e6fa82fcd95"
293 | integrity sha512-tHP3eez6TrpPJYttBZ/6uItRbIuXUIDpQ9xwvzKwR+RboWGMJ7WzFC5dDJ3vjLuCx0/DG1tM0MVkmgcBybth9w==
294 | dependencies:
295 | "@babel/helper-plugin-utils" "^7.8.0"
296 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.0"
297 |
298 | "@babel/plugin-proposal-optional-chaining@^7.8.0":
299 | version "7.8.0"
300 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.8.0.tgz#d05e4fa3c1e4ef18eaea6bc92a4b06f95eaf1df5"
301 | integrity sha512-PNBHxPHE91m+LLOdGwlvyGicWfrMgiVwng5WdB3CMjd61+vn3vPw0GbgECIAUCZnyi7Jqs5htUIZRztGuV8/5g==
302 | dependencies:
303 | "@babel/helper-plugin-utils" "^7.8.0"
304 | "@babel/plugin-syntax-optional-chaining" "^7.8.0"
305 |
306 | "@babel/plugin-proposal-unicode-property-regex@^7.8.0":
307 | version "7.8.0"
308 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.8.0.tgz#9e1c0481863485052bae8ac024fca7028e24ee31"
309 | integrity sha512-3oK0Qt5w4arb+es3rWBribDbtc0TYJP7dFZ1dXcYul3cXderqfIOoSx9YUC1oD208nJwJO/++fvrgLmkYSbe8A==
310 | dependencies:
311 | "@babel/helper-create-regexp-features-plugin" "^7.8.0"
312 | "@babel/helper-plugin-utils" "^7.8.0"
313 |
314 | "@babel/plugin-syntax-async-generators@^7.8.0":
315 | version "7.8.0"
316 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.0.tgz#e6c3dba5a61ecf72ba00a3f3f5f1234989a58e6a"
317 | integrity sha512-a8w8k7pK8nYhem07rXdAq03T+DlTX8LFojUptrh9JEx80AgLqGiuoFIyQOGTWif39kFnDOQqbzl1s6KQqrfV+A==
318 | dependencies:
319 | "@babel/helper-plugin-utils" "^7.8.0"
320 |
321 | "@babel/plugin-syntax-dynamic-import@^7.0.0", "@babel/plugin-syntax-dynamic-import@^7.8.0":
322 | version "7.8.0"
323 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.0.tgz#3a6c1cd36af923db602df83c5aa72e08bb14353a"
324 | integrity sha512-Mx2RzpCHJaBfmFdA2abXDKRHVJdzJ6R0Wqwb6TxCgM7NRR5wcC4cyiAsRL7Ga+lwG8GG1cKvb+4ENjic8y15jA==
325 | dependencies:
326 | "@babel/helper-plugin-utils" "^7.8.0"
327 |
328 | "@babel/plugin-syntax-json-strings@^7.8.0":
329 | version "7.8.0"
330 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.0.tgz#7f798eb7e8cfd3821388120679d23d530bae6e53"
331 | integrity sha512-LPykaAbH86L5NnDfCRSpNxtEHZk+6GaFzXfWEFU/6R4v69EXQr6GOp7hwH+Uw0QlYVN++s6TukTJ3flFcspahA==
332 | dependencies:
333 | "@babel/helper-plugin-utils" "^7.8.0"
334 |
335 | "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0":
336 | version "7.8.0"
337 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.0.tgz#5d8f24ecffa4ae74164e53264953c5ea8ba6d149"
338 | integrity sha512-Rv2hnBToN6rbA9hO2a4vtwXZLzNa+TWkoSIMMvUezFz5+D9NPeX7SFrArwtFzzbwndmWiqboTr5rNpzAz0MPpA==
339 | dependencies:
340 | "@babel/helper-plugin-utils" "^7.8.0"
341 |
342 | "@babel/plugin-syntax-object-rest-spread@^7.8.0":
343 | version "7.8.0"
344 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.0.tgz#9b37d580d459682364d8602494c69145b394fd4c"
345 | integrity sha512-dt89fDlkfkTrQcy5KavMQPyF2A6tR0kYp8HAnIoQv5hO34iAUffHghP/hMGd7Gf/+uYTmLQO0ar7peX1SUWyIA==
346 | dependencies:
347 | "@babel/helper-plugin-utils" "^7.8.0"
348 |
349 | "@babel/plugin-syntax-optional-catch-binding@^7.8.0":
350 | version "7.8.0"
351 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.0.tgz#180c7bdd6b7fd81cc6d18269de12d5ddd60cabce"
352 | integrity sha512-EIgJVy+u1RvR2gJfX4ReLwAupO/twllUue1wPrRxhu18+eC3bGTEcOSXLQdaE9ya9NG1rE0eQs0GSiloUGFEwg==
353 | dependencies:
354 | "@babel/helper-plugin-utils" "^7.8.0"
355 |
356 | "@babel/plugin-syntax-optional-chaining@^7.8.0":
357 | version "7.8.0"
358 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.0.tgz#c40f4d4d6a4f5e71d2bfd949b0a7f1e1e6792fe0"
359 | integrity sha512-LV1c+TTAO8Vawe3t+WXBHYWbS7endP8MSlqKPKEZOyWPEJX2akl3jfvFG828/OE7RpyoC3JXfLJDFj/jN7A8hg==
360 | dependencies:
361 | "@babel/helper-plugin-utils" "^7.8.0"
362 |
363 | "@babel/plugin-syntax-top-level-await@^7.8.0":
364 | version "7.8.0"
365 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.8.0.tgz#8d45e3d68a1e26bce79c51b08dd9126290686207"
366 | integrity sha512-iXR/Cw32fMfWlD1sK2zD/nXtuLStkalRv+xee6VrX84CFrn2LKwb/EOs/4UaDNUpUsws8YZYKeQjPagacFquug==
367 | dependencies:
368 | "@babel/helper-plugin-utils" "^7.8.0"
369 |
370 | "@babel/plugin-transform-arrow-functions@^7.8.0":
371 | version "7.8.0"
372 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.8.0.tgz#d98b7c425fed35f70cb85024a2b10008936631b3"
373 | integrity sha512-9KfteDp9d8cF388dxFMOh3Dum41qpOVUPVjQhXGd1kPyQBE05FJgYndiAriML2yhMIbZ2bjgweh2nnvBXDH2MQ==
374 | dependencies:
375 | "@babel/helper-plugin-utils" "^7.8.0"
376 |
377 | "@babel/plugin-transform-async-to-generator@^7.8.0":
378 | version "7.8.0"
379 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.8.0.tgz#6561fb6445d89bc20b72150430944cad0e501e4a"
380 | integrity sha512-9dvBvJnEdsDWYMrykoMyLNVRPGoub6SFlARtsYgSQ1riTjnyBjhctihSME4XsSku86F59PDeFpC9PCU+9I154w==
381 | dependencies:
382 | "@babel/helper-module-imports" "^7.8.0"
383 | "@babel/helper-plugin-utils" "^7.8.0"
384 | "@babel/helper-remap-async-to-generator" "^7.8.0"
385 |
386 | "@babel/plugin-transform-block-scoped-functions@^7.8.0":
387 | version "7.8.0"
388 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.8.0.tgz#2ea8a33ec78825ce91244980389cb96d4c6dc6bd"
389 | integrity sha512-bim6gUfHq2kPN+aQst33ZEMeglpaUXAo6PWTZvOA8BOnWpNKgZcUzBvpZhh2ofL6YhZgzGoRwVVfzwynDEf47g==
390 | dependencies:
391 | "@babel/helper-plugin-utils" "^7.8.0"
392 |
393 | "@babel/plugin-transform-block-scoping@^7.8.0":
394 | version "7.8.0"
395 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.8.0.tgz#f6a81bc8c76dbbd202b718cb9e681a27f1d0af8f"
396 | integrity sha512-FKTK4hzg7W950Yu9iqMl12WBixCmusMc5HBt3/ErvpFLnvr3/6mu/EBTZoCEJ0mw/lQUDfU01vTcZY9oEahlMg==
397 | dependencies:
398 | "@babel/helper-plugin-utils" "^7.8.0"
399 | lodash "^4.17.13"
400 |
401 | "@babel/plugin-transform-classes@^7.8.0":
402 | version "7.8.0"
403 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.8.0.tgz#eb4699613b3ea3ccaf095bb0447dac55f7454fc9"
404 | integrity sha512-18RLDwKtGXCLLbf5V03GojebPH7dKYCmIBqQGhgfZDoYsyEzR9kMZ6IxlJP72K5ROC9ADa4KPI6ywuh7NfQOgQ==
405 | dependencies:
406 | "@babel/helper-annotate-as-pure" "^7.8.0"
407 | "@babel/helper-define-map" "^7.8.0"
408 | "@babel/helper-function-name" "^7.8.0"
409 | "@babel/helper-optimise-call-expression" "^7.8.0"
410 | "@babel/helper-plugin-utils" "^7.8.0"
411 | "@babel/helper-replace-supers" "^7.8.0"
412 | "@babel/helper-split-export-declaration" "^7.8.0"
413 | globals "^11.1.0"
414 |
415 | "@babel/plugin-transform-computed-properties@^7.8.0":
416 | version "7.8.0"
417 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.8.0.tgz#c86c200ea42cbecda754fdf636a04dfbf6371cc7"
418 | integrity sha512-FaODHuQRdnWFVwxLPlTN85Lk/aitfvQBHTXahf58FnatCynfhkeNUO8ID+AqAxY4IJsZjeH6OnKDzcGfgKJcVw==
419 | dependencies:
420 | "@babel/helper-plugin-utils" "^7.8.0"
421 |
422 | "@babel/plugin-transform-destructuring@^7.8.0":
423 | version "7.8.0"
424 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.8.0.tgz#579d09e8dabf825cc3ac1524414ff99669f0abf9"
425 | integrity sha512-D+69HT//cE86aBTLULzSBFLC5A7HcPQzJPiny6P4SLHkDF750MylRKO3iWvdgvb+OSp5dOrOxwXajvaxk1ZfYA==
426 | dependencies:
427 | "@babel/helper-plugin-utils" "^7.8.0"
428 |
429 | "@babel/plugin-transform-dotall-regex@^7.8.0":
430 | version "7.8.0"
431 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.8.0.tgz#7e9e439e85219be091c5dbf1be138320600d1172"
432 | integrity sha512-pq/XLkDB4MPvTe9ktHJInfWksalXogrIGRZJUG7RiDXhEfdNrlducoMPbACZQuCFtelVgVpD0VyreiY0l38G7g==
433 | dependencies:
434 | "@babel/helper-create-regexp-features-plugin" "^7.8.0"
435 | "@babel/helper-plugin-utils" "^7.8.0"
436 |
437 | "@babel/plugin-transform-duplicate-keys@^7.8.0":
438 | version "7.8.0"
439 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.8.0.tgz#913b3fdb5cbd35e3208b017dac5ef335ef6b0d65"
440 | integrity sha512-REtYWvpP4TDw4oVeP01vQJcAeewjgk8/i7tPFP11vUjvarUGGyxJLeq79WEnIdnKPQJirZaoDRT4kEWEdSWkDw==
441 | dependencies:
442 | "@babel/helper-plugin-utils" "^7.8.0"
443 |
444 | "@babel/plugin-transform-exponentiation-operator@^7.8.0":
445 | version "7.8.0"
446 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.8.0.tgz#72ddf89e1acfac75482992b8976df62f8ad813c4"
447 | integrity sha512-vaDgF3gPLzVcoe3UZqnra6FA7O797sZc+UCHPd9eQTI34cPtpCA270LzopIXS3Fhc3UmFrijLmre9mHTmUKVgg==
448 | dependencies:
449 | "@babel/helper-builder-binary-assignment-operator-visitor" "^7.8.0"
450 | "@babel/helper-plugin-utils" "^7.8.0"
451 |
452 | "@babel/plugin-transform-for-of@^7.8.0":
453 | version "7.8.0"
454 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.8.0.tgz#4a2960b76d42f4cc8a821edb66f4a7eadf6042ce"
455 | integrity sha512-9j9g0qViCAo8E5qCBSaQdghymn7A9bRXSfS9jU7oLpYccYFZg9A+1KO8X+HV7fhJYH6mZ+e7MRg4p3sLo+RG6Q==
456 | dependencies:
457 | "@babel/helper-plugin-utils" "^7.8.0"
458 |
459 | "@babel/plugin-transform-function-name@^7.8.0":
460 | version "7.8.0"
461 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.8.0.tgz#9c5fdb20967f151c0e06419621d56d63120653c9"
462 | integrity sha512-YL8Ol54UKeIyY1uUGfry+B9ppXAB3aVBB1gG9gxqhg/OBCPpV2QUNswmjvfmyXEdaWv8qODssBgX7on792h44w==
463 | dependencies:
464 | "@babel/helper-function-name" "^7.8.0"
465 | "@babel/helper-plugin-utils" "^7.8.0"
466 |
467 | "@babel/plugin-transform-literals@^7.8.0":
468 | version "7.8.0"
469 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.8.0.tgz#bda7a4773293ee9b687174eb4e1f91fe37ed576f"
470 | integrity sha512-7UDPKG+uVltsZt98Hw+rMbLg772r8fQC6YJ2fNDckcpAXgIWqQbMCmCpfYo0hBNhdhqocM73auk4P/zziQshQw==
471 | dependencies:
472 | "@babel/helper-plugin-utils" "^7.8.0"
473 |
474 | "@babel/plugin-transform-member-expression-literals@^7.8.0":
475 | version "7.8.0"
476 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.8.0.tgz#da3e170e99c2fd1110785cc6146aa2f45429f664"
477 | integrity sha512-lJSdaWR56wmrosCiyqKFRVnLrFYoVAk2mtZAyegt7akeJky/gguv0Rukx9GV3XwHGuM1ZPE06cZMjNlcLp8LrQ==
478 | dependencies:
479 | "@babel/helper-plugin-utils" "^7.8.0"
480 |
481 | "@babel/plugin-transform-modules-amd@^7.8.0":
482 | version "7.8.0"
483 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.8.0.tgz#09f4fb47a2a7d4471866afeb446bc9a068a091b0"
484 | integrity sha512-mFr1O3TaDL4XozM3AzNPz9AsxzzjTxwn4aOShYP5TlO+4rufvjagV2KKDTPMZTQm1ZA/C/PxJDsDekEnnUGz5A==
485 | dependencies:
486 | "@babel/helper-module-transforms" "^7.8.0"
487 | "@babel/helper-plugin-utils" "^7.8.0"
488 | babel-plugin-dynamic-import-node "^2.3.0"
489 |
490 | "@babel/plugin-transform-modules-commonjs@^7.8.0":
491 | version "7.8.0"
492 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.8.0.tgz#69c682a41905f8885ffb9c37ab34ad1fe8ec3fd7"
493 | integrity sha512-w2g8tmL7NgBYt6alc8YawMcmPiYqnVvvI0kLB++VOUOssqdJMAkfQOMGV+2M8H5uhJYDaAghAVMUYps3s+jMrw==
494 | dependencies:
495 | "@babel/helper-module-transforms" "^7.8.0"
496 | "@babel/helper-plugin-utils" "^7.8.0"
497 | "@babel/helper-simple-access" "^7.8.0"
498 | babel-plugin-dynamic-import-node "^2.3.0"
499 |
500 | "@babel/plugin-transform-modules-systemjs@^7.8.0":
501 | version "7.8.0"
502 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.8.0.tgz#b0ff0106a7f8a465a75ce5167c88b648770b0a0c"
503 | integrity sha512-tKF9KLiIsiKyWTVU0yo+NcNAylGn7euggYwXw63/tMxGtDTPsB9Y7Ecqv4EoXEwtoJOJ0Lewf17oaWQtindxIA==
504 | dependencies:
505 | "@babel/helper-hoist-variables" "^7.8.0"
506 | "@babel/helper-module-transforms" "^7.8.0"
507 | "@babel/helper-plugin-utils" "^7.8.0"
508 | babel-plugin-dynamic-import-node "^2.3.0"
509 |
510 | "@babel/plugin-transform-modules-umd@^7.8.0":
511 | version "7.8.0"
512 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.8.0.tgz#edc1a7a587a31a185070421f97ae3798b15df9b7"
513 | integrity sha512-lAwNfXwmfTy7fl2XOyoVpMXnLkJANgH0vdSYNFcS4RuJPBtHfunGA+Y0L7wsHmfPzyVYt8sUglLjaWtdZMNJNg==
514 | dependencies:
515 | "@babel/helper-module-transforms" "^7.8.0"
516 | "@babel/helper-plugin-utils" "^7.8.0"
517 |
518 | "@babel/plugin-transform-named-capturing-groups-regex@^7.8.0":
519 | version "7.8.0"
520 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.8.0.tgz#718e168e7f5ab83fa7e4dfd0cf1831804fc016f0"
521 | integrity sha512-kq1rxQ1HviCP13SMGZ4WjBBpdogTGK7yn/g/+p+g1AQledgHOWKVeMY1DwKYGlGJ/grDGTOqpJLF1v3Sb7ghKA==
522 | dependencies:
523 | "@babel/helper-create-regexp-features-plugin" "^7.8.0"
524 |
525 | "@babel/plugin-transform-new-target@^7.8.0":
526 | version "7.8.0"
527 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.8.0.tgz#54d126788abc648cab27bc9b74a8306b4158f70f"
528 | integrity sha512-hH1Afz9Xy/wkcxhoI0vYw48kTBJqYUhMmhp3SLI1p817iByM6ItH4LS8tZatDAIKmAQAXj8d3Ups1BgVJECDrA==
529 | dependencies:
530 | "@babel/helper-plugin-utils" "^7.8.0"
531 |
532 | "@babel/plugin-transform-object-super@^7.8.0":
533 | version "7.8.0"
534 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.8.0.tgz#aa35d295dd62b84bbea2e155e0b3a2017eb2f4e8"
535 | integrity sha512-2DYqQ811nRlFVlni6iqfxBVVGqkBgfvEv/lcvmdNu2CaG+EA7zSP1hqYUsqamR+uCdDbsrV7uY6/0rkXbJo5YQ==
536 | dependencies:
537 | "@babel/helper-plugin-utils" "^7.8.0"
538 | "@babel/helper-replace-supers" "^7.8.0"
539 |
540 | "@babel/plugin-transform-parameters@^7.8.0":
541 | version "7.8.0"
542 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.8.0.tgz#edc1531beed51fb8a49e0a3f11ca6b508d083d6f"
543 | integrity sha512-9R2yykk7H92rntETO0fq52vJ4OFaTcDA49K9s8bQPyoD4o3/SkWEklukArCsQC6fowEuraPkH/umopr9uO539g==
544 | dependencies:
545 | "@babel/helper-call-delegate" "^7.8.0"
546 | "@babel/helper-get-function-arity" "^7.8.0"
547 | "@babel/helper-plugin-utils" "^7.8.0"
548 |
549 | "@babel/plugin-transform-property-literals@^7.8.0":
550 | version "7.8.0"
551 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.8.0.tgz#af7538d916935ece100e72123fce109182c01ac3"
552 | integrity sha512-vjZaQlojnZIahu5ofEW+hPJfDI5A6r2Sbi5C0RuCaAOFj7viDIR5kOR7ul3Fz5US8V1sVk5Zd2yuPaz7iBeysg==
553 | dependencies:
554 | "@babel/helper-plugin-utils" "^7.8.0"
555 |
556 | "@babel/plugin-transform-regenerator@^7.8.0":
557 | version "7.8.0"
558 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.8.0.tgz#4a0a40af2f7d60a54a3fd7ce58f06b12ab14eaf9"
559 | integrity sha512-n88GT8PZuOHWxqxCJORW3g1QaYzQhHu5sEslxYeQkHVoewfnfuWN37t7YGaRLaNUdaZUlRPXhDcLGT7zBa/u0g==
560 | dependencies:
561 | regenerator-transform "^0.14.0"
562 |
563 | "@babel/plugin-transform-reserved-words@^7.8.0":
564 | version "7.8.0"
565 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.8.0.tgz#572f21e11b9271e67cc5695890b8d5e58186f51e"
566 | integrity sha512-DnshRyDTXZhmAgO2c1QKZI4CfZjoP2t3fSwRsnbCP9P/FSBpf9I7ovnAELswklw5OeY+/D/JIiaGLoUt2II3LA==
567 | dependencies:
568 | "@babel/helper-plugin-utils" "^7.8.0"
569 |
570 | "@babel/plugin-transform-runtime@^7.0.0":
571 | version "7.8.0"
572 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.8.0.tgz#394080e30a66cc17f63940543f60343a3b2c1d52"
573 | integrity sha512-7AvNIKcpzx/0L9FYIJ3Rs231P3pwWrZ4XW3xt56Cejy1q0Ix+PbgCE17r12jUY8ygl5p4QhfANC0ZqLd8bz8aA==
574 | dependencies:
575 | "@babel/helper-module-imports" "^7.8.0"
576 | "@babel/helper-plugin-utils" "^7.8.0"
577 | resolve "^1.8.1"
578 | semver "^5.5.1"
579 |
580 | "@babel/plugin-transform-shorthand-properties@^7.8.0":
581 | version "7.8.0"
582 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.8.0.tgz#38b43048e633878f82a3ef1353868c12015ac838"
583 | integrity sha512-sExhzq63Gl2PMbl7ETpN7Z1A38rLD6GeCT6EEEIIKjTVt9u6dRqJ6nHhaquL7QgR3egj/8fcvq23UvzfPqGAYA==
584 | dependencies:
585 | "@babel/helper-plugin-utils" "^7.8.0"
586 |
587 | "@babel/plugin-transform-spread@^7.8.0":
588 | version "7.8.0"
589 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.8.0.tgz#939e17585b1f24535fdeafc5e11a439520f4b3ab"
590 | integrity sha512-6Zjl0pv6x10YmFVRI0VhwJ/rE++geVHNJ9xwd+UIt3ON2VMRO7qI2lPsyLnzidR5HYNd/JXj47kdU9Rrn4YcnQ==
591 | dependencies:
592 | "@babel/helper-plugin-utils" "^7.8.0"
593 |
594 | "@babel/plugin-transform-sticky-regex@^7.8.0":
595 | version "7.8.0"
596 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.8.0.tgz#98f634d133f7be471e1e6ccc613c6a95e7e9f1f5"
597 | integrity sha512-uksok0Bqox8YeIRFhr6RRtlBXeGpN1ogiEVjEd7A7rVLPZBXKGbL7kODpE7MQ+avjDLv5EEKtDCeYuWZK7FF7g==
598 | dependencies:
599 | "@babel/helper-plugin-utils" "^7.8.0"
600 | "@babel/helper-regex" "^7.8.0"
601 |
602 | "@babel/plugin-transform-template-literals@^7.8.0":
603 | version "7.8.0"
604 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.8.0.tgz#2e19e890cc5b0d58643ee6986840e928d707f7ef"
605 | integrity sha512-EF7Q7LEgeMpogHcvmHMNXBWdLWG1tpA1ErXH3i8zTu3+UEKo6aBn+FldPAJ16UbbbOwSCUCiDP6oZxvVRPhwnQ==
606 | dependencies:
607 | "@babel/helper-annotate-as-pure" "^7.8.0"
608 | "@babel/helper-plugin-utils" "^7.8.0"
609 |
610 | "@babel/plugin-transform-typeof-symbol@^7.8.0":
611 | version "7.8.0"
612 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.8.0.tgz#a8d0dd317349d3dcbb9d659808099c94486554a5"
613 | integrity sha512-rEUBEFzsA9mCS2r7EtXFlM/6GqtzgLdC4WVYM9fIgJX+HcSJ8oMmj8LinfKhbo0ipRauvUM2teE2iNDNqDwO1g==
614 | dependencies:
615 | "@babel/helper-plugin-utils" "^7.8.0"
616 |
617 | "@babel/plugin-transform-unicode-regex@^7.8.0":
618 | version "7.8.0"
619 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.8.0.tgz#20988246a9d98271f861be422e5a17898b80e5b0"
620 | integrity sha512-qDg8wsnE47B/Sj8ZtOndPHrGBxJMssZJ71SzXrItum9n++iVFN7kYuJO+OHhjom7+/or0zzYqvJNzCkUjyNKqg==
621 | dependencies:
622 | "@babel/helper-create-regexp-features-plugin" "^7.8.0"
623 | "@babel/helper-plugin-utils" "^7.8.0"
624 |
625 | "@babel/preset-env@^7.0.0":
626 | version "7.8.0"
627 | resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.8.0.tgz#f0a0a353091cb2135e9aea21ed9c4563c51bd31f"
628 | integrity sha512-g3wnth3Ct+ZvnaHcvb5PQyojqNj0whXTkO7hatXgz+lQ2FphOoXrG1JMIfeaHgDakGzx3LiNe0KsWO69xSVFDA==
629 | dependencies:
630 | "@babel/compat-data" "^7.8.0"
631 | "@babel/helper-compilation-targets" "^7.8.0"
632 | "@babel/helper-module-imports" "^7.8.0"
633 | "@babel/helper-plugin-utils" "^7.8.0"
634 | "@babel/plugin-proposal-async-generator-functions" "^7.8.0"
635 | "@babel/plugin-proposal-dynamic-import" "^7.8.0"
636 | "@babel/plugin-proposal-json-strings" "^7.8.0"
637 | "@babel/plugin-proposal-nullish-coalescing-operator" "^7.8.0"
638 | "@babel/plugin-proposal-object-rest-spread" "^7.8.0"
639 | "@babel/plugin-proposal-optional-catch-binding" "^7.8.0"
640 | "@babel/plugin-proposal-optional-chaining" "^7.8.0"
641 | "@babel/plugin-proposal-unicode-property-regex" "^7.8.0"
642 | "@babel/plugin-syntax-async-generators" "^7.8.0"
643 | "@babel/plugin-syntax-dynamic-import" "^7.8.0"
644 | "@babel/plugin-syntax-json-strings" "^7.8.0"
645 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0"
646 | "@babel/plugin-syntax-object-rest-spread" "^7.8.0"
647 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.0"
648 | "@babel/plugin-syntax-optional-chaining" "^7.8.0"
649 | "@babel/plugin-syntax-top-level-await" "^7.8.0"
650 | "@babel/plugin-transform-arrow-functions" "^7.8.0"
651 | "@babel/plugin-transform-async-to-generator" "^7.8.0"
652 | "@babel/plugin-transform-block-scoped-functions" "^7.8.0"
653 | "@babel/plugin-transform-block-scoping" "^7.8.0"
654 | "@babel/plugin-transform-classes" "^7.8.0"
655 | "@babel/plugin-transform-computed-properties" "^7.8.0"
656 | "@babel/plugin-transform-destructuring" "^7.8.0"
657 | "@babel/plugin-transform-dotall-regex" "^7.8.0"
658 | "@babel/plugin-transform-duplicate-keys" "^7.8.0"
659 | "@babel/plugin-transform-exponentiation-operator" "^7.8.0"
660 | "@babel/plugin-transform-for-of" "^7.8.0"
661 | "@babel/plugin-transform-function-name" "^7.8.0"
662 | "@babel/plugin-transform-literals" "^7.8.0"
663 | "@babel/plugin-transform-member-expression-literals" "^7.8.0"
664 | "@babel/plugin-transform-modules-amd" "^7.8.0"
665 | "@babel/plugin-transform-modules-commonjs" "^7.8.0"
666 | "@babel/plugin-transform-modules-systemjs" "^7.8.0"
667 | "@babel/plugin-transform-modules-umd" "^7.8.0"
668 | "@babel/plugin-transform-named-capturing-groups-regex" "^7.8.0"
669 | "@babel/plugin-transform-new-target" "^7.8.0"
670 | "@babel/plugin-transform-object-super" "^7.8.0"
671 | "@babel/plugin-transform-parameters" "^7.8.0"
672 | "@babel/plugin-transform-property-literals" "^7.8.0"
673 | "@babel/plugin-transform-regenerator" "^7.8.0"
674 | "@babel/plugin-transform-reserved-words" "^7.8.0"
675 | "@babel/plugin-transform-shorthand-properties" "^7.8.0"
676 | "@babel/plugin-transform-spread" "^7.8.0"
677 | "@babel/plugin-transform-sticky-regex" "^7.8.0"
678 | "@babel/plugin-transform-template-literals" "^7.8.0"
679 | "@babel/plugin-transform-typeof-symbol" "^7.8.0"
680 | "@babel/plugin-transform-unicode-regex" "^7.8.0"
681 | "@babel/types" "^7.8.0"
682 | browserslist "^4.8.2"
683 | core-js-compat "^3.6.2"
684 | invariant "^2.2.2"
685 | levenary "^1.1.0"
686 | semver "^5.5.0"
687 |
688 | "@babel/runtime@^7.0.0", "@babel/runtime@^7.6.3":
689 | version "7.8.0"
690 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.8.0.tgz#8c81711517c56b3d00c6de706b0fb13dc3531549"
691 | integrity sha512-Z7ti+HB0puCcLmFE3x90kzaVgbx6TRrYIReaygW6EkBEnJh1ajS4/inhF7CypzWeDV3NFl1AfWj0eMtdihojxw==
692 | dependencies:
693 | regenerator-runtime "^0.13.2"
694 |
695 | "@babel/template@^7.8.0":
696 | version "7.8.0"
697 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.8.0.tgz#a32f57ad3be89c0fa69ae87b53b4826844dc6330"
698 | integrity sha512-0NNMDsY2t3ltAVVK1WHNiaePo3tXPUeJpCX4I3xSKFoEl852wJHG8mrgHVADf8Lz1y+8al9cF7cSSfzSnFSYiw==
699 | dependencies:
700 | "@babel/code-frame" "^7.8.0"
701 | "@babel/parser" "^7.8.0"
702 | "@babel/types" "^7.8.0"
703 |
704 | "@babel/traverse@^7.8.0":
705 | version "7.8.0"
706 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.8.0.tgz#d85266fdcff553c10e57b672604b36383a127c1f"
707 | integrity sha512-d/6sPXFLGlJHZO/zWDtgFaKyalCOHLedzxpVJn6el1cw+f2TZa7xZEszeXdOw6EUemqRFBAn106BWBvtSck9Qw==
708 | dependencies:
709 | "@babel/code-frame" "^7.8.0"
710 | "@babel/generator" "^7.8.0"
711 | "@babel/helper-function-name" "^7.8.0"
712 | "@babel/helper-split-export-declaration" "^7.8.0"
713 | "@babel/parser" "^7.8.0"
714 | "@babel/types" "^7.8.0"
715 | debug "^4.1.0"
716 | globals "^11.1.0"
717 | lodash "^4.17.13"
718 |
719 | "@babel/types@^7.8.0":
720 | version "7.8.0"
721 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.8.0.tgz#1a2039a028057a2c888b668d94c98e61ea906e7f"
722 | integrity sha512-1RF84ehyx9HH09dMMwGWl3UTWlVoCPtqqJPjGuC4JzMe1ZIVDJ2DT8mv3cPv/A7veLD6sgR7vi95lJqm+ZayIg==
723 | dependencies:
724 | esutils "^2.0.2"
725 | lodash "^4.17.13"
726 | to-fast-properties "^2.0.0"
727 |
728 | "@polka/url@^0.5.0":
729 | version "0.5.0"
730 | resolved "https://registry.yarnpkg.com/@polka/url/-/url-0.5.0.tgz#b21510597fd601e5d7c95008b76bf0d254ebfd31"
731 | integrity sha512-oZLYFEAzUKyi3SKnXvj32ZCEGH6RDnao7COuCVhDydMS9NrCSVXhM79VaKyP5+Zc33m0QXEd2DN3UkU7OsHcfw==
732 |
733 | "@polka/url@^1.0.0-next.9":
734 | version "1.0.0-next.9"
735 | resolved "https://registry.yarnpkg.com/@polka/url/-/url-1.0.0-next.9.tgz#9abddbf31c15548f9615a3275f66ac5c100f296d"
736 | integrity sha512-VZqSaulg2kVQYMulmuZcvapPwH5/y81YHANiFIKz1GNZoG/F4o1JSeLlrvXJ8tC+RPUjxdrebfT3Qn+bnMi0bA==
737 |
738 | "@rollup/plugin-commonjs@^11.0.0":
739 | version "11.0.1"
740 | resolved "https://registry.yarnpkg.com/@rollup/plugin-commonjs/-/plugin-commonjs-11.0.1.tgz#6056a6757286901cc6c1599123e6680a78cad6c2"
741 | integrity sha512-SaVUoaLDg3KnIXC5IBNIspr1APTYDzk05VaYcI6qz+0XX3ZlSCwAkfAhNSOxfd5GAdcm/63Noi4TowOY9MpcDg==
742 | dependencies:
743 | "@rollup/pluginutils" "^3.0.0"
744 | estree-walker "^0.6.1"
745 | is-reference "^1.1.2"
746 | magic-string "^0.25.2"
747 | resolve "^1.11.0"
748 |
749 | "@rollup/plugin-json@^4.0.1":
750 | version "4.0.1"
751 | resolved "https://registry.yarnpkg.com/@rollup/plugin-json/-/plugin-json-4.0.1.tgz#223898c6c37993886da06989b0e93ceef52aa3ce"
752 | integrity sha512-soxllkhOGgchswBAAaTe7X9G80U2tjjHvXv0sBrriLJcC/89PkP59iTrKPOfbz3SjX088mKDmMhAscuyLz8ZSg==
753 | dependencies:
754 | rollup-pluginutils "^2.5.0"
755 |
756 | "@rollup/plugin-node-resolve@^7.0.0":
757 | version "7.0.0"
758 | resolved "https://registry.yarnpkg.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-7.0.0.tgz#cce3826df801538b001972fbf9b6b1c22b69fdf8"
759 | integrity sha512-+vOx2+WMBMFotYKM3yYeDGZxIvcQ7yO4g+SuKDFsjKaq8Lw3EPgfB6qNlp8Z/3ceDCEhHvC9/b+PgBGwDQGbzQ==
760 | dependencies:
761 | "@rollup/pluginutils" "^3.0.0"
762 | "@types/resolve" "0.0.8"
763 | builtin-modules "^3.1.0"
764 | is-module "^1.0.0"
765 | resolve "^1.11.1"
766 |
767 | "@rollup/plugin-replace@^2.2.0":
768 | version "2.3.0"
769 | resolved "https://registry.yarnpkg.com/@rollup/plugin-replace/-/plugin-replace-2.3.0.tgz#86d88746383e40dd81cffb5216449cc51a734eb9"
770 | integrity sha512-rzWAMqXAHC1w3eKpK6LxRqiF4f3qVFaa1sGii6Bp3rluKcwHNOpPt+hWRCmAH6SDEPtbPiLFf0pfNQyHs6Btlg==
771 | dependencies:
772 | magic-string "^0.25.2"
773 | rollup-pluginutils "^2.6.0"
774 |
775 | "@rollup/pluginutils@^3.0.0":
776 | version "3.0.4"
777 | resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-3.0.4.tgz#3a104a41a90f8d1dcf308e18f8fa402d1cc6576e"
778 | integrity sha512-buc0oeq2zqQu2mpMyvZgAaQvitikYjT/4JYhA4EXwxX8/g0ZGHoGiX+0AwmfhrNqH4oJv67gn80sTZFQ/jL1bw==
779 | dependencies:
780 | estree-walker "^0.6.1"
781 |
782 | "@types/color-name@^1.1.1":
783 | version "1.1.1"
784 | resolved "https://registry.yarnpkg.com/@types/color-name/-/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0"
785 | integrity sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==
786 |
787 | "@types/estree@*":
788 | version "0.0.42"
789 | resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.42.tgz#8d0c1f480339efedb3e46070e22dd63e0430dd11"
790 | integrity sha512-K1DPVvnBCPxzD+G51/cxVIoc2X8uUVl1zpJeE6iKcgHMj4+tbat5Xu4TjV7v2QSDbIeAfLi2hIk+u2+s0MlpUQ==
791 |
792 | "@types/estree@0.0.39":
793 | version "0.0.39"
794 | resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f"
795 | integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==
796 |
797 | "@types/node@*":
798 | version "13.1.6"
799 | resolved "https://registry.yarnpkg.com/@types/node/-/node-13.1.6.tgz#076028d0b0400be8105b89a0a55550c86684ffec"
800 | integrity sha512-Jg1F+bmxcpENHP23sVKkNuU3uaxPnsBMW0cLjleiikFKomJQbsn0Cqk2yDvQArqzZN6ABfBkZ0To7pQ8sLdWDg==
801 |
802 | "@types/parse-json@^4.0.0":
803 | version "4.0.0"
804 | resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0"
805 | integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==
806 |
807 | "@types/pug@^2.0.4":
808 | version "2.0.4"
809 | resolved "https://registry.yarnpkg.com/@types/pug/-/pug-2.0.4.tgz#8772fcd0418e3cd2cc171555d73007415051f4b2"
810 | integrity sha1-h3L80EGOPNLMFxVV1zAHQVBR9LI=
811 |
812 | "@types/resolve@0.0.8":
813 | version "0.0.8"
814 | resolved "https://registry.yarnpkg.com/@types/resolve/-/resolve-0.0.8.tgz#f26074d238e02659e323ce1a13d041eee280e194"
815 | integrity sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ==
816 | dependencies:
817 | "@types/node" "*"
818 |
819 | "@types/sass@^1.16.0":
820 | version "1.16.0"
821 | resolved "https://registry.yarnpkg.com/@types/sass/-/sass-1.16.0.tgz#b41ac1c17fa68ffb57d43e2360486ef526b3d57d"
822 | integrity sha512-2XZovu4NwcqmtZtsBR5XYLw18T8cBCnU2USFHTnYLLHz9fkhnoEMoDsqShJIOFsFhn5aJHjweiUUdTrDGujegA==
823 | dependencies:
824 | "@types/node" "*"
825 |
826 | accepts@~1.3.5:
827 | version "1.3.7"
828 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd"
829 | integrity sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==
830 | dependencies:
831 | mime-types "~2.1.24"
832 | negotiator "0.6.2"
833 |
834 | acorn@^7.1.0:
835 | version "7.1.1"
836 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.1.1.tgz#e35668de0b402f359de515c5482a1ab9f89a69bf"
837 | integrity sha512-add7dgA5ppRPxCFJoAGfMDi7PIBXq1RtGo7BhbLaxwrXPOmw8gq48Y9ozT01hUKy9byMjlR20EJhu5zlkErEkg==
838 |
839 | ansi-styles@^3.2.1:
840 | version "3.2.1"
841 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
842 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
843 | dependencies:
844 | color-convert "^1.9.0"
845 |
846 | ansi-styles@^4.1.0:
847 | version "4.2.1"
848 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.2.1.tgz#90ae75c424d008d2624c5bf29ead3177ebfcf359"
849 | integrity sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==
850 | dependencies:
851 | "@types/color-name" "^1.1.1"
852 | color-convert "^2.0.1"
853 |
854 | anymatch@^2.0.0:
855 | version "2.0.0"
856 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb"
857 | integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==
858 | dependencies:
859 | micromatch "^3.1.4"
860 | normalize-path "^2.1.1"
861 |
862 | anymatch@~3.1.1:
863 | version "3.1.1"
864 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142"
865 | integrity sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==
866 | dependencies:
867 | normalize-path "^3.0.0"
868 | picomatch "^2.0.4"
869 |
870 | argparse@^1.0.7:
871 | version "1.0.10"
872 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
873 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==
874 | dependencies:
875 | sprintf-js "~1.0.2"
876 |
877 | arr-diff@^4.0.0:
878 | version "4.0.0"
879 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520"
880 | integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=
881 |
882 | arr-flatten@^1.1.0:
883 | version "1.1.0"
884 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
885 | integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==
886 |
887 | arr-union@^3.1.0:
888 | version "3.1.0"
889 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4"
890 | integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=
891 |
892 | array-unique@^0.3.2:
893 | version "0.3.2"
894 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
895 | integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=
896 |
897 | assign-symbols@^1.0.0:
898 | version "1.0.0"
899 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"
900 | integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=
901 |
902 | async-each@^1.0.1:
903 | version "1.0.3"
904 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf"
905 | integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==
906 |
907 | atob@^2.1.2:
908 | version "2.1.2"
909 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
910 | integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==
911 |
912 | babel-plugin-dynamic-import-node@^2.3.0:
913 | version "2.3.0"
914 | resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.0.tgz#f00f507bdaa3c3e3ff6e7e5e98d90a7acab96f7f"
915 | integrity sha512-o6qFkpeQEBxcqt0XYlWzAVxNCSCZdUgcR8IRlhD/8DylxjjO4foPcvTW0GGKa/cVt3rvxZ7o5ippJ+/0nvLhlQ==
916 | dependencies:
917 | object.assign "^4.1.0"
918 |
919 | babel-runtime@^6.23.0:
920 | version "6.26.0"
921 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
922 | integrity sha1-llxwWGaOgrVde/4E/yM3vItWR/4=
923 | dependencies:
924 | core-js "^2.4.0"
925 | regenerator-runtime "^0.11.0"
926 |
927 | balanced-match@^1.0.0:
928 | version "1.0.2"
929 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
930 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
931 |
932 | base@^0.11.1:
933 | version "0.11.2"
934 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f"
935 | integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==
936 | dependencies:
937 | cache-base "^1.0.1"
938 | class-utils "^0.3.5"
939 | component-emitter "^1.2.1"
940 | define-property "^1.0.0"
941 | isobject "^3.0.1"
942 | mixin-deep "^1.2.0"
943 | pascalcase "^0.1.1"
944 |
945 | binary-extensions@^1.0.0:
946 | version "1.13.1"
947 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65"
948 | integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==
949 |
950 | binary-extensions@^2.0.0:
951 | version "2.0.0"
952 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.0.0.tgz#23c0df14f6a88077f5f986c0d167ec03c3d5537c"
953 | integrity sha512-Phlt0plgpIIBOGTT/ehfFnbNlfsDEiqmzE2KRXoX1bLIlir4X/MR+zSyBEkL05ffWgnRSf/DXv+WrUAVr93/ow==
954 |
955 | bindings@^1.5.0:
956 | version "1.5.0"
957 | resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df"
958 | integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==
959 | dependencies:
960 | file-uri-to-path "1.0.0"
961 |
962 | brace-expansion@^1.1.7:
963 | version "1.1.11"
964 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
965 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
966 | dependencies:
967 | balanced-match "^1.0.0"
968 | concat-map "0.0.1"
969 |
970 | braces@^2.3.1, braces@^2.3.2:
971 | version "2.3.2"
972 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729"
973 | integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==
974 | dependencies:
975 | arr-flatten "^1.1.0"
976 | array-unique "^0.3.2"
977 | extend-shallow "^2.0.1"
978 | fill-range "^4.0.0"
979 | isobject "^3.0.1"
980 | repeat-element "^1.1.2"
981 | snapdragon "^0.8.1"
982 | snapdragon-node "^2.0.1"
983 | split-string "^3.0.2"
984 | to-regex "^3.0.1"
985 |
986 | braces@~3.0.2:
987 | version "3.0.2"
988 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
989 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
990 | dependencies:
991 | fill-range "^7.0.1"
992 |
993 | browserslist@^4.8.2, browserslist@^4.8.3:
994 | version "4.16.6"
995 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.6.tgz#d7901277a5a88e554ed305b183ec9b0c08f66fa2"
996 | integrity sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ==
997 | dependencies:
998 | caniuse-lite "^1.0.30001219"
999 | colorette "^1.2.2"
1000 | electron-to-chromium "^1.3.723"
1001 | escalade "^3.1.1"
1002 | node-releases "^1.1.71"
1003 |
1004 | buffer-from@^1.0.0:
1005 | version "1.1.2"
1006 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5"
1007 | integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==
1008 |
1009 | builtin-modules@^3.1.0:
1010 | version "3.1.0"
1011 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.1.0.tgz#aad97c15131eb76b65b50ef208e7584cd76a7484"
1012 | integrity sha512-k0KL0aWZuBt2lrxrcASWDfwOLMnodeQjodT/1SxEQAXsHANgo6ZC/VEaSEHCXt7aSTZ4/4H5LKa+tBXmW7Vtvw==
1013 |
1014 | bytes@3.0.0:
1015 | version "3.0.0"
1016 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048"
1017 | integrity sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=
1018 |
1019 | cache-base@^1.0.1:
1020 | version "1.0.1"
1021 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2"
1022 | integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==
1023 | dependencies:
1024 | collection-visit "^1.0.0"
1025 | component-emitter "^1.2.1"
1026 | get-value "^2.0.6"
1027 | has-value "^1.0.0"
1028 | isobject "^3.0.1"
1029 | set-value "^2.0.0"
1030 | to-object-path "^0.3.0"
1031 | union-value "^1.0.0"
1032 | unset-value "^1.0.0"
1033 |
1034 | callsites@^3.0.0:
1035 | version "3.1.0"
1036 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
1037 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
1038 |
1039 | camel-case@^3.0.0:
1040 | version "3.0.0"
1041 | resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-3.0.0.tgz#ca3c3688a4e9cf3a4cda777dc4dcbc713249cf73"
1042 | integrity sha1-yjw2iKTpzzpM2nd9xNy8cTJJz3M=
1043 | dependencies:
1044 | no-case "^2.2.0"
1045 | upper-case "^1.1.1"
1046 |
1047 | caniuse-lite@^1.0.30001219:
1048 | version "1.0.30001230"
1049 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001230.tgz#8135c57459854b2240b57a4a6786044bdc5a9f71"
1050 | integrity sha512-5yBd5nWCBS+jWKTcHOzXwo5xzcj4ePE/yjtkZyUV1BTUmrBaA9MRGC+e7mxnqXSA90CmCA8L3eKLaSUkt099IQ==
1051 |
1052 | chalk@^2.0.0, chalk@^2.4.1:
1053 | version "2.4.2"
1054 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
1055 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
1056 | dependencies:
1057 | ansi-styles "^3.2.1"
1058 | escape-string-regexp "^1.0.5"
1059 | supports-color "^5.3.0"
1060 |
1061 | chalk@^3.0.0:
1062 | version "3.0.0"
1063 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4"
1064 | integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==
1065 | dependencies:
1066 | ansi-styles "^4.1.0"
1067 | supports-color "^7.1.0"
1068 |
1069 | "chokidar@>=2.0.0 <4.0.0":
1070 | version "3.3.1"
1071 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.3.1.tgz#c84e5b3d18d9a4d77558fef466b1bf16bbeb3450"
1072 | integrity sha512-4QYCEWOcK3OJrxwvyyAOxFuhpvOVCYkr33LPfFNBjAD/w3sEzWsp2BUOkI4l9bHvWioAd0rc6NlHUOEaWkTeqg==
1073 | dependencies:
1074 | anymatch "~3.1.1"
1075 | braces "~3.0.2"
1076 | glob-parent "~5.1.0"
1077 | is-binary-path "~2.1.0"
1078 | is-glob "~4.0.1"
1079 | normalize-path "~3.0.0"
1080 | readdirp "~3.3.0"
1081 | optionalDependencies:
1082 | fsevents "~2.1.2"
1083 |
1084 | chokidar@^2.0.0:
1085 | version "2.1.8"
1086 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917"
1087 | integrity sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==
1088 | dependencies:
1089 | anymatch "^2.0.0"
1090 | async-each "^1.0.1"
1091 | braces "^2.3.2"
1092 | glob-parent "^3.1.0"
1093 | inherits "^2.0.3"
1094 | is-binary-path "^1.0.0"
1095 | is-glob "^4.0.0"
1096 | normalize-path "^3.0.0"
1097 | path-is-absolute "^1.0.0"
1098 | readdirp "^2.2.1"
1099 | upath "^1.1.1"
1100 | optionalDependencies:
1101 | fsevents "^1.2.7"
1102 |
1103 | ci-info@^2.0.0:
1104 | version "2.0.0"
1105 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46"
1106 | integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==
1107 |
1108 | class-utils@^0.3.5:
1109 | version "0.3.6"
1110 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463"
1111 | integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==
1112 | dependencies:
1113 | arr-union "^3.1.0"
1114 | define-property "^0.2.5"
1115 | isobject "^3.0.0"
1116 | static-extend "^0.1.1"
1117 |
1118 | clean-css@^4.2.1:
1119 | version "4.2.1"
1120 | resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.2.1.tgz#2d411ef76b8569b6d0c84068dabe85b0aa5e5c17"
1121 | integrity sha512-4ZxI6dy4lrY6FHzfiy1aEOXgu4LIsW2MhwG0VBKdcoGoH/XLFgaHSdLTGr4O8Be6A8r3MOphEiI8Gc1n0ecf3g==
1122 | dependencies:
1123 | source-map "~0.6.0"
1124 |
1125 | collection-visit@^1.0.0:
1126 | version "1.0.0"
1127 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0"
1128 | integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=
1129 | dependencies:
1130 | map-visit "^1.0.0"
1131 | object-visit "^1.0.0"
1132 |
1133 | color-convert@^1.9.0:
1134 | version "1.9.3"
1135 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
1136 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
1137 | dependencies:
1138 | color-name "1.1.3"
1139 |
1140 | color-convert@^2.0.1:
1141 | version "2.0.1"
1142 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
1143 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
1144 | dependencies:
1145 | color-name "~1.1.4"
1146 |
1147 | color-name@1.1.3:
1148 | version "1.1.3"
1149 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
1150 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
1151 |
1152 | color-name@~1.1.4:
1153 | version "1.1.4"
1154 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
1155 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
1156 |
1157 | colorette@^1.2.2:
1158 | version "1.2.2"
1159 | resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.2.tgz#cbcc79d5e99caea2dbf10eb3a26fd8b3e6acfa94"
1160 | integrity sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==
1161 |
1162 | commander@^2.19.0, commander@^2.20.0, commander@~2.20.3:
1163 | version "2.20.3"
1164 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
1165 | integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
1166 |
1167 | component-emitter@^1.2.1:
1168 | version "1.3.0"
1169 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0"
1170 | integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==
1171 |
1172 | compressible@~2.0.16:
1173 | version "2.0.18"
1174 | resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba"
1175 | integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==
1176 | dependencies:
1177 | mime-db ">= 1.43.0 < 2"
1178 |
1179 | compression@^1.7.1:
1180 | version "1.7.4"
1181 | resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz#95523eff170ca57c29a0ca41e6fe131f41e5bb8f"
1182 | integrity sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==
1183 | dependencies:
1184 | accepts "~1.3.5"
1185 | bytes "3.0.0"
1186 | compressible "~2.0.16"
1187 | debug "2.6.9"
1188 | on-headers "~1.0.2"
1189 | safe-buffer "5.1.2"
1190 | vary "~1.1.2"
1191 |
1192 | concat-map@0.0.1:
1193 | version "0.0.1"
1194 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
1195 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==
1196 |
1197 | convert-source-map@^1.7.0:
1198 | version "1.7.0"
1199 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442"
1200 | integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==
1201 | dependencies:
1202 | safe-buffer "~5.1.1"
1203 |
1204 | copy-descriptor@^0.1.0:
1205 | version "0.1.1"
1206 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
1207 | integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=
1208 |
1209 | core-js-compat@^3.6.2:
1210 | version "3.6.3"
1211 | resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.6.3.tgz#41e281ca771209d5f2eb63ce34f96037d0928538"
1212 | integrity sha512-Y3YNGU3bU1yrnzVodop23ghArbKv4IqkZg9MMOWv/h7KT6NRk1/SzHhWDDlubg2+tlcUzAqgj1/GyeJ9fUKMeg==
1213 | dependencies:
1214 | browserslist "^4.8.3"
1215 | semver "7.0.0"
1216 |
1217 | core-js@^2.4.0:
1218 | version "2.6.11"
1219 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.11.tgz#38831469f9922bded8ee21c9dc46985e0399308c"
1220 | integrity sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg==
1221 |
1222 | core-util-is@~1.0.0:
1223 | version "1.0.2"
1224 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
1225 | integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=
1226 |
1227 | cosmiconfig@^6.0.0:
1228 | version "6.0.0"
1229 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982"
1230 | integrity sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==
1231 | dependencies:
1232 | "@types/parse-json" "^4.0.0"
1233 | import-fresh "^3.1.0"
1234 | parse-json "^5.0.0"
1235 | path-type "^4.0.0"
1236 | yaml "^1.7.2"
1237 |
1238 | cross-spawn@^6.0.5:
1239 | version "6.0.5"
1240 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"
1241 | integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==
1242 | dependencies:
1243 | nice-try "^1.0.4"
1244 | path-key "^2.0.1"
1245 | semver "^5.5.0"
1246 | shebang-command "^1.2.0"
1247 | which "^1.2.9"
1248 |
1249 | debug@2.6.9, debug@^2.2.0, debug@^2.3.3:
1250 | version "2.6.9"
1251 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
1252 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
1253 | dependencies:
1254 | ms "2.0.0"
1255 |
1256 | debug@^4.1.0:
1257 | version "4.1.1"
1258 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791"
1259 | integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==
1260 | dependencies:
1261 | ms "^2.1.1"
1262 |
1263 | decode-uri-component@^0.2.0:
1264 | version "0.2.2"
1265 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.2.tgz#e69dbe25d37941171dd540e024c444cd5188e1e9"
1266 | integrity sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==
1267 |
1268 | define-properties@^1.1.2, define-properties@^1.1.3:
1269 | version "1.1.3"
1270 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1"
1271 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==
1272 | dependencies:
1273 | object-keys "^1.0.12"
1274 |
1275 | define-property@^0.2.5:
1276 | version "0.2.5"
1277 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116"
1278 | integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=
1279 | dependencies:
1280 | is-descriptor "^0.1.0"
1281 |
1282 | define-property@^1.0.0:
1283 | version "1.0.0"
1284 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6"
1285 | integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY=
1286 | dependencies:
1287 | is-descriptor "^1.0.0"
1288 |
1289 | define-property@^2.0.2:
1290 | version "2.0.2"
1291 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d"
1292 | integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==
1293 | dependencies:
1294 | is-descriptor "^1.0.2"
1295 | isobject "^3.0.1"
1296 |
1297 | detect-indent@^6.0.0:
1298 | version "6.0.0"
1299 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-6.0.0.tgz#0abd0f549f69fc6659a254fe96786186b6f528fd"
1300 | integrity sha512-oSyFlqaTHCItVRGK5RmrmjB+CmaMOW7IaNA/kdxqhoa6d17j/5ce9O9eWXmV/KEdRwqpQA+Vqe8a8Bsybu4YnA==
1301 |
1302 | electron-to-chromium@^1.3.723:
1303 | version "1.3.738"
1304 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.738.tgz#aec24b091c82acbfabbdcce08076a703941d17ca"
1305 | integrity sha512-vCMf4gDOpEylPSLPLSwAEsz+R3ShP02Y3cAKMZvTqule3XcPp7tgc/0ESI7IS6ZeyBlGClE50N53fIOkcIVnpw==
1306 |
1307 | entities@^1.1.1:
1308 | version "1.1.2"
1309 | resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56"
1310 | integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==
1311 |
1312 | error-ex@^1.3.1:
1313 | version "1.3.2"
1314 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
1315 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
1316 | dependencies:
1317 | is-arrayish "^0.2.1"
1318 |
1319 | es-abstract@^1.17.0-next.1:
1320 | version "1.17.0"
1321 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.0.tgz#f42a517d0036a5591dbb2c463591dc8bb50309b1"
1322 | integrity sha512-yYkE07YF+6SIBmg1MsJ9dlub5L48Ek7X0qz+c/CPCHS9EBXfESorzng4cJQjJW5/pB6vDF41u7F8vUhLVDqIug==
1323 | dependencies:
1324 | es-to-primitive "^1.2.1"
1325 | function-bind "^1.1.1"
1326 | has "^1.0.3"
1327 | has-symbols "^1.0.1"
1328 | is-callable "^1.1.5"
1329 | is-regex "^1.0.5"
1330 | object-inspect "^1.7.0"
1331 | object-keys "^1.1.1"
1332 | object.assign "^4.1.0"
1333 | string.prototype.trimleft "^2.1.1"
1334 | string.prototype.trimright "^2.1.1"
1335 |
1336 | es-to-primitive@^1.2.1:
1337 | version "1.2.1"
1338 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a"
1339 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==
1340 | dependencies:
1341 | is-callable "^1.1.4"
1342 | is-date-object "^1.0.1"
1343 | is-symbol "^1.0.2"
1344 |
1345 | escalade@^3.1.1:
1346 | version "3.1.1"
1347 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
1348 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==
1349 |
1350 | escape-string-regexp@^1.0.5:
1351 | version "1.0.5"
1352 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
1353 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
1354 |
1355 | esprima@^4.0.0:
1356 | version "4.0.1"
1357 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
1358 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
1359 |
1360 | estree-walker@^0.6.1:
1361 | version "0.6.1"
1362 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.6.1.tgz#53049143f40c6eb918b23671d1fe3219f3a1b362"
1363 | integrity sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==
1364 |
1365 | esutils@^2.0.2:
1366 | version "2.0.3"
1367 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
1368 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
1369 |
1370 | expand-brackets@^2.1.4:
1371 | version "2.1.4"
1372 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622"
1373 | integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI=
1374 | dependencies:
1375 | debug "^2.3.3"
1376 | define-property "^0.2.5"
1377 | extend-shallow "^2.0.1"
1378 | posix-character-classes "^0.1.0"
1379 | regex-not "^1.0.0"
1380 | snapdragon "^0.8.1"
1381 | to-regex "^3.0.1"
1382 |
1383 | extend-shallow@^2.0.1:
1384 | version "2.0.1"
1385 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f"
1386 | integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=
1387 | dependencies:
1388 | is-extendable "^0.1.0"
1389 |
1390 | extend-shallow@^3.0.0, extend-shallow@^3.0.2:
1391 | version "3.0.2"
1392 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8"
1393 | integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=
1394 | dependencies:
1395 | assign-symbols "^1.0.0"
1396 | is-extendable "^1.0.1"
1397 |
1398 | extglob@^2.0.4:
1399 | version "2.0.4"
1400 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543"
1401 | integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==
1402 | dependencies:
1403 | array-unique "^0.3.2"
1404 | define-property "^1.0.0"
1405 | expand-brackets "^2.1.4"
1406 | extend-shallow "^2.0.1"
1407 | fragment-cache "^0.2.1"
1408 | regex-not "^1.0.0"
1409 | snapdragon "^0.8.1"
1410 | to-regex "^3.0.1"
1411 |
1412 | file-uri-to-path@1.0.0:
1413 | version "1.0.0"
1414 | resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd"
1415 | integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==
1416 |
1417 | fill-range@^4.0.0:
1418 | version "4.0.0"
1419 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7"
1420 | integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=
1421 | dependencies:
1422 | extend-shallow "^2.0.1"
1423 | is-number "^3.0.0"
1424 | repeat-string "^1.6.1"
1425 | to-regex-range "^2.1.0"
1426 |
1427 | fill-range@^7.0.1:
1428 | version "7.0.1"
1429 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
1430 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
1431 | dependencies:
1432 | to-regex-range "^5.0.1"
1433 |
1434 | find-up@^4.0.0:
1435 | version "4.1.0"
1436 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19"
1437 | integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==
1438 | dependencies:
1439 | locate-path "^5.0.0"
1440 | path-exists "^4.0.0"
1441 |
1442 | for-in@^1.0.2:
1443 | version "1.0.2"
1444 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
1445 | integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=
1446 |
1447 | fragment-cache@^0.2.1:
1448 | version "0.2.1"
1449 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19"
1450 | integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=
1451 | dependencies:
1452 | map-cache "^0.2.2"
1453 |
1454 | front-matter@^3.1.0:
1455 | version "3.1.0"
1456 | resolved "https://registry.yarnpkg.com/front-matter/-/front-matter-3.1.0.tgz#a0b758c3c6c39ce43e107dd0909a57d42964c2de"
1457 | integrity sha512-RFEK8N6waWTdwBZOPNEtvwMjZ/hUfpwXkYUYkmmOhQGdhSulXhWrFwiUhdhkduLDiIwbROl/faF1X/PC/GGRMw==
1458 | dependencies:
1459 | js-yaml "^3.13.1"
1460 |
1461 | fs-extra@^0.30.0:
1462 | version "0.30.0"
1463 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-0.30.0.tgz#f233ffcc08d4da7d432daa449776989db1df93f0"
1464 | integrity sha1-8jP/zAjU2n1DLapEl3aYnbHfk/A=
1465 | dependencies:
1466 | graceful-fs "^4.1.2"
1467 | jsonfile "^2.1.0"
1468 | klaw "^1.0.0"
1469 | path-is-absolute "^1.0.0"
1470 | rimraf "^2.2.8"
1471 |
1472 | fs.realpath@^1.0.0:
1473 | version "1.0.0"
1474 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
1475 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
1476 |
1477 | fsevents@^1.2.7:
1478 | version "1.2.11"
1479 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.11.tgz#67bf57f4758f02ede88fb2a1712fef4d15358be3"
1480 | integrity sha512-+ux3lx6peh0BpvY0JebGyZoiR4D+oYzdPZMKJwkZ+sFkNJzpL7tXc/wehS49gUAxg3tmMHPHZkA8JU2rhhgDHw==
1481 | dependencies:
1482 | bindings "^1.5.0"
1483 | nan "^2.12.1"
1484 |
1485 | fsevents@~2.1.2:
1486 | version "2.1.2"
1487 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.2.tgz#4c0a1fb34bc68e543b4b82a9ec392bfbda840805"
1488 | integrity sha512-R4wDiBwZ0KzpgOWetKDug1FZcYhqYnUYKtfZYt4mD5SBz76q0KR4Q9o7GIPamsVPGmW3EYPPJ0dOOjvx32ldZA==
1489 |
1490 | function-bind@^1.1.1:
1491 | version "1.1.1"
1492 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
1493 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
1494 |
1495 | gatsby-source-rss-feed@^1.1.1:
1496 | version "1.1.1"
1497 | resolved "https://registry.yarnpkg.com/gatsby-source-rss-feed/-/gatsby-source-rss-feed-1.1.1.tgz#f929e8bdb3b74bcfcc7402d0b1db100727f14301"
1498 | integrity sha512-plPlNJl74gQAnfocu6g0wH9bD5P2Radq4ujANhMWoc+fjIhOJAXy3Iq9FYXrZhMG/PrG2aYNPP0DGUzxP3tvCw==
1499 | dependencies:
1500 | lodash "^4.17.11"
1501 | rss-parser "^3.6.2"
1502 |
1503 | gensync@^1.0.0-beta.1:
1504 | version "1.0.0-beta.1"
1505 | resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.1.tgz#58f4361ff987e5ff6e1e7a210827aa371eaac269"
1506 | integrity sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg==
1507 |
1508 | get-stdin@^7.0.0:
1509 | version "7.0.0"
1510 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-7.0.0.tgz#8d5de98f15171a125c5e516643c7a6d0ea8a96f6"
1511 | integrity sha512-zRKcywvrXlXsA0v0i9Io4KDRaAw7+a1ZpjRwl9Wox8PFlVCCHra7E9c4kqXCoCM9nR5tBkaTTZRBoCm60bFqTQ==
1512 |
1513 | get-value@^2.0.3, get-value@^2.0.6:
1514 | version "2.0.6"
1515 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28"
1516 | integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=
1517 |
1518 | glob-parent@^3.1.0:
1519 | version "3.1.0"
1520 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae"
1521 | integrity sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=
1522 | dependencies:
1523 | is-glob "^3.1.0"
1524 | path-dirname "^1.0.0"
1525 |
1526 | glob-parent@~5.1.0:
1527 | version "5.1.0"
1528 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.0.tgz#5f4c1d1e748d30cd73ad2944b3577a81b081e8c2"
1529 | integrity sha512-qjtRgnIVmOfnKUE3NJAQEdk+lKrxfw8t5ke7SXtfMTHcjsBfOfWXCQfdb30zfDoZQ2IRSIiidmjtbHZPZ++Ihw==
1530 | dependencies:
1531 | is-glob "^4.0.1"
1532 |
1533 | glob@^7.1.3:
1534 | version "7.1.6"
1535 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6"
1536 | integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==
1537 | dependencies:
1538 | fs.realpath "^1.0.0"
1539 | inflight "^1.0.4"
1540 | inherits "2"
1541 | minimatch "^3.0.4"
1542 | once "^1.3.0"
1543 | path-is-absolute "^1.0.0"
1544 |
1545 | globals@^11.1.0:
1546 | version "11.12.0"
1547 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
1548 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
1549 |
1550 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9:
1551 | version "4.2.3"
1552 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.3.tgz#4a12ff1b60376ef09862c2093edd908328be8423"
1553 | integrity sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ==
1554 |
1555 | has-flag@^3.0.0:
1556 | version "3.0.0"
1557 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
1558 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
1559 |
1560 | has-flag@^4.0.0:
1561 | version "4.0.0"
1562 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
1563 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
1564 |
1565 | has-symbols@^1.0.0, has-symbols@^1.0.1:
1566 | version "1.0.1"
1567 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8"
1568 | integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==
1569 |
1570 | has-value@^0.3.1:
1571 | version "0.3.1"
1572 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f"
1573 | integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=
1574 | dependencies:
1575 | get-value "^2.0.3"
1576 | has-values "^0.1.4"
1577 | isobject "^2.0.0"
1578 |
1579 | has-value@^1.0.0:
1580 | version "1.0.0"
1581 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177"
1582 | integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=
1583 | dependencies:
1584 | get-value "^2.0.6"
1585 | has-values "^1.0.0"
1586 | isobject "^3.0.0"
1587 |
1588 | has-values@^0.1.4:
1589 | version "0.1.4"
1590 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771"
1591 | integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E=
1592 |
1593 | has-values@^1.0.0:
1594 | version "1.0.0"
1595 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f"
1596 | integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=
1597 | dependencies:
1598 | is-number "^3.0.0"
1599 | kind-of "^4.0.0"
1600 |
1601 | has@^1.0.3:
1602 | version "1.0.3"
1603 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
1604 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
1605 | dependencies:
1606 | function-bind "^1.1.1"
1607 |
1608 | he@^1.2.0:
1609 | version "1.2.0"
1610 | resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f"
1611 | integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==
1612 |
1613 | hosted-git-info@^2.1.4:
1614 | version "2.8.9"
1615 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9"
1616 | integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==
1617 |
1618 | html-minifier@^4.0.0:
1619 | version "4.0.0"
1620 | resolved "https://registry.yarnpkg.com/html-minifier/-/html-minifier-4.0.0.tgz#cca9aad8bce1175e02e17a8c33e46d8988889f56"
1621 | integrity sha512-aoGxanpFPLg7MkIl/DDFYtb0iWz7jMFGqFhvEDZga6/4QTjneiD8I/NXL1x5aaoCp7FSIT6h/OhykDdPsbtMig==
1622 | dependencies:
1623 | camel-case "^3.0.0"
1624 | clean-css "^4.2.1"
1625 | commander "^2.19.0"
1626 | he "^1.2.0"
1627 | param-case "^2.1.1"
1628 | relateurl "^0.2.7"
1629 | uglify-js "^3.5.1"
1630 |
1631 | http-link-header@^1.0.2:
1632 | version "1.0.2"
1633 | resolved "https://registry.yarnpkg.com/http-link-header/-/http-link-header-1.0.2.tgz#bea50f02e1c7996021f1013b428c63f77e0f4e11"
1634 | integrity sha512-z6YOZ8ZEnejkcCWlGZzYXNa6i+ZaTfiTg3WhlV/YvnNya3W/RbX1bMVUMTuCrg/DrtTCQxaFCkXCz4FtLpcebg==
1635 |
1636 | husky@^4.0.3:
1637 | version "4.0.7"
1638 | resolved "https://registry.yarnpkg.com/husky/-/husky-4.0.7.tgz#cee4301d1db1d731be9c2aa2ac72b46439d30c91"
1639 | integrity sha512-ULivTOe0k+nNjZKIojoHxXjybtEycaba0EDuk1G8iNGD8wZgo8Sr3YiN8bKitXNpI1RvVKTJwRnh2GLysLbxMQ==
1640 | dependencies:
1641 | chalk "^3.0.0"
1642 | ci-info "^2.0.0"
1643 | cosmiconfig "^6.0.0"
1644 | get-stdin "^7.0.0"
1645 | opencollective-postinstall "^2.0.2"
1646 | pkg-dir "^4.2.0"
1647 | please-upgrade-node "^3.2.0"
1648 | slash "^3.0.0"
1649 | which-pm-runs "^1.0.0"
1650 |
1651 | import-fresh@^3.1.0:
1652 | version "3.2.1"
1653 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.1.tgz#633ff618506e793af5ac91bf48b72677e15cbe66"
1654 | integrity sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==
1655 | dependencies:
1656 | parent-module "^1.0.0"
1657 | resolve-from "^4.0.0"
1658 |
1659 | inflight@^1.0.4:
1660 | version "1.0.6"
1661 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
1662 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=
1663 | dependencies:
1664 | once "^1.3.0"
1665 | wrappy "1"
1666 |
1667 | inherits@2, inherits@^2.0.3, inherits@~2.0.3:
1668 | version "2.0.4"
1669 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
1670 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
1671 |
1672 | invariant@^2.2.2, invariant@^2.2.4:
1673 | version "2.2.4"
1674 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6"
1675 | integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==
1676 | dependencies:
1677 | loose-envify "^1.0.0"
1678 |
1679 | is-accessor-descriptor@^0.1.6:
1680 | version "0.1.6"
1681 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6"
1682 | integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=
1683 | dependencies:
1684 | kind-of "^3.0.2"
1685 |
1686 | is-accessor-descriptor@^1.0.0:
1687 | version "1.0.0"
1688 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656"
1689 | integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==
1690 | dependencies:
1691 | kind-of "^6.0.0"
1692 |
1693 | is-arrayish@^0.2.1:
1694 | version "0.2.1"
1695 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
1696 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=
1697 |
1698 | is-binary-path@^1.0.0:
1699 | version "1.0.1"
1700 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
1701 | integrity sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=
1702 | dependencies:
1703 | binary-extensions "^1.0.0"
1704 |
1705 | is-binary-path@~2.1.0:
1706 | version "2.1.0"
1707 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
1708 | integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==
1709 | dependencies:
1710 | binary-extensions "^2.0.0"
1711 |
1712 | is-buffer@^1.1.5:
1713 | version "1.1.6"
1714 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
1715 | integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==
1716 |
1717 | is-callable@^1.1.4, is-callable@^1.1.5:
1718 | version "1.1.5"
1719 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.5.tgz#f7e46b596890456db74e7f6e976cb3273d06faab"
1720 | integrity sha512-ESKv5sMCJB2jnHTWZ3O5itG+O128Hsus4K4Qh1h2/cgn2vbgnLSVqfV46AeJA9D5EeeLa9w81KUXMtn34zhX+Q==
1721 |
1722 | is-data-descriptor@^0.1.4:
1723 | version "0.1.4"
1724 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56"
1725 | integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=
1726 | dependencies:
1727 | kind-of "^3.0.2"
1728 |
1729 | is-data-descriptor@^1.0.0:
1730 | version "1.0.0"
1731 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7"
1732 | integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==
1733 | dependencies:
1734 | kind-of "^6.0.0"
1735 |
1736 | is-date-object@^1.0.1:
1737 | version "1.0.2"
1738 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e"
1739 | integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==
1740 |
1741 | is-descriptor@^0.1.0:
1742 | version "0.1.6"
1743 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca"
1744 | integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==
1745 | dependencies:
1746 | is-accessor-descriptor "^0.1.6"
1747 | is-data-descriptor "^0.1.4"
1748 | kind-of "^5.0.0"
1749 |
1750 | is-descriptor@^1.0.0, is-descriptor@^1.0.2:
1751 | version "1.0.2"
1752 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec"
1753 | integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==
1754 | dependencies:
1755 | is-accessor-descriptor "^1.0.0"
1756 | is-data-descriptor "^1.0.0"
1757 | kind-of "^6.0.2"
1758 |
1759 | is-extendable@^0.1.0, is-extendable@^0.1.1:
1760 | version "0.1.1"
1761 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
1762 | integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=
1763 |
1764 | is-extendable@^1.0.1:
1765 | version "1.0.1"
1766 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4"
1767 | integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==
1768 | dependencies:
1769 | is-plain-object "^2.0.4"
1770 |
1771 | is-extglob@^2.1.0, is-extglob@^2.1.1:
1772 | version "2.1.1"
1773 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
1774 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=
1775 |
1776 | is-glob@^3.1.0:
1777 | version "3.1.0"
1778 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a"
1779 | integrity sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=
1780 | dependencies:
1781 | is-extglob "^2.1.0"
1782 |
1783 | is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1:
1784 | version "4.0.1"
1785 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc"
1786 | integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==
1787 | dependencies:
1788 | is-extglob "^2.1.1"
1789 |
1790 | is-module@^1.0.0:
1791 | version "1.0.0"
1792 | resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591"
1793 | integrity sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=
1794 |
1795 | is-number@^3.0.0:
1796 | version "3.0.0"
1797 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
1798 | integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=
1799 | dependencies:
1800 | kind-of "^3.0.2"
1801 |
1802 | is-number@^7.0.0:
1803 | version "7.0.0"
1804 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
1805 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
1806 |
1807 | is-plain-object@^2.0.3, is-plain-object@^2.0.4:
1808 | version "2.0.4"
1809 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677"
1810 | integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==
1811 | dependencies:
1812 | isobject "^3.0.1"
1813 |
1814 | is-reference@^1.1.2:
1815 | version "1.1.4"
1816 | resolved "https://registry.yarnpkg.com/is-reference/-/is-reference-1.1.4.tgz#3f95849886ddb70256a3e6d062b1a68c13c51427"
1817 | integrity sha512-uJA/CDPO3Tao3GTrxYn6AwkM4nUPJiGGYu5+cB8qbC7WGFlrKZbiRo7SFKxUAEpFUfiHofWCXBUNhvYJMh+6zw==
1818 | dependencies:
1819 | "@types/estree" "0.0.39"
1820 |
1821 | is-regex@^1.0.5:
1822 | version "1.0.5"
1823 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.5.tgz#39d589a358bf18967f726967120b8fc1aed74eae"
1824 | integrity sha512-vlKW17SNq44owv5AQR3Cq0bQPEb8+kF3UKZ2fiZNOWtztYE5i0CzCZxFDwO58qAOWtxdBRVO/V5Qin1wjCqFYQ==
1825 | dependencies:
1826 | has "^1.0.3"
1827 |
1828 | is-symbol@^1.0.2:
1829 | version "1.0.3"
1830 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937"
1831 | integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==
1832 | dependencies:
1833 | has-symbols "^1.0.1"
1834 |
1835 | is-windows@^1.0.2:
1836 | version "1.0.2"
1837 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d"
1838 | integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==
1839 |
1840 | isarray@1.0.0, isarray@~1.0.0:
1841 | version "1.0.0"
1842 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
1843 | integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=
1844 |
1845 | isexe@^2.0.0:
1846 | version "2.0.0"
1847 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
1848 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=
1849 |
1850 | isobject@^2.0.0:
1851 | version "2.1.0"
1852 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
1853 | integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=
1854 | dependencies:
1855 | isarray "1.0.0"
1856 |
1857 | isobject@^3.0.0, isobject@^3.0.1:
1858 | version "3.0.1"
1859 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
1860 | integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8=
1861 |
1862 | jest-worker@^24.9.0:
1863 | version "24.9.0"
1864 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-24.9.0.tgz#5dbfdb5b2d322e98567898238a9697bcce67b3e5"
1865 | integrity sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==
1866 | dependencies:
1867 | merge-stream "^2.0.0"
1868 | supports-color "^6.1.0"
1869 |
1870 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
1871 | version "4.0.0"
1872 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
1873 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
1874 |
1875 | js-yaml@^3.13.1:
1876 | version "3.13.1"
1877 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847"
1878 | integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==
1879 | dependencies:
1880 | argparse "^1.0.7"
1881 | esprima "^4.0.0"
1882 |
1883 | jsesc@^2.5.1:
1884 | version "2.5.2"
1885 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4"
1886 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==
1887 |
1888 | jsesc@~0.5.0:
1889 | version "0.5.0"
1890 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
1891 | integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=
1892 |
1893 | json-parse-better-errors@^1.0.1:
1894 | version "1.0.2"
1895 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9"
1896 | integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==
1897 |
1898 | json5@^2.1.0:
1899 | version "2.1.1"
1900 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.1.tgz#81b6cb04e9ba496f1c7005d07b4368a2638f90b6"
1901 | integrity sha512-l+3HXD0GEI3huGq1njuqtzYK8OYJyXMkOLtQ53pjWh89tvWS2h6l+1zMkYWqlb57+SiQodKZyvMEFb2X+KrFhQ==
1902 | dependencies:
1903 | minimist "^1.2.0"
1904 |
1905 | jsonfile@^2.1.0:
1906 | version "2.4.0"
1907 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8"
1908 | integrity sha1-NzaitCi4e72gzIO1P6PWM6NcKug=
1909 | optionalDependencies:
1910 | graceful-fs "^4.1.6"
1911 |
1912 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0:
1913 | version "3.2.2"
1914 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
1915 | integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=
1916 | dependencies:
1917 | is-buffer "^1.1.5"
1918 |
1919 | kind-of@^4.0.0:
1920 | version "4.0.0"
1921 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57"
1922 | integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc=
1923 | dependencies:
1924 | is-buffer "^1.1.5"
1925 |
1926 | kind-of@^5.0.0:
1927 | version "5.1.0"
1928 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d"
1929 | integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==
1930 |
1931 | kind-of@^6.0.0, kind-of@^6.0.2:
1932 | version "6.0.2"
1933 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051"
1934 | integrity sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==
1935 |
1936 | klaw@^1.0.0:
1937 | version "1.3.1"
1938 | resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439"
1939 | integrity sha1-QIhDO0azsbolnXh4XY6W9zugJDk=
1940 | optionalDependencies:
1941 | graceful-fs "^4.1.9"
1942 |
1943 | leven@^3.1.0:
1944 | version "3.1.0"
1945 | resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2"
1946 | integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==
1947 |
1948 | levenary@^1.1.0:
1949 | version "1.1.0"
1950 | resolved "https://registry.yarnpkg.com/levenary/-/levenary-1.1.0.tgz#fc146fe75f32dc483a0a2c64aef720f602cd6210"
1951 | integrity sha512-VHcwhO0UTpUW7rLPN2/OiWJdgA1e9BqEDALhrgCe/F+uUJnep6CoUsTzMeP8Rh0NGr9uKquXxqe7lwLZo509nQ==
1952 | dependencies:
1953 | leven "^3.1.0"
1954 |
1955 | lines-and-columns@^1.1.6:
1956 | version "1.1.6"
1957 | resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00"
1958 | integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=
1959 |
1960 | load-json-file@^4.0.0:
1961 | version "4.0.0"
1962 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b"
1963 | integrity sha1-L19Fq5HjMhYjT9U62rZo607AmTs=
1964 | dependencies:
1965 | graceful-fs "^4.1.2"
1966 | parse-json "^4.0.0"
1967 | pify "^3.0.0"
1968 | strip-bom "^3.0.0"
1969 |
1970 | locate-path@^5.0.0:
1971 | version "5.0.0"
1972 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0"
1973 | integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==
1974 | dependencies:
1975 | p-locate "^4.1.0"
1976 |
1977 | lodash@^4.17.11, lodash@^4.17.13:
1978 | version "4.17.21"
1979 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
1980 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
1981 |
1982 | loose-envify@^1.0.0:
1983 | version "1.4.0"
1984 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
1985 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
1986 | dependencies:
1987 | js-tokens "^3.0.0 || ^4.0.0"
1988 |
1989 | lower-case@^1.1.1:
1990 | version "1.1.4"
1991 | resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-1.1.4.tgz#9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac"
1992 | integrity sha1-miyr0bno4K6ZOkv31YdcOcQujqw=
1993 |
1994 | magic-string@^0.25.2:
1995 | version "0.25.6"
1996 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.6.tgz#5586387d1242f919c6d223579cc938bf1420795e"
1997 | integrity sha512-3a5LOMSGoCTH5rbqobC2HuDNRtE2glHZ8J7pK+QZYppyWA36yuNpsX994rIY2nCuyP7CZYy7lQq/X2jygiZ89g==
1998 | dependencies:
1999 | sourcemap-codec "^1.4.4"
2000 |
2001 | map-cache@^0.2.2:
2002 | version "0.2.2"
2003 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"
2004 | integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=
2005 |
2006 | map-visit@^1.0.0:
2007 | version "1.0.0"
2008 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"
2009 | integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=
2010 | dependencies:
2011 | object-visit "^1.0.0"
2012 |
2013 | marked@^0.8.0:
2014 | version "0.8.0"
2015 | resolved "https://registry.yarnpkg.com/marked/-/marked-0.8.0.tgz#ec5c0c9b93878dc52dd54be8d0e524097bd81a99"
2016 | integrity sha512-MyUe+T/Pw4TZufHkzAfDj6HarCBWia2y27/bhuYkTaiUnfDYFnCP3KUN+9oM7Wi6JA2rymtVYbQu3spE0GCmxQ==
2017 |
2018 | memorystream@^0.3.1:
2019 | version "0.3.1"
2020 | resolved "https://registry.yarnpkg.com/memorystream/-/memorystream-0.3.1.tgz#86d7090b30ce455d63fbae12dda51a47ddcaf9b2"
2021 | integrity sha1-htcJCzDORV1j+64S3aUaR93K+bI=
2022 |
2023 | merge-stream@^2.0.0:
2024 | version "2.0.0"
2025 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60"
2026 | integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==
2027 |
2028 | micromatch@^3.1.10, micromatch@^3.1.4:
2029 | version "3.1.10"
2030 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23"
2031 | integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==
2032 | dependencies:
2033 | arr-diff "^4.0.0"
2034 | array-unique "^0.3.2"
2035 | braces "^2.3.1"
2036 | define-property "^2.0.2"
2037 | extend-shallow "^3.0.2"
2038 | extglob "^2.0.4"
2039 | fragment-cache "^0.2.1"
2040 | kind-of "^6.0.2"
2041 | nanomatch "^1.2.9"
2042 | object.pick "^1.3.0"
2043 | regex-not "^1.0.0"
2044 | snapdragon "^0.8.1"
2045 | to-regex "^3.0.2"
2046 |
2047 | mime-db@1.43.0, "mime-db@>= 1.43.0 < 2":
2048 | version "1.43.0"
2049 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.43.0.tgz#0a12e0502650e473d735535050e7c8f4eb4fae58"
2050 | integrity sha512-+5dsGEEovYbT8UY9yD7eE4XTc4UwJ1jBYlgaQQF38ENsKR3wj/8q8RFZrF9WIZpB2V1ArTVFUva8sAul1NzRzQ==
2051 |
2052 | mime-types@~2.1.24:
2053 | version "2.1.26"
2054 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.26.tgz#9c921fc09b7e149a65dfdc0da4d20997200b0a06"
2055 | integrity sha512-01paPWYgLrkqAyrlDorC1uDwl2p3qZT7yl806vW7DvDoxwXi46jsjFbg+WdwotBIk6/MbEhO/dh5aZ5sNj/dWQ==
2056 | dependencies:
2057 | mime-db "1.43.0"
2058 |
2059 | mime@^2.3.1:
2060 | version "2.4.4"
2061 | resolved "https://registry.yarnpkg.com/mime/-/mime-2.4.4.tgz#bd7b91135fc6b01cde3e9bae33d659b63d8857e5"
2062 | integrity sha512-LRxmNwziLPT828z+4YkNzloCFC2YM4wrB99k+AV5ZbEyfGNWfG8SO1FUXLmLDBSo89NrJZ4DIWeLjy1CHGhMGA==
2063 |
2064 | minimatch@^3.0.4:
2065 | version "3.1.2"
2066 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
2067 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
2068 | dependencies:
2069 | brace-expansion "^1.1.7"
2070 |
2071 | minimist@^1.2.0:
2072 | version "1.2.6"
2073 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44"
2074 | integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==
2075 |
2076 | mixin-deep@^1.2.0:
2077 | version "1.3.2"
2078 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566"
2079 | integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==
2080 | dependencies:
2081 | for-in "^1.0.2"
2082 | is-extendable "^1.0.1"
2083 |
2084 | ms@2.0.0:
2085 | version "2.0.0"
2086 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
2087 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=
2088 |
2089 | ms@^2.1.1:
2090 | version "2.1.2"
2091 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
2092 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
2093 |
2094 | nan@^2.12.1:
2095 | version "2.14.0"
2096 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.0.tgz#7818f722027b2459a86f0295d434d1fc2336c52c"
2097 | integrity sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg==
2098 |
2099 | nanomatch@^1.2.9:
2100 | version "1.2.13"
2101 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119"
2102 | integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==
2103 | dependencies:
2104 | arr-diff "^4.0.0"
2105 | array-unique "^0.3.2"
2106 | define-property "^2.0.2"
2107 | extend-shallow "^3.0.2"
2108 | fragment-cache "^0.2.1"
2109 | is-windows "^1.0.2"
2110 | kind-of "^6.0.2"
2111 | object.pick "^1.3.0"
2112 | regex-not "^1.0.0"
2113 | snapdragon "^0.8.1"
2114 | to-regex "^3.0.1"
2115 |
2116 | negotiator@0.6.2:
2117 | version "0.6.2"
2118 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb"
2119 | integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==
2120 |
2121 | nice-try@^1.0.4:
2122 | version "1.0.5"
2123 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366"
2124 | integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==
2125 |
2126 | no-case@^2.2.0:
2127 | version "2.3.2"
2128 | resolved "https://registry.yarnpkg.com/no-case/-/no-case-2.3.2.tgz#60b813396be39b3f1288a4c1ed5d1e7d28b464ac"
2129 | integrity sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==
2130 | dependencies:
2131 | lower-case "^1.1.1"
2132 |
2133 | node-releases@^1.1.71:
2134 | version "1.1.72"
2135 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.72.tgz#14802ab6b1039a79a0c7d662b610a5bbd76eacbe"
2136 | integrity sha512-LLUo+PpH3dU6XizX3iVoubUNheF/owjXCZZ5yACDxNnPtgFuludV1ZL3ayK1kVep42Rmm0+R9/Y60NQbZ2bifw==
2137 |
2138 | normalize-package-data@^2.3.2:
2139 | version "2.5.0"
2140 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8"
2141 | integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==
2142 | dependencies:
2143 | hosted-git-info "^2.1.4"
2144 | resolve "^1.10.0"
2145 | semver "2 || 3 || 4 || 5"
2146 | validate-npm-package-license "^3.0.1"
2147 |
2148 | normalize-path@^2.1.1:
2149 | version "2.1.1"
2150 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
2151 | integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=
2152 | dependencies:
2153 | remove-trailing-separator "^1.0.1"
2154 |
2155 | normalize-path@^3.0.0, normalize-path@~3.0.0:
2156 | version "3.0.0"
2157 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
2158 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
2159 |
2160 | npm-run-all@^4.1.5:
2161 | version "4.1.5"
2162 | resolved "https://registry.yarnpkg.com/npm-run-all/-/npm-run-all-4.1.5.tgz#04476202a15ee0e2e214080861bff12a51d98fba"
2163 | integrity sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==
2164 | dependencies:
2165 | ansi-styles "^3.2.1"
2166 | chalk "^2.4.1"
2167 | cross-spawn "^6.0.5"
2168 | memorystream "^0.3.1"
2169 | minimatch "^3.0.4"
2170 | pidtree "^0.3.0"
2171 | read-pkg "^3.0.0"
2172 | shell-quote "^1.6.1"
2173 | string.prototype.padend "^3.0.0"
2174 |
2175 | object-copy@^0.1.0:
2176 | version "0.1.0"
2177 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c"
2178 | integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw=
2179 | dependencies:
2180 | copy-descriptor "^0.1.0"
2181 | define-property "^0.2.5"
2182 | kind-of "^3.0.3"
2183 |
2184 | object-inspect@^1.7.0:
2185 | version "1.7.0"
2186 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.7.0.tgz#f4f6bd181ad77f006b5ece60bd0b6f398ff74a67"
2187 | integrity sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw==
2188 |
2189 | object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1:
2190 | version "1.1.1"
2191 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
2192 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
2193 |
2194 | object-visit@^1.0.0:
2195 | version "1.0.1"
2196 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb"
2197 | integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=
2198 | dependencies:
2199 | isobject "^3.0.0"
2200 |
2201 | object.assign@^4.1.0:
2202 | version "4.1.0"
2203 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da"
2204 | integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==
2205 | dependencies:
2206 | define-properties "^1.1.2"
2207 | function-bind "^1.1.1"
2208 | has-symbols "^1.0.0"
2209 | object-keys "^1.0.11"
2210 |
2211 | object.pick@^1.3.0:
2212 | version "1.3.0"
2213 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747"
2214 | integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=
2215 | dependencies:
2216 | isobject "^3.0.1"
2217 |
2218 | on-headers@~1.0.2:
2219 | version "1.0.2"
2220 | resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f"
2221 | integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==
2222 |
2223 | once@^1.3.0:
2224 | version "1.4.0"
2225 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
2226 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E=
2227 | dependencies:
2228 | wrappy "1"
2229 |
2230 | opencollective-postinstall@^2.0.2:
2231 | version "2.0.2"
2232 | resolved "https://registry.yarnpkg.com/opencollective-postinstall/-/opencollective-postinstall-2.0.2.tgz#5657f1bede69b6e33a45939b061eb53d3c6c3a89"
2233 | integrity sha512-pVOEP16TrAO2/fjej1IdOyupJY8KDUM1CvsaScRbw6oddvpQoOfGk4ywha0HKKVAD6RkW4x6Q+tNBwhf3Bgpuw==
2234 |
2235 | p-limit@^2.2.0:
2236 | version "2.2.2"
2237 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.2.tgz#61279b67721f5287aa1c13a9a7fbbc48c9291b1e"
2238 | integrity sha512-WGR+xHecKTr7EbUEhyLSh5Dube9JtdiG78ufaeLxTgpudf/20KqyMioIUZJAezlTIi6evxuoUs9YXc11cU+yzQ==
2239 | dependencies:
2240 | p-try "^2.0.0"
2241 |
2242 | p-locate@^4.1.0:
2243 | version "4.1.0"
2244 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07"
2245 | integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==
2246 | dependencies:
2247 | p-limit "^2.2.0"
2248 |
2249 | p-try@^2.0.0:
2250 | version "2.2.0"
2251 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
2252 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
2253 |
2254 | param-case@^2.1.1:
2255 | version "2.1.1"
2256 | resolved "https://registry.yarnpkg.com/param-case/-/param-case-2.1.1.tgz#df94fd8cf6531ecf75e6bef9a0858fbc72be2247"
2257 | integrity sha1-35T9jPZTHs915r75oIWPvHK+Ikc=
2258 | dependencies:
2259 | no-case "^2.2.0"
2260 |
2261 | parent-module@^1.0.0:
2262 | version "1.0.1"
2263 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
2264 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
2265 | dependencies:
2266 | callsites "^3.0.0"
2267 |
2268 | parse-json@^4.0.0:
2269 | version "4.0.0"
2270 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0"
2271 | integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=
2272 | dependencies:
2273 | error-ex "^1.3.1"
2274 | json-parse-better-errors "^1.0.1"
2275 |
2276 | parse-json@^5.0.0:
2277 | version "5.0.0"
2278 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.0.0.tgz#73e5114c986d143efa3712d4ea24db9a4266f60f"
2279 | integrity sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw==
2280 | dependencies:
2281 | "@babel/code-frame" "^7.0.0"
2282 | error-ex "^1.3.1"
2283 | json-parse-better-errors "^1.0.1"
2284 | lines-and-columns "^1.1.6"
2285 |
2286 | pascalcase@^0.1.1:
2287 | version "0.1.1"
2288 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14"
2289 | integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=
2290 |
2291 | path-dirname@^1.0.0:
2292 | version "1.0.2"
2293 | resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0"
2294 | integrity sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=
2295 |
2296 | path-exists@^4.0.0:
2297 | version "4.0.0"
2298 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3"
2299 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==
2300 |
2301 | path-is-absolute@^1.0.0:
2302 | version "1.0.1"
2303 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
2304 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
2305 |
2306 | path-key@^2.0.1:
2307 | version "2.0.1"
2308 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
2309 | integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=
2310 |
2311 | path-parse@^1.0.6:
2312 | version "1.0.7"
2313 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
2314 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
2315 |
2316 | path-type@^3.0.0:
2317 | version "3.0.0"
2318 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f"
2319 | integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==
2320 | dependencies:
2321 | pify "^3.0.0"
2322 |
2323 | path-type@^4.0.0:
2324 | version "4.0.0"
2325 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
2326 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
2327 |
2328 | picomatch@^2.0.4, picomatch@^2.0.7:
2329 | version "2.2.1"
2330 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.1.tgz#21bac888b6ed8601f831ce7816e335bc779f0a4a"
2331 | integrity sha512-ISBaA8xQNmwELC7eOjqFKMESB2VIqt4PPDD0nsS95b/9dZXvVKOlz9keMSnoGGKcOHXfTvDD6WMaRoSc9UuhRA==
2332 |
2333 | pidtree@^0.3.0:
2334 | version "0.3.0"
2335 | resolved "https://registry.yarnpkg.com/pidtree/-/pidtree-0.3.0.tgz#f6fada10fccc9f99bf50e90d0b23d72c9ebc2e6b"
2336 | integrity sha512-9CT4NFlDcosssyg8KVFltgokyKZIFjoBxw8CTGy+5F38Y1eQWrt8tRayiUOXE+zVKQnYu5BR8JjCtvK3BcnBhg==
2337 |
2338 | pify@^3.0.0:
2339 | version "3.0.0"
2340 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"
2341 | integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=
2342 |
2343 | pkg-dir@^4.2.0:
2344 | version "4.2.0"
2345 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3"
2346 | integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==
2347 | dependencies:
2348 | find-up "^4.0.0"
2349 |
2350 | please-upgrade-node@^3.2.0:
2351 | version "3.2.0"
2352 | resolved "https://registry.yarnpkg.com/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz#aeddd3f994c933e4ad98b99d9a556efa0e2fe942"
2353 | integrity sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==
2354 | dependencies:
2355 | semver-compare "^1.0.0"
2356 |
2357 | polka@next:
2358 | version "1.0.0-next.10"
2359 | resolved "https://registry.yarnpkg.com/polka/-/polka-1.0.0-next.10.tgz#ab72d9f7c0195886a56000d2c05f9c15ee70c890"
2360 | integrity sha512-pugMNx3Qlg6C14gIdkLG3QgUhNDmKL+C4sUzinuS1NcQ/pRQdM1eTQnWQNzK1Pr0hJ1Ma7Wh37C7SQq6ApIp6A==
2361 | dependencies:
2362 | "@polka/url" "^1.0.0-next.9"
2363 | trouter "^3.1.0"
2364 |
2365 | posix-character-classes@^0.1.0:
2366 | version "0.1.1"
2367 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"
2368 | integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=
2369 |
2370 | prettier-plugin-svelte@^0.7.0:
2371 | version "0.7.0"
2372 | resolved "https://registry.yarnpkg.com/prettier-plugin-svelte/-/prettier-plugin-svelte-0.7.0.tgz#5ac0b9f194e0450c88ff1e167cbf3b32d2642df2"
2373 | integrity sha512-SuZSeMh48rx42kCFEpI/xE1XgjxQcS3r22Yo7jIhBYRhwbAa8laNxiIHsfeWWkX8BdyELkEayaTQp4ricckwTQ==
2374 | dependencies:
2375 | tslib "^1.9.3"
2376 |
2377 | prettier@^1.19.1:
2378 | version "1.19.1"
2379 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.19.1.tgz#f7d7f5ff8a9cd872a7be4ca142095956a60797cb"
2380 | integrity sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew==
2381 |
2382 | private@^0.1.6:
2383 | version "0.1.8"
2384 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff"
2385 | integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==
2386 |
2387 | process-nextick-args@~2.0.0:
2388 | version "2.0.1"
2389 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
2390 | integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==
2391 |
2392 | read-pkg@^3.0.0:
2393 | version "3.0.0"
2394 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389"
2395 | integrity sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=
2396 | dependencies:
2397 | load-json-file "^4.0.0"
2398 | normalize-package-data "^2.3.2"
2399 | path-type "^3.0.0"
2400 |
2401 | readable-stream@^2.0.2:
2402 | version "2.3.7"
2403 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57"
2404 | integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==
2405 | dependencies:
2406 | core-util-is "~1.0.0"
2407 | inherits "~2.0.3"
2408 | isarray "~1.0.0"
2409 | process-nextick-args "~2.0.0"
2410 | safe-buffer "~5.1.1"
2411 | string_decoder "~1.1.1"
2412 | util-deprecate "~1.0.1"
2413 |
2414 | readdirp@^2.2.1:
2415 | version "2.2.1"
2416 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525"
2417 | integrity sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==
2418 | dependencies:
2419 | graceful-fs "^4.1.11"
2420 | micromatch "^3.1.10"
2421 | readable-stream "^2.0.2"
2422 |
2423 | readdirp@~3.3.0:
2424 | version "3.3.0"
2425 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.3.0.tgz#984458d13a1e42e2e9f5841b129e162f369aff17"
2426 | integrity sha512-zz0pAkSPOXXm1viEwygWIPSPkcBYjW1xU5j/JBh5t9bGCJwa6f9+BJa6VaB2g+b55yVrmXzqkyLf4xaWYM0IkQ==
2427 | dependencies:
2428 | picomatch "^2.0.7"
2429 |
2430 | reading-time@^1.2.0:
2431 | version "1.2.0"
2432 | resolved "https://registry.yarnpkg.com/reading-time/-/reading-time-1.2.0.tgz#ced71c06715762f805506328dcc1fd45d8249ac4"
2433 | integrity sha512-5b4XmKK4MEss63y0Lw0vn0Zn6G5kiHP88mUnD8UeEsyORj3sh1ghTH0/u6m1Ax9G2F4wUZrknlp6WlIsCvoXVA==
2434 |
2435 | regenerate-unicode-properties@^8.1.0:
2436 | version "8.1.0"
2437 | resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.1.0.tgz#ef51e0f0ea4ad424b77bf7cb41f3e015c70a3f0e"
2438 | integrity sha512-LGZzkgtLY79GeXLm8Dp0BVLdQlWICzBnJz/ipWUgo59qBaZ+BHtq51P2q1uVZlppMuUAT37SDk39qUbjTWB7bA==
2439 | dependencies:
2440 | regenerate "^1.4.0"
2441 |
2442 | regenerate@^1.4.0:
2443 | version "1.4.0"
2444 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11"
2445 | integrity sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==
2446 |
2447 | regenerator-runtime@^0.11.0:
2448 | version "0.11.1"
2449 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9"
2450 | integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==
2451 |
2452 | regenerator-runtime@^0.13.2:
2453 | version "0.13.3"
2454 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.3.tgz#7cf6a77d8f5c6f60eb73c5fc1955b2ceb01e6bf5"
2455 | integrity sha512-naKIZz2GQ8JWh///G7L3X6LaQUAMp2lvb1rvwwsURe/VXwD6VMfr+/1NuNw3ag8v2kY1aQ/go5SNn79O9JU7yw==
2456 |
2457 | regenerator-transform@^0.14.0:
2458 | version "0.14.1"
2459 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.1.tgz#3b2fce4e1ab7732c08f665dfdb314749c7ddd2fb"
2460 | integrity sha512-flVuee02C3FKRISbxhXl9mGzdbWUVHubl1SMaknjxkFB1/iqpJhArQUvRxOOPEc/9tAiX0BaQ28FJH10E4isSQ==
2461 | dependencies:
2462 | private "^0.1.6"
2463 |
2464 | regex-not@^1.0.0, regex-not@^1.0.2:
2465 | version "1.0.2"
2466 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c"
2467 | integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==
2468 | dependencies:
2469 | extend-shallow "^3.0.2"
2470 | safe-regex "^1.1.0"
2471 |
2472 | regexparam@^1.3.0:
2473 | version "1.3.0"
2474 | resolved "https://registry.yarnpkg.com/regexparam/-/regexparam-1.3.0.tgz#2fe42c93e32a40eff6235d635e0ffa344b92965f"
2475 | integrity sha512-6IQpFBv6e5vz1QAqI+V4k8P2e/3gRrqfCJ9FI+O1FLQTO+Uz6RXZEZOPmTJ6hlGj7gkERzY5BRCv09whKP96/g==
2476 |
2477 | regexpu-core@^4.6.0:
2478 | version "4.6.0"
2479 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.6.0.tgz#2037c18b327cfce8a6fea2a4ec441f2432afb8b6"
2480 | integrity sha512-YlVaefl8P5BnFYOITTNzDvan1ulLOiXJzCNZxduTIosN17b87h3bvG9yHMoHaRuo88H4mQ06Aodj5VtYGGGiTg==
2481 | dependencies:
2482 | regenerate "^1.4.0"
2483 | regenerate-unicode-properties "^8.1.0"
2484 | regjsgen "^0.5.0"
2485 | regjsparser "^0.6.0"
2486 | unicode-match-property-ecmascript "^1.0.4"
2487 | unicode-match-property-value-ecmascript "^1.1.0"
2488 |
2489 | regjsgen@^0.5.0:
2490 | version "0.5.1"
2491 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.1.tgz#48f0bf1a5ea205196929c0d9798b42d1ed98443c"
2492 | integrity sha512-5qxzGZjDs9w4tzT3TPhCJqWdCc3RLYwy9J2NB0nm5Lz+S273lvWcpjaTGHsT1dc6Hhfq41uSEOw8wBmxrKOuyg==
2493 |
2494 | regjsparser@^0.6.0:
2495 | version "0.6.2"
2496 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.2.tgz#fd62c753991467d9d1ffe0a9f67f27a529024b96"
2497 | integrity sha512-E9ghzUtoLwDekPT0DYCp+c4h+bvuUpe6rRHCTYn6eGoqj1LgKXxT6I0Il4WbjhQkOghzi/V+y03bPKvbllL93Q==
2498 | dependencies:
2499 | jsesc "~0.5.0"
2500 |
2501 | relateurl@^0.2.7:
2502 | version "0.2.7"
2503 | resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9"
2504 | integrity sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=
2505 |
2506 | remove-trailing-separator@^1.0.1:
2507 | version "1.1.0"
2508 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
2509 | integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8=
2510 |
2511 | repeat-element@^1.1.2:
2512 | version "1.1.3"
2513 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce"
2514 | integrity sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==
2515 |
2516 | repeat-string@^1.6.1:
2517 | version "1.6.1"
2518 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
2519 | integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc=
2520 |
2521 | require-relative@^0.8.7:
2522 | version "0.8.7"
2523 | resolved "https://registry.yarnpkg.com/require-relative/-/require-relative-0.8.7.tgz#7999539fc9e047a37928fa196f8e1563dabd36de"
2524 | integrity sha1-eZlTn8ngR6N5KPoZb44VY9q9Nt4=
2525 |
2526 | resolve-from@^4.0.0:
2527 | version "4.0.0"
2528 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
2529 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
2530 |
2531 | resolve-url@^0.2.1:
2532 | version "0.2.1"
2533 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
2534 | integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=
2535 |
2536 | resolve@^1.10.0, resolve@^1.11.0, resolve@^1.11.1, resolve@^1.3.2, resolve@^1.5.0, resolve@^1.8.1:
2537 | version "1.14.2"
2538 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.14.2.tgz#dbf31d0fa98b1f29aa5169783b9c290cb865fea2"
2539 | integrity sha512-EjlOBLBO1kxsUxsKjLt7TAECyKW6fOh1VRkykQkKGzcBbjjPIxBqGh0jf7GJ3k/f5mxMqW3htMD3WdTUVtW8HQ==
2540 | dependencies:
2541 | path-parse "^1.0.6"
2542 |
2543 | ret@~0.1.10:
2544 | version "0.1.15"
2545 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"
2546 | integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==
2547 |
2548 | rimraf@^2.2.8:
2549 | version "2.7.1"
2550 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec"
2551 | integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==
2552 | dependencies:
2553 | glob "^7.1.3"
2554 |
2555 | rollup-plugin-babel@^4.0.2:
2556 | version "4.3.3"
2557 | resolved "https://registry.yarnpkg.com/rollup-plugin-babel/-/rollup-plugin-babel-4.3.3.tgz#7eb5ac16d9b5831c3fd5d97e8df77ba25c72a2aa"
2558 | integrity sha512-tKzWOCmIJD/6aKNz0H1GMM+lW1q9KyFubbWzGiOG540zxPPifnEAHTZwjo0g991Y+DyOZcLqBgqOdqazYE5fkw==
2559 | dependencies:
2560 | "@babel/helper-module-imports" "^7.0.0"
2561 | rollup-pluginutils "^2.8.1"
2562 |
2563 | rollup-plugin-sass@^1.2.2:
2564 | version "1.2.2"
2565 | resolved "https://registry.yarnpkg.com/rollup-plugin-sass/-/rollup-plugin-sass-1.2.2.tgz#f03cd2b1bee497dc2cc845fae2c5749611fc008f"
2566 | integrity sha512-yvHQPg1JS4d23gwHTwTbokH+FV/0bPBVf5QmlvCOzfAhXe0luY0pUgVaWC2qfnoKetp2Oqh5lK7oW/4CXGWs1Q==
2567 | dependencies:
2568 | babel-runtime "^6.23.0"
2569 | fs-extra "^0.30.0"
2570 | pify "^3.0.0"
2571 | resolve "^1.5.0"
2572 | rollup-pluginutils ">= 1.3.1"
2573 | sass "1.7.2"
2574 |
2575 | rollup-plugin-svelte@^5.0.1:
2576 | version "5.1.1"
2577 | resolved "https://registry.yarnpkg.com/rollup-plugin-svelte/-/rollup-plugin-svelte-5.1.1.tgz#0094f94e7e6ff7579bcd9f7769b454751ba670e1"
2578 | integrity sha512-wP3CnKHjR4fZUgNm5Iey7eItnxwnH/nAw568WJ8dpMSchBxxZ/DmKSx8e6h8k/B6SwG1wfGvWehadFJHcuFFSw==
2579 | dependencies:
2580 | require-relative "^0.8.7"
2581 | rollup-pluginutils "^2.3.3"
2582 | sourcemap-codec "^1.4.4"
2583 |
2584 | rollup-plugin-terser@^5.1.3:
2585 | version "5.2.0"
2586 | resolved "https://registry.yarnpkg.com/rollup-plugin-terser/-/rollup-plugin-terser-5.2.0.tgz#ba758adf769347b7f1eaf9ef35978d2e207dccc7"
2587 | integrity sha512-jQI+nYhtDBc9HFRBz8iGttQg7li9klmzR62RG2W2nN6hJ/FI2K2ItYQ7kJ7/zn+vs+BP1AEccmVRjRN989I+Nw==
2588 | dependencies:
2589 | "@babel/code-frame" "^7.5.5"
2590 | jest-worker "^24.9.0"
2591 | rollup-pluginutils "^2.8.2"
2592 | serialize-javascript "^2.1.2"
2593 | terser "^4.6.2"
2594 |
2595 | "rollup-pluginutils@>= 1.3.1", rollup-pluginutils@^2.3.3, rollup-pluginutils@^2.5.0, rollup-pluginutils@^2.6.0, rollup-pluginutils@^2.8.1, rollup-pluginutils@^2.8.2:
2596 | version "2.8.2"
2597 | resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz#72f2af0748b592364dbd3389e600e5a9444a351e"
2598 | integrity sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==
2599 | dependencies:
2600 | estree-walker "^0.6.1"
2601 |
2602 | rollup@^1.20.0:
2603 | version "1.29.0"
2604 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-1.29.0.tgz#6a1a79eea43ca9d3d79a90c15a1ceecedc72097b"
2605 | integrity sha512-V63Iz0dSdI5qPPN5HmCN6OBRzBFhMqNWcvwgq863JtSCTU6Vdvqq6S2fYle/dSCyoPrBkIP3EIr1RVs3HTRqqg==
2606 | dependencies:
2607 | "@types/estree" "*"
2608 | "@types/node" "*"
2609 | acorn "^7.1.0"
2610 |
2611 | rss-parser@^3.6.2:
2612 | version "3.7.3"
2613 | resolved "https://registry.yarnpkg.com/rss-parser/-/rss-parser-3.7.3.tgz#961cd155ca26cb2ba8f52aa7f2321099b8b5ecf0"
2614 | integrity sha512-Ys+fC5wHqWkfR+jNEL7QvC0crUCAcygxHel3ab9QQzHjmH7fNz379lrp984CuCPUf3WzxHEa73lL86W7yc9qjQ==
2615 | dependencies:
2616 | entities "^1.1.1"
2617 | xml2js "^0.4.19"
2618 |
2619 | safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
2620 | version "5.1.2"
2621 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
2622 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
2623 |
2624 | safe-regex@^1.1.0:
2625 | version "1.1.0"
2626 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e"
2627 | integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4=
2628 | dependencies:
2629 | ret "~0.1.10"
2630 |
2631 | sapper-sources@^0.0.2:
2632 | version "0.0.2"
2633 | resolved "https://registry.yarnpkg.com/sapper-sources/-/sapper-sources-0.0.2.tgz#36a81201698e852a43a6ac2b3b5ce84f3858911a"
2634 | integrity sha512-VN3+x0lAFA10a0ZsbCiwm78JPWx/HFxulKZso3ChhJoy+jpfoGOwQcNd1Qi4QW9IRtyWEIDc6bLOPBs/6NxaDw==
2635 | dependencies:
2636 | front-matter "^3.1.0"
2637 | marked "^0.8.0"
2638 | uuidv5 "^1.0.0"
2639 |
2640 | sapper@^0.27.11:
2641 | version "0.27.11"
2642 | resolved "https://registry.yarnpkg.com/sapper/-/sapper-0.27.11.tgz#46877abe8a386bee62b9decfe9932fe37f5464f7"
2643 | integrity sha512-5EaPZhlc8OnyN3UCI6dRSM1Gz5sxyzLZG/1z5nMvZhg9Ng+rSvEvJx/rW/tSHcnQPa8or7+YcbfvQHKS5oPHiw==
2644 | dependencies:
2645 | html-minifier "^4.0.0"
2646 | http-link-header "^1.0.2"
2647 | shimport "^1.0.1"
2648 | sourcemap-codec "^1.4.6"
2649 | string-hash "^1.1.3"
2650 |
2651 | sass@1.7.2:
2652 | version "1.7.2"
2653 | resolved "https://registry.yarnpkg.com/sass/-/sass-1.7.2.tgz#a8ff878ad9dcba65e226c1ccb2c2f3c7a1009578"
2654 | integrity sha512-zUm2NXL77WtQDbp4MKgysAxH41Fzs5BnBUogEPi8IKNQ1M5rKoFe46YBXfxr0I+cQX+xbSc//psSdq5eyYhJsg==
2655 | dependencies:
2656 | chokidar "^2.0.0"
2657 |
2658 | sass@^1.24.3:
2659 | version "1.24.4"
2660 | resolved "https://registry.yarnpkg.com/sass/-/sass-1.24.4.tgz#aa50575a9ed2b9e9645b5599156fd149bdad9eaa"
2661 | integrity sha512-SqizkIEEcVPzmK1tYdlNRl/RSXMEwGcifL9GD+S2p9rEPdj6ycRbk4PWZs0jwlajNSyBPo/SXRB81i22SG0jmw==
2662 | dependencies:
2663 | chokidar ">=2.0.0 <4.0.0"
2664 |
2665 | sax@>=0.6.0:
2666 | version "1.2.4"
2667 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
2668 | integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==
2669 |
2670 | semver-compare@^1.0.0:
2671 | version "1.0.0"
2672 | resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc"
2673 | integrity sha1-De4hahyUGrN+nvsXiPavxf9VN/w=
2674 |
2675 | "semver@2 || 3 || 4 || 5", semver@^5.4.1, semver@^5.5.0, semver@^5.5.1:
2676 | version "5.7.1"
2677 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
2678 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
2679 |
2680 | semver@7.0.0:
2681 | version "7.0.0"
2682 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e"
2683 | integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==
2684 |
2685 | semver@^7.1.1:
2686 | version "7.1.1"
2687 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.1.1.tgz#29104598a197d6cbe4733eeecbe968f7b43a9667"
2688 | integrity sha512-WfuG+fl6eh3eZ2qAf6goB7nhiCd7NPXhmyFxigB/TOkQyeLP8w8GsVehvtGNtnNmyboz4TgeK40B1Kbql/8c5A==
2689 |
2690 | serialize-javascript@^2.1.2:
2691 | version "2.1.2"
2692 | resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-2.1.2.tgz#ecec53b0e0317bdc95ef76ab7074b7384785fa61"
2693 | integrity sha512-rs9OggEUF0V4jUSecXazOYsLfu7OGK2qIn3c7IPBiffz32XniEp/TX9Xmc9LQfK2nQ2QKHvZ2oygKUGU0lG4jQ==
2694 |
2695 | set-value@^2.0.0, set-value@^2.0.1:
2696 | version "2.0.1"
2697 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b"
2698 | integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==
2699 | dependencies:
2700 | extend-shallow "^2.0.1"
2701 | is-extendable "^0.1.1"
2702 | is-plain-object "^2.0.3"
2703 | split-string "^3.0.1"
2704 |
2705 | shebang-command@^1.2.0:
2706 | version "1.2.0"
2707 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
2708 | integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=
2709 | dependencies:
2710 | shebang-regex "^1.0.0"
2711 |
2712 | shebang-regex@^1.0.0:
2713 | version "1.0.0"
2714 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
2715 | integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=
2716 |
2717 | shell-quote@^1.6.1:
2718 | version "1.7.3"
2719 | resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.3.tgz#aa40edac170445b9a431e17bb62c0b881b9c4123"
2720 | integrity sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==
2721 |
2722 | shimport@^1.0.1:
2723 | version "1.0.1"
2724 | resolved "https://registry.yarnpkg.com/shimport/-/shimport-1.0.1.tgz#32ea5637e7707fdfa9037516f8c2a97786fc9031"
2725 | integrity sha512-Imf4gH+8WQmT1GvxS/x79qpmfnE6m50hyN1ucatX+7oMCgmaF8obZWCPIzSUe6+P+YmXM46lkP2pxiV2/lt9Og==
2726 |
2727 | sirv@^0.4.0:
2728 | version "0.4.2"
2729 | resolved "https://registry.yarnpkg.com/sirv/-/sirv-0.4.2.tgz#842ed22f3aab58faee84eea66cf66066e123d6db"
2730 | integrity sha512-dQbZnsMaIiTQPZmbGmktz+c74zt/hyrJEB4tdp2Jj0RNv9J6B/OWR5RyrZEvIn9fyh9Zlg2OlE2XzKz6wMKGAw==
2731 | dependencies:
2732 | "@polka/url" "^0.5.0"
2733 | mime "^2.3.1"
2734 |
2735 | slash@^3.0.0:
2736 | version "3.0.0"
2737 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"
2738 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
2739 |
2740 | snapdragon-node@^2.0.1:
2741 | version "2.1.1"
2742 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b"
2743 | integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==
2744 | dependencies:
2745 | define-property "^1.0.0"
2746 | isobject "^3.0.0"
2747 | snapdragon-util "^3.0.1"
2748 |
2749 | snapdragon-util@^3.0.1:
2750 | version "3.0.1"
2751 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2"
2752 | integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==
2753 | dependencies:
2754 | kind-of "^3.2.0"
2755 |
2756 | snapdragon@^0.8.1:
2757 | version "0.8.2"
2758 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d"
2759 | integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==
2760 | dependencies:
2761 | base "^0.11.1"
2762 | debug "^2.2.0"
2763 | define-property "^0.2.5"
2764 | extend-shallow "^2.0.1"
2765 | map-cache "^0.2.2"
2766 | source-map "^0.5.6"
2767 | source-map-resolve "^0.5.0"
2768 | use "^3.1.0"
2769 |
2770 | source-map-resolve@^0.5.0:
2771 | version "0.5.3"
2772 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a"
2773 | integrity sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==
2774 | dependencies:
2775 | atob "^2.1.2"
2776 | decode-uri-component "^0.2.0"
2777 | resolve-url "^0.2.1"
2778 | source-map-url "^0.4.0"
2779 | urix "^0.1.0"
2780 |
2781 | source-map-support@~0.5.12:
2782 | version "0.5.21"
2783 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f"
2784 | integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==
2785 | dependencies:
2786 | buffer-from "^1.0.0"
2787 | source-map "^0.6.0"
2788 |
2789 | source-map-url@^0.4.0:
2790 | version "0.4.0"
2791 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3"
2792 | integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=
2793 |
2794 | source-map@^0.5.0, source-map@^0.5.6:
2795 | version "0.5.7"
2796 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
2797 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=
2798 |
2799 | source-map@^0.6.0, source-map@~0.6.0, source-map@~0.6.1:
2800 | version "0.6.1"
2801 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
2802 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
2803 |
2804 | sourcemap-codec@^1.4.4, sourcemap-codec@^1.4.6:
2805 | version "1.4.7"
2806 | resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.7.tgz#5b2cd184e3fe51fd30ba049f7f62bf499b4f73ae"
2807 | integrity sha512-RuN23NzhAOuUtaivhcrjXx1OPXsFeH9m5sI373/U7+tGLKihjUyboZAzOadytMjnqHp1f45RGk1IzDKCpDpSYA==
2808 |
2809 | spdx-correct@^3.0.0:
2810 | version "3.1.0"
2811 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4"
2812 | integrity sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q==
2813 | dependencies:
2814 | spdx-expression-parse "^3.0.0"
2815 | spdx-license-ids "^3.0.0"
2816 |
2817 | spdx-exceptions@^2.1.0:
2818 | version "2.2.0"
2819 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz#2ea450aee74f2a89bfb94519c07fcd6f41322977"
2820 | integrity sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA==
2821 |
2822 | spdx-expression-parse@^3.0.0:
2823 | version "3.0.0"
2824 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0"
2825 | integrity sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==
2826 | dependencies:
2827 | spdx-exceptions "^2.1.0"
2828 | spdx-license-ids "^3.0.0"
2829 |
2830 | spdx-license-ids@^3.0.0:
2831 | version "3.0.5"
2832 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz#3694b5804567a458d3c8045842a6358632f62654"
2833 | integrity sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q==
2834 |
2835 | split-string@^3.0.1, split-string@^3.0.2:
2836 | version "3.1.0"
2837 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2"
2838 | integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==
2839 | dependencies:
2840 | extend-shallow "^3.0.0"
2841 |
2842 | sprintf-js@~1.0.2:
2843 | version "1.0.3"
2844 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
2845 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=
2846 |
2847 | static-extend@^0.1.1:
2848 | version "0.1.2"
2849 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6"
2850 | integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=
2851 | dependencies:
2852 | define-property "^0.2.5"
2853 | object-copy "^0.1.0"
2854 |
2855 | string-hash@^1.1.3:
2856 | version "1.1.3"
2857 | resolved "https://registry.yarnpkg.com/string-hash/-/string-hash-1.1.3.tgz#e8aafc0ac1855b4666929ed7dd1275df5d6c811b"
2858 | integrity sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs=
2859 |
2860 | string.prototype.padend@^3.0.0:
2861 | version "3.1.0"
2862 | resolved "https://registry.yarnpkg.com/string.prototype.padend/-/string.prototype.padend-3.1.0.tgz#dc08f57a8010dc5c153550318f67e13adbb72ac3"
2863 | integrity sha512-3aIv8Ffdp8EZj8iLwREGpQaUZiPyrWrpzMBHvkiSW/bK/EGve9np07Vwy7IJ5waydpGXzQZu/F8Oze2/IWkBaA==
2864 | dependencies:
2865 | define-properties "^1.1.3"
2866 | es-abstract "^1.17.0-next.1"
2867 |
2868 | string.prototype.trimleft@^2.1.1:
2869 | version "2.1.1"
2870 | resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.1.tgz#9bdb8ac6abd6d602b17a4ed321870d2f8dcefc74"
2871 | integrity sha512-iu2AGd3PuP5Rp7x2kEZCrB2Nf41ehzh+goo8TV7z8/XDBbsvc6HQIlUl9RjkZ4oyrW1XM5UwlGl1oVEaDjg6Ag==
2872 | dependencies:
2873 | define-properties "^1.1.3"
2874 | function-bind "^1.1.1"
2875 |
2876 | string.prototype.trimright@^2.1.1:
2877 | version "2.1.1"
2878 | resolved "https://registry.yarnpkg.com/string.prototype.trimright/-/string.prototype.trimright-2.1.1.tgz#440314b15996c866ce8a0341894d45186200c5d9"
2879 | integrity sha512-qFvWL3/+QIgZXVmJBfpHmxLB7xsUXz6HsUmP8+5dRaC3Q7oKUv9Vo6aMCRZC1smrtyECFsIT30PqBJ1gTjAs+g==
2880 | dependencies:
2881 | define-properties "^1.1.3"
2882 | function-bind "^1.1.1"
2883 |
2884 | string_decoder@~1.1.1:
2885 | version "1.1.1"
2886 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8"
2887 | integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==
2888 | dependencies:
2889 | safe-buffer "~5.1.0"
2890 |
2891 | strip-bom@^3.0.0:
2892 | version "3.0.0"
2893 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
2894 | integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=
2895 |
2896 | strip-indent@^2.0.0:
2897 | version "2.0.0"
2898 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68"
2899 | integrity sha1-XvjbKV0B5u1sv3qrlpmNeCJSe2g=
2900 |
2901 | supports-color@^5.3.0:
2902 | version "5.5.0"
2903 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
2904 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
2905 | dependencies:
2906 | has-flag "^3.0.0"
2907 |
2908 | supports-color@^6.1.0:
2909 | version "6.1.0"
2910 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3"
2911 | integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==
2912 | dependencies:
2913 | has-flag "^3.0.0"
2914 |
2915 | supports-color@^7.1.0:
2916 | version "7.1.0"
2917 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.1.0.tgz#68e32591df73e25ad1c4b49108a2ec507962bfd1"
2918 | integrity sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==
2919 | dependencies:
2920 | has-flag "^4.0.0"
2921 |
2922 | svelte-preprocess@^3.3.0:
2923 | version "3.3.0"
2924 | resolved "https://registry.yarnpkg.com/svelte-preprocess/-/svelte-preprocess-3.3.0.tgz#7732b0b25f02e40b518c6a3818e625f9b8ec4d14"
2925 | integrity sha512-/N7VUebaU1U8Zpv1rsmfmOPERowOwSbJVkYl/6OKYqVRAyWW76t3U9M/2Ri1FzgTghadh+XpTfLngDm5iZMSYQ==
2926 | dependencies:
2927 | "@types/pug" "^2.0.4"
2928 | "@types/sass" "^1.16.0"
2929 | detect-indent "^6.0.0"
2930 | strip-indent "^2.0.0"
2931 |
2932 | svelte@^3.49.0:
2933 | version "3.49.0"
2934 | resolved "https://registry.yarnpkg.com/svelte/-/svelte-3.49.0.tgz#5baee3c672306de1070c3b7888fc2204e36a4029"
2935 | integrity sha512-+lmjic1pApJWDfPCpUUTc1m8azDqYCG1JN9YEngrx/hUyIcFJo6VZhj0A1Ai0wqoHcEIuQy+e9tk+4uDgdtsFA==
2936 |
2937 | terser@^4.6.2:
2938 | version "4.8.1"
2939 | resolved "https://registry.yarnpkg.com/terser/-/terser-4.8.1.tgz#a00e5634562de2239fd404c649051bf6fc21144f"
2940 | integrity sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==
2941 | dependencies:
2942 | commander "^2.20.0"
2943 | source-map "~0.6.1"
2944 | source-map-support "~0.5.12"
2945 |
2946 | to-fast-properties@^2.0.0:
2947 | version "2.0.0"
2948 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
2949 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=
2950 |
2951 | to-object-path@^0.3.0:
2952 | version "0.3.0"
2953 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af"
2954 | integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=
2955 | dependencies:
2956 | kind-of "^3.0.2"
2957 |
2958 | to-regex-range@^2.1.0:
2959 | version "2.1.1"
2960 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38"
2961 | integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=
2962 | dependencies:
2963 | is-number "^3.0.0"
2964 | repeat-string "^1.6.1"
2965 |
2966 | to-regex-range@^5.0.1:
2967 | version "5.0.1"
2968 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
2969 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
2970 | dependencies:
2971 | is-number "^7.0.0"
2972 |
2973 | to-regex@^3.0.1, to-regex@^3.0.2:
2974 | version "3.0.2"
2975 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce"
2976 | integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==
2977 | dependencies:
2978 | define-property "^2.0.2"
2979 | extend-shallow "^3.0.2"
2980 | regex-not "^1.0.2"
2981 | safe-regex "^1.1.0"
2982 |
2983 | trouter@^3.1.0:
2984 | version "3.1.0"
2985 | resolved "https://registry.yarnpkg.com/trouter/-/trouter-3.1.0.tgz#76f4faea81d5ebd11bba4762c664a3b55eda9b23"
2986 | integrity sha512-3Swwu638QQWOefHLss9cdyLi5/9BKYmXZEXpH0KOFfB9YZwUAwHbDAcoYxaHfqAeFvbi/LqAK7rGkhCr1v1BJA==
2987 | dependencies:
2988 | regexparam "^1.3.0"
2989 |
2990 | tslib@^1.9.3:
2991 | version "1.10.0"
2992 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.10.0.tgz#c3c19f95973fb0a62973fb09d90d961ee43e5c8a"
2993 | integrity sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==
2994 |
2995 | uglify-js@^3.5.1:
2996 | version "3.7.4"
2997 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.7.4.tgz#e6d83a1aa32ff448bd1679359ab13d8db0fe0743"
2998 | integrity sha512-tinYWE8X1QfCHxS1lBS8yiDekyhSXOO6R66yNOCdUJeojxxw+PX2BHAz/BWyW7PQ7pkiWVxJfIEbiDxyLWvUGg==
2999 | dependencies:
3000 | commander "~2.20.3"
3001 | source-map "~0.6.1"
3002 |
3003 | unicode-canonical-property-names-ecmascript@^1.0.4:
3004 | version "1.0.4"
3005 | resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818"
3006 | integrity sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==
3007 |
3008 | unicode-match-property-ecmascript@^1.0.4:
3009 | version "1.0.4"
3010 | resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c"
3011 | integrity sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==
3012 | dependencies:
3013 | unicode-canonical-property-names-ecmascript "^1.0.4"
3014 | unicode-property-aliases-ecmascript "^1.0.4"
3015 |
3016 | unicode-match-property-value-ecmascript@^1.1.0:
3017 | version "1.1.0"
3018 | resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.1.0.tgz#5b4b426e08d13a80365e0d657ac7a6c1ec46a277"
3019 | integrity sha512-hDTHvaBk3RmFzvSl0UVrUmC3PuW9wKVnpoUDYH0JDkSIovzw+J5viQmeYHxVSBptubnr7PbH2e0fnpDRQnQl5g==
3020 |
3021 | unicode-property-aliases-ecmascript@^1.0.4:
3022 | version "1.0.5"
3023 | resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.5.tgz#a9cc6cc7ce63a0a3023fc99e341b94431d405a57"
3024 | integrity sha512-L5RAqCfXqAwR3RriF8pM0lU0w4Ryf/GgzONwi6KnL1taJQa7x1TCxdJnILX59WIGOwR57IVxn7Nej0fz1Ny6fw==
3025 |
3026 | union-value@^1.0.0:
3027 | version "1.0.1"
3028 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847"
3029 | integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==
3030 | dependencies:
3031 | arr-union "^3.1.0"
3032 | get-value "^2.0.6"
3033 | is-extendable "^0.1.1"
3034 | set-value "^2.0.1"
3035 |
3036 | unset-value@^1.0.0:
3037 | version "1.0.0"
3038 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559"
3039 | integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=
3040 | dependencies:
3041 | has-value "^0.3.1"
3042 | isobject "^3.0.0"
3043 |
3044 | upath@^1.1.1:
3045 | version "1.2.0"
3046 | resolved "https://registry.yarnpkg.com/upath/-/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894"
3047 | integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==
3048 |
3049 | upper-case@^1.1.1:
3050 | version "1.1.3"
3051 | resolved "https://registry.yarnpkg.com/upper-case/-/upper-case-1.1.3.tgz#f6b4501c2ec4cdd26ba78be7222961de77621598"
3052 | integrity sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg=
3053 |
3054 | urix@^0.1.0:
3055 | version "0.1.0"
3056 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72"
3057 | integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=
3058 |
3059 | use@^3.1.0:
3060 | version "3.1.1"
3061 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f"
3062 | integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==
3063 |
3064 | util-deprecate@~1.0.1:
3065 | version "1.0.2"
3066 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
3067 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=
3068 |
3069 | uuidv5@^1.0.0:
3070 | version "1.0.0"
3071 | resolved "https://registry.yarnpkg.com/uuidv5/-/uuidv5-1.0.0.tgz#af98e9befcb462c0ab6c752edd082cb52fb530a0"
3072 | integrity sha1-r5jpvvy0YsCrbHUu3QgstS+1MKA=
3073 |
3074 | validate-npm-package-license@^3.0.1:
3075 | version "3.0.4"
3076 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a"
3077 | integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==
3078 | dependencies:
3079 | spdx-correct "^3.0.0"
3080 | spdx-expression-parse "^3.0.0"
3081 |
3082 | vary@~1.1.2:
3083 | version "1.1.2"
3084 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc"
3085 | integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=
3086 |
3087 | which-pm-runs@^1.0.0:
3088 | version "1.0.0"
3089 | resolved "https://registry.yarnpkg.com/which-pm-runs/-/which-pm-runs-1.0.0.tgz#670b3afbc552e0b55df6b7780ca74615f23ad1cb"
3090 | integrity sha1-Zws6+8VS4LVd9rd4DKdGFfI60cs=
3091 |
3092 | which@^1.2.9:
3093 | version "1.3.1"
3094 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
3095 | integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==
3096 | dependencies:
3097 | isexe "^2.0.0"
3098 |
3099 | wrappy@1:
3100 | version "1.0.2"
3101 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
3102 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
3103 |
3104 | xml2js@^0.4.19:
3105 | version "0.4.23"
3106 | resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.23.tgz#a0c69516752421eb2ac758ee4d4ccf58843eac66"
3107 | integrity sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==
3108 | dependencies:
3109 | sax ">=0.6.0"
3110 | xmlbuilder "~11.0.0"
3111 |
3112 | xmlbuilder@~11.0.0:
3113 | version "11.0.1"
3114 | resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-11.0.1.tgz#be9bae1c8a046e76b31127726347d0ad7002beb3"
3115 | integrity sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==
3116 |
3117 | yaml@^1.7.2:
3118 | version "1.7.2"
3119 | resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.7.2.tgz#f26aabf738590ab61efaca502358e48dc9f348b2"
3120 | integrity sha512-qXROVp90sb83XtAoqE8bP9RwAkTTZbugRUTm5YeFCBfNRPEp2YzTeqWiz7m5OORHzEvrA/qcGS8hp/E+MMROYw==
3121 | dependencies:
3122 | "@babel/runtime" "^7.6.3"
3123 |
--------------------------------------------------------------------------------