-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
35 lines (35 loc) · 857 Bytes
/
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
{
"name": "php-chrome-html2pdf",
"version": "1.8.0",
"description": "A PHP library for converting HTML to PDF using Google Chrome.",
"main": "index.js",
"type": "module",
"directories": {
"test": "tests/js"
},
"engines": {
"node": ">=18.20.1"
},
"dependencies": {
"commander": "^9.2.0",
"get-stdin": "^9.0.0",
"puppeteer": "^22.11"
},
"devDependencies": {
"chai": "^4.3.6",
"mocha": "^10.0.0"
},
"scripts": {
"test": "mocha --timeout=10000 tests/js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spiritix/php-chrome-html2pdf.git"
},
"author": "Matthias Isler <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/spiritix/php-chrome-html2pdf/issues"
},
"homepage": "https://github.com/spiritix/php-chrome-html2pdf#readme"
}