-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1009 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 1009 Bytes
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
{
"name": "markdown-transform",
"version": "1.0.0",
"description": "Markdown transform stream",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec --bail --check-leaks test/",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"
},
"repository": {
"type": "git",
"url": "https://github.com/4front/markdown-transform"
},
"keywords": [
"markdown",
"transform",
"stream"
],
"author": "David Von Lehman (https://github.com/dvonlehman)",
"license": "MIT",
"bugs": {
"url": "https://github.com/4front/markdown-transform/issues"
},
"homepage": "https://github.com/4front/markdown-transform",
"dependencies": {
"highlight.js": "^8.4.0",
"marked": "^0.3.3",
"through2": "^0.6.3"
},
"devDependencies": {
"istanbul": "^0.3.6",
"mocha": "^2.1.0"
}
}