-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.18 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.18 KB
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
{
"name": "@ckogler/docsmd",
"version": "0.0.0",
"description": "Markdown to HTML generator that converts README.md (and other .md files) to HTML using node.js",
"repository": "https://github.com/koglerch13/docsMD",
"main": "./build/index.js",
"bin": "./build/cli.js",
"type": "commonjs",
"dependencies": {
"glob": "^7.1.7",
"handlebars": "^4.7.7",
"highlight.js": "^11.1.0",
"marked": "^4.0.10",
"yargs": "^17.0.1"
},
"devDependencies": {
"@types/glob": "^7.1.4",
"@types/highlight.js": "^10.1.0",
"@types/marked": "^2.0.4",
"@types/node": "^16.4.0",
"@types/yargs": "^17.0.2",
"eslint": "^7.31.0",
"rimraf": "^3.0.2",
"typescript": "^4.3.5"
},
"scripts": {
"start": "tsc && node ./build/cli.js",
"build": "npm run clean-build && tsc",
"clean-build": "rimraf ./build",
"clean-test": "rimraf ./verification-test/output",
"pack": "npm run build && npm pack",
"watch": "tsc --watch",
"test": "npm run clean-test && cd verification-test && node test.js"
},
"keywords": [
"Markdown",
"HTML",
"Converter",
"Docs",
"Generator"
],
"author": "Christian Kogler",
"license": "MIT"
}