package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "tv4",
  3. "version": "1.3.0",
  4. "author": "Geraint Luff",
  5. "description": "A public domain JSON Schema validator for JavaScript",
  6. "keywords": [
  7. "json-schema",
  8. "schema",
  9. "validator",
  10. "tv4"
  11. ],
  12. "maintainers": [
  13. {
  14. "name": "Geraint Luff",
  15. "email": "luffgd@gmail.com",
  16. "web": "https://github.com/geraintluff/"
  17. }
  18. ],
  19. "main": "tv4.js",
  20. "repository": {
  21. "type": "git",
  22. "url": "https://github.com/geraintluff/tv4.git"
  23. },
  24. "license": [
  25. {
  26. "type": "Public Domain",
  27. "url": "http://geraintluff.github.io/tv4/LICENSE.txt"
  28. },
  29. {
  30. "type": "MIT",
  31. "url": "http://jsonary.com/LICENSE.txt"
  32. }
  33. ],
  34. "devDependencies": {
  35. "grunt": "~0.4.1",
  36. "grunt-cli": "~0.1.9",
  37. "grunt-component-io": "~0.1.0",
  38. "grunt-concat-sourcemap": "~0.2",
  39. "grunt-contrib-clean": "~0.4.1",
  40. "grunt-contrib-copy": "~0.4.1",
  41. "grunt-contrib-jshint": "~0.6.2",
  42. "grunt-contrib-uglify": "~0.2.2",
  43. "grunt-markdown": "~0.3.0",
  44. "grunt-mocha": "~0.4",
  45. "grunt-mocha-test": "~0.5.0",
  46. "grunt-push-release": "~0.1.1",
  47. "grunt-regex-replace": "~0.2.5",
  48. "jshint-path-reporter": "~0.1",
  49. "mocha": "~1.11.0",
  50. "mocha-unfunk-reporter": "~0.2",
  51. "proclaim": "1.4",
  52. "requirejs": "~2.1.11",
  53. "source-map-support": "~0.1"
  54. },
  55. "engines": {
  56. "node": ">= 0.8.0"
  57. },
  58. "scripts": {
  59. "test": "grunt test",
  60. "prepublish": "grunt prepublish"
  61. }
  62. }