├── .babelrc ├── .eslintignore ├── .eslintrc ├── .github └── workflows │ └── workflows.yaml ├── .gitignore ├── .huskyrc ├── .npmignore ├── .nvmrc ├── LICENSE ├── README.md ├── commitlint.config.js ├── jest.config.js ├── package.json └── src ├── StatusTableCreator.js ├── StatusTableCreator.test.js ├── cli.js ├── identifyStatuses.js ├── identifyStatuses.test.js └── index.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/http-status-identifier-cli/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | coverage/* 2 | build 3 | node_modules 4 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/http-status-identifier-cli/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/http-status-identifier-cli/HEAD/.github/workflows/workflows.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/http-status-identifier-cli/HEAD/.gitignore -------------------------------------------------------------------------------- /.huskyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/http-status-identifier-cli/HEAD/.huskyrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/http-status-identifier-cli/HEAD/.npmignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 12.14.1 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/http-status-identifier-cli/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/http-status-identifier-cli/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { extends: ['@commitlint/config-angular'] }; 2 | -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/http-status-identifier-cli/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/http-status-identifier-cli/HEAD/package.json -------------------------------------------------------------------------------- /src/StatusTableCreator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/http-status-identifier-cli/HEAD/src/StatusTableCreator.js -------------------------------------------------------------------------------- /src/StatusTableCreator.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/http-status-identifier-cli/HEAD/src/StatusTableCreator.test.js -------------------------------------------------------------------------------- /src/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/http-status-identifier-cli/HEAD/src/cli.js -------------------------------------------------------------------------------- /src/identifyStatuses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/http-status-identifier-cli/HEAD/src/identifyStatuses.js -------------------------------------------------------------------------------- /src/identifyStatuses.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/http-status-identifier-cli/HEAD/src/identifyStatuses.test.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/http-status-identifier-cli/HEAD/src/index.js --------------------------------------------------------------------------------