You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

106 lines
2.4 KiB

  1. {
  2. "name": "reveal.js",
  3. "version": "4.5.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 build",
  14. "package": "gulp package"
  15. },
  16. "author": {
  17. "name": "Hakim El Hattab",
  18. "email": "hakim.elhattab@gmail.com",
  19. "web": "https://hakim.se"
  20. },
  21. "repository": {
  22. "type": "git",
  23. "url": "git://github.com/hakimel/reveal.js.git"
  24. },
  25. "engines": {
  26. "node": ">=10.0.0"
  27. },
  28. "keywords": [
  29. "reveal",
  30. "slides",
  31. "presentation"
  32. ],
  33. "devDependencies": {
  34. "@babel/core": "^7.14.3",
  35. "@babel/eslint-parser": "^7.14.3",
  36. "@babel/preset-env": "^7.14.2",
  37. "@rollup/plugin-babel": "^5.3.0",
  38. "@rollup/plugin-commonjs": "^19.0.0",
  39. "@rollup/plugin-node-resolve": "^13.0.0",
  40. "babel-plugin-transform-html-import-to-string": "0.0.1",
  41. "colors": "^1.4.0",
  42. "core-js": "^3.12.1",
  43. "fitty": "^2.3.0",
  44. "glob": "^7.1.7",
  45. "gulp": "^4.0.2",
  46. "gulp-autoprefixer": "^8.0.0",
  47. "gulp-clean-css": "^4.2.0",
  48. "gulp-connect": "^5.7.0",
  49. "gulp-eslint": "^6.0.0",
  50. "gulp-header": "^2.0.9",
  51. "gulp-tap": "^2.0.0",
  52. "gulp-zip": "^4.2.0",
  53. "highlight.js": "^11.7.0",
  54. "marked": "^4.0.12",
  55. "node-qunit-puppeteer": "^2.1.2",
  56. "qunit": "^2.19.3",
  57. "rollup": "^2.48.0",
  58. "rollup-plugin-terser": "^7.0.2",
  59. "sass": "^1.39.2",
  60. "yargs": "^15.1.0"
  61. },
  62. "overrides": {
  63. "chokidar": "3.5.3",
  64. "glob-parent": "6.0.2"
  65. },
  66. "browserslist": "> 2%, not dead",
  67. "eslintConfig": {
  68. "env": {
  69. "browser": true,
  70. "es6": true
  71. },
  72. "parser": "@babel/eslint-parser",
  73. "parserOptions": {
  74. "sourceType": "module",
  75. "allowImportExportEverywhere": true,
  76. "requireConfigFile": false
  77. },
  78. "globals": {
  79. "module": false,
  80. "console": false,
  81. "unescape": false,
  82. "define": false,
  83. "exports": false
  84. },
  85. "rules": {
  86. "curly": 0,
  87. "eqeqeq": 2,
  88. "wrap-iife": [
  89. 2,
  90. "any"
  91. ],
  92. "no-use-before-define": [
  93. 2,
  94. {
  95. "functions": false
  96. }
  97. ],
  98. "new-cap": 2,
  99. "no-caller": 2,
  100. "dot-notation": 0,
  101. "no-eq-null": 2,
  102. "no-unused-expressions": 0
  103. }
  104. }
  105. }