-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
56 lines (56 loc) · 1.54 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
53
54
55
56
{
"name": "markdown-folder-to-html",
"version": "2.4.0",
"description": "Convert a folder with files and markdown documents to an HTML site",
"main": "cli.js",
"bin": {
"markdown-folder-to-html": "./cli.js"
},
"scripts": {
"start": "npm run compile && node cli.js",
"compile": "tsc",
"build": "cp README.md docs/index.md && npm start",
"deploy": "npm run build && gh-pages -d _docs",
"prepare-to-publish": "npm run test && npm run deploy",
"format": "prettier --write '{lib,test}/**/*.ts' ./cli.ts",
"test": "npm run compile && tape test/*.js | tap-dot",
"docs": "markdown-folder-to-html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joakin/markdown-folder-to-html.git"
},
"keywords": [
"markdown",
"md",
"html",
"static",
"site",
"folder",
"cli",
"simple"
],
"author": "Joaquin Oltra <[email protected]> (http://chimeces.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/joakin/markdown-folder-to-html/issues"
},
"homepage": "https://github.com/joakin/markdown-folder-to-html#readme",
"dependencies": {
"markdown-it": "^8.4.2",
"markdown-it-anchor": "^5.3.0",
"shelljs": "^0.8.4"
},
"devDependencies": {
"@types/markdown-it": "0.0.8",
"@types/markdown-it-anchor": "^4.0.4",
"@types/node": "^10.17.35",
"@types/shelljs": "^0.8.8",
"@types/tape": "^4.13.0",
"gh-pages": "^2.2.0",
"prettier": "^1.19.1",
"tap-dot": "^2.0.0",
"tape": "^4.13.3",
"typescript": "^3.9.7"
}
}