-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.17 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
{
"name": "docker-ws",
"version": "1.3.0",
"private": true,
"description": "The materials for the docker workshop",
"keywords": [
"workshop",
"docker"
],
"homepage": "https://github.com/terrestris/docker-ws#readme",
"bugs": {
"url": "https://github.com/terrestris/docker-ws/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/terrestris/docker-ws.git"
},
"license": "MIT",
"author": "terrestris GmbH & Co.KG",
"scripts": {
"archive": "npm run build && zip -r materials.zip materials/ && mv materials.zip build/ && cd build && zip -r docker-ws.zip docker-ws docker-ws_*.pdf docker-ws_*.epub",
"build": "npm run clean && npm run doc:build && npm run doc:pdf && cd build/docker-ws",
"clean": "rm -rf src/_book build",
"doc:build": "honkit build src build/docker-ws",
"doc:pdf": "honkit pdf src build/docker-ws.pdf",
"doc:serve": "honkit serve src"
},
"devDependencies": {
"@commitlint/cli": "^19.2.0",
"@commitlint/config-conventional": "^19.1.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"honkit": "^5.1.4",
"semantic-release": "^23.0.4"
}
}