-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 875 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 875 Bytes
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": "docusaurus-wkhtmltopdf",
"version": "1.1.4",
"description": "Extract rendered data from Docusaurus and generate PDF, the hard way",
"main": "index.js",
"bin": "index.js",
"type": "module",
"repository": "https://github.com/nuxnik/docusaurus-wkhtmltopdf",
"author": "nuxnik",
"license": "MIT",
"scripts": {
"test": "node index.js --toc -u https://docusaurus.io/docs",
"test-single": "node index.js --toc -s no-select -u https://docusaurus.io/docs",
"release": "npx release-it"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"release-it": {
"github": {
"release": true
}
},
"dependencies": {
"command-exists": "^1.2.9",
"got": "^11.8.2",
"jsdom": "^16.6.0",
"node-gs": "^0.1.1",
"pdf-merger-js": "^3.4.0",
"wkhtmltopdf": "^0.4.0",
"yargs": "^17.0.1"
}
}