package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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": ">=2.0.0",
  26. "moment": ">=2.9.0"
  27. },
  28. "version": "0.0.0",
  29. "releaseDate": "1970-01-01",
  30. "devDependencies": {
  31. "bootstrap": "^3.3.7",
  32. "components-jqueryui": "github:components/jqueryui",
  33. "del": "^2.2.1",
  34. "gulp": "^3.9.1",
  35. "gulp-concat": "^2.6.0",
  36. "gulp-cssmin": "^0.1.7",
  37. "gulp-file": "^0.3.0",
  38. "gulp-filter": "^4.0.0",
  39. "gulp-jscs": "^4.0.0",
  40. "gulp-jshint": "^2.0.1",
  41. "gulp-modify": "^0.1.1",
  42. "gulp-plumber": "^1.1.0",
  43. "gulp-rename": "^1.2.2",
  44. "gulp-replace": "^0.5.4",
  45. "gulp-sourcemaps": "^1.6.0",
  46. "gulp-template": "^4.0.0",
  47. "gulp-uglify": "^2.0.0",
  48. "gulp-util": "^3.0.7",
  49. "gulp-zip": "^3.2.0",
  50. "jasmine-core": "^2.4.1",
  51. "jasmine-fixture": "^2.0.0",
  52. "jasmine-jquery": "^2.1.1",
  53. "jquery-mockjax": "^2.2.0",
  54. "jquery-simulate": "github:jquery/jquery-simulate",
  55. "jshint": "^2.9.2",
  56. "karma": "^0.13.22",
  57. "karma-jasmine": "^1.0.2",
  58. "karma-phantomjs-launcher": "^1.0.0",
  59. "lodash": "^4.14.1",
  60. "moment-timezone": "^0.5.5",
  61. "phantomjs-prebuilt": "^2.1.7",
  62. "socket.io": "1.4.5",
  63. "yargs": "^4.8.1"
  64. },
  65. "main": "dist/fullcalendar.js",
  66. "files": [
  67. "dist/*.js",
  68. "dist/*.css",
  69. "dist/locale",
  70. "README.*",
  71. "LICENSE.*",
  72. "CHANGELOG.*",
  73. "CONTRIBUTING.*"
  74. ],
  75. "scripts": {
  76. "test": "gulp test:single",
  77. "lint": "gulp lint"
  78. }
  79. }