package.json 597 B

123456789101112131415161718192021222324
  1. {
  2. "name": "json-schema",
  3. "version": "0.4.0",
  4. "author": "Kris Zyp",
  5. "description": "JSON Schema validation and specifications",
  6. "maintainers":[
  7. {"name": "Kris Zyp", "email": "kriszyp@gmail.com"}],
  8. "keywords": [
  9. "json",
  10. "schema"
  11. ],
  12. "files": [
  13. "lib"
  14. ],
  15. "license": "(AFL-2.1 OR BSD-3-Clause)",
  16. "repository": {
  17. "type":"git",
  18. "url":"http://github.com/kriszyp/json-schema"
  19. },
  20. "directories": { "lib": "./lib" },
  21. "main": "./lib/validate.js",
  22. "devDependencies": { "vows": "*" },
  23. "scripts": { "test": "vows --spec test/*.js" }
  24. }