-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
56 lines (56 loc) · 1.36 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
{
"name": "mdpdf",
"version": "3.0.4",
"description": "Markdown to PDF command line converter",
"type": "module",
"main": "./src/index.js",
"scripts": {
"lint": "prettier --trailing-comma es5 --single-quote --list-different '{src,tests,bin}/**/*.js'",
"lint-fix": "prettier --trailing-comma es5 --single-quote --list-different '{src,tests,bin}/**/*.js' --write",
"test": "mocha ./tests/index.js"
},
"bin": {
"mdpdf": "bin/index.js"
},
"files": [
"bin",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bluehatbrit/mdpdf.git"
},
"keywords": [
"markdown",
"md",
"pdf",
"converter"
],
"author": {
"name": "Elliot Blackburn",
"email": "Elliot.blackburn@gmail.com",
"url": "http://www.elliotblackburn.com"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/bluehatbrit/mdpdf/issues"
},
"homepage": "https://github.com/bluehatbrit/mdpdf#readme",
"dependencies": {
"cheerio": "1.0.0-rc.12",
"file-url": "^4.0.0",
"handlebars": "^4.7.8",
"loophole": "^1.1.0",
"meow": "^13.0.0",
"puppeteer": "^22.15.0",
"showdown": "^2.1.0",
"showdown-emoji": "^3.0.0",
"showdown-highlight": "^3.1.0"
},
"devDependencies": {
"execa": "^8.0.1",
"mocha": "^10.2.0",
"prettier": "^3.1.1",
"should": "^13.2.3"
}
}