-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
51 lines (51 loc) · 1.56 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
{
"name": "asciidoctor-chunker",
"version": "1.0.7",
"description": "Creates chunked (multi-page) HTML from Asciidoctor's single HTML file with supporting the fine-tuned splits in chapters, sections and any depth of subsections.",
"author": "Wataru Shito (https://github.com/wshito)",
"bin": {
"asciidoctor-chunker": "dist/asciidoctor-chunker.js"
},
"repository": {
"type": "git",
"url": "https://github.com/wshito/asciidoctor-chunker"
},
"homepage": "https://github.com/wshito/asciidoctor-chunker",
"scripts": {
"build": "webpack",
"sample": "cd test/resources; make single; cd -; node src/index.mjs test/resources/output/single/sample.html --depth 2:4,3:2 -o test/resources/output/html_chunks",
"manual": "cd example; make single; cd -; node src/index.mjs example/output-single/single/user-manual.html -o example/output-chunk/html_chunk",
"test": "npm run sample && ava --verbose",
"watch:test": "npm run sample && ava --watch",
"pack": "make",
"clean": "make clean; cd test/resources; make clean; cd ../../example; make clean; cd -"
},
"keywords": [
"asciidoctor",
"asciidoc",
"documentation",
"document",
"web",
"html",
"docbook",
"chunked html",
"markdown"
],
"license": "MIT",
"dependencies": {
"cheerio": "^1.0.0",
"commander": "^13.0.0"
},
"devDependencies": {
"ava": "^6.2.0",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-shebang-plugin": "^1.1.8"
},
"ava": {
"files": [
"test/**/test*.mjs",
"test/**/test*.js"
]
}
}