forked from webpro/reveal-md
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.05 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
{
"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": "0.1.2",
"repository": {
"type": "git",
"url": "git://github.com/webpro/reveal-md.git"
},
"license": "MIT",
"bin": {
"reveal-md": "bin/cli.js"
},
"scripts": {
"test": "mocha",
"lint": "eslint bin lib",
"fix": "eslint bin lib --fix"
},
"dependencies": {
"bluebird": "^3.4.7",
"commander": "2.9.0",
"express": "4.14.1",
"fs-extra": "^2.0.0",
"glob": "7.1.1",
"got": "^6.7.1",
"highlight.js": "9.9.0",
"livereload": "^0.6.0",
"lodash": "^4.17.4",
"mustache": "2.3.0",
"open": "0.0.5",
"reveal.js": "3.4.1",
"yaml-front-matter": "^3.4.0"
},
"devDependencies": {
"debug": "^2.6.1",
"eslint": "^3.15.0",
"eslint-plugin-import": "^2.2.0",
"expect": "^1.20.2",
"mocha": "^3.2.0"
},
"engines": {
"node": ">=4"
}
}