-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.14 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": "auto-api-dog",
"version": "1.0.0",
"main": "src/index.js",
"files": [
"src"
],
"bin": {
"auto-api-dog": "src/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Sina Bayandorian <[email protected]> (https://portfolio-sina-byn.vercel.app/)",
"description": "a Node.JS CLI tool to easily generate api dog documentation file from your comments",
"repository": "github:sina-byn/auto-api-dog",
"homepage": "https://github.com/sina-byn/auto-api-dog#readme",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^12.1.0",
"comment-parser": "^1.4.1",
"fast-glob": "^3.3.2",
"joi": "^17.13.1",
"to-json-schema": "^0.2.5"
},
"bugs": {
"url": "https://github.com/sina-byn/cmtu/issues",
"email": "[email protected]"
},
"keywords": [
"cli",
"API",
"REST",
"API-REST",
"REST-API",
"RESTful-API",
"api-dog",
"api-doc",
"api-docs",
"api-documenter",
"api-doc-generator",
"api-documentation",
"api-documentation-tool",
"api-document-generator"
]
}