-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1009 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
36
37
38
39
40
41
42
43
44
45
{
"name": "@myunisoft/html-to-pdf",
"version": "1.6.2",
"description": "Node lib for converts HTML with dynamic or static content or url to PDF files",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MyUnisoft/HTMLToPDF.git"
},
"publishConfig": {
"@myunisoft:registry": "https://registry.npmjs.org/"
},
"files": [
"dist"
],
"keywords": [
"node",
"html",
"pdf",
"parser"
],
"author": "HALLAERT Nicolas <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.0.3",
"jest": "^27.4.4",
"ts-jest": "^27.1.1",
"typescript": "^4.5.3"
},
"bugs": {
"url": "https://github.com/MyUnisoft/HTML-PDF/issues"
},
"homepage": "https://github.com/MyUnisoft/HTML-PDF#readme",
"directories": {
"test": "test"
},
"dependencies": {
"puppeteer": "^17.1.3"
}
}