-
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) · 1.06 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.06 KB
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": "git-conventional-cli",
"version": "1.1.4",
"description": "A fast cli for conventional commits",
"main": "src/lib/index.js",
"type": "module",
"scripts": {
"start": "node ./src/lib/index.js",
"test": "jest",
"lint": "eslint src --ext .js",
"lint:fix": "npm run lint -- --fix",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage"
},
"bugs": {
"url": "https://github.com/fsrocha-dev/git-conventional-cli/issues"
},
"homepage": "https://github.com/fsrocha-dev/git-conventional-cli",
"keywords": [
"CLI",
"commit",
"conventional",
"git"
],
"author": "Frank Rocha",
"license": "MIT",
"dependencies": {
"boxen": "^7.0.2",
"chalk": "^5.2.0",
"cli-table": "^0.3.11",
"commander": "^10.0.1",
"figlet": "^1.6.0",
"gradient-string": "^2.0.2",
"inquirer": "^9.2.0",
"inquirer-maxlength-input-prompt": "^1.0.2",
"jest": "^29.5.0"
},
"bin": {
"gcc": "./src/lib/index.js"
},
"files": [
"./src"
],
"devDependencies": {
"eslint": "^8.40.0"
}
}