-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.12 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.12 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
{
"name": "git-going-with-github",
"version": "1.0.0",
"description": "GIT Going with GitHub - Accessible open source workshop by Community Access",
"scripts": {
"build:html": "node scripts/build-html.js",
"build:podcasts": "node podcasts/build-bundles.js && node podcasts/generate-site.js",
"build:podcast-bundles": "node podcasts/build-bundles.js",
"build:podcast-audio": "python podcasts/tts/generate_all.py",
"build:podcast-site": "node podcasts/generate-site.js",
"build": "npm run build:podcasts && npm run build:html",
"watch:html": "node scripts/build-html.js --watch",
"clean": "node -e \"require('fs').rmSync('html', {recursive: true, force: true})\"",
"test:automation": "node --test .github/scripts/__tests__/*.test.js && python -m unittest scripts.tests.test_batch_create_challenges"
},
"keywords": [
"github",
"accessibility",
"workshop",
"documentation"
],
"author": "",
"license": "CC-BY-4.0",
"devDependencies": {
"chokidar": "^3.5.3",
"github-markdown-css": "^5.5.1",
"highlight.js": "^11.9.0",
"marked": "^11.2.0"
},
"dependencies": {}
}