package.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. {
  2. "name": "reveal.js",
  3. "version": "5.2.1",
  4. "description": "The HTML Presentation Framework",
  5. "homepage": "https://revealjs.com",
  6. "subdomain": "revealjs",
  7. "main": "dist/reveal.js",
  8. "module": "dist/reveal.esm.js",
  9. "license": "MIT",
  10. "scripts": {
  11. "test": "gulp test",
  12. "start": "gulp serve",
  13. "build": "gulp build"
  14. },
  15. "author": {
  16. "name": "Hakim El Hattab",
  17. "email": "hakim.elhattab@gmail.com",
  18. "web": "https://hakim.se"
  19. },
  20. "repository": {
  21. "type": "git",
  22. "url": "git://github.com/hakimel/reveal.js.git"
  23. },
  24. "engines": {
  25. "node": ">=18.0.0"
  26. },
  27. "keywords": [
  28. "reveal",
  29. "slides",
  30. "presentation"
  31. ],
  32. "devDependencies": {
  33. "@babel/core": "^7.23.2",
  34. "@babel/eslint-parser": "^7.22.15",
  35. "@babel/preset-env": "^7.23.2",
  36. "@rollup/plugin-babel": "^6.0.4",
  37. "@rollup/plugin-commonjs": "^25.0.7",
  38. "@rollup/plugin-node-resolve": "^15.2.3",
  39. "@rollup/plugin-terser": "^0.4.4",
  40. "babel-plugin-transform-html-import-to-string": "2.0.0",
  41. "colors": "^1.4.0",
  42. "core-js": "^3.33.1",
  43. "fitty": "^2.3.7",
  44. "glob": "^10.3.10",
  45. "gulp": "^5.0.0",
  46. "gulp-autoprefixer": "^8.0.0",
  47. "gulp-clean-css": "^4.3.0",
  48. "gulp-connect": "^5.7.0",
  49. "gulp-eslint": "^6.0.0",
  50. "gulp-header-comment": "^0.10.0",
  51. "gulp-zip": "^5.1.0",
  52. "highlight.js": "^11.9.0",
  53. "marked": "^4.3.0",
  54. "node-qunit-puppeteer": "^2.2.0",
  55. "through2": "^4.0.2",
  56. "qunit": "^2.22.0",
  57. "rollup": "^4.1.5",
  58. "sass": "^1.79.4",
  59. "yargs": "^17.7.2"
  60. },
  61. "overrides": {
  62. "gulp-connect": {
  63. "send": "0.19.0"
  64. },
  65. "gulp-header-comment": {
  66. "moment": "2.30.1"
  67. }
  68. },
  69. "browserslist": "> 2%, not dead",
  70. "eslintConfig": {
  71. "env": {
  72. "browser": true,
  73. "es6": true
  74. },
  75. "parser": "@babel/eslint-parser",
  76. "parserOptions": {
  77. "sourceType": "module",
  78. "allowImportExportEverywhere": true,
  79. "requireConfigFile": false
  80. },
  81. "globals": {
  82. "module": false,
  83. "console": false,
  84. "unescape": false,
  85. "define": false,
  86. "exports": false
  87. },
  88. "rules": {
  89. "curly": 0,
  90. "eqeqeq": 2,
  91. "wrap-iife": [
  92. 2,
  93. "any"
  94. ],
  95. "no-use-before-define": [
  96. 2,
  97. {
  98. "functions": false
  99. }
  100. ],
  101. "new-cap": 2,
  102. "no-caller": 2,
  103. "dot-notation": 0,
  104. "no-eq-null": 2,
  105. "no-unused-expressions": 0
  106. }
  107. }
  108. }