package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "completer",
  3. "description": "A simple jQuery auto complete plugin.",
  4. "version": "0.1.3",
  5. "license": "MIT",
  6. "repository": "fengyuanchen/completer",
  7. "homepage": "https://fengyuanchen.github.io/completer",
  8. "author": {
  9. "name": "Fengyuan Chen",
  10. "url": "http://chenfengyuan.com"
  11. },
  12. "keywords": [
  13. "auto",
  14. "complete",
  15. "jquery",
  16. "plugin",
  17. "html",
  18. "css",
  19. "javascript",
  20. "front-end",
  21. "web",
  22. "development"
  23. ],
  24. "dependencies": {
  25. "jquery": ">= 1.9.1"
  26. },
  27. "devDependencies": {
  28. "grunt": "~1.0.1",
  29. "grunt-contrib-clean": "~1.0.0",
  30. "grunt-contrib-copy": "~1.0.0",
  31. "grunt-contrib-watch": "~1.0.0",
  32. "grunt-contrib-jshint": "~1.0.0",
  33. "grunt-contrib-uglify": "~1.0.1",
  34. "grunt-contrib-csslint": "~1.0.0",
  35. "grunt-contrib-cssmin": "~1.0.1",
  36. "grunt-contrib-htmlmin": "~1.4.0",
  37. "grunt-autoprefixer": "~3.0.4",
  38. "grunt-replace": "~1.0.1",
  39. "grunt-csscomb": "~3.1.0",
  40. "grunt-jscs": "~3.0.0",
  41. "load-grunt-tasks": "~3.5.0"
  42. }
  43. }