-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.09 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.09 KB
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
{
"name": "@maiscrm/vuepress-plugin-exportpdf",
"description": "Export your VuePress site to a PDF file with outline",
"main": "index.js",
"keywords": [
"vuepress",
"vuepress-plugin",
"pdf",
"outline",
"pdf-lib"
],
"files": [
"libs",
"index.js"
],
"scripts": {
"exportpdf": "vuepress exportpdf example",
"test": "jest",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "https://github.com/maiscrm/vuepress-plugin-exportpdf"
},
"homepage": "https://github.com/maiscrm/vuepress-plugin-exportpdf",
"license": "MIT",
"dependencies": {
"pdf-lib": "^1.9.0",
"puppeteer": "^1.11.0"
},
"devDependencies": {
"conventional-changelog-cli": "^2.0.1",
"cz-conventional-changelog": "^3.3.0",
"jest": "23.6.0",
"release-it": "v7.4.8",
"vuepress": "^1.0.0-alpha.44"
},
"jest": {
"testEnvironment": "node"
},
"peerDependencies": {
"vuepress": ">=1.0.0-alpha.44"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"version": "0.1.3"
}