This repository has been archived by the owner on Sep 4, 2023. It is now read-only.
forked from hakimel/reveal.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.49 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
71
72
73
74
75
{
"name": "reveal.js",
"version": "3.8.0",
"description": "The HTML Presentation Framework",
"homepage": "http://revealjs.com",
"subdomain": "revealjs",
"main": "js/reveal-vertical.js",
"scripts": {
"test": "grunt test",
"start": "grunt serve",
"build": "grunt",
"webyarns:build:babel": "babel --extensions '.ts,.js' webyarns-util/src -d webyarns-util/lib",
"webyarns:build:uglifyjs": "uglifyjs-folder webyarns-util/lib -e -o webyarns-util/lib/ --pattern \"*.js,!*.min.js\" --config-file=uglify.json ",
"webyarns:build:reveal-uglyfy": "uglifyjs-folder js -e -o js --pattern \"*.js,!*.min.js\" --config-file=uglify.json ",
"webyarns:build": "npm-run-all webyarns:build:*",
"webyarns:watch": "babel --extensions '.ts,.js' webyarns-util/src -d webyarns-util/lib --watch --source-maps inline",
"test-webyarns": "jest",
"tsc-webyarns": "tsc",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"serve": "http-server -c-1 -a 0.0.0.0 -p 8080 ."
},
"author": {
"name": "Hakim El Hattab",
"email": "[email protected]",
"web": "http://hakim.se"
},
"repository": {
"type": "git",
"url": "git://github.com/hakimel/reveal.js.git"
},
"engines": {
"node": "10"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@types/node": "^14.17.34",
"@types/reveal": "^3.3.33",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-remove-console": "^6.9.4",
"cy-mobile-commands": "^0.3.0",
"cypress": "^9.2.0",
"express": "^4.16.2",
"grunt": "^1.0.4",
"grunt-autoprefixer": "^3.0.4",
"grunt-cli": "^1.3.2",
"grunt-contrib-connect": "^2.0.0",
"grunt-contrib-cssmin": "^3.0.0",
"grunt-contrib-jshint": "^2.0.0",
"grunt-contrib-qunit": "^3.1.0",
"grunt-contrib-uglify": "^3.3.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-sass": "^3.0.2",
"grunt-zip": "~0.17.1",
"jest": "^24.9.0",
"load-grunt-tasks": "^4.0.0",
"mustache": "^2.3.0",
"node-sass": "^4.11.0",
"npm-run-all": "^4.1.5",
"socket.io": "^2.2.0",
"typescript": "^4.5.2",
"uglify-js": "^3.14.3"
},
"license": "MIT",
"dependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.16.0",
"howler": "^2.2.3",
"http-server": "^14.0.0",
"uglifyjs-folder": "^1.5.4"
}
}