-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.18 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.18 KB
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
71
72
73
74
75
76
77
78
{
"name": "reveal.js",
"version": "5.1.0",
"description": "The HTML Presentation Framework",
"homepage": "https://revealjs.com",
"subdomain": "revealjs",
"main": "dist/reveal.js",
"module": "dist/reveal.esm.js",
"license": "MIT",
"scripts": {
"start": "sass --no-source-map css/reveal.scss dist/reveal.css && sass --no-source-map css/theme/source/bwr.scss dist/theme/bwr.css && npx http-server -p 8000 -c-1 .",
"build": "sass --no-source-map css/reveal.scss dist/reveal.css && sass --no-source-map css/theme/source/bwr.scss dist/theme/bwr.css",
"watch": "sass --no-source-map --watch css/reveal.scss:dist/reveal.css css/theme/source/bwr.scss:dist/theme/bwr.css",
"dev": "concurrently \"sass --no-source-map --watch css/reveal.scss:dist/reveal.css css/theme/source/bwr.scss:dist/theme/bwr.css\" \"browser-sync start --server . --port 3000 --no-ui --no-notify --files index.html,dist/**/*.css,js/**/*.js,plugin/**/*.js,dist/assets/**/*,css/**/*,*.html\""
},
"author": {
"name": "Hakim El Hattab",
"email": "hakim.elhattab@gmail.com",
"web": "https://hakim.se"
},
"repository": {
"type": "git",
"url": "git://github.com/hakimel/reveal.js.git"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"reveal",
"slides",
"presentation"
],
"devDependencies": {
"sass": "^1.79.4",
"http-server": "^14.1.1",
"browser-sync": "^2.29.3",
"concurrently": "^9.0.1"
},
"browserslist": "> 2%, not dead",
"eslintConfig": {
"env": {
"browser": true,
"es6": true
},
"parser": "@babel/eslint-parser",
"parserOptions": {
"sourceType": "module",
"allowImportExportEverywhere": true,
"requireConfigFile": false
},
"globals": {
"module": false,
"console": false,
"unescape": false,
"define": false,
"exports": false
},
"rules": {
"curly": 0,
"eqeqeq": 2,
"wrap-iife": [
2,
"any"
],
"no-use-before-define": [
2,
{
"functions": false
}
],
"new-cap": 2,
"no-caller": 2,
"dot-notation": 0,
"no-eq-null": 2,
"no-unused-expressions": 0
}
}
}