├── .coveralls.yml ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .travis.yml ├── README.md ├── bin └── jsonapi-validator.js ├── lib ├── schema.json └── validator.js ├── package.json └── test └── index.js /.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: travis-ci 2 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | coverage 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotttf/jsonapi-validator/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage/ 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotttf/jsonapi-validator/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotttf/jsonapi-validator/HEAD/README.md -------------------------------------------------------------------------------- /bin/jsonapi-validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotttf/jsonapi-validator/HEAD/bin/jsonapi-validator.js -------------------------------------------------------------------------------- /lib/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotttf/jsonapi-validator/HEAD/lib/schema.json -------------------------------------------------------------------------------- /lib/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotttf/jsonapi-validator/HEAD/lib/validator.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotttf/jsonapi-validator/HEAD/package.json -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotttf/jsonapi-validator/HEAD/test/index.js --------------------------------------------------------------------------------