forked from The-DevOps-Daily/devops-daily
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
24 lines (24 loc) · 958 Bytes
/
composer.json
File metadata and controls
24 lines (24 loc) · 958 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "bobbyiliev/101-linux-commands",
"description": "101 Linux Commands Open-source eBook",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Bobby Iliev and the Hacktoberfest community",
"email": "bobby@bobbyiliev.com"
}
],
"require": {
"php": ">=8.1",
"hi-folks/ibis-next": "^1.0"
},
"scripts": {
"pdf": "vendor/bin/ibis-next pdf -c ebook/en/content -d ebook/en",
"pdf-dark": "vendor/bin/ibis-next pdf dark -c ebook/en/content -d ebook/en",
"epub": "vendor/bin/ibis-next epub -c ebook/en/content -d ebook/en",
"html": "vendor/bin/ibis-next html -c ebook/en/content -d ebook/en && cp ebook/en/export/101-linux-commands.html index.html",
"sample": "vendor/bin/ibis-next sample -c ebook/en/content -d ebook/en",
"sample-dark": "vendor/bin/ibis-next sample dark -c ebook/en/content -d ebook/en"
}
}