-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 950 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
{
"name": "md-process",
"version": "1.0.0",
"description": "Markdown processing utility.",
"scripts": {
"test": "mocha --recursive",
"report": "nyc mocha --recursive",
"lint": "eslint --cache lib/",
"build": "run-s lint test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dnutels/md-process.git"
},
"keywords": [
"markdown",
"md",
"process",
"html",
"convert"
],
"author": "Dmitry Nutels",
"license": "MIT",
"bugs": {
"url": "https://github.com/dnutels/md-process/issues"
},
"homepage": "https://github.com/dnutels/md-process#readme",
"dependencies": {
"front-matter": "^2.1.2",
"marked": "^0.3.6",
"through2": "^2.0.3",
"util.promisify": "^1.0.0",
"vinyl": "^2.1.0"
},
"devDependencies": {
"chai": "^4.1.0",
"mocha": "^3.4.2",
"npm-run-all": "^4.0.2",
"nyc": "^11.0.3"
},
"engines": {
"node": ">=6"
}
}