forked from elliotblackburn/mdpdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.31 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
{
"name": "mdpdf",
"version": "2.0.7",
"description": "Markdown to PDF command line converter",
"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": "[email protected]",
"url": "http://www.elliotblackburn.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/bluehatbrit/mdpdf/issues"
},
"homepage": "https://github.com/bluehatbrit/mdpdf#readme",
"dependencies": {
"bluebird": "^3.4.7",
"cheerio": "^0.22.0",
"file-url": "^2.0.2",
"handlebars": "^4.5.3",
"loophole": "^1.1.0",
"meow": "^5.0.0",
"prettier": "^1.15.3",
"puppeteer": "^2.0.0",
"showdown": "^1.9.1",
"showdown-emoji": "^1.0.3"
},
"devDependencies": {
"execa": "^0.6.3",
"mocha": "^6.2.2",
"should": "^11.2.1"
}
}