-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 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
{
"name": "gitbook-pdfgen",
"version": "0.0.2",
"description": "PDF generator(s) for GitBook. Currently there is only one generator using wkhtmltopdf.",
"main": "gen_pdf_wk.js",
"bin": {
"gitbook-pdfgen": "gen_pdf_wk.js"
},
"repository": {
"type": "git",
"url": "https://github.com/lwchkg/gitbook-pdfgen.git"
},
"dependencies": {
"commander": "^2.9.0",
"file-url": "^1.1.0",
"fs-promise": "^0.5.0",
"htmltidy2": "^0.1.4",
"json-schema-defaults": "^0.1.1",
"jsonschema": "^1.1.0",
"less": "^2.5.3",
"merge": "^1.2.0",
"selectn": "^1.1.1",
"stream-to-promise": "^2.2.0",
"xmldom": "^0.1.22",
"xpath": "^0.0.23"
},
"devDependencies": {
"cross-env": "^5.0.4",
"eslint": "^4.4.1",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-prettier": "^2.1.2",
"prettier": "^1.5.3"
},
"scripts": {
"eslint": "eslint",
"eslint-check": "eslint --print-config .eslintrc | eslint-config-prettier-check",
"eslint-run": "eslint .",
"test": "yarn run eslint-run"
},
"author": "WC Leung",
"license": "Apache-2.0"
}