forked from meff34/docsify-to-pdf-converter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.06 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
{
"name": "docsify-pdf-converter",
"version": "2.1.0-beta.0",
"description": "A magical pdf generator for docsify projects.",
"main": "index.js",
"author": {
"name": "Ivan Gorbunov",
"email": "meff34@gmail.com",
"url": "https://github.com/meff34"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meff34/docsify-to-pdf-converter.git"
},
"bin": {
"converter": ".bin/cli.js",
"docsify-pdf-converter": ".bin/cli.js"
},
"scripts": {
"patch-release": "npm version patch && npm publish && git push --follow-tags"
},
"keywords": [
"docsify",
"pdf",
"converter",
"cli"
],
"license": "ISC",
"dependencies": {
"colors": "^1.3.3",
"docsify-cli": "^4.3.0",
"find-free-port": "^2.0.0",
"is-url": "^1.2.4",
"lodash": "^4.17.11",
"markdown-link-extractor": "^1.2.0",
"puppeteer": "^1.12.2",
"rcfile": "^1.0.3",
"remark-parse": "^6.0.3",
"rimraf": "^2.6.3",
"unified": "^7.1.0",
"yesno": "^0.2.0"
},
"devDependencies": {
"prettier": "^1.15.3"
}
}