package.json 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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/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": "2019 Adam Shaw",
  23. "main": "main.js",
  24. "types": "main.d.ts",
  25. "devDependencies": {
  26. "@types/jasmine": "^3.3.7",
  27. "@types/jasmine-jquery": "^1.5.33",
  28. "@types/jquery": "^3.3.29",
  29. "@types/luxon": "^1.4.1",
  30. "bootstrap": "^3.4.0",
  31. "chokidar": "^2.0.4",
  32. "components-jqueryui": "github:components/jqueryui",
  33. "concurrently": "^4.1.0",
  34. "css-loader": "^0.28.11",
  35. "dragula": "^3.7.2",
  36. "eslint": "^4.19.1",
  37. "eslint-config-standard": "^11.0.0",
  38. "eslint-plugin-import": "^2.14.0",
  39. "eslint-plugin-node": "^5.2.1",
  40. "eslint-plugin-promise": "^3.8.0",
  41. "eslint-plugin-standard": "^3.1.0",
  42. "glob": "^7.1.3",
  43. "gulp": "^3.9.1",
  44. "gulp-cssmin": "^0.1.7",
  45. "gulp-eslint": "^4.0.0",
  46. "gulp-filter": "^4.0.0",
  47. "gulp-modify-file": "^1.0.0",
  48. "gulp-rename": "^1.4.0",
  49. "gulp-shell": "^0.6.5",
  50. "gulp-uglify": "^2.0.0",
  51. "gulp-zip": "^3.2.0",
  52. "jasmine-core": "2.5.2",
  53. "jasmine-jquery": "^2.1.1",
  54. "jquery": "^3.3.1",
  55. "jquery-simulate": "github:jquery/jquery-simulate",
  56. "karma": "^0.13.22",
  57. "karma-chrome-launcher": "^2.2.0",
  58. "karma-jasmine": "^1.1.2",
  59. "karma-sourcemap-loader": "^0.3.7",
  60. "karma-verbose-reporter": "0.0.6",
  61. "luxon": "^1.10.0",
  62. "mkdirp": "^0.5.1",
  63. "moment": "^2.23.0",
  64. "moment-timezone": "^0.5.23",
  65. "native-promise-only": "^0.8.1",
  66. "node-sass": "^4.11.0",
  67. "rollup": "^1.1.0",
  68. "rollup-plugin-multi-entry": "^2.1.0",
  69. "rollup-plugin-node-resolve": "^4.0.0",
  70. "rollup-plugin-scss": "^0.4.0",
  71. "rollup-plugin-sourcemaps": "^0.4.2",
  72. "rollup-plugin-typescript2": "^0.18.1",
  73. "rrule": "^2.6.0",
  74. "superagent": "^3.8.3",
  75. "tslib": "^1.9.3",
  76. "tslint": "^5.12.1",
  77. "tslint-config-standard": "^7.1.0",
  78. "typescript": "^3.2.2",
  79. "xhr-mock": "^2.4.1"
  80. },
  81. "scripts": {
  82. "build": "npm run tsc && npm run rollup && npm run sass",
  83. "watch": "concurrently --raw 'npm run tsc-watch' 'npm run rollup-watch' 'npm run sass-watch'",
  84. "clean": "rm -rf dist archives tmp",
  85. "tsc": "tsc",
  86. "tsc-watch": "tsc --watch --sourceMap",
  87. "rollup": "rollup -c --environment BUILD:production",
  88. "rollup-watch": "sleep 5 && rollup -c --environment BUILD:development --watch",
  89. "sass": "sass --update --sourcemap=none $(bin/sass-args.js)",
  90. "sass-watch": "sass --watch $(bin/sass-args.js)",
  91. "test": "karma start karma.config.js --auto-watch",
  92. "test-single": "karma start karma.config.js --browsers ChromeHeadless_custom --single-run",
  93. "test-ci": "gulp dist && npm run test-single",
  94. "lint": "gulp lint"
  95. }
  96. }