package.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. {
  2. "name": "reveal.js",
  3. "version": "4.1.0",
  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"
  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": ">=10.0.0"
  26. },
  27. "keywords": [
  28. "reveal",
  29. "slides",
  30. "presentation"
  31. ],
  32. "devDependencies": {
  33. "@babel/core": "^7.9.6",
  34. "@babel/preset-env": "^7.9.6",
  35. "@rollup/plugin-babel": "^5.2.0",
  36. "@rollup/plugin-commonjs": "^15.0.0",
  37. "@rollup/plugin-node-resolve": "^9.0.0",
  38. "babel-eslint": "^10.1.0",
  39. "babel-plugin-transform-html-import-to-string": "0.0.1",
  40. "colors": "^1.4.0",
  41. "core-js": "^3.6.5",
  42. "fitty": "^2.3.0",
  43. "glob": "^7.1.6",
  44. "gulp": "^4.0.2",
  45. "gulp-autoprefixer": "^7.0.1",
  46. "gulp-clean-css": "^4.2.0",
  47. "gulp-connect": "^5.7.0",
  48. "gulp-eslint": "^6.0.0",
  49. "gulp-header": "^2.0.9",
  50. "gulp-sass": "^4.0.2",
  51. "gulp-tap": "^2.0.0",
  52. "gulp-zip": "^5.0.1",
  53. "highlight.js": "^10.0.3",
  54. "marked": "^1.1.0",
  55. "node-qunit-puppeteer": "^2.0.1",
  56. "qunit": "^2.10.0",
  57. "rollup": "^2.26.4",
  58. "rollup-plugin-terser": "^7.0.0",
  59. "yargs": "^15.1.0"
  60. },
  61. "browserslist": "> 0.5%, IE 11, not dead",
  62. "eslintConfig": {
  63. "env": {
  64. "browser": true,
  65. "es6": true
  66. },
  67. "parser": "babel-eslint",
  68. "parserOptions": {
  69. "sourceType": "module",
  70. "allowImportExportEverywhere": true
  71. },
  72. "globals": {
  73. "module": false,
  74. "console": false,
  75. "unescape": false,
  76. "define": false,
  77. "exports": false
  78. },
  79. "rules": {
  80. "curly": 0,
  81. "eqeqeq": 2,
  82. "wrap-iife": [
  83. 2,
  84. "any"
  85. ],
  86. "no-use-before-define": [
  87. 2,
  88. {
  89. "functions": false
  90. }
  91. ],
  92. "new-cap": 2,
  93. "no-caller": 2,
  94. "dot-notation": 0,
  95. "no-eq-null": 2,
  96. "no-unused-expressions": 0
  97. }
  98. }
  99. }