-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
39 lines (39 loc) · 977 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
{
"name": "md-directory",
"version": "1.1.1",
"description": "Convert a directory of Markdown files to HTML",
"keywords": [
"markdown",
"browserify",
"inline",
"convert",
"frontmatter",
"brfs"
],
"main": "index.js",
"repository": "s3ththompson/md-directory",
"author": "Seth Thompson <[email protected]>",
"license": "MIT",
"scripts": {
"build:docs": "documentation readme index.js -s API",
"fmt": "prettier --single-quote --write \"**/*.js\"",
"test": "npm run fmt && tape tests/index.js | tap-spec"
},
"dependencies": {
"commonmark": "^0.29.1",
"defaults": "^1.0.3",
"gray-matter": "^4.0.2",
"lodash": "^4.17.15",
"read-directory": "^3.0.2",
"static-module": "^3.0.3",
"through2": "^3.0.1"
},
"devDependencies": {
"browserify": "^16.5.1",
"documentation": "^12.3.0",
"eval": "^0.1.2",
"prettier": "^2.0.4",
"tap-spec": "^5.0.0",
"tape": "^4.13.2"
}
}