├── .circleci └── config.yml ├── .codeclimate.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── jest.config.js ├── package.json ├── src ├── __tests__ │ ├── __snapshots__ │ │ └── resolver.spec.ts.snap │ ├── benchmark.spec.ts │ ├── fixtures │ │ ├── circular.ts │ │ ├── http-mocks.ts │ │ ├── resolved.ts │ │ └── schemas │ │ │ ├── anyofref.json │ │ │ ├── api.links.json │ │ │ ├── api.links.test.json │ │ │ ├── api.links.test.simple.json │ │ │ ├── api.linksref.json │ │ │ ├── api.props.json │ │ │ ├── apideeplink.json │ │ │ ├── apideeplink.simple.json │ │ │ ├── apinestedrefs.json │ │ │ ├── app.json │ │ │ ├── arrayfileref.json │ │ │ ├── bar.json │ │ │ ├── basic.json │ │ │ ├── basicfileref.1.json │ │ │ ├── basicfileref.json │ │ │ ├── circular-bar.json │ │ │ ├── circular-file-reference.json │ │ │ ├── circular-file-root.json │ │ │ ├── circular-from-bar.json │ │ │ ├── circular-root-reference.json │ │ │ ├── circular-to-bar.json │ │ │ ├── circularlocalref.json │ │ │ ├── circularself.json │ │ │ ├── common-definitions.json │ │ │ ├── common-definitions.simple.json │ │ │ ├── cyclicaljs.json │ │ │ ├── deep-all-of-schemas.json │ │ │ ├── deep-all-of.json │ │ │ ├── domain.json │ │ │ ├── dotprop.json │ │ │ ├── folder1 │ │ │ ├── another.json │ │ │ ├── more │ │ │ │ └── more.json │ │ │ └── withinf1.json │ │ │ ├── foo.json │ │ │ ├── fooaction-response.json │ │ │ ├── foomodel.json │ │ │ ├── foomodel.simple.json │ │ │ ├── id.json │ │ │ ├── id.txt │ │ │ ├── issue12.json │ │ │ ├── localandfilerefs.json │ │ │ ├── localrefs.json │ │ │ ├── login-request.json │ │ │ ├── missing.json │ │ │ ├── nestedfolder.json │ │ │ ├── null.json │ │ │ ├── null4.json │ │ │ ├── person.json │ │ │ ├── petstore-definitions.expected.json │ │ │ ├── petstore-definitions.json │ │ │ ├── ref-parent-same-name.json │ │ │ ├── referencing-circular-remote-pointers.json │ │ │ ├── todos-circular-definitions.json │ │ │ ├── todos-circular-definitions.simple.json │ │ │ ├── toplevel.json │ │ │ ├── toplevelref.json │ │ │ ├── undefinedref.json │ │ │ ├── user.json │ │ │ ├── webrefs.json │ │ │ ├── webrefswithhash.expected.json │ │ │ ├── webrefswithhash.json │ │ │ ├── webrefswithpointer.json │ │ │ ├── widget-update.json │ │ │ └── widget-update.simple.json │ ├── resolver.spec.ts │ └── uri.spec.ts ├── cache.ts ├── crawler.ts ├── index.ts ├── resolver.ts ├── runner.ts ├── types.ts ├── uri.ts └── utils.ts ├── tsconfig.build.json ├── tsconfig.json ├── tslint.json └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: '@stoplight/scripts', 3 | }; 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/package.json -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/resolver.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/__snapshots__/resolver.spec.ts.snap -------------------------------------------------------------------------------- /src/__tests__/benchmark.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/benchmark.spec.ts -------------------------------------------------------------------------------- /src/__tests__/fixtures/circular.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/circular.ts -------------------------------------------------------------------------------- /src/__tests__/fixtures/http-mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/http-mocks.ts -------------------------------------------------------------------------------- /src/__tests__/fixtures/resolved.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/resolved.ts -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/anyofref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/anyofref.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/api.links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/api.links.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/api.links.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/api.links.test.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/api.links.test.simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/api.links.test.simple.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/api.linksref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/api.linksref.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/api.props.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/api.props.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/apideeplink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/apideeplink.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/apideeplink.simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/apideeplink.simple.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/apinestedrefs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/apinestedrefs.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/app.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/arrayfileref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/arrayfileref.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/bar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/bar.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/basic.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/basicfileref.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/basicfileref.1.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/basicfileref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/basicfileref.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/circular-bar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/circular-bar.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/circular-file-reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/circular-file-reference.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/circular-file-root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/circular-file-root.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/circular-from-bar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/circular-from-bar.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/circular-root-reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/circular-root-reference.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/circular-to-bar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/circular-to-bar.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/circularlocalref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/circularlocalref.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/circularself.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/circularself.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/common-definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/common-definitions.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/common-definitions.simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/common-definitions.simple.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/cyclicaljs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/cyclicaljs.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/deep-all-of-schemas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/deep-all-of-schemas.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/deep-all-of.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/deep-all-of.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/domain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/domain.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/dotprop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/dotprop.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/folder1/another.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/folder1/another.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/folder1/more/more.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/folder1/more/more.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/folder1/withinf1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/folder1/withinf1.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/foo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/foo.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/fooaction-response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/fooaction-response.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/foomodel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/foomodel.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/foomodel.simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/foomodel.simple.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/id.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/id.txt: -------------------------------------------------------------------------------- 1 | 8675309 2 | -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/issue12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/issue12.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/localandfilerefs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/localandfilerefs.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/localrefs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/localrefs.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/login-request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/login-request.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/missing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/missing.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/nestedfolder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/nestedfolder.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/null.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/null.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/null4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/null4.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/person.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/person.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/petstore-definitions.expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/petstore-definitions.expected.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/petstore-definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/petstore-definitions.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/ref-parent-same-name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/ref-parent-same-name.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/referencing-circular-remote-pointers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/referencing-circular-remote-pointers.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/todos-circular-definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/todos-circular-definitions.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/todos-circular-definitions.simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/todos-circular-definitions.simple.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/toplevel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/toplevel.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/toplevelref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/toplevelref.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/undefinedref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/undefinedref.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/user.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/webrefs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/webrefs.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/webrefswithhash.expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/webrefswithhash.expected.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/webrefswithhash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/webrefswithhash.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/webrefswithpointer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/webrefswithpointer.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/widget-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/widget-update.json -------------------------------------------------------------------------------- /src/__tests__/fixtures/schemas/widget-update.simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/fixtures/schemas/widget-update.simple.json -------------------------------------------------------------------------------- /src/__tests__/resolver.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/resolver.spec.ts -------------------------------------------------------------------------------- /src/__tests__/uri.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/__tests__/uri.spec.ts -------------------------------------------------------------------------------- /src/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/cache.ts -------------------------------------------------------------------------------- /src/crawler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/crawler.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/resolver.ts -------------------------------------------------------------------------------- /src/runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/runner.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/uri.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/uri.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoplightio/json-ref-resolver/HEAD/yarn.lock --------------------------------------------------------------------------------