package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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": "MIT",
  18. "author": {
  19. "name": "Adam Shaw",
  20. "email": "[email protected]",
  21. "url": "http://arshaw.com/"
  22. },
  23. "copyright": "2016 Adam Shaw",
  24. "dependencies": {
  25. "jquery": ">=1.7.1",
  26. "moment": ">=2.5.0"
  27. },
  28. "version": "0.0.0",
  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": "^3.0.0",
  40. "grunt-karma": "^2.0.0",
  41. "grunt-shell": "^1.3.0",
  42. "jasmine-core": "^2.4.1",
  43. "karma": "^0.13.22",
  44. "karma-jasmine": "^1.0.2",
  45. "karma-phantomjs-launcher": "^1.0.0",
  46. "lumbar": "^4.0.2",
  47. "phantomjs-prebuilt": "^2.1.7"
  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. "scripts": {
  60. "test" : "grunt dev && grunt karma:single",
  61. "lint" : "grunt check"
  62. }
  63. }