forked from westmonroe/pdf-puppeteer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.38 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
{
"name": "pdf-puppeteer",
"version": "1.1.10",
"description": "A simple NPM package to convert html to pdf for Node applications by using Puppeteer",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/westmonroe/pdf-puppeteer.git"
},
"keywords": [
"pdf",
"puppeteer",
"html",
"html-to-pdf",
"pdf-from-html",
"chrome",
"pdf-generator",
"node",
"nodejs",
"pdf-creator",
"generate",
"generator",
"pdf-puppeteer",
"puppeteer-pdf"
],
"author": "Joe Higgs",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/westmonroe/pdf-puppeteer/issues"
},
"homepage": "https://github.com/westmonroe/pdf-puppeteer#readme",
"dependencies": {
"puppeteer": "^1.20.0"
},
"devDependencies": {
"@babel/preset-env": "^7.5.4",
"babel-core": "^6.26.3",
"babel-jest": "^22.4.3",
"babel-preset-env": "^1.7.0",
"jest": "^24.9.0"
},
"prettier": {
"tabWidth": 4,
"singleQuote": true
},
"engines": {
"node": ">=7.6"
},
"engineStrict": true,
"jest": {
"verbose": true,
"testURL": "http://localhost/"
}
}