forked from sinedied/backslide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.29 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
{
"name": "backslide",
"version": "2.3.0",
"description": "CLI tool for making HTML presentations with Remark.js using Markdown",
"repository": "sinedied/backslide",
"keywords": [
"cli",
"markdown",
"html",
"slideshow",
"presentation",
"slides",
"remark",
"server",
"utility",
"pdf",
"decktape",
"sass"
],
"author": "Yohan Lasorsa",
"license": "MIT",
"main": "backslide.js",
"bin": {
"bs": "./bin/bs"
},
"scripts": {
"init": "cp -Rf starter/template template",
"start": "npm run init -s && node ./bin/bs serve example",
"clean": "rm -rf .tmp dist template",
"test": "eslint *.js",
"export": "npm run init -s && node ./bin/bs export example",
"deploy": "npm run clean && npm run export && gh-pages -d dist",
"postpublish": "git tag -a $npm_package_version -m '$npm_package_version' && git push --tags"
},
"dependencies": {
"browser-sync": "^2.18.13",
"decktape": "^2.4.3",
"fs-extra": "^4.0.2",
"glob": "^7.1.2",
"inliner": "^1.12.5",
"minimist": "^1.2.0",
"mustache": "^2.3.0",
"node-sass": "^4.5.3",
"progress": "^2.0.0",
"update-notifier": "^2.3.0"
},
"devDependencies": {
"eslint": "^4.9.0",
"gh-pages": "^1.0.0"
},
"engines": {
"node": ">=7.6.0"
}
}