package.json 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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. ],
  10. "homepage": "https://fullcalendar.io/",
  11. "bugs": "https://fullcalendar.io/wiki/Reporting-Bugs/",
  12. "repository": {
  13. "type": "git",
  14. "url": "https://github.com/fullcalendar/fullcalendar.git"
  15. },
  16. "license": "MIT",
  17. "author": {
  18. "name": "Adam Shaw",
  19. "email": "[email protected]",
  20. "url": "http://arshaw.com/"
  21. },
  22. "copyright": "2018 Adam Shaw",
  23. "dependencies": {
  24. "luxon": "^1.4.2",
  25. "moment": "^2.22.2",
  26. "moment-timezone": "^0.5.21",
  27. "rrule": "^2.5.6",
  28. "superagent": "^3.8.3"
  29. },
  30. "version": "0.0.0",
  31. "releaseDate": "1970-01-01",
  32. "devDependencies": {
  33. "@types/luxon": "^1.2.2",
  34. "bootstrap": "^3.3.7",
  35. "components-jqueryui": "github:components/jqueryui",
  36. "css-loader": "^0.28.11",
  37. "del": "^2.2.1",
  38. "dragula": "^3.7.2",
  39. "dts-generator": "^2.1.0",
  40. "eslint": "^4.19.1",
  41. "eslint-config-standard": "^11.0.0",
  42. "eslint-plugin-import": "^2.14.0",
  43. "eslint-plugin-node": "^5.2.1",
  44. "eslint-plugin-promise": "^3.8.0",
  45. "eslint-plugin-standard": "^3.1.0",
  46. "extract-text-webpack-plugin": "^3.0.2",
  47. "fork-ts-checker-webpack-plugin": "^0.4.15",
  48. "glob": "^7.1.3",
  49. "gulp": "^3.9.1",
  50. "gulp-cssmin": "^0.1.7",
  51. "gulp-eslint": "^4.0.0",
  52. "gulp-filter": "^4.0.0",
  53. "gulp-modify-file": "^1.0.0",
  54. "gulp-rename": "^1.4.0",
  55. "gulp-shell": "^0.6.5",
  56. "gulp-tslint": "^8.1.3",
  57. "gulp-uglify": "^2.0.0",
  58. "gulp-util": "^3.0.7",
  59. "gulp-watch": "^4.3.11",
  60. "gulp-zip": "^3.2.0",
  61. "jasmine-core": "2.5.2",
  62. "jasmine-jquery": "^2.1.1",
  63. "jquery": "^3.3.1",
  64. "jquery-simulate": "github:jquery/jquery-simulate",
  65. "karma": "^0.13.22",
  66. "karma-chrome-launcher": "^2.2.0",
  67. "karma-jasmine": "^1.1.2",
  68. "karma-sourcemap-loader": "^0.3.7",
  69. "karma-verbose-reporter": "0.0.6",
  70. "native-promise-only": "^0.8.1",
  71. "node-sass": "^4.9.3",
  72. "sass-loader": "^6.0.7",
  73. "ts-loader": "^3.5.0",
  74. "tslib": "^1.9.3",
  75. "tslint": "^5.11.0",
  76. "tslint-config-standard": "^7.1.0",
  77. "typescript": "^3.1.6",
  78. "webpack": "^3.12.0",
  79. "webpack-stream": "^4.0.3",
  80. "xhr-mock": "^2.4.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/plugins/*.js",
  90. "dist/plugins/*.css",
  91. "dist/locales/*.js",
  92. "README.*",
  93. "LICENSE.*",
  94. "CHANGELOG.*",
  95. "CONTRIBUTING.*"
  96. ],
  97. "scripts": {
  98. "clean": "gulp clean",
  99. "dist": "gulp dist",
  100. "lint": "gulp lint-and-example-repos",
  101. "test": "gulp test:single"
  102. }
  103. }