forked from simonhaenisch/md-to-pdf
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 1.95 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 1.95 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": "md-to-pdf",
"version": "2.8.2",
"description": "CLI tool for converting Markdown files to PDF.",
"keywords": [
"markdown-to-pdf",
"cli",
"pdf-generation",
"documentation",
"assignments",
"homework",
"markdown",
"pdf",
"puppeteer",
"headless-chrome"
],
"engines": {
"node": ">= 8.3.0"
},
"main": "index.js",
"scripts": {
"start": "node . --help",
"test": "xo && nyc ava test/lib.spec.js && ava test/api.spec.js && ava test/cli.spec.js",
"release": "npx standard-version --infile=changelog.md && git push --follow-tags origin master && npm publish"
},
"bin": {
"md-to-pdf": "./cli.js",
"md2pdf": "./cli.js"
},
"author": "Simon Haenisch (https://simonhaenisch.com)",
"license": "Unlicense",
"repository": "simonhaenisch/md-to-pdf",
"homepage": "https://github.com/simonhaenisch/md-to-pdf#readme",
"dependencies": {
"arg": "4.1.1",
"chalk": "2.4.2",
"chokidar": "3.1.0",
"get-port": "5.0.0",
"gray-matter": "4.0.2",
"highlight.js": "9.15.10",
"iconv-lite": "0.5.0",
"listr": "0.14.3",
"marked": "0.7.0",
"puppeteer": "2.0.0",
"serve-handler": "6.1.1"
},
"devDependencies": {
"ava": "1.4.1",
"husky": "2.3.0",
"nyc": "14.1.1",
"prettier": "1.17.1",
"tap-xunit": "2.3.0",
"xo": "0.24.0"
},
"husky": {
"hooks": {
"post-merge": "git diff-tree -r --name-only --no-commit-id ORIG_HEAD HEAD | grep --quiet package-lock.json && npm install"
}
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": true,
"bracketSpacing": true
},
"xo": {
"prettier": true,
"rules": {
"camelcase": [
"error",
{
"properties": "never"
}
],
"capitalized-comments": "off",
"valid-jsdoc": [
"warn",
{
"requireReturnType": false
}
]
}
}
}