forked from sourcey/moxygen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 832 Bytes
/
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
{
"name": "moxygen",
"version": "0.8.0",
"description": "Doxygen XML to Markdown documentation converter",
"main": "index.js",
"scripts": {
"release": "release-it",
"test": "npm run clean && cd example/ && doxygen && cd .. && node bin/moxygen.js --groups --pages --anchors --output=example/doc/api-%s.md example/xml",
"clean": "rm -rf example/doc/*.md example/xml/"
},
"bin": {
"moxygen": "./bin/moxygen.js"
},
"repository": {
"type": "git",
"url": "https://github.com/sourcey/moxygen.git"
},
"keywords": [
"doxygen",
"markdown",
"documentation",
"generator"
],
"author": "Kam Low",
"license": "MIT",
"dependencies": {
"commander": "^2.19.0",
"handlebars": "^4.0.12",
"object-assign": "^4.1.1",
"winston": "^3.2.1",
"xml2js": "^0.4.19"
}
}