├── .editorconfig ├── .eslintrc ├── .gitattributes ├── .github └── workflows │ ├── codeql-analysis.yaml │ └── npm-test.yaml ├── .gitignore ├── .hound.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── cli.js ├── index.js ├── jest.config.js ├── license ├── package.json ├── readme.md └── tests └── index.test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyadhalnur/quote-cli/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyadhalnur/quote-cli/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyadhalnur/quote-cli/HEAD/.github/workflows/codeql-analysis.yaml -------------------------------------------------------------------------------- /.github/workflows/npm-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyadhalnur/quote-cli/HEAD/.github/workflows/npm-test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.hound.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyadhalnur/quote-cli/HEAD/.hound.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyadhalnur/quote-cli/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyadhalnur/quote-cli/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyadhalnur/quote-cli/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyadhalnur/quote-cli/HEAD/cli.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyadhalnur/quote-cli/HEAD/index.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyadhalnur/quote-cli/HEAD/jest.config.js -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyadhalnur/quote-cli/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyadhalnur/quote-cli/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyadhalnur/quote-cli/HEAD/readme.md -------------------------------------------------------------------------------- /tests/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyadhalnur/quote-cli/HEAD/tests/index.test.js --------------------------------------------------------------------------------