package.json 1.4 KB

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