-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
38 lines (38 loc) · 885 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
34
35
36
37
38
{
"name": "apidoc-markdown",
"version": "0.2.1",
"description": "Generate API documentation in markdown format from apidoc data.",
"main": "index.js",
"scripts": {
"release": "release-it -n -i patch",
"release:minor": "release-it -n -i minor",
"release:major": "release-it -n -i major"
},
"directories": {
"example": "examples"
},
"bin": {
"apidoc-markdown": "./index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/martinj/node-apidoc-markdown"
},
"keywords": [
"apidoc",
"markdown"
],
"author": "Martin Jonsson <martin.jonsson@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/martinj/node-apidoc-markdown/issues"
},
"dependencies": {
"optimist": "~0.6.0",
"underscore": "~1.5.2",
"ejs": "~0.8.5"
},
"devDependencies": {
"release-it": "^2.8.5"
}
}