2
0

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. "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": "2019 Adam Shaw",
  24. "peerDependencies": {
  25. "jquery": "2 - 3",
  26. "moment": "^2.20.1"
  27. },
  28. "version": "0.0.0",
  29. "releaseDate": "1970-01-01",
  30. "devDependencies": {
  31. "@types/jquery": "2.0.47",
  32. "awesome-typescript-loader": "^3.5.0",
  33. "bootstrap": "^3.3.7",
  34. "check-node-version": "^4.1.0",
  35. "components-jqueryui": "^1.12.1",
  36. "css-loader": "^0.28.10",
  37. "del": "^2.2.1",
  38. "dts-generator": "^2.1.0",
  39. "eslint": "^4.18.2",
  40. "eslint-config-standard": "^11.0.0",
  41. "eslint-plugin-import": "^2.9.0",
  42. "eslint-plugin-node": "^5.2.1",
  43. "eslint-plugin-promise": "^3.6.0",
  44. "eslint-plugin-standard": "^3.0.1",
  45. "extract-text-webpack-plugin": "^3.0.2",
  46. "glob": "^7.1.2",
  47. "gulp": "^3.9.1",
  48. "gulp-cssmin": "^0.1.7",
  49. "gulp-eslint": "^4.0.0",
  50. "gulp-filter": "^4.0.0",
  51. "gulp-modify-file": "^1.0.0",
  52. "gulp-rename": "^1.2.2",
  53. "gulp-shell": "^0.6.5",
  54. "gulp-tslint": "^8.1.3",
  55. "gulp-uglify": "^2.0.0",
  56. "gulp-util": "^3.0.7",
  57. "gulp-watch": "^4.3.11",
  58. "gulp-zip": "^3.2.0",
  59. "jasmine-core": "2.5.2",
  60. "jasmine-fixture": "^2.0.0",
  61. "jasmine-jquery": "^2.1.1",
  62. "jquery": "2 - 3",
  63. "jquery-mockjax": "^2.2.0",
  64. "jquery-simulate": "^1.0.2",
  65. "karma": "^0.13.22",
  66. "karma-jasmine": "^1.0.2",
  67. "karma-phantomjs-launcher": "^1.0.0",
  68. "karma-sourcemap-loader": "^0.3.7",
  69. "karma-verbose-reporter": "0.0.6",
  70. "moment": "^2.20.1",
  71. "moment-timezone": "^0.5.5",
  72. "native-promise-only": "^0.8.1",
  73. "node-sass": "^4.14.1",
  74. "phantomjs-prebuilt": "^2.1.7",
  75. "sass-loader": "^6.0.7",
  76. "tslib": "^1.8.0",
  77. "tslint": "^5.12.1",
  78. "tslint-config-standard": "^7.0.0",
  79. "typescript": "^2.7.2",
  80. "webpack": "^3.11.0",
  81. "webpack-stream": "^4.0.2",
  82. "yargs": "^4.8.1"
  83. },
  84. "main": "dist/fullcalendar.js",
  85. "types": "dist/fullcalendar.d.ts",
  86. "files": [
  87. "dist/*.js",
  88. "dist/*.css",
  89. "dist/*.d.ts",
  90. "dist/locale/*.js",
  91. "README.*",
  92. "LICENSE.*",
  93. "CHANGELOG.*",
  94. "CONTRIBUTING.*"
  95. ],
  96. "scripts": {
  97. "clean": "gulp clean",
  98. "dist": "npm run check-env && gulp dist",
  99. "lint": "gulp lint-and-example-repos",
  100. "test": "gulp test:single",
  101. "check-env": "check-node-version --node 11"
  102. }
  103. }