-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
48 lines (48 loc) · 1.14 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
{
"name": "github-readme-to-html",
"version": "1.0.10",
"description": "Generate a simple HTML page based on a single markdown file",
"main": "index.js",
"files": [
"index.js",
"style.css"
],
"bin": "./index.js",
"dependencies": {
"commander": "^8.3.0",
"fs-extra": "^9.1.0",
"highlight.js": "^11.6.0",
"showdown": "^1.9.1",
"showdown-footnotes": "^2.1.2",
"showdown-highlight": "^3.0.0"
},
"devDependencies": {
"prettier": "^2.2.1"
},
"scripts": {
"start": "node index.js -i ORIGINAL.md -o index.html -t \"Read Me\"",
"test": "node index.js -i HLJS-TEST.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jrnewton/github-readme-to-html.git"
},
"keywords": [
"github",
"readme",
"static",
"markdown",
"converter"
],
"author": "Jon Newton <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jrnewton/github-readme-to-html/issues"
},
"homepage": "https://github.com/jrnewton/github-readme-to-html#readme",
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"quoteProps": "consistent"
}
}