-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.04 KB
/
package.json
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": "@segersniels/cmt",
"version": "1.1.2",
"description": "A command-line tool designed to help developers write consistent and standardized commit messages across different commit conventions.",
"main": "index.js",
"files": [
"package.json",
"README.md",
"LICENSE",
"scripts"
],
"bin": {
"cmt": "./bin/cmt"
},
"scripts": {
"preinstall": "mkdir -p $(npm root -g)/@segersniels/cmt/bin && ./scripts/install.sh $(npm root -g)/@segersniels/cmt/bin"
},
"repository": {
"type": "git",
"url": "git+https://github.com/segersniels/cmt.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"cli",
"convention",
"prompt",
"gitmoji",
"dx",
"commit",
"gitmoji-cli",
"commit-message",
"conventional-commits",
"charmbracelet"
],
"author": "Niels Segers",
"license": "ISC",
"bugs": {
"url": "https://github.com/segersniels/cmt/issues"
},
"homepage": "https://github.com/segersniels/cmt#readme"
}