package.json 3.0 KB

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