├── .editorconfig
├── .eslintrc
├── .gitignore
├── ISSUE_TEMPLATE.md
├── LICENSE
├── Model.js
├── README.md
├── codecrafters-banner.png
├── package-lock.json
├── package.json
├── prettier.config.js
├── public
├── favicon.ico
├── favicon.png
├── feynman.png
├── github.png
├── global.css
├── index.ejs
├── toggle.svg
└── twitter.png
├── rollup.config.js
├── script.js
└── src
├── App.svelte
├── Content.svelte
├── Navbar.svelte
├── ScrollAnchor.svelte
└── main.js
/.editorconfig:
--------------------------------------------------------------------------------
1 | # EditorConfig is awesome: https://EditorConfig.org
2 |
3 | # top-most EditorConfig file
4 | root = true
5 |
6 | # Unix-style newlines with a newline ending every file
7 | [*]
8 | end_of_line = lf
9 | insert_final_newline = true
10 |
11 | [*.{js,ts,css}]
12 | indent_style = space
13 | indent_size = 2
--------------------------------------------------------------------------------
/.eslintrc:
--------------------------------------------------------------------------------
1 | {
2 | "env": {
3 | "browser": true,
4 | "es6": true,
5 | "node": true,
6 | "jest": true
7 | },
8 | "plugins": ["svelte3"],
9 | "extends": ["standard", "prettier"],
10 | "overrides": [
11 | {
12 | "files": ["**/*.svelte"],
13 | "processor": "svelte3/svelte3"
14 | }
15 | ],
16 | "parserOptions": {
17 | "ecmaVersion": 2018,
18 | "sourceType": "module"
19 | },
20 | "rules": {
21 | "no-var": "error",
22 | "spaced-comment": "off"
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | /node_modules/
2 | /public/build/
3 |
4 | .vscode
5 | .DS_Store
6 |
7 | # Logs
8 | logs
9 | *.log
10 | npm-debug.log*
11 | yarn-debug.log*
12 | yarn-error.log*
13 | lerna-debug.log*
14 |
15 | # Diagnostic reports (https://nodejs.org/api/report.html)
16 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
17 |
18 | # Runtime data
19 | pids
20 | *.pid
21 | *.seed
22 | *.pid.lock
23 |
24 | # Directory for instrumented libs generated by jscoverage/JSCover
25 | lib-cov
26 |
27 | # Coverage directory used by tools like istanbul
28 | coverage
29 | *.lcov
30 |
31 | # nyc test coverage
32 | .nyc_output
33 |
34 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
35 | .grunt
36 |
37 | # Bower dependency directory (https://bower.io/)
38 | bower_components
39 |
40 | *.tsbuildinfo
41 |
42 | .npm
43 | .eslintcache
44 |
45 | .yarn-integrity
46 |
47 | # dotenv environment variables file
48 | .env
49 | .env.test
50 |
51 | .now
52 | public/index.html
--------------------------------------------------------------------------------
/ISSUE_TEMPLATE.md:
--------------------------------------------------------------------------------
1 |
4 |
5 | ### Main programming language
6 |
7 |
8 | ### Tutorial title
9 |
10 |
11 | ### Tutorial URL
12 |
13 | ### Category
14 | * [ ] 3D Renderer
15 | * [ ] Augmented Reality
16 | * [ ] BitTorrent Client
17 | * [ ] Blockchain / Cryptocurrency
18 | * [ ] Bot
19 | * [ ] Command-Line Tool
20 | * [ ] Database
21 | * [ ] Docker
22 | * [ ] Emulator / Virtual Machine
23 | * [ ] Front-end Framework / Library
24 | * [ ] Game
25 | * [ ] Git
26 | * [ ] Network Stack
27 | * [ ] Neural Network
28 | * [ ] Operating System
29 | * [ ] Physics Engine
30 | * [ ] Programming Language
31 | * [ ] Regex Engine
32 | * [ ] Search Engine
33 | * [ ] Shell
34 | * [ ] Template Engine
35 | * [ ] Visual Recognition System
36 | * [ ] Voxel Engine
37 | * [ ] Web Search Engine
38 | * [ ] Web Server
39 | * [ ] Uncategorized
40 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | Creative Commons Legal Code
2 |
3 | CC0 1.0 Universal
4 |
5 | CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE
6 | LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN
7 | ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS
8 | INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES
9 | REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS
10 | PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM
11 | THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED
12 | HEREUNDER.
13 |
14 | Statement of Purpose
15 |
16 | The laws of most jurisdictions throughout the world automatically confer
17 | exclusive Copyright and Related Rights (defined below) upon the creator
18 | and subsequent owner(s) (each and all, an "owner") of an original work of
19 | authorship and/or a database (each, a "Work").
20 |
21 | Certain owners wish to permanently relinquish those rights to a Work for
22 | the purpose of contributing to a commons of creative, cultural and
23 | scientific works ("Commons") that the public can reliably and without fear
24 | of later claims of infringement build upon, modify, incorporate in other
25 | works, reuse and redistribute as freely as possible in any form whatsoever
26 | and for any purposes, including without limitation commercial purposes.
27 | These owners may contribute to the Commons to promote the ideal of a free
28 | culture and the further production of creative, cultural and scientific
29 | works, or to gain reputation or greater distribution for their Work in
30 | part through the use and efforts of others.
31 |
32 | For these and/or other purposes and motivations, and without any
33 | expectation of additional consideration or compensation, the person
34 | associating CC0 with a Work (the "Affirmer"), to the extent that he or she
35 | is an owner of Copyright and Related Rights in the Work, voluntarily
36 | elects to apply CC0 to the Work and publicly distribute the Work under its
37 | terms, with knowledge of his or her Copyright and Related Rights in the
38 | Work and the meaning and intended legal effect of CC0 on those rights.
39 |
40 | 1. Copyright and Related Rights. A Work made available under CC0 may be
41 | protected by copyright and related or neighboring rights ("Copyright and
42 | Related Rights"). Copyright and Related Rights include, but are not
43 | limited to, the following:
44 |
45 | i. the right to reproduce, adapt, distribute, perform, display,
46 | communicate, and translate a Work;
47 | ii. moral rights retained by the original author(s) and/or performer(s);
48 | iii. publicity and privacy rights pertaining to a person's image or
49 | likeness depicted in a Work;
50 | iv. rights protecting against unfair competition in regards to a Work,
51 | subject to the limitations in paragraph 4(a), below;
52 | v. rights protecting the extraction, dissemination, use and reuse of data
53 | in a Work;
54 | vi. database rights (such as those arising under Directive 96/9/EC of the
55 | European Parliament and of the Council of 11 March 1996 on the legal
56 | protection of databases, and under any national implementation
57 | thereof, including any amended or successor version of such
58 | directive); and
59 | vii. other similar, equivalent or corresponding rights throughout the
60 | world based on applicable law or treaty, and any national
61 | implementations thereof.
62 |
63 | 2. Waiver. To the greatest extent permitted by, but not in contravention
64 | of, applicable law, Affirmer hereby overtly, fully, permanently,
65 | irrevocably and unconditionally waives, abandons, and surrenders all of
66 | Affirmer's Copyright and Related Rights and associated claims and causes
67 | of action, whether now known or unknown (including existing as well as
68 | future claims and causes of action), in the Work (i) in all territories
69 | worldwide, (ii) for the maximum duration provided by applicable law or
70 | treaty (including future time extensions), (iii) in any current or future
71 | medium and for any number of copies, and (iv) for any purpose whatsoever,
72 | including without limitation commercial, advertising or promotional
73 | purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each
74 | member of the public at large and to the detriment of Affirmer's heirs and
75 | successors, fully intending that such Waiver shall not be subject to
76 | revocation, rescission, cancellation, termination, or any other legal or
77 | equitable action to disrupt the quiet enjoyment of the Work by the public
78 | as contemplated by Affirmer's express Statement of Purpose.
79 |
80 | 3. Public License Fallback. Should any part of the Waiver for any reason
81 | be judged legally invalid or ineffective under applicable law, then the
82 | Waiver shall be preserved to the maximum extent permitted taking into
83 | account Affirmer's express Statement of Purpose. In addition, to the
84 | extent the Waiver is so judged Affirmer hereby grants to each affected
85 | person a royalty-free, non transferable, non sublicensable, non exclusive,
86 | irrevocable and unconditional license to exercise Affirmer's Copyright and
87 | Related Rights in the Work (i) in all territories worldwide, (ii) for the
88 | maximum duration provided by applicable law or treaty (including future
89 | time extensions), (iii) in any current or future medium and for any number
90 | of copies, and (iv) for any purpose whatsoever, including without
91 | limitation commercial, advertising or promotional purposes (the
92 | "License"). The License shall be deemed effective as of the date CC0 was
93 | applied by Affirmer to the Work. Should any part of the License for any
94 | reason be judged legally invalid or ineffective under applicable law, such
95 | partial invalidity or ineffectiveness shall not invalidate the remainder
96 | of the License, and in such case Affirmer hereby affirms that he or she
97 | will not (i) exercise any of his or her remaining Copyright and Related
98 | Rights in the Work or (ii) assert any associated claims and causes of
99 | action with respect to the Work, in either case contrary to Affirmer's
100 | express Statement of Purpose.
101 |
102 | 4. Limitations and Disclaimers.
103 |
104 | a. No trademark or patent rights held by Affirmer are waived, abandoned,
105 | surrendered, licensed or otherwise affected by this document.
106 | b. Affirmer offers the Work as-is and makes no representations or
107 | warranties of any kind concerning the Work, express, implied,
108 | statutory or otherwise, including without limitation warranties of
109 | title, merchantability, fitness for a particular purpose, non
110 | infringement, or the absence of latent or other defects, accuracy, or
111 | the present or absence of errors, whether or not discoverable, all to
112 | the greatest extent permissible under applicable law.
113 | c. Affirmer disclaims responsibility for clearing rights of other persons
114 | that may apply to the Work or any use thereof, including without
115 | limitation any person's Copyright and Related Rights in the Work.
116 | Further, Affirmer disclaims responsibility for obtaining any necessary
117 | consents, permissions or other rights required for any use of the
118 | Work.
119 | d. Affirmer understands and acknowledges that Creative Commons is not a
120 | party to this document and has no duty or obligation with respect to
121 | this CC0 or use of the Work.
122 |
--------------------------------------------------------------------------------
/Model.js:
--------------------------------------------------------------------------------
1 | const { JSDOM } = require('jsdom');
2 |
3 | class Model {
4 | constructor(html) {
5 | this.html = html;
6 | this.dom = new JSDOM(html);
7 | }
8 |
9 | getCategories() {
10 | const { window } = this.dom;
11 | return Array.from(window.document.querySelectorAll('h4')).map((elm) => ({
12 | text: elm.textContent,
13 | id: elm.id,
14 | posts: this.getPosts(elm.id),
15 | totalCount: this.getPosts(elm.id).length,
16 | }));
17 | }
18 |
19 | getPosts(category) {
20 | const { window } = this.dom;
21 | return Array.from(
22 | window.document.querySelectorAll(`#${category} + ul > li > a`)
23 | ).map((elm) => ({
24 | title: elm.textContent,
25 | language: elm.querySelector('strong')
26 | ? elm.querySelector('strong').textContent
27 | : '',
28 | href: elm.getAttribute('href'),
29 | }));
30 | }
31 |
32 | getTableOfContent() {
33 | const { window } = this.dom;
34 | return Array.from(
35 | window.document.querySelectorAll('h2#table-of-contents + ul > li a')
36 | ).map((elm) => ({
37 | id: elm.getAttribute('href'),
38 | title: elm.textContent,
39 | }));
40 | }
41 |
42 | getLanguages() {
43 | const { window } = this.dom;
44 | return [
45 | ...new Set(
46 | Array.from(window.document.querySelectorAll('a[href^="http"]'))
47 | .map((elm) =>
48 | elm.querySelector('strong')
49 | ? elm.querySelector('strong').textContent
50 | : ''
51 | )
52 | .filter((lang) => !!lang)
53 | ),
54 | ];
55 | }
56 |
57 | serialize() {
58 | return {
59 | tableOfContent: this.getTableOfContent(),
60 | categories: this.getCategories(),
61 | languages: this.getLanguages(),
62 | };
63 | }
64 |
65 | toJSON() {
66 | return JSON.stringify(this.serialize());
67 | }
68 | }
69 |
70 | module.exports = Model;
71 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | ## Table of contents
2 |
3 | - [Table of contents](#table-of-contents)
4 | - [Build your own `3D Renderer`](#build-your-own-3d-renderer)
5 | - [Build your own `Augmented Reality`](#build-your-own-augmented-reality)
6 | - [Build your own `BitTorrent Client`](#build-your-own-bittorrent-client)
7 | - [Build your own `Blockchain / Cryptocurrency`](#build-your-own-blockchain--cryptocurrency)
8 | - [Build your own `Bot`](#build-your-own-bot)
9 | - [Build your own `Command-Line Tool`](#build-your-own-command-line-tool)
10 | - [Build your own `Database`](#build-your-own-database)
11 | - [Build your own `Docker`](#build-your-own-docker)
12 | - [Build your own `Emulator / Virtual Machine`](#build-your-own-emulator--virtual-machine)
13 | - [Build your own `Front-end Framework / Library`](#build-your-own-front-end-framework--library)
14 | - [Build your own `Game`](#build-your-own-game)
15 | - [Build your own `Git`](#build-your-own-git)
16 | - [Build your own `Network Stack`](#build-your-own-network-stack)
17 | - [Build your own `Neural Network`](#build-your-own-neural-network)
18 | - [Build your own `Operating System`](#build-your-own-operating-system)
19 | - [Build your own `Physics Engine`](#build-your-own-physics-engine)
20 | - [Build your own `Programming Language`](#build-your-own-programming-language)
21 | - [Build your own `Regex Engine`](#build-your-own-regex-engine)
22 | - [Build your own `Search Engine`](#build-your-own-search-engine)
23 | - [Build your own `Shell`](#build-your-own-shell)
24 | - [Build your own `Template Engine`](#build-your-own-template-engine)
25 | - [Build your own `Text Editor`](#build-your-own-text-editor)
26 | - [Build your own `Visual Recognition System`](#build-your-own-visual-recognition-system)
27 | - [Build your own `Voxel Engine`](#build-your-own-voxel-engine)
28 | - [Build your own `Web Search Engine`](#build-your-own-web-search-engine)
29 | - [Build your own `Visual Recognition System`](#build-your-own-visual-recognition-system)
30 | - [Build your own `Web Server`](#build-your-own-web-server)
31 | - [Build your own `IoT`](#build-your-own-iot)
32 | - [Build your own `Keyboard`](#build-your-own-keyboard)
33 | - [Build your own `AI`](#build-your-own-ai)
34 | - [Uncategorized](#uncategorized)
35 | - [How to contribute](#how-to-contribute)
36 | - [License](#license)
37 |
38 | #### Build your own `3D Renderer`
39 |
40 | - [**C++**: _Introduction to Ray Tracing: a Simple Method for Creating 3D Images_](https://www.scratchapixel.com/lessons/3d-basic-rendering/introduction-to-ray-tracing/how-does-it-work)
41 | - [**C++**: _How OpenGL works: software rendering in 500 lines of code_](https://github.com/ssloy/tinyrenderer/wiki)
42 | - [**C++**: _Raycasting engine of Wolfenstein 3D_](http://lodev.org/cgtutor/raycasting.html)
43 | - [**C++**: _Physically Based Rendering:From Theory To Implementation_](http://www.pbr-book.org/)
44 | - [**C++**: _Rasterization: a Practical Implementation_](https://www.scratchapixel.com/lessons/3d-basic-rendering/rasterization-practical-implementation/overview-rasterization-algorithm)
45 | - [**C# / TypeScript / JavaScript**: _Learning how to write a 3D soft engine from scratch in C#, TypeScript or JavaScript_](https://www.davrous.com/2013/06/13/tutorial-series-learning-how-to-write-a-3d-soft-engine-from-scratch-in-c-typescript-or-javascript/)
46 | - [**Java / JavaScript**: _Build your own 3D renderer_](https://avik-das.github.io/build-your-own-raytracer/)
47 | - [**Java**: _How to create your own simple 3D render engine in pure Java_](http://blog.rogach.org/2015/08/how-to-create-your-own-simple-3d-render.html)
48 | - [**JavaScript / Pseudocode**: _Computer Graphics from scratch_](http://www.gabrielgambetta.com/computer-graphics-from-scratch/introduction.html)
49 | - [**Python**: _A 3D Modeller_](http://aosabook.org/en/500L/a-3d-modeller.html)
50 | - [**Rust**: _WebGL + Rust: Basic Water Tutorial_](http://www.chinedufn.com/3d-webgl-basic-water-tutorial/)
51 |
52 | #### Build your own `Augmented Reality`
53 |
54 | * [**C#**: _How To: Augmented Reality App Tutorial for Beginners with Vuforia and Unity 3D_](https://www.youtube.com/watch?v=uXNjNcqW4kY) [video]
55 | * [**C#**: _How To Unity ARCore_](https://www.youtube.com/playlist?list=PLKIKuXdn4ZMjuUAtdQfK1vwTZPQn_rgSv) [video]
56 | * [**C#**: _AR Portal Tutorial with Unity_](https://www.youtube.com/playlist?list=PLPCqNOwwN794Gz5fzUSi1p4OqLU0HTmvn) [video]
57 | * [**C#**: _How to create a Dragon in Augmented Reality in Unity ARCore_](https://www.youtube.com/watch?v=qTSDPkPyPqs) [video]
58 | * [**C#**: _How to Augmented Reality AR Tutorial: ARKit Portal to the Upside Down_](https://www.youtube.com/watch?v=Z5AmqMuNi08) [video]
59 | * [**Python**: _Augmented Reality with Python and OpenCV_](https://bitesofcode.wordpress.com/2017/09/12/augmented-reality-with-python-and-opencv-part-1/)
60 |
61 | #### Build your own `BitTorrent Client`
62 |
63 | - [**C#**: _Building a BitTorrent client from scratch in C#_](https://www.seanjoflynn.com/research/bittorrent.html)
64 | - [**Go**: _Building a BitTorrent client from the ground up in Go_](https://blog.jse.li/posts/torrent/)
65 | - [**Nim**: _Writing a Bencode Parser_](https://xmonader.github.io/nimdays/day02_bencode.html)
66 | - [**Node.js**: _Write your own bittorrent client_](https://allenkim67.github.io/programming/2016/05/04/how-to-make-your-own-bittorrent-client.html)
67 | - [**Python**: _A BitTorrent client in Python 3.5_](http://markuseliasson.se/article/bittorrent-in-python/)
68 |
69 | #### Build your own `Blockchain / Cryptocurrency`
70 |
71 | * [**ATS**: _Functional Blockchain_](https://beta.observablehq.com/@galletti94/functional-blockchain)
72 | * [**C#**: _Programming The Blockchain in C#_](https://programmingblockchain.gitbooks.io/programmingblockchain/)
73 | * [**Crystal**: _Write your own blockchain and PoW algorithm using Crystal_](https://medium.com/@bradford_hamilton/write-your-own-blockchain-and-pow-algorithm-using-crystal-d53d5d9d0c52)
74 | * [**Go**: _Building Blockchain in Go_](https://jeiwan.net/posts/building-blockchain-in-go-part-1/)
75 | * [**Go**: _Code your own blockchain in less than 200 lines of Go_](https://medium.com/@mycoralhealth/code-your-own-blockchain-in-less-than-200-lines-of-go-e296282bcffc)
76 | * [**Java**: _Creating Your First Blockchain with Java_](https://medium.com/programmers-blockchain/create-simple-blockchain-java-tutorial-from-scratch-6eeed3cb03fa)
77 | * [**JavaScript**: _A cryptocurrency implementation in less than 1500 lines of code_](https://github.com/conradoqg/naivecoin)
78 | * [**JavaScript**: _Build your own Blockchain in JavaScript_](https://github.com/nambrot/blockchain-in-js)
79 | * [**JavaScript**: _Learn & Build a JavaScript Blockchain_](https://medium.com/digital-alchemy-holdings/learn-build-a-javascript-blockchain-part-1-ca61c285821e)
80 | * [**JavaScript**: _Creating a blockchain with JavaScript_](https://github.com/SavjeeTutorials/SavjeeCoin)
81 | * [**JavaScript**: _How To Launch Your Own Production-Ready Cryptocurrency_](https://hackernoon.com/how-to-launch-your-own-production-ready-cryptocurrency-ab97cb773371)
82 | * [**JavaScript**: _Writing a Blockchain in Node.js_](https://www.hackdoor.io/articles/writing-a-blockchain-in-nodejs-6512fec33307)
83 | * [**Kotlin**: _Let’s implement a cryptocurrency in Kotlin_](https://medium.com/@vasilyf/lets-implement-a-cryptocurrency-in-kotlin-part-1-blockchain-8704069f8580)
84 | * [**Python**: _Learn Blockchains by Building One_](https://hackernoon.com/learn-blockchains-by-building-one-117428612f46)
85 | * [**Python**: _Build your own blockchain: a Python tutorial_](http://ecomunsing.com/build-your-own-blockchain)
86 | * [**Python**: _A Practical Introduction to Blockchain with Python_](http://adilmoujahid.com/posts/2018/03/intro-blockchain-bitcoin-python/)
87 | * [**Python**: _Let’s Build the Tiniest Blockchain_](https://medium.com/crypto-currently/lets-build-the-tiniest-blockchain-e70965a248b)
88 | * [**Ruby**: _Programming Blockchains Step-by-Step (Manuscripts Book Edition)_](https://github.com/yukimotopress/programming-blockchains-step-by-step)
89 | * [**Scala**: _How to build a simple actor-based blockchain_](https://medium.freecodecamp.org/how-to-build-a-simple-actor-based-blockchain-aac1e996c177)
90 | * [**TypeScript**: _Naivecoin: a tutorial for building a cryptocurrency_](https://lhartikk.github.io/)
91 | * [**TypeScript**: _NaivecoinStake: a tutorial for building a cryptocurrency with the Proof of Stake consensus_](https://naivecoinstake.learn.uno/)
92 |
93 | #### Build your own `Bot`
94 |
95 | * [**Haskell**: _Roll your own IRC bot_](https://wiki.haskell.org/Roll_your_own_IRC_bot)
96 | * [**Java**: _How To Make a Scary Russian Twitter Bot With Java_](https://medium.com/@SeloSlav/how-to-make-a-scary-russian-twitter-bot-with-java-b7b62768a3ac)
97 | * [**Node.js**: _Creating a Simple Facebook Messenger AI Bot with API.ai in Node.js_](https://tutorials.botsfloor.com/creating-a-simple-facebook-messenger-ai-bot-with-api-ai-in-node-js-50ae2fa5c80d)
98 | * [**Node.js**: _How to make a responsive telegram bot_](https://www.sohamkamani.com/blog/2016/09/21/making-a-telegram-bot/)
99 | * [**Node.js**: _Create a Discord bot_](https://discordjs.guide/)
100 | * [**Node.js**: _gifbot - Building a GitHub App_](https://blog.scottlogic.com/2017/05/22/gifbot-github-integration.html)
101 | * [**Node.js**: _Building A Simple AI Chatbot With Web Speech API And Node.js_](https://www.smashingmagazine.com/2017/08/ai-chatbot-web-speech-api-node-js/)
102 | * [**Python**: _How to Build Your First Slack Bot with Python_](https://www.fullstackpython.com/blog/build-first-slack-bot-python.html)
103 | * [**Python**: _How to build a Slack Bot with Python using Slack Events API & Django under 20 minute_](https://medium.com/freehunch/how-to-build-a-slack-bot-with-python-using-slack-events-api-django-under-20-minute-code-included-269c3a9bf64e)
104 | * [**Python**: _Build a Reddit Bot_](http://pythonforengineers.com/build-a-reddit-bot-part-1/)
105 | * [**Python**: _How To Make A Reddit Bot_](https://www.youtube.com/watch?v=krTUf7BpTc0) [video]
106 | * [**Python**: _How To Create a Telegram Bot Using Python_](https://khashtamov.com/en/how-to-create-a-telegram-bot-using-python/)
107 | * [**Python**: _Create a Twitter Bot in Python Using Tweepy_](https://medium.freecodecamp.org/creating-a-twitter-bot-in-python-with-tweepy-ac524157a607)
108 | * [**Python**: _Creating Reddit Bot with Python & PRAW_](https://www.youtube.com/playlist?list=PLIFBTFgFpoJ9vmYYlfxRFV6U_XhG-4fpP) [video]
109 | * [**R**: _Build A Cryptocurrency Trading Bot with R_](https://towardsdatascience.com/build-a-cryptocurrency-trading-bot-with-r-1445c429e1b1)
110 | * [**Rust**: _A bot for Starcraft in Rust, C or any other language_](https://habr.com/en/post/436254/)
111 |
112 | #### Build your own `Command-Line Tool`
113 |
114 | * [**Go**: _Visualize your local git contributions with Go_](https://flaviocopes.com/go-git-contributions/)
115 | * [**Go**: _Build a command line app with Go: lolcat_](https://flaviocopes.com/go-tutorial-lolcat/)
116 | * [**Go**: _Building a cli command with Go: cowsay_](https://flaviocopes.com/go-tutorial-cowsay/)
117 | * [**Go**: _Go CLI tutorial: fortune clone_](https://flaviocopes.com/go-tutorial-fortune/)
118 | * [**Nim**: _Writing a stow alternative to manage dotfiles_](https://xmonader.github.io/nimdays/day06_nistow.html)
119 | * [**Node.js**: _Create a CLI tool in Javascript_](https://citw.dev/tutorial/create-your-own-cli-tool)
120 | * [**Rust**: _Command line apps in Rust_](https://rust-cli.github.io/book/index.html)
121 | * [**Rust**: _Writing a Command Line Tool in Rust_](https://mattgathu.github.io/2017/08/29/writing-cli-app-rust.html)
122 |
123 |
124 | #### Build your own `Database`
125 |
126 | - [**C**: _Let's Build a Simple Database_](https://cstack.github.io/db_tutorial/)
127 | - [**C++**: _Implementing a Key-Value Store_](http://codecapsule.com/2012/11/07/ikvs-implementing-a-key-value-store-table-of-contents/)
128 | - [**C#**: _Build Your Own Database_](https://www.codeproject.com/Articles/1029838/Build-Your-Own-Database)
129 | - [**Clojure**: _An Archaeology-Inspired Database_](http://aosabook.org/en/500L/an-archaeology-inspired-database.html)
130 | - [**Crystal**: _Why you should build your own NoSQL Database_](https://medium.com/@marceloboeira/why-you-should-build-your-own-nosql-database-9bbba42039f5)
131 | - [**JavaScript**: _Dagoba: an in-memory graph database_](http://aosabook.org/en/500L/dagoba-an-in-memory-graph-database.html)
132 | - [**Python**: _DBDB: Dog Bed Database_](http://aosabook.org/en/500L/dbdb-dog-bed-database.html)
133 | - [**Python**: _Write your own miniature Redis with Python_](http://charlesleifer.com/blog/building-a-simple-redis-server-with-python/)
134 | - [**Go**: _Database basics: writing a SQL database from scratch in Go_](https://notes.eatonphil.com/database-basics.html)
135 | - [**Ruby**: _Build Your Own Redis_](https://rohitpaulk.com/articles/redis-0)
136 | - [**C**: _Writing a Time Series Database from scratch_](https://web.archive.org/web/20210803115658/https://fabxc.org/tsdb/)
137 | - [**C++**: _Build Your Own Redis from Scratch_](https://build-your-own.org/)
138 |
139 | #### Build your own `Docker`
140 |
141 | * [**C**: _Linux containers in 500 lines of code_](https://blog.lizzie.io/linux-containers-in-500-loc.html)
142 | * [**Go**: _Build Your Own Container Using Less than 100 Lines of Go_](https://www.infoq.com/articles/build-a-container-golang)
143 | * [**Go**: _Building a container from scratch in Go_](https://www.youtube.com/watch?v=8fi7uSYlOdc) [video]
144 | * [**Python**: _A workshop on Linux containers: Rebuild Docker from Scratch_](https://github.com/Fewbytes/rubber-docker)
145 | * [**Python**: _A proof-of-concept imitation of Docker, written in 100% Python_](https://github.com/tonybaloney/mocker)
146 | * [**Shell**: _Docker implemented in around 100 lines of bash_](https://github.com/p8952/bocker)
147 |
148 | #### Build your own `Emulator / Virtual Machine`
149 |
150 | * [**C**: _Home-grown bytecode interpreters_](https://medium.com/bumble-tech/home-grown-bytecode-interpreters-51e12d59b25c)
151 | * [**C**: _Virtual machine in C_](http://web.archive.org/web/20200121100942/https://blog.felixangell.com/virtual-machine-in-c/)
152 | * [**C**: _Write your Own Virtual Machine_](https://justinmeiners.github.io/lc3-vm/)
153 | * [**C**: _Writing a Game Boy emulator, Cinoop_](https://cturt.github.io/cinoop.html)
154 | * [**C++**: _How to write an emulator (CHIP-8 interpreter)_](http://www.multigesture.net/articles/how-to-write-an-emulator-chip-8-interpreter/)
155 | * [**C++**: _Emulation tutorial (CHIP-8 interpreter)_](http://www.codeslinger.co.uk/pages/projects/chip8.html)
156 | * [**C++**: _Emulation tutorial (GameBoy emulator)_](http://www.codeslinger.co.uk/pages/projects/gameboy.html)
157 | * [**C++**: _Emulation tutorial (Master System emulator)_](http://www.codeslinger.co.uk/pages/projects/mastersystem/memory.html)
158 | * [**C++**: _NES Emulator From Scratch_](https://www.youtube.com/playlist?list=PLrOv9FMX8xJHqMvSGB_9G9nZZ_4IgteYf) [video]
159 | * [**Common Lisp**: _CHIP-8 in Common Lisp_](http://stevelosh.com/blog/2016/12/chip8-cpu/)
160 | * [**JavaScript**: _GameBoy Emulation in JavaScript_](http://imrannazar.com/GameBoy-Emulation-in-JavaScript)
161 | * [**Python**: _Emulation Basics: Write your own Chip 8 Emulator/Interpreter_](http://omokute.blogspot.com.br/2012/06/emulation-basics-write-your-own-chip-8.html)
162 | * [**Rust**: _0dmg: Learning Rust by building a partial Game Boy emulator_](https://jeremybanks.github.io/0dmg/)
163 |
164 | #### Build your own `Front-end Framework / Library`
165 |
166 | * [**JavaScript**: _WTF is JSX (Let's Build a JSX Renderer)_](https://jasonformat.com/wtf-is-jsx/)
167 | * [**JavaScript**: _A DIY guide to build your own React_](https://github.com/hexacta/didact)
168 | * [**JavaScript**: _Building React From Scratch_](https://www.youtube.com/watch?v=_MAD4Oly9yg) [video]
169 | * [**JavaScript**: _Gooact: React in 160 lines of JavaScript_](https://medium.com/@sweetpalma/gooact-react-in-160-lines-of-javascript-44e0742ad60f)
170 | * [**JavaScript**: _React Internals_](http://www.mattgreer.org/articles/react-internals-part-one-basic-rendering/)
171 | * [**JavaScript**: _Learn how React Reconciler package works by building your own lightweight React DOM_](https://hackernoon.com/learn-you-some-custom-react-renderers-aed7164a4199)
172 | * [**JavaScript**: _Build Yourself a Redux_](https://zapier.com/engineering/how-to-build-redux/)
173 | * [**JavaScript**: _Let’s Write Redux!_](https://www.jamasoftware.com/blog/lets-write-redux/)
174 | * [**JavaScript**: _Redux: Implementing Store from Scratch_](https://egghead.io/lessons/react-redux-implementing-store-from-scratch) [video]
175 | * [**JavaScript**: _Build Your own Simplified AngularJS in 200 Lines of JavaScript_](https://blog.mgechev.com/2015/03/09/build-learn-your-own-light-lightweight-angularjs/)
176 | * [**JavaScript**: _Make Your Own AngularJS_](http://teropa.info/blog/2013/11/03/make-your-own-angular-part-1-scopes-and-digest.html)
177 | * [**JavaScript**: _How to write your own Virtual DOM_](https://medium.com/@deathmood/how-to-write-your-own-virtual-dom-ee74acc13060)
178 | * [**JavaScript**: _Building a frontend framework, from scratch, with components (templating, state, VDOM)_](https://mfrachet.github.io/create-frontend-framework/)
179 | * [**JavaScript**: _Build your own React_](https://pomb.us/build-your-own-react/)
180 | * [**JavaScript**: _Building a Custom React Renderer_](https://youtu.be/CGpMlWVcHok) [video]
181 |
182 | #### Build your own `Game`
183 |
184 | - [**C**: _Handmade Hero_](https://handmadehero.org/)
185 | - [**C**: _How to Program an NES game in C_](https://nesdoug.com/)
186 | - [**C**: _Chess Engine In C_](https://www.youtube.com/playlist?list=PLZ1QII7yudbc-Ky058TEaOstZHVbT-2hg) [video]
187 | - [**C**: _Let's Make: Dangerous Dave_](https://www.youtube.com/playlist?list=PLSkJey49cOgTSj465v2KbLZ7LMn10bCF9) [video]
188 | - [**C**: _Learn Video Game Programming in C_](https://www.youtube.com/playlist?list=PLT6WFYYZE6uLMcPGS3qfpYm7T_gViYMMt)
189 | [video]
190 | * [**C**: _Coding A Sudoku Solver in C_](https://www.youtube.com/playlist?list=PLkTXsX7igf8edTYU92nU-f5Ntzuf-RKvW) [video]
191 | * [**C**: _Coding a Rogue/Nethack RPG in C_](https://www.youtube.com/playlist?list=PLkTXsX7igf8erbWGYT4iSAhpnJLJ0Nk5G) [video]
192 | * [**C**: _On Tetris and Reimplementation_](https://brennan.io/2015/06/12/tetris-reimplementation/)
193 | * [**C++**: _Breakout_](https://learnopengl.com/In-Practice/2D-Game/Breakout)
194 | * [**C++**: _Beginning Game Programming v2.0_](http://lazyfoo.net/tutorials/SDL/)
195 | * [**C++**: _Tetris tutorial in C++ platform independent focused in game logic for beginners_](http://javilop.com/gamedev/tetris-tutorial-in-c-platform-independent-focused-in-game-logic-for-beginners/)
196 | * [**C++**: _Remaking Cavestory in C++_](https://www.youtube.com/watch?v=ETvApbD5xRo&list=PLNOBk_id22bw6LXhrGfhVwqQIa-M2MsLa) [video]
197 | * [**C++**: _Reconstructing Cave Story_](https://www.youtube.com/playlist?list=PL006xsVEsbKjSKBmLu1clo85yLrwjY67X) [video]
198 | * [**C++**: _Space Invaders from Scratch_](http://nicktasios.nl/posts/space-invaders-from-scratch-part-1.html)
199 | * [**C#**: _Learn C# by Building a Simple RPG_](http://scottlilly.com/learn-c-by-building-a-simple-rpg-index/)
200 | * [**C#**: _Creating a Roguelike Game in C#_](https://roguesharp.wordpress.com/)
201 | * [**C#**: _Build a C#/WPF RPG_](https://scottlilly.com/build-a-cwpf-rpg/)
202 | * [**Go**: _Games With Go_](https://www.youtube.com/playlist?list=PLDZujg-VgQlZUy1iCqBbe5faZLMkA3g2x) [video]
203 | * [**Java**: _Code a 2D Game Engine using Java - Full Course for Beginners_](https://www.youtube.com/watch?v=025QFeZfeyM) [video]
204 | * [**Java**: _3D Game Development with LWJGL 3_](https://lwjglgamedev.gitbooks.io/3d-game-development-with-lwjgl/content/)
205 | * [**JavaScript**: _2D breakout game using Phaser_](https://developer.mozilla.org/en-US/docs/Games/Tutorials/2D_breakout_game_Phaser)
206 | * [**JavaScript**: _How to Make Flappy Bird in HTML5 With Phaser_](http://www.lessmilk.com/tutorial/flappy-bird-phaser-1)
207 | * [**JavaScript**: _Developing Games with React, Redux, and SVG_](https://auth0.com/blog/developing-games-with-react-redux-and-svg-part-1/)
208 | * [**JavaScript**: _Build your own 8-Ball Pool game from scratch_](https://www.youtube.com/watch?v=aXwCrtAo4Wc) [video]
209 | * [**JavaScript**: _How to Make Your First Roguelike_](https://gamedevelopment.tutsplus.com/tutorials/how-to-make-your-first-roguelike--gamedev-13677)
210 | * [**JavaScript**: _Think like a programmer: How to build Snake using only JavaScript, HTML & CSS_](https://medium.freecodecamp.org/think-like-a-programmer-how-to-build-snake-using-only-javascript-html-and-css-7b1479c3339e)
211 | * [**Lua**: _BYTEPATH_](https://github.com/SSYGEN/blog/issues/30)
212 | * [**Python**: _Developing Games With PyGame_](https://pythonprogramming.net/pygame-python-3-part-1-intro/)
213 | * [**Python**: _Making Games with Python & Pygame_](https://inventwithpython.com/makinggames.pdf) [pdf]
214 | * [**Python**: _Roguelike Tutorial Revised_](http://rogueliketutorials.com/)
215 | * [**Ruby**: _Developing Games With Ruby_](https://leanpub.com/developing-games-with-ruby/read)
216 | * [**Ruby**: _Ruby Snake_](https://www.diatomenterprises.com/gamedev-on-ruby-why-not/)
217 | * [**Rust**: _Adventures in Rust: A Basic 2D Game_](https://a5huynh.github.io/posts/2018/adventures-in-rust/)
218 | * [**Rust**: _Roguelike Tutorial in Rust + tcod_](https://tomassedovic.github.io/roguelike-tutorial/)
219 |
220 | #### Build your own `Git`
221 |
222 | * [**Haskell**: _Reimplementing “git clone” in Haskell from the bottom up_](http://stefan.saasen.me/articles/git-clone-in-haskell-from-the-bottom-up/)
223 | * [**JavaScript**: _Gitlet_](http://gitlet.maryrosecook.com/docs/gitlet.html)
224 | * [**JavaScript**: _Build GIT - Learn GIT_](https://kushagra.dev/blog/build-git-learn-git/)
225 | * [**Python**: _Just enough of a Git client to create a repo, commit, and push itself to GitHub_](https://benhoyt.com/writings/pygit/)
226 | * [**Python**: _Write yourself a Git!_](https://wyag.thb.lt/)
227 | * [**Python**: _ugit: Learn Git Internals by Building Git Yourself_](https://www.leshenko.net/p/ugit/)
228 | * [**Ruby**: _Rebuilding Git in Ruby_](https://robots.thoughtbot.com/rebuilding-git-in-ruby)
229 |
230 | #### Build your own `Network Stack`
231 |
232 | * [**C**: _Beej's Guide to Network Programming_](http://beej.us/guide/bgnet/)
233 | * [**C**: _Let's code a TCP/IP stack_](http://www.saminiir.com/lets-code-tcp-ip-stack-1-ethernet-arp/)
234 | * [**C / Python**: _Build your own VPN/Virtual Switch_](https://github.com/peiyuanix/build-your-own-zerotier)
235 | * [**Ruby**: _How to build a network stack in Ruby_](https://medium.com/geckoboard-under-the-hood/how-to-build-a-network-stack-in-ruby-f73aeb1b661b)
236 |
237 | #### Build your own `Neural Network`
238 |
239 | * [**C#**: _Neural Network OCR_](https://www.codeproject.com/Articles/11285/Neural-Network-OCR)
240 | * [**F#**: _Building Neural Networks in F#_](https://towardsdatascience.com/building-neural-networks-in-f-part-1-a2832ae972e6)
241 | * [**Go**: _Build a multilayer perceptron with Golang_](https://made2591.github.io/posts/neuralnetwork)
242 | * [**Go**: _How to build a simple artificial neural network with Go_](https://sausheong.github.io/posts/how-to-build-a-simple-artificial-neural-network-with-go/)
243 | * [**Go**: _Building a Neural Net from Scratch in Go_](https://datadan.io/blog/neural-net-with-go)
244 | * [**JavaScript / Java**: _Neural Networks - The Nature of Code_](https://www.youtube.com/playlist?list=PLRqwX-V7Uu6aCibgK1PTWWu9by6XFdCfh) [video]
245 | * [**JavaScript**: _Neural networks from scratch for JavaScript linguists (Part1 — The Perceptron)_](https://hackernoon.com/neural-networks-from-scratch-for-javascript-linguists-part1-the-perceptron-632a4d1fbad2)
246 | * [**Python**: _A Neural Network in 11 lines of Python_](https://iamtrask.github.io/2015/07/12/basic-python-network/)
247 | * [**Python**: _Implement a Neural Network from Scratch_](https://victorzhou.com/blog/intro-to-neural-networks/)
248 | * [**Python**: _Optical Character Recognition (OCR)_](http://aosabook.org/en/500L/optical-character-recognition-ocr.html)
249 | * [**Python**: _Traffic signs classification with a convolutional network_](https://navoshta.com/traffic-signs-classification/)
250 | * [**Python**: _Generate Music using LSTM Neural Network in Keras_](https://towardsdatascience.com/how-to-generate-music-using-a-lstm-neural-network-in-keras-68786834d4c5)
251 | * [**Python**: _An Introduction to Convolutional Neural Networks_](https://victorzhou.com/blog/intro-to-cnns-part-1/)
252 | * [**Python**: _Neural Networks: Zero to Hero_](https://www.youtube.com/playlist?list=PLAqhIrjkxbuWI23v9cThsA9GvCAUhRvKZ)
253 |
254 | #### Build your own `Operating System`
255 |
256 | - [**Assembly**: _Writing a Tiny x86 Bootloader_](http://joebergeron.io/posts/post_two.html)
257 | - [**Assembly**: _Baking Pi – Operating Systems Development_](http://www.cl.cam.ac.uk/projects/raspberrypi/tutorials/os/index.html)
258 | - [**C**: _Building a software and hardware stack for a simple computer from scratch_](https://www.youtube.com/watch?v=ZjwvMcP3Nf0&list=PLU94OURih-CiP4WxKSMt3UcwMSDM3aTtX) [video]
259 | - [**C**: _Operating Systems: From 0 to 1_](https://tuhdo.github.io/os01/)
260 | - [**C**: _The little book about OS development_](https://littleosbook.github.io/)
261 | - [**C**: _Roll your own toy UNIX-clone OS_](http://jamesmolloy.co.uk/tutorial_html/)
262 | - [**C**: _Kernel 101 – Let’s write a Kernel_](https://arjunsreedharan.org/post/82710718100/kernel-101-lets-write-a-kernel)
263 | - [**C**: _Kernel 201 – Let’s write a Kernel with keyboard and screen support_](https://arjunsreedharan.org/post/99370248137/kernel-201-lets-write-a-kernel-with-keyboard)
264 | - [**C**: _Build a minimal multi-tasking kernel for ARM from scratch_](https://github.com/jserv/mini-arm-os)
265 | - [**C**: _How to create an OS from scratch_](https://github.com/cfenollosa/os-tutorial)
266 | - [**C**: _Malloc tutorial_](https://danluu.com/malloc-tutorial/)
267 | - [**C**: _Hack the virtual memory_](https://blog.holbertonschool.com/hack-the-virtual-memory-c-strings-proc/)
268 | - [**C**: _Learning operating system development using Linux kernel and Raspberry Pi_](https://github.com/s-matyukevich/raspberry-pi-os)
269 | - [**C**: _Operating systems development for Dummies_](https://medium.com/@lduck11007/operating-systems-development-for-dummies-3d4d786e8ac)
270 | - [**C++**: _Write your own Operating System_](https://www.youtube.com/playlist?list=PLHh55M_Kq4OApWScZyPl5HhgsTJS9MZ6M) [video]
271 | - [**C++**: _Writing a Bootloader_](http://3zanders.co.uk/2017/10/13/writing-a-bootloader/)
272 | - [**Rust**: _Writing an OS in Rust_](https://os.phil-opp.com/)
273 | - [**Rust**: Write an OS for the Raspberry Pi in Rust](https://tc.gts3.org/cs3210/2020/spring/lab.html)
274 | * [**Rust**: _Add RISC-V Rust Operating System Tutorial_](https://osblog.stephenmarz.com/)
275 | * [**(any)**: Linux from scratch](https://linuxfromscratch.org/lfs)
276 |
277 | #### Build your own `Physics Engine`
278 |
279 | - [**C**: _Video Game Physics Tutorial_](https://www.toptal.com/game/video-game-physics-part-i-an-introduction-to-rigid-body-dynamics)
280 | - [**C++**: _Game physics series by Allen Chou_](http://allenchou.net/game-physics-series/)
281 | - [**C++**: _How to Create a Custom Physics Engine_](https://gamedevelopment.tutsplus.com/series/how-to-create-a-custom-physics-engine--gamedev-12715)
282 | - [**C++**: _3D Physics Engine Tutorial_](https://www.youtube.com/playlist?list=PLEETnX-uPtBXm1KEr_2zQ6K_0hoGH6JJ0) [video]
283 | - [**JavaScript**: _Build your own basic physics engine in JavaScript_](https://www.graphitedigital.com/blog/build-your-own-basic-physics-engine-in-javascript)
284 | - [**JavaScript**: _How Physics Engines Work_](http://buildnewgames.com/gamephysics/)
285 | - [**JavaScript**: _Broad Phase Collision Detection Using Spatial Partitioning_](http://buildnewgames.com/broad-phase-collision-detection/)
286 | - [**JavaScript**: _Build a simple 2D physics engine for JavaScript games_](https://www.ibm.com/developerworks/library/wa-build2dphysicsengine/index.html)
287 |
288 | #### Build your own `Programming Language`
289 |
290 | * [**(any)**: _mal - Make a Lisp_](https://github.com/kanaka/mal#mal---make-a-lisp)
291 | * [**Assembly**: _Jonesforth_](https://github.com/nornagon/jonesforth/blob/master/jonesforth.S)
292 | * [**C**: _Baby's First Garbage Collector_](http://journal.stuffwithstuff.com/2013/12/08/babys-first-garbage-collector/)
293 | * [**C**: _Build Your Own Lisp: Learn C and build your own programming language in 1000 lines of code_](http://www.buildyourownlisp.com/)
294 | * [**C**: _Writing a Simple Garbage Collector in C_](http://maplant.com/gc.html)
295 | * [**C**: _C interpreter that interprets itself._](https://github.com/lotabout/write-a-C-interpreter)
296 | * [**C**: _A C & x86 version of the "Let's Build a Compiler" by Jack Crenshaw_](https://github.com/lotabout/Let-s-build-a-compiler)
297 | * [**C**: _A journey explaining how to build a compiler from scratch_](https://github.com/DoctorWkt/acwj)
298 | * [**C++**: _Writing Your Own Toy Compiler Using Flex_](https://gnuu.org/2009/09/18/writing-your-own-toy-compiler/)
299 | * [**C++**: _How to Create a Compiler_](https://www.youtube.com/watch?v=eF9qWbuQLuw) [video]
300 | * [**C++**: _Kaleidoscope: Implementing a Language with LLVM_](https://llvm.org/docs/tutorial/MyFirstLanguageFrontend/index.html)
301 | * [**F#**: _Understanding Parser Combinators_](https://fsharpforfunandprofit.com/posts/understanding-parser-combinators/)
302 | * [**Elixir**: _Demystifying compilers by writing your own_](https://www.youtube.com/watch?v=zMJYoYwOCd4) [video]
303 | * [**Go**: _The Super Tiny Compiler_](https://github.com/hazbo/the-super-tiny-compiler)
304 | * [**Go**: _Lexical Scanning in Go_](https://www.youtube.com/watch?v=HxaD_trXwRE) [video]
305 | * [**Haskell**: _Let's Build a Compiler_](https://g-ford.github.io/cradle/)
306 | * [**Haskell**: _Write You a Haskell_](http://dev.stephendiehl.com/fun/)
307 | * [**Haskell**: _Write Yourself a Scheme in 48 Hours_](https://en.wikibooks.org/wiki/Write_Yourself_a_Scheme_in_48_Hours)
308 | * [**Haskell**: _Write You A Scheme_](https://www.wespiser.com/writings/wyas/home.html)
309 | * [**Java**: _Crafting interpreters: A handbook for making programming languages_](http://www.craftinginterpreters.com/)
310 | * [**Java**: _Creating JVM Language_](http://jakubdziworski.github.io/categories.html#Enkel-ref)
311 | * [**JavaScript**: _The Super Tiny Compiler_](https://github.com/jamiebuilds/the-super-tiny-compiler)
312 | * [**JavaScript**: _The Super Tiny Interpreter_](https://github.com/keyanzhang/the-super-tiny-interpreter)
313 | * [**JavaScript**: _Little Lisp interpreter_](https://maryrosecook.com/blog/post/little-lisp-interpreter)
314 | * [**JavaScript**: _How to implement a programming language in JavaScript_](http://lisperator.net/pltut/)
315 | * [**JavaScript**: _Let’s go write a Lisp_](https://idiocy.org/lets-go-write-a-lisp/part-1.html)
316 | * [**OCaml**: _Writing a C Compiler_](https://norasandler.com/2017/11/29/Write-a-Compiler.html)
317 | * [**OCaml**: _Writing a Lisp, the series_](https://bernsteinbear.com/blog/lisp/)
318 | * [**Pascal**: _Let's Build a Compiler_](https://compilers.iecc.com/crenshaw/)
319 | * [**Python**: _A Python Interpreter Written in Python_](http://aosabook.org/en/500L/a-python-interpreter-written-in-python.html)
320 | * [**Python**: _lisp.py: Make your own Lisp interpreter_](http://khamidou.com/compilers/lisp.py/)
321 | * [**Python**: _How to Write a Lisp Interpreter in Python_](http://norvig.com/lispy.html)
322 | * [**Python**: _Let’s Build A Simple Interpreter_](https://ruslanspivak.com/lsbasi-part1/)
323 | * [**Python**: _Make Your Own Simple Interpreted Programming Language_](https://www.youtube.com/watch?v=dj9CBS3ikGA&list=PLZQftyCk7_SdoVexSmwy_tBgs7P0b97yD&index=1) [video]
324 | * [**Python**: _From Source Code To Machine Code: Build Your Own Compiler From Scratch_](https://build-your-own.org/compiler/)
325 | * [**Racket**: _Beautiful Racket: How to make your own programming languages with Racket_](https://beautifulracket.com/)
326 | * [**Ruby**: _A Compiler From Scratch_](https://www.destroyallsoftware.com/screencasts/catalog/a-compiler-from-scratch)
327 | * [**Ruby**: _Markdown compiler from scratch in Ruby_](https://blog.beezwax.net/2017/07/07/writing-a-markdown-compiler/)
328 | * [**Rust**: _So You Want to Build a Language VM_](https://blog.subnetzero.io/post/building-language-vm-part-00/)
329 | * [**Rust**: _Learning Parser Combinators With Rust_](https://bodil.lol/parser-combinators/)
330 | * [**Swift**: _Building a LISP from scratch with Swift_](https://www.uraimo.com/2017/02/05/building-a-lisp-from-scratch-with-swift/)
331 | * [**TypeScript**: _Build your own WebAssembly Compiler_](https://blog.scottlogic.com/2019/05/17/webassembly-compiler.html)
332 | * [**any**: _Crafting Interpreters_](https://craftinginterpreters.com/)
333 |
334 | #### Build your own `Regex Engine`
335 |
336 | * [**C**: _A Regular Expression Matcher_](https://www.cs.princeton.edu/courses/archive/spr09/cos333/beautiful.html)
337 | * [**C**: _Regular Expression Matching Can Be Simple And Fast_](https://swtch.com/~rsc/regexp/regexp1.html)
338 | * [**JavaScript**: _Build a Regex Engine in Less than 40 Lines of Code_](https://nickdrane.com/build-your-own-regex/)
339 | * [**JavaScript**: _How to implement regular expressions in functional javascript using derivatives_](http://dpk.io/dregs/toydregs)
340 | * [**JavaScript**: _Implementing a Regular Expression Engine_](https://deniskyashif.com/2019/02/17/implementing-a-regular-expression-engine/)
341 | * [**Perl**: _How Regexes Work_](https://perl.plover.com/Regex/article.html)
342 | * [**Python**: _Build Your Own Regular Expression Engines: Backtracking, NFA, DFA_](https://build-your-own.org/b2a/r0_intro)
343 | * [**Scala**: _No Magic: Regular Expressions_](https://rcoh.svbtle.com/no-magic-regular-expressions)
344 |
345 | #### Build your own `Search Engine`
346 |
347 | - [**CSS**: _A search engine in CSS_](https://stories.algolia.com/a-search-engine-in-css-b5ec4e902e97)
348 | - [**Python**: _Building a search engine using Redis and redis-py_](http://www.dr-josiah.com/2010/07/building-search-engine-using-redis-and.html)
349 | - [**Python**: _Building a Vector Space Indexing Engine in Python_](https://boyter.org/2010/08/build-vector-space-search-engine-python/)
350 | - [**Python**: _Building A Python-Based Search Engine_](https://www.youtube.com/watch?v=cY7pE7vX6MU) [video]
351 | - [**Python**: _Making text search learn from feedback_](https://medium.com/filament-ai/making-text-search-learn-from-feedback-4fe210fd87b0)
352 | - [**Python**: _Finding Important Words in Text Using TF-IDF_](https://stevenloria.com/tf-idf/)
353 |
354 | #### Build your own `Shell`
355 |
356 | * [**C**: _Tutorial - Write a Shell in C_](https://brennan.io/2015/01/16/write-a-shell-in-c/)
357 | * [**C**: _Let's build a shell!_](https://github.com/kamalmarhubi/shell-workshop)
358 | * [**C**: _Writing a UNIX Shell_](https://indradhanush.github.io/blog/writing-a-unix-shell-part-1/)
359 | * [**C**: _Build Your Own Shell_](https://github.com/tokenrove/build-your-own-shell)
360 | * [**Go**: _Writing a simple shell in Go_](https://sj14.gitlab.io/post/2018-07-01-go-unix-shell/)
361 | * [**Rust**: _Build Your Own Shell using Rust_](https://www.joshmcguigan.com/blog/build-your-own-shell-rust/)
362 |
363 | #### Build your own `Template Engine`
364 |
365 | - [**JavaScript**: _JavaScript template engine in just 20 lines_](http://krasimirtsonev.com/blog/article/Javascript-template-engine-in-just-20-line)
366 | - [**JavaScript**: _Understanding JavaScript Micro-Templating_](https://medium.com/wdstack/understanding-javascript-micro-templating-f37a37b3b40e)
367 | - [**Python**: _Approach: Building a toy template engine in Python_](http://alexmic.net/building-a-template-engine/)
368 | - [**Python**: _A Template Engine_](http://aosabook.org/en/500L/a-template-engine.html)
369 | - [**Ruby**: _How to write a template engine in less than 30 lines of code_](http://bits.citrusbyte.com/how-to-write-a-template-library/)
370 |
371 | #### Build your own `Text Editor`
372 |
373 | * [**C**: _Build Your Own Text Editor_](https://viewsourcecode.org/snaptoken/kilo/)
374 | * [**C++**: _Designing a Simple Text Editor_](http://www.fltk.org/doc-1.1/editor.html)
375 | * [**Python**: _Python Tutorial: Make Your Own Text Editor_](https://www.youtube.com/watch?v=xqDonHEYPgA) [video]
376 | * [**Python**: _Create a Simple Python Text Editor!_](http://www.instructables.com/id/Create-a-Simple-Python-Text-Editor/)
377 | * [**Ruby**: _Build a Collaborative Text Editor Using Rails_](https://blog.aha.io/text-editor/)
378 | * [**Rust**: _Hecto: Build your own text editor in Rust_ ](https://www.flenker.blog/hecto/)
379 |
380 | #### Build your own `Visual Recognition System`
381 |
382 | - [**Python**: _Developing a License Plate Recognition System with Machine Learning in Python_](https://blog.devcenter.co/developing-a-license-plate-recognition-system-with-machine-learning-in-python-787833569ccd)
383 | - [**Python**: _Building a Facial Recognition Pipeline with Deep Learning in Tensorflow_](https://hackernoon.com/building-a-facial-recognition-pipeline-with-deep-learning-in-tensorflow-66e7645015b8)
384 |
385 | #### Build your own `Voxel Engine`
386 |
387 | * [**C++**: _Let's Make a Voxel Engine_](https://sites.google.com/site/letsmakeavoxelengine/home)
388 | * [**Java**: _Java Voxel Engine Tutorial_](https://www.youtube.com/watch?v=QZ4Vk2PkPZk&list=PL80Zqpd23vJfyWQi-8FKDbeO_ZQamLKJL) [video]
389 |
390 | #### Build your own `Web Browser`
391 |
392 | * [**Rust**: _Let's build a browser engine_](https://limpet.net/mbrubeck/2014/08/08/toy-layout-engine-1.html)
393 | * [**Python**: _Browser Engineering_](https://browser.engineering)
394 |
395 | #### Build your own `Web Server`
396 |
397 | - [**C#**: _Writing a Web Server from Scratch_](https://www.codeproject.com/Articles/859108/Writing-a-Web-Server-from-Scratch)
398 | - [**Node.js**: _Let's code a web server from scratch with NodeJS Streams_](https://www.codementor.io/ziad-saab/let-s-code-a-web-server-from-scratch-with-nodejs-streams-h4uc9utji)
399 | - [**Node.js**: _lets-build-express_](https://github.com/antoaravinth/lets-build-express)
400 | - [**PHP**: _Writing a webserver in pure PHP_](http://station.clancats.com/writing-a-webserver-in-pure-php/)
401 | - [**Python**: _A Simple Web Server_](http://aosabook.org/en/500L/a-simple-web-server.html)
402 | - [**Python**: _Let’s Build A Web Server._](https://ruslanspivak.com/lsbaws-part1/)
403 | - [**Python**: _Web application from scratch_](https://defn.io/2018/02/25/web-app-from-scratch-01/)
404 | - [**Python**: _Building a basic HTTP Server from scratch in Python_](http://joaoventura.net/blog/2017/python-webserver/)
405 | - [**Python**: _Implementing a RESTful Web API with Python & Flask_](http://blog.luisrei.com/articles/flaskrest.html)
406 | - [**Ruby**: _Building a simple websockets server from scratch in Ruby_](http://blog.honeybadger.io/building-a-simple-websockets-server-from-scratch-in-ruby/)
407 | - [**C**: Build a HTTP Server from Scratch in C](https://medium.com/from-the-scratch/http-server-what-do-you-need-to-know-to-build-a-simple-http-server-from-scratch-d1ef8945e4fa)
408 |
409 | #### Build Your own `IoT`
410 |
411 | - [Learn AVR programming](http://www.ladyada.net/learn/avr/)
412 | - [AVR tutorial](http://www.rjhcoding.com/index.php)
413 | - [USB stack](https://www.beyondlogic.org/usbnutshell/usb1.shtml)
414 |
415 | #### Build Your own `Keyboard`
416 |
417 | - [How to build your own keyboard (with kit)](https://www.tomshardware.com/how-to/build-custom-mechanical-keyboard)
418 | - [静電容量自作キーボードが出来るまで](https://note.com/sirojake/n/ncad44f7285cd)
419 | - [静電容量無接点方式](https://landfilljp.wordpress.com/2021/03/20/microtron/)
420 |
421 | #### Build Your own `AI`
422 |
423 | - [**Python**: _Neural Networks: Zero to Hero_](https://www.youtube.com/watch?v=VMj-3S1tku0)
424 |
425 | #### Uncategorized
426 |
427 | * [**(any)**: _From NAND to Tetris: Building a Modern Computer From First Principles_](http://nand2tetris.org/)
428 | * [**Alloy**: _The Same-Origin Policy_](http://aosabook.org/en/500L/the-same-origin-policy.html)
429 | * [**C**: _How to Write a Video Player in Less Than 1000 Lines_](http://dranger.com/ffmpeg/ffmpeg.html)
430 | * [**C**: _Learn how to write a hash table in C_](https://github.com/jamesroutley/write-a-hash-table)
431 | * [**C**: _The very basics of a terminal emulator_](https://www.uninformativ.de/blog/postings/2018-02-24/0/POSTING-en.html)
432 | * [**C**: _Write a System Call_](https://brennan.io/2016/11/14/kernel-dev-ep3/)
433 | * [**C**: _Sol - An MQTT broker from scratch_](https://codepr.github.io/posts/sol-mqtt-broker)
434 | * [**C++**: _Build your own VR headset for $200_](https://github.com/relativty/Relativ)
435 | * [**C++**: _How X Window Managers work and how to write one_](https://seasonofcode.com/posts/how-x-window-managers-work-and-how-to-write-one-part-i.html)
436 | * [**C++**: _Writing a Linux Debugger_](https://blog.tartanllama.xyz/writing-a-linux-debugger-setup/)
437 | * [**C++**: _How a 64k intro is made_](http://www.lofibucket.com/articles/64k_intro.html)
438 | * [**C++**: _Make your own Game Engine_](https://www.youtube.com/playlist?list=PLlrATfBNZ98dC-V-N3m0Go4deliWHPFwT)
439 | * [**C#**: _C# Networking: Create a TCP chater server, TCP games, UDP Pong and more_](https://16bpp.net/tutorials/csharp-networking)
440 | * [**C#**: _Loading and rendering 3D skeletal animations from scratch in C# and GLSL_](https://www.seanjoflynn.com/research/skeletal-animation.html)
441 | * [**Clojure**: _Building a spell-checker_](https://bernhardwenzel.com/articles/clojure-spellchecker/)
442 | * [**Go**: _Build A Simple Terminal Emulator In 100 Lines of Golang_](https://ishuah.com/2021/03/10/build-a-terminal-emulator-in-100-lines-of-go/)
443 | * [**Go**: _Let's Create a Simple Load Balancer_](https://kasvith.me/posts/lets-create-a-simple-lb-go/)
444 | * [**Go**: _Video Encoding from Scratch_](https://github.com/kevmo314/codec-from-scratch)
445 | * [**Java**: _How to Build an Android Reddit App_](https://www.youtube.com/playlist?list=PLgCYzUzKIBE9HUJU-upNvl3TRVAo9W47y) [video]
446 | * [**JavaScript**: _Build Your Own Module Bundler - Minipack_](https://github.com/ronami/minipack)
447 | * [**JavaScript**: _Learn JavaScript Promises by Building a Promise from Scratch_](https://levelup.gitconnected.com/understand-javascript-promises-by-building-a-promise-from-scratch-84c0fd855720)
448 | * [**JavaScript**: _Implementing promises from scratch (TDD way)_](https://www.mauriciopoppe.com/notes/computer-science/computation/promises/)
449 | * [**JavaScript**: _Implement your own — call(), apply() and bind() method in JavaScript_](https://blog.usejournal.com/implement-your-own-call-apply-and-bind-method-in-javascript-42cc85dba1b)
450 | * [**JavaScript**: _JavaScript Algorithms and Data Structures_](https://github.com/trekhleb/javascript-algorithms)
451 | * [**JavaScript**: _Build a ride hailing app with React Native_](https://pusher.com/tutorials/ride-hailing-react-native)
452 | * [**JavaScript**: _Build Your Own AdBlocker in (Literally) 10 Minutes_](https://levelup.gitconnected.com/building-your-own-adblocker-in-literally-10-minutes-1eec093b04cd)
453 | * [**Kotlin**: _Build Your Own Cache_](https://github.com/kezhenxu94/cache-lite)
454 | * [**Lua**: Building a CDN from Scratch to Learn about CDN](https://github.com/leandromoreira/cdn-up-and-running)
455 | * [**Nim**: _Writing a Redis Protocol Parser_](https://xmonader.github.io/nimdays/day12_resp.html)
456 | * [**Nim**: _Writing a Build system_](https://xmonader.github.io/nimdays/day11_buildsystem.html)
457 | * [**Nim**: _Writing a MiniTest Framework_](https://xmonader.github.io/nimdays/day08_minitest.html)
458 | * [**Nim**: _Writing a DMIDecode Parser_](https://xmonader.github.io/nimdays/day01_dmidecode.html)
459 | * [**Nim**: _Writing a INI Parser_](https://xmonader.github.io/nimdays/day05_iniparser.html)
460 | * [**Nim**: _Writing a Link Checker_](https://xmonader.github.io/nimdays/day04_asynclinkschecker.html)
461 | * [**Nim**: _Writing a URL Shortening Service_](https://xmonader.github.io/nimdays/day07_shorturl.html)
462 | * [**Node.js**: _Build a static site generator in 40 lines with Node.js_](https://www.webdevdrops.com/en/build-static-site-generator-nodejs-8969ebe34b22/)
463 | * [**Node.js**: _Building A Simple Single Sign On(SSO) Server And Solution From Scratch In Node.js._](https://codeburst.io/building-a-simple-single-sign-on-sso-server-and-solution-from-scratch-in-node-js-ea6ee5fdf340)
464 | * [**Node.js**: _How to create a real-world Node CLI app with Node_](https://medium.freecodecamp.org/how-to-create-a-real-world-node-cli-app-with-node-391b727bbed3)
465 | * [**Node.js**: _Build a DNS Server in Node.js_](https://engineerhead.github.io/dns-server/)
466 | * [**PHP**: _Write your own MVC from scratch in PHP_ ](https://chaitya62.github.io/2018/04/29/Writing-your-own-MVC-from-Scratch-in-PHP.html)
467 | * [**PHP**: _Make your own blog_](https://ilovephp.jondh.me.uk/en/tutorial/make-your-own-blog)
468 | * [**PHP**: _Modern PHP Without a Framework_](https://kevinsmith.io/modern-php-without-a-framework)
469 | * [**PHP**: _Code a Web Search Engine in PHP_](https://boyter.org/2013/01/code-for-a-search-engine-in-php-part-1/)
470 | * [**Python**: _Build a Deep Learning Library_](https://www.youtube.com/watch?v=o64FV-ez6Gw) [video]
471 | * [**Python**: _How to Build a Kick-Ass Mobile Document Scanner in Just 5 Minutes_](https://www.pyimagesearch.com/2014/09/01/build-kick-ass-mobile-document-scanner-just-5-minutes/)
472 | * [**Python**: _Continuous Integration System_](http://aosabook.org/en/500L/a-continuous-integration-system.html)
473 | * [**Python**: _Recommender Systems in Python: Beginner Tutorial_](https://www.datacamp.com/community/tutorials/recommender-systems-python)
474 | * [**Python**: _Write SMS-spam detector with Scikit-learn_](https://medium.com/@kopilov.vlad/detect-sms-spam-in-kaggle-with-scikit-learn-5f6afa7a3ca2)
475 | * [**Python**: _A Simple Content-Based Recommendation Engine in Python_](http://blog.untrod.com/2016/06/simple-similar-products-recommendation-engine-in-python.html)
476 | * [**Python**: _Stock Market Predictions with LSTM in Python_](https://www.datacamp.com/community/tutorials/lstm-python-stock-market)
477 | * [**Python**: _Build your own error-correction fountain code with Luby Transform Codes_](https://franpapers.com/en/algorithmic/2018-introduction-to-fountain-codes-lt-codes-with-python/)
478 | * [**Python**: _Building a simple Generative Adversial Network (GAN) using Tensorflow_](https://blog.paperspace.com/implementing-gans-in-tensorflow/)
479 | * [**Python**: _Learn ML Algorithms by coding: Decision Trees_](https://lethalbrains.com/learn-ml-algorithms-by-coding-decision-trees-439ac503c9a4)
480 | * [**Python**: _JSON Decoding Algorithm_](https://github.com/cheery/json-algorithm)
481 | * [**Python**: _Build your own Git plugin with python_](https://www.joshburns.xyz/posts/byo_git_plugin_tutorial)
482 | * [**Ruby**: _A Pedometer in the Real World_](http://aosabook.org/en/500L/a-pedometer-in-the-real-world.html)
483 | * [**Ruby**: _Creating a Linux Desktop application with Ruby_](https://iridakos.com/tutorials/2018/01/25/creating-a-gtk-todo-application-with-ruby)
484 | * [**Rust**: _Building a DNS server in Rust_](https://github.com/EmilHernvall/dnsguide/blob/master/README.md)
485 | * [**Rust**: _Writing Scalable Chat Service from Scratch_](https://nbaksalyar.github.io/2015/07/10/writing-chat-in-rust.html)
486 | * [**Rust**: _WebGL + Rust: Basic Water Tutorial_](https://www.chinedufn.com/3d-webgl-basic-water-tutorial/)
487 | * [**TypeScript**: _Tiny Package Manager: Learns how npm or Yarn works_](https://github.com/g-plane/tiny-package-manager)
488 | * [**C#**: _Build Your Own LINQ Implementation_](https://codeblog.jonskeet.uk/category/edulinq/)
489 | * [_Build an 8-bit computer from Scratch_](https://github.com/danistefanovic/build-your-own-x/issues/415)
490 | * [**JavaScript**: _I wrote my module bundler_](https://lihautan.com/i-wrote-my-module-bundler/)
491 | * [**Firebase**: Build TODO app by firebase (Japanese)](https://www.youtube.com/channel/UCmbwk54FJxio-rBN2o6L7zQ)
492 |
493 | ## Contribute
494 | * Submissions welcome, just send a PR, or [create an issue](https://github.com/codecrafters-io/build-your-own-x/issues/new)
495 | * Help us review [pending submissions](https://github.com/codecrafters-io/build-your-own-x/issues) by leaving comments and "reactions"
496 |
497 | ## Origins & License
498 |
499 | [](https://creativecommons.org/publicdomain/zero/1.0/)
500 |
501 | This repository is the work of [many contributors](https://github.com/codecrafters-io/build-your-own-x/graphs/contributors). It was started by [Daniel Stefanovic](https://github.com/danistefanovic), and is now maintained by [CodeCrafters, Inc.](https://codecrafters.io) To the extent possible under law, [CodeCrafters, Inc.](https://codecrafters.io) has waived all copyright and related or neighboring rights to this work.
502 |
--------------------------------------------------------------------------------
/codecrafters-banner.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kjj6198/build-your-own-x/946ca96cb83ba191128a20b954fcfa6c2eb42de0/codecrafters-banner.png
--------------------------------------------------------------------------------
/package-lock.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "svelte-app",
3 | "version": "1.0.0",
4 | "lockfileVersion": 1,
5 | "requires": true,
6 | "dependencies": {
7 | "@babel/code-frame": {
8 | "version": "7.8.3",
9 | "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.8.3.tgz",
10 | "integrity": "sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g==",
11 | "dev": true,
12 | "requires": {
13 | "@babel/highlight": "^7.8.3"
14 | }
15 | },
16 | "@babel/helper-validator-identifier": {
17 | "version": "7.9.5",
18 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.9.5.tgz",
19 | "integrity": "sha512-/8arLKUFq882w4tWGj9JYzRpAlZgiWUJ+dtteNTDqrRBz9Iguck9Rn3ykuBDoUwh2TO4tSAJlrxDUOXWklJe4g==",
20 | "dev": true
21 | },
22 | "@babel/highlight": {
23 | "version": "7.9.0",
24 | "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.9.0.tgz",
25 | "integrity": "sha512-lJZPilxX7Op3Nv/2cvFdnlepPXDxi29wxteT57Q965oc5R9v86ztx0jfxVrTcBk8C2kcPkkDa2Z4T3ZsPPVWsQ==",
26 | "dev": true,
27 | "requires": {
28 | "@babel/helper-validator-identifier": "^7.9.0",
29 | "chalk": "^2.0.0",
30 | "js-tokens": "^4.0.0"
31 | }
32 | },
33 | "@polka/url": {
34 | "version": "0.5.0",
35 | "resolved": "https://registry.npmjs.org/@polka/url/-/url-0.5.0.tgz",
36 | "integrity": "sha512-oZLYFEAzUKyi3SKnXvj32ZCEGH6RDnao7COuCVhDydMS9NrCSVXhM79VaKyP5+Zc33m0QXEd2DN3UkU7OsHcfw=="
37 | },
38 | "@rollup/plugin-commonjs": {
39 | "version": "11.1.0",
40 | "resolved": "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-11.1.0.tgz",
41 | "integrity": "sha512-Ycr12N3ZPN96Fw2STurD21jMqzKwL9QuFhms3SD7KKRK7oaXUsBU9Zt0jL/rOPHiPYisI21/rXGO3jr9BnLHUA==",
42 | "dev": true,
43 | "requires": {
44 | "@rollup/pluginutils": "^3.0.8",
45 | "commondir": "^1.0.1",
46 | "estree-walker": "^1.0.1",
47 | "glob": "^7.1.2",
48 | "is-reference": "^1.1.2",
49 | "magic-string": "^0.25.2",
50 | "resolve": "^1.11.0"
51 | }
52 | },
53 | "@rollup/plugin-node-resolve": {
54 | "version": "7.1.3",
55 | "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-7.1.3.tgz",
56 | "integrity": "sha512-RxtSL3XmdTAE2byxekYLnx+98kEUOrPHF/KRVjLH+DEIHy6kjIw7YINQzn+NXiH/NTrQLAwYs0GWB+csWygA9Q==",
57 | "dev": true,
58 | "requires": {
59 | "@rollup/pluginutils": "^3.0.8",
60 | "@types/resolve": "0.0.8",
61 | "builtin-modules": "^3.1.0",
62 | "is-module": "^1.0.0",
63 | "resolve": "^1.14.2"
64 | }
65 | },
66 | "@rollup/pluginutils": {
67 | "version": "3.0.9",
68 | "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.0.9.tgz",
69 | "integrity": "sha512-TLZavlfPAZYI7v33wQh4mTP6zojne14yok3DNSLcjoG/Hirxfkonn6icP5rrNWRn8nZsirJBFFpijVOJzkUHDg==",
70 | "dev": true,
71 | "requires": {
72 | "@types/estree": "0.0.39",
73 | "estree-walker": "^1.0.1",
74 | "micromatch": "^4.0.2"
75 | }
76 | },
77 | "@types/color-name": {
78 | "version": "1.1.1",
79 | "resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz",
80 | "integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==",
81 | "dev": true
82 | },
83 | "@types/estree": {
84 | "version": "0.0.39",
85 | "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz",
86 | "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==",
87 | "dev": true
88 | },
89 | "@types/node": {
90 | "version": "13.13.4",
91 | "resolved": "https://registry.npmjs.org/@types/node/-/node-13.13.4.tgz",
92 | "integrity": "sha512-x26ur3dSXgv5AwKS0lNfbjpCakGIduWU1DU91Zz58ONRWrIKGunmZBNv4P7N+e27sJkiGDsw/3fT4AtsqQBrBA==",
93 | "dev": true
94 | },
95 | "@types/resolve": {
96 | "version": "0.0.8",
97 | "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-0.0.8.tgz",
98 | "integrity": "sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ==",
99 | "dev": true,
100 | "requires": {
101 | "@types/node": "*"
102 | }
103 | },
104 | "abab": {
105 | "version": "2.0.3",
106 | "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.3.tgz",
107 | "integrity": "sha512-tsFzPpcttalNjFBCFMqsKYQcWxxen1pgJR56by//QwvJc4/OUS3kPOOttx2tSIfjsylB0pYu7f5D3K1RCxUnUg=="
108 | },
109 | "acorn": {
110 | "version": "7.1.1",
111 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.1.1.tgz",
112 | "integrity": "sha512-add7dgA5ppRPxCFJoAGfMDi7PIBXq1RtGo7BhbLaxwrXPOmw8gq48Y9ozT01hUKy9byMjlR20EJhu5zlkErEkg=="
113 | },
114 | "acorn-globals": {
115 | "version": "6.0.0",
116 | "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz",
117 | "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==",
118 | "requires": {
119 | "acorn": "^7.1.1",
120 | "acorn-walk": "^7.1.1"
121 | }
122 | },
123 | "acorn-jsx": {
124 | "version": "5.2.0",
125 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.2.0.tgz",
126 | "integrity": "sha512-HiUX/+K2YpkpJ+SzBffkM/AQ2YE03S0U1kjTLVpoJdhZMOWy8qvXVN9JdLqv2QsaQ6MPYQIuNmwD8zOiYUofLQ==",
127 | "dev": true
128 | },
129 | "acorn-walk": {
130 | "version": "7.1.1",
131 | "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.1.1.tgz",
132 | "integrity": "sha512-wdlPY2tm/9XBr7QkKlq0WQVgiuGTX6YWPyRyBviSoScBuLfTVQhvwg6wJ369GJ/1nPfTLMfnrFIfjqVg6d+jQQ=="
133 | },
134 | "ajv": {
135 | "version": "6.12.0",
136 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.0.tgz",
137 | "integrity": "sha512-D6gFiFA0RRLyUbvijN74DWAjXSFxWKaWP7mldxkVhyhAV3+SWA9HEJPHQ2c9soIeTFJqcSdFDGFgdqs1iUU2Hw==",
138 | "requires": {
139 | "fast-deep-equal": "^3.1.1",
140 | "fast-json-stable-stringify": "^2.0.0",
141 | "json-schema-traverse": "^0.4.1",
142 | "uri-js": "^4.2.2"
143 | }
144 | },
145 | "ansi-escapes": {
146 | "version": "4.3.1",
147 | "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.1.tgz",
148 | "integrity": "sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA==",
149 | "dev": true,
150 | "requires": {
151 | "type-fest": "^0.11.0"
152 | },
153 | "dependencies": {
154 | "type-fest": {
155 | "version": "0.11.0",
156 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.11.0.tgz",
157 | "integrity": "sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==",
158 | "dev": true
159 | }
160 | }
161 | },
162 | "ansi-regex": {
163 | "version": "5.0.0",
164 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
165 | "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==",
166 | "dev": true
167 | },
168 | "ansi-styles": {
169 | "version": "3.2.1",
170 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
171 | "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
172 | "requires": {
173 | "color-convert": "^1.9.0"
174 | }
175 | },
176 | "anymatch": {
177 | "version": "3.1.1",
178 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz",
179 | "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==",
180 | "dev": true,
181 | "requires": {
182 | "normalize-path": "^3.0.0",
183 | "picomatch": "^2.0.4"
184 | }
185 | },
186 | "argparse": {
187 | "version": "1.0.10",
188 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
189 | "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
190 | "dev": true,
191 | "requires": {
192 | "sprintf-js": "~1.0.2"
193 | }
194 | },
195 | "array-includes": {
196 | "version": "3.1.1",
197 | "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.1.tgz",
198 | "integrity": "sha512-c2VXaCHl7zPsvpkFsw4nxvFie4fh1ur9bpcgsVkIjqn0H/Xwdg+7fv3n2r/isyS8EBj5b06M9kHyZuIr4El6WQ==",
199 | "dev": true,
200 | "requires": {
201 | "define-properties": "^1.1.3",
202 | "es-abstract": "^1.17.0",
203 | "is-string": "^1.0.5"
204 | }
205 | },
206 | "array.prototype.flat": {
207 | "version": "1.2.3",
208 | "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.3.tgz",
209 | "integrity": "sha512-gBlRZV0VSmfPIeWfuuy56XZMvbVfbEUnOXUvt3F/eUUUSyzlgLxhEX4YAEpxNAogRGehPSnfXyPtYyKAhkzQhQ==",
210 | "dev": true,
211 | "requires": {
212 | "define-properties": "^1.1.3",
213 | "es-abstract": "^1.17.0-next.1"
214 | }
215 | },
216 | "asn1": {
217 | "version": "0.2.4",
218 | "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz",
219 | "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==",
220 | "requires": {
221 | "safer-buffer": "~2.1.0"
222 | }
223 | },
224 | "assert-plus": {
225 | "version": "1.0.0",
226 | "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
227 | "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU="
228 | },
229 | "astral-regex": {
230 | "version": "1.0.0",
231 | "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz",
232 | "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==",
233 | "dev": true
234 | },
235 | "async": {
236 | "version": "0.9.2",
237 | "resolved": "https://registry.npmjs.org/async/-/async-0.9.2.tgz",
238 | "integrity": "sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0="
239 | },
240 | "async-limiter": {
241 | "version": "1.0.1",
242 | "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz",
243 | "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==",
244 | "dev": true
245 | },
246 | "asynckit": {
247 | "version": "0.4.0",
248 | "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
249 | "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k="
250 | },
251 | "aws-sign2": {
252 | "version": "0.7.0",
253 | "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz",
254 | "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg="
255 | },
256 | "aws4": {
257 | "version": "1.9.1",
258 | "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.9.1.tgz",
259 | "integrity": "sha512-wMHVg2EOHaMRxbzgFJ9gtjOOCrI80OHLG14rxi28XwOW8ux6IiEbRCGGGqCtdAIg4FQCbW20k9RsT4y3gJlFug=="
260 | },
261 | "balanced-match": {
262 | "version": "1.0.0",
263 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz",
264 | "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c="
265 | },
266 | "bcrypt-pbkdf": {
267 | "version": "1.0.2",
268 | "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz",
269 | "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=",
270 | "requires": {
271 | "tweetnacl": "^0.14.3"
272 | }
273 | },
274 | "binary-extensions": {
275 | "version": "2.0.0",
276 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.0.0.tgz",
277 | "integrity": "sha512-Phlt0plgpIIBOGTT/ehfFnbNlfsDEiqmzE2KRXoX1bLIlir4X/MR+zSyBEkL05ffWgnRSf/DXv+WrUAVr93/ow==",
278 | "dev": true
279 | },
280 | "brace-expansion": {
281 | "version": "1.1.11",
282 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
283 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
284 | "requires": {
285 | "balanced-match": "^1.0.0",
286 | "concat-map": "0.0.1"
287 | }
288 | },
289 | "braces": {
290 | "version": "3.0.2",
291 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
292 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
293 | "dev": true,
294 | "requires": {
295 | "fill-range": "^7.0.1"
296 | }
297 | },
298 | "browser-process-hrtime": {
299 | "version": "1.0.0",
300 | "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz",
301 | "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow=="
302 | },
303 | "buffer-from": {
304 | "version": "1.1.1",
305 | "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz",
306 | "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==",
307 | "dev": true
308 | },
309 | "builtin-modules": {
310 | "version": "3.1.0",
311 | "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.1.0.tgz",
312 | "integrity": "sha512-k0KL0aWZuBt2lrxrcASWDfwOLMnodeQjodT/1SxEQAXsHANgo6ZC/VEaSEHCXt7aSTZ4/4H5LKa+tBXmW7Vtvw==",
313 | "dev": true
314 | },
315 | "callsites": {
316 | "version": "3.1.0",
317 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
318 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
319 | "dev": true
320 | },
321 | "camelcase": {
322 | "version": "5.3.1",
323 | "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
324 | "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="
325 | },
326 | "caseless": {
327 | "version": "0.12.0",
328 | "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz",
329 | "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw="
330 | },
331 | "chalk": {
332 | "version": "2.4.2",
333 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
334 | "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
335 | "requires": {
336 | "ansi-styles": "^3.2.1",
337 | "escape-string-regexp": "^1.0.5",
338 | "supports-color": "^5.3.0"
339 | }
340 | },
341 | "chardet": {
342 | "version": "0.7.0",
343 | "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz",
344 | "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==",
345 | "dev": true
346 | },
347 | "chokidar": {
348 | "version": "3.4.0",
349 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.0.tgz",
350 | "integrity": "sha512-aXAaho2VJtisB/1fg1+3nlLJqGOuewTzQpd/Tz0yTg2R0e4IGtshYvtjowyEumcBv2z+y4+kc75Mz7j5xJskcQ==",
351 | "dev": true,
352 | "requires": {
353 | "anymatch": "~3.1.1",
354 | "braces": "~3.0.2",
355 | "fsevents": "~2.1.2",
356 | "glob-parent": "~5.1.0",
357 | "is-binary-path": "~2.1.0",
358 | "is-glob": "~4.0.1",
359 | "normalize-path": "~3.0.0",
360 | "readdirp": "~3.4.0"
361 | }
362 | },
363 | "cli-cursor": {
364 | "version": "3.1.0",
365 | "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz",
366 | "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==",
367 | "dev": true,
368 | "requires": {
369 | "restore-cursor": "^3.1.0"
370 | }
371 | },
372 | "cli-width": {
373 | "version": "2.2.0",
374 | "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz",
375 | "integrity": "sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=",
376 | "dev": true
377 | },
378 | "cliui": {
379 | "version": "5.0.0",
380 | "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz",
381 | "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==",
382 | "requires": {
383 | "string-width": "^3.1.0",
384 | "strip-ansi": "^5.2.0",
385 | "wrap-ansi": "^5.1.0"
386 | },
387 | "dependencies": {
388 | "emoji-regex": {
389 | "version": "7.0.3",
390 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz",
391 | "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA=="
392 | },
393 | "is-fullwidth-code-point": {
394 | "version": "2.0.0",
395 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
396 | "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8="
397 | },
398 | "string-width": {
399 | "version": "3.1.0",
400 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz",
401 | "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==",
402 | "requires": {
403 | "emoji-regex": "^7.0.1",
404 | "is-fullwidth-code-point": "^2.0.0",
405 | "strip-ansi": "^5.1.0"
406 | }
407 | }
408 | }
409 | },
410 | "color-convert": {
411 | "version": "1.9.3",
412 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
413 | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
414 | "requires": {
415 | "color-name": "1.1.3"
416 | }
417 | },
418 | "color-name": {
419 | "version": "1.1.3",
420 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
421 | "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU="
422 | },
423 | "combined-stream": {
424 | "version": "1.0.8",
425 | "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
426 | "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
427 | "requires": {
428 | "delayed-stream": "~1.0.0"
429 | }
430 | },
431 | "commander": {
432 | "version": "2.20.3",
433 | "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
434 | "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
435 | "dev": true
436 | },
437 | "commondir": {
438 | "version": "1.0.1",
439 | "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz",
440 | "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=",
441 | "dev": true
442 | },
443 | "concat-map": {
444 | "version": "0.0.1",
445 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
446 | "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s="
447 | },
448 | "console-clear": {
449 | "version": "1.1.1",
450 | "resolved": "https://registry.npmjs.org/console-clear/-/console-clear-1.1.1.tgz",
451 | "integrity": "sha512-pMD+MVR538ipqkG5JXeOEbKWS5um1H4LUUccUQG68qpeqBYbzYy79Gh55jkd2TtPdRfUaLWdv6LPP//5Zt0aPQ=="
452 | },
453 | "contains-path": {
454 | "version": "0.1.0",
455 | "resolved": "https://registry.npmjs.org/contains-path/-/contains-path-0.1.0.tgz",
456 | "integrity": "sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo=",
457 | "dev": true
458 | },
459 | "core-util-is": {
460 | "version": "1.0.2",
461 | "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
462 | "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac="
463 | },
464 | "cross-spawn": {
465 | "version": "6.0.5",
466 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz",
467 | "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==",
468 | "dev": true,
469 | "requires": {
470 | "nice-try": "^1.0.4",
471 | "path-key": "^2.0.1",
472 | "semver": "^5.5.0",
473 | "shebang-command": "^1.2.0",
474 | "which": "^1.2.9"
475 | },
476 | "dependencies": {
477 | "semver": {
478 | "version": "5.7.1",
479 | "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
480 | "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
481 | "dev": true
482 | }
483 | }
484 | },
485 | "cssom": {
486 | "version": "0.4.4",
487 | "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz",
488 | "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw=="
489 | },
490 | "cssstyle": {
491 | "version": "2.3.0",
492 | "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz",
493 | "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==",
494 | "requires": {
495 | "cssom": "~0.3.6"
496 | },
497 | "dependencies": {
498 | "cssom": {
499 | "version": "0.3.8",
500 | "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz",
501 | "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg=="
502 | }
503 | }
504 | },
505 | "dashdash": {
506 | "version": "1.14.1",
507 | "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz",
508 | "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=",
509 | "requires": {
510 | "assert-plus": "^1.0.0"
511 | }
512 | },
513 | "data-urls": {
514 | "version": "2.0.0",
515 | "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz",
516 | "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==",
517 | "requires": {
518 | "abab": "^2.0.3",
519 | "whatwg-mimetype": "^2.3.0",
520 | "whatwg-url": "^8.0.0"
521 | }
522 | },
523 | "debug": {
524 | "version": "4.1.1",
525 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
526 | "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
527 | "dev": true,
528 | "requires": {
529 | "ms": "^2.1.1"
530 | }
531 | },
532 | "decamelize": {
533 | "version": "1.2.0",
534 | "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
535 | "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA="
536 | },
537 | "decimal.js": {
538 | "version": "10.2.0",
539 | "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.2.0.tgz",
540 | "integrity": "sha512-vDPw+rDgn3bZe1+F/pyEwb1oMG2XTlRVgAa6B4KccTEpYgF8w6eQllVbQcfIJnZyvzFtFpxnpGtx8dd7DJp/Rw=="
541 | },
542 | "deep-is": {
543 | "version": "0.1.3",
544 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz",
545 | "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ="
546 | },
547 | "define-properties": {
548 | "version": "1.1.3",
549 | "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz",
550 | "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==",
551 | "dev": true,
552 | "requires": {
553 | "object-keys": "^1.0.12"
554 | }
555 | },
556 | "delayed-stream": {
557 | "version": "1.0.0",
558 | "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
559 | "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk="
560 | },
561 | "doctrine": {
562 | "version": "3.0.0",
563 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
564 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==",
565 | "dev": true,
566 | "requires": {
567 | "esutils": "^2.0.2"
568 | }
569 | },
570 | "domexception": {
571 | "version": "2.0.1",
572 | "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz",
573 | "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==",
574 | "requires": {
575 | "webidl-conversions": "^5.0.0"
576 | },
577 | "dependencies": {
578 | "webidl-conversions": {
579 | "version": "5.0.0",
580 | "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz",
581 | "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA=="
582 | }
583 | }
584 | },
585 | "ecc-jsbn": {
586 | "version": "0.1.2",
587 | "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz",
588 | "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=",
589 | "requires": {
590 | "jsbn": "~0.1.0",
591 | "safer-buffer": "^2.1.0"
592 | }
593 | },
594 | "ejs": {
595 | "version": "3.1.2",
596 | "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.2.tgz",
597 | "integrity": "sha512-zFuywxrAWtX5Mk2KAuoJNkXXbfezpNA0v7i+YC971QORguPekpjpAgeOv99YWSdKXwj7JxI2QAWDeDkE8fWtXw==",
598 | "requires": {
599 | "jake": "^10.6.1"
600 | }
601 | },
602 | "emoji-regex": {
603 | "version": "8.0.0",
604 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
605 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
606 | "dev": true
607 | },
608 | "error-ex": {
609 | "version": "1.3.2",
610 | "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
611 | "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
612 | "dev": true,
613 | "requires": {
614 | "is-arrayish": "^0.2.1"
615 | }
616 | },
617 | "es-abstract": {
618 | "version": "1.17.5",
619 | "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.5.tgz",
620 | "integrity": "sha512-BR9auzDbySxOcfog0tLECW8l28eRGpDpU3Dm3Hp4q/N+VtLTmyj4EUN088XZWQDW/hzj6sYRDXeOFsaAODKvpg==",
621 | "dev": true,
622 | "requires": {
623 | "es-to-primitive": "^1.2.1",
624 | "function-bind": "^1.1.1",
625 | "has": "^1.0.3",
626 | "has-symbols": "^1.0.1",
627 | "is-callable": "^1.1.5",
628 | "is-regex": "^1.0.5",
629 | "object-inspect": "^1.7.0",
630 | "object-keys": "^1.1.1",
631 | "object.assign": "^4.1.0",
632 | "string.prototype.trimleft": "^2.1.1",
633 | "string.prototype.trimright": "^2.1.1"
634 | }
635 | },
636 | "es-to-primitive": {
637 | "version": "1.2.1",
638 | "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
639 | "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
640 | "dev": true,
641 | "requires": {
642 | "is-callable": "^1.1.4",
643 | "is-date-object": "^1.0.1",
644 | "is-symbol": "^1.0.2"
645 | }
646 | },
647 | "escape-string-regexp": {
648 | "version": "1.0.5",
649 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
650 | "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ="
651 | },
652 | "escodegen": {
653 | "version": "1.14.1",
654 | "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.1.tgz",
655 | "integrity": "sha512-Bmt7NcRySdIfNPfU2ZoXDrrXsG9ZjvDxcAlMfDUgRBjLOWTuIACXPBFJH7Z+cLb40JeQco5toikyc9t9P8E9SQ==",
656 | "requires": {
657 | "esprima": "^4.0.1",
658 | "estraverse": "^4.2.0",
659 | "esutils": "^2.0.2",
660 | "optionator": "^0.8.1",
661 | "source-map": "~0.6.1"
662 | }
663 | },
664 | "eslint": {
665 | "version": "6.8.0",
666 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-6.8.0.tgz",
667 | "integrity": "sha512-K+Iayyo2LtyYhDSYwz5D5QdWw0hCacNzyq1Y821Xna2xSJj7cijoLLYmLxTQgcgZ9mC61nryMy9S7GRbYpI5Ig==",
668 | "dev": true,
669 | "requires": {
670 | "@babel/code-frame": "^7.0.0",
671 | "ajv": "^6.10.0",
672 | "chalk": "^2.1.0",
673 | "cross-spawn": "^6.0.5",
674 | "debug": "^4.0.1",
675 | "doctrine": "^3.0.0",
676 | "eslint-scope": "^5.0.0",
677 | "eslint-utils": "^1.4.3",
678 | "eslint-visitor-keys": "^1.1.0",
679 | "espree": "^6.1.2",
680 | "esquery": "^1.0.1",
681 | "esutils": "^2.0.2",
682 | "file-entry-cache": "^5.0.1",
683 | "functional-red-black-tree": "^1.0.1",
684 | "glob-parent": "^5.0.0",
685 | "globals": "^12.1.0",
686 | "ignore": "^4.0.6",
687 | "import-fresh": "^3.0.0",
688 | "imurmurhash": "^0.1.4",
689 | "inquirer": "^7.0.0",
690 | "is-glob": "^4.0.0",
691 | "js-yaml": "^3.13.1",
692 | "json-stable-stringify-without-jsonify": "^1.0.1",
693 | "levn": "^0.3.0",
694 | "lodash": "^4.17.14",
695 | "minimatch": "^3.0.4",
696 | "mkdirp": "^0.5.1",
697 | "natural-compare": "^1.4.0",
698 | "optionator": "^0.8.3",
699 | "progress": "^2.0.0",
700 | "regexpp": "^2.0.1",
701 | "semver": "^6.1.2",
702 | "strip-ansi": "^5.2.0",
703 | "strip-json-comments": "^3.0.1",
704 | "table": "^5.2.3",
705 | "text-table": "^0.2.0",
706 | "v8-compile-cache": "^2.0.3"
707 | }
708 | },
709 | "eslint-config-prettier": {
710 | "version": "6.10.1",
711 | "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-6.10.1.tgz",
712 | "integrity": "sha512-svTy6zh1ecQojvpbJSgH3aei/Rt7C6i090l5f2WQ4aB05lYHeZIR1qL4wZyyILTbtmnbHP5Yn8MrsOJMGa8RkQ==",
713 | "dev": true,
714 | "requires": {
715 | "get-stdin": "^6.0.0"
716 | }
717 | },
718 | "eslint-config-standard": {
719 | "version": "14.1.1",
720 | "resolved": "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-14.1.1.tgz",
721 | "integrity": "sha512-Z9B+VR+JIXRxz21udPTL9HpFMyoMUEeX1G251EQ6e05WD9aPVtVBn09XUmZ259wCMlCDmYDSZG62Hhm+ZTJcUg==",
722 | "dev": true
723 | },
724 | "eslint-import-resolver-node": {
725 | "version": "0.3.3",
726 | "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.3.tgz",
727 | "integrity": "sha512-b8crLDo0M5RSe5YG8Pu2DYBj71tSB6OvXkfzwbJU2w7y8P4/yo0MyF8jU26IEuEuHF2K5/gcAJE3LhQGqBBbVg==",
728 | "dev": true,
729 | "requires": {
730 | "debug": "^2.6.9",
731 | "resolve": "^1.13.1"
732 | },
733 | "dependencies": {
734 | "debug": {
735 | "version": "2.6.9",
736 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
737 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
738 | "dev": true,
739 | "requires": {
740 | "ms": "2.0.0"
741 | }
742 | },
743 | "ms": {
744 | "version": "2.0.0",
745 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
746 | "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
747 | "dev": true
748 | }
749 | }
750 | },
751 | "eslint-module-utils": {
752 | "version": "2.6.0",
753 | "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.6.0.tgz",
754 | "integrity": "sha512-6j9xxegbqe8/kZY8cYpcp0xhbK0EgJlg3g9mib3/miLaExuuwc3n5UEfSnU6hWMbT0FAYVvDbL9RrRgpUeQIvA==",
755 | "dev": true,
756 | "requires": {
757 | "debug": "^2.6.9",
758 | "pkg-dir": "^2.0.0"
759 | },
760 | "dependencies": {
761 | "debug": {
762 | "version": "2.6.9",
763 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
764 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
765 | "dev": true,
766 | "requires": {
767 | "ms": "2.0.0"
768 | }
769 | },
770 | "ms": {
771 | "version": "2.0.0",
772 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
773 | "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
774 | "dev": true
775 | }
776 | }
777 | },
778 | "eslint-plugin-es": {
779 | "version": "3.0.0",
780 | "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-3.0.0.tgz",
781 | "integrity": "sha512-6/Jb/J/ZvSebydwbBJO1R9E5ky7YeElfK56Veh7e4QGFHCXoIXGH9HhVz+ibJLM3XJ1XjP+T7rKBLUa/Y7eIng==",
782 | "dev": true,
783 | "requires": {
784 | "eslint-utils": "^2.0.0",
785 | "regexpp": "^3.0.0"
786 | },
787 | "dependencies": {
788 | "eslint-utils": {
789 | "version": "2.0.0",
790 | "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.0.0.tgz",
791 | "integrity": "sha512-0HCPuJv+7Wv1bACm8y5/ECVfYdfsAm9xmVb7saeFlxjPYALefjhbYoCkBjPdPzGH8wWyTpAez82Fh3VKYEZ8OA==",
792 | "dev": true,
793 | "requires": {
794 | "eslint-visitor-keys": "^1.1.0"
795 | }
796 | },
797 | "regexpp": {
798 | "version": "3.1.0",
799 | "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.1.0.tgz",
800 | "integrity": "sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q==",
801 | "dev": true
802 | }
803 | }
804 | },
805 | "eslint-plugin-import": {
806 | "version": "2.20.2",
807 | "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.20.2.tgz",
808 | "integrity": "sha512-FObidqpXrR8OnCh4iNsxy+WACztJLXAHBO5hK79T1Hc77PgQZkyDGA5Ag9xAvRpglvLNxhH/zSmZ70/pZ31dHg==",
809 | "dev": true,
810 | "requires": {
811 | "array-includes": "^3.0.3",
812 | "array.prototype.flat": "^1.2.1",
813 | "contains-path": "^0.1.0",
814 | "debug": "^2.6.9",
815 | "doctrine": "1.5.0",
816 | "eslint-import-resolver-node": "^0.3.2",
817 | "eslint-module-utils": "^2.4.1",
818 | "has": "^1.0.3",
819 | "minimatch": "^3.0.4",
820 | "object.values": "^1.1.0",
821 | "read-pkg-up": "^2.0.0",
822 | "resolve": "^1.12.0"
823 | },
824 | "dependencies": {
825 | "debug": {
826 | "version": "2.6.9",
827 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
828 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
829 | "dev": true,
830 | "requires": {
831 | "ms": "2.0.0"
832 | }
833 | },
834 | "doctrine": {
835 | "version": "1.5.0",
836 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz",
837 | "integrity": "sha1-N53Ocw9hZvds76TmcHoVmwLFpvo=",
838 | "dev": true,
839 | "requires": {
840 | "esutils": "^2.0.2",
841 | "isarray": "^1.0.0"
842 | }
843 | },
844 | "ms": {
845 | "version": "2.0.0",
846 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
847 | "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
848 | "dev": true
849 | }
850 | }
851 | },
852 | "eslint-plugin-node": {
853 | "version": "11.1.0",
854 | "resolved": "https://registry.npmjs.org/eslint-plugin-node/-/eslint-plugin-node-11.1.0.tgz",
855 | "integrity": "sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==",
856 | "dev": true,
857 | "requires": {
858 | "eslint-plugin-es": "^3.0.0",
859 | "eslint-utils": "^2.0.0",
860 | "ignore": "^5.1.1",
861 | "minimatch": "^3.0.4",
862 | "resolve": "^1.10.1",
863 | "semver": "^6.1.0"
864 | },
865 | "dependencies": {
866 | "eslint-utils": {
867 | "version": "2.0.0",
868 | "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.0.0.tgz",
869 | "integrity": "sha512-0HCPuJv+7Wv1bACm8y5/ECVfYdfsAm9xmVb7saeFlxjPYALefjhbYoCkBjPdPzGH8wWyTpAez82Fh3VKYEZ8OA==",
870 | "dev": true,
871 | "requires": {
872 | "eslint-visitor-keys": "^1.1.0"
873 | }
874 | },
875 | "ignore": {
876 | "version": "5.1.4",
877 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.4.tgz",
878 | "integrity": "sha512-MzbUSahkTW1u7JpKKjY7LCARd1fU5W2rLdxlM4kdkayuCwZImjkpluF9CM1aLewYJguPDqewLam18Y6AU69A8A==",
879 | "dev": true
880 | }
881 | }
882 | },
883 | "eslint-plugin-prettier": {
884 | "version": "3.1.2",
885 | "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-3.1.2.tgz",
886 | "integrity": "sha512-GlolCC9y3XZfv3RQfwGew7NnuFDKsfI4lbvRK+PIIo23SFH+LemGs4cKwzAaRa+Mdb+lQO/STaIayno8T5sJJA==",
887 | "dev": true,
888 | "requires": {
889 | "prettier-linter-helpers": "^1.0.0"
890 | }
891 | },
892 | "eslint-plugin-promise": {
893 | "version": "4.2.1",
894 | "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-4.2.1.tgz",
895 | "integrity": "sha512-VoM09vT7bfA7D+upt+FjeBO5eHIJQBUWki1aPvB+vbNiHS3+oGIJGIeyBtKQTME6UPXXy3vV07OL1tHd3ANuDw==",
896 | "dev": true
897 | },
898 | "eslint-plugin-standard": {
899 | "version": "4.0.1",
900 | "resolved": "https://registry.npmjs.org/eslint-plugin-standard/-/eslint-plugin-standard-4.0.1.tgz",
901 | "integrity": "sha512-v/KBnfyaOMPmZc/dmc6ozOdWqekGp7bBGq4jLAecEfPGmfKiWS4sA8sC0LqiV9w5qmXAtXVn4M3p1jSyhY85SQ==",
902 | "dev": true
903 | },
904 | "eslint-plugin-svelte3": {
905 | "version": "2.7.3",
906 | "resolved": "https://registry.npmjs.org/eslint-plugin-svelte3/-/eslint-plugin-svelte3-2.7.3.tgz",
907 | "integrity": "sha512-p6HhxyICX9x/x+8WSy6AVk2bmv9ayoznoTSyCvK47th/k/07ksuJixMwbGX9qxJVAmPBaYMjEIMSEZtJHPIN7w==",
908 | "dev": true
909 | },
910 | "eslint-scope": {
911 | "version": "5.0.0",
912 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.0.0.tgz",
913 | "integrity": "sha512-oYrhJW7S0bxAFDvWqzvMPRm6pcgcnWc4QnofCAqRTRfQC0JcwenzGglTtsLyIuuWFfkqDG9vz67cnttSd53djw==",
914 | "dev": true,
915 | "requires": {
916 | "esrecurse": "^4.1.0",
917 | "estraverse": "^4.1.1"
918 | }
919 | },
920 | "eslint-utils": {
921 | "version": "1.4.3",
922 | "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.4.3.tgz",
923 | "integrity": "sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q==",
924 | "dev": true,
925 | "requires": {
926 | "eslint-visitor-keys": "^1.1.0"
927 | }
928 | },
929 | "eslint-visitor-keys": {
930 | "version": "1.1.0",
931 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz",
932 | "integrity": "sha512-8y9YjtM1JBJU/A9Kc+SbaOV4y29sSWckBwMHa+FGtVj5gN/sbnKDf6xJUl+8g7FAij9LVaP8C24DUiH/f/2Z9A==",
933 | "dev": true
934 | },
935 | "espree": {
936 | "version": "6.2.1",
937 | "resolved": "https://registry.npmjs.org/espree/-/espree-6.2.1.tgz",
938 | "integrity": "sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==",
939 | "dev": true,
940 | "requires": {
941 | "acorn": "^7.1.1",
942 | "acorn-jsx": "^5.2.0",
943 | "eslint-visitor-keys": "^1.1.0"
944 | }
945 | },
946 | "esprima": {
947 | "version": "4.0.1",
948 | "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
949 | "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="
950 | },
951 | "esquery": {
952 | "version": "1.2.0",
953 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.2.0.tgz",
954 | "integrity": "sha512-weltsSqdeWIX9G2qQZz7KlTRJdkkOCTPgLYJUz1Hacf48R4YOwGPHO3+ORfWedqJKbq5WQmsgK90n+pFLIKt/Q==",
955 | "dev": true,
956 | "requires": {
957 | "estraverse": "^5.0.0"
958 | },
959 | "dependencies": {
960 | "estraverse": {
961 | "version": "5.0.0",
962 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.0.0.tgz",
963 | "integrity": "sha512-j3acdrMzqrxmJTNj5dbr1YbjacrYgAxVMeF0gK16E3j494mOe7xygM/ZLIguEQ0ETwAg2hlJCtHRGav+y0Ny5A==",
964 | "dev": true
965 | }
966 | }
967 | },
968 | "esrecurse": {
969 | "version": "4.2.1",
970 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz",
971 | "integrity": "sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==",
972 | "dev": true,
973 | "requires": {
974 | "estraverse": "^4.1.0"
975 | }
976 | },
977 | "estraverse": {
978 | "version": "4.3.0",
979 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
980 | "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw=="
981 | },
982 | "estree-walker": {
983 | "version": "1.0.1",
984 | "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz",
985 | "integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==",
986 | "dev": true
987 | },
988 | "esutils": {
989 | "version": "2.0.3",
990 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
991 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g=="
992 | },
993 | "extend": {
994 | "version": "3.0.2",
995 | "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
996 | "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g=="
997 | },
998 | "external-editor": {
999 | "version": "3.1.0",
1000 | "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz",
1001 | "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==",
1002 | "dev": true,
1003 | "requires": {
1004 | "chardet": "^0.7.0",
1005 | "iconv-lite": "^0.4.24",
1006 | "tmp": "^0.0.33"
1007 | }
1008 | },
1009 | "extsprintf": {
1010 | "version": "1.3.0",
1011 | "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz",
1012 | "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU="
1013 | },
1014 | "fast-deep-equal": {
1015 | "version": "3.1.1",
1016 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz",
1017 | "integrity": "sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA=="
1018 | },
1019 | "fast-diff": {
1020 | "version": "1.2.0",
1021 | "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz",
1022 | "integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==",
1023 | "dev": true
1024 | },
1025 | "fast-json-stable-stringify": {
1026 | "version": "2.1.0",
1027 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
1028 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="
1029 | },
1030 | "fast-levenshtein": {
1031 | "version": "2.0.6",
1032 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
1033 | "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc="
1034 | },
1035 | "figures": {
1036 | "version": "3.2.0",
1037 | "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz",
1038 | "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==",
1039 | "dev": true,
1040 | "requires": {
1041 | "escape-string-regexp": "^1.0.5"
1042 | }
1043 | },
1044 | "file-entry-cache": {
1045 | "version": "5.0.1",
1046 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz",
1047 | "integrity": "sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==",
1048 | "dev": true,
1049 | "requires": {
1050 | "flat-cache": "^2.0.1"
1051 | }
1052 | },
1053 | "filelist": {
1054 | "version": "1.0.1",
1055 | "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.1.tgz",
1056 | "integrity": "sha512-8zSK6Nu0DQIC08mUC46sWGXi+q3GGpKydAG36k+JDba6VRpkevvOWUW5a/PhShij4+vHT9M+ghgG7eM+a9JDUQ==",
1057 | "requires": {
1058 | "minimatch": "^3.0.4"
1059 | }
1060 | },
1061 | "fill-range": {
1062 | "version": "7.0.1",
1063 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
1064 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
1065 | "dev": true,
1066 | "requires": {
1067 | "to-regex-range": "^5.0.1"
1068 | }
1069 | },
1070 | "find-up": {
1071 | "version": "2.1.0",
1072 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz",
1073 | "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=",
1074 | "dev": true,
1075 | "requires": {
1076 | "locate-path": "^2.0.0"
1077 | }
1078 | },
1079 | "flat-cache": {
1080 | "version": "2.0.1",
1081 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz",
1082 | "integrity": "sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==",
1083 | "dev": true,
1084 | "requires": {
1085 | "flatted": "^2.0.0",
1086 | "rimraf": "2.6.3",
1087 | "write": "1.0.3"
1088 | }
1089 | },
1090 | "flatted": {
1091 | "version": "2.0.2",
1092 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz",
1093 | "integrity": "sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==",
1094 | "dev": true
1095 | },
1096 | "forever-agent": {
1097 | "version": "0.6.1",
1098 | "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz",
1099 | "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE="
1100 | },
1101 | "form-data": {
1102 | "version": "2.3.3",
1103 | "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz",
1104 | "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==",
1105 | "requires": {
1106 | "asynckit": "^0.4.0",
1107 | "combined-stream": "^1.0.6",
1108 | "mime-types": "^2.1.12"
1109 | }
1110 | },
1111 | "fs.realpath": {
1112 | "version": "1.0.0",
1113 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
1114 | "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=",
1115 | "dev": true
1116 | },
1117 | "fsevents": {
1118 | "version": "2.1.3",
1119 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz",
1120 | "integrity": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==",
1121 | "dev": true,
1122 | "optional": true
1123 | },
1124 | "function-bind": {
1125 | "version": "1.1.1",
1126 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
1127 | "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==",
1128 | "dev": true
1129 | },
1130 | "functional-red-black-tree": {
1131 | "version": "1.0.1",
1132 | "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz",
1133 | "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=",
1134 | "dev": true
1135 | },
1136 | "get-caller-file": {
1137 | "version": "2.0.5",
1138 | "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
1139 | "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="
1140 | },
1141 | "get-port": {
1142 | "version": "3.2.0",
1143 | "resolved": "https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz",
1144 | "integrity": "sha1-3Xzn3hh8Bsi/NTeWrHHgmfCYDrw="
1145 | },
1146 | "get-stdin": {
1147 | "version": "6.0.0",
1148 | "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-6.0.0.tgz",
1149 | "integrity": "sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g==",
1150 | "dev": true
1151 | },
1152 | "getpass": {
1153 | "version": "0.1.7",
1154 | "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz",
1155 | "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=",
1156 | "requires": {
1157 | "assert-plus": "^1.0.0"
1158 | }
1159 | },
1160 | "glob": {
1161 | "version": "7.1.6",
1162 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz",
1163 | "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==",
1164 | "dev": true,
1165 | "requires": {
1166 | "fs.realpath": "^1.0.0",
1167 | "inflight": "^1.0.4",
1168 | "inherits": "2",
1169 | "minimatch": "^3.0.4",
1170 | "once": "^1.3.0",
1171 | "path-is-absolute": "^1.0.0"
1172 | }
1173 | },
1174 | "glob-parent": {
1175 | "version": "5.1.1",
1176 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz",
1177 | "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==",
1178 | "dev": true,
1179 | "requires": {
1180 | "is-glob": "^4.0.1"
1181 | }
1182 | },
1183 | "globals": {
1184 | "version": "12.4.0",
1185 | "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz",
1186 | "integrity": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==",
1187 | "dev": true,
1188 | "requires": {
1189 | "type-fest": "^0.8.1"
1190 | }
1191 | },
1192 | "graceful-fs": {
1193 | "version": "4.2.3",
1194 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.3.tgz",
1195 | "integrity": "sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ==",
1196 | "dev": true
1197 | },
1198 | "har-schema": {
1199 | "version": "2.0.0",
1200 | "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz",
1201 | "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI="
1202 | },
1203 | "har-validator": {
1204 | "version": "5.1.3",
1205 | "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz",
1206 | "integrity": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==",
1207 | "requires": {
1208 | "ajv": "^6.5.5",
1209 | "har-schema": "^2.0.0"
1210 | }
1211 | },
1212 | "has": {
1213 | "version": "1.0.3",
1214 | "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
1215 | "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
1216 | "dev": true,
1217 | "requires": {
1218 | "function-bind": "^1.1.1"
1219 | }
1220 | },
1221 | "has-flag": {
1222 | "version": "3.0.0",
1223 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
1224 | "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0="
1225 | },
1226 | "has-symbols": {
1227 | "version": "1.0.1",
1228 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
1229 | "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
1230 | "dev": true
1231 | },
1232 | "hosted-git-info": {
1233 | "version": "2.8.8",
1234 | "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz",
1235 | "integrity": "sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==",
1236 | "dev": true
1237 | },
1238 | "html-encoding-sniffer": {
1239 | "version": "2.0.1",
1240 | "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz",
1241 | "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==",
1242 | "requires": {
1243 | "whatwg-encoding": "^1.0.5"
1244 | }
1245 | },
1246 | "http-signature": {
1247 | "version": "1.2.0",
1248 | "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz",
1249 | "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=",
1250 | "requires": {
1251 | "assert-plus": "^1.0.0",
1252 | "jsprim": "^1.2.2",
1253 | "sshpk": "^1.7.0"
1254 | }
1255 | },
1256 | "iconv-lite": {
1257 | "version": "0.4.24",
1258 | "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
1259 | "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
1260 | "requires": {
1261 | "safer-buffer": ">= 2.1.2 < 3"
1262 | }
1263 | },
1264 | "ignore": {
1265 | "version": "4.0.6",
1266 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz",
1267 | "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==",
1268 | "dev": true
1269 | },
1270 | "import-fresh": {
1271 | "version": "3.2.1",
1272 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.2.1.tgz",
1273 | "integrity": "sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==",
1274 | "dev": true,
1275 | "requires": {
1276 | "parent-module": "^1.0.0",
1277 | "resolve-from": "^4.0.0"
1278 | }
1279 | },
1280 | "imurmurhash": {
1281 | "version": "0.1.4",
1282 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
1283 | "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=",
1284 | "dev": true
1285 | },
1286 | "inflight": {
1287 | "version": "1.0.6",
1288 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
1289 | "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=",
1290 | "dev": true,
1291 | "requires": {
1292 | "once": "^1.3.0",
1293 | "wrappy": "1"
1294 | }
1295 | },
1296 | "inherits": {
1297 | "version": "2.0.4",
1298 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
1299 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
1300 | "dev": true
1301 | },
1302 | "inquirer": {
1303 | "version": "7.1.0",
1304 | "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.1.0.tgz",
1305 | "integrity": "sha512-5fJMWEmikSYu0nv/flMc475MhGbB7TSPd/2IpFV4I4rMklboCH2rQjYY5kKiYGHqUF9gvaambupcJFFG9dvReg==",
1306 | "dev": true,
1307 | "requires": {
1308 | "ansi-escapes": "^4.2.1",
1309 | "chalk": "^3.0.0",
1310 | "cli-cursor": "^3.1.0",
1311 | "cli-width": "^2.0.0",
1312 | "external-editor": "^3.0.3",
1313 | "figures": "^3.0.0",
1314 | "lodash": "^4.17.15",
1315 | "mute-stream": "0.0.8",
1316 | "run-async": "^2.4.0",
1317 | "rxjs": "^6.5.3",
1318 | "string-width": "^4.1.0",
1319 | "strip-ansi": "^6.0.0",
1320 | "through": "^2.3.6"
1321 | },
1322 | "dependencies": {
1323 | "ansi-styles": {
1324 | "version": "4.2.1",
1325 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
1326 | "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
1327 | "dev": true,
1328 | "requires": {
1329 | "@types/color-name": "^1.1.1",
1330 | "color-convert": "^2.0.1"
1331 | }
1332 | },
1333 | "chalk": {
1334 | "version": "3.0.0",
1335 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
1336 | "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
1337 | "dev": true,
1338 | "requires": {
1339 | "ansi-styles": "^4.1.0",
1340 | "supports-color": "^7.1.0"
1341 | }
1342 | },
1343 | "color-convert": {
1344 | "version": "2.0.1",
1345 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
1346 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
1347 | "dev": true,
1348 | "requires": {
1349 | "color-name": "~1.1.4"
1350 | }
1351 | },
1352 | "color-name": {
1353 | "version": "1.1.4",
1354 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
1355 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
1356 | "dev": true
1357 | },
1358 | "has-flag": {
1359 | "version": "4.0.0",
1360 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
1361 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
1362 | "dev": true
1363 | },
1364 | "strip-ansi": {
1365 | "version": "6.0.0",
1366 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz",
1367 | "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==",
1368 | "dev": true,
1369 | "requires": {
1370 | "ansi-regex": "^5.0.0"
1371 | }
1372 | },
1373 | "supports-color": {
1374 | "version": "7.1.0",
1375 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
1376 | "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
1377 | "dev": true,
1378 | "requires": {
1379 | "has-flag": "^4.0.0"
1380 | }
1381 | }
1382 | }
1383 | },
1384 | "ip-regex": {
1385 | "version": "2.1.0",
1386 | "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz",
1387 | "integrity": "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk="
1388 | },
1389 | "is-arrayish": {
1390 | "version": "0.2.1",
1391 | "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
1392 | "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=",
1393 | "dev": true
1394 | },
1395 | "is-binary-path": {
1396 | "version": "2.1.0",
1397 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
1398 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
1399 | "dev": true,
1400 | "requires": {
1401 | "binary-extensions": "^2.0.0"
1402 | }
1403 | },
1404 | "is-callable": {
1405 | "version": "1.1.5",
1406 | "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.5.tgz",
1407 | "integrity": "sha512-ESKv5sMCJB2jnHTWZ3O5itG+O128Hsus4K4Qh1h2/cgn2vbgnLSVqfV46AeJA9D5EeeLa9w81KUXMtn34zhX+Q==",
1408 | "dev": true
1409 | },
1410 | "is-date-object": {
1411 | "version": "1.0.2",
1412 | "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz",
1413 | "integrity": "sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==",
1414 | "dev": true
1415 | },
1416 | "is-extglob": {
1417 | "version": "2.1.1",
1418 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
1419 | "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=",
1420 | "dev": true
1421 | },
1422 | "is-fullwidth-code-point": {
1423 | "version": "3.0.0",
1424 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
1425 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
1426 | "dev": true
1427 | },
1428 | "is-glob": {
1429 | "version": "4.0.1",
1430 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz",
1431 | "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==",
1432 | "dev": true,
1433 | "requires": {
1434 | "is-extglob": "^2.1.1"
1435 | }
1436 | },
1437 | "is-module": {
1438 | "version": "1.0.0",
1439 | "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz",
1440 | "integrity": "sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=",
1441 | "dev": true
1442 | },
1443 | "is-number": {
1444 | "version": "7.0.0",
1445 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
1446 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
1447 | "dev": true
1448 | },
1449 | "is-potential-custom-element-name": {
1450 | "version": "1.0.0",
1451 | "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.0.tgz",
1452 | "integrity": "sha1-DFLlS8yjkbssSUsh6GJtczbG45c="
1453 | },
1454 | "is-promise": {
1455 | "version": "2.1.0",
1456 | "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz",
1457 | "integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=",
1458 | "dev": true
1459 | },
1460 | "is-reference": {
1461 | "version": "1.1.4",
1462 | "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-1.1.4.tgz",
1463 | "integrity": "sha512-uJA/CDPO3Tao3GTrxYn6AwkM4nUPJiGGYu5+cB8qbC7WGFlrKZbiRo7SFKxUAEpFUfiHofWCXBUNhvYJMh+6zw==",
1464 | "dev": true,
1465 | "requires": {
1466 | "@types/estree": "0.0.39"
1467 | }
1468 | },
1469 | "is-regex": {
1470 | "version": "1.0.5",
1471 | "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.5.tgz",
1472 | "integrity": "sha512-vlKW17SNq44owv5AQR3Cq0bQPEb8+kF3UKZ2fiZNOWtztYE5i0CzCZxFDwO58qAOWtxdBRVO/V5Qin1wjCqFYQ==",
1473 | "dev": true,
1474 | "requires": {
1475 | "has": "^1.0.3"
1476 | }
1477 | },
1478 | "is-string": {
1479 | "version": "1.0.5",
1480 | "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz",
1481 | "integrity": "sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==",
1482 | "dev": true
1483 | },
1484 | "is-symbol": {
1485 | "version": "1.0.3",
1486 | "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz",
1487 | "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==",
1488 | "dev": true,
1489 | "requires": {
1490 | "has-symbols": "^1.0.1"
1491 | }
1492 | },
1493 | "is-typedarray": {
1494 | "version": "1.0.0",
1495 | "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
1496 | "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo="
1497 | },
1498 | "isarray": {
1499 | "version": "1.0.0",
1500 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
1501 | "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
1502 | "dev": true
1503 | },
1504 | "isexe": {
1505 | "version": "2.0.0",
1506 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
1507 | "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=",
1508 | "dev": true
1509 | },
1510 | "isstream": {
1511 | "version": "0.1.2",
1512 | "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz",
1513 | "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo="
1514 | },
1515 | "jake": {
1516 | "version": "10.6.1",
1517 | "resolved": "https://registry.npmjs.org/jake/-/jake-10.6.1.tgz",
1518 | "integrity": "sha512-pHUK3+V0BjOb1XSi95rbBksrMdIqLVC9bJqDnshVyleYsET3H0XAq+3VB2E3notcYvv4wRdRHn13p7vobG+wfQ==",
1519 | "requires": {
1520 | "async": "0.9.x",
1521 | "chalk": "^2.4.2",
1522 | "filelist": "^1.0.1",
1523 | "minimatch": "^3.0.4"
1524 | }
1525 | },
1526 | "jest-worker": {
1527 | "version": "24.9.0",
1528 | "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-24.9.0.tgz",
1529 | "integrity": "sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==",
1530 | "dev": true,
1531 | "requires": {
1532 | "merge-stream": "^2.0.0",
1533 | "supports-color": "^6.1.0"
1534 | },
1535 | "dependencies": {
1536 | "supports-color": {
1537 | "version": "6.1.0",
1538 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
1539 | "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
1540 | "dev": true,
1541 | "requires": {
1542 | "has-flag": "^3.0.0"
1543 | }
1544 | }
1545 | }
1546 | },
1547 | "js-tokens": {
1548 | "version": "4.0.0",
1549 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
1550 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
1551 | "dev": true
1552 | },
1553 | "js-yaml": {
1554 | "version": "3.13.1",
1555 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz",
1556 | "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==",
1557 | "dev": true,
1558 | "requires": {
1559 | "argparse": "^1.0.7",
1560 | "esprima": "^4.0.0"
1561 | }
1562 | },
1563 | "jsbn": {
1564 | "version": "0.1.1",
1565 | "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz",
1566 | "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM="
1567 | },
1568 | "jsdom": {
1569 | "version": "16.2.2",
1570 | "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.2.2.tgz",
1571 | "integrity": "sha512-pDFQbcYtKBHxRaP55zGXCJWgFHkDAYbKcsXEK/3Icu9nKYZkutUXfLBwbD+09XDutkYSHcgfQLZ0qvpAAm9mvg==",
1572 | "requires": {
1573 | "abab": "^2.0.3",
1574 | "acorn": "^7.1.1",
1575 | "acorn-globals": "^6.0.0",
1576 | "cssom": "^0.4.4",
1577 | "cssstyle": "^2.2.0",
1578 | "data-urls": "^2.0.0",
1579 | "decimal.js": "^10.2.0",
1580 | "domexception": "^2.0.1",
1581 | "escodegen": "^1.14.1",
1582 | "html-encoding-sniffer": "^2.0.1",
1583 | "is-potential-custom-element-name": "^1.0.0",
1584 | "nwsapi": "^2.2.0",
1585 | "parse5": "5.1.1",
1586 | "request": "^2.88.2",
1587 | "request-promise-native": "^1.0.8",
1588 | "saxes": "^5.0.0",
1589 | "symbol-tree": "^3.2.4",
1590 | "tough-cookie": "^3.0.1",
1591 | "w3c-hr-time": "^1.0.2",
1592 | "w3c-xmlserializer": "^2.0.0",
1593 | "webidl-conversions": "^6.0.0",
1594 | "whatwg-encoding": "^1.0.5",
1595 | "whatwg-mimetype": "^2.3.0",
1596 | "whatwg-url": "^8.0.0",
1597 | "ws": "^7.2.3",
1598 | "xml-name-validator": "^3.0.0"
1599 | },
1600 | "dependencies": {
1601 | "ws": {
1602 | "version": "7.2.5",
1603 | "resolved": "https://registry.npmjs.org/ws/-/ws-7.2.5.tgz",
1604 | "integrity": "sha512-C34cIU4+DB2vMyAbmEKossWq2ZQDr6QEyuuCzWrM9zfw1sGc0mYiJ0UnG9zzNykt49C2Fi34hvr2vssFQRS6EA=="
1605 | }
1606 | }
1607 | },
1608 | "json-schema": {
1609 | "version": "0.2.3",
1610 | "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz",
1611 | "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM="
1612 | },
1613 | "json-schema-traverse": {
1614 | "version": "0.4.1",
1615 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
1616 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="
1617 | },
1618 | "json-stable-stringify-without-jsonify": {
1619 | "version": "1.0.1",
1620 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
1621 | "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=",
1622 | "dev": true
1623 | },
1624 | "json-stringify-safe": {
1625 | "version": "5.0.1",
1626 | "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
1627 | "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus="
1628 | },
1629 | "jsprim": {
1630 | "version": "1.4.1",
1631 | "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz",
1632 | "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=",
1633 | "requires": {
1634 | "assert-plus": "1.0.0",
1635 | "extsprintf": "1.3.0",
1636 | "json-schema": "0.2.3",
1637 | "verror": "1.10.0"
1638 | }
1639 | },
1640 | "kleur": {
1641 | "version": "3.0.3",
1642 | "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz",
1643 | "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w=="
1644 | },
1645 | "levn": {
1646 | "version": "0.3.0",
1647 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz",
1648 | "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=",
1649 | "requires": {
1650 | "prelude-ls": "~1.1.2",
1651 | "type-check": "~0.3.2"
1652 | }
1653 | },
1654 | "livereload": {
1655 | "version": "0.9.1",
1656 | "resolved": "https://registry.npmjs.org/livereload/-/livereload-0.9.1.tgz",
1657 | "integrity": "sha512-9g7sua11kkyZNo2hLRCG3LuZZwqexoyEyecSlV8cAsfAVVCZqLzVir6XDqmH0r+Vzgnd5LrdHDMyjtFnJQLAYw==",
1658 | "dev": true,
1659 | "requires": {
1660 | "chokidar": "^3.3.0",
1661 | "livereload-js": "^3.1.0",
1662 | "opts": ">= 1.2.0",
1663 | "ws": "^6.2.1"
1664 | }
1665 | },
1666 | "livereload-js": {
1667 | "version": "3.2.2",
1668 | "resolved": "https://registry.npmjs.org/livereload-js/-/livereload-js-3.2.2.tgz",
1669 | "integrity": "sha512-xhScbNeC687ZINjEf/bD+BMiPx4s4q0mehcLb3zCc8+mykOtmaBR4vqzyIV9rIGdG9JjHaT0LiFdscvivCjX1Q==",
1670 | "dev": true
1671 | },
1672 | "load-json-file": {
1673 | "version": "2.0.0",
1674 | "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz",
1675 | "integrity": "sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=",
1676 | "dev": true,
1677 | "requires": {
1678 | "graceful-fs": "^4.1.2",
1679 | "parse-json": "^2.2.0",
1680 | "pify": "^2.0.0",
1681 | "strip-bom": "^3.0.0"
1682 | }
1683 | },
1684 | "local-access": {
1685 | "version": "1.0.1",
1686 | "resolved": "https://registry.npmjs.org/local-access/-/local-access-1.0.1.tgz",
1687 | "integrity": "sha512-ykt2pgN0aqIy6KQC1CqdWTWkmUwNgaOS6dcpHVjyBJONA+Xi7AtSB1vuxC/U/0tjIP3wcRudwQk1YYzUvzk2bA=="
1688 | },
1689 | "locate-path": {
1690 | "version": "2.0.0",
1691 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz",
1692 | "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=",
1693 | "dev": true,
1694 | "requires": {
1695 | "p-locate": "^2.0.0",
1696 | "path-exists": "^3.0.0"
1697 | }
1698 | },
1699 | "lodash": {
1700 | "version": "4.17.15",
1701 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz",
1702 | "integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A=="
1703 | },
1704 | "lodash.sortby": {
1705 | "version": "4.7.0",
1706 | "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz",
1707 | "integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg="
1708 | },
1709 | "magic-string": {
1710 | "version": "0.25.7",
1711 | "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.7.tgz",
1712 | "integrity": "sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==",
1713 | "dev": true,
1714 | "requires": {
1715 | "sourcemap-codec": "^1.4.4"
1716 | }
1717 | },
1718 | "merge-stream": {
1719 | "version": "2.0.0",
1720 | "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
1721 | "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==",
1722 | "dev": true
1723 | },
1724 | "micromatch": {
1725 | "version": "4.0.2",
1726 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz",
1727 | "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==",
1728 | "dev": true,
1729 | "requires": {
1730 | "braces": "^3.0.1",
1731 | "picomatch": "^2.0.5"
1732 | }
1733 | },
1734 | "mime": {
1735 | "version": "2.4.4",
1736 | "resolved": "https://registry.npmjs.org/mime/-/mime-2.4.4.tgz",
1737 | "integrity": "sha512-LRxmNwziLPT828z+4YkNzloCFC2YM4wrB99k+AV5ZbEyfGNWfG8SO1FUXLmLDBSo89NrJZ4DIWeLjy1CHGhMGA=="
1738 | },
1739 | "mime-db": {
1740 | "version": "1.44.0",
1741 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz",
1742 | "integrity": "sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg=="
1743 | },
1744 | "mime-types": {
1745 | "version": "2.1.27",
1746 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz",
1747 | "integrity": "sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w==",
1748 | "requires": {
1749 | "mime-db": "1.44.0"
1750 | }
1751 | },
1752 | "mimic-fn": {
1753 | "version": "2.1.0",
1754 | "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
1755 | "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==",
1756 | "dev": true
1757 | },
1758 | "minimatch": {
1759 | "version": "3.0.4",
1760 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
1761 | "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
1762 | "requires": {
1763 | "brace-expansion": "^1.1.7"
1764 | }
1765 | },
1766 | "minimist": {
1767 | "version": "1.2.5",
1768 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz",
1769 | "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==",
1770 | "dev": true
1771 | },
1772 | "mkdirp": {
1773 | "version": "0.5.5",
1774 | "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz",
1775 | "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==",
1776 | "dev": true,
1777 | "requires": {
1778 | "minimist": "^1.2.5"
1779 | }
1780 | },
1781 | "mri": {
1782 | "version": "1.1.5",
1783 | "resolved": "https://registry.npmjs.org/mri/-/mri-1.1.5.tgz",
1784 | "integrity": "sha512-d2RKzMD4JNyHMbnbWnznPaa8vbdlq/4pNZ3IgdaGrVbBhebBsGUUE/6qorTMYNS6TwuH3ilfOlD2bf4Igh8CKg=="
1785 | },
1786 | "ms": {
1787 | "version": "2.1.2",
1788 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
1789 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
1790 | "dev": true
1791 | },
1792 | "mute-stream": {
1793 | "version": "0.0.8",
1794 | "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz",
1795 | "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==",
1796 | "dev": true
1797 | },
1798 | "natural-compare": {
1799 | "version": "1.4.0",
1800 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
1801 | "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=",
1802 | "dev": true
1803 | },
1804 | "nice-try": {
1805 | "version": "1.0.5",
1806 | "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz",
1807 | "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==",
1808 | "dev": true
1809 | },
1810 | "normalize-package-data": {
1811 | "version": "2.5.0",
1812 | "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz",
1813 | "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==",
1814 | "dev": true,
1815 | "requires": {
1816 | "hosted-git-info": "^2.1.4",
1817 | "resolve": "^1.10.0",
1818 | "semver": "2 || 3 || 4 || 5",
1819 | "validate-npm-package-license": "^3.0.1"
1820 | },
1821 | "dependencies": {
1822 | "semver": {
1823 | "version": "5.7.1",
1824 | "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
1825 | "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
1826 | "dev": true
1827 | }
1828 | }
1829 | },
1830 | "normalize-path": {
1831 | "version": "3.0.0",
1832 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
1833 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
1834 | "dev": true
1835 | },
1836 | "nwsapi": {
1837 | "version": "2.2.0",
1838 | "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz",
1839 | "integrity": "sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ=="
1840 | },
1841 | "oauth-sign": {
1842 | "version": "0.9.0",
1843 | "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz",
1844 | "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ=="
1845 | },
1846 | "object-inspect": {
1847 | "version": "1.7.0",
1848 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.7.0.tgz",
1849 | "integrity": "sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw==",
1850 | "dev": true
1851 | },
1852 | "object-keys": {
1853 | "version": "1.1.1",
1854 | "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
1855 | "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
1856 | "dev": true
1857 | },
1858 | "object.assign": {
1859 | "version": "4.1.0",
1860 | "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz",
1861 | "integrity": "sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==",
1862 | "dev": true,
1863 | "requires": {
1864 | "define-properties": "^1.1.2",
1865 | "function-bind": "^1.1.1",
1866 | "has-symbols": "^1.0.0",
1867 | "object-keys": "^1.0.11"
1868 | }
1869 | },
1870 | "object.values": {
1871 | "version": "1.1.1",
1872 | "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.1.tgz",
1873 | "integrity": "sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA==",
1874 | "dev": true,
1875 | "requires": {
1876 | "define-properties": "^1.1.3",
1877 | "es-abstract": "^1.17.0-next.1",
1878 | "function-bind": "^1.1.1",
1879 | "has": "^1.0.3"
1880 | }
1881 | },
1882 | "once": {
1883 | "version": "1.4.0",
1884 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
1885 | "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
1886 | "dev": true,
1887 | "requires": {
1888 | "wrappy": "1"
1889 | }
1890 | },
1891 | "onetime": {
1892 | "version": "5.1.0",
1893 | "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.0.tgz",
1894 | "integrity": "sha512-5NcSkPHhwTVFIQN+TUqXoS5+dlElHXdpAWu9I0HP20YOtIi+aZ0Ct82jdlILDxjLEAWwvm+qj1m6aEtsDVmm6Q==",
1895 | "dev": true,
1896 | "requires": {
1897 | "mimic-fn": "^2.1.0"
1898 | }
1899 | },
1900 | "optionator": {
1901 | "version": "0.8.3",
1902 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz",
1903 | "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==",
1904 | "requires": {
1905 | "deep-is": "~0.1.3",
1906 | "fast-levenshtein": "~2.0.6",
1907 | "levn": "~0.3.0",
1908 | "prelude-ls": "~1.1.2",
1909 | "type-check": "~0.3.2",
1910 | "word-wrap": "~1.2.3"
1911 | }
1912 | },
1913 | "opts": {
1914 | "version": "1.2.7",
1915 | "resolved": "https://registry.npmjs.org/opts/-/opts-1.2.7.tgz",
1916 | "integrity": "sha512-hwZhzGGG/GQ7igxAVFOEun2N4fWul31qE9nfBdCnZGQCB5+L7tN9xZ+94B4aUpLOJx/of3zZs5XsuubayQYQjA==",
1917 | "dev": true
1918 | },
1919 | "os-tmpdir": {
1920 | "version": "1.0.2",
1921 | "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz",
1922 | "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=",
1923 | "dev": true
1924 | },
1925 | "p-limit": {
1926 | "version": "1.3.0",
1927 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz",
1928 | "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==",
1929 | "dev": true,
1930 | "requires": {
1931 | "p-try": "^1.0.0"
1932 | }
1933 | },
1934 | "p-locate": {
1935 | "version": "2.0.0",
1936 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz",
1937 | "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=",
1938 | "dev": true,
1939 | "requires": {
1940 | "p-limit": "^1.1.0"
1941 | }
1942 | },
1943 | "p-try": {
1944 | "version": "1.0.0",
1945 | "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz",
1946 | "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=",
1947 | "dev": true
1948 | },
1949 | "parent-module": {
1950 | "version": "1.0.1",
1951 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
1952 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
1953 | "dev": true,
1954 | "requires": {
1955 | "callsites": "^3.0.0"
1956 | }
1957 | },
1958 | "parse-json": {
1959 | "version": "2.2.0",
1960 | "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz",
1961 | "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=",
1962 | "dev": true,
1963 | "requires": {
1964 | "error-ex": "^1.2.0"
1965 | }
1966 | },
1967 | "parse5": {
1968 | "version": "5.1.1",
1969 | "resolved": "https://registry.npmjs.org/parse5/-/parse5-5.1.1.tgz",
1970 | "integrity": "sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug=="
1971 | },
1972 | "path-exists": {
1973 | "version": "3.0.0",
1974 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz",
1975 | "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU="
1976 | },
1977 | "path-is-absolute": {
1978 | "version": "1.0.1",
1979 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
1980 | "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=",
1981 | "dev": true
1982 | },
1983 | "path-key": {
1984 | "version": "2.0.1",
1985 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz",
1986 | "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=",
1987 | "dev": true
1988 | },
1989 | "path-parse": {
1990 | "version": "1.0.6",
1991 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz",
1992 | "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==",
1993 | "dev": true
1994 | },
1995 | "path-type": {
1996 | "version": "2.0.0",
1997 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz",
1998 | "integrity": "sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=",
1999 | "dev": true,
2000 | "requires": {
2001 | "pify": "^2.0.0"
2002 | }
2003 | },
2004 | "performance-now": {
2005 | "version": "2.1.0",
2006 | "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz",
2007 | "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns="
2008 | },
2009 | "picomatch": {
2010 | "version": "2.2.2",
2011 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz",
2012 | "integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==",
2013 | "dev": true
2014 | },
2015 | "pify": {
2016 | "version": "2.3.0",
2017 | "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
2018 | "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=",
2019 | "dev": true
2020 | },
2021 | "pkg-dir": {
2022 | "version": "2.0.0",
2023 | "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz",
2024 | "integrity": "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=",
2025 | "dev": true,
2026 | "requires": {
2027 | "find-up": "^2.1.0"
2028 | }
2029 | },
2030 | "prelude-ls": {
2031 | "version": "1.1.2",
2032 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz",
2033 | "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ="
2034 | },
2035 | "prettier": {
2036 | "version": "2.0.4",
2037 | "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.0.4.tgz",
2038 | "integrity": "sha512-SVJIQ51spzFDvh4fIbCLvciiDMCrRhlN3mbZvv/+ycjvmF5E73bKdGfU8QDLNmjYJf+lsGnDBC4UUnvTe5OO0w==",
2039 | "dev": true
2040 | },
2041 | "prettier-linter-helpers": {
2042 | "version": "1.0.0",
2043 | "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz",
2044 | "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==",
2045 | "dev": true,
2046 | "requires": {
2047 | "fast-diff": "^1.1.2"
2048 | }
2049 | },
2050 | "progress": {
2051 | "version": "2.0.3",
2052 | "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz",
2053 | "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==",
2054 | "dev": true
2055 | },
2056 | "psl": {
2057 | "version": "1.8.0",
2058 | "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz",
2059 | "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ=="
2060 | },
2061 | "punycode": {
2062 | "version": "2.1.1",
2063 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz",
2064 | "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A=="
2065 | },
2066 | "qs": {
2067 | "version": "6.5.2",
2068 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz",
2069 | "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA=="
2070 | },
2071 | "read-pkg": {
2072 | "version": "2.0.0",
2073 | "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz",
2074 | "integrity": "sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=",
2075 | "dev": true,
2076 | "requires": {
2077 | "load-json-file": "^2.0.0",
2078 | "normalize-package-data": "^2.3.2",
2079 | "path-type": "^2.0.0"
2080 | }
2081 | },
2082 | "read-pkg-up": {
2083 | "version": "2.0.0",
2084 | "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz",
2085 | "integrity": "sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=",
2086 | "dev": true,
2087 | "requires": {
2088 | "find-up": "^2.0.0",
2089 | "read-pkg": "^2.0.0"
2090 | }
2091 | },
2092 | "readdirp": {
2093 | "version": "3.4.0",
2094 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.4.0.tgz",
2095 | "integrity": "sha512-0xe001vZBnJEK+uKcj8qOhyAKPzIT+gStxWr3LCB0DwcXR5NZJ3IaC+yGnHCYzB/S7ov3m3EEbZI2zeNvX+hGQ==",
2096 | "dev": true,
2097 | "requires": {
2098 | "picomatch": "^2.2.1"
2099 | }
2100 | },
2101 | "regexpp": {
2102 | "version": "2.0.1",
2103 | "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-2.0.1.tgz",
2104 | "integrity": "sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==",
2105 | "dev": true
2106 | },
2107 | "request": {
2108 | "version": "2.88.2",
2109 | "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz",
2110 | "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==",
2111 | "requires": {
2112 | "aws-sign2": "~0.7.0",
2113 | "aws4": "^1.8.0",
2114 | "caseless": "~0.12.0",
2115 | "combined-stream": "~1.0.6",
2116 | "extend": "~3.0.2",
2117 | "forever-agent": "~0.6.1",
2118 | "form-data": "~2.3.2",
2119 | "har-validator": "~5.1.3",
2120 | "http-signature": "~1.2.0",
2121 | "is-typedarray": "~1.0.0",
2122 | "isstream": "~0.1.2",
2123 | "json-stringify-safe": "~5.0.1",
2124 | "mime-types": "~2.1.19",
2125 | "oauth-sign": "~0.9.0",
2126 | "performance-now": "^2.1.0",
2127 | "qs": "~6.5.2",
2128 | "safe-buffer": "^5.1.2",
2129 | "tough-cookie": "~2.5.0",
2130 | "tunnel-agent": "^0.6.0",
2131 | "uuid": "^3.3.2"
2132 | },
2133 | "dependencies": {
2134 | "tough-cookie": {
2135 | "version": "2.5.0",
2136 | "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz",
2137 | "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==",
2138 | "requires": {
2139 | "psl": "^1.1.28",
2140 | "punycode": "^2.1.1"
2141 | }
2142 | }
2143 | }
2144 | },
2145 | "request-promise-core": {
2146 | "version": "1.1.3",
2147 | "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.3.tgz",
2148 | "integrity": "sha512-QIs2+ArIGQVp5ZYbWD5ZLCY29D5CfWizP8eWnm8FoGD1TX61veauETVQbrV60662V0oFBkrDOuaBI8XgtuyYAQ==",
2149 | "requires": {
2150 | "lodash": "^4.17.15"
2151 | }
2152 | },
2153 | "request-promise-native": {
2154 | "version": "1.0.8",
2155 | "resolved": "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.8.tgz",
2156 | "integrity": "sha512-dapwLGqkHtwL5AEbfenuzjTYg35Jd6KPytsC2/TLkVMz8rm+tNt72MGUWT1RP/aYawMpN6HqbNGBQaRcBtjQMQ==",
2157 | "requires": {
2158 | "request-promise-core": "1.1.3",
2159 | "stealthy-require": "^1.1.1",
2160 | "tough-cookie": "^2.3.3"
2161 | },
2162 | "dependencies": {
2163 | "tough-cookie": {
2164 | "version": "2.5.0",
2165 | "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz",
2166 | "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==",
2167 | "requires": {
2168 | "psl": "^1.1.28",
2169 | "punycode": "^2.1.1"
2170 | }
2171 | }
2172 | }
2173 | },
2174 | "require-directory": {
2175 | "version": "2.1.1",
2176 | "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
2177 | "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I="
2178 | },
2179 | "require-main-filename": {
2180 | "version": "2.0.0",
2181 | "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz",
2182 | "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg=="
2183 | },
2184 | "require-relative": {
2185 | "version": "0.8.7",
2186 | "resolved": "https://registry.npmjs.org/require-relative/-/require-relative-0.8.7.tgz",
2187 | "integrity": "sha1-eZlTn8ngR6N5KPoZb44VY9q9Nt4=",
2188 | "dev": true
2189 | },
2190 | "resolve": {
2191 | "version": "1.15.1",
2192 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.15.1.tgz",
2193 | "integrity": "sha512-84oo6ZTtoTUpjgNEr5SJyzQhzL72gaRodsSfyxC/AXRvwu0Yse9H8eF9IpGo7b8YetZhlI6v7ZQ6bKBFV/6S7w==",
2194 | "dev": true,
2195 | "requires": {
2196 | "path-parse": "^1.0.6"
2197 | }
2198 | },
2199 | "resolve-from": {
2200 | "version": "4.0.0",
2201 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
2202 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
2203 | "dev": true
2204 | },
2205 | "restore-cursor": {
2206 | "version": "3.1.0",
2207 | "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz",
2208 | "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==",
2209 | "dev": true,
2210 | "requires": {
2211 | "onetime": "^5.1.0",
2212 | "signal-exit": "^3.0.2"
2213 | }
2214 | },
2215 | "rimraf": {
2216 | "version": "2.6.3",
2217 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz",
2218 | "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==",
2219 | "dev": true,
2220 | "requires": {
2221 | "glob": "^7.1.3"
2222 | }
2223 | },
2224 | "rollup": {
2225 | "version": "1.32.1",
2226 | "resolved": "https://registry.npmjs.org/rollup/-/rollup-1.32.1.tgz",
2227 | "integrity": "sha512-/2HA0Ec70TvQnXdzynFffkjA6XN+1e2pEv/uKS5Ulca40g2L7KuOE3riasHoNVHOsFD5KKZgDsMk1CP3Tw9s+A==",
2228 | "dev": true,
2229 | "requires": {
2230 | "@types/estree": "*",
2231 | "@types/node": "*",
2232 | "acorn": "^7.1.0"
2233 | }
2234 | },
2235 | "rollup-plugin-livereload": {
2236 | "version": "1.3.0",
2237 | "resolved": "https://registry.npmjs.org/rollup-plugin-livereload/-/rollup-plugin-livereload-1.3.0.tgz",
2238 | "integrity": "sha512-abyqXaB21+nFHo+vJULBqfzNx6zXABC19UyvqgDfdoxR/8pFAd041GO+GIUe8ZYC2DbuMUmioh1Lvbk14YLZgw==",
2239 | "dev": true,
2240 | "requires": {
2241 | "livereload": "^0.9.1"
2242 | }
2243 | },
2244 | "rollup-plugin-svelte": {
2245 | "version": "5.2.1",
2246 | "resolved": "https://registry.npmjs.org/rollup-plugin-svelte/-/rollup-plugin-svelte-5.2.1.tgz",
2247 | "integrity": "sha512-wc93cN66sRpX6uFljVFqvWT6NU3V5ab/uLXKt2UiARuexFU/ctolzkmdXM7WM5iKdTX9scToS9sabJTJV4DUMA==",
2248 | "dev": true,
2249 | "requires": {
2250 | "require-relative": "^0.8.7",
2251 | "rollup-pluginutils": "^2.8.2",
2252 | "sourcemap-codec": "^1.4.8"
2253 | }
2254 | },
2255 | "rollup-plugin-terser": {
2256 | "version": "5.3.0",
2257 | "resolved": "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-5.3.0.tgz",
2258 | "integrity": "sha512-XGMJihTIO3eIBsVGq7jiNYOdDMb3pVxuzY0uhOE/FM4x/u9nQgr3+McsjzqBn3QfHIpNSZmFnpoKAwHBEcsT7g==",
2259 | "dev": true,
2260 | "requires": {
2261 | "@babel/code-frame": "^7.5.5",
2262 | "jest-worker": "^24.9.0",
2263 | "rollup-pluginutils": "^2.8.2",
2264 | "serialize-javascript": "^2.1.2",
2265 | "terser": "^4.6.2"
2266 | }
2267 | },
2268 | "rollup-pluginutils": {
2269 | "version": "2.8.2",
2270 | "resolved": "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz",
2271 | "integrity": "sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==",
2272 | "dev": true,
2273 | "requires": {
2274 | "estree-walker": "^0.6.1"
2275 | },
2276 | "dependencies": {
2277 | "estree-walker": {
2278 | "version": "0.6.1",
2279 | "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-0.6.1.tgz",
2280 | "integrity": "sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==",
2281 | "dev": true
2282 | }
2283 | }
2284 | },
2285 | "run-async": {
2286 | "version": "2.4.0",
2287 | "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.0.tgz",
2288 | "integrity": "sha512-xJTbh/d7Lm7SBhc1tNvTpeCHaEzoyxPrqNlvSdMfBTYwaY++UJFyXUOxAtsRUXjlqOfj8luNaR9vjCh4KeV+pg==",
2289 | "dev": true,
2290 | "requires": {
2291 | "is-promise": "^2.1.0"
2292 | }
2293 | },
2294 | "rxjs": {
2295 | "version": "6.5.5",
2296 | "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.5.5.tgz",
2297 | "integrity": "sha512-WfQI+1gohdf0Dai/Bbmk5L5ItH5tYqm3ki2c5GdWhKjalzjg93N3avFjVStyZZz+A2Em+ZxKH5bNghw9UeylGQ==",
2298 | "dev": true,
2299 | "requires": {
2300 | "tslib": "^1.9.0"
2301 | }
2302 | },
2303 | "sade": {
2304 | "version": "1.7.3",
2305 | "resolved": "https://registry.npmjs.org/sade/-/sade-1.7.3.tgz",
2306 | "integrity": "sha512-m4BctppMvJ60W1dXnHq7jMmFe3hPJZDAH85kQ3ACTo7XZNVUuTItCQ+2HfyaMeV5cKrbw7l4vD/6We3GBxvdJw==",
2307 | "requires": {
2308 | "mri": "^1.1.0"
2309 | }
2310 | },
2311 | "safe-buffer": {
2312 | "version": "5.2.0",
2313 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.0.tgz",
2314 | "integrity": "sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg=="
2315 | },
2316 | "safer-buffer": {
2317 | "version": "2.1.2",
2318 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
2319 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
2320 | },
2321 | "saxes": {
2322 | "version": "5.0.1",
2323 | "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz",
2324 | "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==",
2325 | "requires": {
2326 | "xmlchars": "^2.2.0"
2327 | }
2328 | },
2329 | "semver": {
2330 | "version": "6.3.0",
2331 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
2332 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
2333 | "dev": true
2334 | },
2335 | "serialize-javascript": {
2336 | "version": "2.1.2",
2337 | "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-2.1.2.tgz",
2338 | "integrity": "sha512-rs9OggEUF0V4jUSecXazOYsLfu7OGK2qIn3c7IPBiffz32XniEp/TX9Xmc9LQfK2nQ2QKHvZ2oygKUGU0lG4jQ==",
2339 | "dev": true
2340 | },
2341 | "set-blocking": {
2342 | "version": "2.0.0",
2343 | "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
2344 | "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc="
2345 | },
2346 | "shebang-command": {
2347 | "version": "1.2.0",
2348 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz",
2349 | "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=",
2350 | "dev": true,
2351 | "requires": {
2352 | "shebang-regex": "^1.0.0"
2353 | }
2354 | },
2355 | "shebang-regex": {
2356 | "version": "1.0.0",
2357 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz",
2358 | "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=",
2359 | "dev": true
2360 | },
2361 | "showdown": {
2362 | "version": "1.9.1",
2363 | "resolved": "https://registry.npmjs.org/showdown/-/showdown-1.9.1.tgz",
2364 | "integrity": "sha512-9cGuS382HcvExtf5AHk7Cb4pAeQQ+h0eTr33V1mu+crYWV4KvWAw6el92bDrqGEk5d46Ai/fhbEUwqJ/mTCNEA==",
2365 | "requires": {
2366 | "yargs": "^14.2"
2367 | }
2368 | },
2369 | "signal-exit": {
2370 | "version": "3.0.3",
2371 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz",
2372 | "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==",
2373 | "dev": true
2374 | },
2375 | "sirv": {
2376 | "version": "0.4.2",
2377 | "resolved": "https://registry.npmjs.org/sirv/-/sirv-0.4.2.tgz",
2378 | "integrity": "sha512-dQbZnsMaIiTQPZmbGmktz+c74zt/hyrJEB4tdp2Jj0RNv9J6B/OWR5RyrZEvIn9fyh9Zlg2OlE2XzKz6wMKGAw==",
2379 | "requires": {
2380 | "@polka/url": "^0.5.0",
2381 | "mime": "^2.3.1"
2382 | }
2383 | },
2384 | "sirv-cli": {
2385 | "version": "0.4.5",
2386 | "resolved": "https://registry.npmjs.org/sirv-cli/-/sirv-cli-0.4.5.tgz",
2387 | "integrity": "sha512-Fl6icSm0EwPrXSGid2xphMp//WNTSX2yENRAGnJuuZNmdc8LvE/BtdZD3MPn28ifAfDqTMwbB3dpcZojAIOiBg==",
2388 | "requires": {
2389 | "console-clear": "^1.1.0",
2390 | "get-port": "^3.2.0",
2391 | "kleur": "^3.0.0",
2392 | "local-access": "^1.0.1",
2393 | "sade": "^1.4.0",
2394 | "sirv": "^0.4.2",
2395 | "tinydate": "^1.0.0"
2396 | }
2397 | },
2398 | "slice-ansi": {
2399 | "version": "2.1.0",
2400 | "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz",
2401 | "integrity": "sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==",
2402 | "dev": true,
2403 | "requires": {
2404 | "ansi-styles": "^3.2.0",
2405 | "astral-regex": "^1.0.0",
2406 | "is-fullwidth-code-point": "^2.0.0"
2407 | },
2408 | "dependencies": {
2409 | "is-fullwidth-code-point": {
2410 | "version": "2.0.0",
2411 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
2412 | "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=",
2413 | "dev": true
2414 | }
2415 | }
2416 | },
2417 | "source-map": {
2418 | "version": "0.6.1",
2419 | "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
2420 | "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
2421 | },
2422 | "source-map-support": {
2423 | "version": "0.5.19",
2424 | "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz",
2425 | "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==",
2426 | "dev": true,
2427 | "requires": {
2428 | "buffer-from": "^1.0.0",
2429 | "source-map": "^0.6.0"
2430 | }
2431 | },
2432 | "sourcemap-codec": {
2433 | "version": "1.4.8",
2434 | "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz",
2435 | "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==",
2436 | "dev": true
2437 | },
2438 | "spdx-correct": {
2439 | "version": "3.1.0",
2440 | "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.0.tgz",
2441 | "integrity": "sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q==",
2442 | "dev": true,
2443 | "requires": {
2444 | "spdx-expression-parse": "^3.0.0",
2445 | "spdx-license-ids": "^3.0.0"
2446 | }
2447 | },
2448 | "spdx-exceptions": {
2449 | "version": "2.2.0",
2450 | "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz",
2451 | "integrity": "sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA==",
2452 | "dev": true
2453 | },
2454 | "spdx-expression-parse": {
2455 | "version": "3.0.0",
2456 | "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz",
2457 | "integrity": "sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==",
2458 | "dev": true,
2459 | "requires": {
2460 | "spdx-exceptions": "^2.1.0",
2461 | "spdx-license-ids": "^3.0.0"
2462 | }
2463 | },
2464 | "spdx-license-ids": {
2465 | "version": "3.0.5",
2466 | "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz",
2467 | "integrity": "sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q==",
2468 | "dev": true
2469 | },
2470 | "sprintf-js": {
2471 | "version": "1.0.3",
2472 | "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
2473 | "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=",
2474 | "dev": true
2475 | },
2476 | "sshpk": {
2477 | "version": "1.16.1",
2478 | "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz",
2479 | "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==",
2480 | "requires": {
2481 | "asn1": "~0.2.3",
2482 | "assert-plus": "^1.0.0",
2483 | "bcrypt-pbkdf": "^1.0.0",
2484 | "dashdash": "^1.12.0",
2485 | "ecc-jsbn": "~0.1.1",
2486 | "getpass": "^0.1.1",
2487 | "jsbn": "~0.1.0",
2488 | "safer-buffer": "^2.0.2",
2489 | "tweetnacl": "~0.14.0"
2490 | }
2491 | },
2492 | "stealthy-require": {
2493 | "version": "1.1.1",
2494 | "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz",
2495 | "integrity": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks="
2496 | },
2497 | "string-width": {
2498 | "version": "4.2.0",
2499 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz",
2500 | "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==",
2501 | "dev": true,
2502 | "requires": {
2503 | "emoji-regex": "^8.0.0",
2504 | "is-fullwidth-code-point": "^3.0.0",
2505 | "strip-ansi": "^6.0.0"
2506 | },
2507 | "dependencies": {
2508 | "strip-ansi": {
2509 | "version": "6.0.0",
2510 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz",
2511 | "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==",
2512 | "dev": true,
2513 | "requires": {
2514 | "ansi-regex": "^5.0.0"
2515 | }
2516 | }
2517 | }
2518 | },
2519 | "string.prototype.trimend": {
2520 | "version": "1.0.0",
2521 | "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.0.tgz",
2522 | "integrity": "sha512-EEJnGqa/xNfIg05SxiPSqRS7S9qwDhYts1TSLR1BQfYUfPe1stofgGKvwERK9+9yf+PpfBMlpBaCHucXGPQfUA==",
2523 | "dev": true,
2524 | "requires": {
2525 | "define-properties": "^1.1.3",
2526 | "es-abstract": "^1.17.5"
2527 | }
2528 | },
2529 | "string.prototype.trimleft": {
2530 | "version": "2.1.2",
2531 | "resolved": "https://registry.npmjs.org/string.prototype.trimleft/-/string.prototype.trimleft-2.1.2.tgz",
2532 | "integrity": "sha512-gCA0tza1JBvqr3bfAIFJGqfdRTyPae82+KTnm3coDXkZN9wnuW3HjGgN386D7hfv5CHQYCI022/rJPVlqXyHSw==",
2533 | "dev": true,
2534 | "requires": {
2535 | "define-properties": "^1.1.3",
2536 | "es-abstract": "^1.17.5",
2537 | "string.prototype.trimstart": "^1.0.0"
2538 | }
2539 | },
2540 | "string.prototype.trimright": {
2541 | "version": "2.1.2",
2542 | "resolved": "https://registry.npmjs.org/string.prototype.trimright/-/string.prototype.trimright-2.1.2.tgz",
2543 | "integrity": "sha512-ZNRQ7sY3KroTaYjRS6EbNiiHrOkjihL9aQE/8gfQ4DtAC/aEBRHFJa44OmoWxGGqXuJlfKkZW4WcXErGr+9ZFg==",
2544 | "dev": true,
2545 | "requires": {
2546 | "define-properties": "^1.1.3",
2547 | "es-abstract": "^1.17.5",
2548 | "string.prototype.trimend": "^1.0.0"
2549 | }
2550 | },
2551 | "string.prototype.trimstart": {
2552 | "version": "1.0.0",
2553 | "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.0.tgz",
2554 | "integrity": "sha512-iCP8g01NFYiiBOnwG1Xc3WZLyoo+RuBymwIlWncShXDDJYWN6DbnM3odslBJdgCdRlq94B5s63NWAZlcn2CS4w==",
2555 | "dev": true,
2556 | "requires": {
2557 | "define-properties": "^1.1.3",
2558 | "es-abstract": "^1.17.5"
2559 | }
2560 | },
2561 | "strip-ansi": {
2562 | "version": "5.2.0",
2563 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
2564 | "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
2565 | "requires": {
2566 | "ansi-regex": "^4.1.0"
2567 | },
2568 | "dependencies": {
2569 | "ansi-regex": {
2570 | "version": "4.1.0",
2571 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
2572 | "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg=="
2573 | }
2574 | }
2575 | },
2576 | "strip-bom": {
2577 | "version": "3.0.0",
2578 | "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
2579 | "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=",
2580 | "dev": true
2581 | },
2582 | "strip-json-comments": {
2583 | "version": "3.1.0",
2584 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.0.tgz",
2585 | "integrity": "sha512-e6/d0eBu7gHtdCqFt0xJr642LdToM5/cN4Qb9DbHjVx1CP5RyeM+zH7pbecEmDv/lBqb0QH+6Uqq75rxFPkM0w==",
2586 | "dev": true
2587 | },
2588 | "supports-color": {
2589 | "version": "5.5.0",
2590 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
2591 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
2592 | "requires": {
2593 | "has-flag": "^3.0.0"
2594 | }
2595 | },
2596 | "svelte": {
2597 | "version": "3.21.0",
2598 | "resolved": "https://registry.npmjs.org/svelte/-/svelte-3.21.0.tgz",
2599 | "integrity": "sha512-smh3LZKPCGJ+UXa0iZvUmuDctPYCwPY1opmClTWTm+l6e4y9FHLoCZMiue8YIeyc9JvlGT/EK0xry0diXjFDZQ==",
2600 | "dev": true
2601 | },
2602 | "symbol-tree": {
2603 | "version": "3.2.4",
2604 | "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz",
2605 | "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw=="
2606 | },
2607 | "table": {
2608 | "version": "5.4.6",
2609 | "resolved": "https://registry.npmjs.org/table/-/table-5.4.6.tgz",
2610 | "integrity": "sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==",
2611 | "dev": true,
2612 | "requires": {
2613 | "ajv": "^6.10.2",
2614 | "lodash": "^4.17.14",
2615 | "slice-ansi": "^2.1.0",
2616 | "string-width": "^3.0.0"
2617 | },
2618 | "dependencies": {
2619 | "emoji-regex": {
2620 | "version": "7.0.3",
2621 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz",
2622 | "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==",
2623 | "dev": true
2624 | },
2625 | "is-fullwidth-code-point": {
2626 | "version": "2.0.0",
2627 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
2628 | "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=",
2629 | "dev": true
2630 | },
2631 | "string-width": {
2632 | "version": "3.1.0",
2633 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz",
2634 | "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==",
2635 | "dev": true,
2636 | "requires": {
2637 | "emoji-regex": "^7.0.1",
2638 | "is-fullwidth-code-point": "^2.0.0",
2639 | "strip-ansi": "^5.1.0"
2640 | }
2641 | }
2642 | }
2643 | },
2644 | "terser": {
2645 | "version": "4.6.13",
2646 | "resolved": "https://registry.npmjs.org/terser/-/terser-4.6.13.tgz",
2647 | "integrity": "sha512-wMvqukYgVpQlymbnNbabVZbtM6PN63AzqexpwJL8tbh/mRT9LE5o+ruVduAGL7D6Fpjl+Q+06U5I9Ul82odAhw==",
2648 | "dev": true,
2649 | "requires": {
2650 | "commander": "^2.20.0",
2651 | "source-map": "~0.6.1",
2652 | "source-map-support": "~0.5.12"
2653 | }
2654 | },
2655 | "text-table": {
2656 | "version": "0.2.0",
2657 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz",
2658 | "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=",
2659 | "dev": true
2660 | },
2661 | "through": {
2662 | "version": "2.3.8",
2663 | "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz",
2664 | "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=",
2665 | "dev": true
2666 | },
2667 | "tinydate": {
2668 | "version": "1.2.0",
2669 | "resolved": "https://registry.npmjs.org/tinydate/-/tinydate-1.2.0.tgz",
2670 | "integrity": "sha512-3GwPk8VhDFnUZ2TrgkhXJs6hcMAIIw4x/xkz+ayK6dGoQmp2nUwKzBXK0WnMsqkh6vfUhpqQicQF3rbshfyJkg=="
2671 | },
2672 | "tmp": {
2673 | "version": "0.0.33",
2674 | "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz",
2675 | "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==",
2676 | "dev": true,
2677 | "requires": {
2678 | "os-tmpdir": "~1.0.2"
2679 | }
2680 | },
2681 | "to-regex-range": {
2682 | "version": "5.0.1",
2683 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
2684 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
2685 | "dev": true,
2686 | "requires": {
2687 | "is-number": "^7.0.0"
2688 | }
2689 | },
2690 | "tough-cookie": {
2691 | "version": "3.0.1",
2692 | "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-3.0.1.tgz",
2693 | "integrity": "sha512-yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg==",
2694 | "requires": {
2695 | "ip-regex": "^2.1.0",
2696 | "psl": "^1.1.28",
2697 | "punycode": "^2.1.1"
2698 | }
2699 | },
2700 | "tr46": {
2701 | "version": "2.0.2",
2702 | "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.0.2.tgz",
2703 | "integrity": "sha512-3n1qG+/5kg+jrbTzwAykB5yRYtQCTqOGKq5U5PE3b0a1/mzo6snDhjGS0zJVJunO0NrT3Dg1MLy5TjWP/UJppg==",
2704 | "requires": {
2705 | "punycode": "^2.1.1"
2706 | }
2707 | },
2708 | "tslib": {
2709 | "version": "1.11.1",
2710 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.11.1.tgz",
2711 | "integrity": "sha512-aZW88SY8kQbU7gpV19lN24LtXh/yD4ZZg6qieAJDDg+YBsJcSmLGK9QpnUjAKVG/xefmvJGd1WUmfpT/g6AJGA==",
2712 | "dev": true
2713 | },
2714 | "tunnel-agent": {
2715 | "version": "0.6.0",
2716 | "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
2717 | "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=",
2718 | "requires": {
2719 | "safe-buffer": "^5.0.1"
2720 | }
2721 | },
2722 | "tweetnacl": {
2723 | "version": "0.14.5",
2724 | "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz",
2725 | "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q="
2726 | },
2727 | "type-check": {
2728 | "version": "0.3.2",
2729 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz",
2730 | "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=",
2731 | "requires": {
2732 | "prelude-ls": "~1.1.2"
2733 | }
2734 | },
2735 | "type-fest": {
2736 | "version": "0.8.1",
2737 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz",
2738 | "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==",
2739 | "dev": true
2740 | },
2741 | "uri-js": {
2742 | "version": "4.2.2",
2743 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz",
2744 | "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==",
2745 | "requires": {
2746 | "punycode": "^2.1.0"
2747 | }
2748 | },
2749 | "uuid": {
2750 | "version": "3.4.0",
2751 | "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
2752 | "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="
2753 | },
2754 | "v8-compile-cache": {
2755 | "version": "2.1.0",
2756 | "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.1.0.tgz",
2757 | "integrity": "sha512-usZBT3PW+LOjM25wbqIlZwPeJV+3OSz3M1k1Ws8snlW39dZyYL9lOGC5FgPVHfk0jKmjiDV8Z0mIbVQPiwFs7g==",
2758 | "dev": true
2759 | },
2760 | "validate-npm-package-license": {
2761 | "version": "3.0.4",
2762 | "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz",
2763 | "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==",
2764 | "dev": true,
2765 | "requires": {
2766 | "spdx-correct": "^3.0.0",
2767 | "spdx-expression-parse": "^3.0.0"
2768 | }
2769 | },
2770 | "verror": {
2771 | "version": "1.10.0",
2772 | "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz",
2773 | "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=",
2774 | "requires": {
2775 | "assert-plus": "^1.0.0",
2776 | "core-util-is": "1.0.2",
2777 | "extsprintf": "^1.2.0"
2778 | }
2779 | },
2780 | "w3c-hr-time": {
2781 | "version": "1.0.2",
2782 | "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz",
2783 | "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==",
2784 | "requires": {
2785 | "browser-process-hrtime": "^1.0.0"
2786 | }
2787 | },
2788 | "w3c-xmlserializer": {
2789 | "version": "2.0.0",
2790 | "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz",
2791 | "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==",
2792 | "requires": {
2793 | "xml-name-validator": "^3.0.0"
2794 | }
2795 | },
2796 | "webidl-conversions": {
2797 | "version": "6.1.0",
2798 | "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz",
2799 | "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w=="
2800 | },
2801 | "whatwg-encoding": {
2802 | "version": "1.0.5",
2803 | "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz",
2804 | "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==",
2805 | "requires": {
2806 | "iconv-lite": "0.4.24"
2807 | }
2808 | },
2809 | "whatwg-mimetype": {
2810 | "version": "2.3.0",
2811 | "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz",
2812 | "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g=="
2813 | },
2814 | "whatwg-url": {
2815 | "version": "8.0.0",
2816 | "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.0.0.tgz",
2817 | "integrity": "sha512-41ou2Dugpij8/LPO5Pq64K5q++MnRCBpEHvQr26/mArEKTkCV5aoXIqyhuYtE0pkqScXwhf2JP57rkRTYM29lQ==",
2818 | "requires": {
2819 | "lodash.sortby": "^4.7.0",
2820 | "tr46": "^2.0.0",
2821 | "webidl-conversions": "^5.0.0"
2822 | },
2823 | "dependencies": {
2824 | "webidl-conversions": {
2825 | "version": "5.0.0",
2826 | "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz",
2827 | "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA=="
2828 | }
2829 | }
2830 | },
2831 | "which": {
2832 | "version": "1.3.1",
2833 | "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
2834 | "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
2835 | "dev": true,
2836 | "requires": {
2837 | "isexe": "^2.0.0"
2838 | }
2839 | },
2840 | "which-module": {
2841 | "version": "2.0.0",
2842 | "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz",
2843 | "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho="
2844 | },
2845 | "word-wrap": {
2846 | "version": "1.2.3",
2847 | "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz",
2848 | "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ=="
2849 | },
2850 | "wrap-ansi": {
2851 | "version": "5.1.0",
2852 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz",
2853 | "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==",
2854 | "requires": {
2855 | "ansi-styles": "^3.2.0",
2856 | "string-width": "^3.0.0",
2857 | "strip-ansi": "^5.0.0"
2858 | },
2859 | "dependencies": {
2860 | "emoji-regex": {
2861 | "version": "7.0.3",
2862 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz",
2863 | "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA=="
2864 | },
2865 | "is-fullwidth-code-point": {
2866 | "version": "2.0.0",
2867 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
2868 | "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8="
2869 | },
2870 | "string-width": {
2871 | "version": "3.1.0",
2872 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz",
2873 | "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==",
2874 | "requires": {
2875 | "emoji-regex": "^7.0.1",
2876 | "is-fullwidth-code-point": "^2.0.0",
2877 | "strip-ansi": "^5.1.0"
2878 | }
2879 | }
2880 | }
2881 | },
2882 | "wrappy": {
2883 | "version": "1.0.2",
2884 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
2885 | "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=",
2886 | "dev": true
2887 | },
2888 | "write": {
2889 | "version": "1.0.3",
2890 | "resolved": "https://registry.npmjs.org/write/-/write-1.0.3.tgz",
2891 | "integrity": "sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==",
2892 | "dev": true,
2893 | "requires": {
2894 | "mkdirp": "^0.5.1"
2895 | }
2896 | },
2897 | "ws": {
2898 | "version": "6.2.1",
2899 | "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.1.tgz",
2900 | "integrity": "sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA==",
2901 | "dev": true,
2902 | "requires": {
2903 | "async-limiter": "~1.0.0"
2904 | }
2905 | },
2906 | "xml-name-validator": {
2907 | "version": "3.0.0",
2908 | "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz",
2909 | "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw=="
2910 | },
2911 | "xmlchars": {
2912 | "version": "2.2.0",
2913 | "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz",
2914 | "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw=="
2915 | },
2916 | "y18n": {
2917 | "version": "4.0.0",
2918 | "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz",
2919 | "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w=="
2920 | },
2921 | "yargs": {
2922 | "version": "14.2.3",
2923 | "resolved": "https://registry.npmjs.org/yargs/-/yargs-14.2.3.tgz",
2924 | "integrity": "sha512-ZbotRWhF+lkjijC/VhmOT9wSgyBQ7+zr13+YLkhfsSiTriYsMzkTUFP18pFhWwBeMa5gUc1MzbhrO6/VB7c9Xg==",
2925 | "requires": {
2926 | "cliui": "^5.0.0",
2927 | "decamelize": "^1.2.0",
2928 | "find-up": "^3.0.0",
2929 | "get-caller-file": "^2.0.1",
2930 | "require-directory": "^2.1.1",
2931 | "require-main-filename": "^2.0.0",
2932 | "set-blocking": "^2.0.0",
2933 | "string-width": "^3.0.0",
2934 | "which-module": "^2.0.0",
2935 | "y18n": "^4.0.0",
2936 | "yargs-parser": "^15.0.1"
2937 | },
2938 | "dependencies": {
2939 | "emoji-regex": {
2940 | "version": "7.0.3",
2941 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz",
2942 | "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA=="
2943 | },
2944 | "find-up": {
2945 | "version": "3.0.0",
2946 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz",
2947 | "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==",
2948 | "requires": {
2949 | "locate-path": "^3.0.0"
2950 | }
2951 | },
2952 | "is-fullwidth-code-point": {
2953 | "version": "2.0.0",
2954 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
2955 | "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8="
2956 | },
2957 | "locate-path": {
2958 | "version": "3.0.0",
2959 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz",
2960 | "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==",
2961 | "requires": {
2962 | "p-locate": "^3.0.0",
2963 | "path-exists": "^3.0.0"
2964 | }
2965 | },
2966 | "p-limit": {
2967 | "version": "2.3.0",
2968 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
2969 | "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
2970 | "requires": {
2971 | "p-try": "^2.0.0"
2972 | }
2973 | },
2974 | "p-locate": {
2975 | "version": "3.0.0",
2976 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz",
2977 | "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==",
2978 | "requires": {
2979 | "p-limit": "^2.0.0"
2980 | }
2981 | },
2982 | "p-try": {
2983 | "version": "2.2.0",
2984 | "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
2985 | "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ=="
2986 | },
2987 | "string-width": {
2988 | "version": "3.1.0",
2989 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz",
2990 | "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==",
2991 | "requires": {
2992 | "emoji-regex": "^7.0.1",
2993 | "is-fullwidth-code-point": "^2.0.0",
2994 | "strip-ansi": "^5.1.0"
2995 | }
2996 | }
2997 | }
2998 | },
2999 | "yargs-parser": {
3000 | "version": "15.0.1",
3001 | "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-15.0.1.tgz",
3002 | "integrity": "sha512-0OAMV2mAZQrs3FkNpDQcBk1x5HXb8X4twADss4S0Iuk+2dGnLOE/fRHrsYm542GduMveyA77OF4wrNJuanRCWw==",
3003 | "requires": {
3004 | "camelcase": "^5.0.0",
3005 | "decamelize": "^1.2.0"
3006 | }
3007 | }
3008 | }
3009 | }
3010 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "build-your-own-x",
3 | "version": "1.0.0",
4 | "scripts": {
5 | "build": "node script.js && rollup -c",
6 | "dev": "rollup -c -w",
7 | "start": "sirv public"
8 | },
9 | "devDependencies": {
10 | "@rollup/plugin-commonjs": "^11.0.0",
11 | "@rollup/plugin-node-resolve": "^7.0.0",
12 | "eslint": "^6.8.0",
13 | "eslint-config-prettier": "^6.10.1",
14 | "eslint-config-standard": "^14.1.1",
15 | "eslint-plugin-import": "^2.20.2",
16 | "eslint-plugin-node": "^11.1.0",
17 | "eslint-plugin-prettier": "^3.1.2",
18 | "eslint-plugin-promise": "^4.2.1",
19 | "eslint-plugin-standard": "^4.0.1",
20 | "eslint-plugin-svelte3": "^2.7.3",
21 | "prettier": "^2.0.4",
22 | "rollup": "^1.20.0",
23 | "rollup-plugin-livereload": "^1.0.0",
24 | "rollup-plugin-svelte": "^5.0.3",
25 | "rollup-plugin-terser": "^5.1.2",
26 | "svelte": "^3.21.0"
27 | },
28 | "dependencies": {
29 | "ejs": "^3.1.2",
30 | "jsdom": "^16.2.2",
31 | "showdown": "^1.9.1",
32 | "sirv-cli": "^0.4.4"
33 | }
34 | }
35 |
--------------------------------------------------------------------------------
/prettier.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | arrowParens: "always",
3 | singleQuote: true,
4 | };
5 |
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kjj6198/build-your-own-x/946ca96cb83ba191128a20b954fcfa6c2eb42de0/public/favicon.ico
--------------------------------------------------------------------------------
/public/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kjj6198/build-your-own-x/946ca96cb83ba191128a20b954fcfa6c2eb42de0/public/favicon.png
--------------------------------------------------------------------------------
/public/feynman.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kjj6198/build-your-own-x/946ca96cb83ba191128a20b954fcfa6c2eb42de0/public/feynman.png
--------------------------------------------------------------------------------
/public/github.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kjj6198/build-your-own-x/946ca96cb83ba191128a20b954fcfa6c2eb42de0/public/github.png
--------------------------------------------------------------------------------
/public/global.css:
--------------------------------------------------------------------------------
1 | :root {
2 | --textColor: #463d3d;
3 | --theme: #fff;
4 | --bgColor: #f4f4f4;
5 | --highlight: #fece8e;
6 | --tag: #786d70;
7 | --sub: #413335;
8 | --header-height: 55px;
9 | --border: #f3f0f3;
10 | --link: #515d5e;
11 | }
12 |
13 | *,
14 | *::after,
15 | *::before {
16 | box-sizing: border-box;
17 | }
18 |
19 | a:hover {
20 | opacity: 0.76;
21 | }
22 |
23 | html,
24 | body {
25 | position: relative;
26 | width: 100%;
27 | height: 100%;
28 | color: var(--textColor);
29 | }
30 |
31 | body {
32 | font-size: 16px;
33 | margin: 0;
34 | padding: 0;
35 | box-sizing: border-box;
36 | font-family: 'Source Han Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI',
37 | Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
38 | background-color: #f4f4f4;
39 | }
40 |
41 | a {
42 | color: var(--link);
43 | }
44 |
45 | @media (hover: hover) {
46 | a:hover {
47 | text-decoration: underline;
48 | }
49 | }
50 |
51 | label {
52 | display: block;
53 | }
54 |
55 | input,
56 | button,
57 | select,
58 | textarea {
59 | font-family: inherit;
60 | font-size: inherit;
61 | padding: 0.4em;
62 | margin: 0 0 0.5em 0;
63 | box-sizing: border-box;
64 | border: 1px solid #ccc;
65 | border-radius: 2px;
66 | }
67 |
68 | input:disabled {
69 | color: #ccc;
70 | }
71 |
72 | input[type='range'] {
73 | height: 0;
74 | }
75 |
76 | button {
77 | color: #333;
78 | background-color: #f4f4f4;
79 | outline: none;
80 | }
81 |
82 | button:disabled {
83 | color: #999;
84 | }
85 |
86 | button:not(:disabled):active {
87 | background-color: #ddd;
88 | }
89 |
90 | button:focus {
91 | border-color: #666;
92 | }
93 |
94 | h1,
95 | h2,
96 | h3,
97 | h4,
98 | h5,
99 | h6 {
100 | font-weight: normal;
101 | margin-top: 0;
102 | }
103 |
--------------------------------------------------------------------------------
/public/index.ejs:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 | <%- head %>
11 |
12 |
13 |
14 |
15 | <%- html %>
16 |
17 |
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/public/toggle.svg:
--------------------------------------------------------------------------------
1 |
2 | Navigation Toggle
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/public/twitter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kjj6198/build-your-own-x/946ca96cb83ba191128a20b954fcfa6c2eb42de0/public/twitter.png
--------------------------------------------------------------------------------
/rollup.config.js:
--------------------------------------------------------------------------------
1 | import svelte from 'rollup-plugin-svelte';
2 | import resolve from '@rollup/plugin-node-resolve';
3 | import commonjs from '@rollup/plugin-commonjs';
4 | import livereload from 'rollup-plugin-livereload';
5 | import { terser } from 'rollup-plugin-terser';
6 |
7 | const production = !process.env.ROLLUP_WATCH;
8 |
9 | export default {
10 | input: 'src/main.js',
11 | output: {
12 | sourcemap: true,
13 | format: 'iife',
14 | name: 'app',
15 | file: 'public/build/bundle.js',
16 | },
17 | plugins: [
18 | svelte({
19 | hydratable: true,
20 | // enable run-time checks when not in production
21 | dev: !production,
22 | // we'll extract any component CSS out into
23 | // a separate file - better for performance
24 | css: (css) => {
25 | css.write('public/build/bundle.css');
26 | },
27 | }),
28 |
29 | // If you have external dependencies installed from
30 | // npm, you'll most likely need these plugins. In
31 | // some cases you'll need additional configuration -
32 | // consult the documentation for details:
33 | // https://github.com/rollup/plugins/tree/master/packages/commonjs
34 | resolve({
35 | browser: true,
36 | dedupe: ['svelte'],
37 | }),
38 | commonjs(),
39 |
40 | // In dev mode, call `npm run start` once
41 | // the bundle has been generated
42 | !production && serve(),
43 |
44 | // Watch the `public` directory and refresh the
45 | // browser on changes when not in production
46 | !production && livereload('public'),
47 |
48 | // If we're building for production (npm run build
49 | // instead of npm run dev), minify
50 | production && terser(),
51 | ],
52 | watch: {
53 | clearScreen: false,
54 | },
55 | };
56 |
57 | function serve() {
58 | let started = false;
59 |
60 | return {
61 | writeBundle() {
62 | if (!started) {
63 | started = true;
64 |
65 | require('child_process').spawn('npm', ['run', 'start', '--', '--dev'], {
66 | stdio: ['ignore', 'inherit', 'inherit'],
67 | shell: true,
68 | });
69 | }
70 | },
71 | };
72 | }
73 |
--------------------------------------------------------------------------------
/script.js:
--------------------------------------------------------------------------------
1 | require('svelte/register');
2 | const showdown = require('showdown');
3 | const ejs = require('ejs');
4 | const fs = require('fs');
5 | const path = require('path');
6 | const AppComponent = require('./src/App.svelte').default;
7 | const Model = require('./Model');
8 |
9 | // make github compatible:
10 | // Build your own `compiler` -> build-your-own-compiler
11 | const converter = new showdown.Converter({ ghCompatibleHeaderId: true });
12 |
13 | const content = fs.readFileSync(path.resolve(__dirname, 'README.md'));
14 |
15 | const model = new Model(converter.makeHtml(content.toString()));
16 |
17 | const { html, head } = AppComponent.render({
18 | data: model.serialize(),
19 | });
20 |
21 | ejs
22 | .renderFile(path.resolve(__dirname, 'public', './index.ejs'), {
23 | html,
24 | head,
25 | data: model.toJSON(),
26 | lang: 'zh-TW',
27 | })
28 | .then((html) => {
29 | fs.writeFileSync(path.resolve(__dirname, 'public', 'index.html'), html, {
30 | encoding: 'utf8',
31 | });
32 | });
33 |
--------------------------------------------------------------------------------
/src/App.svelte:
--------------------------------------------------------------------------------
1 |
8 |
9 |
115 |
116 |
117 | Build Your Own X
118 |
119 |
120 |
121 |
127 |
133 |
134 |
135 |
138 |
139 |
140 |
141 |
142 | Build Your Own X
143 |
151 | (isOpen = !isOpen)}>
158 |
165 | Navigation Toggle
166 |
167 |
168 |
169 |
170 |
171 |
172 |
173 |
174 |
175 |
176 |
177 |
178 |
182 |
183 |
184 |
185 |
186 |
189 | Build Your Own X (insert technology here)
190 |
191 |
192 | This repo is forked from awesome
193 |
194 | anistefanovic/build-your-own-x
195 |
196 | , site is created and maintained by
197 | Kalan
198 | which converted github README.md to website, and probably will add more
199 | opinionated resource.
200 |
201 | Follow me on
202 | Twitter
203 | or contibute your article link on
204 | Github
205 | is always welcomed!
206 |
207 |
208 |
209 |
210 |
211 |
--------------------------------------------------------------------------------
/src/Content.svelte:
--------------------------------------------------------------------------------
1 |
43 |
44 |
89 |
90 |
91 |
Languages (click to select)
92 |
93 | {#each languages.filter((lang) => !selected.includes(lang)) as lang (lang)}
94 | handleLangToggle(lang)}>
100 | {lang}
101 |
102 | {/each}
103 |
104 |
105 |
106 |
Selected
107 |
108 | {#each selected as lang (lang)}
109 | handleLangToggle(lang)}>
115 | {lang}
116 |
117 | {/each}
118 |
119 |
120 | {#if selected.length}
121 | Filtered article with language {selected.join(',')}
122 | {/if}
123 |
124 | {#each categories as category (category.id)}
125 |
126 |
127 |
128 | {category.text.replace(/Build your own /, '')}
129 |
130 |
131 |
132 |
133 | {#each category.posts.filter((p) =>
134 | selected.length ? selected.includes(p.language) : true
135 | ) as p (p.title)}
136 |
137 | {p.title.replace(p.language + ':', '')}
138 | {#if p.language}
139 | {p.language}
140 | {/if}
141 |
142 | {/each}
143 |
144 | {/each}
145 |
146 |
147 | How to contribute
148 |
149 |
150 |
Contributions are very welcome: Submit tutorial
151 |
152 | Help me to review pending submissions by leaving comments and reactions
153 |
154 |
155 |
156 |
157 | LICENSE
158 |
159 |
160 |
161 |
164 |
165 |
166 |
--------------------------------------------------------------------------------
/src/Navbar.svelte:
--------------------------------------------------------------------------------
1 |
5 |
6 |
16 |
17 | Table Of Content
18 |
19 | {#each tableOfContent as { title, id } (id)}
20 |
21 |
22 | {title.replace(/Build your own /, '')}
23 |
24 |
25 | {/each}
26 |
27 |
--------------------------------------------------------------------------------
/src/ScrollAnchor.svelte:
--------------------------------------------------------------------------------
1 |
38 |
39 | {
42 | e.preventDefault();
43 | const nextHash = e.currentTarget.getAttribute('href');
44 | history.replaceState({}, '', nextHash);
45 | performScroll(nextHash);
46 | }}>
47 |
48 |
49 |
--------------------------------------------------------------------------------
/src/main.js:
--------------------------------------------------------------------------------
1 | import App from './App.svelte';
2 |
3 | const app = new App({
4 | target: document.querySelector('#app'),
5 | props: {
6 | data: window.__BUILD_YOUR_OWN_DATA__,
7 | },
8 | hydrate: true,
9 | });
10 |
11 | export default app;
12 |
--------------------------------------------------------------------------------