forked from alanshaw/markdown-pdf
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
48 lines (48 loc) · 1.02 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
{
"name": "html5-to-pdf",
"version": "4.0.1",
"description": "HTML5 to PDF converter",
"main": "lib/index.js",
"scripts": {
"lint": "eslint *.js ./lib/*.js ./examples/*.js"
},
"engineStrict": true,
"engines": {
"node": ">=10.18.0"
},
"repository": {
"type": "git",
"url": "[email protected]:peterdemartini/html5-to-pdf.git"
},
"license": "MIT",
"keywords": [
"html5",
"pdf",
"convert",
"template",
"generator"
],
"author": "Peter DeMartini",
"homepage": "https://github.com/peterdemartini/html5-to-pdf",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/peterdemartini/html5-to-pdf/blob/master/LICENSE"
}
],
"dependencies": {
"colors": "^1.3.3",
"commander": "^7.0.0",
"lodash": "^4.17.15",
"puppeteer": "^7.1.0"
},
"devDependencies": {
"eslint": "^7.5.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.1.0",
"prettier": "^2.0.5"
},
"bin": {
"html5-to-pdf": "./command.js"
}
}