├── client
└── hls-client
│ ├── public
│ ├── robots.txt
│ └── index.html
│ ├── src
│ ├── setupTests.js
│ ├── App.test.js
│ ├── App.js
│ ├── index.css
│ ├── reportWebVitals.js
│ ├── index.js
│ └── App.css
│ ├── .gitignore
│ ├── package.json
│ └── README.md
├── server
├── libs
│ └── ffmpeg.exe
├── cleaner.js
├── package.json
├── hls-server.js
└── package-lock.json
├── notes.txt
├── .gitignore
└── README.md
/client/hls-client/public/robots.txt:
--------------------------------------------------------------------------------
1 | # https://www.robotstxt.org/robotstxt.html
2 | User-agent: *
3 | Disallow:
4 |
--------------------------------------------------------------------------------
/server/libs/ffmpeg.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/foyzulkarim/ip-camera-browser-client/HEAD/server/libs/ffmpeg.exe
--------------------------------------------------------------------------------
/server/cleaner.js:
--------------------------------------------------------------------------------
1 | const findRemoveSync = require('find-remove')
2 |
3 | setInterval(() => {
4 | var result = findRemoveSync('./videos/ipcam', { age: { seconds: 30 }, extensions: '.ts' });
5 | console.log(result);
6 | }, 5000);
--------------------------------------------------------------------------------
/client/hls-client/src/setupTests.js:
--------------------------------------------------------------------------------
1 | // jest-dom adds custom jest matchers for asserting on DOM nodes.
2 | // allows you to do things like:
3 | // expect(element).toHaveTextContent(/react/i)
4 | // learn more: https://github.com/testing-library/jest-dom
5 | import '@testing-library/jest-dom';
6 |
--------------------------------------------------------------------------------
/client/hls-client/src/App.test.js:
--------------------------------------------------------------------------------
1 | import { render, screen } from '@testing-library/react';
2 | import App from './App';
3 |
4 | test('renders learn react link', () => {
5 | render();
6 | const linkElement = screen.getByText(/learn react/i);
7 | expect(linkElement).toBeInTheDocument();
8 | });
9 |
--------------------------------------------------------------------------------
/server/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "server",
3 | "version": "1.0.0",
4 | "description": "",
5 | "main": "index.js",
6 | "scripts": {
7 | "test": "echo \"Error: no test specified\" && exit 1"
8 | },
9 | "keywords": [],
10 | "author": "",
11 | "license": "ISC",
12 | "dependencies": {
13 | "find-remove": "^3.1.0",
14 | "nodemon": "^2.0.7"
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/client/hls-client/src/App.js:
--------------------------------------------------------------------------------
1 | import './App.css';
2 | import React from 'react'
3 | import ReactPlayer from 'react-player'
4 |
5 | function App() {
6 | return (
7 |
8 |
IP Camera Streaming
9 | URL : http://localhost:4000/index.m3u8
10 |
11 |
12 | );
13 | }
14 |
15 | export default App;
16 |
--------------------------------------------------------------------------------
/client/hls-client/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 | /.pnp
6 | .pnp.js
7 |
8 | # testing
9 | /coverage
10 |
11 | # production
12 | /build
13 |
14 | # misc
15 | .DS_Store
16 | .env.local
17 | .env.development.local
18 | .env.test.local
19 | .env.production.local
20 |
21 | npm-debug.log*
22 | yarn-debug.log*
23 | yarn-error.log*
24 |
--------------------------------------------------------------------------------
/client/hls-client/src/index.css:
--------------------------------------------------------------------------------
1 | body {
2 | margin: 0;
3 | font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
4 | 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
5 | sans-serif;
6 | -webkit-font-smoothing: antialiased;
7 | -moz-osx-font-smoothing: grayscale;
8 | }
9 |
10 | code {
11 | font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
12 | monospace;
13 | }
14 |
--------------------------------------------------------------------------------
/client/hls-client/src/reportWebVitals.js:
--------------------------------------------------------------------------------
1 | const reportWebVitals = onPerfEntry => {
2 | if (onPerfEntry && onPerfEntry instanceof Function) {
3 | import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => {
4 | getCLS(onPerfEntry);
5 | getFID(onPerfEntry);
6 | getFCP(onPerfEntry);
7 | getLCP(onPerfEntry);
8 | getTTFB(onPerfEntry);
9 | });
10 | }
11 | };
12 |
13 | export default reportWebVitals;
14 |
--------------------------------------------------------------------------------
/client/hls-client/src/index.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import ReactDOM from 'react-dom';
3 | import './index.css';
4 | import App from './App';
5 | import reportWebVitals from './reportWebVitals';
6 |
7 | ReactDOM.render(
8 |
9 |
10 | ,
11 | document.getElementById('root')
12 | );
13 |
14 | // If you want to start measuring performance in your app, pass a function
15 | // to log results (for example: reportWebVitals(console.log))
16 | // or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
17 | reportWebVitals();
18 |
--------------------------------------------------------------------------------
/notes.txt:
--------------------------------------------------------------------------------
1 | to test IP Camera
2 | ----------------------
3 | 1. test the camera in vlc - for the case of TP-Link C200 below is the URL we will use = rtsp://{username}:{password}@{your-ip}:554/stream1
4 | 2. run ffmpeg - convert rtsp to hls
5 | ffmpeg -i {URL} -fflags flush_packets -max_delay 2 -flags -global_header -hls_time 2 -hls_list_size 3 -vcodec copy -y ./index.m3u8
6 | 3. create server to serve hls
7 | 4. create client to show hls
8 |
9 |
10 | to test webcam
11 | --------------------------------
12 | 1. test the camera in browser client
13 | 2. send chunk of data to server
14 | 3. run ffmpeg - convert chunk of data to hls
15 | 4. create server to serve hls
16 | 5. create client to show hls
--------------------------------------------------------------------------------
/client/hls-client/src/App.css:
--------------------------------------------------------------------------------
1 | .App {
2 | text-align: center;
3 | }
4 |
5 | .App-logo {
6 | height: 40vmin;
7 | pointer-events: none;
8 | }
9 |
10 | @media (prefers-reduced-motion: no-preference) {
11 | .App-logo {
12 | animation: App-logo-spin infinite 20s linear;
13 | }
14 | }
15 |
16 | .App-header {
17 | background-color: #282c34;
18 | min-height: 100vh;
19 | display: flex;
20 | flex-direction: column;
21 | align-items: center;
22 | justify-content: center;
23 | font-size: calc(10px + 2vmin);
24 | color: white;
25 | }
26 |
27 | .App-link {
28 | color: #61dafb;
29 | }
30 |
31 | @keyframes App-logo-spin {
32 | from {
33 | transform: rotate(0deg);
34 | }
35 | to {
36 | transform: rotate(360deg);
37 | }
38 | }
39 |
--------------------------------------------------------------------------------
/client/hls-client/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "hls-client",
3 | "version": "0.1.0",
4 | "private": true,
5 | "dependencies": {
6 | "@testing-library/jest-dom": "^5.11.4",
7 | "@testing-library/react": "^11.1.0",
8 | "@testing-library/user-event": "^12.1.10",
9 | "react": "^17.0.2",
10 | "react-dom": "^17.0.2",
11 | "react-player": "^2.9.0",
12 | "react-scripts": "4.0.3",
13 | "web-vitals": "^1.0.1"
14 | },
15 | "scripts": {
16 | "start": "react-scripts start",
17 | "build": "react-scripts build",
18 | "test": "react-scripts test",
19 | "eject": "react-scripts eject"
20 | },
21 | "eslintConfig": {
22 | "extends": [
23 | "react-app",
24 | "react-app/jest"
25 | ]
26 | },
27 | "browserslist": {
28 | "production": [
29 | ">0.2%",
30 | "not dead",
31 | "not op_mini all"
32 | ],
33 | "development": [
34 | "last 1 chrome version",
35 | "last 1 firefox version",
36 | "last 1 safari version"
37 | ]
38 | }
39 | }
40 |
--------------------------------------------------------------------------------
/server/hls-server.js:
--------------------------------------------------------------------------------
1 | const http = require('http');
2 | var fs = require('fs');
3 |
4 | const PORT = 4000;
5 |
6 | http.createServer(function (request, response) {
7 | console.log('request starting...', new Date());
8 |
9 | const headers = {
10 | 'Access-Control-Allow-Origin': '*',
11 | 'Access-Control-Allow-Methods': 'OPTIONS, POST, GET',
12 | 'Access-Control-Max-Age': 2592000, // 30 days
13 | /** add other headers as per requirement */
14 | };
15 | if (request.method === 'OPTIONS') {
16 | respose.writeHead(204, headers);
17 | response.end();
18 | return;
19 | }
20 |
21 | var filePath = './videos/ipcam' + request.url;
22 | console.log(filePath);;
23 | fs.readFile(filePath, function (error, content) {
24 | response.writeHead(200, { 'Access-Control-Allow-Origin': '*' });
25 | if (error) {
26 | if (error.code == 'ENOENT') {
27 | fs.readFile('./404.html', function (error, content) {
28 | response.end(content, 'utf-8');
29 | });
30 | }
31 | else {
32 | response.writeHead(500);
33 | response.end('Sorry, check with the site admin for error: ' + error.code + ' ..\n');
34 | response.end();
35 | }
36 | }
37 | else {
38 | response.end(content, 'utf-8');
39 | }
40 | });
41 | }).listen(PORT);
42 | console.log(`Server listening PORT ${PORT}`);
--------------------------------------------------------------------------------
/client/hls-client/public/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
12 |
13 |
17 |
18 |
27 | React App
28 |
29 |
30 |
31 |
32 |
42 |
43 |
44 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Logs
2 | logs
3 | *.log
4 | npm-debug.log*
5 | yarn-debug.log*
6 | yarn-error.log*
7 | lerna-debug.log*
8 |
9 | # Diagnostic reports (https://nodejs.org/api/report.html)
10 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
11 |
12 | # Runtime data
13 | pids
14 | *.pid
15 | *.seed
16 | *.pid.lock
17 |
18 | # Directory for instrumented libs generated by jscoverage/JSCover
19 | lib-cov
20 |
21 | # Coverage directory used by tools like istanbul
22 | coverage
23 | *.lcov
24 |
25 | # nyc test coverage
26 | .nyc_output
27 |
28 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
29 | .grunt
30 |
31 | # Bower dependency directory (https://bower.io/)
32 | bower_components
33 |
34 | # node-waf configuration
35 | .lock-wscript
36 |
37 | # Compiled binary addons (https://nodejs.org/api/addons.html)
38 | build/Release
39 |
40 | # Dependency directories
41 | node_modules/
42 | jspm_packages/
43 |
44 | # TypeScript v1 declaration files
45 | typings/
46 |
47 | # TypeScript cache
48 | *.tsbuildinfo
49 |
50 | # Optional npm cache directory
51 | .npm
52 |
53 | # Optional eslint cache
54 | .eslintcache
55 |
56 | # Microbundle cache
57 | .rpt2_cache/
58 | .rts2_cache_cjs/
59 | .rts2_cache_es/
60 | .rts2_cache_umd/
61 |
62 | # Optional REPL history
63 | .node_repl_history
64 |
65 | # Output of 'npm pack'
66 | *.tgz
67 |
68 | # Yarn Integrity file
69 | .yarn-integrity
70 |
71 | # dotenv environment variables file
72 | .env
73 | .env.test
74 |
75 | # parcel-bundler cache (https://parceljs.org/)
76 | .cache
77 |
78 | # Next.js build output
79 | .next
80 |
81 | # Nuxt.js build / generate output
82 | .nuxt
83 | dist
84 |
85 | # Gatsby files
86 | .cache/
87 | # Comment in the public line in if your project uses Gatsby and *not* Next.js
88 | # https://nextjs.org/blog/next-9-1#public-directory-support
89 | # public
90 |
91 | # vuepress build output
92 | .vuepress/dist
93 |
94 | # Serverless directories
95 | .serverless/
96 |
97 | # FuseBox cache
98 | .fusebox/
99 |
100 | # DynamoDB Local files
101 | .dynamodb/
102 |
103 | # TernJS port file
104 | .tern-port
105 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # How to stream your IP Camera into browser
2 |
3 | ## YouTube explanation and demo
4 |
5 | [](https://www.youtube.com/watch?v=Acmng0FHHqI)
6 |
7 | # Steps
8 |
9 | ## Stream IP Camera to VLC player
10 | - For the case of `TP-Link C200` model the URL I used = `rtsp://{username}:{password}@{ip}:554/stream1`
11 | - Input the URL in Network Stream
12 |
13 | 
14 |
15 |
16 | ## Convert stream to HLS
17 | Execute FFMPEG command
18 |
19 | `.\server\libs\ffmpeg.exe -i rtsp://{username}:{password}@{ip}:554/stream1 -fflags flush_packets -max_delay 5 -flags -global_header -hls_time 5 -hls_list_size 3 -vcodec copy -y .\videos\ipcam\index.m3u8`
20 |
21 | After successful execution, we should see the converted video files (`index.m3u8 *.ts`)
22 |
23 | 
24 |
25 |
26 |
27 | ## Install the packages
28 | - Open new terminal tab
29 | - Go inside server folder
30 | - Run `npm install`
31 |
32 | ## Cleanup streamed `.ts` files
33 | - Open new terminal tab
34 | - Go inside server folder
35 | - Run `.\node_modules\.bin\nodemon .\cleaner.js`
36 | - This will delete the streamed/served `.ts` files from local directory to save the space
37 |
38 | ## Serve the auto generated hls (m3u8) file
39 | - Open new terminal tab
40 | - Go inside server folder
41 | - Run `.\node_modules\.bin\nodemon .\hls-server.js`
42 |
43 | ## Test hls file in browser
44 | - Visit [`cookpete.com/react-player`](https://cookpete.com/react-player).
45 | - Input the m3u8 url [http://localhost:4000/index.m3u8] and press `Load`
46 | 
47 |
48 |
49 | ## Run react client
50 | - Open new terminal tab
51 | - Go inside `client\hls-client` folder
52 | - Run `npm install`
53 | - Run `npm start`
54 |
55 | 
56 |
57 |
58 | # Notes
59 | It is possible to automate all of the commands under simplified `npm start` command in server project. However, for better understanding of how things work and better clarity, I break down the steps and showed how easy it is to actually stream your IP Camera to your browser.
60 |
61 | If you have real IP from your ISP, you can point your Domain to your IP and see the camera feed from anywhere in the world through the browser.
62 |
63 | ### Next
64 | - Webcam streaming from browser camera to remote user
65 |
--------------------------------------------------------------------------------
/client/hls-client/README.md:
--------------------------------------------------------------------------------
1 | # Getting Started with Create React App
2 |
3 | This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
4 |
5 | ## Available Scripts
6 |
7 | In the project directory, you can run:
8 |
9 | ### `yarn start`
10 |
11 | Runs the app in the development mode.\
12 | Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
13 |
14 | The page will reload if you make edits.\
15 | You will also see any lint errors in the console.
16 |
17 | ### `yarn test`
18 |
19 | Launches the test runner in the interactive watch mode.\
20 | See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
21 |
22 | ### `yarn build`
23 |
24 | Builds the app for production to the `build` folder.\
25 | It correctly bundles React in production mode and optimizes the build for the best performance.
26 |
27 | The build is minified and the filenames include the hashes.\
28 | Your app is ready to be deployed!
29 |
30 | See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
31 |
32 | ### `yarn eject`
33 |
34 | **Note: this is a one-way operation. Once you `eject`, you can’t go back!**
35 |
36 | If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
37 |
38 | Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
39 |
40 | You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
41 |
42 | ## Learn More
43 |
44 | You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
45 |
46 | To learn React, check out the [React documentation](https://reactjs.org/).
47 |
48 | ### Code Splitting
49 |
50 | This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)
51 |
52 | ### Analyzing the Bundle Size
53 |
54 | This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)
55 |
56 | ### Making a Progressive Web App
57 |
58 | This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)
59 |
60 | ### Advanced Configuration
61 |
62 | This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)
63 |
64 | ### Deployment
65 |
66 | This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)
67 |
68 | ### `yarn build` fails to minify
69 |
70 | This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
71 |
--------------------------------------------------------------------------------
/server/package-lock.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "server",
3 | "version": "1.0.0",
4 | "lockfileVersion": 1,
5 | "requires": true,
6 | "dependencies": {
7 | "@sindresorhus/is": {
8 | "version": "0.14.0",
9 | "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz",
10 | "integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ=="
11 | },
12 | "@szmarczak/http-timer": {
13 | "version": "1.1.2",
14 | "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz",
15 | "integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==",
16 | "requires": {
17 | "defer-to-connect": "^1.0.1"
18 | }
19 | },
20 | "abbrev": {
21 | "version": "1.1.1",
22 | "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
23 | "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="
24 | },
25 | "ansi-align": {
26 | "version": "3.0.0",
27 | "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.0.tgz",
28 | "integrity": "sha512-ZpClVKqXN3RGBmKibdfWzqCY4lnjEuoNzU5T0oEFpfd/z5qJHVarukridD4juLO2FXMiwUQxr9WqQtaYa8XRYw==",
29 | "requires": {
30 | "string-width": "^3.0.0"
31 | },
32 | "dependencies": {
33 | "string-width": {
34 | "version": "3.1.0",
35 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz",
36 | "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==",
37 | "requires": {
38 | "emoji-regex": "^7.0.1",
39 | "is-fullwidth-code-point": "^2.0.0",
40 | "strip-ansi": "^5.1.0"
41 | }
42 | }
43 | }
44 | },
45 | "ansi-regex": {
46 | "version": "4.1.0",
47 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
48 | "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg=="
49 | },
50 | "ansi-styles": {
51 | "version": "4.3.0",
52 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
53 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
54 | "requires": {
55 | "color-convert": "^2.0.1"
56 | }
57 | },
58 | "anymatch": {
59 | "version": "3.1.2",
60 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz",
61 | "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==",
62 | "requires": {
63 | "normalize-path": "^3.0.0",
64 | "picomatch": "^2.0.4"
65 | }
66 | },
67 | "balanced-match": {
68 | "version": "1.0.2",
69 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
70 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
71 | },
72 | "binary-extensions": {
73 | "version": "2.2.0",
74 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz",
75 | "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA=="
76 | },
77 | "boxen": {
78 | "version": "4.2.0",
79 | "resolved": "https://registry.npmjs.org/boxen/-/boxen-4.2.0.tgz",
80 | "integrity": "sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ==",
81 | "requires": {
82 | "ansi-align": "^3.0.0",
83 | "camelcase": "^5.3.1",
84 | "chalk": "^3.0.0",
85 | "cli-boxes": "^2.2.0",
86 | "string-width": "^4.1.0",
87 | "term-size": "^2.1.0",
88 | "type-fest": "^0.8.1",
89 | "widest-line": "^3.1.0"
90 | }
91 | },
92 | "brace-expansion": {
93 | "version": "1.1.11",
94 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
95 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
96 | "requires": {
97 | "balanced-match": "^1.0.0",
98 | "concat-map": "0.0.1"
99 | }
100 | },
101 | "braces": {
102 | "version": "3.0.2",
103 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
104 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
105 | "requires": {
106 | "fill-range": "^7.0.1"
107 | }
108 | },
109 | "cacheable-request": {
110 | "version": "6.1.0",
111 | "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz",
112 | "integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==",
113 | "requires": {
114 | "clone-response": "^1.0.2",
115 | "get-stream": "^5.1.0",
116 | "http-cache-semantics": "^4.0.0",
117 | "keyv": "^3.0.0",
118 | "lowercase-keys": "^2.0.0",
119 | "normalize-url": "^4.1.0",
120 | "responselike": "^1.0.2"
121 | },
122 | "dependencies": {
123 | "get-stream": {
124 | "version": "5.2.0",
125 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz",
126 | "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==",
127 | "requires": {
128 | "pump": "^3.0.0"
129 | }
130 | },
131 | "lowercase-keys": {
132 | "version": "2.0.0",
133 | "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz",
134 | "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA=="
135 | }
136 | }
137 | },
138 | "camelcase": {
139 | "version": "5.3.1",
140 | "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
141 | "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="
142 | },
143 | "chalk": {
144 | "version": "3.0.0",
145 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
146 | "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
147 | "requires": {
148 | "ansi-styles": "^4.1.0",
149 | "supports-color": "^7.1.0"
150 | },
151 | "dependencies": {
152 | "has-flag": {
153 | "version": "4.0.0",
154 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
155 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
156 | },
157 | "supports-color": {
158 | "version": "7.2.0",
159 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
160 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
161 | "requires": {
162 | "has-flag": "^4.0.0"
163 | }
164 | }
165 | }
166 | },
167 | "chokidar": {
168 | "version": "3.5.1",
169 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz",
170 | "integrity": "sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==",
171 | "requires": {
172 | "anymatch": "~3.1.1",
173 | "braces": "~3.0.2",
174 | "fsevents": "~2.3.1",
175 | "glob-parent": "~5.1.0",
176 | "is-binary-path": "~2.1.0",
177 | "is-glob": "~4.0.1",
178 | "normalize-path": "~3.0.0",
179 | "readdirp": "~3.5.0"
180 | }
181 | },
182 | "ci-info": {
183 | "version": "2.0.0",
184 | "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz",
185 | "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ=="
186 | },
187 | "cli-boxes": {
188 | "version": "2.2.1",
189 | "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz",
190 | "integrity": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw=="
191 | },
192 | "clone-response": {
193 | "version": "1.0.2",
194 | "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz",
195 | "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=",
196 | "requires": {
197 | "mimic-response": "^1.0.0"
198 | }
199 | },
200 | "color-convert": {
201 | "version": "2.0.1",
202 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
203 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
204 | "requires": {
205 | "color-name": "~1.1.4"
206 | }
207 | },
208 | "color-name": {
209 | "version": "1.1.4",
210 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
211 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
212 | },
213 | "concat-map": {
214 | "version": "0.0.1",
215 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
216 | "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s="
217 | },
218 | "configstore": {
219 | "version": "5.0.1",
220 | "resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz",
221 | "integrity": "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==",
222 | "requires": {
223 | "dot-prop": "^5.2.0",
224 | "graceful-fs": "^4.1.2",
225 | "make-dir": "^3.0.0",
226 | "unique-string": "^2.0.0",
227 | "write-file-atomic": "^3.0.0",
228 | "xdg-basedir": "^4.0.0"
229 | }
230 | },
231 | "crypto-random-string": {
232 | "version": "2.0.0",
233 | "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz",
234 | "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA=="
235 | },
236 | "debug": {
237 | "version": "3.2.7",
238 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
239 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
240 | "requires": {
241 | "ms": "^2.1.1"
242 | }
243 | },
244 | "decompress-response": {
245 | "version": "3.3.0",
246 | "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz",
247 | "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=",
248 | "requires": {
249 | "mimic-response": "^1.0.0"
250 | }
251 | },
252 | "deep-extend": {
253 | "version": "0.6.0",
254 | "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz",
255 | "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA=="
256 | },
257 | "defer-to-connect": {
258 | "version": "1.1.3",
259 | "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz",
260 | "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ=="
261 | },
262 | "dot-prop": {
263 | "version": "5.3.0",
264 | "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz",
265 | "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==",
266 | "requires": {
267 | "is-obj": "^2.0.0"
268 | }
269 | },
270 | "duplexer3": {
271 | "version": "0.1.4",
272 | "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz",
273 | "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI="
274 | },
275 | "emoji-regex": {
276 | "version": "7.0.3",
277 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz",
278 | "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA=="
279 | },
280 | "end-of-stream": {
281 | "version": "1.4.4",
282 | "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz",
283 | "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==",
284 | "requires": {
285 | "once": "^1.4.0"
286 | }
287 | },
288 | "escape-goat": {
289 | "version": "2.1.1",
290 | "resolved": "https://registry.npmjs.org/escape-goat/-/escape-goat-2.1.1.tgz",
291 | "integrity": "sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q=="
292 | },
293 | "fill-range": {
294 | "version": "7.0.1",
295 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
296 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
297 | "requires": {
298 | "to-regex-range": "^5.0.1"
299 | }
300 | },
301 | "find-remove": {
302 | "version": "3.1.0",
303 | "resolved": "https://registry.npmjs.org/find-remove/-/find-remove-3.1.0.tgz",
304 | "integrity": "sha512-F4DAR/JnsadDA9KZRWLZXNZjaQ9X6KJ1OcHFz1cXq4OCm1v2hxu7+hbgxIaqUzU3dzYNP5npJ/dQzaR6pEf3EQ==",
305 | "requires": {
306 | "fmerge": "1.2.0",
307 | "rimraf": "3.0.2"
308 | }
309 | },
310 | "fmerge": {
311 | "version": "1.2.0",
312 | "resolved": "https://registry.npmjs.org/fmerge/-/fmerge-1.2.0.tgz",
313 | "integrity": "sha1-NumdKuJV4+4a9ma033gFU2cc9pI="
314 | },
315 | "fs.realpath": {
316 | "version": "1.0.0",
317 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
318 | "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8="
319 | },
320 | "fsevents": {
321 | "version": "2.3.2",
322 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz",
323 | "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==",
324 | "optional": true
325 | },
326 | "get-stream": {
327 | "version": "4.1.0",
328 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz",
329 | "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==",
330 | "requires": {
331 | "pump": "^3.0.0"
332 | }
333 | },
334 | "glob": {
335 | "version": "7.1.7",
336 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz",
337 | "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==",
338 | "requires": {
339 | "fs.realpath": "^1.0.0",
340 | "inflight": "^1.0.4",
341 | "inherits": "2",
342 | "minimatch": "^3.0.4",
343 | "once": "^1.3.0",
344 | "path-is-absolute": "^1.0.0"
345 | }
346 | },
347 | "glob-parent": {
348 | "version": "5.1.2",
349 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
350 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
351 | "requires": {
352 | "is-glob": "^4.0.1"
353 | }
354 | },
355 | "global-dirs": {
356 | "version": "2.1.0",
357 | "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-2.1.0.tgz",
358 | "integrity": "sha512-MG6kdOUh/xBnyo9cJFeIKkLEc1AyFq42QTU4XiX51i2NEdxLxLWXIjEjmqKeSuKR7pAZjTqUVoT2b2huxVLgYQ==",
359 | "requires": {
360 | "ini": "1.3.7"
361 | }
362 | },
363 | "got": {
364 | "version": "9.6.0",
365 | "resolved": "https://registry.npmjs.org/got/-/got-9.6.0.tgz",
366 | "integrity": "sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==",
367 | "requires": {
368 | "@sindresorhus/is": "^0.14.0",
369 | "@szmarczak/http-timer": "^1.1.2",
370 | "cacheable-request": "^6.0.0",
371 | "decompress-response": "^3.3.0",
372 | "duplexer3": "^0.1.4",
373 | "get-stream": "^4.1.0",
374 | "lowercase-keys": "^1.0.1",
375 | "mimic-response": "^1.0.1",
376 | "p-cancelable": "^1.0.0",
377 | "to-readable-stream": "^1.0.0",
378 | "url-parse-lax": "^3.0.0"
379 | }
380 | },
381 | "graceful-fs": {
382 | "version": "4.2.6",
383 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz",
384 | "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ=="
385 | },
386 | "has-flag": {
387 | "version": "3.0.0",
388 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
389 | "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0="
390 | },
391 | "has-yarn": {
392 | "version": "2.1.0",
393 | "resolved": "https://registry.npmjs.org/has-yarn/-/has-yarn-2.1.0.tgz",
394 | "integrity": "sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw=="
395 | },
396 | "http-cache-semantics": {
397 | "version": "4.1.0",
398 | "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz",
399 | "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ=="
400 | },
401 | "ignore-by-default": {
402 | "version": "1.0.1",
403 | "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz",
404 | "integrity": "sha1-SMptcvbGo68Aqa1K5odr44ieKwk="
405 | },
406 | "import-lazy": {
407 | "version": "2.1.0",
408 | "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz",
409 | "integrity": "sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM="
410 | },
411 | "imurmurhash": {
412 | "version": "0.1.4",
413 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
414 | "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o="
415 | },
416 | "inflight": {
417 | "version": "1.0.6",
418 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
419 | "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=",
420 | "requires": {
421 | "once": "^1.3.0",
422 | "wrappy": "1"
423 | }
424 | },
425 | "inherits": {
426 | "version": "2.0.4",
427 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
428 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
429 | },
430 | "ini": {
431 | "version": "1.3.7",
432 | "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.7.tgz",
433 | "integrity": "sha512-iKpRpXP+CrP2jyrxvg1kMUpXDyRUFDWurxbnVT1vQPx+Wz9uCYsMIqYuSBLV+PAaZG/d7kRLKRFc9oDMsH+mFQ=="
434 | },
435 | "is-binary-path": {
436 | "version": "2.1.0",
437 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
438 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
439 | "requires": {
440 | "binary-extensions": "^2.0.0"
441 | }
442 | },
443 | "is-ci": {
444 | "version": "2.0.0",
445 | "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz",
446 | "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==",
447 | "requires": {
448 | "ci-info": "^2.0.0"
449 | }
450 | },
451 | "is-extglob": {
452 | "version": "2.1.1",
453 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
454 | "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI="
455 | },
456 | "is-fullwidth-code-point": {
457 | "version": "2.0.0",
458 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
459 | "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8="
460 | },
461 | "is-glob": {
462 | "version": "4.0.1",
463 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz",
464 | "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==",
465 | "requires": {
466 | "is-extglob": "^2.1.1"
467 | }
468 | },
469 | "is-installed-globally": {
470 | "version": "0.3.2",
471 | "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.3.2.tgz",
472 | "integrity": "sha512-wZ8x1js7Ia0kecP/CHM/3ABkAmujX7WPvQk6uu3Fly/Mk44pySulQpnHG46OMjHGXApINnV4QhY3SWnECO2z5g==",
473 | "requires": {
474 | "global-dirs": "^2.0.1",
475 | "is-path-inside": "^3.0.1"
476 | }
477 | },
478 | "is-npm": {
479 | "version": "4.0.0",
480 | "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-4.0.0.tgz",
481 | "integrity": "sha512-96ECIfh9xtDDlPylNPXhzjsykHsMJZ18ASpaWzQyBr4YRTcVjUvzaHayDAES2oU/3KpljhHUjtSRNiDwi0F0ig=="
482 | },
483 | "is-number": {
484 | "version": "7.0.0",
485 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
486 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="
487 | },
488 | "is-obj": {
489 | "version": "2.0.0",
490 | "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz",
491 | "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w=="
492 | },
493 | "is-path-inside": {
494 | "version": "3.0.3",
495 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz",
496 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ=="
497 | },
498 | "is-typedarray": {
499 | "version": "1.0.0",
500 | "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
501 | "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo="
502 | },
503 | "is-yarn-global": {
504 | "version": "0.3.0",
505 | "resolved": "https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.3.0.tgz",
506 | "integrity": "sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw=="
507 | },
508 | "json-buffer": {
509 | "version": "3.0.0",
510 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz",
511 | "integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg="
512 | },
513 | "keyv": {
514 | "version": "3.1.0",
515 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz",
516 | "integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==",
517 | "requires": {
518 | "json-buffer": "3.0.0"
519 | }
520 | },
521 | "latest-version": {
522 | "version": "5.1.0",
523 | "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-5.1.0.tgz",
524 | "integrity": "sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==",
525 | "requires": {
526 | "package-json": "^6.3.0"
527 | }
528 | },
529 | "lowercase-keys": {
530 | "version": "1.0.1",
531 | "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz",
532 | "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA=="
533 | },
534 | "make-dir": {
535 | "version": "3.1.0",
536 | "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
537 | "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
538 | "requires": {
539 | "semver": "^6.0.0"
540 | },
541 | "dependencies": {
542 | "semver": {
543 | "version": "6.3.0",
544 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
545 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
546 | }
547 | }
548 | },
549 | "mimic-response": {
550 | "version": "1.0.1",
551 | "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz",
552 | "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ=="
553 | },
554 | "minimatch": {
555 | "version": "3.0.4",
556 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
557 | "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
558 | "requires": {
559 | "brace-expansion": "^1.1.7"
560 | }
561 | },
562 | "minimist": {
563 | "version": "1.2.5",
564 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz",
565 | "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw=="
566 | },
567 | "ms": {
568 | "version": "2.1.3",
569 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
570 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
571 | },
572 | "nodemon": {
573 | "version": "2.0.7",
574 | "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-2.0.7.tgz",
575 | "integrity": "sha512-XHzK69Awgnec9UzHr1kc8EomQh4sjTQ8oRf8TsGrSmHDx9/UmiGG9E/mM3BuTfNeFwdNBvrqQq/RHL0xIeyFOA==",
576 | "requires": {
577 | "chokidar": "^3.2.2",
578 | "debug": "^3.2.6",
579 | "ignore-by-default": "^1.0.1",
580 | "minimatch": "^3.0.4",
581 | "pstree.remy": "^1.1.7",
582 | "semver": "^5.7.1",
583 | "supports-color": "^5.5.0",
584 | "touch": "^3.1.0",
585 | "undefsafe": "^2.0.3",
586 | "update-notifier": "^4.1.0"
587 | }
588 | },
589 | "nopt": {
590 | "version": "1.0.10",
591 | "resolved": "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz",
592 | "integrity": "sha1-bd0hvSoxQXuScn3Vhfim83YI6+4=",
593 | "requires": {
594 | "abbrev": "1"
595 | }
596 | },
597 | "normalize-path": {
598 | "version": "3.0.0",
599 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
600 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA=="
601 | },
602 | "normalize-url": {
603 | "version": "4.5.0",
604 | "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.0.tgz",
605 | "integrity": "sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ=="
606 | },
607 | "once": {
608 | "version": "1.4.0",
609 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
610 | "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
611 | "requires": {
612 | "wrappy": "1"
613 | }
614 | },
615 | "p-cancelable": {
616 | "version": "1.1.0",
617 | "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz",
618 | "integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw=="
619 | },
620 | "package-json": {
621 | "version": "6.5.0",
622 | "resolved": "https://registry.npmjs.org/package-json/-/package-json-6.5.0.tgz",
623 | "integrity": "sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==",
624 | "requires": {
625 | "got": "^9.6.0",
626 | "registry-auth-token": "^4.0.0",
627 | "registry-url": "^5.0.0",
628 | "semver": "^6.2.0"
629 | },
630 | "dependencies": {
631 | "semver": {
632 | "version": "6.3.0",
633 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
634 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
635 | }
636 | }
637 | },
638 | "path-is-absolute": {
639 | "version": "1.0.1",
640 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
641 | "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18="
642 | },
643 | "picomatch": {
644 | "version": "2.2.3",
645 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.3.tgz",
646 | "integrity": "sha512-KpELjfwcCDUb9PeigTs2mBJzXUPzAuP2oPcA989He8Rte0+YUAjw1JVedDhuTKPkHjSYzMN3npC9luThGYEKdg=="
647 | },
648 | "prepend-http": {
649 | "version": "2.0.0",
650 | "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz",
651 | "integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc="
652 | },
653 | "pstree.remy": {
654 | "version": "1.1.8",
655 | "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz",
656 | "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w=="
657 | },
658 | "pump": {
659 | "version": "3.0.0",
660 | "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz",
661 | "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==",
662 | "requires": {
663 | "end-of-stream": "^1.1.0",
664 | "once": "^1.3.1"
665 | }
666 | },
667 | "pupa": {
668 | "version": "2.1.1",
669 | "resolved": "https://registry.npmjs.org/pupa/-/pupa-2.1.1.tgz",
670 | "integrity": "sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==",
671 | "requires": {
672 | "escape-goat": "^2.0.0"
673 | }
674 | },
675 | "rc": {
676 | "version": "1.2.8",
677 | "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz",
678 | "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==",
679 | "requires": {
680 | "deep-extend": "^0.6.0",
681 | "ini": "~1.3.0",
682 | "minimist": "^1.2.0",
683 | "strip-json-comments": "~2.0.1"
684 | }
685 | },
686 | "readdirp": {
687 | "version": "3.5.0",
688 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz",
689 | "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==",
690 | "requires": {
691 | "picomatch": "^2.2.1"
692 | }
693 | },
694 | "registry-auth-token": {
695 | "version": "4.2.1",
696 | "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.2.1.tgz",
697 | "integrity": "sha512-6gkSb4U6aWJB4SF2ZvLb76yCBjcvufXBqvvEx1HbmKPkutswjW1xNVRY0+daljIYRbogN7O0etYSlbiaEQyMyw==",
698 | "requires": {
699 | "rc": "^1.2.8"
700 | }
701 | },
702 | "registry-url": {
703 | "version": "5.1.0",
704 | "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-5.1.0.tgz",
705 | "integrity": "sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==",
706 | "requires": {
707 | "rc": "^1.2.8"
708 | }
709 | },
710 | "responselike": {
711 | "version": "1.0.2",
712 | "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz",
713 | "integrity": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=",
714 | "requires": {
715 | "lowercase-keys": "^1.0.0"
716 | }
717 | },
718 | "rimraf": {
719 | "version": "3.0.2",
720 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
721 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
722 | "requires": {
723 | "glob": "^7.1.3"
724 | }
725 | },
726 | "semver": {
727 | "version": "5.7.1",
728 | "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
729 | "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ=="
730 | },
731 | "semver-diff": {
732 | "version": "3.1.1",
733 | "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-3.1.1.tgz",
734 | "integrity": "sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==",
735 | "requires": {
736 | "semver": "^6.3.0"
737 | },
738 | "dependencies": {
739 | "semver": {
740 | "version": "6.3.0",
741 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
742 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
743 | }
744 | }
745 | },
746 | "signal-exit": {
747 | "version": "3.0.3",
748 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz",
749 | "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA=="
750 | },
751 | "string-width": {
752 | "version": "4.2.2",
753 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.2.tgz",
754 | "integrity": "sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==",
755 | "requires": {
756 | "emoji-regex": "^8.0.0",
757 | "is-fullwidth-code-point": "^3.0.0",
758 | "strip-ansi": "^6.0.0"
759 | },
760 | "dependencies": {
761 | "ansi-regex": {
762 | "version": "5.0.0",
763 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
764 | "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg=="
765 | },
766 | "emoji-regex": {
767 | "version": "8.0.0",
768 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
769 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
770 | },
771 | "is-fullwidth-code-point": {
772 | "version": "3.0.0",
773 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
774 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="
775 | },
776 | "strip-ansi": {
777 | "version": "6.0.0",
778 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz",
779 | "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==",
780 | "requires": {
781 | "ansi-regex": "^5.0.0"
782 | }
783 | }
784 | }
785 | },
786 | "strip-ansi": {
787 | "version": "5.2.0",
788 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
789 | "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
790 | "requires": {
791 | "ansi-regex": "^4.1.0"
792 | }
793 | },
794 | "strip-json-comments": {
795 | "version": "2.0.1",
796 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz",
797 | "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo="
798 | },
799 | "supports-color": {
800 | "version": "5.5.0",
801 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
802 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
803 | "requires": {
804 | "has-flag": "^3.0.0"
805 | }
806 | },
807 | "term-size": {
808 | "version": "2.2.1",
809 | "resolved": "https://registry.npmjs.org/term-size/-/term-size-2.2.1.tgz",
810 | "integrity": "sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg=="
811 | },
812 | "to-readable-stream": {
813 | "version": "1.0.0",
814 | "resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz",
815 | "integrity": "sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q=="
816 | },
817 | "to-regex-range": {
818 | "version": "5.0.1",
819 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
820 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
821 | "requires": {
822 | "is-number": "^7.0.0"
823 | }
824 | },
825 | "touch": {
826 | "version": "3.1.0",
827 | "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz",
828 | "integrity": "sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==",
829 | "requires": {
830 | "nopt": "~1.0.10"
831 | }
832 | },
833 | "type-fest": {
834 | "version": "0.8.1",
835 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz",
836 | "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA=="
837 | },
838 | "typedarray-to-buffer": {
839 | "version": "3.1.5",
840 | "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz",
841 | "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==",
842 | "requires": {
843 | "is-typedarray": "^1.0.0"
844 | }
845 | },
846 | "undefsafe": {
847 | "version": "2.0.3",
848 | "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.3.tgz",
849 | "integrity": "sha512-nrXZwwXrD/T/JXeygJqdCO6NZZ1L66HrxM/Z7mIq2oPanoN0F1nLx3lwJMu6AwJY69hdixaFQOuoYsMjE5/C2A==",
850 | "requires": {
851 | "debug": "^2.2.0"
852 | },
853 | "dependencies": {
854 | "debug": {
855 | "version": "2.6.9",
856 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
857 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
858 | "requires": {
859 | "ms": "2.0.0"
860 | }
861 | },
862 | "ms": {
863 | "version": "2.0.0",
864 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
865 | "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
866 | }
867 | }
868 | },
869 | "unique-string": {
870 | "version": "2.0.0",
871 | "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz",
872 | "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==",
873 | "requires": {
874 | "crypto-random-string": "^2.0.0"
875 | }
876 | },
877 | "update-notifier": {
878 | "version": "4.1.3",
879 | "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-4.1.3.tgz",
880 | "integrity": "sha512-Yld6Z0RyCYGB6ckIjffGOSOmHXj1gMeE7aROz4MG+XMkmixBX4jUngrGXNYz7wPKBmtoD4MnBa2Anu7RSKht/A==",
881 | "requires": {
882 | "boxen": "^4.2.0",
883 | "chalk": "^3.0.0",
884 | "configstore": "^5.0.1",
885 | "has-yarn": "^2.1.0",
886 | "import-lazy": "^2.1.0",
887 | "is-ci": "^2.0.0",
888 | "is-installed-globally": "^0.3.1",
889 | "is-npm": "^4.0.0",
890 | "is-yarn-global": "^0.3.0",
891 | "latest-version": "^5.0.0",
892 | "pupa": "^2.0.1",
893 | "semver-diff": "^3.1.1",
894 | "xdg-basedir": "^4.0.0"
895 | }
896 | },
897 | "url-parse-lax": {
898 | "version": "3.0.0",
899 | "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz",
900 | "integrity": "sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=",
901 | "requires": {
902 | "prepend-http": "^2.0.0"
903 | }
904 | },
905 | "widest-line": {
906 | "version": "3.1.0",
907 | "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz",
908 | "integrity": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==",
909 | "requires": {
910 | "string-width": "^4.0.0"
911 | }
912 | },
913 | "wrappy": {
914 | "version": "1.0.2",
915 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
916 | "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8="
917 | },
918 | "write-file-atomic": {
919 | "version": "3.0.3",
920 | "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz",
921 | "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==",
922 | "requires": {
923 | "imurmurhash": "^0.1.4",
924 | "is-typedarray": "^1.0.0",
925 | "signal-exit": "^3.0.2",
926 | "typedarray-to-buffer": "^3.1.5"
927 | }
928 | },
929 | "xdg-basedir": {
930 | "version": "4.0.0",
931 | "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz",
932 | "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q=="
933 | }
934 | }
935 | }
936 |
--------------------------------------------------------------------------------