package.json 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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": "https://fullcalendar.io/",
  12. "bugs": "https://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": "2018 Adam Shaw",
  24. "dependencies": {
  25. "luxon": "^1.3.3",
  26. "moment": "^2.22.2",
  27. "moment-timezone": "^0.5.21",
  28. "rrule": "^2.5.5",
  29. "superagent": "^3.8.2"
  30. },
  31. "version": "0.0.0",
  32. "releaseDate": "1970-01-01",
  33. "devDependencies": {
  34. "@types/luxon": "^1.2.2",
  35. "awesome-typescript-loader": "^3.5.0",
  36. "bootstrap": "^3.3.7",
  37. "components-jqueryui": "github:components/jqueryui",
  38. "css-loader": "^0.28.11",
  39. "del": "^2.2.1",
  40. "dragula": "^3.7.2",
  41. "dts-generator": "^2.1.0",
  42. "eslint": "^4.19.1",
  43. "eslint-config-standard": "^11.0.0",
  44. "eslint-plugin-import": "^2.11.0",
  45. "eslint-plugin-node": "^5.2.1",
  46. "eslint-plugin-promise": "^3.7.0",
  47. "eslint-plugin-standard": "^3.0.1",
  48. "extract-text-webpack-plugin": "^3.0.2",
  49. "glob": "^7.1.2",
  50. "gulp": "^3.9.1",
  51. "gulp-cssmin": "^0.1.7",
  52. "gulp-eslint": "^4.0.0",
  53. "gulp-filter": "^4.0.0",
  54. "gulp-modify-file": "^1.0.0",
  55. "gulp-rename": "^1.2.2",
  56. "gulp-shell": "^0.6.5",
  57. "gulp-tslint": "^8.1.3",
  58. "gulp-uglify": "^2.0.0",
  59. "gulp-util": "^3.0.7",
  60. "gulp-watch": "^4.3.11",
  61. "gulp-zip": "^3.2.0",
  62. "jasmine-core": "2.5.2",
  63. "jasmine-jquery": "^2.1.1",
  64. "jquery": "^3.3.1",
  65. "jquery-simulate": "github:jquery/jquery-simulate",
  66. "karma": "^0.13.22",
  67. "karma-chrome-launcher": "^2.2.0",
  68. "karma-jasmine": "^1.0.2",
  69. "karma-sourcemap-loader": "^0.3.7",
  70. "karma-verbose-reporter": "0.0.6",
  71. "native-promise-only": "^0.8.1",
  72. "node-sass": "^4.8.3",
  73. "sass-loader": "^6.0.7",
  74. "tslib": "^1.8.0",
  75. "tslint": "^5.8.0",
  76. "tslint-config-standard": "^7.0.0",
  77. "typescript": "^2.8.1",
  78. "webpack": "^3.11.0",
  79. "webpack-stream": "^4.0.3",
  80. "xhr-mock": "^2.3.1",
  81. "yargs": "^4.8.1"
  82. },
  83. "main": "dist/fullcalendar.js",
  84. "types": "dist/fullcalendar.d.ts",
  85. "files": [
  86. "dist/*.js",
  87. "dist/*.css",
  88. "dist/*.d.ts",
  89. "dist/locale/*.js",
  90. "README.*",
  91. "LICENSE.*",
  92. "CHANGELOG.*",
  93. "CONTRIBUTING.*"
  94. ],
  95. "scripts": {
  96. "clean": "gulp clean",
  97. "dist": "gulp dist",
  98. "lint": "gulp lint-and-example-repos",
  99. "test": "gulp test:single"
  100. }
  101. }