forked from simonhaenisch/md-to-pdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 1.84 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
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "md-to-pdf",
"version": "2.6.1",
"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",
"release": "np --standard-version --changelog-file=changelog.md"
},
"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.0",
"chalk": "2.4.2",
"chokidar": "2.0.4",
"get-port": "4.1.0",
"gray-matter": "4.0.2",
"highlight.js": "9.13.1",
"iconv-lite": "0.4.24",
"listr": "0.14.3",
"marked": "0.6.0",
"puppeteer": "1.11.0",
"serve-handler": "5.0.7"
},
"devDependencies": {
"ava": "1.1.0",
"husky": "1.3.1",
"nyc": "13.1.0",
"prettier": "1.16.0",
"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
}
]
}
}
}