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
61 lines (61 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.45 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
57
58
59
60
61
{
"name": "backslide",
"version": "2.4.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 -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",
"command-exists": "^1.2.8",
"fs-extra": "^8.1.0",
"glob": "^7.1.6",
"mime": "^2.4.4",
"minimist": "^1.2.0",
"mustache": "^3.2.0",
"node-sass": "^4.13.0",
"progress": "^2.0.3",
"update-notifier": "^4.0.0",
"web-resource-inliner": "^4.3.4"
},
"devDependencies": {
"eslint": "^6.7.2",
"gh-pages": "^2.1.1"
},
"engines": {
"node": ">=7.6.0"
},
"files": [
"bin",
"starter",
"backslide.js"
]
}