-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.03 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
{
"name": "commit-ticket",
"keywords": [
"git",
"hook",
"commit-message"
],
"version": "2.0.0",
"description": "Git hook intended for automatically placing ticket id from branch name to commit message",
"author": "Genrikh Fetischev <[email protected]>",
"license": "MIT",
"bin": "bin/index.js",
"repository": "https://github.com/GenrikhFetischev/commit-ticket",
"main": "bin/index.js",
"files": [
"build"
],
"scripts": {
"lint": "yarn tsc --noEmit",
"build": "tsc",
"prepublish": "yarn lint && yarn build"
},
"devDependencies": {
"@types/app-root-path": "^1.2.4",
"@types/current-git-branch": "^1.1.0",
"@types/node": "^13.9.5",
"@types/yargs": "^15.0.4",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"husky": "^4.2.3",
"prettier": "^2.2.1",
"typescript": "^3.8.3"
},
"dependencies": {
"app-root-path": "^3.0.0",
"chalk": "^3.0.0",
"current-git-branch": "^1.1.0",
"yargs": "^15.3.1"
}
}