-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 839 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 839 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
25
26
27
28
29
{
"name": "clean-code-typescript-ebook",
"version": "1.0.0",
"description": "Web ebook version of clean-code-typescript.",
"main": "index.js",
"scripts": {
"serve": "honkit serve",
"build": "honkit build",
"build:epub": "honkit epub ./ ./clean-typescript.epub",
"build:pdf": "honkit pdf ./ ./clean-typescript.pdf",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": ["typescript", "clean code", "ebook"],
"author": {
"name": "Thomas Derflinger",
"url": "https://www.tderflinger.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tderflinger/clean-code-typescript-ebook.git"
},
"bugs": {
"url": "https://github.com/tderflinger/clean-code-typescript-ebook/issues"
},
"license": "MIT",
"devDependencies": {
"honkit": "4.0.0"
}
}