Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

package.json 721B

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