-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.14 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.14 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
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
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "bookpub",
"version": "1.0.0",
"description": "A lightweight book publishing framework cli providing customizable pipelines with stages that can be stacked like legos to create any type/number of publishable assets you need from only one manuscript source, from basic html to buetifully type-set, print-house-ready books.",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node bin/bookpub.js",
"test:unit": "vitest",
"test:features": "cucumber-js --require tests/steps/**/*.js tests/features/**/*.feature"
},
"bin": {
"bookpub": "./bin/bookpub.js",
"create-bookpub-project": "./bin/create-bookpub-project.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.1",
"ejs": "^3.1.8",
"express": "^5.1.0",
"fs-extra": "^11.1.1",
"inquirer": "^9.2.3",
"js-yaml": "^4.1.0",
"sass": "^1.57.0",
"ws": "^8.18.3",
"yaml": "^2.8.0"
},
"devDependencies": {
"@babel/core": "^7.26.8",
"@babel/preset-env": "^7.26.8",
"@cucumber/cucumber": "^11.2.0",
"babel-jest": "^29.7.0",
"browser-sync": "^3.0.3",
"chai": "^4.3.7",
"chai-fs": "^2.0.0",
"cheerio": "^1.0.0",
"chokidar": "^4.0.3",
"esdoc": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"execa": "^9.5.2",
"jest": "^29.7.0",
"live-server": "^1.2.2",
"mocha": "^10.2.0",
"mock-stdin": "^1.0.0",
"open": "^10.1.0",
"puppeteer": "^24.2.0",
"vitest": "^3.0.5"
},
"files": [
"bin",
"src",
"test"
],
"engine": {
"node": ">=14.0.0"
},
"status": "BETA"
}