forked from lundegaard/gatsby-plugin-pdf
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 792 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
{
"name": "gatsby-plugin-pdf",
"version": "0.0.1",
"license": "MIT",
"main": "index.js",
"repository": "https://github.com/lundegaard/gatsby-plugin-pdf",
"contributors": [
"Jakub Kohout <[email protected]>"
],
"description": "HTML to PDF generator",
"engines": {
"node": ">=10.18"
},
"keywords": [
"pdf",
"gatsby",
"gatsby-plugin",
"gatsby-plugin-pdf"
],
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1"
},
"dependencies": {
"fs-extra": "^9.0.1",
"puppeteer": "^5.4.1"
},
"scripts": {
"build": "babel src --out-dir . --ignore **/*.test.js --root-mode upward",
"start": "babel -w src --out-dir . --ignore **/*.test.js --root-mode upward"
}
}