-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
72 lines (72 loc) · 2.11 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
{
"name": "@knennigtri/merge-markdown",
"version": "2.1.0",
"description": "Prepare input files to merge together and optionally output html/pdf presentation",
"repository": {
"type": "git",
"url": "git@github.com:knennigtri/merge-markdown.git"
},
"author": "Kevin Nennig <nen.devpr@gmail.com>",
"scripts": {
"preversion": "git fetch --tags && npm run lint:fix && npm run test:noLogs",
"version": "npm audit fix && npm run build",
"postversion": "git push --follow-tags",
"lint": "eslint '**/*.js?(x)'",
"lint:fix": "npm run lint -- --fix",
"test": "node test/test.js",
"test:noLogs": "node test/test.js -- --hideconsole",
"build": "npm run readmeTOC && npm ci && npm i --package-lock-only && depcheck ./",
"readmeTOC": "doctoc README.md --github --title='# Contents'",
"local": "npm pack",
"release:bugfix": "npm version patch && publish:bugfix",
"publish:bugfix": "npm publish --tag bugfix",
"wkhtmltopdf": "wkhtmltopdf -T 1in -B 1in -L .7in -R .7in --page-size Letter --footer-line --footer-center 'Page [page]' --enable-local-file-access --disable-smart-shrinking test/pdf/src/merged/presentationAdded.html test/pdf/src/merged/presentationAdded.pdf"
},
"main": "index.js",
"keywords": [
"markdown",
"merge",
"toc",
"removeYAML",
"noYAML",
"YAML",
"JSON",
"manifest",
"doctoc",
"pandoc",
"wkhtmltopdf",
"markdown-link-check",
"presentation",
"pdf",
"html"
],
"license": "ISC",
"dependencies": {
"concat": "^1.0.3",
"debug": "^4.3.4",
"dockerode": "^4.0.2",
"doctoc": "^2.2.0",
"js-yaml": "^4.1.0",
"markdown-link-check": "^3.12.1",
"minimist": "^1.2.6",
"mkdirp": "^3.0.1",
"node-pandoc": "^0.3.0",
"tar": "^7.1.0",
"valid-url": "^1.0.9",
"wkhtmltopdf": "^0.4.0"
},
"bin": {
"merge-markdown": "bin/global.js"
},
"preferGlobal": true,
"directories": {
"test": "test"
},
"bugs": {
"url": "https://github.com/knennigtri/merge-markdown/issues/new/choose"
},
"devDependencies": {
"depcheck": "^1.4.3",
"eslint": "^8.24.0"
}
}