-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.38 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "pub-quiz-generator",
"version": "0.1.1",
"type": "module",
"description": "Write a pub quiz as YAML, compile into HTML presentation",
"main": "index.js",
"files": [
"index.js",
"src",
"templates",
"LICENSE",
"README.md"
],
"scripts": {
"lint": "eslint .",
"clean": "rimraf -rf ./output",
"build-quiz": "node index.js -d ./example -o ./output",
"copy-media": "cp -r ./example/media ./output",
"copy-revealjs": "mkdirp ./output/reveal.js/ && cp -r ./node_modules/reveal.js/dist ./output/reveal.js/dist && cp -r ./node_modules/reveal.js/plugin ./output/reveal.js/",
"test": "npm run build-quiz",
"build": "npm run clean && npm run build-quiz && npm run copy-media && npm run copy-revealjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pfirpfel/pub-quiz-generator.git"
},
"author": "Michael Kuenzli",
"license": "MIT",
"bugs": {
"url": "https://github.com/pfirpfel/pub-quiz-generator/issues"
},
"homepage": "https://github.com/pfirpfel/pub-quiz-generator#readme",
"dependencies": {
"ejs": "^3.1.10",
"js-yaml": "^4.1.0",
"reveal.js": "^5.1.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"eslint": "^9.14.0",
"rimraf": "^6.0.1",
"mkdirp": "^3.0.1"
},
"optionalDependencies": {
"binary-version-check": "^6.1.0",
"youtube-dl-exec": "^3.0.10"
}
}