-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.15 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
{
"name": "doxygen2markdown",
"version": "0.0.14",
"description": "NodeJS CLI application that converts Doxygen XML documentation into Markdown files for Bitbucket Wiki, GitHub Pages and other places.",
"main": "./bin/index.js",
"bin": {
"doxygen2markdown": "./bin/index.js"
},
"scripts": {
"start": "nodemon --watch src/**/*.ts --exec tsc -e ts -p .",
"build": "tsc -p ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/ProFiLeR4100/doxygen2markdown.git"
},
"keywords": [
"doxygen",
"xml",
"markdown",
"md",
"converter"
],
"author": "ProFiLeR4100 <[email protected]>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/ProFiLeR4100/doxygen2markdown/issues"
},
"homepage": "https://github.com/ProFiLeR4100/doxygen2markdown#readme",
"dependencies": {
"@types/figlet": "^1.5.4",
"chalk": "^3.0.0",
"commander": "^4.1.0",
"ejs": "^3.0.1",
"figlet": "^1.2.4",
"path": "^0.12.7",
"xml2json": "^0.12.0"
},
"devDependencies": {
"@types/ejs": "^3.0.7",
"@types/node": "^13.5.0",
"@types/xml2json": "^0.11.4",
"nodemon": "^2.0.2",
"ts-node": "^8.6.2",
"typescript": "^4.3"
}
}