-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.51 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
{
"name": "marked-directory",
"version": "0.0.6",
"description": "Markdown to HTML conversion on directories using marked",
"main": "index.js",
"scripts": {
"test": "cross-env NODE_ENV=test mocha ./test/**/*.spec.js",
"cover": "cross-env NODE_ENV=test istanbul cover ./node_modules/mocha/bin/_mocha ./test/**/*.spec.js --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"lint": "eslint index.js",
"prepublish": "npm run lint"
},
"bin": {
"marked-directory": "bin/marked-directory.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SRSsoft/marked-directory.git"
},
"keywords": [
"markdown",
"directory",
"html",
"conversion",
"convert",
"folder"
],
"author": "Brandon Boone <[email protected]> (https://stackoverflow.com/cv/boone)",
"license": "MIT",
"bugs": {
"url": "https://github.com/SRSsoft/marked-directory/issues"
},
"homepage": "https://github.com/SRSsoft/marked-directory#readme",
"dependencies": {
"glob": "^7.1.1",
"marked": "^0.4.0",
"memoizee": "^0.4.1",
"mkdirp": "^0.5.1"
},
"devDependencies": {
"coveralls": "^3.0.0",
"cross-env": "^6.0.0",
"directory-tree": "^1.1.1",
"eslint": "^4.1.0",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-import": "^2.6.0",
"expect": "^22.0.0",
"istanbul": "^0.4.5",
"mocha": "^5.0.0",
"mocha-lcov-reporter": "^1.2.0",
"rimraf": "^2.5.4"
}
}