-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.31 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.31 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
{
"name": "structuring-your-presentation",
"version": "1.0.0",
"description": "Presentation for San Diego JS speaker workshop about how to structure the content for a talk and make it more interesting.",
"config": {
"source_dir": "./source",
"build_dir": "./build",
"pdf_path": "./build/slides.pdf"
},
"scripts": {
"init": "prez $npm_package_config_source_dir $npm_package_config_build_dir --init",
"present": "prez $npm_package_config_source_dir $npm_package_config_build_dir --serve",
"dev": "prez $npm_package_config_source_dir $npm_package_config_build_dir --serve --watch $npm_package_config_pdf_path",
"watch": "prez $npm_package_config_source_dir $npm_package_config_build_dir --watch",
"print": "prez $npm_package_config_source_dir $npm_package_config_build_dir --print $npm_package_config_pdf_path"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/startersacademy/structuring-your-presentation.git"
},
"keywords": [
"presentation",
"meetup"
],
"author": "Todd Bashor",
"license": "MIT",
"bugs": {
"url": "https://github.com/startersacademy/structuring-your-presentation/issues"
},
"homepage": "https://github.com/startersacademy/structuring-your-presentation#readme",
"dependencies": {
"prez": "^4.4.0"
}
}