blob: 8677b4e3ba9d4a0e64d5712d66c6686cd3f9dc99 [file] [log] [blame]
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +02001{
2 "name": "reveal.js",
Marc Kupietzcf6e9982026-08-15 15:37:40 +02003 "version": "5.2.1",
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +02004 "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": {
Marc Kupietz9c036a42024-05-14 13:17:25 +020025 "node": ">=18.0.0"
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020026 },
27 "keywords": [
28 "reveal",
29 "slides",
30 "presentation"
31 ],
32 "devDependencies": {
Marc Kupietz9c036a42024-05-14 13:17:25 +020033 "@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",
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020041 "colors": "^1.4.0",
Marc Kupietz9c036a42024-05-14 13:17:25 +020042 "core-js": "^3.33.1",
43 "fitty": "^2.3.7",
44 "glob": "^10.3.10",
Marc Kupietzcf6e9982026-08-15 15:37:40 +020045 "gulp": "^5.0.0",
Marc Kupietz09b75752023-10-07 09:32:19 +020046 "gulp-autoprefixer": "^8.0.0",
Marc Kupietz9c036a42024-05-14 13:17:25 +020047 "gulp-clean-css": "^4.3.0",
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020048 "gulp-connect": "^5.7.0",
49 "gulp-eslint": "^6.0.0",
Marc Kupietzcf6e9982026-08-15 15:37:40 +020050 "gulp-header-comment": "^0.10.0",
Marc Kupietz9c036a42024-05-14 13:17:25 +020051 "gulp-zip": "^5.1.0",
52 "highlight.js": "^11.9.0",
53 "marked": "^4.3.0",
Marc Kupietzcf6e9982026-08-15 15:37:40 +020054 "node-qunit-puppeteer": "^2.2.0",
55 "through2": "^4.0.2",
56 "qunit": "^2.22.0",
Marc Kupietz9c036a42024-05-14 13:17:25 +020057 "rollup": "^4.1.5",
Marc Kupietzcf6e9982026-08-15 15:37:40 +020058 "sass": "^1.79.4",
Marc Kupietz9c036a42024-05-14 13:17:25 +020059 "yargs": "^17.7.2"
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020060 },
Marc Kupietz09b75752023-10-07 09:32:19 +020061 "overrides": {
Marc Kupietzcf6e9982026-08-15 15:37:40 +020062 "gulp-connect": {
63 "send": "0.19.0"
64 },
65 "gulp-header-comment": {
66 "moment": "2.30.1"
67 }
Marc Kupietz09b75752023-10-07 09:32:19 +020068 },
69 "browserslist": "> 2%, not dead",
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020070 "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}