package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "ajv-keywords",
  3. "version": "1.5.1",
  4. "description": "Custom JSON-Schema keywords for ajv validator",
  5. "main": "index.js",
  6. "scripts": {
  7. "build": "node node_modules/ajv/scripts/compile-dots.js node_modules/ajv/lib keywords",
  8. "prepublish": "npm run build",
  9. "test": "npm run build && npm run eslint && npm run test-cov",
  10. "eslint": "eslint index.js keywords/*.js",
  11. "test-spec": "mocha spec/*.spec.js -R spec",
  12. "test-cov": "istanbul cover -x 'spec/**' node_modules/mocha/bin/_mocha -- spec/*.spec.js -R spec"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "git+https://github.com/epoberezkin/ajv-keywords.git"
  17. },
  18. "keywords": [
  19. "JSON-Schema",
  20. "ajv",
  21. "keywords"
  22. ],
  23. "files": [
  24. "index.js",
  25. "keywords"
  26. ],
  27. "author": "Evgeny Poberezkin",
  28. "license": "MIT",
  29. "bugs": {
  30. "url": "https://github.com/epoberezkin/ajv-keywords/issues"
  31. },
  32. "homepage": "https://github.com/epoberezkin/ajv-keywords#readme",
  33. "peerDependencies": {
  34. "ajv": ">=4.10.0"
  35. },
  36. "devDependencies": {
  37. "ajv": "^4.10.0",
  38. "ajv-pack": "^0.2.0",
  39. "chai": "^3.5.0",
  40. "coveralls": "^2.11.9",
  41. "dot": "^1.1.1",
  42. "eslint": "^3.6.0",
  43. "glob": "^7.1.1",
  44. "istanbul": "^0.4.3",
  45. "js-beautify": "^1.6.4",
  46. "json-schema-test": "^1.2.1",
  47. "mocha": "^3.0.2",
  48. "pre-commit": "^1.1.3",
  49. "uuid": "^3.0.1"
  50. }
  51. }