blob: a04dc2b3af77e5f5ea46e5dfd5d70e7e65eb531d [file] [log] [blame]
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +02001{
2 "name": "reveal.js",
Marc Kupietz09b75752023-10-07 09:32:19 +02003 "version": "4.6.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": {
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",
Marc Kupietz09b75752023-10-07 09:32:19 +020045 "gulp-autoprefixer": "^8.0.0",
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020046 "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",
Marc Kupietz09b75752023-10-07 09:32:19 +020052 "highlight.js": "^11.7.0",
53 "marked": "^4.0.12",
54 "node-qunit-puppeteer": "^2.1.2",
55 "qunit": "^2.19.3",
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020056 "rollup": "^2.48.0",
57 "rollup-plugin-terser": "^7.0.2",
Christophe Dervieux8afae132021-12-06 15:16:42 +010058 "sass": "^1.39.2",
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020059 "yargs": "^15.1.0"
60 },
Marc Kupietz09b75752023-10-07 09:32:19 +020061 "overrides": {
62 "chokidar": "3.5.3",
63 "glob-parent": "6.0.2"
64 },
65 "browserslist": "> 2%, not dead",
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020066 "eslintConfig": {
67 "env": {
68 "browser": true,
69 "es6": true
70 },
71 "parser": "@babel/eslint-parser",
72 "parserOptions": {
73 "sourceType": "module",
74 "allowImportExportEverywhere": true,
75 "requireConfigFile": false
76 },
77 "globals": {
78 "module": false,
79 "console": false,
80 "unescape": false,
81 "define": false,
82 "exports": false
83 },
84 "rules": {
85 "curly": 0,
86 "eqeqeq": 2,
87 "wrap-iife": [
88 2,
89 "any"
90 ],
91 "no-use-before-define": [
92 2,
93 {
94 "functions": false
95 }
96 ],
97 "new-cap": 2,
98 "no-caller": 2,
99 "dot-notation": 0,
100 "no-eq-null": 2,
101 "no-unused-expressions": 0
102 }
103 }
104}