forked from yakivmospan/github-wikito-converter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.08 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "github-wikito-converter",
"version": "1.5.2",
"description": "Generate HTML & PDF documentation from Github wiki or any other markdown-based wiki.",
"keywords": [
"wiki",
"wikito",
"wiki to",
"wiki converter",
"wiki convert",
"wiki to converter",
"wikito converter",
"wiki2html",
"md2html",
"markdown2html",
"github2html",
"github wiki to html",
"github wikito html",
"wiki to html",
"md to html",
"markdown to html",
"github to html",
"github wiki to html",
"wiki2pdf",
"md2pdf",
"markdown2pdf",
"github2pdf",
"github wikito pdf",
"github wiki to pdf",
"wikito pdf",
"wiki to pdf",
"md to pdf",
"markdown to pdf",
"github to pdf",
"github wiki to pdf"
],
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha --recursive test/unit",
"coverage": "node --harmony --harmony_arrow_functions ./node_modules/istanbul/lib/cli.js cover ./node_modules/.bin/_mocha --report html -- -R spec --recursive test/unit",
"build": "rm -rf dist/* && ./node_modules/.bin/babel src --out-dir dist --source-maps",
"build-and-install-g": "npm run build && npm install -g"
},
"bin": {
"gwtc": "dist/cli/gwtc.js"
},
"engines": {
"node": ">= 0.10",
"iojs": ">= 1.0"
},
"author": "Yakiv Mospan <yakiv.mospan@gmail.com> (https://github.com/yakivmospan)",
"repository": {
"type": "git",
"url": "https://github.com/yakivmospan/github-wikito-converter"
},
"license": "MIT",
"dependencies": {
"bluebird": "^2.9.34",
"bootstrap": "^3.3.7",
"commander": "^2.8.1",
"datauri": "^1.0.5",
"defaults": "^1.0.2",
"fs-extra": "^0.23.1",
"highlight.js": "^9.12.0",
"jquery": "^2.1.4",
"marked": "^0.3.6",
"node-dir": "^0.1.9",
"open": "0.0.5",
"winston": "^1.0.1",
"wkhtmltopdf": "^0.1.5"
},
"devDependencies": {
"babel": "^5.8.21",
"babel-core": "^5.8.23",
"eslint": "^1.2.1",
"istanbul": "^0.3.19",
"mocha": "^2.2.5",
"require-dir": "^0.3.0",
"should": "^7.0.4"
}
}