-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 1.94 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "bookpub",
"version": "0.3.5",
"description": "An advanced book typesetting and publishing framework for publishing houses. Bookpub manages a manuscript-to-market toolchain allowing publishing firms and their authors to track one markdown-based manuscript source which can be built into any format, and can be professionally typeset for print with HTML, CSS and Javascript.",
"main": "index.js",
"type": "module",
"scripts": {
"test": "mocha --require esm --extension js --recursive test",
"test:clean": "rimraf build/* test/build/* test/archives/*",
"package-release": "node ./lib/package-release.js"
},
"bin": {
"bookpub": "./cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/worlduniting/bookpub.git"
},
"keywords": [
"book",
"publishing",
"author",
"self-publish",
"html",
"Github Flavored Markdown",
"markdown",
"remark",
"javascript",
"toolchain",
"manuscript",
"conversion",
"html-to-pdf",
"pdf",
"epub",
"mobi"
],
"author": "Rev. Dave Thompson",
"license": "WUI-LICENSE",
"bugs": {
"url": "https://github.com/worlduniting/bookpub/issues"
},
"homepage": "https://github.com/worlduniting/bookpub#readme",
"dependencies": {
"chalk": "^5.2.0",
"commander": "^10.0.0",
"ejs": "^3.1.9",
"ejs-lint": "^2.0.0",
"fs-extra": "^11.1.1",
"inquirer": "^9.1.5",
"install": "^0.13.0",
"js-yaml": "^4.1.0",
"moment": "^2.29.4",
"nodemon": "^2.0.22",
"npm": "^9.6.2",
"remark-gfm": "^3.0.1",
"remark-html": "^15.0.2",
"remark-parse": "^10.0.1",
"sass": "^1.60.0",
"smartypants": "^0.1.6",
"tar": "^6.1.14",
"unified": "^10.1.2",
"webpack": "^5.76.3",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.1"
},
"devDependencies": {
"chai": "^4.3.7",
"esm": "^3.2.25",
"execa": "^7.1.1",
"mocha": "^10.2.0"
},
"status": "ALPHA"
}