-
-
Notifications
You must be signed in to change notification settings - Fork 5.8k
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 1.08 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
{
"name": "docker_practice",
"version": "1.9.2",
"description": "docker_practice",
"private": true,
"devDependencies": {
"@mermaid-js/mermaid-cli": "11.16.0"
},
"scripts": {
"test": "node scripts/check_metadata.js && python3 -m unittest tools.test_prepare_pdf_sources && python3 -m unittest discover -s tests -p 'test_*.py' && python3 tools/test_examples.py",
"mdpress:help": "mdpress --help",
"build": "rm -rf _site && mdpress build --format site --output _site",
"serve": "mdpress serve",
"start": "mdpress serve",
"pdf": "rm -rf /tmp/docker_practice-pdf-src && python3 tools/prepare_pdf_sources.py --book-dir . --out /tmp/docker_practice-pdf-src && cd /tmp/docker_practice-pdf-src && mdpress build --format pdf --output \"${INIT_CWD:-$PWD}/docker_practice.pdf\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/yeasy/docker_practice.git"
},
"author": "",
"license": "CC-BY-NC-SA-4.0",
"bugs": {
"url": "https://github.com/yeasy/docker_practice/issues"
},
"homepage": "https://github.com/yeasy/docker_practice#readme"
}