-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 941 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 941 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
{
"name": "code-comment-generator",
"version": "1.0.0",
"description": "A tool to automatically generate JSDoc and inline comments for JavaScript/TypeScript code.",
"main": "src/index.js",
"bin": {
"code-comment": "./bin/cli.js"
},
"scripts": {
"start": "node src/index.js",
"cli": "node bin/cli.js",
"test": "jest"
},
"dependencies": {
"esprima": "^4.0.1",
"typescript": "^5.5.4",
"commander": "^12.1.0"
},
"devDependencies": {
"jest": "^29.7.0"
},
"author": "Sameer Shaikh <alisameer52718@gmail.com>",
"license": "MIT",
"keywords": ["code", "comments", "jsdoc", "typescript", "javascript"],
"repository": {
"type": "git",
"url": "git+https://github.com/sameer52718/code-comment-generator.git"
},
"bugs": {
"url": "https://github.com/sameer52718/code-comment-generator/issues"
},
"homepage": "https://github.com/sameer52718/code-comment-generator#readme"
}