package.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. {
  2. "name": "reveal.js",
  3. "version": "4.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": ">=10.0.0"
  26. },
  27. "keywords": [
  28. "reveal",
  29. "slides",
  30. "presentation"
  31. ],
  32. "devDependencies": {
  33. "@babel/core": "^7.14.3",
  34. "@babel/eslint-parser": "^7.14.3",
  35. "@babel/preset-env": "^7.14.2",
  36. "@rollup/plugin-babel": "^5.3.0",
  37. "@rollup/plugin-commonjs": "^19.0.0",
  38. "@rollup/plugin-node-resolve": "^13.0.0",
  39. "babel-plugin-transform-html-import-to-string": "0.0.1",
  40. "colors": "^1.4.0",
  41. "core-js": "^3.12.1",
  42. "fitty": "^2.3.0",
  43. "glob": "^7.1.7",
  44. "gulp": "^4.0.2",
  45. "gulp-autoprefixer": "^5.0.0",
  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-tap": "^2.0.0",
  51. "gulp-zip": "^4.2.0",
  52. "highlight.js": "^10.0.3",
  53. "marked": "^2.0.3",
  54. "node-qunit-puppeteer": "^2.1.0",
  55. "qunit": "^2.17.2",
  56. "rollup": "^2.48.0",
  57. "rollup-plugin-terser": "^7.0.2",
  58. "sass": "^1.39.2",
  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-parser",
  68. "parserOptions": {
  69. "sourceType": "module",
  70. "allowImportExportEverywhere": true,
  71. "requireConfigFile": false
  72. },
  73. "globals": {
  74. "module": false,
  75. "console": false,
  76. "unescape": false,
  77. "define": false,
  78. "exports": false
  79. },
  80. "rules": {
  81. "curly": 0,
  82. "eqeqeq": 2,
  83. "wrap-iife": [
  84. 2,
  85. "any"
  86. ],
  87. "no-use-before-define": [
  88. 2,
  89. {
  90. "functions": false
  91. }
  92. ],
  93. "new-cap": 2,
  94. "no-caller": 2,
  95. "dot-notation": 0,
  96. "no-eq-null": 2,
  97. "no-unused-expressions": 0
  98. }
  99. }
  100. }