-
Notifications
You must be signed in to change notification settings - Fork 420
/
package.json
70 lines (70 loc) · 1.7 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "reveal-md",
"description": "reveal.js on steroids! Get beautiful reveal.js presentations from your Markdown files.",
"keywords": [
"markdown",
"reveal",
"revealjs",
"html",
"server",
"cli"
],
"version": "6.1.4",
"repository": {
"type": "git",
"url": "https://github.com/webpro/reveal-md.git"
},
"homepage": "https://github.com/webpro/reveal-md#readme",
"bugs": "https://github.com/webpro/reveal-md/issues",
"license": "MIT",
"bin": {
"reveal-md": "bin/reveal-md.js"
},
"files": [
"bin",
"lib"
],
"type": "module",
"scripts": {
"test": "node --test test/*.spec.js && installed-check",
"lint": "eslint lib test",
"format": "prettier --write eslint.config.mjs lib/**/*.js bin/*.js test/*.js *.md",
"release": "release-it"
},
"dependencies": {
"debug": "4.3.7",
"express": "4.21.1",
"fs-extra": "11.2.0",
"glob": "10.4.5",
"highlight.js": "11.10.0",
"json5": "2.2.3",
"livereload": "0.9.3",
"lodash": "4.17.21",
"mermaid": "11.4.0",
"mustache": "4.2.0",
"open": "10.1.0",
"reveal.js": "5.1.0",
"serve-favicon": "2.5.0",
"update-notifier": "7.3.1",
"yaml-front-matter": "4.1.1",
"yargs-parser": "21.1.1"
},
"optionalDependencies": {
"puppeteer": "23.9.0"
},
"devDependencies": {
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.15.0",
"eslint": "9.15.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import-x": "4.4.3",
"eslint-plugin-prettier": "5.2.1",
"globals": "15.12.0",
"installed-check": "9.3.0",
"prettier": "3.4.1",
"release-it": "17.10.0"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || ^22.0.0"
}
}