-
-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
84 lines (84 loc) · 2.21 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "html-pdf-chrome",
"version": "0.8.4",
"description": "HTML to PDF and image converter via Chrome/Chromium",
"main": "dist/index.js",
"scripts": {
"all": "npm run clean && npm run build && npm run lint && npm run test",
"build": "tsc",
"clean": "rimraf coverage dist",
"lint": "eslint .",
"prepublishOnly": "npm run clean && npm run build && npm run test",
"test": "nyc mocha"
},
"author": "Seth Westphal <[email protected]> (http://www.sethwestphal.com/)",
"homepage": "https://github.com/westy92/html-pdf-chrome",
"funding": "https://github.com/sponsors/westy92",
"repository": {
"type": "git",
"url": "git://github.com/westy92/html-pdf-chrome"
},
"bugs": {
"url": "https://github.com/westy92/html-pdf-chrome/issues"
},
"keywords": [
"html",
"pdf",
"html-pdf",
"chrome",
"chromium",
"headless",
"typescript",
"windows",
"mac",
"linux",
"markdown",
"screenshot",
"image",
"nodejs"
],
"license": "MIT",
"typings": "dist/index.d.ts",
"engines": {
"node": ">= 18"
},
"dependencies": {
"@types/chrome-remote-interface": "^0.31.9",
"chrome-launcher": "^0.15.1",
"chrome-remote-interface": "^0.33.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^10.0.0",
"@types/chai": "^4.0.1",
"@types/chai-string": "^1.1.30",
"@types/mocha": "^10.0.1",
"@types/mock-fs": "^4.10.0",
"@types/node": "^22.0.2",
"@types/pixelmatch": "^5.2.4",
"@types/pngjs": "^6.0.1",
"@types/proxyquire": "^1.3.28",
"@types/sinon": "^17.0.2",
"@types/sinon-chai": "^3.2.0",
"@types/source-map-support": "^0.5.3",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"chai": "^4.1.0",
"chai-string": "^1.3.0",
"eslint": "^9.9.0",
"get-port": "^5.0.0",
"mocha": "^10.0.0",
"mock-fs": "^5.0.0",
"nyc": "^17.0.0",
"pdfjs-dist": "^3.6.172",
"pixelmatch": "^5.3.0",
"pngjs": "^7.0.0",
"proxyquire": "^2.1.3",
"rimraf": "^6.0.1",
"sinon": "^19.0.2",
"sinon-chai": "^3.0.0",
"source-map-support": "^0.5.19",
"ts-node": "^10.0.0",
"typescript": "^5.0.2"
}
}