forked from sparkartgroup/gulp-markdown-to-json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.5 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
70
{
"name": "gulp-markdown-to-json",
"version": "1.0.2",
"description": "Parse Markdown + YAML, compile Markdown to HTML, wrap it in JSON.",
"license": "MIT",
"bugs": {
"url": "https://github.com/sparkartgroup/gulp-markdown-to-json/issues"
},
"author": {
"name": "Eric Lanehart",
"email": "[email protected]",
"url": "http://developers.sparkart.com"
},
"repository": {
"type": "git",
"url": "https://github.com/sparkartgroup/gulp-markdown-to-json.git"
},
"engines": {
"node": ">=4.4.7"
},
"scripts": {
"lint": "semistandard **/*.js",
"test": "lab -lv lib/plugin.test.js"
},
"main": "lib/plugin.js",
"files": [
"lib/plugin.js"
],
"keywords": [
"algolia",
"documentation",
"frontmatter",
"gulp",
"gulpplugin",
"json",
"markdown-it",
"markdown",
"marked",
"remark",
"remarkable",
"site",
"ssg",
"static",
"solidus",
"yaml"
],
"dependencies": {
"expand-hash": "^0.2.1",
"front-matter": "^2.1.0",
"gulp-util": "^3.0.7",
"istextorbinary": "^2.1.0",
"lodash.assign": "^4.1.0",
"sort-object": "^0.0.6",
"through2": "^2.0.1",
"util-extend": "^1.0.1"
},
"devDependencies": {
"commonmark": "^0.26.0",
"expect": "^1.20.2",
"lab": "^10.9.0",
"markdown": "^0.5.0",
"markdown-it": "^7.0.0",
"marked": "^0.3.6",
"remark": "^5.0.1",
"remark-html": "^5.0.0",
"remarkable": "^1.6.2",
"semistandard": "^8.0.0",
"vinyl-fs": "~0.3.5"
}
}