This repository has been archived by the owner on May 15, 2021. It is now read-only.
forked from hakimel/reveal.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.15 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
76
77
78
79
80
{
"name": "@h3/reveal",
"version": "1.1.1",
"description": "The Web-Based Presentation Framework",
"homepage": "https://github.com/HackerHappyHour/reveal",
"main": "js/reveal.js",
"scripts": {
"cm": "git-cz",
"test": "grunt test",
"start": "grunt serve",
"build": "grunt"
},
"contributors": [
{
"name": "Hakim El Hattab",
"email": "[email protected]",
"web": "http://hakim.se"
},
{
"name": "Nick Shine",
"email": "[email protected]",
"url": "https://github.com/nickshine"
},
{
"name": "Brian Vanderbusch",
"email": "[email protected]",
"web": "http://github.com/LongLiveCHIEF"
}
],
"repository": {
"type": "git",
"url": "https://github.com/HackerHappyHour/reveal.git"
},
"bugs": "https://github.com/HackerHappyHour/reveal/issues",
"engines": {
"node": ">=9.0.0"
},
"devDependencies": {
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/commit-analyzer": "^6.1.0",
"@semantic-release/exec": "^3.3.2",
"@semantic-release/git": "^7.0.8",
"@semantic-release/github": "^5.2.10",
"@semantic-release/npm": "^5.1.7",
"@semantic-release/release-notes-generator": "^7.1.6",
"commitizen": "^4.0.0",
"cz-conventional-changelog": "^3.0.0",
"express": "^4.17.0",
"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.1.0",
"grunt-contrib-qunit": "^3.1.0",
"grunt-contrib-uglify": "^4.0.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-sass": "^3.0.2",
"grunt-zip": "~0.18.2",
"husky": "^3.0.0",
"load-grunt-tasks": "^5.0.0",
"mustache": "^3.0.1",
"node-sass": "^4.11.0",
"semantic-release": "^15.13.12",
"socket.io": "^2.2.0"
},
"license": "MIT",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}