-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 783 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 783 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
{
"name": "@mazhu/gitmoji-cli",
"version": "1.0.0",
"description": "Interactive Gitmoji Commit CLI tool with Conventional Commits support",
"main": "src/cli.js",
"bin": {
"gitmoji": "./src/cli.js"
},
"scripts": {
"start": "node src/cli.js",
"test": "echo \"No tests yet\" && exit 0"
},
"keywords": [
"gitmoji",
"git",
"commit",
"emoji",
"conventional-commits",
"cli"
],
"author": "mazhu",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/deepdadou/gitmoji-cli"
},
"homepage": "https://github.com/deepdadou/gitmoji-cli",
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"chalk": "^4.1.2",
"figlet": "^1.7.0",
"inquirer": "^8.2.5",
"ora": "^5.4.1"
}
}