package.json 2.6 KB

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