├── .changeset ├── README.md └── config.json ├── .eslintrc.json ├── .github └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── .lintstagedrc.yml ├── .nvmrc ├── LICENSE ├── README.md ├── babel.config.js ├── codecov.yml ├── husky.config.js ├── lerna.json ├── mocha-setup.js ├── package.json ├── tsconfig.json ├── validator-analyse ├── .eslintignore ├── .eslintrc.json ├── .npmignore ├── CHANGELOG.md ├── README.md ├── babel.config.js ├── checks │ ├── analyse-representation.spec.ts │ ├── analyse-representation.ts │ ├── api-documentation │ │ ├── ensure-single-resource.spec.ts │ │ ├── ensure-single-resource.ts │ │ ├── entrypointCheck.ts │ │ ├── hasSupportedClasses.ts │ │ ├── index.spec.ts │ │ └── index.ts │ ├── response │ │ ├── api-doc-link.spec.ts │ │ ├── api-doc-link.ts │ │ ├── status-code.spec.ts │ │ └── status-code.ts │ ├── url-resolvable.spec.ts │ └── url-resolvable.ts ├── index.ts ├── jest.config.js ├── package.json └── tsconfig.json ├── validator-cli ├── .eslintignore ├── .eslintrc.json ├── CHANGELOG.md ├── README.md ├── index.ts ├── package.json └── tsconfig.json ├── validator-core ├── .babelrc ├── .eslintignore ├── .eslintrc.json ├── .npmignore ├── CHANGELOG.md ├── README.md ├── index.ts ├── jest.config.js ├── namespace.ts ├── package.json ├── run-checks.spec.ts ├── run-checks.ts └── tsconfig.json ├── validator-e2e ├── .eslintignore ├── .npmignore ├── CHANGELOG.md ├── README.md ├── babel.config.json ├── example │ ├── data-cube-curation.hydra │ ├── flick-mis-traemli.hydra │ └── hydracg-movies.hydra ├── index.spec.ts ├── index.ts ├── lib │ ├── checkRunner.spec.ts │ ├── checkRunner.ts │ ├── comparison.spec.ts │ ├── comparison.ts │ ├── docsLoader.ts │ ├── headers.ts │ ├── steps │ │ ├── StepSpyMixin.spec.ts │ │ ├── StepSpyMixin.ts │ │ ├── constraints │ │ │ ├── Constraint.ts │ │ │ ├── PropertyConstraint.spec.ts │ │ │ ├── PropertyConstraint.ts │ │ │ ├── StatusConstraint.spec.ts │ │ │ ├── StatusConstraint.ts │ │ │ ├── conditions │ │ │ │ ├── index.spec.ts │ │ │ │ └── index.ts │ │ │ ├── index.spec.ts │ │ │ └── index.ts │ │ ├── factory.ts │ │ ├── index.ts │ │ ├── representation │ │ │ ├── identifier │ │ │ │ ├── index.spec.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── link │ │ │ │ ├── follow.spec.ts │ │ │ │ ├── follow.ts │ │ │ │ ├── index.spec.ts │ │ │ │ └── index.ts │ │ │ ├── operation │ │ │ │ ├── index.spec.ts │ │ │ │ ├── index.ts │ │ │ │ ├── invocation.spec.ts │ │ │ │ └── invocation.ts │ │ │ └── property │ │ │ │ ├── index.spec.ts │ │ │ │ └── index.ts │ │ ├── response │ │ │ ├── header.spec.ts │ │ │ ├── header.ts │ │ │ ├── status.spec.ts │ │ │ └── status.ts │ │ └── stub.ts │ ├── strictRunVerification.spec.ts │ ├── strictRunVerification.ts │ └── testHelpers.ts ├── package.json ├── tsconfig.json └── types.ts ├── validator-ui ├── .browserslistrc ├── .eslintignore ├── .eslintrc.json ├── .lintstagedrc.yml ├── .npmignore ├── CHANGELOG.md ├── README.md ├── index.html ├── package.json ├── src │ ├── hydra-validator-ui.ts │ ├── validator-shell.ts │ └── views │ │ ├── icon-items.ts │ │ └── index.ts ├── tsconfig.json └── webpack.config.js └── yarn.lock /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/.gitignore -------------------------------------------------------------------------------- /.lintstagedrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/.lintstagedrc.yml -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 13 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/babel.config.js -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/codecov.yml -------------------------------------------------------------------------------- /husky.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/husky.config.js -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/lerna.json -------------------------------------------------------------------------------- /mocha-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/mocha-setup.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/tsconfig.json -------------------------------------------------------------------------------- /validator-analyse/.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | *.d.ts 3 | -------------------------------------------------------------------------------- /validator-analyse/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-analyse/.eslintrc.json -------------------------------------------------------------------------------- /validator-analyse/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-analyse/.npmignore -------------------------------------------------------------------------------- /validator-analyse/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-analyse/CHANGELOG.md -------------------------------------------------------------------------------- /validator-analyse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-analyse/README.md -------------------------------------------------------------------------------- /validator-analyse/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-analyse/babel.config.js -------------------------------------------------------------------------------- /validator-analyse/checks/analyse-representation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-analyse/checks/analyse-representation.spec.ts -------------------------------------------------------------------------------- /validator-analyse/checks/analyse-representation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-analyse/checks/analyse-representation.ts -------------------------------------------------------------------------------- /validator-analyse/checks/api-documentation/ensure-single-resource.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-analyse/checks/api-documentation/ensure-single-resource.spec.ts -------------------------------------------------------------------------------- /validator-analyse/checks/api-documentation/ensure-single-resource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-analyse/checks/api-documentation/ensure-single-resource.ts -------------------------------------------------------------------------------- /validator-analyse/checks/api-documentation/entrypointCheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-analyse/checks/api-documentation/entrypointCheck.ts -------------------------------------------------------------------------------- /validator-analyse/checks/api-documentation/hasSupportedClasses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-analyse/checks/api-documentation/hasSupportedClasses.ts -------------------------------------------------------------------------------- /validator-analyse/checks/api-documentation/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-analyse/checks/api-documentation/index.spec.ts -------------------------------------------------------------------------------- /validator-analyse/checks/api-documentation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-analyse/checks/api-documentation/index.ts -------------------------------------------------------------------------------- /validator-analyse/checks/response/api-doc-link.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-analyse/checks/response/api-doc-link.spec.ts -------------------------------------------------------------------------------- /validator-analyse/checks/response/api-doc-link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-analyse/checks/response/api-doc-link.ts -------------------------------------------------------------------------------- /validator-analyse/checks/response/status-code.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-analyse/checks/response/status-code.spec.ts -------------------------------------------------------------------------------- /validator-analyse/checks/response/status-code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-analyse/checks/response/status-code.ts -------------------------------------------------------------------------------- /validator-analyse/checks/url-resolvable.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-analyse/checks/url-resolvable.spec.ts -------------------------------------------------------------------------------- /validator-analyse/checks/url-resolvable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-analyse/checks/url-resolvable.ts -------------------------------------------------------------------------------- /validator-analyse/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-analyse/index.ts -------------------------------------------------------------------------------- /validator-analyse/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-analyse/jest.config.js -------------------------------------------------------------------------------- /validator-analyse/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-analyse/package.json -------------------------------------------------------------------------------- /validator-analyse/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-analyse/tsconfig.json -------------------------------------------------------------------------------- /validator-cli/.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | *.d.ts 3 | -------------------------------------------------------------------------------- /validator-cli/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-cli/.eslintrc.json -------------------------------------------------------------------------------- /validator-cli/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-cli/CHANGELOG.md -------------------------------------------------------------------------------- /validator-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-cli/README.md -------------------------------------------------------------------------------- /validator-cli/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-cli/index.ts -------------------------------------------------------------------------------- /validator-cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-cli/package.json -------------------------------------------------------------------------------- /validator-cli/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-cli/tsconfig.json -------------------------------------------------------------------------------- /validator-core/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-core/.babelrc -------------------------------------------------------------------------------- /validator-core/.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | *.d.ts 3 | -------------------------------------------------------------------------------- /validator-core/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-core/.eslintrc.json -------------------------------------------------------------------------------- /validator-core/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-core/.npmignore -------------------------------------------------------------------------------- /validator-core/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-core/CHANGELOG.md -------------------------------------------------------------------------------- /validator-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-core/README.md -------------------------------------------------------------------------------- /validator-core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-core/index.ts -------------------------------------------------------------------------------- /validator-core/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-core/jest.config.js -------------------------------------------------------------------------------- /validator-core/namespace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-core/namespace.ts -------------------------------------------------------------------------------- /validator-core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-core/package.json -------------------------------------------------------------------------------- /validator-core/run-checks.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-core/run-checks.spec.ts -------------------------------------------------------------------------------- /validator-core/run-checks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-core/run-checks.ts -------------------------------------------------------------------------------- /validator-core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-core/tsconfig.json -------------------------------------------------------------------------------- /validator-e2e/.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | *.d.ts 3 | -------------------------------------------------------------------------------- /validator-e2e/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/.npmignore -------------------------------------------------------------------------------- /validator-e2e/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/CHANGELOG.md -------------------------------------------------------------------------------- /validator-e2e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/README.md -------------------------------------------------------------------------------- /validator-e2e/babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/babel.config.json -------------------------------------------------------------------------------- /validator-e2e/example/data-cube-curation.hydra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/example/data-cube-curation.hydra -------------------------------------------------------------------------------- /validator-e2e/example/flick-mis-traemli.hydra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/example/flick-mis-traemli.hydra -------------------------------------------------------------------------------- /validator-e2e/example/hydracg-movies.hydra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/example/hydracg-movies.hydra -------------------------------------------------------------------------------- /validator-e2e/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/index.spec.ts -------------------------------------------------------------------------------- /validator-e2e/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/index.ts -------------------------------------------------------------------------------- /validator-e2e/lib/checkRunner.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/lib/checkRunner.spec.ts -------------------------------------------------------------------------------- /validator-e2e/lib/checkRunner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/lib/checkRunner.ts -------------------------------------------------------------------------------- /validator-e2e/lib/comparison.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/lib/comparison.spec.ts -------------------------------------------------------------------------------- /validator-e2e/lib/comparison.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/lib/comparison.ts -------------------------------------------------------------------------------- /validator-e2e/lib/docsLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/lib/docsLoader.ts -------------------------------------------------------------------------------- /validator-e2e/lib/headers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/lib/headers.ts -------------------------------------------------------------------------------- /validator-e2e/lib/steps/StepSpyMixin.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/lib/steps/StepSpyMixin.spec.ts -------------------------------------------------------------------------------- /validator-e2e/lib/steps/StepSpyMixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/lib/steps/StepSpyMixin.ts -------------------------------------------------------------------------------- /validator-e2e/lib/steps/constraints/Constraint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/lib/steps/constraints/Constraint.ts -------------------------------------------------------------------------------- /validator-e2e/lib/steps/constraints/PropertyConstraint.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/lib/steps/constraints/PropertyConstraint.spec.ts -------------------------------------------------------------------------------- /validator-e2e/lib/steps/constraints/PropertyConstraint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/lib/steps/constraints/PropertyConstraint.ts -------------------------------------------------------------------------------- /validator-e2e/lib/steps/constraints/StatusConstraint.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/lib/steps/constraints/StatusConstraint.spec.ts -------------------------------------------------------------------------------- /validator-e2e/lib/steps/constraints/StatusConstraint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/lib/steps/constraints/StatusConstraint.ts -------------------------------------------------------------------------------- /validator-e2e/lib/steps/constraints/conditions/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/lib/steps/constraints/conditions/index.spec.ts -------------------------------------------------------------------------------- /validator-e2e/lib/steps/constraints/conditions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/lib/steps/constraints/conditions/index.ts -------------------------------------------------------------------------------- /validator-e2e/lib/steps/constraints/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/lib/steps/constraints/index.spec.ts -------------------------------------------------------------------------------- /validator-e2e/lib/steps/constraints/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/lib/steps/constraints/index.ts -------------------------------------------------------------------------------- /validator-e2e/lib/steps/factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/lib/steps/factory.ts -------------------------------------------------------------------------------- /validator-e2e/lib/steps/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/lib/steps/index.ts -------------------------------------------------------------------------------- /validator-e2e/lib/steps/representation/identifier/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/lib/steps/representation/identifier/index.spec.ts -------------------------------------------------------------------------------- /validator-e2e/lib/steps/representation/identifier/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/lib/steps/representation/identifier/index.ts -------------------------------------------------------------------------------- /validator-e2e/lib/steps/representation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/lib/steps/representation/index.ts -------------------------------------------------------------------------------- /validator-e2e/lib/steps/representation/link/follow.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/lib/steps/representation/link/follow.spec.ts -------------------------------------------------------------------------------- /validator-e2e/lib/steps/representation/link/follow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/lib/steps/representation/link/follow.ts -------------------------------------------------------------------------------- /validator-e2e/lib/steps/representation/link/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/lib/steps/representation/link/index.spec.ts -------------------------------------------------------------------------------- /validator-e2e/lib/steps/representation/link/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/lib/steps/representation/link/index.ts -------------------------------------------------------------------------------- /validator-e2e/lib/steps/representation/operation/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/lib/steps/representation/operation/index.spec.ts -------------------------------------------------------------------------------- /validator-e2e/lib/steps/representation/operation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/lib/steps/representation/operation/index.ts -------------------------------------------------------------------------------- /validator-e2e/lib/steps/representation/operation/invocation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/lib/steps/representation/operation/invocation.spec.ts -------------------------------------------------------------------------------- /validator-e2e/lib/steps/representation/operation/invocation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/lib/steps/representation/operation/invocation.ts -------------------------------------------------------------------------------- /validator-e2e/lib/steps/representation/property/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/lib/steps/representation/property/index.spec.ts -------------------------------------------------------------------------------- /validator-e2e/lib/steps/representation/property/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/lib/steps/representation/property/index.ts -------------------------------------------------------------------------------- /validator-e2e/lib/steps/response/header.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/lib/steps/response/header.spec.ts -------------------------------------------------------------------------------- /validator-e2e/lib/steps/response/header.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/lib/steps/response/header.ts -------------------------------------------------------------------------------- /validator-e2e/lib/steps/response/status.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/lib/steps/response/status.spec.ts -------------------------------------------------------------------------------- /validator-e2e/lib/steps/response/status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/lib/steps/response/status.ts -------------------------------------------------------------------------------- /validator-e2e/lib/steps/stub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/lib/steps/stub.ts -------------------------------------------------------------------------------- /validator-e2e/lib/strictRunVerification.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/lib/strictRunVerification.spec.ts -------------------------------------------------------------------------------- /validator-e2e/lib/strictRunVerification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/lib/strictRunVerification.ts -------------------------------------------------------------------------------- /validator-e2e/lib/testHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/lib/testHelpers.ts -------------------------------------------------------------------------------- /validator-e2e/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/package.json -------------------------------------------------------------------------------- /validator-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/tsconfig.json -------------------------------------------------------------------------------- /validator-e2e/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-e2e/types.ts -------------------------------------------------------------------------------- /validator-ui/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-ui/.browserslistrc -------------------------------------------------------------------------------- /validator-ui/.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | *.d.ts 3 | -------------------------------------------------------------------------------- /validator-ui/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-ui/.eslintrc.json -------------------------------------------------------------------------------- /validator-ui/.lintstagedrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-ui/.lintstagedrc.yml -------------------------------------------------------------------------------- /validator-ui/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-ui/.npmignore -------------------------------------------------------------------------------- /validator-ui/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-ui/CHANGELOG.md -------------------------------------------------------------------------------- /validator-ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-ui/README.md -------------------------------------------------------------------------------- /validator-ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-ui/index.html -------------------------------------------------------------------------------- /validator-ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-ui/package.json -------------------------------------------------------------------------------- /validator-ui/src/hydra-validator-ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-ui/src/hydra-validator-ui.ts -------------------------------------------------------------------------------- /validator-ui/src/validator-shell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-ui/src/validator-shell.ts -------------------------------------------------------------------------------- /validator-ui/src/views/icon-items.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-ui/src/views/icon-items.ts -------------------------------------------------------------------------------- /validator-ui/src/views/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-ui/src/views/index.ts -------------------------------------------------------------------------------- /validator-ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-ui/tsconfig.json -------------------------------------------------------------------------------- /validator-ui/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/validator-ui/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermedia-app/hydra-validator/HEAD/yarn.lock --------------------------------------------------------------------------------