├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── benchmarks ├── benchmark.coffee ├── draft3 │ ├── index.coffee │ ├── medium │ │ ├── index.coffee │ │ ├── schema.coffee │ │ └── valid_doc.coffee │ ├── trivial │ │ ├── index.coffee │ │ ├── schema.coffee │ │ └── valid_doc.coffee │ └── validators.coffee ├── draft4 │ ├── complex │ │ ├── index.coffee │ │ ├── schema.coffee │ │ ├── test.coffee │ │ └── valid_doc.coffee │ ├── index.coffee │ ├── medium │ │ ├── index.coffee │ │ ├── schema.coffee │ │ └── valid_doc.coffee │ ├── trivial │ │ ├── index.coffee │ │ ├── schema.coffee │ │ └── valid_doc.coffee │ └── validators.coffee ├── index.coffee ├── results │ └── all.txt ├── runner.coffee └── statistics.js ├── doc ├── README.pfm.md ├── benchmarks.md ├── benchmarks.pfm.md ├── tests.md └── tests.pfm.md ├── examples └── draft4 │ ├── advanced.coffee │ └── basic.coffee ├── package.json ├── schemas ├── draft-03 │ └── schema.json └── draft-04 │ └── schema.json ├── src ├── common │ ├── arrays.coffee │ ├── comparison.coffee │ ├── numeric.coffee │ ├── objects.coffee │ ├── strings.coffee │ └── type.coffee ├── draft3.coffee ├── draft3 │ ├── logical.coffee │ ├── numeric.coffee │ ├── objects.coffee │ └── strings.coffee ├── draft4.coffee ├── draft4 │ ├── logical.coffee │ ├── numeric.coffee │ ├── objects.coffee │ ├── strings.coffee │ └── type.coffee ├── index.coffee ├── uri.coffee ├── util.coffee └── validator.coffee ├── tasks ├── build │ ├── benchmarks.coffee │ ├── browser.coffee │ ├── docs.coffee │ ├── index.coffee │ └── javascript.coffee ├── helpers.coffee ├── update │ ├── index.coffee │ └── submodules.coffee └── watch │ ├── docs.coffee │ └── src.coffee └── test ├── .gitignore ├── draft3 ├── builtins.coffee ├── index.coffee ├── official.coffee └── unit │ ├── errors.coffee │ ├── index.coffee │ ├── references.coffee │ └── uri_test.coffee ├── draft4 ├── adhoc.coffee ├── builtins.coffee ├── index.coffee ├── invalid.coffee ├── invalid │ ├── additionalItems.coffee │ ├── additionalProperties.coffee │ ├── allOf.coffee │ ├── anyOf.coffee │ ├── dependencies.coffee │ ├── items.coffee │ ├── not.coffee │ ├── numbers.coffee │ ├── oneOf.coffee │ ├── patternProperties.coffee │ ├── properties.coffee │ ├── required.coffee │ ├── strings.coffee │ └── type.coffee ├── official.coffee ├── unit │ ├── errors.coffee │ ├── index.coffee │ ├── logical.coffee │ ├── references.coffee │ └── uri_test.coffee ├── valid.coffee └── valid │ ├── basic.coffee │ ├── definitions.coffee │ └── properties.coffee └── index.coffee /.gitignore: -------------------------------------------------------------------------------- 1 | lib 2 | node_modules 3 | mine 4 | .ruby-gemset 5 | npm-debug.log 6 | *.tgz 7 | 8 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/benchmark.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/benchmarks/benchmark.coffee -------------------------------------------------------------------------------- /benchmarks/draft3/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/benchmarks/draft3/index.coffee -------------------------------------------------------------------------------- /benchmarks/draft3/medium/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/benchmarks/draft3/medium/index.coffee -------------------------------------------------------------------------------- /benchmarks/draft3/medium/schema.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/benchmarks/draft3/medium/schema.coffee -------------------------------------------------------------------------------- /benchmarks/draft3/medium/valid_doc.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/benchmarks/draft3/medium/valid_doc.coffee -------------------------------------------------------------------------------- /benchmarks/draft3/trivial/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/benchmarks/draft3/trivial/index.coffee -------------------------------------------------------------------------------- /benchmarks/draft3/trivial/schema.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/benchmarks/draft3/trivial/schema.coffee -------------------------------------------------------------------------------- /benchmarks/draft3/trivial/valid_doc.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/benchmarks/draft3/trivial/valid_doc.coffee -------------------------------------------------------------------------------- /benchmarks/draft3/validators.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/benchmarks/draft3/validators.coffee -------------------------------------------------------------------------------- /benchmarks/draft4/complex/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/benchmarks/draft4/complex/index.coffee -------------------------------------------------------------------------------- /benchmarks/draft4/complex/schema.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/benchmarks/draft4/complex/schema.coffee -------------------------------------------------------------------------------- /benchmarks/draft4/complex/test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/benchmarks/draft4/complex/test.coffee -------------------------------------------------------------------------------- /benchmarks/draft4/complex/valid_doc.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/benchmarks/draft4/complex/valid_doc.coffee -------------------------------------------------------------------------------- /benchmarks/draft4/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/benchmarks/draft4/index.coffee -------------------------------------------------------------------------------- /benchmarks/draft4/medium/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/benchmarks/draft4/medium/index.coffee -------------------------------------------------------------------------------- /benchmarks/draft4/medium/schema.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/benchmarks/draft4/medium/schema.coffee -------------------------------------------------------------------------------- /benchmarks/draft4/medium/valid_doc.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/benchmarks/draft4/medium/valid_doc.coffee -------------------------------------------------------------------------------- /benchmarks/draft4/trivial/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/benchmarks/draft4/trivial/index.coffee -------------------------------------------------------------------------------- /benchmarks/draft4/trivial/schema.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/benchmarks/draft4/trivial/schema.coffee -------------------------------------------------------------------------------- /benchmarks/draft4/trivial/valid_doc.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/benchmarks/draft4/trivial/valid_doc.coffee -------------------------------------------------------------------------------- /benchmarks/draft4/validators.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/benchmarks/draft4/validators.coffee -------------------------------------------------------------------------------- /benchmarks/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/benchmarks/index.coffee -------------------------------------------------------------------------------- /benchmarks/results/all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/benchmarks/results/all.txt -------------------------------------------------------------------------------- /benchmarks/runner.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/benchmarks/runner.coffee -------------------------------------------------------------------------------- /benchmarks/statistics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/benchmarks/statistics.js -------------------------------------------------------------------------------- /doc/README.pfm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/doc/README.pfm.md -------------------------------------------------------------------------------- /doc/benchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/doc/benchmarks.md -------------------------------------------------------------------------------- /doc/benchmarks.pfm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/doc/benchmarks.pfm.md -------------------------------------------------------------------------------- /doc/tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/doc/tests.md -------------------------------------------------------------------------------- /doc/tests.pfm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/doc/tests.pfm.md -------------------------------------------------------------------------------- /examples/draft4/advanced.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/examples/draft4/advanced.coffee -------------------------------------------------------------------------------- /examples/draft4/basic.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/examples/draft4/basic.coffee -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/package.json -------------------------------------------------------------------------------- /schemas/draft-03/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/schemas/draft-03/schema.json -------------------------------------------------------------------------------- /schemas/draft-04/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/schemas/draft-04/schema.json -------------------------------------------------------------------------------- /src/common/arrays.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/src/common/arrays.coffee -------------------------------------------------------------------------------- /src/common/comparison.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/src/common/comparison.coffee -------------------------------------------------------------------------------- /src/common/numeric.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/src/common/numeric.coffee -------------------------------------------------------------------------------- /src/common/objects.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/src/common/objects.coffee -------------------------------------------------------------------------------- /src/common/strings.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/src/common/strings.coffee -------------------------------------------------------------------------------- /src/common/type.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/src/common/type.coffee -------------------------------------------------------------------------------- /src/draft3.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/src/draft3.coffee -------------------------------------------------------------------------------- /src/draft3/logical.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/src/draft3/logical.coffee -------------------------------------------------------------------------------- /src/draft3/numeric.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/src/draft3/numeric.coffee -------------------------------------------------------------------------------- /src/draft3/objects.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/src/draft3/objects.coffee -------------------------------------------------------------------------------- /src/draft3/strings.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/src/draft3/strings.coffee -------------------------------------------------------------------------------- /src/draft4.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/src/draft4.coffee -------------------------------------------------------------------------------- /src/draft4/logical.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/src/draft4/logical.coffee -------------------------------------------------------------------------------- /src/draft4/numeric.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/src/draft4/numeric.coffee -------------------------------------------------------------------------------- /src/draft4/objects.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/src/draft4/objects.coffee -------------------------------------------------------------------------------- /src/draft4/strings.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/src/draft4/strings.coffee -------------------------------------------------------------------------------- /src/draft4/type.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/src/draft4/type.coffee -------------------------------------------------------------------------------- /src/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/src/index.coffee -------------------------------------------------------------------------------- /src/uri.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/src/uri.coffee -------------------------------------------------------------------------------- /src/util.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/src/util.coffee -------------------------------------------------------------------------------- /src/validator.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/src/validator.coffee -------------------------------------------------------------------------------- /tasks/build/benchmarks.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/tasks/build/benchmarks.coffee -------------------------------------------------------------------------------- /tasks/build/browser.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/tasks/build/browser.coffee -------------------------------------------------------------------------------- /tasks/build/docs.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/tasks/build/docs.coffee -------------------------------------------------------------------------------- /tasks/build/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/tasks/build/index.coffee -------------------------------------------------------------------------------- /tasks/build/javascript.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/tasks/build/javascript.coffee -------------------------------------------------------------------------------- /tasks/helpers.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/tasks/helpers.coffee -------------------------------------------------------------------------------- /tasks/update/index.coffee: -------------------------------------------------------------------------------- 1 | require "./submodules" 2 | 3 | 4 | -------------------------------------------------------------------------------- /tasks/update/submodules.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/tasks/update/submodules.coffee -------------------------------------------------------------------------------- /tasks/watch/docs.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/tasks/watch/docs.coffee -------------------------------------------------------------------------------- /tasks/watch/src.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/tasks/watch/src.coffee -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/test/.gitignore -------------------------------------------------------------------------------- /test/draft3/builtins.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/test/draft3/builtins.coffee -------------------------------------------------------------------------------- /test/draft3/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/test/draft3/index.coffee -------------------------------------------------------------------------------- /test/draft3/official.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/test/draft3/official.coffee -------------------------------------------------------------------------------- /test/draft3/unit/errors.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/test/draft3/unit/errors.coffee -------------------------------------------------------------------------------- /test/draft3/unit/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/test/draft3/unit/index.coffee -------------------------------------------------------------------------------- /test/draft3/unit/references.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/test/draft3/unit/references.coffee -------------------------------------------------------------------------------- /test/draft3/unit/uri_test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/test/draft3/unit/uri_test.coffee -------------------------------------------------------------------------------- /test/draft4/adhoc.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/test/draft4/adhoc.coffee -------------------------------------------------------------------------------- /test/draft4/builtins.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/test/draft4/builtins.coffee -------------------------------------------------------------------------------- /test/draft4/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/test/draft4/index.coffee -------------------------------------------------------------------------------- /test/draft4/invalid.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/test/draft4/invalid.coffee -------------------------------------------------------------------------------- /test/draft4/invalid/additionalItems.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/test/draft4/invalid/additionalItems.coffee -------------------------------------------------------------------------------- /test/draft4/invalid/additionalProperties.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/test/draft4/invalid/additionalProperties.coffee -------------------------------------------------------------------------------- /test/draft4/invalid/allOf.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/test/draft4/invalid/allOf.coffee -------------------------------------------------------------------------------- /test/draft4/invalid/anyOf.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/test/draft4/invalid/anyOf.coffee -------------------------------------------------------------------------------- /test/draft4/invalid/dependencies.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/test/draft4/invalid/dependencies.coffee -------------------------------------------------------------------------------- /test/draft4/invalid/items.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/test/draft4/invalid/items.coffee -------------------------------------------------------------------------------- /test/draft4/invalid/not.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/test/draft4/invalid/not.coffee -------------------------------------------------------------------------------- /test/draft4/invalid/numbers.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/test/draft4/invalid/numbers.coffee -------------------------------------------------------------------------------- /test/draft4/invalid/oneOf.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/test/draft4/invalid/oneOf.coffee -------------------------------------------------------------------------------- /test/draft4/invalid/patternProperties.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/test/draft4/invalid/patternProperties.coffee -------------------------------------------------------------------------------- /test/draft4/invalid/properties.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/test/draft4/invalid/properties.coffee -------------------------------------------------------------------------------- /test/draft4/invalid/required.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/test/draft4/invalid/required.coffee -------------------------------------------------------------------------------- /test/draft4/invalid/strings.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/test/draft4/invalid/strings.coffee -------------------------------------------------------------------------------- /test/draft4/invalid/type.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/test/draft4/invalid/type.coffee -------------------------------------------------------------------------------- /test/draft4/official.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/test/draft4/official.coffee -------------------------------------------------------------------------------- /test/draft4/unit/errors.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/test/draft4/unit/errors.coffee -------------------------------------------------------------------------------- /test/draft4/unit/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/test/draft4/unit/index.coffee -------------------------------------------------------------------------------- /test/draft4/unit/logical.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/test/draft4/unit/logical.coffee -------------------------------------------------------------------------------- /test/draft4/unit/references.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/test/draft4/unit/references.coffee -------------------------------------------------------------------------------- /test/draft4/unit/uri_test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/test/draft4/unit/uri_test.coffee -------------------------------------------------------------------------------- /test/draft4/valid.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/test/draft4/valid.coffee -------------------------------------------------------------------------------- /test/draft4/valid/basic.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/test/draft4/valid/basic.coffee -------------------------------------------------------------------------------- /test/draft4/valid/definitions.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/test/draft4/valid/definitions.coffee -------------------------------------------------------------------------------- /test/draft4/valid/properties.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/test/draft4/valid/properties.coffee -------------------------------------------------------------------------------- /test/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/jsck/HEAD/test/index.coffee --------------------------------------------------------------------------------