forked from sinedied/backslide
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.38 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
{
"name": "backslide",
"version": "2.3.7",
"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 -R starter/template template",
"start": "npm run init -s && node ./bin/bs serve example",
"clean": "rm -rf .tmp dist pdf template",
"test": "eslint *.js",
"export": "npm run init -s && node ./bin/bs export example",
"pdf": "npm run init -s && node ./bin/bs pdf 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.26.7",
"decktape": "^2.9.3",
"fs-extra": "^8.1.0",
"glob": "^7.1.4",
"inliner": "^1.13.1",
"mime": "^2.4.4",
"minimist": "^1.2.0",
"mustache": "^3.1.0",
"node-sass": "^4.12.0",
"progress": "^2.0.3",
"update-notifier": "^3.0.1"
},
"devDependencies": {
"eslint": "^6.5.1",
"gh-pages": "^2.1.1"
},
"engines": {
"node": ">=7.6.0"
}
}