๐Ÿ“ฆ GitSquared / komit

๐Ÿ“„ package.json ยท 44 lines
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": "komit",
  "version": "1.0.5",
  "description": "An interactive prompt for conventional commit messages that doesn't get in your way. Designed to run as a git hook.",
  "main": "index.js",
  "bin": "./index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "husky": {
    "hooks": {
      "prepare-commit-msg": "node index.js $HUSKY_GIT_PARAMS",
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
    }
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/GitSquared/komit.git"
  },
  "keywords": [
    "git",
    "commit",
    "commitlint",
    "terminal",
    "conventional-commit"
  ],
  "author": "Gabriel SAILLARD <gabriel@saillard.dev> (https://gaby.dev)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/GitSquared/komit/issues"
  },
  "homepage": "https://github.com/GitSquared/komit#readme",
  "dependencies": {
    "ansi-colors": "^4.1.1",
    "enquirer": "^2.3.6",
    "force-stdin-tty": "0.0.1"
  },
  "devDependencies": {
    "@commitlint/cli": "^17.6.1",
    "@commitlint/config-conventional": "^9.1.1",
    "husky": "^8.0.3"
  }
}