forked from sindresorhus/gulp-markdown
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 876 Bytes
/
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": "gulp-markdown2bootstrap",
"version": "0.0.3",
"description": "markdown to html bootstrap page converter",
"license": "MIT",
"repository": "mitsuruog/gulp-markdown2bootstrap",
"author": "mitsuruog",
"engines": {
"node": ">=4.2"
},
"scripts": {
"test": "mocha"
},
"files": [
"index.js",
"template"
],
"keywords": [
"gulpplugin",
"markdown",
"marked",
"md",
"compile",
"convert",
"markup",
"html",
"bootstrap",
"twb"
],
"dependencies": {
"gulp-util": "^3.0.0",
"highlight.js": "^9.0.0",
"jade": "^1.11.0",
"marked": "^0.3.2",
"merge": "^1.2.0",
"through2": "^2.0.0"
},
"devDependencies": {
"del": "^2.2.0",
"gulp-gh-pages": "^0.5.4",
"gulp-rename": "^1.2.2",
"gulp-wrapper": "^1.0.0",
"mocha": "*",
"run-sequence": "^1.1.5"
}
}