-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
26 lines (26 loc) · 921 Bytes
/
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
{
"name": "pitc-revealjs-theme",
"version": "1.0.0",
"description": "Revealjs theme based upon the Puzzle style guide",
"scripts": {
"start": "npm-run-all --parallel watch reveal-md",
"watch": "sass --watch theme/source/puzzle.scss theme/puzzle.css",
"build": "sass theme/source/puzzle.scss theme/puzzle.css && npm run static",
"reveal-md": "reveal-md demo.md --watch --theme theme/puzzle.css",
"static": "reveal-md demo.md --static --theme theme/puzzle.css && cp -r imgs _static/_assets"
},
"repository": {
"type": "git",
"url": "git+https://github.com/puzzle/pitc-revealjs-theme.git"
},
"author": "Lorenz Bischof",
"bugs": {
"url": "https://github.com/puzzle/pitc-revealjs-theme/issues"
},
"homepage": "https://github.com/puzzle/pitc-revealjs-theme#readme",
"devDependencies": {
"sass": "^1.69.5",
"npm-run-all": "^4.1.5",
"reveal-md": "^6.0.0"
}
}