package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "fullcalendar",
  3. "title": "FullCalendar",
  4. "description": "Full-sized drag & drop event calendar",
  5. "keywords": [
  6. "calendar",
  7. "event",
  8. "full-sized",
  9. "jquery-plugin"
  10. ],
  11. "homepage": "http://fullcalendar.io/",
  12. "bugs": "http://fullcalendar.io/wiki/Reporting-Bugs/",
  13. "repository": {
  14. "type": "git",
  15. "url": "https://github.com/fullcalendar/fullcalendar.git"
  16. },
  17. "license": {
  18. "type": "MIT",
  19. "url": "https://github.com/fullcalendar/fullcalendar/blob/master/LICENSE.txt"
  20. },
  21. "author": {
  22. "name": "Adam Shaw",
  23. "email": "[email protected]",
  24. "url": "http://arshaw.com/"
  25. },
  26. "copyright": "2015 Adam Shaw",
  27. "dependencies": {
  28. "jquery": ">=1.7.1",
  29. "moment": ">=2.5.0"
  30. },
  31. "devDependencies": {
  32. "underscore": "^1.4.4",
  33. "grunt": "^0.4.5",
  34. "grunt-contrib-concat": "^0.1.3",
  35. "grunt-contrib-uglify": "^0.9.1",
  36. "grunt-contrib-copy": "^0.4.1",
  37. "grunt-contrib-compress": "^0.4.10",
  38. "grunt-contrib-clean": "^0.4.1",
  39. "grunt-contrib-jshint": "^0.8.0",
  40. "grunt-contrib-cssmin": "^0.10.0",
  41. "grunt-jscs-checker": "^0.4.4",
  42. "grunt-shell": "^0.7.0",
  43. "grunt-karma": "^0.8.3",
  44. "grunt-bump": "0.0.14",
  45. "lumbar": "^2.6.2",
  46. "karma-jasmine": "^0.2.2",
  47. "karma-phantomjs-launcher": "^0.1.4"
  48. },
  49. "main": "dist/fullcalendar.js",
  50. "files": [
  51. "dist/*.js",
  52. "dist/*.css",
  53. "dist/lang",
  54. "README.*",
  55. "LICENSE.*",
  56. "CHANGELOG.*",
  57. "CONTRIBUTING.*"
  58. ]
  59. }