-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 957 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 957 Bytes
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": "autodoc-cli",
"version": "1.0.0",
"description": "A CLI tool to generate README documentation from JavaScript/Node.js code.",
"main": "index.js",
"bin": {
"autodoc": "./index.js"
},
"keywords": [
"documentation",
"readme",
"cli",
"generator",
"javascript",
"jsdoc"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ColePoppleton/AutoDoc-cli.git"
},
"author": {
"name": "Cole Poppleton"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ColePoppleton/AutoDoc-cli/issues"
},
"dependencies": {
"acorn": "^8.14.1",
"commander": "^13.1.0",
"doctrine": "^3.0.0",
"fs": "^0.0.1-security",
"fs-extra": "^11.3.0",
"glob": "^11.0.1",
"inquirer": "^12.5.0",
"js-yaml": "^4.1.0",
"prompts": "^2.4.2"
},
"devDependencies": {
"prettier": "3.5.3"
},
"files": [
"index.js",
"LICENSE",
"README.md"
]
}