├── .editorconfig ├── .eslintrc.json ├── .github ├── labeler.yml ├── pull_request_template.md └── workflows │ ├── health-check.yml │ ├── pr-labeler.yml │ ├── release.yml │ ├── stale.yml │ └── tests.yml ├── .gitignore ├── .npmignore ├── .npmrc ├── CHANGELOG.md ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── __tests__ ├── .eslintrc.json ├── __snapshots__ │ └── index.spec.js.snap ├── index.spec.js └── matchers │ ├── __snapshots__ │ ├── toBeValidSchema.spec.js.snap │ └── toMatchSchema.spec.js.snap │ ├── toBeValidSchema.spec.js │ └── toMatchSchema.spec.js ├── commitlint.config.js ├── index.js ├── matchers ├── toBeValidSchema.js └── toMatchSchema.js └── package.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/jest-json-schema/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "amex" 3 | } 4 | -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- 1 | one-app-team-review-requested: 2 | - '**/*' 3 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/jest-json-schema/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/health-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/jest-json-schema/HEAD/.github/workflows/health-check.yml -------------------------------------------------------------------------------- /.github/workflows/pr-labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/jest-json-schema/HEAD/.github/workflows/pr-labeler.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/jest-json-schema/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/jest-json-schema/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/jest-json-schema/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/jest-json-schema/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/jest-json-schema/HEAD/.npmignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/jest-json-schema/HEAD/.npmrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/jest-json-schema/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/jest-json-schema/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/jest-json-schema/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/jest-json-schema/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/jest-json-schema/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/jest-json-schema/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "amex/test" 3 | } 4 | -------------------------------------------------------------------------------- /__tests__/__snapshots__/index.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/jest-json-schema/HEAD/__tests__/__snapshots__/index.spec.js.snap -------------------------------------------------------------------------------- /__tests__/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/jest-json-schema/HEAD/__tests__/index.spec.js -------------------------------------------------------------------------------- /__tests__/matchers/__snapshots__/toBeValidSchema.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/jest-json-schema/HEAD/__tests__/matchers/__snapshots__/toBeValidSchema.spec.js.snap -------------------------------------------------------------------------------- /__tests__/matchers/__snapshots__/toMatchSchema.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/jest-json-schema/HEAD/__tests__/matchers/__snapshots__/toMatchSchema.spec.js.snap -------------------------------------------------------------------------------- /__tests__/matchers/toBeValidSchema.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/jest-json-schema/HEAD/__tests__/matchers/toBeValidSchema.spec.js -------------------------------------------------------------------------------- /__tests__/matchers/toMatchSchema.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/jest-json-schema/HEAD/__tests__/matchers/toMatchSchema.spec.js -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/jest-json-schema/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/jest-json-schema/HEAD/index.js -------------------------------------------------------------------------------- /matchers/toBeValidSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/jest-json-schema/HEAD/matchers/toBeValidSchema.js -------------------------------------------------------------------------------- /matchers/toMatchSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/jest-json-schema/HEAD/matchers/toMatchSchema.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/jest-json-schema/HEAD/package.json --------------------------------------------------------------------------------