From 97d92cb18a4f20dd61987c9210652dde2a5c6136 Mon Sep 17 00:00:00 2001 From: Jack Hamer Date: Fri, 1 Sep 2023 11:22:39 +0300 Subject: [PATCH] chore: make repo open-source ready --- .github/CODEOWNERS | 10 + .github/CONTRIBUTING.md | 70 +++++++ .github/ISSUE_TEMPLATE/bug_report.md | 45 +++++ .github/ISSUE_TEMPLATE/config.yml | 8 + .github/pull_request_template.md | 17 ++ README.md | 24 +-- package-lock.json | 270 +-------------------------- package.json | 6 +- 8 files changed, 169 insertions(+), 281 deletions(-) create mode 100644 .github/CODEOWNERS create mode 100644 .github/CONTRIBUTING.md create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/pull_request_template.md diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 00000000..f05e03b2 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,10 @@ +# This CODEOWNERS file sets the individuals responsible for code in the era-test-node repository. + +# These users are the default owners for everything in the repo. +# They will be requested for review when someone opens a pull request. +* @JackHamer09 + +# You can also specify code owners for specific directories or files. +# For example: +# /src/ @developer1 @developer2 +# /docs/ @documenter \ No newline at end of file diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md new file mode 100644 index 00000000..5523abf6 --- /dev/null +++ b/.github/CONTRIBUTING.md @@ -0,0 +1,70 @@ +# Contributing to zkSync Era CLI + +## Welcome! 🎉 + +Hello, contributor! Thanks for thinking about helping with the `zkSync Era CLI` project. This guide will help you understand how to contribute to our CLI tool. + +## Getting Started + +- **Fork the project.** First, fork the `zkSync Era CLI` repository to your GitHub account. + +- **Download the project.** Now, get the project on your computer: + +```bash +git clone https://github.com//zksync-cli.git +``` + +- **Make a new branch.** Give your branch a simple name that tells what you're working on: + +```bash +git checkout -b my-new-feature +``` + +## Making Changes + +- **Write your code.** Keep your code clear and easy to understand. It helps everyone. + +- **Build and check your code.** Before you ask others to look at your code, make sure it works well. You can use these commands: + +```bash +npm run build +node ./bin [your-command] +``` + +- **Save your changes.** Use easy-to-understand messages when saving your changes. + +- **Send your changes.** Now, put your code back on your GitHub: + +```bash +git push origin my-new-feature +``` + +## Sending a Pull Request + +- **Ask to add your changes.** Go to the `zkSync Era CLI` project on GitHub. You'll see a button "Compare & pull request." Click it and tell us about your changes. + +- **Wait for feedback.** Our team will look at your changes. We might ask you to change some things. + +Remember, we have a system that checks your code automatically when you ask to add your changes. Make sure you pass that check! + +## Code Style + +We have rules about how to write code. This helps everyone understand and trust the code. Use this command to make sure your code follows our rules: + +```bash +npm run lint +``` + +## Questions? + +If you have questions, you can ask on our [zkSync Community Hub](https://github.com/zkSync-Community-Hub/zkSync-developers/discussions). We're here to help! + +## Thank You! + +After we add your changes to the `zkSync Era CLI` project, we'll be very thankful! Your help makes our project better. + +We hope you enjoy helping and come back to help more. Thanks for being part of our team! + +--- + +*Last update: September 1, 2023* \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 00000000..2638882e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,45 @@ +--- +name: Bug report +about: Use this template for reporting issues +title: "" +labels: bug +assignees: '' + +--- + +### 🐛 Bug Report for zkSync CLI +#### 📝 Description + +Provide a clear and concise description of the bug. + +#### 🔄 Reproduction Steps + +1. Step 1 +2. Step 2 +3. ... + +#### 🤔 Expected Behavior + +Describe what you expected to happen. + +#### 😯 Current Behavior + +Describe what actually happened. + +#### 🖥️ Environment + +- **Package version**: [e.g., 1.2.1] +- **Node version**: [e.g., node v16.14.0] +- **NPM/Yarn version**: [e.g., npm 8.3.1] +- **Operating System & Version**: [e.g., Ubuntu 20.04] +- **Other relevant environment details**: + +#### 📋 Additional Context + +Add any other context about the problem here. If applicable, add screenshots to help explain. + +#### 📎 Log Output + +``` +Paste any relevant log output here. +``` \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..fee4cf0a --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,8 @@ +blank_issues_enabled: true +contact_links: + - name: zksync-developers Discussion + url: https://github.com/zkSync-Community-Hub/zkync-developers/discussions + about: Please provide feedback, and ask questions here. + - name: zksync-cli documentation page + url: https://era.zksync.io/docs/tools/zksync-cli + about: Please refer to the documentation for immediate answers. \ No newline at end of file diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 00000000..8778b893 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,17 @@ +# What :computer: +* First thing updated with this PR +* Second thing updated with this PR +* Third thing updated with this PR + +# Why :hand: +* Reason why first thing was added to PR +* Reason why second thing was added to PR +* Reason why third thing was added to PR + +# Evidence :camera: +Include screenshots, screen recordings, or `console` output here demonstrating that your changes work as intended + + + +# Notes :memo: +* Any notes/thoughts that the reviewers should know prior to reviewing the code? \ No newline at end of file diff --git a/README.md b/README.md index ab77cdc9..0744b3f6 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ This CLI tool simplifies the process of developing applications and interacting with zkSync Era. -[Report a bug](https://github.com/matter-labs/zksync-cli/issues/new) | [Request a feature](https://github.com/matter-labs/zksync-cli/issues/new) +[Documentation](https://era.zksync.io/docs/tools/zksync-cli) | [Report a bug](https://github.com/matter-labs/zksync-cli/issues/new) | [Request a feature](https://github.com/matter-labs/zksync-cli/issues/new) [pr-welcome]: https://img.shields.io/static/v1?color=indigo&label=PRs&style=flat&message=welcome @@ -14,12 +14,12 @@ This CLI tool simplifies the process of developing applications and interacting ## 🛠 Prerequisites -- Node.js v18.x / NPM -- Yarn +- Node.js v18.x +- NPM / Yarn ## 📥 Installation -You can install this program globally with `npm i -g zksync-cli` or run the commands direcly via NPX with `npx zksync-cli@latest {COMMAND}`. +You can install this program globally with `npm i -g zksync-cli` or run the commands directly via NPX with `npx zksync-cli@latest {COMMAND}`. ## 💻 Commands @@ -40,34 +40,28 @@ You can install this program globally with `npm i -g zksync-cli` or run the comm ### ⚙️ Options (flags) -- `--zeek`: zeek, the dev cat, will search for an inspirational quote and provide to you at the end of any command. - `--l1-rpc-url`: override the default L1 rpc URL when `localnet` is selected as the network. Usage `--l1-rpc-url=http://...`. - `--l2-rpc-url`: override the default L2 rpc URL when `localnet` is selected as the network. Usage `--l1-rpc-url=http://...`. +- `--zeek`: zeek, the dev cat, will search for an inspirational quote and provide to you at the end of any command. ## 👩‍💻 Developing new features ### Install and build -1. Install all dendencies with `npm i`. +1. Install all dependencies with `npm i`. 2. This project was build with Typescript. Run `npm run build` to compile code in `/src` into `/bin`. - -To create a version run: - -```sh -git tag v0.1.3 // with the correspondent tag -git push --tags -``` +3. You can run your local build with `node ./bin` ### Testing > ⚠️ This project does not have unit tests yet 🤕 -Proper tests will be included soon. For now, you can test new changes locally by installing this package globably with `npm i -g`. +Proper tests will be included soon. For now, you can test new changes manually by running your build (refer to [Install and build](#install-and-build)). ### 📊 Tracking -zkSync-cli tracks its usage for the single purpose of providing data so it can be improved. Data is fully anonymized. If you want to disable the tracking, set the environment variable NO_TRACKING to `true`. +zkSync-cli tracks its usage for the single purpose of providing data so it can be improved. Data is fully anonymized. If you want to disable the tracking, set the environment variable `NO_TRACKING` to `true`. ## 🌍 Official Links diff --git a/package-lock.json b/package-lock.json index dfb0e529..50914b81 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "zksync-cli", - "version": "0.2.6", + "version": "0.0.0-development", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "zksync-cli", - "version": "0.2.6", + "version": "0.0.0-development", "license": "MIT", "dependencies": { "@rudderstack/rudder-sdk-node": "^2.0.2", @@ -25,7 +25,7 @@ "@commitlint/cli": "^17.7.1", "@commitlint/config-conventional": "^17.7.0", "@matterlabs/eslint-config-typescript": "^1.1.1", - "@matterlabs/prettier-config": "^1.0.3", + "zksync-cli": "^1.0.3", "@semantic-release/changelog": "^6.0.3", "@semantic-release/commit-analyzer": "^9.0.2", "@semantic-release/github": "^8.1.0", @@ -1472,9 +1472,9 @@ "prettier": "^3.0.3" } }, - "node_modules/@matterlabs/prettier-config": { + "node_modules/zksync-cli": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@matterlabs/prettier-config/-/prettier-config-1.0.3.tgz", + "resolved": "https://registry.npmjs.org/zksync-cli/-/prettier-config-1.0.3.tgz", "integrity": "sha512-JW7nHREPqEtjBWz3EfxLarkmJBD8vi7Kx/1AQ6eBZnz12eHc1VkOyrc6mpR5ogTf0dOUNXFAfZut+cDe2dn4kQ==", "dev": true }, @@ -7071,19 +7071,16 @@ }, "node_modules/npm/node_modules/@gar/promisify": { "version": "1.1.2", - "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/@isaacs/string-locale-compare": { "version": "1.1.0", - "extraneous": true, "inBundle": true, "license": "ISC" }, "node_modules/npm/node_modules/@npmcli/arborist": { "version": "2.9.0", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -7129,13 +7126,11 @@ }, "node_modules/npm/node_modules/@npmcli/ci-detect": { "version": "1.3.0", - "extraneous": true, "inBundle": true, "license": "ISC" }, "node_modules/npm/node_modules/@npmcli/config": { "version": "2.3.0", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -7151,7 +7146,6 @@ }, "node_modules/npm/node_modules/@npmcli/disparity-colors": { "version": "1.0.1", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -7163,7 +7157,6 @@ }, "node_modules/npm/node_modules/@npmcli/fs": { "version": "1.0.0", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -7173,7 +7166,6 @@ }, "node_modules/npm/node_modules/@npmcli/git": { "version": "2.1.0", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -7189,7 +7181,6 @@ }, "node_modules/npm/node_modules/@npmcli/installed-package-contents": { "version": "1.0.7", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -7205,7 +7196,6 @@ }, "node_modules/npm/node_modules/@npmcli/map-workspaces": { "version": "1.0.4", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -7220,7 +7210,6 @@ }, "node_modules/npm/node_modules/@npmcli/metavuln-calculator": { "version": "1.1.1", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -7231,7 +7220,6 @@ }, "node_modules/npm/node_modules/@npmcli/move-file": { "version": "1.1.2", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -7244,19 +7232,16 @@ }, "node_modules/npm/node_modules/@npmcli/name-from-folder": { "version": "1.0.1", - "extraneous": true, "inBundle": true, "license": "ISC" }, "node_modules/npm/node_modules/@npmcli/node-gyp": { "version": "1.0.2", - "extraneous": true, "inBundle": true, "license": "ISC" }, "node_modules/npm/node_modules/@npmcli/package-json": { "version": "1.0.1", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -7265,7 +7250,6 @@ }, "node_modules/npm/node_modules/@npmcli/promise-spawn": { "version": "1.3.2", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -7274,7 +7258,6 @@ }, "node_modules/npm/node_modules/@npmcli/run-script": { "version": "1.8.6", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -7286,7 +7269,6 @@ }, "node_modules/npm/node_modules/@tootallnate/once": { "version": "1.1.2", - "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -7295,13 +7277,11 @@ }, "node_modules/npm/node_modules/abbrev": { "version": "1.1.1", - "extraneous": true, "inBundle": true, "license": "ISC" }, "node_modules/npm/node_modules/agent-base": { "version": "6.0.2", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -7313,7 +7293,6 @@ }, "node_modules/npm/node_modules/agentkeepalive": { "version": "4.1.4", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -7327,7 +7306,6 @@ }, "node_modules/npm/node_modules/aggregate-error": { "version": "3.1.0", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -7340,7 +7318,6 @@ }, "node_modules/npm/node_modules/ajv": { "version": "6.12.6", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -7356,7 +7333,6 @@ }, "node_modules/npm/node_modules/ansi-regex": { "version": "2.1.1", - "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -7365,7 +7341,6 @@ }, "node_modules/npm/node_modules/ansi-styles": { "version": "4.3.0", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -7380,31 +7355,26 @@ }, "node_modules/npm/node_modules/ansicolors": { "version": "0.3.2", - "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/ansistyles": { "version": "0.1.3", - "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/aproba": { "version": "2.0.0", - "extraneous": true, "inBundle": true, "license": "ISC" }, "node_modules/npm/node_modules/archy": { "version": "1.0.0", - "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/are-we-there-yet": { "version": "1.1.6", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -7417,13 +7387,11 @@ }, "node_modules/npm/node_modules/asap": { "version": "2.0.6", - "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/asn1": { "version": "0.2.4", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -7432,7 +7400,6 @@ }, "node_modules/npm/node_modules/assert-plus": { "version": "1.0.0", - "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -7441,13 +7408,11 @@ }, "node_modules/npm/node_modules/asynckit": { "version": "0.4.0", - "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/aws-sign2": { "version": "0.7.0", - "extraneous": true, "inBundle": true, "license": "Apache-2.0", "engines": { @@ -7456,19 +7421,16 @@ }, "node_modules/npm/node_modules/aws4": { "version": "1.11.0", - "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/balanced-match": { "version": "1.0.2", - "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/bcrypt-pbkdf": { "version": "1.0.2", - "extraneous": true, "inBundle": true, "license": "BSD-3-Clause", "dependencies": { @@ -7477,7 +7439,6 @@ }, "node_modules/npm/node_modules/bin-links": { "version": "2.2.1", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -7494,7 +7455,6 @@ }, "node_modules/npm/node_modules/binary-extensions": { "version": "2.2.0", - "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -7503,7 +7463,6 @@ }, "node_modules/npm/node_modules/brace-expansion": { "version": "1.1.11", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -7513,13 +7472,11 @@ }, "node_modules/npm/node_modules/builtins": { "version": "1.0.3", - "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/cacache": { "version": "15.3.0", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -7548,13 +7505,11 @@ }, "node_modules/npm/node_modules/caseless": { "version": "0.12.0", - "extraneous": true, "inBundle": true, "license": "Apache-2.0" }, "node_modules/npm/node_modules/chalk": { "version": "4.1.2", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -7570,7 +7525,6 @@ }, "node_modules/npm/node_modules/chownr": { "version": "2.0.0", - "extraneous": true, "inBundle": true, "license": "ISC", "engines": { @@ -7579,7 +7533,6 @@ }, "node_modules/npm/node_modules/cidr-regex": { "version": "3.1.1", - "extraneous": true, "inBundle": true, "license": "BSD-2-Clause", "dependencies": { @@ -7591,7 +7544,6 @@ }, "node_modules/npm/node_modules/clean-stack": { "version": "2.2.0", - "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -7600,7 +7552,6 @@ }, "node_modules/npm/node_modules/cli-columns": { "version": "3.1.2", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -7613,7 +7564,6 @@ }, "node_modules/npm/node_modules/cli-table3": { "version": "0.6.0", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -7629,7 +7579,6 @@ }, "node_modules/npm/node_modules/cli-table3/node_modules/ansi-regex": { "version": "5.0.0", - "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -7638,7 +7587,6 @@ }, "node_modules/npm/node_modules/cli-table3/node_modules/is-fullwidth-code-point": { "version": "3.0.0", - "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -7647,7 +7595,6 @@ }, "node_modules/npm/node_modules/cli-table3/node_modules/string-width": { "version": "4.2.2", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -7661,7 +7608,6 @@ }, "node_modules/npm/node_modules/cli-table3/node_modules/strip-ansi": { "version": "6.0.0", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -7673,7 +7619,6 @@ }, "node_modules/npm/node_modules/clone": { "version": "1.0.4", - "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -7682,7 +7627,6 @@ }, "node_modules/npm/node_modules/cmd-shim": { "version": "4.1.0", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -7694,7 +7638,6 @@ }, "node_modules/npm/node_modules/code-point-at": { "version": "1.1.0", - "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -7703,7 +7646,6 @@ }, "node_modules/npm/node_modules/color-convert": { "version": "2.0.1", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -7715,13 +7657,11 @@ }, "node_modules/npm/node_modules/color-name": { "version": "1.1.4", - "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/color-support": { "version": "1.1.3", - "extraneous": true, "inBundle": true, "license": "ISC", "bin": { @@ -7730,7 +7670,6 @@ }, "node_modules/npm/node_modules/colors": { "version": "1.4.0", - "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -7739,7 +7678,6 @@ }, "node_modules/npm/node_modules/columnify": { "version": "1.5.4", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -7749,7 +7687,6 @@ }, "node_modules/npm/node_modules/combined-stream": { "version": "1.0.8", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -7761,31 +7698,26 @@ }, "node_modules/npm/node_modules/common-ancestor-path": { "version": "1.0.1", - "extraneous": true, "inBundle": true, "license": "ISC" }, "node_modules/npm/node_modules/concat-map": { "version": "0.0.1", - "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/console-control-strings": { "version": "1.1.0", - "extraneous": true, "inBundle": true, "license": "ISC" }, "node_modules/npm/node_modules/core-util-is": { "version": "1.0.2", - "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/dashdash": { "version": "1.14.1", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -7797,7 +7729,6 @@ }, "node_modules/npm/node_modules/debug": { "version": "4.3.2", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -7814,13 +7745,11 @@ }, "node_modules/npm/node_modules/debug/node_modules/ms": { "version": "2.1.2", - "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/debuglog": { "version": "1.0.1", - "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -7829,7 +7758,6 @@ }, "node_modules/npm/node_modules/defaults": { "version": "1.0.3", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -7838,7 +7766,6 @@ }, "node_modules/npm/node_modules/delayed-stream": { "version": "1.0.0", - "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -7847,13 +7774,11 @@ }, "node_modules/npm/node_modules/delegates": { "version": "1.0.0", - "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/depd": { "version": "1.1.2", - "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -7862,7 +7787,6 @@ }, "node_modules/npm/node_modules/dezalgo": { "version": "1.0.3", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -7872,7 +7796,6 @@ }, "node_modules/npm/node_modules/diff": { "version": "5.0.0", - "extraneous": true, "inBundle": true, "license": "BSD-3-Clause", "engines": { @@ -7881,7 +7804,6 @@ }, "node_modules/npm/node_modules/ecc-jsbn": { "version": "0.1.2", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -7891,13 +7813,11 @@ }, "node_modules/npm/node_modules/emoji-regex": { "version": "8.0.0", - "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/encoding": { "version": "0.1.13", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -7906,7 +7826,6 @@ }, "node_modules/npm/node_modules/env-paths": { "version": "2.2.1", - "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -7915,13 +7834,11 @@ }, "node_modules/npm/node_modules/err-code": { "version": "2.0.3", - "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/extend": { "version": "3.0.2", - "extraneous": true, "inBundle": true, "license": "MIT" }, @@ -7930,31 +7847,26 @@ "engines": [ "node >=0.6.0" ], - "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/fast-deep-equal": { "version": "3.1.3", - "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/fast-json-stable-stringify": { "version": "2.1.0", - "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/fastest-levenshtein": { "version": "1.0.12", - "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/forever-agent": { "version": "0.6.1", - "extraneous": true, "inBundle": true, "license": "Apache-2.0", "engines": { @@ -7963,7 +7875,6 @@ }, "node_modules/npm/node_modules/fs-minipass": { "version": "2.1.0", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -7975,19 +7886,16 @@ }, "node_modules/npm/node_modules/fs.realpath": { "version": "1.0.0", - "extraneous": true, "inBundle": true, "license": "ISC" }, "node_modules/npm/node_modules/function-bind": { "version": "1.1.1", - "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/gauge": { "version": "3.0.1", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -8007,7 +7915,6 @@ }, "node_modules/npm/node_modules/getpass": { "version": "0.1.7", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -8016,7 +7923,6 @@ }, "node_modules/npm/node_modules/glob": { "version": "7.2.0", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -8036,13 +7942,11 @@ }, "node_modules/npm/node_modules/graceful-fs": { "version": "4.2.8", - "extraneous": true, "inBundle": true, "license": "ISC" }, "node_modules/npm/node_modules/har-schema": { "version": "2.0.0", - "extraneous": true, "inBundle": true, "license": "ISC", "engines": { @@ -8051,7 +7955,6 @@ }, "node_modules/npm/node_modules/har-validator": { "version": "5.1.5", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -8064,7 +7967,6 @@ }, "node_modules/npm/node_modules/has": { "version": "1.0.3", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -8076,7 +7978,6 @@ }, "node_modules/npm/node_modules/has-flag": { "version": "4.0.0", - "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -8085,13 +7986,11 @@ }, "node_modules/npm/node_modules/has-unicode": { "version": "2.0.1", - "extraneous": true, "inBundle": true, "license": "ISC" }, "node_modules/npm/node_modules/hosted-git-info": { "version": "4.0.2", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -8103,13 +8002,11 @@ }, "node_modules/npm/node_modules/http-cache-semantics": { "version": "4.1.0", - "extraneous": true, "inBundle": true, "license": "BSD-2-Clause" }, "node_modules/npm/node_modules/http-proxy-agent": { "version": "4.0.1", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -8123,7 +8020,6 @@ }, "node_modules/npm/node_modules/http-signature": { "version": "1.2.0", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -8138,7 +8034,6 @@ }, "node_modules/npm/node_modules/https-proxy-agent": { "version": "5.0.0", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -8151,7 +8046,6 @@ }, "node_modules/npm/node_modules/humanize-ms": { "version": "1.2.1", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -8160,7 +8054,6 @@ }, "node_modules/npm/node_modules/iconv-lite": { "version": "0.6.3", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -8172,7 +8065,6 @@ }, "node_modules/npm/node_modules/ignore-walk": { "version": "3.0.4", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -8181,7 +8073,6 @@ }, "node_modules/npm/node_modules/imurmurhash": { "version": "0.1.4", - "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -8190,7 +8081,6 @@ }, "node_modules/npm/node_modules/indent-string": { "version": "4.0.0", - "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -8199,13 +8089,11 @@ }, "node_modules/npm/node_modules/infer-owner": { "version": "1.0.4", - "extraneous": true, "inBundle": true, "license": "ISC" }, "node_modules/npm/node_modules/inflight": { "version": "1.0.6", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -8215,13 +8103,11 @@ }, "node_modules/npm/node_modules/inherits": { "version": "2.0.4", - "extraneous": true, "inBundle": true, "license": "ISC" }, "node_modules/npm/node_modules/ini": { "version": "2.0.0", - "extraneous": true, "inBundle": true, "license": "ISC", "engines": { @@ -8230,7 +8116,6 @@ }, "node_modules/npm/node_modules/init-package-json": { "version": "2.0.5", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -8248,13 +8133,11 @@ }, "node_modules/npm/node_modules/ip": { "version": "1.1.5", - "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/ip-regex": { "version": "4.3.0", - "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -8263,7 +8146,6 @@ }, "node_modules/npm/node_modules/is-cidr": { "version": "4.0.2", - "extraneous": true, "inBundle": true, "license": "BSD-2-Clause", "dependencies": { @@ -8275,7 +8157,6 @@ }, "node_modules/npm/node_modules/is-core-module": { "version": "2.7.0", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -8287,7 +8168,6 @@ }, "node_modules/npm/node_modules/is-fullwidth-code-point": { "version": "2.0.0", - "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -8296,54 +8176,45 @@ }, "node_modules/npm/node_modules/is-lambda": { "version": "1.0.1", - "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/is-typedarray": { "version": "1.0.0", - "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/isexe": { "version": "2.0.0", - "extraneous": true, "inBundle": true, "license": "ISC" }, "node_modules/npm/node_modules/isstream": { "version": "0.1.2", - "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/jsbn": { "version": "0.1.1", - "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/json-parse-even-better-errors": { "version": "2.3.1", - "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/json-schema": { "version": "0.2.3", - "extraneous": true, "inBundle": true }, "node_modules/npm/node_modules/json-schema-traverse": { "version": "0.4.1", - "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/json-stringify-nice": { "version": "1.1.4", - "extraneous": true, "inBundle": true, "license": "ISC", "funding": { @@ -8352,7 +8223,6 @@ }, "node_modules/npm/node_modules/json-stringify-safe": { "version": "5.0.1", - "extraneous": true, "inBundle": true, "license": "ISC" }, @@ -8361,7 +8231,6 @@ "engines": [ "node >= 0.2.0" ], - "extraneous": true, "inBundle": true, "license": "MIT" }, @@ -8370,7 +8239,6 @@ "engines": [ "node >=0.6.0" ], - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -8382,19 +8250,16 @@ }, "node_modules/npm/node_modules/just-diff": { "version": "3.1.1", - "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/just-diff-apply": { "version": "3.0.0", - "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/libnpmaccess": { "version": "4.0.3", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -8409,7 +8274,6 @@ }, "node_modules/npm/node_modules/libnpmdiff": { "version": "2.0.4", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -8428,7 +8292,6 @@ }, "node_modules/npm/node_modules/libnpmexec": { "version": "2.0.1", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -8450,7 +8313,6 @@ }, "node_modules/npm/node_modules/libnpmfund": { "version": "1.1.0", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -8459,7 +8321,6 @@ }, "node_modules/npm/node_modules/libnpmhook": { "version": "6.0.3", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -8472,7 +8333,6 @@ }, "node_modules/npm/node_modules/libnpmorg": { "version": "2.0.3", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -8485,7 +8345,6 @@ }, "node_modules/npm/node_modules/libnpmpack": { "version": "2.0.1", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -8499,7 +8358,6 @@ }, "node_modules/npm/node_modules/libnpmpublish": { "version": "4.0.2", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -8515,7 +8373,6 @@ }, "node_modules/npm/node_modules/libnpmsearch": { "version": "3.1.2", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -8527,7 +8384,6 @@ }, "node_modules/npm/node_modules/libnpmteam": { "version": "2.0.4", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -8540,7 +8396,6 @@ }, "node_modules/npm/node_modules/libnpmversion": { "version": "1.2.1", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -8553,7 +8408,6 @@ }, "node_modules/npm/node_modules/lru-cache": { "version": "6.0.0", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -8565,7 +8419,6 @@ }, "node_modules/npm/node_modules/make-fetch-happen": { "version": "9.1.0", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -8592,7 +8445,6 @@ }, "node_modules/npm/node_modules/mime-db": { "version": "1.49.0", - "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -8601,7 +8453,6 @@ }, "node_modules/npm/node_modules/mime-types": { "version": "2.1.32", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -8613,7 +8464,6 @@ }, "node_modules/npm/node_modules/minimatch": { "version": "3.0.4", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -8625,7 +8475,6 @@ }, "node_modules/npm/node_modules/minipass": { "version": "3.1.5", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -8637,7 +8486,6 @@ }, "node_modules/npm/node_modules/minipass-collect": { "version": "1.0.2", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -8649,7 +8497,6 @@ }, "node_modules/npm/node_modules/minipass-fetch": { "version": "1.4.1", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -8666,7 +8513,6 @@ }, "node_modules/npm/node_modules/minipass-flush": { "version": "1.0.5", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -8678,7 +8524,6 @@ }, "node_modules/npm/node_modules/minipass-json-stream": { "version": "1.0.1", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -8688,7 +8533,6 @@ }, "node_modules/npm/node_modules/minipass-pipeline": { "version": "1.2.4", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -8700,7 +8544,6 @@ }, "node_modules/npm/node_modules/minipass-sized": { "version": "1.0.3", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -8712,7 +8555,6 @@ }, "node_modules/npm/node_modules/minizlib": { "version": "2.1.2", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -8725,7 +8567,6 @@ }, "node_modules/npm/node_modules/mkdirp": { "version": "1.0.4", - "extraneous": true, "inBundle": true, "license": "MIT", "bin": { @@ -8737,7 +8578,6 @@ }, "node_modules/npm/node_modules/mkdirp-infer-owner": { "version": "2.0.0", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -8751,19 +8591,16 @@ }, "node_modules/npm/node_modules/ms": { "version": "2.1.3", - "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/mute-stream": { "version": "0.0.8", - "extraneous": true, "inBundle": true, "license": "ISC" }, "node_modules/npm/node_modules/negotiator": { "version": "0.6.2", - "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -8772,7 +8609,6 @@ }, "node_modules/npm/node_modules/node-gyp": { "version": "7.1.2", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -8796,13 +8632,11 @@ }, "node_modules/npm/node_modules/node-gyp/node_modules/aproba": { "version": "1.2.0", - "extraneous": true, "inBundle": true, "license": "ISC" }, "node_modules/npm/node_modules/node-gyp/node_modules/gauge": { "version": "2.7.4", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -8818,7 +8652,6 @@ }, "node_modules/npm/node_modules/node-gyp/node_modules/is-fullwidth-code-point": { "version": "1.0.0", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -8830,7 +8663,6 @@ }, "node_modules/npm/node_modules/node-gyp/node_modules/npmlog": { "version": "4.1.2", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -8842,7 +8674,6 @@ }, "node_modules/npm/node_modules/node-gyp/node_modules/string-width": { "version": "1.0.2", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -8856,7 +8687,6 @@ }, "node_modules/npm/node_modules/nopt": { "version": "5.0.0", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -8871,7 +8701,6 @@ }, "node_modules/npm/node_modules/normalize-package-data": { "version": "3.0.3", - "extraneous": true, "inBundle": true, "license": "BSD-2-Clause", "dependencies": { @@ -8886,7 +8715,6 @@ }, "node_modules/npm/node_modules/npm-audit-report": { "version": "2.1.5", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -8898,7 +8726,6 @@ }, "node_modules/npm/node_modules/npm-bundled": { "version": "1.1.2", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -8907,7 +8734,6 @@ }, "node_modules/npm/node_modules/npm-install-checks": { "version": "4.0.0", - "extraneous": true, "inBundle": true, "license": "BSD-2-Clause", "dependencies": { @@ -8919,13 +8745,11 @@ }, "node_modules/npm/node_modules/npm-normalize-package-bin": { "version": "1.0.1", - "extraneous": true, "inBundle": true, "license": "ISC" }, "node_modules/npm/node_modules/npm-package-arg": { "version": "8.1.5", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -8939,7 +8763,6 @@ }, "node_modules/npm/node_modules/npm-packlist": { "version": "2.2.2", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -8957,7 +8780,6 @@ }, "node_modules/npm/node_modules/npm-pick-manifest": { "version": "6.1.1", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -8969,7 +8791,6 @@ }, "node_modules/npm/node_modules/npm-profile": { "version": "5.0.4", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -8981,7 +8802,6 @@ }, "node_modules/npm/node_modules/npm-registry-fetch": { "version": "11.0.0", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -8998,13 +8818,11 @@ }, "node_modules/npm/node_modules/npm-user-validate": { "version": "1.0.1", - "extraneous": true, "inBundle": true, "license": "BSD-2-Clause" }, "node_modules/npm/node_modules/npmlog": { "version": "5.0.1", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -9016,7 +8834,6 @@ }, "node_modules/npm/node_modules/npmlog/node_modules/are-we-there-yet": { "version": "2.0.0", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -9029,7 +8846,6 @@ }, "node_modules/npm/node_modules/number-is-nan": { "version": "1.0.1", - "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -9038,7 +8854,6 @@ }, "node_modules/npm/node_modules/oauth-sign": { "version": "0.9.0", - "extraneous": true, "inBundle": true, "license": "Apache-2.0", "engines": { @@ -9047,7 +8862,6 @@ }, "node_modules/npm/node_modules/object-assign": { "version": "4.1.1", - "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -9056,7 +8870,6 @@ }, "node_modules/npm/node_modules/once": { "version": "1.4.0", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -9065,7 +8878,6 @@ }, "node_modules/npm/node_modules/opener": { "version": "1.5.2", - "extraneous": true, "inBundle": true, "license": "(WTFPL OR MIT)", "bin": { @@ -9074,7 +8886,6 @@ }, "node_modules/npm/node_modules/p-map": { "version": "4.0.0", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -9089,7 +8900,6 @@ }, "node_modules/npm/node_modules/pacote": { "version": "11.3.5", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -9122,7 +8932,6 @@ }, "node_modules/npm/node_modules/parse-conflict-json": { "version": "1.1.1", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -9133,7 +8942,6 @@ }, "node_modules/npm/node_modules/path-is-absolute": { "version": "1.0.1", - "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -9142,19 +8950,16 @@ }, "node_modules/npm/node_modules/performance-now": { "version": "2.1.0", - "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/proc-log": { "version": "1.0.0", - "extraneous": true, "inBundle": true, "license": "ISC" }, "node_modules/npm/node_modules/promise-all-reject-late": { "version": "1.0.1", - "extraneous": true, "inBundle": true, "license": "ISC", "funding": { @@ -9163,7 +8968,6 @@ }, "node_modules/npm/node_modules/promise-call-limit": { "version": "1.0.1", - "extraneous": true, "inBundle": true, "license": "ISC", "funding": { @@ -9172,13 +8976,11 @@ }, "node_modules/npm/node_modules/promise-inflight": { "version": "1.0.1", - "extraneous": true, "inBundle": true, "license": "ISC" }, "node_modules/npm/node_modules/promise-retry": { "version": "2.0.1", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -9191,7 +8993,6 @@ }, "node_modules/npm/node_modules/promzard": { "version": "0.3.0", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -9200,13 +9001,11 @@ }, "node_modules/npm/node_modules/psl": { "version": "1.8.0", - "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/punycode": { "version": "2.1.1", - "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -9215,7 +9014,6 @@ }, "node_modules/npm/node_modules/qrcode-terminal": { "version": "0.12.0", - "extraneous": true, "inBundle": true, "bin": { "qrcode-terminal": "bin/qrcode-terminal.js" @@ -9223,7 +9021,6 @@ }, "node_modules/npm/node_modules/qs": { "version": "6.5.2", - "extraneous": true, "inBundle": true, "license": "BSD-3-Clause", "engines": { @@ -9232,7 +9029,6 @@ }, "node_modules/npm/node_modules/read": { "version": "1.0.7", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -9244,13 +9040,11 @@ }, "node_modules/npm/node_modules/read-cmd-shim": { "version": "2.0.0", - "extraneous": true, "inBundle": true, "license": "ISC" }, "node_modules/npm/node_modules/read-package-json": { "version": "4.1.1", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -9265,7 +9059,6 @@ }, "node_modules/npm/node_modules/read-package-json-fast": { "version": "2.0.3", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -9278,7 +9071,6 @@ }, "node_modules/npm/node_modules/readable-stream": { "version": "3.6.0", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -9292,7 +9084,6 @@ }, "node_modules/npm/node_modules/readdir-scoped-modules": { "version": "1.1.0", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -9304,7 +9095,6 @@ }, "node_modules/npm/node_modules/request": { "version": "2.88.2", - "extraneous": true, "inBundle": true, "license": "Apache-2.0", "dependencies": { @@ -9335,7 +9125,6 @@ }, "node_modules/npm/node_modules/request/node_modules/form-data": { "version": "2.3.3", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -9349,7 +9138,6 @@ }, "node_modules/npm/node_modules/request/node_modules/tough-cookie": { "version": "2.5.0", - "extraneous": true, "inBundle": true, "license": "BSD-3-Clause", "dependencies": { @@ -9362,7 +9150,6 @@ }, "node_modules/npm/node_modules/retry": { "version": "0.12.0", - "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -9371,7 +9158,6 @@ }, "node_modules/npm/node_modules/rimraf": { "version": "3.0.2", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -9386,7 +9172,6 @@ }, "node_modules/npm/node_modules/safe-buffer": { "version": "5.2.1", - "extraneous": true, "funding": [ { "type": "github", @@ -9406,13 +9191,11 @@ }, "node_modules/npm/node_modules/safer-buffer": { "version": "2.1.2", - "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/semver": { "version": "7.3.5", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -9427,19 +9210,16 @@ }, "node_modules/npm/node_modules/set-blocking": { "version": "2.0.0", - "extraneous": true, "inBundle": true, "license": "ISC" }, "node_modules/npm/node_modules/signal-exit": { "version": "3.0.3", - "extraneous": true, "inBundle": true, "license": "ISC" }, "node_modules/npm/node_modules/smart-buffer": { "version": "4.2.0", - "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -9449,7 +9229,6 @@ }, "node_modules/npm/node_modules/socks": { "version": "2.6.1", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -9463,7 +9242,6 @@ }, "node_modules/npm/node_modules/socks-proxy-agent": { "version": "6.1.0", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -9477,7 +9255,6 @@ }, "node_modules/npm/node_modules/spdx-correct": { "version": "3.1.1", - "extraneous": true, "inBundle": true, "license": "Apache-2.0", "dependencies": { @@ -9487,13 +9264,11 @@ }, "node_modules/npm/node_modules/spdx-exceptions": { "version": "2.3.0", - "extraneous": true, "inBundle": true, "license": "CC-BY-3.0" }, "node_modules/npm/node_modules/spdx-expression-parse": { "version": "3.0.1", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -9503,13 +9278,11 @@ }, "node_modules/npm/node_modules/spdx-license-ids": { "version": "3.0.10", - "extraneous": true, "inBundle": true, "license": "CC0-1.0" }, "node_modules/npm/node_modules/sshpk": { "version": "1.16.1", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -9534,7 +9307,6 @@ }, "node_modules/npm/node_modules/ssri": { "version": "8.0.1", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -9546,7 +9318,6 @@ }, "node_modules/npm/node_modules/string_decoder": { "version": "1.3.0", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -9555,7 +9326,6 @@ }, "node_modules/npm/node_modules/string-width": { "version": "2.1.1", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -9568,7 +9338,6 @@ }, "node_modules/npm/node_modules/string-width/node_modules/ansi-regex": { "version": "3.0.0", - "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -9577,7 +9346,6 @@ }, "node_modules/npm/node_modules/string-width/node_modules/strip-ansi": { "version": "4.0.0", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -9589,13 +9357,11 @@ }, "node_modules/npm/node_modules/stringify-package": { "version": "1.0.1", - "extraneous": true, "inBundle": true, "license": "ISC" }, "node_modules/npm/node_modules/strip-ansi": { "version": "3.0.1", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -9607,7 +9373,6 @@ }, "node_modules/npm/node_modules/supports-color": { "version": "7.2.0", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -9619,7 +9384,6 @@ }, "node_modules/npm/node_modules/tar": { "version": "6.1.11", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -9636,25 +9400,21 @@ }, "node_modules/npm/node_modules/text-table": { "version": "0.2.0", - "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/tiny-relative-date": { "version": "1.3.0", - "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/treeverse": { "version": "1.0.4", - "extraneous": true, "inBundle": true, "license": "ISC" }, "node_modules/npm/node_modules/tunnel-agent": { "version": "0.6.0", - "extraneous": true, "inBundle": true, "license": "Apache-2.0", "dependencies": { @@ -9666,13 +9426,11 @@ }, "node_modules/npm/node_modules/tweetnacl": { "version": "0.14.5", - "extraneous": true, "inBundle": true, "license": "Unlicense" }, "node_modules/npm/node_modules/typedarray-to-buffer": { "version": "3.1.5", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -9681,7 +9439,6 @@ }, "node_modules/npm/node_modules/unique-filename": { "version": "1.1.1", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -9690,7 +9447,6 @@ }, "node_modules/npm/node_modules/unique-slug": { "version": "2.0.2", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -9699,7 +9455,6 @@ }, "node_modules/npm/node_modules/uri-js": { "version": "4.4.1", - "extraneous": true, "inBundle": true, "license": "BSD-2-Clause", "dependencies": { @@ -9708,13 +9463,11 @@ }, "node_modules/npm/node_modules/util-deprecate": { "version": "1.0.2", - "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/uuid": { "version": "3.4.0", - "extraneous": true, "inBundle": true, "license": "MIT", "bin": { @@ -9723,7 +9476,6 @@ }, "node_modules/npm/node_modules/validate-npm-package-license": { "version": "3.0.4", - "extraneous": true, "inBundle": true, "license": "Apache-2.0", "dependencies": { @@ -9733,7 +9485,6 @@ }, "node_modules/npm/node_modules/validate-npm-package-name": { "version": "3.0.0", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -9745,7 +9496,6 @@ "engines": [ "node >=0.6.0" ], - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -9756,13 +9506,11 @@ }, "node_modules/npm/node_modules/walk-up-path": { "version": "1.0.0", - "extraneous": true, "inBundle": true, "license": "ISC" }, "node_modules/npm/node_modules/wcwidth": { "version": "1.0.1", - "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -9771,7 +9519,6 @@ }, "node_modules/npm/node_modules/which": { "version": "2.0.2", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -9786,7 +9533,6 @@ }, "node_modules/npm/node_modules/wide-align": { "version": "1.1.3", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -9795,13 +9541,11 @@ }, "node_modules/npm/node_modules/wrappy": { "version": "1.0.2", - "extraneous": true, "inBundle": true, "license": "ISC" }, "node_modules/npm/node_modules/write-file-atomic": { "version": "3.0.3", - "extraneous": true, "inBundle": true, "license": "ISC", "dependencies": { @@ -9813,7 +9557,6 @@ }, "node_modules/npm/node_modules/yallist": { "version": "4.0.0", - "extraneous": true, "inBundle": true, "license": "ISC" }, @@ -11696,7 +11439,8 @@ "version": "0.2.0", "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", - "dev": true + "dev": true, + "peer": true }, "node_modules/through": { "version": "2.3.8", diff --git a/package.json b/package.json index 8090798c..143e6ccc 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "zksync-cli", "version": "0.0.0-development", - "description": "CLI tool that simplifies the process of developing applications and interacting with the zkSync Era Network", + "description": "CLI tool that simplifies the process of developing applications and interacting with the zkSync Era network", "main": "bin/index.js", "bin": { "zksync-cli": "bin/index.js" @@ -20,7 +20,7 @@ ], "author": "Matter Labs", "license": "MIT", - "prettier": "@matterlabs/prettier-config", + "prettier": "zksync-cli", "lint-staged": { "./src/*": "npm run lint" }, @@ -38,7 +38,7 @@ "@commitlint/cli": "^17.7.1", "@commitlint/config-conventional": "^17.7.0", "@matterlabs/eslint-config-typescript": "^1.1.1", - "@matterlabs/prettier-config": "^1.0.3", + "zksync-cli": "^1.0.3", "@semantic-release/changelog": "^6.0.3", "@semantic-release/commit-analyzer": "^9.0.2", "@semantic-release/github": "^8.1.0",