-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 940 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
27
28
29
30
31
32
33
{
"name": "sp23-ta-section",
"version": "1.0.0",
"description": "This repository contains slides and other materials that the TAs cover at sections.",
"main": "index.mjs",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "run-s build:html build:pdf build:index",
"build:html": "marp",
"build:pdf": "marp --pdf --allow-local-files",
"build:index": "node index.mjs",
"dev": "marp -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UCSC-CSE-130/sp23-ta-section.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/UCSC-CSE-130/sp23-ta-section/issues"
},
"homepage": "https://github.com/UCSC-CSE-130/sp23-ta-section#readme",
"devDependencies": {
"@marp-team/marp-cli": "^2.5.0",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.0"
},
"marp": {
"inputDir": "./slides",
"output": "./public"
}
}