package.json 682 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "author": "Tom de Grunt <tom@degrunt.nl>",
  3. "name": "jsonschema",
  4. "version": "1.1.0",
  5. "license": "MIT",
  6. "dependencies": {
  7. },
  8. "contributors": [
  9. { "name" : "Austin Wright" }
  10. ],
  11. "main": "./lib",
  12. "devDependencies": {
  13. "mocha": "~1.8.2",
  14. "chai": "~1.5.0"
  15. },
  16. "optionalDependencies": {},
  17. "engines": {
  18. "node": "*"
  19. },
  20. "keywords": [
  21. "json",
  22. "schema",
  23. "jsonschema",
  24. "validator",
  25. "validation"
  26. ],
  27. "repository": {
  28. "type": "git",
  29. "url": "git://github.com/tdegrunt/jsonschema.git"
  30. },
  31. "description": "A fast and easy to use JSON Schema validator",
  32. "scripts": {
  33. "test": "./node_modules/.bin/mocha -R spec"
  34. }
  35. }