├── .eslintrc.cjs ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug.yaml │ ├── config.yml │ ├── doc_issue.yaml │ ├── feature_request.yml │ └── other.yaml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── greetings.yml │ ├── linter.yml │ ├── prettier.yml │ ├── publish.yml │ └── releases.yml ├── .gitignore ├── .gitpod.yml ├── .prettierignore ├── .prettierrc ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── package.json └── src ├── addevent ├── addEvent.js └── helper │ └── createEventFile.js ├── createjson ├── createJson.js └── helper │ └── createUser.js ├── givetestimonial ├── giveTestimonial.js └── helper │ ├── checkTestimonial.js │ └── createTestimonialFile.js ├── index.js ├── reportbug └── reportBug.js ├── searchprofile └── searchProfile.js ├── shared ├── assets │ └── icons.js ├── checkUser.js └── questions │ ├── basics.js │ ├── links.js │ ├── milestones.js │ ├── socials.js │ ├── tags.js │ └── testimonials.js └── updatejson ├── helper └── checkUpdate.js └── updateJson.js /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pradumnasaraf/BioDrop-CLI/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [Pradumnasaraf] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pradumnasaraf/BioDrop-CLI/HEAD/.github/ISSUE_TEMPLATE/bug.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/doc_issue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pradumnasaraf/BioDrop-CLI/HEAD/.github/ISSUE_TEMPLATE/doc_issue.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pradumnasaraf/BioDrop-CLI/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pradumnasaraf/BioDrop-CLI/HEAD/.github/ISSUE_TEMPLATE/other.yaml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pradumnasaraf/BioDrop-CLI/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pradumnasaraf/BioDrop-CLI/HEAD/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /.github/workflows/linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pradumnasaraf/BioDrop-CLI/HEAD/.github/workflows/linter.yml -------------------------------------------------------------------------------- /.github/workflows/prettier.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pradumnasaraf/BioDrop-CLI/HEAD/.github/workflows/prettier.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pradumnasaraf/BioDrop-CLI/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/releases.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pradumnasaraf/BioDrop-CLI/HEAD/.github/workflows/releases.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pradumnasaraf/BioDrop-CLI/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pradumnasaraf/BioDrop-CLI/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pradumnasaraf/BioDrop-CLI/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pradumnasaraf/BioDrop-CLI/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pradumnasaraf/BioDrop-CLI/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pradumnasaraf/BioDrop-CLI/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pradumnasaraf/BioDrop-CLI/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pradumnasaraf/BioDrop-CLI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pradumnasaraf/BioDrop-CLI/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pradumnasaraf/BioDrop-CLI/HEAD/SECURITY.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pradumnasaraf/BioDrop-CLI/HEAD/package.json -------------------------------------------------------------------------------- /src/addevent/addEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pradumnasaraf/BioDrop-CLI/HEAD/src/addevent/addEvent.js -------------------------------------------------------------------------------- /src/addevent/helper/createEventFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pradumnasaraf/BioDrop-CLI/HEAD/src/addevent/helper/createEventFile.js -------------------------------------------------------------------------------- /src/createjson/createJson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pradumnasaraf/BioDrop-CLI/HEAD/src/createjson/createJson.js -------------------------------------------------------------------------------- /src/createjson/helper/createUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pradumnasaraf/BioDrop-CLI/HEAD/src/createjson/helper/createUser.js -------------------------------------------------------------------------------- /src/givetestimonial/giveTestimonial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pradumnasaraf/BioDrop-CLI/HEAD/src/givetestimonial/giveTestimonial.js -------------------------------------------------------------------------------- /src/givetestimonial/helper/checkTestimonial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pradumnasaraf/BioDrop-CLI/HEAD/src/givetestimonial/helper/checkTestimonial.js -------------------------------------------------------------------------------- /src/givetestimonial/helper/createTestimonialFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pradumnasaraf/BioDrop-CLI/HEAD/src/givetestimonial/helper/createTestimonialFile.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pradumnasaraf/BioDrop-CLI/HEAD/src/index.js -------------------------------------------------------------------------------- /src/reportbug/reportBug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pradumnasaraf/BioDrop-CLI/HEAD/src/reportbug/reportBug.js -------------------------------------------------------------------------------- /src/searchprofile/searchProfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pradumnasaraf/BioDrop-CLI/HEAD/src/searchprofile/searchProfile.js -------------------------------------------------------------------------------- /src/shared/assets/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pradumnasaraf/BioDrop-CLI/HEAD/src/shared/assets/icons.js -------------------------------------------------------------------------------- /src/shared/checkUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pradumnasaraf/BioDrop-CLI/HEAD/src/shared/checkUser.js -------------------------------------------------------------------------------- /src/shared/questions/basics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pradumnasaraf/BioDrop-CLI/HEAD/src/shared/questions/basics.js -------------------------------------------------------------------------------- /src/shared/questions/links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pradumnasaraf/BioDrop-CLI/HEAD/src/shared/questions/links.js -------------------------------------------------------------------------------- /src/shared/questions/milestones.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pradumnasaraf/BioDrop-CLI/HEAD/src/shared/questions/milestones.js -------------------------------------------------------------------------------- /src/shared/questions/socials.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pradumnasaraf/BioDrop-CLI/HEAD/src/shared/questions/socials.js -------------------------------------------------------------------------------- /src/shared/questions/tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pradumnasaraf/BioDrop-CLI/HEAD/src/shared/questions/tags.js -------------------------------------------------------------------------------- /src/shared/questions/testimonials.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pradumnasaraf/BioDrop-CLI/HEAD/src/shared/questions/testimonials.js -------------------------------------------------------------------------------- /src/updatejson/helper/checkUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pradumnasaraf/BioDrop-CLI/HEAD/src/updatejson/helper/checkUpdate.js -------------------------------------------------------------------------------- /src/updatejson/updateJson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pradumnasaraf/BioDrop-CLI/HEAD/src/updatejson/updateJson.js --------------------------------------------------------------------------------