-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
40 lines (40 loc) · 1.01 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": "gitid",
"version": "0.1.10",
"description": "Manage multiple git accounts easily",
"main": "dist/index.js",
"repository": "https://github.com/InderdeepBajwa/gitid",
"author": "Inderdeep Singh Bajwa",
"license": "MIT",
"private": false,
"bin": {
"gitid": "./dist/index.js"
},
"scripts": {
"start": "node dist/index.js",
"build": "tsc",
"test": "jest",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"commit": "git-cz"
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && yarn prepare-commit-msg"
}
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.2",
"commitizen": "^4.3.0",
"husky": "^8.0.3",
"jest": "^29.6.1",
"pinst": "^3.0.0",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}