forked from mixu/markdown-stream-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 922 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
{
"name": "markdown-stream-utils",
"version": "1.2.0",
"description": "Utility functions for processing markdown files using object mode streams.",
"main": "index.js",
"scripts": {
"test": "mocha -R spec ./test/*.test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mixu/markdown-stream-utils"
},
"keywords": [
"markdown",
"stream"
],
"author": "Mikito Takada <[email protected]> (http://mixu.net/)",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/mixu/markdown-stream-utils/issues"
},
"homepage": "https://github.com/mixu/markdown-stream-utils",
"dependencies": {
"highlight.js": "~9.2.0",
"js-yaml": "~3.5.4",
"marked": "~0.3.5",
"through2": "~0.6.3",
"xtend": "^4.0.0"
},
"devDependencies": {
"file-fixture": "0.0.2",
"mds-csv": "0.0.0",
"pipe-iterators": "~1.3.0",
"wildglob": "~0.1.0"
}
}