-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 886 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 886 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
{
"name": "nodegenx",
"version": "1.0.2",
"description": "A CLI tool to generate Node.js backend project.",
"type": "module",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/nikhilmnk/nodegenx.git"
},
"homepage": "https://github.com/nikhilmnk/nodegenx#readme",
"bugs": {
"url": "https://github.com/nikhilmnk/nodegenx/issues"
},
"bin": {
"nodegenx": "./bin/cli.js"
},
"scripts": {
"start": "node ./bin/cli.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"cli",
"node",
"backend",
"generator"
],
"author": "M Nikhil Kumar",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"child_process": "^1.0.2",
"commander": "^14.0.1",
"ejs": "^3.1.10",
"fs-extra": "^11.3.2",
"inquirer": "^12.9.6",
"ora": "^9.0.0"
}
}