forked from simonhaenisch/md-to-pdf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.5 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
{
"name": "md-to-pdf",
"version": "2.1.5",
"description": "CLI tool for converting Markdown files to PDF",
"keywords": [
"documentation",
"assignments",
"homework",
"markdown",
"pdf",
"pdf-generation",
"markdown-to-pdf"
],
"engines": {
"node": ">= 8.3.0"
},
"main": "index.js",
"scripts": {
"start": "node . --help",
"test": "xo && nyc ava"
},
"bin": {
"md-to-pdf": "./index.js",
"md2pdf": "./index.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": "2.0.0",
"chalk": "2.4.1",
"get-port": "4.0.0",
"gray-matter": "4.0.1",
"highlight.js": "9.12.0",
"iconv-lite": "0.4.24",
"marked": "0.5.0",
"ora": "3.0.0",
"puppeteer": "1.8.0",
"serve-handler": "5.0.2"
},
"devDependencies": {
"ava": "0.25.0",
"husky": "1.0.0-rc.13",
"nyc": "13.0.1",
"xo": "0.23.0"
},
"husky": {
"hooks": {
"post-merge": "git diff-tree -r --name-only --no-commit-id ORIG_HEAD HEAD | grep --quiet package.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
}
]
}
}
}