package.json 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. {
  2. "private": true,
  3. "name": "fullcalendar",
  4. "version": "4.4.3",
  5. "title": "FullCalendar",
  6. "description": "Full-sized drag & drop event calendar",
  7. "keywords": [
  8. "calendar",
  9. "event",
  10. "full-sized"
  11. ],
  12. "homepage": "https://fullcalendar.io/",
  13. "docs": "https://fullcalendar.io/docs",
  14. "bugs": "https://fullcalendar.io/reporting-bugs",
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/fullcalendar/fullcalendar.git",
  18. "homepage": "https://github.com/fullcalendar/fullcalendar"
  19. },
  20. "license": "MIT",
  21. "author": {
  22. "name": "Adam Shaw",
  23. "email": "[email protected]",
  24. "url": "http://arshaw.com/"
  25. },
  26. "copyright": "2019 Adam Shaw",
  27. "scripts": {
  28. "install": "monorepo install",
  29. "build": "gulp build",
  30. "watch": "gulp watch",
  31. "lint": "gulp lint",
  32. "clean": "rm -rf tmp archives && monorepo exec rm -rf dist && monorepo run clean",
  33. "tsc": "tsc -p tsconfig.json",
  34. "tsc:debug": "tsc --sourceMap -p tsconfig.json",
  35. "tsc:watch": "tsc --sourceMap --watch -p tsconfig.json",
  36. "tsc:dts": "tsc -p tsconfig.dts.json",
  37. "rollup": "rollup -c --environment BUILD:production",
  38. "rollup:watch": "rollup -c --environment BUILD:development --watch",
  39. "sass": "sass --no-source-map $(scripts/sass-args.js)",
  40. "sass:watch": "sass --watch $(scripts/sass-args.js)",
  41. "test": "karma start karma.config.js --auto-watch",
  42. "test:single": "karma start karma.config.js --browsers ChromeHeadless_custom --single-run",
  43. "ci": "./scripts/ci.sh",
  44. "archive": "gulp archive",
  45. "preversion": "./scripts/update-example-dates.sh && npm run clean",
  46. "version": "npm run ci && npm run archive",
  47. "postversion": "monorepo publish && echo 'EXEC: git push --recurse-submodules=on-demand' && echo 'STILL NEED TO PUSH ALL TAGS'"
  48. },
  49. "devDependencies": {
  50. "@arshaw/dts-bundle": "^0.7.3-fork.1",
  51. "@arshaw/monorepo-tool": "0.0.2",
  52. "@types/jasmine": "^3.3.12",
  53. "@types/jasmine-jquery": "^1.5.33",
  54. "@types/jquery": "3.3.29",
  55. "@types/luxon": "1.12.0",
  56. "bootstrap": "^3.4.1",
  57. "chokidar": "^2.1.5",
  58. "components-jqueryui": "github:components/jqueryui",
  59. "concurrently": "^4.1.1",
  60. "dragula": "^3.7.2",
  61. "eslint": "^5.16.0",
  62. "eslint-config-standard": "^12.0.0",
  63. "eslint-plugin-import": "^2.17.2",
  64. "eslint-plugin-node": "^9.1.0",
  65. "eslint-plugin-promise": "^4.1.1",
  66. "eslint-plugin-standard": "^4.0.0",
  67. "fast-deep-equal": "^2.0.1",
  68. "glob": "^7.1.3",
  69. "gulp": "^4.0.2",
  70. "gulp-cssmin": "^0.2.0",
  71. "gulp-eslint": "^5.0.0",
  72. "gulp-modify-file": "^1.0.1",
  73. "gulp-rename": "^1.4.0",
  74. "gulp-terser": "^1.2.0",
  75. "gulp-zip": "^5.0.0",
  76. "handlebars": "^4.1.2",
  77. "jasmine-core": "2.5.2",
  78. "jasmine-jquery": "^2.1.1",
  79. "jquery": "^3.4.0",
  80. "jquery-simulate": "github:jquery/jquery-simulate",
  81. "karma": "^0.13.22",
  82. "karma-chrome-launcher": "^2.2.0",
  83. "karma-jasmine": "^1.1.2",
  84. "karma-sourcemap-loader": "^0.3.7",
  85. "karma-verbose-reporter": "0.0.6",
  86. "luxon": "^1.22.0",
  87. "mkdirp": "^0.5.1",
  88. "moment": "^2.24.0",
  89. "moment-timezone": "^0.5.26",
  90. "native-promise-only": "^0.8.1",
  91. "rollup": "1.8.0",
  92. "rollup-plugin-alias": "^1.5.2",
  93. "rollup-plugin-cleanup": "^3.1.1",
  94. "rollup-plugin-commonjs": "^9.0.0",
  95. "rollup-plugin-includepaths": "^0.2.3",
  96. "rollup-plugin-multi-entry": "github:arshaw/rollup-plugin-multi-entry#dist",
  97. "rollup-plugin-node-resolve": "4.0.1",
  98. "rollup-plugin-replace": "^2.2.0",
  99. "rollup-plugin-sourcemaps": "^0.4.2",
  100. "rrule": "^2.6.2",
  101. "sass": "^1.21.0",
  102. "shelljs": "^0.8.3",
  103. "tslib": "^1.9.3",
  104. "tslint": "^5.16.0",
  105. "tslint-config-standard": "^8.0.1",
  106. "typescript": "3.4.1",
  107. "xhr-mock": "^2.4.1"
  108. }
  109. }