-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 958 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 958 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
{
"name": "my-node-cli",
"version": "1.0.0",
"description": "Learn how to build beautiful Node.js CLIs with interactive examples",
"type": "module",
"main": "bin/index.js",
"bin": {
"my-node-cli": "./bin/index.js"
},
"scripts": {
"start": "node bin/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"cli",
"nodejs",
"tutorial",
"chalk",
"figlet",
"inquirer",
"ora",
"commander",
"terminal",
"learning",
"example"
],
"author": "gomzkov",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gomzkov/my-node-cli.git"
},
"bugs": {
"url": "https://github.com/gomzkov/my-node-cli/issues"
},
"homepage": "https://github.com/gomzkov/my-node-cli#readme",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.0.0",
"figlet": "^1.7.0",
"inquirer": "^9.2.14",
"ora": "^8.0.1"
}
}