-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
51 lines (51 loc) · 1.33 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
{
"name": "github-readme-to-html",
"version": "1.0.11",
"description": "Generate a simple HTML page based on a single markdown file",
"main": "index.js",
"files": [
"index.js",
"style.css",
"style-dark.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\"",
"light": "node index.js -i ORIGINAL.md -o index.html -t \"Read Me\"",
"dark": "node index.js -i ORIGINAL.md -o index.html -t \"Read Me\" -s \"dark\" -d \"dist-dark\"",
"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 <newt@hey.com>",
"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"
}
}