package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "virtual-keyboard",
  3. "title": "Keyboard",
  4. "description": "Virtual Keyboard using jQuery UI",
  5. "version": "1.28.7",
  6. "author": {
  7. "name": "Jeremy Satterfield",
  8. "url": "https://github.com/jsatt"
  9. },
  10. "maintainers": [
  11. {
  12. "name": "Rob Garrison",
  13. "url": "https://github.com/Mottie",
  14. "email": "wowmotty@gmail.com"
  15. }
  16. ],
  17. "license": "MIT",
  18. "dependencies": {
  19. "jquery": ">=3.3.1"
  20. },
  21. "optionalDependencies": {
  22. "jquery-ui": ">=1.12.1"
  23. },
  24. "keywords": [
  25. "customizable",
  26. "keyboard",
  27. "ui",
  28. "accessibility",
  29. "osk",
  30. "jquery-plugin"
  31. ],
  32. "homepage": "https://github.com/Mottie/Keyboard",
  33. "demo": "http://mottie.github.io/Keyboard/",
  34. "docs": "https://github.com/Mottie/Keyboard/wiki",
  35. "bugs": "https://github.com/Mottie/Keyboard/issues",
  36. "main": "dist/js/jquery.keyboard.js",
  37. "files": [
  38. "dist/**/*"
  39. ],
  40. "repository": {
  41. "type": "git",
  42. "url": "git://github.com/Mottie/keyboard.git"
  43. },
  44. "scripts": {
  45. "authors": "bash tools/authors.sh",
  46. "lint": "eslint *.js || true"
  47. },
  48. "npmName": "virtual-keyboard",
  49. "npmFileMap": [
  50. {
  51. "basePath": "dist",
  52. "files": [
  53. "**/*"
  54. ]
  55. }
  56. ],
  57. "devDependencies": {
  58. "grunt": "^1.0.3",
  59. "grunt-cli": "^1.3.1",
  60. "grunt-contrib-clean": "^2.0.0",
  61. "grunt-contrib-concat": "^1.0.1",
  62. "grunt-contrib-copy": "^1.0.0",
  63. "grunt-contrib-cssmin": "^3.0.0",
  64. "grunt-contrib-jshint": "^2.0.0",
  65. "grunt-contrib-qunit": "^3.0.1",
  66. "grunt-contrib-uglify": "^4.0.0",
  67. "grunt-contrib-watch": "^1.1.0"
  68. }
  69. }