-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathpackage.json
69 lines (69 loc) · 1.77 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "limedocs-wiki-converter",
"version": "0.1.12",
"description": "Generate HTML & PDF documentation from you Github wiki or any other markdown-based wiki",
"keywords": [
"wiki",
"wiki converter",
"wiki convert",
"wiki2html",
"md2html",
"markdown2html",
"github2html",
"github wiki to html",
"wiki to html",
"md to html",
"markdown to html",
"github to html",
"github wiki to html",
"wiki2pdf",
"md2pdf",
"markdown2pdf",
"github2pdf",
"github wiki to 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"
},
"bin": {
"lwc": "dist/cli/lwc.js"
},
"engines": {
"node": ">= 0.10",
"iojs": ">= 1.0"
},
"author": "Matthias ETIENNE <matthias@etienne.in> (https://github.com/mattallty)",
"license": "MIT",
"dependencies": {
"bluebird": "^2.9.34",
"bootstrap": "^3.3.5",
"commander": "^2.8.1",
"datauri": "^1.0.5",
"defaults": "^1.0.2",
"fs-extra": "^0.23.1",
"highlight.js": "^8.7.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"
}
}