-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
70 lines (70 loc) · 1.54 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
{
"name": "convert-html-to-pdf",
"description": "Convert HTML to PDF in node.js",
"version": "1.0.1",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"license": "MIT",
"authors": [
"Alex Tiley <[email protected]>"
],
"keywords": [
"convert",
"pdf",
"html",
"pdf-generator",
"pdf-conversion",
"pdf-creator",
"pdf-builder",
"puppeteer",
"wkhtmltopdf",
"html2pdf",
"html-to-pdf",
"convert-html-to-pdf",
"pdf-from-html",
"node",
"nodejs",
"javascript",
"typescript",
"ts",
"js"
],
"homepage": "https://github.com/alextiley/convert-html-to-pdf",
"repository": "https://github.com/alextiley/convert-html-to-pdf",
"bugs": "https://github.com/alextiley/convert-html-to-pdf/issues",
"scripts": {
"build": "rimraf ./lib; tsc -p tsconfig.build.json",
"prepublishOnly": "yarn build",
"start": "tsnd --respawn --transpile-only examples/index.ts",
"test": "jest"
},
"files": [
"/lib"
],
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/lodash": "^4.14.136",
"@types/node": "^12.6.8",
"@types/puppeteer": "^1.19.0",
"jest": "^24.8.0",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.2",
"ts-node-dev": "^1.0.0-pre.40",
"typescript": "^3.5.3"
},
"dependencies": {
"lodash": "^4.17.15",
"puppeteer": "^1.19.0"
},
"jest": {
"clearMocks": true,
"resetModules": true,
"restoreMocks": true,
"roots": [
"<rootDir>/src"
],
"transform": {
"^.+\\.ts?$": "ts-jest"
}
}
}