package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "jquery-validation",
  3. "title": "jQuery Validation Plugin",
  4. "description": "Client-side form validation made easy",
  5. "version": "1.21.0",
  6. "homepage": "https://jqueryvalidation.org/",
  7. "license": "MIT",
  8. "author": {
  9. "name": "Jörn Zaefferer",
  10. "email": "joern.zaefferer@gmail.com",
  11. "url": "http://bassistance.de"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "git://github.com/jquery-validation/jquery-validation.git"
  16. },
  17. "bugs": {
  18. "url": "https://github.com/jquery-validation/jquery-validation/issues"
  19. },
  20. "licenses": [
  21. {
  22. "type": "MIT",
  23. "url": "https://www.opensource.org/licenses/MIT"
  24. }
  25. ],
  26. "scripts": {
  27. "test": "grunt",
  28. "prepublish": "grunt"
  29. },
  30. "files": [
  31. "dist/localization/",
  32. "dist/additional-methods.js",
  33. "dist/additional-methods.min.js",
  34. "dist/jquery.validate.js",
  35. "dist/jquery.validate.min.js"
  36. ],
  37. "main": "dist/jquery.validate.js",
  38. "peerDependencies": {
  39. "jquery": "^1.7 || ^2.0 || ^3.1"
  40. },
  41. "devDependencies": {
  42. "commitplease": "2.3.1",
  43. "grunt": "1.0.1",
  44. "grunt-contrib-compress": "1.2.0",
  45. "grunt-contrib-concat": "1.0.1",
  46. "grunt-contrib-copy": "1.0.0",
  47. "grunt-contrib-jshint": "1.0.0",
  48. "grunt-contrib-qunit": "10.0.0",
  49. "grunt-contrib-uglify": "1.0.1",
  50. "grunt-contrib-watch": "1.0.0",
  51. "grunt-jscs": "2.8.0",
  52. "grunt-sri": "0.2.0",
  53. "grunt-text-replace": "0.4.0",
  54. "qunitjs": "2.3.3"
  55. },
  56. "keywords": [
  57. "jquery",
  58. "jquery-plugin",
  59. "forms",
  60. "validation",
  61. "validate"
  62. ]
  63. }