package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "jquery-validation",
  3. "title": "jQuery Validation Plugin",
  4. "description": "Client-side form validation made easy",
  5. "version": "1.17.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/jquery.validate.js",
  34. "dist/jquery.validate.min.js"
  35. ],
  36. "main": "dist/jquery.validate.js",
  37. "dependencies": {
  38. "jquery": "^1.7 || ^2.0 || ^3.1"
  39. },
  40. "devDependencies": {
  41. "commitplease": "2.3.1",
  42. "grunt": "1.0.1",
  43. "grunt-contrib-compress": "1.2.0",
  44. "grunt-contrib-concat": "1.0.1",
  45. "grunt-contrib-copy": "1.0.0",
  46. "grunt-contrib-jshint": "1.0.0",
  47. "grunt-contrib-qunit": "1.2.0",
  48. "grunt-contrib-uglify": "1.0.1",
  49. "grunt-contrib-watch": "1.0.0",
  50. "grunt-jscs": "2.8.0",
  51. "grunt-text-replace": "0.4.0",
  52. "qunitjs": "2.3.3"
  53. },
  54. "keywords": [
  55. "jquery",
  56. "jquery-plugin",
  57. "forms",
  58. "validation",
  59. "validate"
  60. ]
  61. }